diff --git a/.gitignore b/.gitignore index b45c3b0..2816d33 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,14 @@ +bin/bimp *.zip *.exe -*.db \ No newline at end of file +*.o +*.so + +.vscode +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db diff --git a/CHANGELOG.md b/CHANGELOG.md index b8c49b6..acf2c92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,52 @@ BIMP. Batch Image Manipulation Plugin for GIMP. Changelog --------- +2.6 + - Possibility to add multiple watermarks (issue #219) + - Possibility to import DDS images (#235) + +2.5 + - Fixed Color Curve not working if exported using GIMP 2.10 (issue #225) + - Fixed Windows uninstaller not working in both normal and silent mode (issues #258 #240 #196) + +2.4 + - Added support to OpenEXR images + +2.3 + - Added Dutch translation (thanks to Just Vecht & Paul Matthijsse from Dutch Helpmij Magazine) + - Fixed zh-CN locale (thanks to @KrasnayaPloshchad) + +2.2 + - Added support to WEBP (issue #184) + - Enabled HEIF in "Change Format and Compression" (issue #185) + - Saving back to HEIF with default values caused "zero quality" image + - Fixed TIFF parameter setup in "Change Format and Compression" + - Removed PCRE dependency in favor of GLib (issue #189) + +2.1 + - Improved GUI flexibility and high DPI support (thanks to @scribblemaniac) + - Added Serbian language (thanks to @nstVanja) + - Fixed spurious tick char generation in makefile (thanks to @ciampix) + - Fixed black images after Color Curve + +2.0 (aka "hey what's up?") + - BIMP codebase has been updated to be natively compatible with GIMP 2.10, while it does not work anymore with GIMP <= 2.8. + - Added support to HEIF, XPM and JPEG2000 images (#182, #141, #138) + - Use GResources instead of Pixdata + - Many compiler warnings fixed + - Enhanced Win32 make procedure (needs MSYS2) + +1.18 + - Windows installer updated to better handle errors (#131) + - ICO and TGA added as image input (#126, #127) + - Added Norwegian translation (thanks to Kolbjørn Stuestøl) + - Updated Spanish (thanks to Damián Blanco) and Russian (thanks to @Skif-off) languages + 1.17 - Fixed an error when parsing "Other GIMP procedure" parameters that contain only a "=" sign (like Despeckle plugin) (thanks Daniel B Shak) - Disable "undo" during processing for better performances (issue #109) - Fixed error when using "Fill with Padding" on an indexed image (issue #98) - - Korean translation (thank to Jun Park) and Chinese Traditional translation (thanks to @andy0130tw) + - Korean translation (thanks to Jun Park) and Chinese Traditional translation (thanks to @andy0130tw) 1.16 (aka "I'm expecting 100.000 donations for this") - Changed layout and added "Fill with padding" option in Resize manipulation (issue #62, #85) diff --git a/Makefile b/Makefile index 1a7597b..779a618 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,22 @@ -GIMPARGS = $(shell gimptool-2.0 --cflags --libs) -PCREARGS = $(shell pcre-config --cflags --libs) -SYSTEM_INSTALL_DIR = $(shell gimptool-2.0 --dry-run --install-admin-bin ./bin/bimp | sed 's/cp \S* \(\S*\)/\1/') -USER_INSTALL_DIR = $(shell gimptool-2.0 --dry-run --install-bin ./bin/bimp | sed 's/cp \S* \(\S*\)/\1/') +GIMP_CFLAGS = $(shell gimptool-2.0 --cflags) +GIMP_LIBS = $(shell gimptool-2.0 --libs) +CFLAGS += $(GIMP_CFLAGS) -Wall -Wno-unused-variable -Wno-pointer-sign -DGIMP_DISABLE_DEPRECATED +LDFLAGS += $(GIMP_LIBS) -lm +SYSTEM_INSTALL_DIR = $(shell gimptool-2.0 --dry-run --install-admin-bin ./bin/bimp | sed 's/cp \S* \(\S*\)/\1/'|tr -d [\']) +USER_INSTALL_DIR = $(shell gimptool-2.0 --dry-run --install-bin ./bin/bimp | sed 's/cp \S* \(\S*\)/\1/'|tr -d [\']) make: - which gimptool-2.0 && which pcre-config && \ - gcc -o ./bin/bimp -Wall -O2 -Wno-unused-variable -Wno-pointer-sign -Wno-parentheses src/*.c src/manipulation-gui/*.c $(GIMPARGS) $(PCREARGS) -lm -DGIMP_DISABLE_DEPRECATED - + which gimptool-2.0 && \ + gcc -o ./bin/bimp -O2 $(CFLAGS) src/*.c src/manipulation-gui/*.c src/images/*.c $(LDFLAGS) + +makewin-debug: + which gimptool-2.0 && \ + gcc -o ./bin/win32/bimp $(CFLAGS) src/*.c src/manipulation-gui/*.c src/images/*.c $(LDFLAGS) + +makewin: + which gimptool-2.0 && \ + gcc -mwindows -o ./bin/win32/bimp -O2 $(CFLAGS) src/*.c src/manipulation-gui/*.c src/images/*.c $(LDFLAGS) + install: mkdir -p "$(USER_INSTALL_DIR)" gimptool-2.0 --install-bin ./bin/bimp diff --git a/README.md b/README.md index 81aa202..0b74daf 100644 --- a/README.md +++ b/README.md @@ -13,21 +13,22 @@ BIMP can be easily installed on your Windows 32/64bit machine with the official installer: https://github.com/alessandrofrancesconi/gimp-plugin-bimp/releases/latest/ then download `gimp-plugin-bimp_win32.exe` -Instead... to remove BIMP... if you really want... just go to GIMP's plugins directory and remove -`bimp.exe` and `bimp-locale` folder. - -*A note for GIMP Portable users: if you experience strange things like missing buttons or totally white windows, -first ensure you have installed the latest version of the GTK+ runtime (download it from [here](https://sourceforge.net/projects/gtk-win/files/latest/download?source=files)).* +*Note for GIMP Portable users:* If you experience strange things like missing buttons or totally white windows, +first ensure you have installed the latest version of the GTK+ runtime (download it from [here](https://sourceforge.net/projects/gtk-win/files/latest/download?source=files)). Compiling and installing on Linux ----------------------------------------- -You must install `libgimp2.0-dev` and `libpcre3-dev` packages in order to have -the full set of libraries and dependences to compile BIMP (names can differ depending on the distro). +You must have gimptool installed in order to have the full set of libraries +and dependences needed to compile BIMP (names can differ depending on the distro). + +For Debian-based (Ubuntu, Linux Mint, ...) + + sudo apt-get install libgimp2.0-dev libgegl-dev -For Ubuntu / Linux Mint: +For Fedora: - sudo apt-get install libgimp2.0-dev libpcre3-dev + sudo dnf install gimp-devel-tools Extract the archive containing the BIMP's sources and get into the extracted folder with `cd`. Then: @@ -42,14 +43,12 @@ to make and install for every user in the system (needs root privileges). For Mac OSX users ----------------- -There's no need to install or compile BIMP on Mac, because the default native build of GIMP for Mac OSX 10.8 -made by Simone from http://gimp.lisanet.de/Website/Download.html already includes BIMP! -(however, it's not guaranteed to be the very latest version of either BIMP or GIMP) +Starting from BIMP 2.5, the MacOS version is available in the Release page: https://github.com/alessandrofrancesconi/gimp-plugin-bimp/releases. Please note: it may not work in every GIMP/MacOS version. See the release page for details. -For those interested in remaining on the cutting edge, the instructions are as follows: +For those interested in remaining on the cutting edge, the instructions to compile are as follows: 1. Install [MacPorts](https://www.macports.org/install.php) -2. Install prerequisites: `sudo port install coreutils pcre ` +2. Install prerequisites: `sudo port install coreutils ` 3. Add `/opt/local/libexec/gnubin` to your `PATH` to make them the GNU tools the default: `PATH=/opt/local/libexec/gnubin:$PATH` (You can also add this to your login profile if you want the change to be permanent). 3. Install GIMP with MacPorts: `sudo port install gimp +quartz` (You can leave off the `+quartz` if you prefer GIMP to run in the X11 environment instead of natively.) 4. Follow the build and install instructions for Linux. diff --git a/bimp-locale/es/LC_MESSAGES/gimp20-plugin-bimp.mo b/bimp-locale/es/LC_MESSAGES/gimp20-plugin-bimp.mo index 6d0af8e..ed59ce3 100644 Binary files a/bimp-locale/es/LC_MESSAGES/gimp20-plugin-bimp.mo and b/bimp-locale/es/LC_MESSAGES/gimp20-plugin-bimp.mo differ diff --git a/bimp-locale/es/LC_MESSAGES/gimp20-plugin-bimp.po b/bimp-locale/es/LC_MESSAGES/gimp20-plugin-bimp.po index 18b7543..60f5da8 100644 --- a/bimp-locale/es/LC_MESSAGES/gimp20-plugin-bimp.po +++ b/bimp-locale/es/LC_MESSAGES/gimp20-plugin-bimp.po @@ -255,6 +255,9 @@ msgstr "Ancho" msgid "Height" msgstr "Alto" +msgid "Start from" +msgstr "Comenzar desde" + #: .\manipulation-gui/gui-crop.c:108 manipulation-gui/gui-crop.c:108 msgid "One-to-one" msgstr "Uno a uno" @@ -357,17 +360,23 @@ msgid "For both dimensions" msgstr "Para ambas dimensiones" #: .\manipulation-gui/gui-resize.c:47 manipulation-gui/gui-resize.c:47 -msgid "Set width only" -msgstr "Ajustar solo ancho" +msgid "Width only" +msgstr "Solo ancho" #: .\manipulation-gui/gui-resize.c:49 manipulation-gui/gui-resize.c:49 -msgid "Set height only" -msgstr "Ajustar solo altura" +msgid "Height only" +msgstr "Solo alto" + +msgid "Allow stretching" +msgstr "Permitir expansión" #: .\manipulation-gui/gui-resize.c:52 manipulation-gui/gui-resize.c:52 msgid "Preserve aspect ratio" msgstr "Preservar la proporción" +msgid "Fill with padding" +msgstr "Rellenar con" + #: .\manipulation-gui/gui-resize.c:56 manipulation-gui/gui-resize.c:56 msgid "Interpolation quality" msgstr "Calidad de interpolación" @@ -455,6 +464,9 @@ msgstr "Todos los tipos soportados" msgid "Opacity" msgstr "Opacidad" +msgid "Distance to edge" +msgstr "Distancia al borde" + #: .\manipulation-gui/gui-watermark.c:122 manipulation-gui/gui-watermark.c:122 msgid "Position on the image" msgstr "Posición en la imagen" diff --git a/bimp-locale/ko/LC_MESSAGES/gimp20-plugin-bimp.po b/bimp-locale/ko/LC_MESSAGES/gimp20-plugin-bimp.po index 796aa56..b328bd5 100644 --- a/bimp-locale/ko/LC_MESSAGES/gimp20-plugin-bimp.po +++ b/bimp-locale/ko/LC_MESSAGES/gimp20-plugin-bimp.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: gimp-plugin-bimp\n" "POT-Creation-Date: 2016-07-06 18:54+0100\n" -"PO-Revision-Date: 2016-07-12 21:54+0200\n" -"Last-Translator: JJangfree < jjangfree@gmail.com>\n" -"Language-Team: JJangfree \n" +"PO-Revision-Date: 2021-09-21 07:00+0900\n" +"Last-Translator: Sebul \n" +"Language-Team: Sebul \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -78,7 +78,7 @@ msgstr "Subsampling" #: .\manipulation-gui/gui-changeformat.c:116 #: manipulation-gui/gui-changeformat.c:116 msgid "Small size" -msgstr "저품질" +msgstr "작은 크기" #: .\manipulation-gui/gui-changeformat.c:123 #: manipulation-gui/gui-changeformat.c:123 @@ -145,7 +145,7 @@ msgstr "코멘트 저장" #: .\manipulation-gui/gui-changeformat.c:222 #: manipulation-gui/gui-changeformat.c:222 msgid "Save color from transparent pixels" -msgstr "투명픽셀에서 색상 저장" +msgstr "투명 픽셀에서 색상 저장" #: .\manipulation-gui/gui-changeformat.c:270 #: manipulation-gui/gui-changeformat.c:270 @@ -155,7 +155,7 @@ msgstr "RLE 압축" #: .\manipulation-gui/gui-changeformat.c:273 #: manipulation-gui/gui-changeformat.c:273 msgid "Image origin" -msgstr "Image origin" +msgstr "이미지 원점" #: .\manipulation-gui/gui-changeformat.c:278 #: .\manipulation-gui/gui-watermark.c:241 @@ -224,7 +224,7 @@ msgstr "그레이스케일로 변환" #: .\manipulation-gui/gui-color.c:38 manipulation-gui/gui-color.c:38 msgid "Automatic color levels correction" -msgstr "자동레벨" +msgstr "자동 색 레벨 보정" #: .\manipulation-gui/gui-color.c:41 manipulation-gui/gui-color.c:41 msgid "Change color curve from settings file:" @@ -232,7 +232,7 @@ msgstr "색상커브 변경할 설정파일:" #: .\manipulation-gui/gui-color.c:42 manipulation-gui/gui-color.c:42 msgid "Select GIMP Curve file" -msgstr "Gimp 커브 파일 선택" +msgstr "GIMP 커브 파일 선택" #: .\manipulation-gui/gui-crop.c:27 manipulation-gui/gui-crop.c:27 msgid "Crop to a standard aspect ratio" @@ -294,7 +294,7 @@ msgstr "커스텀 비율" #: .\manipulation-gui/gui-fliprotate.c:19 manipulation-gui/gui-fliprotate.c:19 msgid "Flip" -msgstr "상하반전" +msgstr "뒤집기" #: .\manipulation-gui/gui-fliprotate.c:23 manipulation-gui/gui-fliprotate.c:23 msgid "Horizontally" @@ -322,7 +322,7 @@ msgstr "숫자 일련번호" #: .\manipulation-gui/gui-rename.c:32 manipulation-gui/gui-rename.c:32 msgid "Date and time (YYYY-MM-DD_hh-mm)" -msgstr "날짜와시간 (YYYY-MM-DD_hh-mm)" +msgstr "날짜 및 시간 (YYYY-MM-DD_hh-mm)" #: .\manipulation-gui/gui-rename.c:52 manipulation-gui/gui-rename.c:52 #, c-format @@ -331,7 +331,7 @@ msgid "" "'%s' or '%s' symbol must be present." msgstr "" "저장할 수 없습니다!\n" -"%s' 나 '%s' 가 있어야 합니다. " +"%s' 또는 '%s' 가 있어야 합니다. " #: .\manipulation-gui/gui-rename.c:64 manipulation-gui/gui-rename.c:64 msgid "" @@ -339,7 +339,7 @@ msgid "" "Pattern contains invalid characters." msgstr "" "저장할 수 없습니다! \n" -"패턴부분에 무효한 문자가 있습니다." +"패턴에 무효한 문자가 있습니다." #: .\manipulation-gui/gui-resize.c:37 manipulation-gui/gui-resize.c:37 msgid "Set to a percentage of the original" @@ -355,7 +355,7 @@ msgstr "양쪽 모두" #: .\manipulation-gui/gui-resize.c:47 manipulation-gui/gui-resize.c:47 msgid "Set width only" -msgstr "가로만 지정" +msgstr "너비만 지정" #: .\manipulation-gui/gui-resize.c:49 manipulation-gui/gui-resize.c:49 msgid "Set height only" @@ -394,7 +394,7 @@ msgid "" "Choose a supported GIMP procedure from the list on the left\n" "and define its parameters on the right." msgstr "" -"왼쪽 목록에서, 처리할 Gimp필터를 선택하고\n" +"왼쪽 목록에서, 처리할 GIMP 프로시저를 선택하고\n" "우측에 변수를 지정합니다." #: .\manipulation-gui/gui-userdef.c:61 manipulation-gui/gui-userdef.c:61 @@ -407,7 +407,7 @@ msgid "" "no procedure has been selected" msgstr "" "저장할 수 없습니다. \n" -"왼쪽에서 처리할 필터를, 선택하지 않았습니다." +"왼쪽에서 처리할 필터를 선택하지 않았습니다." #: .\manipulation-gui/gui-userdef.c:349 manipulation-gui/gui-userdef.c:349 msgid "Author" @@ -415,7 +415,7 @@ msgstr "저작자" #: .\manipulation-gui/gui-userdef.c:570 manipulation-gui/gui-userdef.c:570 msgid "This procedure takes no editable params" -msgstr "이 Gimp 필터는, 수정할 변수가 없습니다." +msgstr "이 GIMP 필터는 수정할 변수가 없습니다." #: .\manipulation-gui/gui-watermark.c:32 manipulation-gui/gui-watermark.c:32 msgid "Text watermark" @@ -533,7 +533,7 @@ msgstr "미리보기" #: bimp-gui.c:354 #, c-format msgid "Couldn't read into \"%s\" directory." -msgstr " \"%s\" 디렉토리로 읽을 수 없습니다" +msgstr " \"%s\" 디렉터리로 읽을 수 없습니다" #: bimp-gui.c:464 msgid "Can't show a preview because the manipulations set is empty" @@ -545,7 +545,7 @@ msgstr "미리보기" #: bimp-gui.c:503 msgid "This is how the selected image will look like after the batch process" -msgstr "배치처리 했을 때의, 미리보기" +msgstr "배치처리 했을 때 미리보기" #: bimp-gui.c:592 msgid "Select images" @@ -569,11 +569,11 @@ msgstr "이 세트 저장.." #: bimp-gui.c:752 bimp-gui.c:958 msgid "Load set..." -msgstr "세트 불러오기.." +msgstr "세트 불러오기..." #: bimp-gui.c:763 msgid "Edit properties..." -msgstr "속성 편집.." +msgstr "속성 편집..." #: bimp-gui.c:766 msgid "Remove this manipulation" @@ -585,7 +585,7 @@ msgstr "이미지 하나씩 추가.." #: bimp-gui.c:776 msgid "Add folders..." -msgstr "폴더째 추가.." +msgstr "폴더째 추가..." #: bimp-gui.c:779 msgid "Add all opened images" @@ -609,15 +609,15 @@ msgstr "저장된 배치파일 불러오기 에러 : (" #: bimp-gui.c:946 msgid "This will overwrite current manipulations set. Continue?" -msgstr "기존 처리를, 덮어쓰게 됩니다. 계속합니까?" +msgstr "기존 처리를 덮어쓰게 됩니다. 계속합니까?" #: bimp-gui.c:1013 bimp.c:67 msgid "Applies GIMP manipulations on groups of images" -msgstr "이미지 그룹을, 처리함" +msgstr "이미지 그룹을 처리함" #: bimp-gui.c:1020 msgid "translator-name " -msgstr "번역자 <@gmail.com>" +msgstr "Sebul " #: bimp-manipulations.c:275 msgid "Resize" @@ -629,7 +629,7 @@ msgstr "잘라내기" #: bimp-manipulations.c:281 msgid "Flip or Rotate" -msgstr "상하반전 or 좌우미러" +msgstr "반전 or 회전" #: bimp-manipulations.c:284 msgid "Color correction" @@ -649,11 +649,11 @@ msgstr "형식과 압축비율 변경" #: bimp-manipulations.c:296 msgid "Rename with a pattern" -msgstr "패턴으로, 파일명 변경" +msgstr "패턴으로 파일명 변경" #: bimp-manipulations.c:299 msgid "Other GIMP procedure..." -msgstr "다른 GIMP필터 사용.." +msgstr "다른 GIMP 필터 사용..." #: bimp-operate.c:171 #, c-format @@ -662,7 +662,7 @@ msgid "" "You can solve this error by adding a \"Change format or compression\" step" msgstr "" "이미지 저장 실패 \"%s\": 입력파일에 확장자가 없습니다.\n" -" \"형식과 압축비율 변경\" 부분을, 설정해 주십시오." +" \"형식과 압축비율 변경\" 부분을 설정해 주십시오." #: bimp-operate.c:177 #, c-format @@ -670,8 +670,8 @@ msgid "" "GIMP can't save %s back to its original SVG format.\n" "You can solve this error by adding a \"Change format or compression\" step" msgstr "" -"Gimp는 %s 을, 원래의 SVG 형식으로 저장할 수 없습니다. \n" -"\"형식과 압축비율 변경\" 부분을, 설정해 주십시오." +"GIMP는 %s 을 원래의 SVG 형식으로 저장할 수 없습니다. \n" +"\"형식과 압축비율 변경\" 부분을 설정해 주십시오." #: bimp-operate.c:183 #, c-format @@ -699,15 +699,3 @@ msgstr "덮어쓰기 설정 저장" #: bimp-operate.c:1182 msgid "Overwrite?" msgstr "덮어쓸까요?" - -#~ msgid "Alert when overwriting existing files" -#~ msgstr "기존 파일 덮어쓸 때, 경고?" - -#~ msgid "Yes, don't ask again" -#~ msgstr "네, 다시 묻지 않습니다" - -#~ msgid "Save this set" -#~ msgstr "이 세트 저장" - -#~ msgid "Load set" -#~ msgstr "세트 불러오기" diff --git a/bimp-locale/nl/LC_MESSAGES/gimp20-plugin-bimp.mo b/bimp-locale/nl/LC_MESSAGES/gimp20-plugin-bimp.mo new file mode 100644 index 0000000..30db9e8 Binary files /dev/null and b/bimp-locale/nl/LC_MESSAGES/gimp20-plugin-bimp.mo differ diff --git a/bimp-locale/nl/LC_MESSAGES/gimp20-plugin-bimp.po b/bimp-locale/nl/LC_MESSAGES/gimp20-plugin-bimp.po new file mode 100644 index 0000000..078a3b3 --- /dev/null +++ b/bimp-locale/nl/LC_MESSAGES/gimp20-plugin-bimp.po @@ -0,0 +1,706 @@ +msgid "" +msgstr "" +"Project-Id-Version: gimp-plugin-bimp\n" +"POT-Creation-Date: 2014-11-02 18:19+0100\n" +"PO-Revision-Date: 2020-01-26 23:26+0100\n" +"Language-Team: Alessandro Francesconi \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.4\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop\n" +"X-Poedit-Basepath: ../../../src\n" +"X-Poedit-SourceCharset: UTF-8\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: nl\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: ./manipulation-gui\n" + +#: .\manipulation-gui/gui-changeformat.c:37 +#: manipulation-gui/gui-changeformat.c:37 +msgid "Format settings" +msgstr "Formaat instellingen" + +#: .\manipulation-gui/gui-changeformat.c:58 +#: manipulation-gui/gui-changeformat.c:58 +msgid "Interlaced" +msgstr "Interlaced" + +#: .\manipulation-gui/gui-changeformat.c:78 +#: .\manipulation-gui/gui-changeformat.c:118 +#: manipulation-gui/gui-changeformat.c:78 +#: manipulation-gui/gui-changeformat.c:118 +msgid "Quality" +msgstr "Kwaliteitsfactor" + +#: .\manipulation-gui/gui-changeformat.c:84 +#: .\manipulation-gui/gui-changeformat.c:213 +#: manipulation-gui/gui-changeformat.c:84 +#: manipulation-gui/gui-changeformat.c:213 +msgid "Advanced params" +msgstr "Extra opties" + +#: .\manipulation-gui/gui-changeformat.c:88 +#: manipulation-gui/gui-changeformat.c:88 +msgid "Smoothing" +msgstr "Gladmaken" + +#: .\manipulation-gui/gui-changeformat.c:95 +#: manipulation-gui/gui-changeformat.c:95 +msgid "Optimize" +msgstr "Optimaliseren" + +#: .\manipulation-gui/gui-changeformat.c:96 +#: manipulation-gui/gui-changeformat.c:96 +msgid "Progressive" +msgstr "Progressief" + +#: .\manipulation-gui/gui-changeformat.c:97 +#: manipulation-gui/gui-changeformat.c:97 +msgid "Save baseline" +msgstr "Sla baseline op" + +#: .\manipulation-gui/gui-changeformat.c:100 +#: manipulation-gui/gui-changeformat.c:100 +msgid "Comment" +msgstr "Commentaar" + +#: .\manipulation-gui/gui-changeformat.c:107 +#: manipulation-gui/gui-changeformat.c:107 +msgid "Markers rows" +msgstr "Rijen markers" + +#: .\manipulation-gui/gui-changeformat.c:112 +#: manipulation-gui/gui-changeformat.c:112 +msgid "Subsampling" +msgstr "Subsampling" + +#: .\manipulation-gui/gui-changeformat.c:116 +#: manipulation-gui/gui-changeformat.c:116 +msgid "Small size" +msgstr "Klein formaat" + +#: .\manipulation-gui/gui-changeformat.c:123 +#: manipulation-gui/gui-changeformat.c:123 +msgid "DCT algorithm" +msgstr "DCT algoritme" + +#: .\manipulation-gui/gui-changeformat.c:127 +#: manipulation-gui/gui-changeformat.c:127 +msgid "Integer" +msgstr "Integer" + +#: .\manipulation-gui/gui-changeformat.c:128 +#: manipulation-gui/gui-changeformat.c:128 +msgid "Fast integer" +msgstr "Snelle integer" + +#: .\manipulation-gui/gui-changeformat.c:129 +#: manipulation-gui/gui-changeformat.c:129 +msgid "Float" +msgstr "" +"D\n" +"rijvende komma" + +#: .\manipulation-gui/gui-changeformat.c:205 +#: manipulation-gui/gui-changeformat.c:205 +msgid "Interlace (Adam7)" +msgstr "Interlace (Adam7)" + +#: .\manipulation-gui/gui-changeformat.c:207 +#: .\manipulation-gui/gui-changeformat.c:303 +#: manipulation-gui/gui-changeformat.c:207 +#: manipulation-gui/gui-changeformat.c:303 +msgid "Compression" +msgstr "Compressie" + +#: .\manipulation-gui/gui-changeformat.c:216 +#: manipulation-gui/gui-changeformat.c:216 +msgid "Save background color" +msgstr "Sla achtergrondkleur op" + +#: .\manipulation-gui/gui-changeformat.c:217 +#: manipulation-gui/gui-changeformat.c:217 +msgid "Save gamma" +msgstr "Sla gamma op" + +#: .\manipulation-gui/gui-changeformat.c:218 +#: manipulation-gui/gui-changeformat.c:218 +msgid "Save layer offset" +msgstr "Sla laag offset op" + +#: .\manipulation-gui/gui-changeformat.c:219 +#: manipulation-gui/gui-changeformat.c:219 +msgid "Save resolution" +msgstr "Sla resolutie op" + +#: .\manipulation-gui/gui-changeformat.c:220 +#: manipulation-gui/gui-changeformat.c:220 +msgid "Save creation date" +msgstr "Sla datum maken op" + +#: .\manipulation-gui/gui-changeformat.c:221 +#: manipulation-gui/gui-changeformat.c:221 +msgid "Save comments" +msgstr "Sla commentaar op" + +#: .\manipulation-gui/gui-changeformat.c:222 +#: manipulation-gui/gui-changeformat.c:222 +msgid "Save color from transparent pixels" +msgstr "Sla kleur van transparante pixels op" + +#: .\manipulation-gui/gui-changeformat.c:270 +#: manipulation-gui/gui-changeformat.c:270 +msgid "RLE compression" +msgstr "RLE compressie" + +#: .\manipulation-gui/gui-changeformat.c:273 +#: manipulation-gui/gui-changeformat.c:273 +msgid "Image origin" +msgstr "Bron van beeld" + +#: .\manipulation-gui/gui-changeformat.c:278 +#: .\manipulation-gui/gui-watermark.c:241 +#: manipulation-gui/gui-changeformat.c:278 manipulation-gui/gui-watermark.c:241 +msgid "Top-left" +msgstr "Boven-links" + +#: .\manipulation-gui/gui-changeformat.c:279 +#: .\manipulation-gui/gui-watermark.c:259 +#: manipulation-gui/gui-changeformat.c:279 manipulation-gui/gui-watermark.c:259 +msgid "Bottom-left" +msgstr "Onder-links" + +#: .\manipulation-gui/gui-changeformat.c:308 +#: .\manipulation-gui/gui-fliprotate.c:40 +#: manipulation-gui/gui-changeformat.c:308 manipulation-gui/gui-fliprotate.c:40 +msgid "None" +msgstr "Geen" + +#: .\manipulation-gui/gui-changeformat.c:309 +#: manipulation-gui/gui-changeformat.c:309 +msgid "LZW" +msgstr "LZW" + +#: .\manipulation-gui/gui-changeformat.c:310 +#: manipulation-gui/gui-changeformat.c:310 +msgid "Pack bits" +msgstr "Pack bits" + +#: .\manipulation-gui/gui-changeformat.c:311 +#: manipulation-gui/gui-changeformat.c:311 +msgid "Deflate" +msgstr "Deflate" + +#: .\manipulation-gui/gui-changeformat.c:312 +#: manipulation-gui/gui-changeformat.c:312 +msgid "JPEG" +msgstr "JPEG" + +#: .\manipulation-gui/gui-changeformat.c:313 +#: manipulation-gui/gui-changeformat.c:313 +msgid "CCITT G3 Fax" +msgstr "CCITT G3 Fax" + +#: .\manipulation-gui/gui-changeformat.c:314 +#: manipulation-gui/gui-changeformat.c:314 +msgid "CCITT G4 Fax" +msgstr "CCITT G4 Fax" + +#: .\manipulation-gui/gui-changeformat.c:329 +#: manipulation-gui/gui-changeformat.c:329 +msgid "This format has no params" +msgstr "Dit formaat heeft geen opties" + +#: .\manipulation-gui/gui-color.c:21 manipulation-gui/gui-color.c:21 +msgid "Brightness" +msgstr "Helderheid" + +#: .\manipulation-gui/gui-color.c:29 manipulation-gui/gui-color.c:29 +msgid "Contrast" +msgstr "Contrast" + +#: .\manipulation-gui/gui-color.c:36 manipulation-gui/gui-color.c:36 +msgid "Convert to grayscale" +msgstr "Omzetten naar grijswaarden" + +#: .\manipulation-gui/gui-color.c:38 manipulation-gui/gui-color.c:38 +msgid "Automatic color levels correction" +msgstr "Automatische kleurcorrectie" + +#: .\manipulation-gui/gui-color.c:41 manipulation-gui/gui-color.c:41 +msgid "Change color curve from settings file:" +msgstr "Verander kleurprofiel van bestand:" + +#: .\manipulation-gui/gui-color.c:42 manipulation-gui/gui-color.c:42 +msgid "Select GIMP Curve file" +msgstr "Kies GIMP curve bestand" + +#: .\manipulation-gui/gui-crop.c:27 manipulation-gui/gui-crop.c:27 +msgid "Crop to a standard aspect ratio" +msgstr "Snij bij volgens standaard aspect ratio" + +#: .\manipulation-gui/gui-crop.c:53 manipulation-gui/gui-crop.c:53 +msgid "Manual crop (pixel values)" +msgstr "Handmatig bijsnijden (pixel waarden)" + +#: .\manipulation-gui/gui-crop.c:58 .\manipulation-gui/gui-resize.c:63 +#: manipulation-gui/gui-crop.c:58 manipulation-gui/gui-resize.c:63 +msgid "Width" +msgstr "Breedte" + +#: .\manipulation-gui/gui-crop.c:62 .\manipulation-gui/gui-resize.c:65 +#: manipulation-gui/gui-crop.c:62 manipulation-gui/gui-resize.c:65 +msgid "Height" +msgstr "Hoogte" + +#: .\manipulation-gui/gui-crop.c:108 manipulation-gui/gui-crop.c:108 +msgid "One-to-one" +msgstr "1:1" + +#: .\manipulation-gui/gui-crop.c:111 manipulation-gui/gui-crop.c:111 +msgid "Classic 35 mm film" +msgstr "Klassieke 35 mm film" + +#: .\manipulation-gui/gui-crop.c:114 manipulation-gui/gui-crop.c:114 +msgid "Standard VGA monitor" +msgstr "Standaard VGA beeldscherm" + +#: .\manipulation-gui/gui-crop.c:117 manipulation-gui/gui-crop.c:117 +msgid "Widescreen" +msgstr "Breedbeeld" + +#: .\manipulation-gui/gui-crop.c:120 manipulation-gui/gui-crop.c:120 +msgid "Widescreen extended" +msgstr "Breedbeeld stretch" + +#: .\manipulation-gui/gui-crop.c:123 manipulation-gui/gui-crop.c:123 +msgid "EU Passport portrait" +msgstr "EU paspoort staand" + +#: .\manipulation-gui/gui-crop.c:126 manipulation-gui/gui-crop.c:126 +msgid "Classic smartphone screen" +msgstr "Klassiek scherm mobiele telefoon" + +#: .\manipulation-gui/gui-crop.c:129 manipulation-gui/gui-crop.c:129 +msgid "Tall smartphone screen" +msgstr "Groot scherm mobieltje" + +#: .\manipulation-gui/gui-crop.c:132 manipulation-gui/gui-crop.c:132 +msgid "Classic tablet screen" +msgstr "Klassiek tablet scherm" + +#: .\manipulation-gui/gui-crop.c:135 manipulation-gui/gui-crop.c:135 +msgid "Custom ratio" +msgstr "Aangepaste verhouding" + +#: .\manipulation-gui/gui-fliprotate.c:19 manipulation-gui/gui-fliprotate.c:19 +msgid "Flip" +msgstr "Omslaan" + +#: .\manipulation-gui/gui-fliprotate.c:23 manipulation-gui/gui-fliprotate.c:23 +msgid "Horizontally" +msgstr "Horizontaal" + +#: .\manipulation-gui/gui-fliprotate.c:29 manipulation-gui/gui-fliprotate.c:29 +msgid "Vertically" +msgstr "Vertikaal" + +#: .\manipulation-gui/gui-fliprotate.c:37 manipulation-gui/gui-fliprotate.c:37 +msgid "Rotation" +msgstr "Draainen" + +#: .\manipulation-gui/gui-rename.c:26 manipulation-gui/gui-rename.c:26 +msgid "Keywords" +msgstr "Sleutelwoorden" + +#: .\manipulation-gui/gui-rename.c:30 manipulation-gui/gui-rename.c:30 +msgid "Original filename (without extension)" +msgstr "Originele bestandsnaam (zonder extensie)" + +#: .\manipulation-gui/gui-rename.c:31 manipulation-gui/gui-rename.c:31 +msgid "Incremental number" +msgstr "Opeenvolgend nummer" + +#: .\manipulation-gui/gui-rename.c:32 manipulation-gui/gui-rename.c:32 +msgid "Date and time (YYYY-MM-DD_hh-mm)" +msgstr "Datum and tijd (YYYY-MM-DD_hh-mm)" + +#: .\manipulation-gui/gui-rename.c:52 manipulation-gui/gui-rename.c:52 +#, c-format +msgid "" +"Can't save!\n" +"'%s' or '%s' symbol must be present." +msgstr "" +"Kan niet opslaan\n" +"'%s' or '%s' symbool mist." + +#: .\manipulation-gui/gui-rename.c:64 manipulation-gui/gui-rename.c:64 +msgid "" +"Can't save!\n" +"Pattern contains invalid characters." +msgstr "Kan niet opslaan. Patroon bevat niet toegestane tekens." + +#: .\manipulation-gui/gui-resize.c:37 manipulation-gui/gui-resize.c:37 +msgid "Set to a percentage of the original" +msgstr "Percentage van het origineel instellen" + +#: .\manipulation-gui/gui-resize.c:39 manipulation-gui/gui-resize.c:39 +msgid "Set exact size in pixel" +msgstr "Stel de gewenste waarde in pixels in" + +#: .\manipulation-gui/gui-resize.c:45 manipulation-gui/gui-resize.c:45 +msgid "For both dimensions" +msgstr "Voor beide dimensies" + +#: .\manipulation-gui/gui-resize.c:47 manipulation-gui/gui-resize.c:47 +msgid "Set width only" +msgstr "Tel de breedte in" + +#: .\manipulation-gui/gui-resize.c:49 manipulation-gui/gui-resize.c:49 +msgid "Set height only" +msgstr "Stel de hoogte in" + +#: .\manipulation-gui/gui-resize.c:52 manipulation-gui/gui-resize.c:52 +msgid "Preserve aspect ratio" +msgstr "Sla de verhouding op" + +#: .\manipulation-gui/gui-resize.c:56 manipulation-gui/gui-resize.c:56 +msgid "Interpolation quality" +msgstr "Interpolatie kwaliteit" + +#: .\manipulation-gui/gui-resize.c:69 manipulation-gui/gui-resize.c:69 +msgid "Change resolution" +msgstr "Verander resolutie" + +#: .\manipulation-gui/gui-resize.c:74 manipulation-gui/gui-resize.c:74 +msgid "X axis" +msgstr "X as" + +#: .\manipulation-gui/gui-resize.c:77 manipulation-gui/gui-resize.c:77 +msgid "Y axis" +msgstr "Y as" + +#: .\manipulation-gui/gui-sharpblur.c:17 manipulation-gui/gui-sharpblur.c:17 +msgid "More sharpen" +msgstr "Meer verscherpen" + +#: .\manipulation-gui/gui-sharpblur.c:23 manipulation-gui/gui-sharpblur.c:23 +msgid "More blurred" +msgstr "Meer vervagen" + +#: .\manipulation-gui/gui-userdef.c:49 manipulation-gui/gui-userdef.c:49 +msgid "" +"Choose a supported GIMP procedure from the list on the left\n" +"and define its parameters on the right." +msgstr "Kies een bestaande GIMP procedure uit de lijst links en stel de opties rechts in." + +#: .\manipulation-gui/gui-userdef.c:61 manipulation-gui/gui-userdef.c:61 +msgid "Search" +msgstr "Zoek" + +#: .\manipulation-gui/gui-userdef.c:303 manipulation-gui/gui-userdef.c:303 +msgid "" +"Can't save because\n" +"no procedure has been selected" +msgstr "Opslaan niet mogelijk omdat er geen procedure is gekozen" + +#: .\manipulation-gui/gui-userdef.c:349 manipulation-gui/gui-userdef.c:349 +msgid "Author" +msgstr "Auteur" + +#: .\manipulation-gui/gui-userdef.c:570 manipulation-gui/gui-userdef.c:570 +msgid "This procedure takes no editable params" +msgstr "Bij deze procedure zijner geen opties" + +#: .\manipulation-gui/gui-watermark.c:32 manipulation-gui/gui-watermark.c:32 +msgid "Text watermark" +msgstr "Tekst watermerk" + +#: .\manipulation-gui/gui-watermark.c:36 manipulation-gui/gui-watermark.c:36 +msgid "Text" +msgstr "Tekst" + +#: .\manipulation-gui/gui-watermark.c:45 manipulation-gui/gui-watermark.c:45 +msgid "Font" +msgstr "Lettertype" + +#: .\manipulation-gui/gui-watermark.c:51 manipulation-gui/gui-watermark.c:51 +msgid "Color" +msgstr "Kleur" + +#: .\manipulation-gui/gui-watermark.c:58 manipulation-gui/gui-watermark.c:58 +msgid "Image watermark" +msgstr "Afbeelding voor watermerk" + +#: .\manipulation-gui/gui-watermark.c:62 manipulation-gui/gui-watermark.c:62 +msgid "Select image" +msgstr "Kies afbeelding" + +#: .\manipulation-gui/gui-watermark.c:67 bimp-gui.c:601 +#: manipulation-gui/gui-watermark.c:67 +msgid "All supported types" +msgstr "Alle ondersteunde types" + +#: .\manipulation-gui/gui-watermark.c:112 manipulation-gui/gui-watermark.c:112 +msgid "Opacity" +msgstr "Transparantie" + +#: .\manipulation-gui/gui-watermark.c:122 manipulation-gui/gui-watermark.c:122 +msgid "Position on the image" +msgstr "Positie in de afbeelding" + +#: .\manipulation-gui/gui-watermark.c:244 manipulation-gui/gui-watermark.c:244 +msgid "Top-center" +msgstr "Boven-midden" + +#: .\manipulation-gui/gui-watermark.c:247 manipulation-gui/gui-watermark.c:247 +msgid "Top-right" +msgstr "Boven-rechts" + +#: .\manipulation-gui/gui-watermark.c:250 manipulation-gui/gui-watermark.c:250 +msgid "Center-left" +msgstr "Midden-links" + +#: .\manipulation-gui/gui-watermark.c:253 manipulation-gui/gui-watermark.c:253 +msgid "Center" +msgstr "Midden" + +#: .\manipulation-gui/gui-watermark.c:256 manipulation-gui/gui-watermark.c:256 +msgid "Center-right" +msgstr "Midden-rechts" + +#: .\manipulation-gui/gui-watermark.c:262 manipulation-gui/gui-watermark.c:262 +msgid "Bottom-center" +msgstr "Onder-midden" + +#: .\manipulation-gui/gui-watermark.c:265 manipulation-gui/gui-watermark.c:265 +msgid "Bottom-right" +msgstr "Onder-rechts" + +#: bimp-gui.c:129 bimp-gui.c:897 +msgid "The manipulations set is empty!" +msgstr "Geen keuze uit de opties gemaakt!" + +#: bimp-gui.c:132 +msgid "The file list is empty!" +msgstr "Geen bestand gekozen!" + +#: bimp-gui.c:162 +msgid "Manipulation set" +msgstr "Lijst met mogelijkheden" + +#: bimp-gui.c:192 +msgid "Input files and options" +msgstr "Te bewerken lijst en opties" + +#: bimp-gui.c:214 +msgid "Add images" +msgstr "Voeg afbeeldingen toe" + +#: bimp-gui.c:216 +msgid "Remove images" +msgstr "Verwijder afbeeldingen" + +#: bimp-gui.c:224 +msgid "Output folder" +msgstr "Doelmap" + +#: bimp-gui.c:238 +msgid "Use the selected file's location as the output" +msgstr "Neem de map met de gekozen bestanden als doelmap" + +#: bimp-gui.c:246 +msgid "Keep folder hierarchy" +msgstr "Houdt de volgorde van de mappen aan" + +#: bimp-gui.c:251 +msgid "Delete original file when done" +msgstr "Verwijder na afloop de originele bestanden" + +#: bimp-gui.c:255 +msgid "Keep the modification dates" +msgstr "Wijzigingsdatum opslaan" + +#: bimp-gui.c:261 +msgid "Click for preview" +msgstr "Klik voor een preview" + +#: bimp-gui.c:354 +#, c-format +msgid "Couldn't read into \"%s\" directory." +msgstr "Inhoud \"%s\" folder niet te lezen." + +#: bimp-gui.c:464 +msgid "Can't show a preview because the manipulations set is empty" +msgstr "Kan geen preview tonen omdat geen opties zijn gekozen" + +#: bimp-gui.c:491 +msgid "Preview" +msgstr "Preview" + +#: bimp-gui.c:503 +msgid "This is how the selected image will look like after the batch process" +msgstr "Zo zal de gekozen afbeelding er na de bewerking uitzien" + +#: bimp-gui.c:592 +msgid "Select images" +msgstr "Kies afbeeldingen" + +#: bimp-gui.c:665 +msgid "Select folders containing images" +msgstr "Kies folders die afbeeldingen bevatten" + +#: bimp-gui.c:674 +msgid "Add files from the whole hierarchy" +msgstr "Bestanden van onderliggende mappen ook toevoegen" + +#: bimp-gui.c:691 +msgid "Select output folder" +msgstr "Kies doelmap" + +#: bimp-gui.c:748 bimp-gui.c:903 +msgid "Save this set..." +msgstr "Bewaar deze set..." + +#: bimp-gui.c:752 bimp-gui.c:958 +msgid "Load set..." +msgstr "Laad set..." + +#: bimp-gui.c:763 +msgid "Edit properties..." +msgstr "Bewerk eigenschappen..." + +#: bimp-gui.c:766 +msgid "Remove this manipulation" +msgstr "Verwijder deze bewerking" + +#: bimp-gui.c:773 +msgid "Add single images..." +msgstr "Voeg aparte afbeeldingen toe..." + +#: bimp-gui.c:776 +msgid "Add folders..." +msgstr "Voeg mappen toe..." + +#: bimp-gui.c:779 +msgid "Add all opened images" +msgstr "Voeg alle geopenden afbeeldingen toe" + +#: bimp-gui.c:786 +msgid "Remove selected" +msgstr "Verwijder de selectie" + +#: bimp-gui.c:789 +msgid "Remove all" +msgstr "Verwijder alles" + +#: bimp-gui.c:833 +msgid "Can't add another manipulation of this kind. Only one is permitted!" +msgstr "Kan niet nog dit soort bewerking toevoegen. Maar één toegestaan!" + +#: bimp-gui.c:924 bimp-gui.c:975 +msgid "An error occured when importing a saved batch file :(" +msgstr "Tijdens het importeren van een opgeslagen batch bestand ging er wat fout :(" + +#: bimp-gui.c:946 +msgid "This will overwrite current manipulations set. Continue?" +msgstr "Dit overschrijft de huidige set bewerkingen. Doorgaan?" + +#: bimp-gui.c:1013 bimp.c:67 +msgid "Applies GIMP manipulations on groups of images" +msgstr "GIMP bewerkingen uitvoeren op groepen afbeeldingen" + +#: bimp-gui.c:1020 +msgid "translator-name " +msgstr "Just Vecht " + +#: bimp-manipulations.c:275 +msgid "Resize" +msgstr "Schalen" + +#: bimp-manipulations.c:278 +msgid "Crop" +msgstr "Bijsnijden" + +#: bimp-manipulations.c:281 +msgid "Flip or Rotate" +msgstr "Omslaan of draaien" + +#: bimp-manipulations.c:284 +msgid "Color correction" +msgstr "Kleur correctie" + +#: bimp-manipulations.c:287 +msgid "Sharp or Blur" +msgstr "Verscherpen of vervagen" + +#: bimp-manipulations.c:290 +msgid "Add a Watermark" +msgstr "Voeg een watermerk toe" + +#: bimp-manipulations.c:293 +msgid "Change format and compression" +msgstr "Verander formaat en compressie" + +#: bimp-manipulations.c:296 +msgid "Rename with a pattern" +msgstr "Hernoem via een patroon" + +#: bimp-manipulations.c:299 +msgid "Other GIMP procedure..." +msgstr "Andere GIMP bewerking..." + +#: bimp-operate.c:171 +#, c-format +msgid "" +"Can't save image \"%s\": input file has no extension.\n" +"You can solve this error by adding a \"Change format or compression\" step" +msgstr "Kan afbeelding \"%s niet opslaan: gekozen bestand heeft geen extensie. Op te lossen door een \"Verander formaat of compressie\" bewerking tussen te voegen" + +#: bimp-operate.c:177 +#, c-format +msgid "" +"GIMP can't save %s back to its original SVG format.\n" +"You can solve this error by adding a \"Change format or compression\" step" +msgstr "GIMP kan \"%s niet opslaan in het originele SVG formaat. Op te lossen door een \"Verander formaat of compressie\" bewerking tussen te voegen" + +#: bimp-operate.c:183 +#, c-format +msgid "Working on file \"%s\"..." +msgstr "Bezig met bestand \"%s\"..." + +#: bimp-operate.c:323 +msgid "Operations stopped" +msgstr "Bewerkinegen gestopt" + +#: bimp-operate.c:330 +#, c-format +msgid "End, all files have been processed with %d errors" +msgstr "Einde, alle bestanden bewerkt met %d fouten" + +#: bimp-operate.c:1165 +#, c-format +msgid "File %s already exists, overwrite it?" +msgstr "Bestand %s bestaat al, overschrijven?" + +#: bimp-operate.c:1170 +msgid "Always apply this decision" +msgstr "Deze keuze onthouden" + +#: bimp-operate.c:1182 +msgid "Overwrite?" +msgstr "Overschrijven?" + +msgid "Alert when overwriting existing files" +msgstr "Waarschuwen wanneer bestaande bestanden worden overschreven" + +msgid "Yes, don't ask again" +msgstr "Ja, niet opnieuw vragen" + +msgid "Save this set" +msgstr "Bewaar deze set" + +msgid "Load set" +msgstr "Set laden" diff --git a/bimp-locale/no/LC_MESSAGES/gimp20-plugin-bimp.mo b/bimp-locale/no/LC_MESSAGES/gimp20-plugin-bimp.mo new file mode 100644 index 0000000..a3019b2 Binary files /dev/null and b/bimp-locale/no/LC_MESSAGES/gimp20-plugin-bimp.mo differ diff --git a/bimp-locale/no/LC_MESSAGES/gimp20-plugin-bimp.po b/bimp-locale/no/LC_MESSAGES/gimp20-plugin-bimp.po new file mode 100644 index 0000000..eedc9b9 --- /dev/null +++ b/bimp-locale/no/LC_MESSAGES/gimp20-plugin-bimp.po @@ -0,0 +1,739 @@ +msgid "" +msgstr "" +"Project-Id-Version: gimp-plugin-bimp\n" +"POT-Creation-Date: 2015-05-21 22:12+0100\n" +"PO-Revision-Date: 2016-10-30 12:55+0100\n" +"Last-Translator: Kolbjørn Stuestøl \n" +"Language-Team: Norwegian nynorsk \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.8.11\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-Basepath: ../../../src\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: ./manipulation-gui\n" + +#: .\manipulation-gui/gui-changeformat.c:37 +#: manipulation-gui/gui-changeformat.c:37 +msgid "Format settings" +msgstr "Formatinnstillingar" + +#: .\manipulation-gui/gui-changeformat.c:58 +#: manipulation-gui/gui-changeformat.c:58 +msgid "Interlaced" +msgstr "Fletta" + +#: .\manipulation-gui/gui-changeformat.c:78 +#: .\manipulation-gui/gui-changeformat.c:118 +#: manipulation-gui/gui-changeformat.c:78 +#: manipulation-gui/gui-changeformat.c:118 +msgid "Quality" +msgstr "Kvalitet" + +#: .\manipulation-gui/gui-changeformat.c:84 +#: .\manipulation-gui/gui-changeformat.c:213 +#: manipulation-gui/gui-changeformat.c:84 +#: manipulation-gui/gui-changeformat.c:213 +msgid "Advanced params" +msgstr "Avanserte parametrar" + +#: .\manipulation-gui/gui-changeformat.c:88 +#: manipulation-gui/gui-changeformat.c:88 +msgid "Smoothing" +msgstr "Utglatting" + +#: .\manipulation-gui/gui-changeformat.c:95 +#: manipulation-gui/gui-changeformat.c:95 +msgid "Optimize" +msgstr "Optimer" + +#: .\manipulation-gui/gui-changeformat.c:96 +#: manipulation-gui/gui-changeformat.c:96 +msgid "Progressive" +msgstr "Progressiv" + +#: .\manipulation-gui/gui-changeformat.c:97 +#: manipulation-gui/gui-changeformat.c:97 +msgid "Save baseline" +msgstr "Lagra baselinje" + +#: .\manipulation-gui/gui-changeformat.c:100 +#: manipulation-gui/gui-changeformat.c:100 +msgid "Comment" +msgstr "Kommentar" + +#: .\manipulation-gui/gui-changeformat.c:107 +#: manipulation-gui/gui-changeformat.c:107 +msgid "Markers rows" +msgstr "Merk rader" + +#: .\manipulation-gui/gui-changeformat.c:112 +#: manipulation-gui/gui-changeformat.c:112 +msgid "Subsampling" +msgstr "Subsampling" + +#: .\manipulation-gui/gui-changeformat.c:116 +#: manipulation-gui/gui-changeformat.c:116 +msgid "Small size" +msgstr "Liten storleik" + +#: .\manipulation-gui/gui-changeformat.c:123 +#: manipulation-gui/gui-changeformat.c:123 +msgid "DCT algorithm" +msgstr "DCT-algoritme" + +#: .\manipulation-gui/gui-changeformat.c:127 +#: manipulation-gui/gui-changeformat.c:127 +msgid "Integer" +msgstr "Heiltaal" + +#: .\manipulation-gui/gui-changeformat.c:128 +#: manipulation-gui/gui-changeformat.c:128 +msgid "Fast integer" +msgstr "Raske heiltal" + +#: .\manipulation-gui/gui-changeformat.c:129 +#: manipulation-gui/gui-changeformat.c:129 +msgid "Float" +msgstr "Desimaltal" + +#: .\manipulation-gui/gui-changeformat.c:205 +#: manipulation-gui/gui-changeformat.c:205 +msgid "Interlace (Adam7)" +msgstr "Interlacing (Adam7)" + +#: .\manipulation-gui/gui-changeformat.c:207 +#: .\manipulation-gui/gui-changeformat.c:303 +#: manipulation-gui/gui-changeformat.c:207 +#: manipulation-gui/gui-changeformat.c:303 +msgid "Compression" +msgstr "Kompresjon" + +#: .\manipulation-gui/gui-changeformat.c:216 +#: manipulation-gui/gui-changeformat.c:216 +msgid "Save background color" +msgstr "Lagra bakgrunnsfarge" + +#: .\manipulation-gui/gui-changeformat.c:217 +#: manipulation-gui/gui-changeformat.c:217 +msgid "Save gamma" +msgstr "Lagra gamma" + +#: .\manipulation-gui/gui-changeformat.c:218 +#: manipulation-gui/gui-changeformat.c:218 +msgid "Save layer offset" +msgstr "Lagra lagforskyvinga" + +#: .\manipulation-gui/gui-changeformat.c:219 +#: manipulation-gui/gui-changeformat.c:219 +msgid "Save resolution" +msgstr "Lagra oppløysinga" + +#: .\manipulation-gui/gui-changeformat.c:220 +#: manipulation-gui/gui-changeformat.c:220 +msgid "Save creation date" +msgstr "Lagra opprettingsdatoen" + +#: .\manipulation-gui/gui-changeformat.c:221 +#: manipulation-gui/gui-changeformat.c:221 +msgid "Save comments" +msgstr "Lagra merknadar" + +#: .\manipulation-gui/gui-changeformat.c:222 +#: manipulation-gui/gui-changeformat.c:222 +msgid "Save color from transparent pixels" +msgstr "Lagra farge frå gjennomsiktige pikslar" + +#: .\manipulation-gui/gui-changeformat.c:270 +#: manipulation-gui/gui-changeformat.c:270 +msgid "RLE compression" +msgstr "RLE-komprimering" + +#: .\manipulation-gui/gui-changeformat.c:273 +#: manipulation-gui/gui-changeformat.c:273 +msgid "Image origin" +msgstr "Original" + +#: .\manipulation-gui/gui-changeformat.c:278 .\manipulation-gui/gui-crop.c:71 +#: .\manipulation-gui/gui-watermark.c:241 +#: manipulation-gui/gui-changeformat.c:278 manipulation-gui/gui-crop.c:71 +#: manipulation-gui/gui-watermark.c:241 +msgid "Top-left" +msgstr "Oppe-venstre" + +#: .\manipulation-gui/gui-changeformat.c:279 .\manipulation-gui/gui-crop.c:73 +#: .\manipulation-gui/gui-watermark.c:259 +#: manipulation-gui/gui-changeformat.c:279 manipulation-gui/gui-crop.c:73 +#: manipulation-gui/gui-watermark.c:259 +msgid "Bottom-left" +msgstr "Nede-venstre" + +#: .\manipulation-gui/gui-changeformat.c:308 +#: .\manipulation-gui/gui-fliprotate.c:39 +#: manipulation-gui/gui-changeformat.c:308 manipulation-gui/gui-fliprotate.c:39 +msgid "None" +msgstr "Ingen" + +#: .\manipulation-gui/gui-changeformat.c:309 +#: manipulation-gui/gui-changeformat.c:309 +msgid "LZW" +msgstr "LZW" + +#: .\manipulation-gui/gui-changeformat.c:310 +#: manipulation-gui/gui-changeformat.c:310 +msgid "Pack bits" +msgstr "Pakk bits" + +#: .\manipulation-gui/gui-changeformat.c:311 +#: manipulation-gui/gui-changeformat.c:311 +msgid "Deflate" +msgstr "Deflate" + +#: .\manipulation-gui/gui-changeformat.c:312 +#: manipulation-gui/gui-changeformat.c:312 +msgid "JPEG" +msgstr "JPEG" + +#: .\manipulation-gui/gui-changeformat.c:313 +#: manipulation-gui/gui-changeformat.c:313 +msgid "CCITT G3 Fax" +msgstr "CCITT G3 faks" + +#: .\manipulation-gui/gui-changeformat.c:314 +#: manipulation-gui/gui-changeformat.c:314 +msgid "CCITT G4 Fax" +msgstr "CCITT G4 faks" + +#: .\manipulation-gui/gui-changeformat.c:329 +#: manipulation-gui/gui-changeformat.c:329 +msgid "This format has no params" +msgstr "Dette formatet har ingen parametrar" + +#: .\manipulation-gui/gui-color.c:21 manipulation-gui/gui-color.c:21 +msgid "Brightness" +msgstr "Lysstyrke" + +#: .\manipulation-gui/gui-color.c:29 manipulation-gui/gui-color.c:29 +msgid "Contrast" +msgstr "Kontrast" + +#: .\manipulation-gui/gui-color.c:36 manipulation-gui/gui-color.c:36 +msgid "Convert to grayscale" +msgstr "Konverter til gråtoner" + +#: .\manipulation-gui/gui-color.c:38 manipulation-gui/gui-color.c:38 +msgid "Automatic color levels correction" +msgstr "Automatisk korrigering av fargenivå" + +#: .\manipulation-gui/gui-color.c:41 manipulation-gui/gui-color.c:41 +msgid "Change color curve from settings file:" +msgstr "Endra fargekurve frå innstillingsfila" + +#: .\manipulation-gui/gui-color.c:42 manipulation-gui/gui-color.c:42 +msgid "Select GIMP Curve file" +msgstr "Vel GIMP kurvefil" + +#: .\manipulation-gui/gui-crop.c:28 manipulation-gui/gui-crop.c:28 +msgid "Crop to a standard aspect ratio" +msgstr "Klipp til eit standard sideforhold" + +#: .\manipulation-gui/gui-crop.c:54 manipulation-gui/gui-crop.c:54 +msgid "Manual crop (pixel values)" +msgstr "Manuell klipping (pikselverdiar)" + +#: .\manipulation-gui/gui-crop.c:59 .\manipulation-gui/gui-resize.c:63 +#: manipulation-gui/gui-crop.c:59 manipulation-gui/gui-resize.c:63 +msgid "Width" +msgstr "Breidd" + +#: .\manipulation-gui/gui-crop.c:63 .\manipulation-gui/gui-resize.c:65 +#: manipulation-gui/gui-crop.c:63 manipulation-gui/gui-resize.c:65 +msgid "Height" +msgstr "Høgd" + +#: .\manipulation-gui/gui-crop.c:68 manipulation-gui/gui-crop.c:68 +msgid "Start from" +msgstr "Byrja frå" + +#: .\manipulation-gui/gui-crop.c:70 .\manipulation-gui/gui-watermark.c:253 +#: manipulation-gui/gui-crop.c:70 manipulation-gui/gui-watermark.c:253 +msgid "Center" +msgstr "Midten" + +#: .\manipulation-gui/gui-crop.c:72 .\manipulation-gui/gui-watermark.c:247 +#: manipulation-gui/gui-crop.c:72 manipulation-gui/gui-watermark.c:247 +msgid "Top-right" +msgstr "Øvst-høgre" + +#: .\manipulation-gui/gui-crop.c:74 .\manipulation-gui/gui-watermark.c:265 +#: manipulation-gui/gui-crop.c:74 manipulation-gui/gui-watermark.c:265 +msgid "Bottom-right" +msgstr "Botnen-høgre" + +#: .\manipulation-gui/gui-crop.c:133 manipulation-gui/gui-crop.c:133 +msgid "One-to-one" +msgstr "1:1" + +#: .\manipulation-gui/gui-crop.c:136 manipulation-gui/gui-crop.c:136 +msgid "Classic 35 mm film" +msgstr "Klassisk 35 mm-film" + +#: .\manipulation-gui/gui-crop.c:139 manipulation-gui/gui-crop.c:139 +msgid "Standard VGA monitor" +msgstr "VGA standardskjerm" + +#: .\manipulation-gui/gui-crop.c:142 manipulation-gui/gui-crop.c:142 +msgid "Widescreen" +msgstr "Breibiletformat" + +#: .\manipulation-gui/gui-crop.c:145 manipulation-gui/gui-crop.c:145 +msgid "Widescreen extended" +msgstr "Breibiletformat utvida" + +#: .\manipulation-gui/gui-crop.c:148 manipulation-gui/gui-crop.c:148 +msgid "EU Passport portrait" +msgstr "Passfoto for EU-pass" + +#: .\manipulation-gui/gui-crop.c:151 manipulation-gui/gui-crop.c:151 +msgid "Classic smartphone screen" +msgstr "Klassisk skjerm for smarttelefon" + +#: .\manipulation-gui/gui-crop.c:154 manipulation-gui/gui-crop.c:154 +msgid "Tall smartphone screen" +msgstr "Stor smarttelefonskjerm" + +#: .\manipulation-gui/gui-crop.c:157 manipulation-gui/gui-crop.c:157 +msgid "Classic tablet screen" +msgstr "Klassisk nettbrettskjerm" + +#: .\manipulation-gui/gui-crop.c:160 manipulation-gui/gui-crop.c:160 +msgid "Custom ratio" +msgstr "Tilpassa sideforhold" + +#: .\manipulation-gui/gui-fliprotate.c:19 manipulation-gui/gui-fliprotate.c:19 +msgid "Flip" +msgstr "Spegelvend" + +#: .\manipulation-gui/gui-fliprotate.c:23 manipulation-gui/gui-fliprotate.c:23 +msgid "Horizontally" +msgstr "Vassrett" + +#: .\manipulation-gui/gui-fliprotate.c:29 manipulation-gui/gui-fliprotate.c:29 +msgid "Vertically" +msgstr "Loddrett" + +#: .\manipulation-gui/gui-fliprotate.c:37 manipulation-gui/gui-fliprotate.c:37 +msgid "Rotation" +msgstr "Rotering" + +#: .\manipulation-gui/gui-rename.c:26 manipulation-gui/gui-rename.c:26 +msgid "Keywords" +msgstr "Nøkkelord" + +#: .\manipulation-gui/gui-rename.c:30 manipulation-gui/gui-rename.c:30 +msgid "Original filename (without extension)" +msgstr "Opphavleg filnamn (utan utviding)" + +#: .\manipulation-gui/gui-rename.c:31 manipulation-gui/gui-rename.c:31 +msgid "Incremental number" +msgstr "Tal for auke" + +#: .\manipulation-gui/gui-rename.c:32 manipulation-gui/gui-rename.c:32 +msgid "Date and time (YYYY-MM-DD_hh-mm)" +msgstr "Dato og klokkeslett (ÅÅÅÅ-MM-DD_tt-mm)" + +#: .\manipulation-gui/gui-rename.c:52 manipulation-gui/gui-rename.c:52 +#, c-format +msgid "" +"Can't save!\n" +"'%s' or '%s' symbol must be present." +msgstr "Kan ikkje lagra. Symbola «%s» eller «%s» må vera med." + +#: .\manipulation-gui/gui-rename.c:64 manipulation-gui/gui-rename.c:64 +msgid "" +"Can't save!\n" +"Pattern contains invalid characters." +msgstr "" +"Kan ikkje lagra.\n" +"Mønsteret inneheld ugyldige teikn." + +#: .\manipulation-gui/gui-resize.c:37 manipulation-gui/gui-resize.c:37 +msgid "Set to a percentage of the original" +msgstr "Set til ein prosent av originalen" + +#: .\manipulation-gui/gui-resize.c:39 manipulation-gui/gui-resize.c:39 +msgid "Set exact size in pixel" +msgstr "Set nøyaktig storleik i pikslar" + +#: .\manipulation-gui/gui-resize.c:45 manipulation-gui/gui-resize.c:45 +msgid "For both dimensions" +msgstr "For breidd og høgd" + +#: .\manipulation-gui/gui-resize.c:47 manipulation-gui/gui-resize.c:47 +msgid "Set width only" +msgstr "Set berre breidd" + +#: .\manipulation-gui/gui-resize.c:49 manipulation-gui/gui-resize.c:49 +msgid "Set height only" +msgstr "Set berre høgd" + +#: .\manipulation-gui/gui-resize.c:52 manipulation-gui/gui-resize.c:52 +msgid "Preserve aspect ratio" +msgstr "Behald sideforholdet" + +#: .\manipulation-gui/gui-resize.c:56 manipulation-gui/gui-resize.c:56 +msgid "Interpolation quality" +msgstr "Interpoleringskvalitet" + +#: .\manipulation-gui/gui-resize.c:69 manipulation-gui/gui-resize.c:69 +msgid "Change resolution" +msgstr "Endra oppløysinga" + +#: .\manipulation-gui/gui-resize.c:74 manipulation-gui/gui-resize.c:74 +msgid "X axis" +msgstr "X-akse" + +#: .\manipulation-gui/gui-resize.c:77 manipulation-gui/gui-resize.c:77 +msgid "Y axis" +msgstr "Y-akse" + +#: .\manipulation-gui/gui-sharpblur.c:17 manipulation-gui/gui-sharpblur.c:17 +msgid "More sharpen" +msgstr "Gjer skarpare" + +#: .\manipulation-gui/gui-sharpblur.c:23 manipulation-gui/gui-sharpblur.c:23 +msgid "More blurred" +msgstr "Gjer meir sløra" + +#: .\manipulation-gui/gui-userdef.c:49 manipulation-gui/gui-userdef.c:49 +msgid "" +"Choose a supported GIMP procedure from the list on the left\n" +"and define its parameters on the right." +msgstr "" +"Vel ein GIMP-prosedyre frå lista til venstre\n" +"og definer innstillingane til høgre." + +#: .\manipulation-gui/gui-userdef.c:61 manipulation-gui/gui-userdef.c:61 +msgid "Search" +msgstr "Søk" + +#: .\manipulation-gui/gui-userdef.c:303 manipulation-gui/gui-userdef.c:303 +msgid "" +"Can't save because\n" +"no procedure has been selected" +msgstr "" +"Kan ikkje lagra fordi\n" +"ingen prosedyre er vald." + +#: .\manipulation-gui/gui-userdef.c:349 manipulation-gui/gui-userdef.c:349 +msgid "Author" +msgstr "Forfattar" + +#: .\manipulation-gui/gui-userdef.c:601 manipulation-gui/gui-userdef.c:601 +msgid "This procedure takes no editable params" +msgstr "Denne prosedyren har ingen valbare innstillingar" + +#: .\manipulation-gui/gui-watermark.c:32 manipulation-gui/gui-watermark.c:32 +msgid "Text watermark" +msgstr "Bruk tekst som vassmerke" + +#: .\manipulation-gui/gui-watermark.c:36 manipulation-gui/gui-watermark.c:36 +msgid "Text" +msgstr "Tekst" + +#: .\manipulation-gui/gui-watermark.c:45 manipulation-gui/gui-watermark.c:45 +msgid "Font" +msgstr "Skrifttype" + +#: .\manipulation-gui/gui-watermark.c:51 manipulation-gui/gui-watermark.c:51 +msgid "Color" +msgstr "Farge" + +#: .\manipulation-gui/gui-watermark.c:58 manipulation-gui/gui-watermark.c:58 +msgid "Image watermark" +msgstr "Bruk bilete som vassmerke" + +#: .\manipulation-gui/gui-watermark.c:62 manipulation-gui/gui-watermark.c:62 +msgid "Select image" +msgstr "Vel bilete" + +#: .\manipulation-gui/gui-watermark.c:67 bimp-gui.c:611 +#: manipulation-gui/gui-watermark.c:67 +msgid "All supported types" +msgstr "Alle støtta format" + +#: .\manipulation-gui/gui-watermark.c:112 manipulation-gui/gui-watermark.c:112 +msgid "Opacity" +msgstr "Dekkevne" + +#: .\manipulation-gui/gui-watermark.c:122 manipulation-gui/gui-watermark.c:122 +msgid "Position on the image" +msgstr "Plassering av biletet" + +#: .\manipulation-gui/gui-watermark.c:244 manipulation-gui/gui-watermark.c:244 +msgid "Top-center" +msgstr "Oppe-midtstilt" + +#: .\manipulation-gui/gui-watermark.c:250 manipulation-gui/gui-watermark.c:250 +msgid "Center-left" +msgstr "Midtstilt-venstre" + +#: .\manipulation-gui/gui-watermark.c:256 manipulation-gui/gui-watermark.c:256 +msgid "Center-right" +msgstr "Midtstilt-høgre" + +#: .\manipulation-gui/gui-watermark.c:262 manipulation-gui/gui-watermark.c:262 +msgid "Bottom-center" +msgstr "Nede-midtstilt" + +#: bimp-gui.c:129 bimp-gui.c:907 +msgid "The manipulations set is empty!" +msgstr "Oppgåvesettet er tomt." + +#: bimp-gui.c:132 +msgid "The file list is empty!" +msgstr "Fillista er tom." + +#: bimp-gui.c:162 +msgid "Manipulation set" +msgstr "Oppgåvesettet" + +#: bimp-gui.c:192 +msgid "Input files and options" +msgstr "Inndatafiler og innstillingar" + +#: bimp-gui.c:214 +msgid "Add images" +msgstr "Legg til bilete" + +#: bimp-gui.c:216 +msgid "Remove images" +msgstr "Fjern bilete" + +#: bimp-gui.c:224 +msgid "Output folder" +msgstr "Mappe for lagring" + +#: bimp-gui.c:238 +msgid "Use the selected file's location as the output" +msgstr "Bruk den merkte filadressa som utgang" + +#: bimp-gui.c:246 +msgid "Keep folder hierarchy" +msgstr "Behald mappehierakiet" + +#: bimp-gui.c:251 +msgid "Delete original file when done" +msgstr "Slett den opphavlege fila når ferdig" + +#: bimp-gui.c:255 +msgid "Keep the modification dates" +msgstr "Behald dato for endring" + +#: bimp-gui.c:261 +msgid "Click for preview" +msgstr "Klikk for førehandsvising" + +#: bimp-gui.c:354 +#, c-format +msgid "Couldn't read into \"%s\" directory." +msgstr "Kunne ikkje lesa «%s» i mappa." + +#: bimp-gui.c:374 +msgid "" +"Some images were not imported because they have not been saved on filesystem " +"yet." +msgstr "" +"Nokre bilete vart ikkje importerte fordi dei ikkje er lagra på filsystemet." + +#: bimp-gui.c:473 +msgid "Can't show a preview because the manipulations set is empty" +msgstr "" +"Kan ikkje førehandsvisa fordi det er ikkje opplyst kva som skal gjerast" + +#: bimp-gui.c:501 +msgid "Preview" +msgstr "Førehandsvising" + +#: bimp-gui.c:513 +msgid "This is how the selected image will look like after the batch process" +msgstr "Slik vil det valde biletet sjå ut etter bearbeidinga" + +#: bimp-gui.c:602 +msgid "Select images" +msgstr "Vel bilete" + +#: bimp-gui.c:675 +msgid "Select folders containing images" +msgstr "Vel mappa med bilete" + +#: bimp-gui.c:684 +msgid "Add files from the whole hierarchy" +msgstr "Legg til filer frå heile hierakiet" + +#: bimp-gui.c:701 +msgid "Select output folder" +msgstr "Vel lagringsmappe" + +#: bimp-gui.c:758 bimp-gui.c:913 +msgid "Save this set..." +msgstr "Lagra dette oppgåvesettet …" + +#: bimp-gui.c:762 bimp-gui.c:968 +msgid "Load set..." +msgstr "Lasta inn oppgåvesettet …" + +#: bimp-gui.c:773 +msgid "Edit properties..." +msgstr "Rediger innstillingane …" + +#: bimp-gui.c:776 +msgid "Remove this manipulation" +msgstr "Fjern denne manipuleringa" + +#: bimp-gui.c:783 +msgid "Add single images..." +msgstr "Legg til enkeltbilete" + +#: bimp-gui.c:786 +msgid "Add folders..." +msgstr "Legg til mapper …" + +#: bimp-gui.c:789 +msgid "Add all opened images" +msgstr "Legg til alle opna bilete" + +#: bimp-gui.c:796 +msgid "Remove selected" +msgstr "Fjern merkte bilete" + +#: bimp-gui.c:799 +msgid "Remove all" +msgstr "Fjern alle" + +#: bimp-gui.c:843 +msgid "Can't add another manipulation of this kind. Only one is permitted!" +msgstr "" +"Kan ikkje leggja til fleire oppgåver av denne typen. Berre éi er tillate." + +#: bimp-gui.c:934 bimp-gui.c:985 +msgid "An error occured when importing a saved batch file :(" +msgstr "Det oppstod ein feil ved importen av den lagra satsfila: (" + +#: bimp-gui.c:956 +msgid "This will overwrite current manipulations set. Continue?" +msgstr "Dette vil overskriva det gjeldande oppgåvesettet. Hald fram likevel?" + +#: bimp-gui.c:1023 bimp.c:67 +msgid "Applies GIMP manipulations on groups of images" +msgstr "Utfører GIMP-handteringar på grupper av bilete" + +#: bimp-gui.c:1030 +msgid "translator-name " +msgstr "Kolbjørn Stuestøl " + +#: bimp-manipulations.c:273 +msgid "Resize" +msgstr "Endra storleik" + +#: bimp-manipulations.c:276 +msgid "Crop" +msgstr "Klipp" + +#: bimp-manipulations.c:279 +msgid "Flip or Rotate" +msgstr "Spegelvend eller roter" + +#: bimp-manipulations.c:282 +msgid "Color correction" +msgstr "Fargekorrigering" + +#: bimp-manipulations.c:285 +msgid "Sharp or Blur" +msgstr "Skjerp eller slør" + +#: bimp-manipulations.c:288 +msgid "Add a Watermark" +msgstr "Legg til vassmerke" + +#: bimp-manipulations.c:291 +msgid "Change format and compression" +msgstr "Endra format og komprimering" + +#: bimp-manipulations.c:294 +msgid "Rename with a pattern" +msgstr "Gjev nytt namn etter eit mønster" + +#: bimp-manipulations.c:297 +msgid "Other GIMP procedure..." +msgstr "Andre GIMP-funksjonar …" + +#: bimp-operate.c:174 +#, c-format +msgid "" +"Can't save image \"%s\": input file has no extension.\n" +"You can solve this error by adding a \"Change format or compression\" step" +msgstr "" +"Kan ikkje lagra biletet «%s»: Manglar filutviding.\n" +"Du kan omgå denne feilen ved å føye til steget «Endra format eller " +"komprimering»" + +#: bimp-operate.c:180 +#, c-format +msgid "" +"GIMP can't save %s back to its original SVG format.\n" +"You can solve this error by adding a \"Change format or compression\" step" +msgstr "" +"GIMP kan ikkje lagra %s tilbake til SVG-format.\n" +"Du kan omgå denne feilen ved å føye til steget «Endra format eller " +"komprimering»" + +#: bimp-operate.c:186 +#, c-format +msgid "Working on file \"%s\"..." +msgstr "Arbeider med fila «%s» …" + +#: bimp-operate.c:326 +msgid "Operations stopped" +msgstr "Operasjonen stoppa" + +#: bimp-operate.c:333 +#, c-format +msgid "End, all files have been processed with %d errors" +msgstr "Ferdig. Alle filene er handsama med %d feil" + +#: bimp-operate.c:1248 +#, c-format +msgid "File %s already exists, overwrite it?" +msgstr "Fila %s finst frå før. Skal ho overskrivast?" + +#: bimp-operate.c:1253 +msgid "Always apply this decision" +msgstr "Legg alltid til endringsdatoen" + +#: bimp-operate.c:1265 +msgid "Overwrite?" +msgstr "Overskriva?" + +#~ msgid "Add folders" +#~ msgstr "Hinzufügen von Ordnern" + +#~ msgid "Alert when overwriting existing files" +#~ msgstr "Warnen wenn vorhandene Dateien überschrieben werden" + +#~ msgid "" +#~ "Can't save image %s: input file has no extension.\n" +#~ "You can solve this error by adding a \"Change format or compression\" step" +#~ msgstr "" +#~ "image %s kann nicht gespeichert werden: Eingabedatei hat keine Endung.\n" +#~ "Sie können diesen Fehler durch hinzufügen einer \"Format oder Kompression " +#~ "ändern\" Aufgabe beheben." + +#~ msgid "Working on file %s..." +#~ msgstr "File %s in Bearbeitung..." + +#~ msgid "Yes, don't ask again" +#~ msgstr "Ja, nicht wieder nachfragen" diff --git a/bimp-locale/ru/LC_MESSAGES/gimp20-plugin-bimp.mo b/bimp-locale/ru/LC_MESSAGES/gimp20-plugin-bimp.mo index fc469a7..3f60dac 100644 Binary files a/bimp-locale/ru/LC_MESSAGES/gimp20-plugin-bimp.mo and b/bimp-locale/ru/LC_MESSAGES/gimp20-plugin-bimp.mo differ diff --git a/bimp-locale/ru/LC_MESSAGES/gimp20-plugin-bimp.po b/bimp-locale/ru/LC_MESSAGES/gimp20-plugin-bimp.po index 2137fe2..898bb5a 100644 --- a/bimp-locale/ru/LC_MESSAGES/gimp20-plugin-bimp.po +++ b/bimp-locale/ru/LC_MESSAGES/gimp20-plugin-bimp.po @@ -1,522 +1,698 @@ msgid "" msgstr "" "Project-Id-Version: gimp-plugin-bimp\n" -"POT-Creation-Date: 2015-05-21 22:12+0100\n" -"PO-Revision-Date: 2015-10-23 11:14+0300\n" +"POT-Creation-Date: 2016-11-19 11:50+0400\n" +"PO-Revision-Date: 2016-11-19 13:16+0400\n" "Last-Translator: Alessandro Francesconi \n" "Language-Team: Alessandro Francesconi \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.6\n" +"X-Generator: Poedit 1.7.4\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop\n" "X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-Basepath: ../../../../../src\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Poedit-Basepath: ../../../src\n" "X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ./manipulation-gui\n" -msgid "% of" -msgstr "% от" - -msgid "Adaptive size" -msgstr "Адаптивный размер" - -msgid "Add a Watermark" -msgstr "Добавление водяного знака" +#: bimp-gui.c:130 bimp-gui.c:928 +msgid "The manipulations set is empty!" +msgstr "Список преобразований пуст!" -msgid "Add all opened images" -msgstr "Добавить все открытые изображения" +#: bimp-gui.c:133 +msgid "The file list is empty!" +msgstr "Список файлов пуст!" -msgid "Add files from the whole hierarchy" -msgstr "Добавить файлы из всех подпапок" +#: bimp-gui.c:163 +msgid "Manipulation set" +msgstr "Список преобразований" -msgid "Add folders..." -msgstr "Добавить папки ..." +#: bimp-gui.c:193 +msgid "Input files and options" +msgstr "Входные файлы и параметры" +#: bimp-gui.c:215 msgid "Add images" msgstr "Добавить изображения" -msgid "Add single images..." -msgstr "Добавить одиночные изображения ..." +#: bimp-gui.c:217 +msgid "Remove images" +msgstr "Удалить изображения" -msgid "Advanced params" -msgstr "Дополнительные параметры" +#: bimp-gui.c:225 +msgid "Output folder" +msgstr "Выходная папка" + +#: bimp-gui.c:239 +msgid "Use the selected file's location as the output" +msgstr "Использовать местоположение выбранного файла для выходных файлов" + +#: bimp-gui.c:247 +msgid "Keep folder hierarchy" +msgstr "Сохранить структуру подпапок" + +#: bimp-gui.c:252 +msgid "Delete original file when done" +msgstr "Удалить исходный файл после завершения" + +#: bimp-gui.c:256 +msgid "Keep the modification dates" +msgstr "Сохранить даты изменения" + +#: bimp-gui.c:262 +msgid "Click for preview" +msgstr "Нажмите для предварительного просмотра" + +#: bimp-gui.c:355 +#, c-format +msgid "Couldn't read into \"%s\" directory." +msgstr "Не удалось открыть файлы из папки \"%s\"." + +#: bimp-gui.c:375 +msgid "" +"Some images were not imported because they have not been saved on filesystem " +"yet." +msgstr "" +"Некоторые изображения не были импортированы, потому что они еще не сохранены." + +#: bimp-gui.c:474 +msgid "Can't show a preview because the manipulations set is empty" +msgstr "" +"Невозможно показать предварительный просмотр, потому что список " +"преобразований пуст" -msgid "Alert when overwriting existing files" -msgstr "Предупреждать при перезаписи существующих файлов" +#: bimp-gui.c:502 +msgid "Preview" +msgstr "Предпросмотр" + +#: bimp-gui.c:514 +msgid "This is how the selected image will look like after the batch process" +msgstr "Так выбранное изображение будет выглядеть после пакетной обработки" + +#: bimp-gui.c:603 +msgid "Select images" +msgstr "Выбрать изображения" +#: bimp-gui.c:613 manipulation-gui/gui-watermark.c:87 msgid "All supported types" msgstr "Все поддерживаемые типы" -msgid "Allow stretching" -msgstr "Разрешить растяжение" +#: bimp-gui.c:691 +msgid "Select folders containing images" +msgstr "Выберите папки, содержащие изображения" -msgid "Always apply this decision" -msgstr "Всегда применять данный выбор" +#: bimp-gui.c:700 +msgid "Add files from the whole hierarchy" +msgstr "Добавить файлы из всех подпапок" -msgid "An error occured when importing a saved batch file :(" -msgstr "Произошла ошибка при импорте сохраненного файла :( " +#: bimp-gui.c:722 +msgid "Select output folder" +msgstr "Выбрать папку вывода" -msgid "Applies GIMP manipulations on groups of images" -msgstr "Применение преобразований GIMP к группам изображений" +#: bimp-gui.c:779 bimp-gui.c:934 +msgid "Save this set..." +msgstr "Сохранить этот список ..." -msgid "Author" -msgstr "Автор" +#: bimp-gui.c:783 bimp-gui.c:989 +msgid "Load set..." +msgstr "Загрузить список..." -msgid "Automatic color levels correction" -msgstr "Автоматическая коррекция цветовых уровней" +#: bimp-gui.c:794 +msgid "Edit properties..." +msgstr "Редактировать параметры ..." -msgid "Bottom-center" -msgstr "Внизу по центру" +#: bimp-gui.c:797 +msgid "Remove this manipulation" +msgstr "Удалить это преобразование" -msgid "Bottom-left" -msgstr "Внизу слева" +#: bimp-gui.c:804 +msgid "Add single images..." +msgstr "Добавить одиночные изображения ..." -msgid "Bottom-right" -msgstr "Внизу справа" +#: bimp-gui.c:807 +msgid "Add folders..." +msgstr "Добавить папки ..." -msgid "Brightness" -msgstr "Яркость" +#: bimp-gui.c:810 +msgid "Add all opened images" +msgstr "Добавить все открытые изображения" -msgid "CCITT G3 Fax" -msgstr "CCITT G3 Факс" +#: bimp-gui.c:817 +msgid "Remove selected" +msgstr "Удалить выбранные" -msgid "CCITT G4 Fax" -msgstr "CCITT G4 Факс" +#: bimp-gui.c:820 +msgid "Remove all" +msgstr "Удалить все" +#: bimp-gui.c:864 msgid "Can't add another manipulation of this kind. Only one is permitted!" msgstr "" "Невозможно добавить другое преобразование данного типа. Разрешается только " "одно!" -msgid "" -"Can't save because\n" -"no procedure has been selected" -msgstr "" -"Невозможно сохранить,\n" -" т.к. не была выбрана процедура" +#: bimp-gui.c:955 bimp-gui.c:1006 +msgid "An error occured when importing a saved batch file :(" +msgstr "Произошла ошибка при импорте сохраненного файла :( " -msgid "" -"Can't save!\n" -"'%s' or '%s' symbol must be present." -msgstr "" -"Нвозможно сохранить!\n" -"Должен присутствовать символ «%s» или «%s»." +#: bimp-gui.c:977 +msgid "This will overwrite current manipulations set. Continue?" +msgstr "Текущий список преобразований будет перезаписан. Продолжить?" -msgid "" -"Can't save!\n" -"Pattern contains invalid characters." -msgstr "" -"Невозможно сохранить!\n" -"Шаблон содержит недопустимые символы." +#: bimp-gui.c:1045 bimp.c:66 +msgid "Applies GIMP manipulations on groups of images" +msgstr "Применение преобразований GIMP к группам изображений" -msgid "Can't show a preview because the manipulations set is empty" -msgstr "" -"Невозможно показать предварительный просмотр, потому что список " -"преобразований пуст" +#: bimp-gui.c:1052 +msgid "translator-name " +msgstr "Yuri Krasilnikov " -msgid "Center" -msgstr "Центр" +#: bimp-manipulations.c:279 +msgid "Resize" +msgstr "Изменение размера" -msgid "Center-left" -msgstr "Слева по центру" +#: bimp-manipulations.c:282 +msgid "Crop" +msgstr "Обрезка" -msgid "Center-right" -msgstr "Справа по центру" +#: bimp-manipulations.c:285 +msgid "Flip or Rotate" +msgstr "Отражение и поворот" -msgid "Change color curve from settings file:" -msgstr "Применить цветовую кривую из файла настроек" +#: bimp-manipulations.c:288 +msgid "Color correction" +msgstr "Цветовая коррекция" + +#: bimp-manipulations.c:291 +msgid "Sharp or Blur" +msgstr "Увеличение резкости или размытие" + +#: bimp-manipulations.c:294 +msgid "Add a Watermark" +msgstr "Добавление водяного знака" +#: bimp-manipulations.c:297 msgid "Change format and compression" msgstr "Изменение формата и сжатия" -msgid "Change resolution" -msgstr "Сменить разрешение" +#: bimp-manipulations.c:300 +msgid "Rename with a pattern" +msgstr "Переименование по образцу" + +#: bimp-manipulations.c:303 +msgid "Other GIMP procedure..." +msgstr "Другая процедура GIMP..." +#: bimp-operate.c:177 +#, c-format msgid "" -"Choose a supported GIMP procedure from the list on the left\n" -"and define its parameters on the right." +"Can't save image \"%s\": input file has no extension.\n" +"You can solve this error by adding a \"Change format or compression\" step" msgstr "" -"Выберите поддерживаемую функцию GIMP из списка слева и задайте ее параметры " -"справа." +"Невозможно сохранить изображение \"%s\": входной файл не имеет расширения.\n" +"Добавьте шаг \"Изменение формата и сжатия\" чтобы исправить ошибку." -msgid "Classic 35 mm film" -msgstr "Стандартная фотопленка 35 мм" - -msgid "Classic smartphone screen" -msgstr "Стандартный экран смартфона" +#: bimp-operate.c:183 +#, c-format +msgid "" +"GIMP can't save %s back to its original SVG format.\n" +"You can solve this error by adding a \"Change format or compression\" step" +msgstr "" +"GIMP не может сохранить %s обратно в исходный формат SVG.\n" +"Добавьте шаг \"Изменение формата и сжатия\" чтобы исправить ошибку." -msgid "Classic tablet screen" -msgstr "Стандартный экран планшета" +#: bimp-operate.c:189 +#, c-format +msgid "Working on file \"%s\"..." +msgstr "Обработка файла \"%s\"..." -msgid "Click for preview" -msgstr "Нажмите для предварительного просмотра" +#: bimp-operate.c:329 +msgid "Operations stopped" +msgstr "Выполнение прекращено" -msgid "Color" -msgstr "Цвет" +#: bimp-operate.c:336 +#, c-format +msgid "End, all files have been processed with %d errors" +msgstr "Завершено, все файлы обработаны, ошибок %d" -msgid "Color correction" -msgstr "Цветовая коррекция" +#: bimp-operate.c:1380 +#, c-format +msgid "File %s already exists, overwrite it?" +msgstr "Файл %s существует. Перезаписать?" -msgid "Comment" -msgstr "Комментарий" +#: bimp-operate.c:1385 +msgid "Always apply this decision" +msgstr "Всегда применять данный выбор" -msgid "Compression" -msgstr "Сжатие" +#: bimp-operate.c:1397 +msgid "Overwrite?" +msgstr "Перезаписать?" -msgid "Contrast" -msgstr "Контраст" +#: manipulation-gui/gui-changeformat.c:37 +msgid "Format settings" +msgstr "Параметры формата" -msgid "Convert to grayscale" -msgstr "Преобразовать в оттенки серого" +#: manipulation-gui/gui-changeformat.c:58 +msgid "Interlaced" +msgstr "Чересстрочный" -msgid "Couldn't read into \"%s\" directory." -msgstr "Не удалось открыть файлы из папки \"%s\"." +#: manipulation-gui/gui-changeformat.c:78 +#: manipulation-gui/gui-changeformat.c:118 +msgid "Quality" +msgstr "Качество" -msgid "Crop" -msgstr "Обрезка" +#: manipulation-gui/gui-changeformat.c:84 +#: manipulation-gui/gui-changeformat.c:213 +msgid "Advanced params" +msgstr "Дополнительные параметры" -msgid "Crop to a standard aspect ratio" -msgstr "Обрезать со стандартными пропорциями" +#: manipulation-gui/gui-changeformat.c:88 +msgid "Smoothing" +msgstr "Сглаживание" -msgid "Custom ratio" -msgstr "Произвольные пропорции" +#: manipulation-gui/gui-changeformat.c:95 +msgid "Optimize" +msgstr "Оптимизация" -msgid "DCT algorithm" -msgstr "DCT алгоритм" +#: manipulation-gui/gui-changeformat.c:96 +msgid "Progressive" +msgstr "Прогрессивн." -msgid "Date and time (YYYY-MM-DD_hh-mm)" -msgstr "Дата и время (YYYY-MM-DD_hh-mm)" +#: manipulation-gui/gui-changeformat.c:97 +msgid "Save baseline" +msgstr "" +"Сохр. базов.\n" +" режим" -msgid "Deflate" -msgstr "Дефляция" +#: manipulation-gui/gui-changeformat.c:100 +msgid "Comment" +msgstr "Комментарий" -msgid "Delete original file when done" -msgstr "Удалить исходный файл после завершения" +#: manipulation-gui/gui-changeformat.c:107 +msgid "Markers rows" +msgstr "Маркерн.строки" -msgid "Distance to edge" -msgstr "Расстояние от края" +#: manipulation-gui/gui-changeformat.c:112 msgstr +#: "Субдискретизация" +msgid "Subsampling" +msgstr "Семплирование" -msgid "EU Passport portrait" -msgstr "Фото на европаспорт" +#: manipulation-gui/gui-changeformat.c:116 +msgid "Small size" +msgstr "Малый размер" -msgid "Edit properties..." -msgstr "Редактировать параметры ..." +#: manipulation-gui/gui-changeformat.c:123 +msgid "DCT algorithm" +msgstr "Алгоритм DCT" -msgid "End, all files have been processed with %d errors" -msgstr "Завершено, все файлы обработаны, ошибок %d" +#: manipulation-gui/gui-changeformat.c:127 +msgid "Integer" +msgstr "Целочисленный" +#: manipulation-gui/gui-changeformat.c:128 msgid "Fast integer" msgstr "Быстрый целочисленный" -msgid "File %s already exists, overwrite it?" -msgstr "Файл %s существует. Перезаписать?" +#: manipulation-gui/gui-changeformat.c:129 +msgid "Float" +msgstr "С плавающей запятой" -msgid "Fill with padding" -msgstr "Залить цветом" +#: manipulation-gui/gui-changeformat.c:205 +msgid "Interlace (Adam7)" +msgstr "Чересстрочный (Adam7)" -msgid "Flip" -msgstr "Отражение" +#: manipulation-gui/gui-changeformat.c:207 +#: manipulation-gui/gui-changeformat.c:303 +msgid "Compression" +msgstr "Сжатие" -msgid "Flip or Rotate" -msgstr "Отражение и поворот" +#: manipulation-gui/gui-changeformat.c:216 +msgid "Save background color" +msgstr "Сохранить цвет фона" -msgid "Float" -msgstr "С плавающей запятой" +#: manipulation-gui/gui-changeformat.c:217 +msgid "Save gamma" +msgstr "Сохранить гамму" -msgid "Font" -msgstr "Шрифт" +#: manipulation-gui/gui-changeformat.c:218 +msgid "Save layer offset" +msgstr "Сохранить смещение слоя" -msgid "For both dimensions" -msgstr "Оба размера" +#: manipulation-gui/gui-changeformat.c:219 +msgid "Save resolution" +msgstr "Сохранить разрешение" -msgid "Format settings" -msgstr "Параметры формата" +#: manipulation-gui/gui-changeformat.c:220 +msgid "Save creation date" +msgstr "Сохранить дату создания" -msgid "Height" -msgstr "Высота" +#: manipulation-gui/gui-changeformat.c:221 +msgid "Save comments" +msgstr "Сохранить комментарии" -msgid "Height only" -msgstr "Только высота" +#: manipulation-gui/gui-changeformat.c:222 +msgid "Save color from transparent pixels" +msgstr "Сохранить цвет прозрачных пикселов" -msgid "Horizontally" -msgstr "Горизонтально" +#: manipulation-gui/gui-changeformat.c:270 +msgid "RLE compression" +msgstr "Сжатие RLE" +#: manipulation-gui/gui-changeformat.c:273 msgid "Image origin" msgstr "Исходная точка" -msgid "Image watermark" -msgstr "Графический водяной знак" - -msgid "Incremental number" -msgstr "Порядковый номер" +#: manipulation-gui/gui-changeformat.c:278 manipulation-gui/gui-crop.c:71 +#: manipulation-gui/gui-watermark.c:301 +msgid "Top-left" +msgstr "Сверху слева" -msgid "Input files and options" -msgstr "Входные файлы и параметры" +#: manipulation-gui/gui-changeformat.c:279 manipulation-gui/gui-crop.c:73 +#: manipulation-gui/gui-watermark.c:319 +msgid "Bottom-left" +msgstr "Внизу слева" -msgid "Integer" -msgstr "Целочисленный" +#: manipulation-gui/gui-changeformat.c:308 +#: manipulation-gui/gui-fliprotate.c:39 +msgid "None" +msgstr "Нет" -msgid "Interlace (Adam7)" -msgstr "Чересстрочный (Adam7)" +#: manipulation-gui/gui-changeformat.c:309 +msgid "LZW" +msgstr "LZW" -msgid "Interlaced" -msgstr "Чересстрочный" +#: manipulation-gui/gui-changeformat.c:310 +msgid "Pack bits" +msgstr "Pack bits" -msgid "Interpolation quality" -msgstr "Качество интерполяции" +#: manipulation-gui/gui-changeformat.c:311 +msgid "Deflate" +msgstr "Deflate" +#: manipulation-gui/gui-changeformat.c:312 msgid "JPEG" msgstr "JPEG" -msgid "Keep folder hierarchy" -msgstr "Сохранить структуру подпапок" - -msgid "Keep the modification dates" -msgstr "Сохранить даты изменения" - -msgid "Keywords" -msgstr "Ключевые слова" +#: manipulation-gui/gui-changeformat.c:313 +msgid "CCITT G3 Fax" +msgstr "CCITT G3 Fax" -msgid "LZW" -msgstr "LZW" +#: manipulation-gui/gui-changeformat.c:314 +msgid "CCITT G4 Fax" +msgstr "CCITT G4 Fax" -msgid "Load set..." -msgstr "Загрузить список..." +#: manipulation-gui/gui-changeformat.c:329 +msgid "This format has no params" +msgstr "У этого формата нет параметров" -msgid "Manipulation set" -msgstr "Список преобразований" +#: manipulation-gui/gui-color.c:22 +msgid "Brightness" +msgstr "Яркость" -msgid "Manual crop (pixel values)" -msgstr "Ручная обрезка (значения в пикселях)" +#: manipulation-gui/gui-color.c:30 +msgid "Contrast" +msgstr "Контраст" -msgid "Markers rows" -msgstr "Маркерн.строки" +#: manipulation-gui/gui-color.c:37 +msgid "Convert to grayscale" +msgstr "Преобразовать в оттенки серого" -msgid "More blurred" -msgstr "Более размытое" +#: manipulation-gui/gui-color.c:39 +msgid "Automatic color levels correction" +msgstr "Автоматическая коррекция цветовых уровней" -msgid "More sharpen" -msgstr "Более резкое" +#: manipulation-gui/gui-color.c:42 +msgid "Change color curve from settings file:" +msgstr "Применить цветовую кривую из файла настроек" -msgid "None" -msgstr "Нет" +#: manipulation-gui/gui-color.c:47 +msgid "Select GIMP Curve file" +msgstr "Выберите файл GIMP с кривой" -msgid "One-to-one" -msgstr "Один к одному" +#: manipulation-gui/gui-crop.c:28 +msgid "Crop to a standard aspect ratio" +msgstr "Обрезать со стандартными пропорциями" -msgid "Opacity" -msgstr "Непрозрачность" +#: manipulation-gui/gui-crop.c:54 +msgid "Manual crop (pixel values)" +msgstr "Ручная обрезка (значения в пикселях)" -msgid "Operations stopped" -msgstr "Выполнение прекращено" +#: manipulation-gui/gui-crop.c:59 manipulation-gui/gui-resize.c:82 +#: manipulation-gui/gui-watermark.c:80 +msgid "Width" +msgstr "Ширина" -msgid "Optimize" -msgstr "Оптимизация" +#: manipulation-gui/gui-crop.c:63 manipulation-gui/gui-resize.c:85 +#: manipulation-gui/gui-watermark.c:81 +msgid "Height" +msgstr "Высота" -msgid "Original filename (without extension)" -msgstr "Исходное имя файла (без расширения)" +#: manipulation-gui/gui-crop.c:68 +msgid "Start from" +msgstr "Исходн.точка" -msgid "Other GIMP procedure..." -msgstr "Другая процедура GIMP..." +#: manipulation-gui/gui-crop.c:70 manipulation-gui/gui-watermark.c:313 +msgid "Center" +msgstr "Центр" -msgid "Output folder" -msgstr "Выходная папка" +#: manipulation-gui/gui-crop.c:72 manipulation-gui/gui-watermark.c:307 +msgid "Top-right" +msgstr "Сверху справа" -msgid "Overwrite?" -msgstr "Перезаписать?" +#: manipulation-gui/gui-crop.c:74 manipulation-gui/gui-watermark.c:325 +msgid "Bottom-right" +msgstr "Внизу справа" -msgid "Pack bits" -msgstr "Побитная упаковка" +#: manipulation-gui/gui-crop.c:133 +msgid "One-to-one" +msgstr "Один к одному" -msgid "Position on the image" -msgstr "Позиция на изображении" +#: manipulation-gui/gui-crop.c:136 +msgid "Classic 35 mm film" +msgstr "Стандартная фотопленка 35 мм" -msgid "Preserve aspect ratio" -msgstr "Сохранить пропорции" +#: manipulation-gui/gui-crop.c:139 +msgid "Standard VGA monitor" +msgstr "Стандартный монитор VGA" -msgid "Preview" -msgstr "Предпросмотр" +#: manipulation-gui/gui-crop.c:142 +msgid "Widescreen" +msgstr "Широкий экран" -msgid "Progressive" -msgstr "Прогрессивн." +#: manipulation-gui/gui-crop.c:145 +msgid "Widescreen extended" +msgstr "Расширенный экран" -msgid "Quality" -msgstr "Качество" +#: manipulation-gui/gui-crop.c:148 +msgid "EU Passport portrait" +msgstr "Фото на европаспорт" -msgid "RLE compression" -msgstr "Сжатие RLE" +#: manipulation-gui/gui-crop.c:151 +msgid "Classic smartphone screen" +msgstr "Стандартный экран смартфона" -msgid "Remove all" -msgstr "Удалить все" +#: manipulation-gui/gui-crop.c:154 +msgid "Tall smartphone screen" +msgstr "Высокий экран смартфона" -msgid "Remove images" -msgstr "Удалить изображения" +#: manipulation-gui/gui-crop.c:157 +msgid "Classic tablet screen" +msgstr "Стандартный экран планшета" -msgid "Remove selected" -msgstr "Удалить выбранные" +#: manipulation-gui/gui-crop.c:160 +msgid "Custom ratio" +msgstr "Произвольные пропорции" -msgid "Remove this manipulation" -msgstr "Удалить это преобразование" +#: manipulation-gui/gui-fliprotate.c:19 +msgid "Flip" +msgstr "Отражение" -msgid "Rename with a pattern" -msgstr "Переименование по образцу" +#: manipulation-gui/gui-fliprotate.c:23 +msgid "Horizontally" +msgstr "Горизонтально" -msgid "Resize" -msgstr "Изменение размера" +#: manipulation-gui/gui-fliprotate.c:29 +msgid "Vertically" +msgstr "Вертикально" +#: manipulation-gui/gui-fliprotate.c:37 msgid "Rotation" msgstr "Поворот" -msgid "Save background color" -msgstr "Сохранить цвет фона" - -msgid "Save baseline" -msgstr "" -"Сохр. базов.\n" -" режим" - -msgid "Save color from transparent pixels" -msgstr "Сохранить цвета от прозрачных пикселов" +#: manipulation-gui/gui-rename.c:26 +msgid "Keywords" +msgstr "Ключевые слова" -msgid "Save comments" -msgstr "Сохранить комментарии" +#: manipulation-gui/gui-rename.c:30 +msgid "Original filename (without extension)" +msgstr "Исходное имя файла (без расширения)" -msgid "Save creation date" -msgstr "Сохранить дату создания" +#: manipulation-gui/gui-rename.c:31 +msgid "Incremental number" +msgstr "Порядковый номер" -msgid "Save gamma" -msgstr "Сохранить гамму" +#: manipulation-gui/gui-rename.c:32 +msgid "Date and time (YYYY-MM-DD_hh-mm)" +msgstr "Дата и время (YYYY-MM-DD_hh-mm)" -msgid "Save layer offset" -msgstr "Сохранить смещение слоя" +#: manipulation-gui/gui-rename.c:52 +#, c-format +msgid "" +"Can't save!\n" +"'%s' or '%s' symbol must be present." +msgstr "" +"Невозможно сохранить!\n" +"Должен присутствовать символ \"%s\" или \"%s\"." -msgid "Save resolution" -msgstr "Сохранить разрешение" +#: manipulation-gui/gui-rename.c:64 +msgid "" +"Can't save!\n" +"Pattern contains invalid characters." +msgstr "" +"Невозможно сохранить!\n" +"Шаблон содержит недопустимые символы." -msgid "Save this set..." -msgstr "Сохранить этот список ..." +#: manipulation-gui/gui-resize.c:43 +msgid "Set to a percentage of the original" +msgstr "Задать в процентах от оригинала" -msgid "Search" -msgstr "Поиск" +#: manipulation-gui/gui-resize.c:45 +msgid "Set exact size in pixel" +msgstr "Задать точный размер в пикселях" -msgid "Select folders containing images" -msgstr "Выберите папки, содержащие изображения" +#: manipulation-gui/gui-resize.c:52 +msgid "For both dimensions" +msgstr "Оба размера" -msgid "Select GIMP Curve file" -msgstr "Выберите файл GIMP с кривой" +#: manipulation-gui/gui-resize.c:53 +msgid "Width only" +msgstr "Только ширина" -msgid "Select image" -msgstr "Выбрать изображение" +#: manipulation-gui/gui-resize.c:54 +msgid "Height only" +msgstr "Только высота" -msgid "Select images" -msgstr "Выбрать изображения" +#: manipulation-gui/gui-resize.c:64 +msgid "Allow stretching" +msgstr "Разрешить растяжение" -msgid "Select output folder" -msgstr "Выбрать папку вывода" +#: manipulation-gui/gui-resize.c:66 +msgid "Preserve aspect ratio" +msgstr "Сохранить пропорции" -msgid "Set exact size in pixel" -msgstr "Задание точного размера в пикселях" +#: manipulation-gui/gui-resize.c:68 +msgid "Fill with padding" +msgstr "Залить цветом" -msgid "Set height only" -msgstr "Задание только высоты" +#: manipulation-gui/gui-resize.c:92 +msgid "Interpolation quality" +msgstr "Качество интерполяции" -msgid "Set to a percentage of the original" -msgstr "Задание в процентах от оригинала" +#: manipulation-gui/gui-resize.c:101 +msgid "Change resolution" +msgstr "Изменить разрешение" -msgid "Set width only" -msgstr "Задание только ширины" +#: manipulation-gui/gui-resize.c:107 +msgid "X axis" +msgstr "Ось X" -msgid "Sharp or Blur" -msgstr "Увеличение резкости или размытие" +#: manipulation-gui/gui-resize.c:111 +msgid "Y axis" +msgstr "Ось Y" -msgid "Small size" -msgstr "Малый размер" +#: manipulation-gui/gui-sharpblur.c:17 +msgid "More sharpen" +msgstr "Более резкое" -msgid "Smoothing" -msgstr "Сглаживание" +#: manipulation-gui/gui-sharpblur.c:23 +msgid "More blurred" +msgstr "Более размытое" +#: manipulation-gui/gui-userdef.c:49 msgid "" -"Some images were not imported because they have not been saved on filesystem " -"yet." +"Choose a supported GIMP procedure from the list on the left\n" +"and define its parameters on the right." msgstr "" -"Некоторые изображения не были импортированы, потому что они еще не " -"сохранены." +"Выберите поддерживаемую функцию GIMP из списка слева и\n" +"задайте ее параметры справа." -msgid "Standard VGA monitor" -msgstr "Стандартный монитор VGA" - -msgid "Start from" -msgstr "Исходн.точка" +#: manipulation-gui/gui-userdef.c:61 +msgid "Search" +msgstr "Поиск" -msgid "Subsampling" -msgstr "Семплирование" +#: manipulation-gui/gui-userdef.c:305 +msgid "" +"Can't save because\n" +"no procedure has been selected" +msgstr "" +"Невозможно сохранить,\n" +" т.к. не была выбрана процедура" -msgid "Tall smartphone screen" -msgstr "Высокий экран смартфона" +#: manipulation-gui/gui-userdef.c:351 +msgid "Author" +msgstr "Автор" -msgid "Text" -msgstr "Текст" +#: manipulation-gui/gui-userdef.c:603 +msgid "This procedure takes no editable params" +msgstr "У данной процедуры нет параметров" +#: manipulation-gui/gui-watermark.c:41 msgid "Text watermark" msgstr "Текстовый водяной знак" -msgid "The file list is empty!" -msgstr "Список файлов пуст!" - -msgid "The manipulations set is empty!" -msgstr "Список преобразований пуст!" - -msgid "This format has no params" -msgstr "У этого формата нет параметров" - -msgid "This is how the selected image will look like after the batch process" -msgstr "Так выбранное изображение будет выглядеть после пакетной обработки" - -msgid "This procedure takes no editable params" -msgstr "У данной процедуры нет параметров" - -msgid "This will overwrite current manipulations set. Continue?" -msgstr "Текущий список преобразований будет перезаписан. Продолжить?" +#: manipulation-gui/gui-watermark.c:45 +msgid "Text" +msgstr "Текст" -msgid "Top-center" -msgstr "Сверху по центру" +#: manipulation-gui/gui-watermark.c:54 +msgid "Font" +msgstr "Шрифт" -msgid "Top-left" -msgstr "Сверху слева" +#: manipulation-gui/gui-watermark.c:60 +msgid "Color" +msgstr "Цвет" -msgid "Top-right" -msgstr "Сверху справа" +#: manipulation-gui/gui-watermark.c:67 +msgid "Image watermark" +msgstr "Графический водяной знак" -msgid "Use the selected file's location as the output" -msgstr "Использовать местоположение выбранного файла для выходных файлов" +#: manipulation-gui/gui-watermark.c:71 +msgid "Select image" +msgstr "Выбрать изображение" -msgid "Vertically" -msgstr "Вертикально" +#: manipulation-gui/gui-watermark.c:73 +msgid "Adaptive size" +msgstr "Адаптивный размер" -msgid "Widescreen" -msgstr "Широкий экран" +#: manipulation-gui/gui-watermark.c:77 +#, c-format +msgid "%% of" +msgstr "%% от" -msgid "Widescreen extended" -msgstr "Расширенный экран" +#: manipulation-gui/gui-watermark.c:133 +msgid "Opacity" +msgstr "Непрозрачность" -msgid "Width" -msgstr "Ширина" +#: manipulation-gui/gui-watermark.c:142 +msgid "Distance to edge" +msgstr "Расстояние от края" -msgid "Width only" -msgstr "Только ширина" +#: manipulation-gui/gui-watermark.c:146 +msgid "Position on the image" +msgstr "Позиция на изображении" -msgid "Working on file \"%s\"..." -msgstr "Обработка файла \"%s\"..." +#: manipulation-gui/gui-watermark.c:304 +msgid "Top-center" +msgstr "Сверху по центру" -msgid "X axis" -msgstr "Ось X" +#: manipulation-gui/gui-watermark.c:310 +msgid "Center-left" +msgstr "Слева по центру" -msgid "Y axis" -msgstr "Ось Y" +#: manipulation-gui/gui-watermark.c:316 +msgid "Center-right" +msgstr "Справа по центру" -msgid "translator-name " -msgstr "Yuri Krasilnikov " +#: manipulation-gui/gui-watermark.c:322 +msgid "Bottom-center" +msgstr "Внизу по центру" diff --git a/bimp-locale/sr/LC_MESSAGES/gimp20-plugin-bimp.mo b/bimp-locale/sr/LC_MESSAGES/gimp20-plugin-bimp.mo new file mode 100644 index 0000000..13f2ed3 Binary files /dev/null and b/bimp-locale/sr/LC_MESSAGES/gimp20-plugin-bimp.mo differ diff --git a/bimp-locale/sr/LC_MESSAGES/gimp20-plugin-bimp.po b/bimp-locale/sr/LC_MESSAGES/gimp20-plugin-bimp.po new file mode 100644 index 0000000..61dc6d1 --- /dev/null +++ b/bimp-locale/sr/LC_MESSAGES/gimp20-plugin-bimp.po @@ -0,0 +1,699 @@ +msgid "" +msgstr "" +"Project-Id-Version: gimp-plugin-bimp\n" +"POT-Creation-Date: 2016-11-19 11:50+0400\n" +"PO-Revision-Date: 2019-07-25 00:25+0200\n" +"Last-Translator: Валентина Рутовић \n" +"Language-Team: Alessandro Francesconi \n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.3\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-Basepath: ../../../src\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" +"X-Poedit-SearchPath-0: .\n" + +#: bimp-gui.c:130 bimp-gui.c:928 +msgid "The manipulations set is empty!" +msgstr "Листа обраде је празна!" + +#: bimp-gui.c:133 +msgid "The file list is empty!" +msgstr "Листа датотека је празна!" + +#: bimp-gui.c:163 +msgid "Manipulation set" +msgstr "Листа обраде" + +#: bimp-gui.c:193 +msgid "Input files and options" +msgstr "Улазне датотеке и опције" + +#: bimp-gui.c:215 +msgid "Add images" +msgstr "Додај слике" + +#: bimp-gui.c:217 +msgid "Remove images" +msgstr "Уклони слике" + +#: bimp-gui.c:225 +msgid "Output folder" +msgstr "Излазна фасцикла" + +#: bimp-gui.c:239 +msgid "Use the selected file's location as the output" +msgstr "Користи локацију селектоване датотеке за излазну датотеку" + +#: bimp-gui.c:247 +msgid "Keep folder hierarchy" +msgstr "Задржи хијерархију фасцикле" + +#: bimp-gui.c:252 +msgid "Delete original file when done" +msgstr "Обриши оригиналну датотеку након обраде" + +#: bimp-gui.c:256 +msgid "Keep the modification dates" +msgstr "Сачувај датум промене" + +#: bimp-gui.c:262 +msgid "Click for preview" +msgstr "Кликни за преглед" + +#: bimp-gui.c:355 +#, c-format +msgid "Couldn't read into \"%s\" directory." +msgstr "Није могуће учитавање из фасцилке \"%s\"" + +#: bimp-gui.c:375 +msgid "" +"Some images were not imported because they have not been saved on filesystem " +"yet." +msgstr "Неке слике нису увезене јер још нису сачуване" + +#: bimp-gui.c:474 +msgid "Can't show a preview because the manipulations set is empty" +msgstr "Није могуће приказати зато што је листа обраде празна" + +#: bimp-gui.c:502 +msgid "Preview" +msgstr "Преглед" + +#: bimp-gui.c:514 +msgid "This is how the selected image will look like after the batch process" +msgstr "Овако ће селектована слика изгледати након аутоматске серијске обраде" + +#: bimp-gui.c:603 +msgid "Select images" +msgstr "Селектуј слике" + +#: bimp-gui.c:613 manipulation-gui/gui-watermark.c:87 +msgid "All supported types" +msgstr "Све подржане врсте" + +#: bimp-gui.c:691 +msgid "Select folders containing images" +msgstr "Селектуј фасциклу која садржи слике" + +#: bimp-gui.c:700 +msgid "Add files from the whole hierarchy" +msgstr "Додај датотеке из целе хијерархијске листе" + +#: bimp-gui.c:722 +msgid "Select output folder" +msgstr "Селектуј излазну фасциклу" + +#: bimp-gui.c:779 bimp-gui.c:934 +msgid "Save this set..." +msgstr "Сачувај дату листу..." + +#: bimp-gui.c:783 bimp-gui.c:989 +msgid "Load set..." +msgstr "Учитај листу..." + +#: bimp-gui.c:794 +msgid "Edit properties..." +msgstr "Измени подешавања..." + +#: bimp-gui.c:797 +msgid "Remove this manipulation" +msgstr "Уклони дату обраду" + +#: bimp-gui.c:804 +msgid "Add single images..." +msgstr "Додај појединачне слике..." + +#: bimp-gui.c:807 +msgid "Add folders..." +msgstr "Додај фасцикле..." + +#: bimp-gui.c:810 +msgid "Add all opened images" +msgstr "Додај све отворене слике" + +#: bimp-gui.c:817 +msgid "Remove selected" +msgstr "Уклони селектоване" + +#: bimp-gui.c:820 +msgid "Remove all" +msgstr "Уклони све" + +#: bimp-gui.c:864 +msgid "Can't add another manipulation of this kind. Only one is permitted!" +msgstr "" +"Није могуће додати још једну обраду дате врсте. Дозвољена је само једна!" + +#: bimp-gui.c:955 bimp-gui.c:1006 +msgid "An error occured when importing a saved batch file :(" +msgstr "Дошло је до грешке при увозу сачуваног пакета датотека :(" + +#: bimp-gui.c:977 +msgid "This will overwrite current manipulations set. Continue?" +msgstr "" +"Текућа листа обраде ће бити преписана преко претходне листе. Наставити?" + +#: bimp-gui.c:1045 bimp.c:66 +msgid "Applies GIMP manipulations on groups of images" +msgstr "Аутоматска серијска GIMP обрада дигиталних слика" + +#: bimp-gui.c:1052 +msgid "translator-name " +msgstr "Valentina Rutović " + +#: bimp-manipulations.c:279 +msgid "Resize" +msgstr "Размера" + +#: bimp-manipulations.c:282 +msgid "Crop" +msgstr "Исецање" + +#: bimp-manipulations.c:285 +msgid "Flip or Rotate" +msgstr "Извртање или ротација" + +#: bimp-manipulations.c:288 +msgid "Color correction" +msgstr "Корекција боје" + +#: bimp-manipulations.c:291 +msgid "Sharp or Blur" +msgstr "Изоштравање или замућење" + +#: bimp-manipulations.c:294 +msgid "Add a Watermark" +msgstr "Додавање воденог печата" + +#: bimp-manipulations.c:297 +msgid "Change format and compression" +msgstr "Промена формата и компресије" + +#: bimp-manipulations.c:300 +msgid "Rename with a pattern" +msgstr "Преименовање према узорку" + +#: bimp-manipulations.c:303 +msgid "Other GIMP procedure..." +msgstr "Друге GIMP процедуре..." + +#: bimp-operate.c:177 +#, c-format +msgid "" +"Can't save image \"%s\": input file has no extension.\n" +"You can solve this error by adding a \"Change format or compression\" step" +msgstr "" +"Није могуће сачувати слику \"%s\": улазна датотека нема екстензију.\n" +"Додај корак \"Промени формат и компресију\" како би исправио грешку." + +#: bimp-operate.c:183 +#, c-format +msgid "" +"GIMP can't save %s back to its original SVG format.\n" +"You can solve this error by adding a \"Change format or compression\" step" +msgstr "" +"GIMP ne može sačuvati %s nazad u njegov originalni SVG format.\n" +"Dodaj korak \"Promeni format i kompresiju\" kako bi ispravio grešku." + +#: bimp-operate.c:189 +#, c-format +msgid "Working on file \"%s\"..." +msgstr "Обрада датотеке \"%s\"..." + +#: bimp-operate.c:329 +msgid "Operations stopped" +msgstr "Извршење је прекинуто" + +#: bimp-operate.c:336 +#, c-format +msgid "End, all files have been processed with %d errors" +msgstr "Завршена обрада, све датотеке су обрађене са %d грешака" + +#: bimp-operate.c:1380 +#, c-format +msgid "File %s already exists, overwrite it?" +msgstr "Датотека %s већ постоји. Сачувати преко већ постојеће?" + +#: bimp-operate.c:1385 +msgid "Always apply this decision" +msgstr "Увек примените дати избор" + +#: bimp-operate.c:1397 +msgid "Overwrite?" +msgstr "Преписати?" + +#: manipulation-gui/gui-changeformat.c:37 +msgid "Format settings" +msgstr "Подешавање формата" + +#: manipulation-gui/gui-changeformat.c:58 +msgid "Interlaced" +msgstr "Преплетен" + +#: manipulation-gui/gui-changeformat.c:78 +#: manipulation-gui/gui-changeformat.c:118 +msgid "Quality" +msgstr "Квалитет" + +#: manipulation-gui/gui-changeformat.c:84 +#: manipulation-gui/gui-changeformat.c:213 +msgid "Advanced params" +msgstr "Напредно подешавање" + +#: manipulation-gui/gui-changeformat.c:88 +msgid "Smoothing" +msgstr "Умекшавање" + +#: manipulation-gui/gui-changeformat.c:95 +msgid "Optimize" +msgstr "Оптимизирај" + +#: manipulation-gui/gui-changeformat.c:96 +msgid "Progressive" +msgstr "Напредно" + +#: manipulation-gui/gui-changeformat.c:97 +msgid "Save baseline" +msgstr "" +"Сачувај основни\n" +"режим" + +#: manipulation-gui/gui-changeformat.c:100 +msgid "Comment" +msgstr "Коментар" + +#: manipulation-gui/gui-changeformat.c:107 +msgid "Markers rows" +msgstr "Обележени редови" + +#: manipulation-gui/gui-changeformat.c:112 msgstr +#: "Субдискретизация" +msgid "Subsampling" +msgstr "Subsampling" + +#: manipulation-gui/gui-changeformat.c:116 +msgid "Small size" +msgstr "Мала величина" + +#: manipulation-gui/gui-changeformat.c:123 +msgid "DCT algorithm" +msgstr "DCT алгоритам" + +#: manipulation-gui/gui-changeformat.c:127 +msgid "Integer" +msgstr "Цео број" + +#: manipulation-gui/gui-changeformat.c:128 +msgid "Fast integer" +msgstr "Цео број (Fast integer)" + +#: manipulation-gui/gui-changeformat.c:129 +msgid "Float" +msgstr "Децимални број" + +#: manipulation-gui/gui-changeformat.c:205 +msgid "Interlace (Adam7)" +msgstr "Interlace (Adam7)" + +#: manipulation-gui/gui-changeformat.c:207 +#: manipulation-gui/gui-changeformat.c:303 +msgid "Compression" +msgstr "Компресија" + +#: manipulation-gui/gui-changeformat.c:216 +msgid "Save background color" +msgstr "Сачувај боју позадине" + +#: manipulation-gui/gui-changeformat.c:217 +msgid "Save gamma" +msgstr "Сачувај GAMMA подешавање" + +#: manipulation-gui/gui-changeformat.c:218 +msgid "Save layer offset" +msgstr "Сачувај OFFSET слоја" + +#: manipulation-gui/gui-changeformat.c:219 +msgid "Save resolution" +msgstr "Сачувај резолуцију" + +#: manipulation-gui/gui-changeformat.c:220 +msgid "Save creation date" +msgstr "Сачувај датум креирања" + +#: manipulation-gui/gui-changeformat.c:221 +msgid "Save comments" +msgstr "Сачувај коментаре" + +#: manipulation-gui/gui-changeformat.c:222 +msgid "Save color from transparent pixels" +msgstr "Сачувај боју провидних пиксела" + +#: manipulation-gui/gui-changeformat.c:270 +msgid "RLE compression" +msgstr "RLE компресија" + +#: manipulation-gui/gui-changeformat.c:273 +msgid "Image origin" +msgstr "Оригинал слике" + +#: manipulation-gui/gui-changeformat.c:278 manipulation-gui/gui-crop.c:71 +#: manipulation-gui/gui-watermark.c:301 +msgid "Top-left" +msgstr "Горе-лево" + +#: manipulation-gui/gui-changeformat.c:279 manipulation-gui/gui-crop.c:73 +#: manipulation-gui/gui-watermark.c:319 +msgid "Bottom-left" +msgstr "Доле-лево" + +#: manipulation-gui/gui-changeformat.c:308 manipulation-gui/gui-fliprotate.c:39 +msgid "None" +msgstr "Ништа" + +#: manipulation-gui/gui-changeformat.c:309 +msgid "LZW" +msgstr "LZW" + +#: manipulation-gui/gui-changeformat.c:310 +msgid "Pack bits" +msgstr "Pack bits" + +#: manipulation-gui/gui-changeformat.c:311 +msgid "Deflate" +msgstr "Deflate" + +#: manipulation-gui/gui-changeformat.c:312 +msgid "JPEG" +msgstr "JPEG" + +#: manipulation-gui/gui-changeformat.c:313 +msgid "CCITT G3 Fax" +msgstr "CCITT G3 Fax" + +#: manipulation-gui/gui-changeformat.c:314 +msgid "CCITT G4 Fax" +msgstr "CCITT G4 Fax" + +#: manipulation-gui/gui-changeformat.c:329 +msgid "This format has no params" +msgstr "Дати формат нема параметре" + +#: manipulation-gui/gui-color.c:22 +msgid "Brightness" +msgstr "Осветљеност" + +#: manipulation-gui/gui-color.c:30 +msgid "Contrast" +msgstr "Контраст" + +#: manipulation-gui/gui-color.c:37 +msgid "Convert to grayscale" +msgstr "Претвори у сиве нијансе" + +#: manipulation-gui/gui-color.c:39 +msgid "Automatic color levels correction" +msgstr "Аутоматска исправка боја" + +#: manipulation-gui/gui-color.c:42 +msgid "Change color curve from settings file:" +msgstr "" +"Промени боју криве\n" +"из датотеке са подешавањима:" + +#: manipulation-gui/gui-color.c:47 +msgid "Select GIMP Curve file" +msgstr "Селектуј GIMP датотеку криве" + +#: manipulation-gui/gui-crop.c:28 +msgid "Crop to a standard aspect ratio" +msgstr "Исецање са стандардним пропорцијама" + +#: manipulation-gui/gui-crop.c:54 +msgid "Manual crop (pixel values)" +msgstr "Ручно исецање (вредности у пикселима)" + +#: manipulation-gui/gui-crop.c:59 manipulation-gui/gui-resize.c:82 +#: manipulation-gui/gui-watermark.c:80 +msgid "Width" +msgstr "Ширина" + +#: manipulation-gui/gui-crop.c:63 manipulation-gui/gui-resize.c:85 +#: manipulation-gui/gui-watermark.c:81 +msgid "Height" +msgstr "Висина" + +#: manipulation-gui/gui-crop.c:68 +msgid "Start from" +msgstr "Почетна тачка" + +#: manipulation-gui/gui-crop.c:70 manipulation-gui/gui-watermark.c:313 +msgid "Center" +msgstr "Средина" + +#: manipulation-gui/gui-crop.c:72 manipulation-gui/gui-watermark.c:307 +msgid "Top-right" +msgstr "Горе-десно" + +#: manipulation-gui/gui-crop.c:74 manipulation-gui/gui-watermark.c:325 +msgid "Bottom-right" +msgstr "Доле-десно" + +#: manipulation-gui/gui-crop.c:133 +msgid "One-to-one" +msgstr "Један на један" + +#: manipulation-gui/gui-crop.c:136 +msgid "Classic 35 mm film" +msgstr "Стандардни 35 mm филм" + +#: manipulation-gui/gui-crop.c:139 +msgid "Standard VGA monitor" +msgstr "Стандардни VGA монитор" + +#: manipulation-gui/gui-crop.c:142 +msgid "Widescreen" +msgstr "Широки екран (Widescreen)" + +#: manipulation-gui/gui-crop.c:145 +msgid "Widescreen extended" +msgstr "Проширени широки екран (Widescreen extended)" + +#: manipulation-gui/gui-crop.c:148 +msgid "EU Passport portrait" +msgstr "Слика за EU пасош" + +#: manipulation-gui/gui-crop.c:151 +msgid "Classic smartphone screen" +msgstr "Стандардни екран паметног телефона" + +#: manipulation-gui/gui-crop.c:154 +msgid "Tall smartphone screen" +msgstr "Високи екран паметног телефона" + +#: manipulation-gui/gui-crop.c:157 +msgid "Classic tablet screen" +msgstr "Стандардни екран таблета" + +#: manipulation-gui/gui-crop.c:160 +msgid "Custom ratio" +msgstr "Произвољна пропорција" + +#: manipulation-gui/gui-fliprotate.c:19 +msgid "Flip" +msgstr "Извртање" + +#: manipulation-gui/gui-fliprotate.c:23 +msgid "Horizontally" +msgstr "Хоризонтално" + +#: manipulation-gui/gui-fliprotate.c:29 +msgid "Vertically" +msgstr "Вертикално" + +#: manipulation-gui/gui-fliprotate.c:37 +msgid "Rotation" +msgstr "Ротација" + +#: manipulation-gui/gui-rename.c:26 +msgid "Keywords" +msgstr "Кључне речи" + +#: manipulation-gui/gui-rename.c:30 +msgid "Original filename (without extension)" +msgstr "Оригинални назив датотеке (без екстензије)" + +#: manipulation-gui/gui-rename.c:31 +msgid "Incremental number" +msgstr "Умножак" + +#: manipulation-gui/gui-rename.c:32 +msgid "Date and time (YYYY-MM-DD_hh-mm)" +msgstr "Датум и време (GGGG-MM-DD_hh-mm)" + +#: manipulation-gui/gui-rename.c:52 +#, c-format +msgid "" +"Can't save!\n" +"'%s' or '%s' symbol must be present." +msgstr "" +"Није могуће сачувати!\n" +"\"%s\" или \"%s\" симбол мора бити присутан." + +#: manipulation-gui/gui-rename.c:64 +msgid "" +"Can't save!\n" +"Pattern contains invalid characters." +msgstr "" +"Није могуће сачувати!\n" +"Узорак садржи недозвољене знаке. " + +#: manipulation-gui/gui-resize.c:43 +msgid "Set to a percentage of the original" +msgstr "Подеси проценат од оригиналне слике" + +#: manipulation-gui/gui-resize.c:45 +msgid "Set exact size in pixel" +msgstr "Подеси тачну величину у пикселима (px)" + +#: manipulation-gui/gui-resize.c:52 +msgid "For both dimensions" +msgstr "За обе димензије" + +#: manipulation-gui/gui-resize.c:53 +msgid "Width only" +msgstr "Само ширина" + +#: manipulation-gui/gui-resize.c:54 +msgid "Height only" +msgstr "Само висина" + +#: manipulation-gui/gui-resize.c:64 +msgid "Allow stretching" +msgstr "Дозволи истезање" + +#: manipulation-gui/gui-resize.c:66 +msgid "Preserve aspect ratio" +msgstr "Сачувај однос ширине и висине" + +#: manipulation-gui/gui-resize.c:68 +msgid "Fill with padding" +msgstr "Попуни бојом" + +#: manipulation-gui/gui-resize.c:92 +msgid "Interpolation quality" +msgstr "Квалитет интерполације" + +#: manipulation-gui/gui-resize.c:101 +msgid "Change resolution" +msgstr "Промени резолуцију" + +#: manipulation-gui/gui-resize.c:107 +msgid "X axis" +msgstr "X оса" + +#: manipulation-gui/gui-resize.c:111 +msgid "Y axis" +msgstr "Y оса" + +#: manipulation-gui/gui-sharpblur.c:17 +msgid "More sharpen" +msgstr "Оштрије" + +#: manipulation-gui/gui-sharpblur.c:23 +msgid "More blurred" +msgstr "Замућеније" + +#: manipulation-gui/gui-userdef.c:49 +msgid "" +"Choose a supported GIMP procedure from the list on the left\n" +"and define its parameters on the right." +msgstr "" +"Изабери подржану GIMP функцију\n" +"из листе која се налази са леве стране\n" +"и подеси њене параметре на десној страни." + +#: manipulation-gui/gui-userdef.c:61 +msgid "Search" +msgstr "Претражи" + +#: manipulation-gui/gui-userdef.c:305 +msgid "" +"Can't save because\n" +"no procedure has been selected" +msgstr "" +"Није могуће сачувати,\n" +"зато што није селектована ниједна процедура" + +#: manipulation-gui/gui-userdef.c:351 +msgid "Author" +msgstr "Аутор" + +#: manipulation-gui/gui-userdef.c:603 +msgid "This procedure takes no editable params" +msgstr "У датој процедури нема параметара који су изменљиви" + +#: manipulation-gui/gui-watermark.c:41 +msgid "Text watermark" +msgstr "Водени печат у облику текста" + +#: manipulation-gui/gui-watermark.c:45 +msgid "Text" +msgstr "Текст" + +#: manipulation-gui/gui-watermark.c:54 +msgid "Font" +msgstr "Врста слова" + +#: manipulation-gui/gui-watermark.c:60 +msgid "Color" +msgstr "Боја" + +#: manipulation-gui/gui-watermark.c:67 +msgid "Image watermark" +msgstr "Водени печат у облику слике" + +#: manipulation-gui/gui-watermark.c:71 +msgid "Select image" +msgstr "Селектуј слику" + +#: manipulation-gui/gui-watermark.c:73 +msgid "Adaptive size" +msgstr "Прилагођена величина" + +#: manipulation-gui/gui-watermark.c:77 +#, c-format +msgid "%% of" +msgstr "%% од" + +#: manipulation-gui/gui-watermark.c:133 +msgid "Opacity" +msgstr "Непровидност" + +#: manipulation-gui/gui-watermark.c:142 +msgid "Distance to edge" +msgstr "Удаљеност од ивице" + +#: manipulation-gui/gui-watermark.c:146 +msgid "Position on the image" +msgstr "Позиција на слици" + +#: manipulation-gui/gui-watermark.c:304 +msgid "Top-center" +msgstr "Горе-средина" + +#: manipulation-gui/gui-watermark.c:310 +msgid "Center-left" +msgstr "Средина-лево" + +#: manipulation-gui/gui-watermark.c:316 +msgid "Center-right" +msgstr "Средина-десно" + +#: manipulation-gui/gui-watermark.c:322 +msgid "Bottom-center" +msgstr "Доле-средина" diff --git a/bimp-locale/tr/LC_MESSAGES/gimp20-plugin-bimp.po b/bimp-locale/tr/LC_MESSAGES/gimp20-plugin-bimp.po new file mode 100644 index 0000000..145972e --- /dev/null +++ b/bimp-locale/tr/LC_MESSAGES/gimp20-plugin-bimp.po @@ -0,0 +1,747 @@ +# Turkish translation for GIMP bimp plug-in. +# +# Copyright (C) 2022 GIMP bimp plug-in's COPYRIGHT HOLDER +# This file is distributed under the same license as the GIMP bimp plug-in package. +# +# Sabri Ünal , 2022. +# +# Not: Çevirilerin GIMP çevirileri ile uyumlu olmasına özen gösterilmiştir. +# Çeviriye katkı vermeden önce en son çevirmen ile lütfen iletişime geçmeye çalışın. +# İletişim kuramazsanız çevirileri devam ettirmekten veya iyileştirmekten çekinmeyin. +# +msgid "" +msgstr "" +"Project-Id-Version: GIMP bimp plug-in\n" +"Report-Msgid-Bugs-To: https://github.com/alessandrofrancesconi/gimp-plugin-" +"bimp\n" +"POT-Creation-Date: 2022-12-11 17:17+0300\n" +"PO-Revision-Date: \n" +"Last-Translator: Sabri Ünal \n" +"Language-Team: Turkish \n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.1.1\n" +"X-Poedit-KeywordsList: _;NC_;G_;N_\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SearchPath-0: src\n" +"X-Poedit-SearchPath-1: nsis\n" +"X-Poedit-SearchPath-2: bin\n" + +#: src/bimp-gui.c:131 src/bimp-gui.c:973 +msgid "The manipulations set is empty!" +msgstr "İşleme kümesi boş!" + +#: src/bimp-gui.c:134 +msgid "The file list is empty!" +msgstr "Dosya listesi boş!" + +#: src/bimp-gui.c:164 +msgid "Manipulation set" +msgstr "İşleme kümesi" + +#: src/bimp-gui.c:191 +msgid "Input files and options" +msgstr "Girdi dosyaları ve seçenekleri" + +#: src/bimp-gui.c:204 +msgid "Add images" +msgstr "Görüntü ekle" + +#: src/bimp-gui.c:205 +msgid "Remove images" +msgstr "Görüntüleri kaldır" + +#: src/bimp-gui.c:211 +msgid "Output folder" +msgstr "Çıktı klasörü" + +#: src/bimp-gui.c:224 +msgid "Use the selected file's location as the output" +msgstr "Çıktı olarak seçilen dosyanın konumunu kullan" + +#: src/bimp-gui.c:231 +msgid "Keep folder hierarchy" +msgstr "Klasör hiyerarşisini koru" + +#: src/bimp-gui.c:236 +msgid "Delete original file when done" +msgstr "Tamamlandığında özgün dosyayı sil" + +#: src/bimp-gui.c:240 +msgid "Keep the modification dates" +msgstr "Değişiklik tarihlerini koru" + +#: src/bimp-gui.c:245 +msgid "Click for preview" +msgstr "Önizleme için tıklayın" + +#: src/bimp-gui.c:346 +#, c-format +msgid "Couldn't read into \"%s\" directory." +msgstr "\"%s\" dizini okunamadı." + +#: src/bimp-gui.c:366 +msgid "" +"Some images were not imported because they have not been saved on filesystem " +"yet." +msgstr "" +"Henüz dosya sistemine kaydedilmedikleri için bazı görüntüler içe aktarılmadı." + +#: src/bimp-gui.c:465 +msgid "Can't show a preview because the manipulations set is empty" +msgstr "İşleme seti boş olduğu için önizleme gösterilemiyor" + +#: src/bimp-gui.c:493 +msgid "Preview" +msgstr "Önizle" + +#: src/bimp-gui.c:505 +msgid "This is how the selected image will look like after the batch process" +msgstr "Bu, toplu işlemden sonra seçilen görüntünün nasıl görüneceğidir." + +#: src/bimp-gui.c:600 +msgid "Select images" +msgstr "Seçilen görüntüler" + +#: src/bimp-gui.c:610 src/manipulation-gui/gui-watermark.c:88 +msgid "All supported types" +msgstr "Desteklenen tüm türler" + +#: src/bimp-gui.c:724 +msgid "Select folders containing images" +msgstr "Görüntüleri içeren klasörleri seçin" + +#: src/bimp-gui.c:733 +msgid "Add files from the whole hierarchy" +msgstr "Tüm hiyerarşiden dosya ekle" + +#: src/bimp-gui.c:772 +msgid "Select output folder" +msgstr "Çıktı klasörü seç" + +#: src/bimp-gui.c:824 src/bimp-gui.c:979 +msgid "Save this set..." +msgstr "Bu kümeyi kaydet..." + +#: src/bimp-gui.c:828 src/bimp-gui.c:1034 +msgid "Load set..." +msgstr "Küme yükle..." + +#: src/bimp-gui.c:839 +msgid "Edit properties..." +msgstr "Özellikleri düzenle..." + +#: src/bimp-gui.c:842 +msgid "Remove this manipulation" +msgstr "Bu işlemeyi kaldır" + +#: src/bimp-gui.c:849 +msgid "Add single images..." +msgstr "Tek görüntü ekle..." + +#: src/bimp-gui.c:852 +msgid "Add folders..." +msgstr "Klasör ekle..." + +#: src/bimp-gui.c:855 +msgid "Add all opened images" +msgstr "Açılmış bütün görüntüleri ekle" + +#: src/bimp-gui.c:862 +msgid "Remove selected" +msgstr "Seçilenleri kaldır" + +#: src/bimp-gui.c:865 +msgid "Remove all" +msgstr "Hepsini kaldır" + +#: src/bimp-gui.c:909 +msgid "Can't add another manipulation of this kind. Only one is permitted!" +msgstr "Bu türden başka bir işleme eklenemez. Sadece birine izin veriliyor!" + +#: src/bimp-gui.c:1000 src/bimp-gui.c:1051 +msgid "An error occured when importing a saved batch file :(" +msgstr "Kaydedilmiş bir toplu iş dosyası içe aktarılırken hata oluştu :(" + +#: src/bimp-gui.c:1022 +msgid "This will overwrite current manipulations set. Continue?" +msgstr "Bu, mevcut işleme setinin üzerine yazacak. Devam edilsin mi?" + +#: src/bimp-gui.c:1088 src/bimp.c:78 +msgid "Applies GIMP manipulations on groups of images" +msgstr "GIMP işlemelerini görüntü gruplarına uygular" + +#: src/bimp-gui.c:1095 +msgid "translator-name " +msgstr "Sabri Ünal " + +#: src/bimp-manipulations.c:296 +msgid "Resize" +msgstr "Yeniden Boyutlandır" + +#: src/bimp-manipulations.c:299 +msgid "Crop" +msgstr "Kırp" + +#: src/bimp-manipulations.c:302 +msgid "Flip or Rotate" +msgstr "Çevir veya Döndür" + +#: src/bimp-manipulations.c:305 +msgid "Color correction" +msgstr "Renk düzeltmesi" + +#: src/bimp-manipulations.c:308 +msgid "Sharp or Blur" +msgstr "Keskinleştir veya Bulanıklaştır" + +#: src/bimp-manipulations.c:311 +msgid "Add a Watermark" +msgstr "Filigran Ekle" + +#: src/bimp-manipulations.c:314 +msgid "Change format and compression" +msgstr "Biçim ve sıkıştırmayı değiştir" + +#: src/bimp-manipulations.c:317 +msgid "Rename with a pattern" +msgstr "Desen ile yeniden adlandır" + +#: src/bimp-manipulations.c:320 +msgid "Other GIMP procedure..." +msgstr "Diğer GIMP yordamı..." + +#: src/bimp-operate.c:179 +#, c-format +msgid "" +"Can't save image \"%s\": input file has no extension.\n" +"You can solve this error by adding a \"Change format or compression\" step" +msgstr "" +"\"%s\" görüntüsü kaydedilemedi: girdi dosyasının uzantısı yok.\n" +"\"Biçimi veya sıkıştırmayı değiştir\" adımı ekleyerek bu hatayı " +"çözebilirsiniz." + +#: src/bimp-operate.c:185 +#, c-format +msgid "" +"GIMP can't save %s back to its original SVG format.\n" +"You can solve this error by adding a \"Change format or compression\" step" +msgstr "" +"GIMP, %s dosyasını özgün SVG biçiminde geri kaydedemez.\n" +"\"Biçimi veya sıkıştırmayı değiştir\" adımı ekleyerek bu hatayı " +"çözebilirsiniz." + +#: src/bimp-operate.c:191 +#, c-format +msgid "Working on file \"%s\"..." +msgstr "\"%s\" dosyası üzerinde çalışıyor..." + +#: src/bimp-operate.c:331 +msgid "Operations stopped" +msgstr "İşlem durduruldu." + +#: src/bimp-operate.c:338 +#, c-format +msgid "End, all files have been processed with %d errors" +msgstr "Bitti, tüm dosyalar %d hata ile işlendi" + +#: src/bimp-operate.c:1448 +#, c-format +msgid "File %s already exists, overwrite it?" +msgstr "“%s” dosyası zaten var, üzerine yazılsın mı?" + +#: src/bimp-operate.c:1453 +msgid "Always apply this decision" +msgstr "Daima bu kararı uygula" + +#: src/bimp-operate.c:1465 +msgid "Overwrite?" +msgstr "Üzerine yazılsın mı?" + +#: src/manipulation-gui/gui-changeformat.c:36 +msgid "Format settings" +msgstr "Biçim ayarları" + +#: src/manipulation-gui/gui-changeformat.c:56 +msgid "Interlaced" +msgstr "Birleştirilmiş" + +#: src/manipulation-gui/gui-changeformat.c:73 +#: src/manipulation-gui/gui-changeformat.c:104 +#: src/manipulation-gui/gui-changeformat.c:306 +#: src/manipulation-gui/gui-changeformat.c:408 +msgid "Quality" +msgstr "Kalite" + +#: src/manipulation-gui/gui-changeformat.c:77 +#: src/manipulation-gui/gui-changeformat.c:193 +msgid "Advanced params" +msgstr "Gelişmiş parametreler" + +#: src/manipulation-gui/gui-changeformat.c:81 +msgid "Smoothing" +msgstr "Pürüzsüzleştirme" + +#: src/manipulation-gui/gui-changeformat.c:86 +msgid "Optimize" +msgstr "Eniyile" + +#: src/manipulation-gui/gui-changeformat.c:87 +msgid "Progressive" +msgstr "Aşamalı" + +#: src/manipulation-gui/gui-changeformat.c:88 +msgid "Save baseline" +msgstr "Tabanı kaydet" + +#: src/manipulation-gui/gui-changeformat.c:91 +msgid "Comment" +msgstr "Yorum" + +#: src/manipulation-gui/gui-changeformat.c:96 +msgid "Markers rows" +msgstr "İşaretçi satırları" + +#: src/manipulation-gui/gui-changeformat.c:100 +msgid "Subsampling" +msgstr "Alt örnekleme" + +#: src/manipulation-gui/gui-changeformat.c:102 +msgid "Small size" +msgstr "Küçük boyutlu" + +#: src/manipulation-gui/gui-changeformat.c:109 +msgid "DCT algorithm" +msgstr "DCT algoritması" + +#: src/manipulation-gui/gui-changeformat.c:111 +msgid "Integer" +msgstr "Tamsayı" + +#: src/manipulation-gui/gui-changeformat.c:112 +msgid "Fast integer" +msgstr "Sabit Tam Sayı" + +#: src/manipulation-gui/gui-changeformat.c:113 +msgid "Float" +msgstr "Kayan sayı" + +#: src/manipulation-gui/gui-changeformat.c:187 +msgid "Interlace (Adam7)" +msgstr "Birleştir (Adam7)" + +#: src/manipulation-gui/gui-changeformat.c:189 +#: src/manipulation-gui/gui-changeformat.c:277 +msgid "Compression" +msgstr "Sıkıştırma" + +#: src/manipulation-gui/gui-changeformat.c:196 +msgid "Save background color" +msgstr "Artalan rengini kaydet" + +#: src/manipulation-gui/gui-changeformat.c:197 +msgid "Save gamma" +msgstr "Gamayı kaydet" + +#: src/manipulation-gui/gui-changeformat.c:198 +msgid "Save layer offset" +msgstr "Katman konumunu kaydet" + +#: src/manipulation-gui/gui-changeformat.c:199 +msgid "Save resolution" +msgstr "Çözünürlüğü kaydet" + +#: src/manipulation-gui/gui-changeformat.c:200 +msgid "Save creation date" +msgstr "Oluşturma tarihini kaydet" + +#: src/manipulation-gui/gui-changeformat.c:201 +msgid "Save comments" +msgstr "Yorumları kaydet" + +#: src/manipulation-gui/gui-changeformat.c:202 +msgid "Save color from transparent pixels" +msgstr "Saydam piksellerden renk kaydet" + +#: src/manipulation-gui/gui-changeformat.c:248 +msgid "RLE compression" +msgstr "RLE sıkıştırması" + +#: src/manipulation-gui/gui-changeformat.c:251 +msgid "Image origin" +msgstr "Görüntü kökeni" + +#: src/manipulation-gui/gui-changeformat.c:254 +#: src/manipulation-gui/gui-crop.c:69 +msgid "Top-left" +msgstr "Üst sol" + +#: src/manipulation-gui/gui-changeformat.c:255 +#: src/manipulation-gui/gui-crop.c:71 +msgid "Bottom-left" +msgstr "Alt sol" + +#: src/manipulation-gui/gui-changeformat.c:280 +#: src/manipulation-gui/gui-fliprotate.c:38 +msgid "None" +msgstr "Hiçbiri" + +#: src/manipulation-gui/gui-changeformat.c:281 +msgid "LZW" +msgstr "LZW" + +#: src/manipulation-gui/gui-changeformat.c:282 +msgid "Pack bits" +msgstr "Pack bits" + +#: src/manipulation-gui/gui-changeformat.c:283 +msgid "Deflate" +msgstr "Deflate" + +#: src/manipulation-gui/gui-changeformat.c:284 +msgid "JPEG" +msgstr "JPEG" + +#: src/manipulation-gui/gui-changeformat.c:285 +msgid "CCITT G3 Fax" +msgstr "CCITT G3 Faks" + +#: src/manipulation-gui/gui-changeformat.c:286 +msgid "CCITT G4 Fax" +msgstr "CCITT G4 Faks" + +#: src/manipulation-gui/gui-changeformat.c:303 +#: src/manipulation-gui/gui-changeformat.c:331 +msgid "Lossless" +msgstr "Kayıpsız" + +#: src/manipulation-gui/gui-changeformat.c:334 +msgid "Image quality" +msgstr "Görüntü kalitesi" + +#: src/manipulation-gui/gui-changeformat.c:339 +msgid "Alpha quality" +msgstr "Alfa kalitesi" + +#: src/manipulation-gui/gui-changeformat.c:344 +msgid "Preset" +msgstr "Ön ayar" + +#: src/manipulation-gui/gui-changeformat.c:347 +msgid "Default" +msgstr "Öntanımlı" + +#: src/manipulation-gui/gui-changeformat.c:348 +msgid "Picture" +msgstr "Resim" + +#: src/manipulation-gui/gui-changeformat.c:349 +msgid "Photo" +msgstr "Fotoğraf" + +#: src/manipulation-gui/gui-changeformat.c:350 +msgid "Drawing" +msgstr "Çizim" + +#: src/manipulation-gui/gui-changeformat.c:351 +msgid "Icon" +msgstr "Simge" + +#: src/manipulation-gui/gui-changeformat.c:352 +#: src/manipulation-gui/gui-watermark.c:49 +msgid "Text" +msgstr "Metin" + +#: src/manipulation-gui/gui-changeformat.c:354 +msgid "Save EXIF data" +msgstr "Exif verisini kaydet" + +#: src/manipulation-gui/gui-changeformat.c:355 +msgid "Save XMP data" +msgstr "XMP verisini kaydet" + +#: src/manipulation-gui/gui-changeformat.c:356 +msgid "Save color profile" +msgstr "Renk profilini kaydet" + +#: src/manipulation-gui/gui-changeformat.c:405 +msgid "Nearly lossless" +msgstr "Neredeyse kayıpsız" + +#: src/manipulation-gui/gui-changeformat.c:433 +msgid "This format has no params" +msgstr "Bu biçimin parametresi yok" + +#: src/manipulation-gui/gui-color.c:22 +msgid "Brightness" +msgstr "Parlaklık" + +#: src/manipulation-gui/gui-color.c:28 +msgid "Contrast" +msgstr "Karşıtlık" + +#: src/manipulation-gui/gui-color.c:34 +msgid "Convert to grayscale" +msgstr "Gri tonlamaya dönüştür" + +#: src/manipulation-gui/gui-color.c:36 +msgid "Automatic color levels correction" +msgstr "Kendiliğinden renk düzeyi düzeltmesi" + +#: src/manipulation-gui/gui-color.c:39 +msgid "Change color curve from settings file:" +msgstr "Ayarlar dosyasından renk eğrisini değiştir:" + +#: src/manipulation-gui/gui-color.c:41 +msgid "Select GIMP Curve file" +msgstr "GIMP Eğri dosyası seç" + +#: src/manipulation-gui/gui-crop.c:28 +msgid "Crop to a standard aspect ratio" +msgstr "Standart en boy orana kırp" + +#: src/manipulation-gui/gui-crop.c:52 +msgid "Manual crop (pixel values)" +msgstr "Elle kırp (piksel değerleri)" + +#: src/manipulation-gui/gui-crop.c:58 src/manipulation-gui/gui-resize.c:49 +#: src/manipulation-gui/gui-watermark.c:81 +msgid "Width" +msgstr "Genişlik" + +#: src/manipulation-gui/gui-crop.c:61 src/manipulation-gui/gui-resize.c:58 +#: src/manipulation-gui/gui-watermark.c:82 +msgid "Height" +msgstr "Yükseklik" + +#: src/manipulation-gui/gui-crop.c:66 +msgid "Start from" +msgstr "İtibaren başla:" + +#: src/manipulation-gui/gui-crop.c:68 +msgid "Center" +msgstr "Merkez" + +#: src/manipulation-gui/gui-crop.c:70 +msgid "Top-right" +msgstr "Üst sağ" + +#: src/manipulation-gui/gui-crop.c:72 +msgid "Bottom-right" +msgstr "Alt sağ" + +#: src/manipulation-gui/gui-crop.c:128 +msgid "One-to-one" +msgstr "Bire bir" + +#: src/manipulation-gui/gui-crop.c:131 +msgid "Classic 35 mm film" +msgstr "Klasik 35 mm film" + +#: src/manipulation-gui/gui-crop.c:134 +msgid "Standard VGA monitor" +msgstr "Standart VGA ekran" + +#: src/manipulation-gui/gui-crop.c:137 +msgid "Widescreen" +msgstr "Geniş Ekran" + +#: src/manipulation-gui/gui-crop.c:140 +msgid "Widescreen extended" +msgstr "Genişletilmiş geniş ekran" + +#: src/manipulation-gui/gui-crop.c:143 +msgid "EU Passport portrait" +msgstr "AB Pasaport dikey" + +#: src/manipulation-gui/gui-crop.c:146 +msgid "Classic smartphone screen" +msgstr "Klasik akıllı telefon ekranı" + +#: src/manipulation-gui/gui-crop.c:149 +msgid "Tall smartphone screen" +msgstr "Uzun akıllı telefon ekranı" + +#: src/manipulation-gui/gui-crop.c:152 +msgid "Classic tablet screen" +msgstr "Klasik tablet ekranı" + +#: src/manipulation-gui/gui-crop.c:155 +msgid "Custom ratio" +msgstr "Özel en boy oranı" + +#: src/manipulation-gui/gui-fliprotate.c:20 +msgid "Flip" +msgstr "Çevir" + +#: src/manipulation-gui/gui-fliprotate.c:24 +msgid "Horizontally" +msgstr "Yatay olarak" + +#: src/manipulation-gui/gui-fliprotate.c:29 +msgid "Vertically" +msgstr "Dikey olarak" + +#: src/manipulation-gui/gui-fliprotate.c:36 +msgid "Rotation" +msgstr "Döndürme" + +#: src/manipulation-gui/gui-rename.c:25 +msgid "Keywords" +msgstr "Anahtar Sözcükler" + +#: src/manipulation-gui/gui-rename.c:28 +msgid "Original filename (without extension)" +msgstr "Özgün dosya adı (uzantı olmadan)" + +#: src/manipulation-gui/gui-rename.c:29 +msgid "Incremental number" +msgstr "Artan sayı" + +#: src/manipulation-gui/gui-rename.c:30 +msgid "Date and time (YYYY-MM-DD_hh-mm)" +msgstr "Tarih ve zaman (YYYY-MM-DD_hh-mm)" + +#: src/manipulation-gui/gui-rename.c:49 +#, c-format +msgid "" +"Can't save!\n" +"'%s' or '%s' symbol must be present." +msgstr "" +"Kaydedilemedi!\n" +"'%s' ya da '%s' sembolü mutlaka bulunmalı." + +#: src/manipulation-gui/gui-rename.c:61 +msgid "" +"Can't save!\n" +"Pattern contains invalid characters." +msgstr "" +"Kaydedilemedi.\n" +"Desen geçersiz karakterler içeriyor." + +#: src/manipulation-gui/gui-resize.c:53 src/manipulation-gui/gui-resize.c:62 +msgid "%" +msgstr "%" + +#: src/manipulation-gui/gui-resize.c:54 src/manipulation-gui/gui-resize.c:63 +msgid "px" +msgstr "px" + +#: src/manipulation-gui/gui-resize.c:55 src/manipulation-gui/gui-resize.c:64 +msgid "Disable" +msgstr "Devre Dışı Bırak" + +#: src/manipulation-gui/gui-resize.c:70 +msgid "Aspect ratio" +msgstr "En boy oranı" + +#: src/manipulation-gui/gui-resize.c:72 +msgid "Stretch" +msgstr "Genişlet" + +#: src/manipulation-gui/gui-resize.c:73 +msgid "Preserve" +msgstr "Koru" + +#: src/manipulation-gui/gui-resize.c:74 +msgid "Pad" +msgstr "Doldurma" + +#: src/manipulation-gui/gui-resize.c:80 +msgid "Padding color" +msgstr "Doldurma rengi" + +#: src/manipulation-gui/gui-resize.c:89 +msgid "Interpolation" +msgstr "Aradeğerleme" + +#: src/manipulation-gui/gui-resize.c:101 +msgid "Change resolution" +msgstr "Çözünürlüğü değiştir" + +#: src/manipulation-gui/gui-resize.c:106 +msgid "X axis" +msgstr "X ekseni" + +#: src/manipulation-gui/gui-resize.c:110 +msgid "Y axis" +msgstr "Y ekseni" + +#: src/manipulation-gui/gui-sharpblur.c:17 +msgid "More sharpen" +msgstr "Daha fazla Keskinleştir" + +#: src/manipulation-gui/gui-sharpblur.c:22 +msgid "More blurred" +msgstr "Daha fazla bulanıklaştır" + +#: src/manipulation-gui/gui-userdef.c:47 +msgid "" +"Choose a supported GIMP procedure from the list on the left\n" +"and define its parameters on the right." +msgstr "" +"Soldaki listeden desteklenen bir GIMP yordamı seçin \n" +"ve parametrelerini sağda tanımlayın." + +#: src/manipulation-gui/gui-userdef.c:59 +msgid "Search" +msgstr "Arama" + +#: src/manipulation-gui/gui-userdef.c:301 +msgid "" +"Can't save because\n" +"no procedure has been selected" +msgstr "" +"Hiçbir yordam \n" +"seçilmediği için kaydedilemiyor" + +#: src/manipulation-gui/gui-userdef.c:346 +msgid "Author" +msgstr "Yazar" + +#: src/manipulation-gui/gui-userdef.c:588 +msgid "This procedure takes no editable params" +msgstr "Bu yordam düzenlenebilir parametre almaz" + +#: src/manipulation-gui/gui-watermark.c:41 +msgid "Text watermark" +msgstr "Metin filigran" + +#: src/manipulation-gui/gui-watermark.c:56 +msgid "Font" +msgstr "Yazı tipi" + +#: src/manipulation-gui/gui-watermark.c:60 +msgid "Color" +msgstr "Renk" + +#: src/manipulation-gui/gui-watermark.c:66 +msgid "Image watermark" +msgstr "Görüntü fligranı" + +#: src/manipulation-gui/gui-watermark.c:72 +msgid "Select image" +msgstr "Görüntü seç" + +#: src/manipulation-gui/gui-watermark.c:74 +msgid "Adaptive size" +msgstr "Uyarlamalı boyut" + +#: src/manipulation-gui/gui-watermark.c:78 +#, c-format +msgid "% of" +msgstr "" + +#: src/manipulation-gui/gui-watermark.c:121 +msgid "Opacity" +msgstr "Matlık" + +#: src/manipulation-gui/gui-watermark.c:130 +msgid "Distance to edge" +msgstr "Kenara uzaklık" + +#: src/manipulation-gui/gui-watermark.c:134 +msgid "Position on the image" +msgstr "Görüntü üzerindeki konum" diff --git a/bimp-locale/zh/LC_MESSAGES/gimp20-plugin-bimp.mo b/bimp-locale/zh/LC_MESSAGES/gimp20-plugin-bimp.mo index c865709..5d86325 100644 Binary files a/bimp-locale/zh/LC_MESSAGES/gimp20-plugin-bimp.mo and b/bimp-locale/zh/LC_MESSAGES/gimp20-plugin-bimp.mo differ diff --git a/bimp-locale/zh/LC_MESSAGES/gimp20-plugin-bimp.po b/bimp-locale/zh/LC_MESSAGES/gimp20-plugin-bimp.po index b8eef83..e6c464b 100644 --- a/bimp-locale/zh/LC_MESSAGES/gimp20-plugin-bimp.po +++ b/bimp-locale/zh/LC_MESSAGES/gimp20-plugin-bimp.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: gimp-plugin-bimp\n" "POT-Creation-Date: 2015-09-20 15:30+0200\n" -"PO-Revision-Date: 2015-09-20 15:30+0200\n" +"PO-Revision-Date: 2020-01-21 08:22+0100\n" "Last-Translator: Alessandro Francesconi \n" "Language-Team: Alessandro Francesconi \n" "Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.4\n" +"X-Generator: Poedit 2.2.4\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop\n" "X-Poedit-Basepath: ../../../src\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -68,7 +68,7 @@ msgstr "小尺寸" #: manipulation-gui/gui-changeformat.c:123 msgid "DCT algorithm" -msgstr "DCT-算法" +msgstr "DCT 算法" #: manipulation-gui/gui-changeformat.c:127 msgid "Integer" @@ -97,7 +97,7 @@ msgstr "保存背景颜色" #: manipulation-gui/gui-changeformat.c:217 msgid "Save gamma" -msgstr "Save gamma" +msgstr "保存 gamma" #: manipulation-gui/gui-changeformat.c:218 msgid "Save layer offset" @@ -121,7 +121,7 @@ msgstr "从透明像素中保存颜色" #: manipulation-gui/gui-changeformat.c:270 msgid "RLE compression" -msgstr "RLE-压缩" +msgstr "RLE 压缩" #: manipulation-gui/gui-changeformat.c:273 msgid "Image origin" @@ -159,11 +159,11 @@ msgstr "JPEG" #: manipulation-gui/gui-changeformat.c:313 msgid "CCITT G3 Fax" -msgstr "CCITT G3传真" +msgstr "CCITT G3 传真" #: manipulation-gui/gui-changeformat.c:314 msgid "CCITT G4 Fax" -msgstr "CCITT G4传真" +msgstr "CCITT G4 传真" #: manipulation-gui/gui-changeformat.c:329 msgid "This format has no params" @@ -191,7 +191,7 @@ msgstr "根据配置文件调整颜色曲线" #: manipulation-gui/gui-color.c:47 msgid "Select GIMP Curve file" -msgstr "选择GIMP曲线文件" +msgstr "选择 GIMP 曲线文件" #: manipulation-gui/gui-crop.c:28 msgid "Crop to a standard aspect ratio" @@ -199,7 +199,7 @@ msgstr "裁剪成标准长宽比" #: manipulation-gui/gui-crop.c:54 msgid "Manual crop (pixel values)" -msgstr "手动裁剪(单位px)" +msgstr "手动裁剪(单位 px)" #: manipulation-gui/gui-crop.c:59 manipulation-gui/gui-resize.c:82 #: manipulation-gui/gui-watermark.c:80 @@ -233,11 +233,11 @@ msgstr "1:1" #: manipulation-gui/gui-crop.c:136 msgid "Classic 35 mm film" -msgstr "经典35毫米电影" +msgstr "经典 35 毫米电影" #: manipulation-gui/gui-crop.c:139 msgid "Standard VGA monitor" -msgstr "标准的VGA显示器" +msgstr "标准 VGA 显示器" #: manipulation-gui/gui-crop.c:142 msgid "Widescreen" @@ -304,7 +304,7 @@ msgstr "日期(JJJJ-MM-TT_hh-mm)" msgid "" "Can't save!\n" "'%s' or '%s' symbol must be present." -msgstr "参数 '%s'或'%s'符号必须为设定" +msgstr "参数 '%s' 或 '%s' 符号必须为设定" #: manipulation-gui/gui-rename.c:64 msgid "" @@ -354,11 +354,11 @@ msgstr "修改分辨率" #: manipulation-gui/gui-resize.c:107 msgid "X axis" -msgstr "X-轴" +msgstr "X 轴" #: manipulation-gui/gui-resize.c:111 msgid "Y axis" -msgstr "Y-轴" +msgstr "Y 轴" #: manipulation-gui/gui-sharpblur.c:17 msgid "More sharpen" @@ -373,8 +373,8 @@ msgid "" "Choose a supported GIMP procedure from the list on the left\n" "and define its parameters on the right." msgstr "" -"在左侧列表选择一个已安装的GIMP扩展\n" -"然后在右侧区域定义它的参数" +"在左侧列表选择一个受支持的 GIMP 指令\n" +"然后在右侧区域定义其参数" #: manipulation-gui/gui-userdef.c:61 msgid "Search" @@ -386,7 +386,7 @@ msgid "" "no procedure has been selected" msgstr "" "不能保存\n" -"因为没有选择插件进行操作" +"因为没有选择指令来操作" #: manipulation-gui/gui-userdef.c:351 msgid "Author" @@ -394,7 +394,7 @@ msgstr "作者" #: manipulation-gui/gui-userdef.c:603 msgid "This procedure takes no editable params" -msgstr "本程序不可编辑的参数" +msgstr "本指令没有可编辑的参数" #: manipulation-gui/gui-watermark.c:41 msgid "Text watermark" @@ -463,11 +463,11 @@ msgstr "底部居中" #: bimp-gui.c:130 bimp-gui.c:918 msgid "The manipulations set is empty!" -msgstr "操作队列为空!" +msgstr "操作队列为空!" #: bimp-gui.c:133 msgid "The file list is empty!" -msgstr "待处理图片列表为空!" +msgstr "待处理图片列表为空!" #: bimp-gui.c:163 msgid "Manipulation set" @@ -518,7 +518,7 @@ msgstr "不能读取目录 \"%s\" " msgid "" "Some images were not imported because they have not been saved on filesystem " "yet." -msgstr "一些图片没有被倒入,因为它们还没有被保存在磁盘上" +msgstr "一些图片没有被导入,因为它们还没有被保存" #: bimp-gui.c:474 msgid "Can't show a preview because the manipulations set is empty" @@ -574,7 +574,7 @@ msgstr "添加文件夹" #: bimp-gui.c:800 msgid "Add all opened images" -msgstr "添加在GIMP中打开的图像" +msgstr "添加在 GIMP 中打开的图像" #: bimp-gui.c:807 msgid "Remove selected" @@ -586,11 +586,11 @@ msgstr "清空全部图片" #: bimp-gui.c:854 msgid "Can't add another manipulation of this kind. Only one is permitted!" -msgstr "同类型的操作只能添加一个!" +msgstr "同类型的操作只能添加一个!" #: bimp-gui.c:945 bimp-gui.c:996 msgid "An error occured when importing a saved batch file :(" -msgstr "当导入一个batch文件时发生了一个错误 :(" +msgstr "当导入一个批处理文件时发生了一个错误 :(" #: bimp-gui.c:967 msgid "This will overwrite current manipulations set. Continue?" @@ -598,7 +598,7 @@ msgstr "这将会覆盖最近的操作设定, 继续吗?" #: bimp-gui.c:1035 bimp.c:66 msgid "Applies GIMP manipulations on groups of images" -msgstr "使用GIMP操作图片组" +msgstr "应用 GIMP 操作图片组" #: bimp-gui.c:1042 msgid "translator-name " @@ -638,7 +638,7 @@ msgstr "重命名" #: bimp-manipulations.c:303 msgid "Other GIMP procedure..." -msgstr "其它GIMP程序" +msgstr "其它 GIMP 指令" #: bimp-operate.c:177 #, c-format @@ -646,8 +646,8 @@ msgid "" "Can't save image \"%s\": input file has no extension.\n" "You can solve this error by adding a \"Change format or compression\" step" msgstr "" -"不能保存图像 \"%s\": 输入文件没又扩展\n" -"你可以通过添加'修改格式和质量'操作来解决这个问题" +"不能保存图像 \"%s\": 输入文件没有扩展名\n" +"你可以通过添加“修改格式和质量”操作来解决这个问题" #: bimp-operate.c:183 #, c-format @@ -655,8 +655,8 @@ msgid "" "GIMP can't save %s back to its original SVG format.\n" "You can solve this error by adding a \"Change format or compression\" step" msgstr "" -"GIMP不能保存%s为原始的SVG格式\n" -"你可以通过添加'修改格式和质量'操作来解决这个问题" +"GIMP 不能保存 %s 为原始的 SVG 格式\n" +"你可以通过添加“修改格式和质量”操作来解决这个问题" #: bimp-operate.c:189 #, c-format @@ -683,7 +683,7 @@ msgstr "总是应用这个设定" #: bimp-operate.c:1383 msgid "Overwrite?" -msgstr "覆盖?" +msgstr "是否覆盖?" #~ msgid "Set width only" #~ msgstr "只设置宽度" diff --git a/bin/win32/pcre3.dll b/bin/win32/pcre3.dll deleted file mode 100644 index b5fd2a6..0000000 Binary files a/bin/win32/pcre3.dll and /dev/null differ diff --git a/makewin.bat b/makewin.bat deleted file mode 100644 index 4cc7286..0000000 --- a/makewin.bat +++ /dev/null @@ -1,23 +0,0 @@ -@echo off - -set libdir=C:\dev -set gtk=gtk-dev -set gimp=gimp-dev -set pcre=pcre-dev - -set mingwdir=C:\dev\mingw -set gccdir=%mingwdir%\bin -set msysdir=%mingwdir%\msys\1.0\bin -set compPATH=%gccdir%;%msysdir%;%libdir%\%gimp%\bin;%libdir%\%gtk%\bin;%libdir%\%pcre%\bin; - -set PATH=%PATH%;%compPATH% -setlocal EnableDelayedExpansion - -set SOURCES= -for /r %%c in (src\*.c) DO call set "SOURCES=%%SOURCES%% %%c" -for /r %%c in (src\manipulation-gui\*.c) DO call set "SOURCES=%%SOURCES%% %%c" - -@echo on - -mkdir bin\win32 -%gccdir%\gcc.exe -o bin\win32\bimp.exe -Wall -O2 -Wno-unused-variable -Wno-pointer-sign -Wno-parentheses %SOURCES% -L%libdir%\%gtk%\lib -lgtk-win32-2.0 -lgdk-win32-2.0 -latk-1.0 -lgio-2.0 -lpangowin32-1.0 -lgdi32 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0 -lintl -L%libdir%\%gimp%\lib -L%libdir%\%pcre%\lib -lgimpui-2.0 -lgimpwidgets-2.0 -lgimpmodule-2.0 -lgimp-2.0 -lgimpmath-2.0 -lgimpconfig-2.0 -lgimpcolor-2.0 -lgimpbase-2.0 -lpcre -mms-bitfields -mwindows -m32 -I%libdir%\%gtk%\include\gtk-2.0 -I%libdir%\%gtk%\lib\gtk-2.0\include -I%libdir%\%gtk%\include\atk-1.0 -I%libdir%\%gtk%\include\cairo -I%libdir%\%gtk%\include\gdk-pixbuf-2.0 -I%libdir%\%gtk%\include\pango-1.0 -I%libdir%\%gtk%\include\glib-2.0 -I%libdir%\%gtk%\lib\glib-2.0\include -I%libdir%\%gtk%\include -I%libdir%\%gtk%\include\freetype2 -I%libdir%\%gtk%\include\libpng14 -I%libdir%\%gimp%\include\gimp-2.0 -I%libdir%\%pcre%\include -DGIMP_DISABLE_DEPRECATED diff --git a/nsis/win32_install.nsi b/nsis/win32_install.nsi index f75d3ec..2a4dc30 100644 --- a/nsis/win32_install.nsi +++ b/nsis/win32_install.nsi @@ -4,14 +4,20 @@ !include "MUI2.nsh" !include "nsDialogs.nsh" -Name "Batch Image Manipulation Plugin for GIMP" +!define APPNAME "Batch Image Manipulation Plugin for GIMP" +!define APPID "gimp-plugin-bimp" +!define APPVERSION "2.5" + +Name "${APPNAME}" OutFile "gimp-plugin-bimp_win32.exe" RequestExecutionLevel admin ShowInstDetails show Var GIMP_dir +Var GIMP_dir_usr210 Var GIMP_dir_usr28 Var GIMP_dir_usr26 +Var UNINSTDIR !define MUI_ICON "icon.ico" @@ -36,11 +42,19 @@ Page custom finishDialog FileWrite $0 "${Str}" !macroend -# Before start, check for GIMP installation existence (for both 32 and 64 machines) -Function .onInit - !insertmacro PRINT_SILENT_OUT "$\nBIMP. Batch Image Manipulation Plugin for GIMP.$\n" - - SetRegView 32 ; try on 32-bit +!macro VerifyUserIsAdmin +UserInfo::GetAccountType +pop $0 +${If} $0 != "admin" ;Require admin rights on NT4+ + messageBox mb_iconstop "Administrator rights required!" + setErrorLevel 740 ;ERROR_ELEVATION_REQUIRED + quit +${EndIf} +!macroend + +!macro FillGimpDir UN +Function ${UN}FillGimpDir + SetRegView 32 ; try on 32-bit ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\GIMP-2_is1" InstallLocation StrCmp $0 "" 0 GimpFound @@ -48,25 +62,47 @@ Function .onInit ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\GIMP-2_is1" InstallLocation StrCmp $0 "" 0 GimpFound - ; not found again, abort - MessageBox MB_OK|MB_ICONEXCLAMATION "GIMP installation was not found. Please install GIMP before running this installer." /SD IDOK - !insertmacro PRINT_SILENT_OUT "GIMP installation was not found. Please install GIMP before running this installer.$\n" + ; not found again, ask the user + MessageBox MB_OK|MB_ICONEXCLAMATION "The installer cannot find GIMP installation by itself. Please click OK and manually select the folder where GIMP is installed." /SD IDOK + + ; but if in Silent mode, abort everything + !insertmacro PRINT_SILENT_OUT "GIMP installation was not found. Please install GIMP before running this.$\n" + IfSilent 0 +2 Abort + + ; show the dialog + nsDialogs::SelectFolderDialog "Select GIMP directory, typically is $\"C:\Program Files\GIMP 2$\"" "C:\Program Files" + Pop $0 + ; check if user aborted it + StrCmp $0 "error" 0 GimpFound + Abort + + GimpFound: ; great! + StrCpy $GIMP_dir $0 +FunctionEnd +!macroend +!insertmacro FillGimpDir "" +!insertmacro FillGimpDir "un." + +# Before start, check for GIMP installation existence (for both 32 and 64 machines) +Function .onInit + !insertmacro PRINT_SILENT_OUT "$\nBIMP. Batch Image Manipulation Plugin for GIMP.$\n" - GimpFound: ; great! - StrCpy $GIMP_dir $0 - StrCpy $INSTDIR $GIMP_dir"lib\gimp\2.0\plug-ins" ; fill $INSTDIR with the plugin's directory + Call FillGimpDir + StrCpy $INSTDIR "$GIMP_dir\lib\gimp\2.0\plug-ins" ; fill $INSTDIR with the plugin's directory + StrCpy $UNINSTDIR "$GIMP_dir\etc\gimp\2.0" ; fill $UNINSTDIR with the plugin's uninstaller ; if $INSTDIR does not exists, don't let us continue IfFileExists $INSTDIR PathGood - MessageBox MB_OK|MB_ICONEXCLAMATION "Error: can't find folder $INSTDIR." /SD IDOK - !insertmacro PRINT_SILENT_OUT "Error: can't find folder $INSTDIR.$\n" + MessageBox MB_OK|MB_ICONEXCLAMATION "Error: invalid GIMP plugins folder $INSTDIR." /SD IDOK + !insertmacro PRINT_SILENT_OUT "Error: invalid GIMP plugins folder $INSTDIR.$\n" Abort PathGood: !insertmacro PRINT_SILENT_OUT "GIMP folder found in $INSTDIR.$\n" - StrCpy $GIMP_dir_usr28 $PROFILE\.gimp-2.8\plug-ins ; also fills the user's data folder (to remove old files) + StrCpy $GIMP_dir_usr210 $PROFILE\.gimp-2.10\plug-ins ; also fills the user's data folder (to remove old files) + StrCpy $GIMP_dir_usr28 $PROFILE\.gimp-2.8\plug-ins ; do the same for GIMP 2.8 StrCpy $GIMP_dir_usr26 $PROFILE\.gimp-2.6\plug-ins ; do the same for GIMP 2.6 InitPluginsDir @@ -99,11 +135,19 @@ FunctionEnd Section "Remove old files" SecRemOld !insertmacro PRINT_SILENT_OUT "Cleaning up old files...$\n" + Delete $GIMP_dir_usr210\bimp.exe + Delete $GIMP_dir_usr210\bimp-uninstall.exe Delete $GIMP_dir_usr28\bimp.exe + Delete $GIMP_dir_usr28\bimp-uninstall.exe Delete $GIMP_dir_usr26\bimp.exe + Delete $GIMP_dir_usr26\bimp-uninstall.exe + Delete $INSTDIR\bimp.exe + Delete $INSTDIR\bimp-uninstall.exe + RMDir /r $GIMP_dir_usr210\bimp-locale RMDir /r $GIMP_dir_usr28\bimp-locale RMDir /r $GIMP_dir_usr26\bimp-locale + RMDir /r $INSTDIR\bimp-locale SectionEnd # This step will copy the necessary files on GIMP's plugin folder ($INSTDIR) @@ -114,14 +158,49 @@ Section "File copy" SecInstall File ..\bin\win32\bimp.exe File /r /x *.po ..\bimp-locale + + # create uninstaller + WriteUninstaller "$UNINSTDIR\bimp-uninstall.exe" + + # Registry information for add/remove programs + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPID}" "DisplayName" "${APPNAME}" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPID}" "UninstallString" "$\"$UNINSTDIR\bimp-uninstall.exe$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPID}" "QuietUninstallString" "$\"$UNINSTDIR\bimp-uninstall.exe /S$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPID}" "InstallLocation" "$\"$INSTDIR$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPID}" "Publisher" "Alessandro Francesconi" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPID}" "HelpLink" "http://www.alessandrofrancesconi.it/projects/bimp" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPID}" "URLInfoAbout" "http://www.alessandrofrancesconi.it/projects/bimp" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPID}" "DisplayVersion" "${APPVERSION}" + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPID}" "NoModify" 1 + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPID}" "NoRepair" 1 + SectionEnd -# BIMP needs pcre3 DLL to be registered on the system -Section "Register DLLs" SecRegisterDLL - !insertmacro PRINT_SILENT_OUT "Registering pcre3...$\n" +# Uninstaller - SetOutPath "$WINDIR\System32" - File ..\bin\win32\pcre3.dll - - ExecWait "regsvr32.exe /s $WINDIR\System32\pcre3.dll" +Function un.onInit + SetShellVarContext all + + # verify the uninstaller - last chance to back out + MessageBox MB_OKCANCEL "Remove ${APPNAME}?" /SD IDOK IDOK next + Abort + next: + !insertmacro VerifyUserIsAdmin +FunctionEnd + +Section "uninstall" + + Call un.FillGimpDir + StrCpy $INSTDIR "$GIMP_dir\lib\gimp\2.0\plug-ins" ; fill $INSTDIR with the plugin's directory + StrCpy $UNINSTDIR "$GIMP_dir\etc\gimp\2.0" ; fill $UNINSTDIR with the plugin's uninstaller + + # Remove files + Delete $INSTDIR\bimp.exe + RMDir /r $INSTDIR\bimp-locale + + # Always delete uninstaller as the last action + Delete $UNINSTDIR\bimp-uninstall.exe + + # Remove uninstaller information from the registry + DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPID}" SectionEnd diff --git a/src/bimp-gui.c b/src/bimp-gui.c index 88c6636..98b1c4e 100644 --- a/src/bimp-gui.c +++ b/src/bimp-gui.c @@ -15,7 +15,6 @@ #include "bimp-manipulations-gui.h" #include "bimp-operate.h" #include "bimp-serialize.h" -#include "bimp-icons.h" #include "bimp-utils.h" #include "plugin-intl.h" @@ -34,6 +33,7 @@ static void remove_all_input_files(GtkWidget*, gpointer); static void select_filename (GtkTreeView*, gpointer); static void update_selection(char*); static void show_preview(GtkTreeView*, gpointer); +static char* get_outputfolder_name(); static void open_outputfolder_chooser(GtkWidget*, gpointer); static void set_source_output_folder(GtkWidget*, gpointer); static void popmenus_init(void); @@ -55,18 +55,20 @@ static void progressbar_end_hidden (gpointer); static void progressbar_settext_hidden (const gchar*, gpointer); static void progressbar_setvalue_hidden (double, gpointer); -GtkWidget *panel_sequence, *panel_options; -GtkWidget *hbox_sequence; -GtkWidget *scroll_sequence; -GtkWidget *popmenu_add, *popmenu_edit, *popmenu_addfiles, *popmenu_removefiles; -GtkWidget *check_keepfolderhierarchy, *check_deleteondone, *check_keepdates; -GtkWidget *treeview_files; -GtkWidget *button_preview, *button_outfolder, *button_samefolder; -GtkWidget* progressbar_visible; +GtkWidget* bimp_window_main; -char* selected_source_folder; -char* last_input_location; -const gchar* progressbar_data; +static GtkWidget *panel_sequence, *panel_options; +static GtkWidget *hbox_sequence; +static GtkWidget *scroll_sequence; +static GtkWidget *popmenu_add, *popmenu_edit, *popmenu_addfiles, *popmenu_removefiles; +static GtkWidget *check_keepfolderhierarchy, *check_deleteondone, *check_keepdates; +static GtkWidget *treeview_files; +static GtkWidget *button_preview, *button_outfolder, *button_samefolder; +static GtkWidget* progressbar_visible; + +static char* selected_source_folder; +static char* last_input_location; +static const gchar* progressbar_data; enum /* TreeView stuff... */ { @@ -74,10 +76,10 @@ enum /* TreeView stuff... */ N_COLUMNS }; -manipulation clicked_man; /* temporary manipulation, selected by clicking on panel_seq buttons */ +static manipulation clicked_man; /* temporary manipulation, selected by clicking on panel_seq buttons */ void bimp_show_gui() -{ +{ GtkWidget* vbox_main; gimp_ui_init (PLUG_IN_BINARY, FALSE); @@ -96,9 +98,8 @@ void bimp_show_gui() ); gimp_window_set_transient (GTK_WINDOW(bimp_window_main)); - gtk_widget_set_size_request (bimp_window_main, MAIN_WINDOW_W, MAIN_WINDOW_H); - gtk_window_set_resizable (GTK_WINDOW(bimp_window_main), FALSE); gtk_window_set_position(GTK_WINDOW(bimp_window_main), GTK_WIN_POS_CENTER); + gtk_window_set_default_size(GTK_WINDOW(bimp_window_main), (int)(PREVIEW_IMG_W * 2.5), SEQ_BUTTON_H + PREVIEW_IMG_H + 160); gtk_container_set_border_width(GTK_CONTAINER(bimp_window_main), 5); // Forces the visualization of label AND images on buttons (especially for Windows) @@ -110,11 +111,11 @@ void bimp_show_gui() panel_options = option_panel_new(); progressbar_visible = gtk_progress_bar_new(); - gtk_widget_set_size_request (progressbar_visible, PROGRESSBAR_W, PROGRESSBAR_H); + gtk_progress_bar_set_text(GTK_PROGRESS_BAR(progressbar_visible), " "); progressbar_data = progressbar_init_hidden(); gtk_box_pack_start(GTK_BOX(vbox_main), panel_sequence, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_main), panel_options, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(vbox_main), panel_options, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(vbox_main), progressbar_visible, FALSE, FALSE, 0); gtk_container_add (GTK_CONTAINER (GTK_DIALOG(bimp_window_main)->vbox), vbox_main); @@ -161,7 +162,6 @@ static GtkWidget* sequence_panel_new() GtkWidget *panel; panel = gtk_frame_new(_("Manipulation set")); - gtk_widget_set_size_request (panel, SEQ_PANEL_W, SEQ_PANEL_H); scroll_sequence = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll_sequence), GTK_POLICY_AUTOMATIC, GTK_POLICY_NEVER); @@ -181,9 +181,7 @@ static GtkWidget* sequence_panel_new() /* builds and returns the panel with file list and options */ static GtkWidget* option_panel_new() { - GtkWidget *panel, *hbox; - GtkWidget *hbox_buttons; - GtkWidget *vbox_input; + GtkWidget *panel, *table; GtkWidget *scroll_input; GtkWidget *button_add, *button_remove; @@ -191,53 +189,39 @@ static GtkWidget* option_panel_new() GtkWidget *label_chooser; panel = gtk_frame_new(_("Input files and options")); - gtk_widget_set_size_request (panel, OPTION_PANEL_W, OPTION_PANEL_H); - hbox = gtk_hbox_new(FALSE, 5); - - /* Sub-panel for input file listing and buttons */ - vbox_input = gtk_vbox_new(FALSE, 1); - gtk_widget_set_size_request(vbox_input, INPUT_PANEL_W, INPUT_PANEL_H); + table = gtk_table_new(2, 3, FALSE); + gtk_table_set_row_spacings(GTK_TABLE(table), 5); + gtk_table_set_col_spacings(GTK_TABLE(table), 5); /* Sub-sub-panel for input file listing */ scroll_input = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll_input), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); - gtk_widget_set_size_request(scroll_input, FILE_LIST_PANEL_W, FILE_LIST_PANEL_H); treeview_files = gtk_tree_view_new(); gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(treeview_files), FALSE); gtk_tree_selection_set_mode (gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview_files)), GTK_SELECTION_MULTIPLE); - /* Sub-panel for input file buttons */ - - hbox_buttons = gtk_hbox_new(FALSE, 1); - gtk_widget_set_size_request(hbox_buttons, FILE_LIST_BUTTONS_PANEL_W, FILE_LIST_BUTTONS_PANEL_H); - button_add = gtk_button_new_with_label(_("Add images")); - gtk_widget_set_size_request(button_add, FILE_LIST_BUTTON_W, FILE_LIST_BUTTON_H); button_remove = gtk_button_new_with_label(_("Remove images")); - gtk_widget_set_size_request(button_remove, FILE_LIST_BUTTON_W, FILE_LIST_BUTTON_H); /* Sub-panel for options */ vbox_useroptions = gtk_vbox_new(FALSE, 3); - gtk_widget_set_size_request(vbox_useroptions, USEROPTIONS_PANEL_W, USEROPTIONS_PANEL_H); hbox_outfolder = gtk_hbox_new(FALSE, 3); - label_chooser = gtk_label_new(_("Output folder")); + label_chooser = gtk_label_new(g_strconcat(_("Output folder"), ":", NULL)); + gtk_misc_set_alignment(GTK_MISC(label_chooser), 0, .5); bimp_output_folder = get_user_dir(); - char* last_folder = g_strrstr(bimp_output_folder, FILE_SEPARATOR_STR) + 1; - if (last_folder == NULL || strlen(last_folder) == 0) last_folder = bimp_output_folder; - button_outfolder = gtk_button_new_with_label(last_folder); + + button_outfolder = gtk_button_new_with_label(get_outputfolder_name()); gtk_widget_set_tooltip_text (button_outfolder, bimp_output_folder); - gtk_widget_set_size_request(button_outfolder, 175, 30); button_samefolder = gtk_button_new(); GtkWidget* samefolder_icon = gtk_image_new_from_stock(GTK_STOCK_UNDO, GTK_ICON_SIZE_BUTTON); gtk_button_set_image(GTK_BUTTON(button_samefolder), samefolder_icon); gtk_widget_set_tooltip_text (button_samefolder, _("Use the selected file's location as the output")); - gtk_widget_set_size_request(button_samefolder, 30, 30); bimp_opt_alertoverwrite = BIMP_ASK_OVERWRITE; //check_alertoverwrite = gtk_check_button_new_with_label(_("Alert when overwriting existing files")); @@ -257,34 +241,32 @@ static GtkWidget* option_panel_new() gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_keepdates), bimp_opt_keepdates); button_preview = gtk_button_new(); - gtk_widget_set_size_request(button_preview, FILE_PREVIEW_W, FILE_PREVIEW_H); gtk_button_set_image_position (GTK_BUTTON(button_preview), GTK_POS_TOP); gtk_button_set_label(GTK_BUTTON(button_preview), _("Click for preview")); /* All together */ - gtk_box_pack_start(GTK_BOX(hbox_buttons), button_add, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_buttons), button_remove, FALSE, FALSE, 0); gtk_container_add (GTK_CONTAINER(scroll_input), treeview_files); - - gtk_box_pack_start(GTK_BOX(vbox_input), scroll_input, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_input), hbox_buttons, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_outfolder), label_chooser, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(vbox_useroptions), label_chooser, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_outfolder), button_outfolder, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox_outfolder), button_samefolder, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_useroptions), hbox_outfolder, FALSE, FALSE, 0); + //gtk_box_pack_start(GTK_BOX(vbox_useroptions), check_alertoverwrite, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox_useroptions), check_keepfolderhierarchy, FALSE, FALSE, 0); // TODO: delete on done? gtk_box_pack_start(GTK_BOX(vbox_useroptions), check_deleteondone, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox_useroptions), check_keepdates, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox_useroptions), button_preview, FALSE, FALSE, 2); - gtk_box_pack_start(GTK_BOX(hbox), vbox_input, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox), vbox_useroptions, FALSE, FALSE, 10); + gtk_table_attach_defaults(GTK_TABLE(table), scroll_input, 0, 2, 0, 1); + gtk_table_attach(GTK_TABLE(table), button_add, 0, 1, 1, 2, GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0); + gtk_table_attach(GTK_TABLE(table), button_remove, 1, 2, 1, 2, GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0); - gtk_container_add(GTK_CONTAINER(panel), hbox); + gtk_table_attach(GTK_TABLE(table), vbox_useroptions, 2, 3, 0, 2, GTK_FILL, GTK_FILL | GTK_EXPAND, 0, 0); + + gtk_container_add(GTK_CONTAINER(panel), table); g_signal_connect(G_OBJECT(button_add), "clicked", G_CALLBACK(open_addfiles_popupmenu), NULL); g_signal_connect(G_OBJECT(button_remove), "clicked", G_CALLBACK(open_removefiles_popupmenu), NULL); @@ -317,7 +299,7 @@ static void add_input_folder_r(char* folder, gboolean with_subdirs) dp = g_dir_open (folder, 0, NULL); if (dp != NULL) { - while (entry = g_dir_read_name (dp)) { + while ((entry = g_dir_read_name (dp))) { char* filename = g_strconcat(folder, FILE_SEPARATOR_STR, entry, NULL); char* file_extension = g_strdup(strrchr(filename, '.')); @@ -338,11 +320,20 @@ static void add_input_folder_r(char* folder, gboolean with_subdirs) g_ascii_strcasecmp(file_extension, ".jpeg") == 0 || g_ascii_strcasecmp(file_extension, ".jpg") == 0 || g_ascii_strcasecmp(file_extension, ".jpe") == 0 || + g_ascii_strcasecmp(file_extension, ".jp2") == 0 || g_ascii_strcasecmp(file_extension, ".gif") == 0 || + g_ascii_strcasecmp(file_extension, ".heif") == 0 || + g_ascii_strcasecmp(file_extension, ".heic") == 0 || g_ascii_strcasecmp(file_extension, ".png") == 0 || g_ascii_strcasecmp(file_extension, ".tif") == 0 || g_ascii_strcasecmp(file_extension, ".tiff") == 0 || + g_ascii_strcasecmp(file_extension, ".tga") == 0 || g_ascii_strcasecmp(file_extension, ".svg") == 0 || + g_ascii_strcasecmp(file_extension, ".webp") == 0 || + g_ascii_strcasecmp(file_extension, ".avif") == 0 || + g_ascii_strcasecmp(file_extension, ".xpm") == 0 || + g_ascii_strcasecmp(file_extension, ".exr") == 0 || + g_ascii_strcasecmp(file_extension, ".dds") == 0 || g_ascii_strcasecmp(file_extension, ".xcf") == 0) && g_slist_find_custom(bimp_input_filenames, filename, (GCompareFunc)strcmp) == NULL) { @@ -474,7 +465,7 @@ static void show_preview (GtkTreeView *tree_view, gpointer data) bimp_show_error_dialog(_("Can't show a preview because the manipulations set is empty"), bimp_window_main); } else { GtkWidget *dialog_preview; - GtkWidget *vbox, *hbox; + GtkWidget *vbox, *hbox, *align; GtkWidget *label_descr; GdkPixbuf *pixbuf_orig, *pixbuf_final; GtkWidget *image_orig, *image_final; @@ -505,13 +496,17 @@ static void show_preview (GtkTreeView *tree_view, gpointer data) GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, NULL ); - gtk_widget_set_size_request (dialog_preview, PREVIEW_WINDOW_W, PREVIEW_WINDOW_H); + //gtk_widget_set_size_request (dialog_preview, PREVIEW_WINDOW_W, PREVIEW_WINDOW_H); gtk_window_set_resizable (GTK_WINDOW(dialog_preview), FALSE); gtk_window_set_position(GTK_WINDOW(dialog_preview), GTK_WIN_POS_CENTER); gtk_container_set_border_width(GTK_CONTAINER(dialog_preview), 5); vbox = gtk_vbox_new(FALSE, 10); label_descr = gtk_label_new(_("This is how the selected image will look like after the batch process")); + gtk_label_set_line_wrap (GTK_LABEL(label_descr), TRUE); + gtk_label_set_justify(GTK_LABEL(label_descr), GTK_JUSTIFY_CENTER); + + align = gtk_alignment_new(0.5, 0.5, 0, 0); hbox = gtk_hbox_new(FALSE, 10); image_orig = gtk_image_new_from_pixbuf(pixbuf_orig); @@ -521,9 +516,11 @@ static void show_preview (GtkTreeView *tree_view, gpointer data) gtk_box_pack_start(GTK_BOX(hbox), image_orig, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox), image_forward, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox), image_final, FALSE, FALSE, 0); + gtk_misc_set_alignment(GTK_MISC(hbox), 0, .5); gtk_box_pack_start(GTK_BOX(vbox), label_descr, FALSE, FALSE, 7); - gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); + gtk_container_add(GTK_CONTAINER(align), hbox); + gtk_box_pack_start(GTK_BOX(vbox), align, FALSE, FALSE, 0); gtk_container_add (GTK_CONTAINER (GTK_DIALOG(dialog_preview)->vbox), vbox); gtk_widget_show_all(dialog_preview); @@ -597,7 +594,7 @@ static void open_file_chooser(GtkWidget *widget, gpointer data) { GSList *selection; - GtkFileFilter *filter_all, *supported[7]; + GtkFileFilter *filter_all, *supported[16]; GtkWidget* file_chooser = gtk_file_chooser_dialog_new( _("Select images"), @@ -616,46 +613,92 @@ static void open_file_chooser(GtkWidget *widget, gpointer data) gtk_file_filter_set_name(supported[0], "Bitmap (*.bmp)"); gtk_file_filter_add_pattern (supported[0], "*.[bB][mM][pP]"); gtk_file_filter_add_pattern (filter_all, "*.[bB][mM][pP]"); - + supported[1] = gtk_file_filter_new(); - gtk_file_filter_set_name(supported[1], "JPEG (*.jpg, *.jpeg, *jpe)"); - gtk_file_filter_add_pattern (supported[1], "*.[jJ][pP][gG]"); - gtk_file_filter_add_pattern (supported[1], "*.[jJ][pP][eE][gG]"); - gtk_file_filter_add_pattern (supported[1], "*.[jJ][pP][eE]"); + gtk_file_filter_set_name(supported[1], "DDS (*.dds)"); + gtk_file_filter_add_pattern (supported[1], "*.[dD][dD][sS]"); + gtk_file_filter_add_pattern (filter_all, "*.[dD][dD][sS]"); + + supported[2] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[2], "JPEG (*.jpg, *.jpeg, *jpe)"); + gtk_file_filter_add_pattern (supported[2], "*.[jJ][pP][gG]"); + gtk_file_filter_add_pattern (supported[2], "*.[jJ][pP][eE][gG]"); + gtk_file_filter_add_pattern (supported[2], "*.[jJ][pP][eE]"); gtk_file_filter_add_pattern (filter_all, "*.[jJ][pP][gG]"); gtk_file_filter_add_pattern (filter_all, "*.[jJ][pP][eE][gG]"); gtk_file_filter_add_pattern (filter_all, "*.[jJ][pP][eE]"); - supported[2] = gtk_file_filter_new(); - gtk_file_filter_set_name(supported[2], "GIF (*.gif)"); - gtk_file_filter_add_pattern (supported[2], "*.[gG][iI][fF]"); + supported[3] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[3], "JPEG2000 (*.jp2)"); + gtk_file_filter_add_pattern (supported[3], "*.[jJ][pP][2]"); + + supported[4] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[4], "GIF (*.gif)"); + gtk_file_filter_add_pattern (supported[4], "*.[gG][iI][fF]"); gtk_file_filter_add_pattern (filter_all, "*.[gG][iI][fF]"); - supported[3] = gtk_file_filter_new(); - gtk_file_filter_set_name(supported[3], "PNG (*.png)"); - gtk_file_filter_add_pattern (supported[3], "*.[pP][nN][gG]"); + supported[5] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[5], "PNG (*.png)"); + gtk_file_filter_add_pattern (supported[5], "*.[pP][nN][gG]"); gtk_file_filter_add_pattern (filter_all, "*.[pP][nN][gG]"); - supported[4] = gtk_file_filter_new(); - gtk_file_filter_set_name(supported[4], "Scalable Vector Graphics (*.svg)"); - gtk_file_filter_add_pattern (supported[4], "*.[sS][vV][gG]"); + supported[6] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[6], "HEIF/HEIC (*.heif, *.heic)"); + gtk_file_filter_add_pattern (supported[6], "*.[hH][eE][iI][fF]"); + gtk_file_filter_add_pattern (supported[6], "*.[hH][eE][iI][cC]"); + gtk_file_filter_add_pattern (filter_all, "*.[hH][eE][iI][fF]"); + gtk_file_filter_add_pattern (filter_all, "*.[hH][eE][iI][cC]"); + + supported[7] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[7], "Icon (*.ico)"); + gtk_file_filter_add_pattern (supported[7], "*.[iI][cC][oO]"); + gtk_file_filter_add_pattern (filter_all, "*.[iI][cC][oO]"); + + supported[8] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[8], "Scalable Vector Graphics (*.svg)"); + gtk_file_filter_add_pattern (supported[8], "*.[sS][vV][gG]"); gtk_file_filter_add_pattern (filter_all, "*.[sS][vV][gG]"); - supported[5] = gtk_file_filter_new(); - gtk_file_filter_set_name(supported[5], "TIFF (*tif, *.tiff)"); - gtk_file_filter_add_pattern (supported[5], "*.[tT][iI][fF][fF]"); - gtk_file_filter_add_pattern (supported[5], "*.[tT][iI][fF]"); + supported[9] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[9], "TIFF (*tif, *.tiff)"); + gtk_file_filter_add_pattern (supported[9], "*.[tT][iI][fF][fF]"); + gtk_file_filter_add_pattern (supported[9], "*.[tT][iI][fF]"); gtk_file_filter_add_pattern (filter_all, "*.[tT][iI][fF][fF]"); gtk_file_filter_add_pattern (filter_all, "*.[tT][iI][fF]"); + + supported[10] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[10], "Targa (*.tga)"); + gtk_file_filter_add_pattern (supported[10], "*.[tT][gG][aA]"); + gtk_file_filter_add_pattern (filter_all, "*.[tT][gG][aA]"); - supported[6] = gtk_file_filter_new(); - gtk_file_filter_set_name(supported[6], "GIMP XCF (*.xcf)"); - gtk_file_filter_add_pattern (supported[6], "*.[xX][cC][fF]"); + supported[11] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[11], "WebP (*.webp)"); + gtk_file_filter_add_pattern (supported[11], "*.[wW][eE][bB][pP]"); + gtk_file_filter_add_pattern (filter_all, "*.[wW][eE][bB][pP]"); + + supported[12] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[12], "AVIF (*.avif)"); + gtk_file_filter_add_pattern (supported[12], "*.[aA][vV][iI][fF]"); + gtk_file_filter_add_pattern (filter_all, "*.[aA][vV][iI][fF]"); + + supported[13] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[13], "XPM (*.xpm)"); + gtk_file_filter_add_pattern (supported[13], "*.[xX][pP][mM]"); + gtk_file_filter_add_pattern (filter_all, "*.[xX][pP][mM]"); + + supported[14] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[14], "OpenEXR (*.exr)"); + gtk_file_filter_add_pattern (supported[14], "*.[eE][xX][rR]"); + gtk_file_filter_add_pattern (filter_all, "*.[eE][xX][rR]"); + + supported[15] = gtk_file_filter_new(); + gtk_file_filter_set_name(supported[15], "GIMP XCF (*.xcf)"); + gtk_file_filter_add_pattern (supported[15], "*.[xX][cC][fF]"); gtk_file_filter_add_pattern (filter_all, "*.[xX][cC][fF]"); gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(file_chooser), filter_all); - int i; - for(i = 0; i < 7; i++) { + size_t i; + for(i = 0; i < 16; i++) { gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(file_chooser), supported[i]); } @@ -706,6 +749,23 @@ static void open_folder_chooser(GtkWidget *widget, gpointer data) gtk_widget_destroy (folder_chooser); } +static char* get_outputfolder_name() +{ + char* last_folder = g_strrstr(bimp_output_folder, FILE_SEPARATOR_STR) + 1; + if (last_folder == NULL || strlen(last_folder) == 0) last_folder = bimp_output_folder; + char *folder_name = malloc(25); + if (strlen(last_folder) > 24) { + char *folder_name = malloc(25); + memcpy(folder_name, last_folder, 21); + folder_name[21] = folder_name[22] = folder_name[23] = '.'; + folder_name[24] = '\0'; + return folder_name; + } + else { + return last_folder; + } +} + static void open_outputfolder_chooser(GtkWidget *widget, gpointer data) { GtkWidget* chooser = gtk_file_chooser_dialog_new( @@ -721,9 +781,7 @@ static void open_outputfolder_chooser(GtkWidget *widget, gpointer data) if (gtk_dialog_run (GTK_DIALOG(chooser)) == GTK_RESPONSE_ACCEPT) { bimp_output_folder = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(chooser))->data; - char* last_folder = g_strrstr(bimp_output_folder, FILE_SEPARATOR_STR) + 1; - if (last_folder == NULL || strlen(last_folder) == 0) last_folder = bimp_output_folder; - gtk_button_set_label(GTK_BUTTON(button_outfolder), last_folder); + gtk_button_set_label(GTK_BUTTON(button_outfolder), get_outputfolder_name()); gtk_widget_set_tooltip_text(button_outfolder, bimp_output_folder); } @@ -734,10 +792,7 @@ static void open_outputfolder_chooser(GtkWidget *widget, gpointer data) static void set_source_output_folder(GtkWidget *widget, gpointer data) { if (selected_source_folder != NULL) { - char* last_folder = g_strrstr(selected_source_folder, FILE_SEPARATOR_STR) + 1; - if (last_folder == NULL || strlen(last_folder) == 0) last_folder = selected_source_folder; - - gtk_button_set_label(GTK_BUTTON(button_outfolder), last_folder); + gtk_button_set_label(GTK_BUTTON(button_outfolder), get_outputfolder_name()); gtk_widget_set_tooltip_text(button_outfolder, selected_source_folder); bimp_output_folder = g_strdup(selected_source_folder); } @@ -905,7 +960,7 @@ static void add_manipulation_button(manipulation man) GtkWidget* button; button = gtk_button_new(); - gtk_button_set_image(GTK_BUTTON(button), gtk_image_new_from_pixbuf(gdk_pixbuf_from_pixdata(man->icon, TRUE, NULL))); + gtk_button_set_image(GTK_BUTTON(button), image_new_from_resource(man->icon)); gtk_button_set_image_position(GTK_BUTTON(button), GTK_POS_TOP); gtk_widget_set_size_request(button, SEQ_BUTTON_W, SEQ_BUTTON_H); gtk_box_pack_start(GTK_BOX(hbox_sequence), button, FALSE, FALSE, 3); @@ -942,7 +997,7 @@ static void save_set(GtkMenuItem *menuitem, gpointer user_data) gtk_widget_destroy (file_saver); if (!bimp_serialize_to_file(output_file)) { - bimp_show_error_dialog(_("An error occured when importing a saved batch file :("), bimp_window_main); + bimp_show_error_dialog(_("An error occurred when importing a saved batch file :("), bimp_window_main); } return; @@ -993,7 +1048,7 @@ static void load_set(GtkMenuItem *menuitem, gpointer user_data) gtk_widget_destroy (file_loader); if (!bimp_deserialize_from_file(input_file)) { - bimp_show_error_dialog(_("An error occured when importing a saved batch file :("), bimp_window_main); + bimp_show_error_dialog(_("An error occurred when importing a saved batch file :("), bimp_window_main); } else { bimp_refresh_sequence_panel(); @@ -1009,10 +1064,8 @@ static void load_set(GtkMenuItem *menuitem, gpointer user_data) static void open_about() { const gchar *auth[] = { - "Alessandro Francesconi ", - "Thomas Mevel ", - "Walt9Z ", - "KHam0425 ", + "Alessandro Francesconi ", + "GitHub contributors ", NULL }; const gchar *license = "This program is free software; you can redistribute it and/or modify " @@ -1033,7 +1086,7 @@ static void open_about() "program-name", PLUG_IN_FULLNAME, "version", PLUG_IN_VERSION, "comments", _("Applies GIMP manipulations on groups of images"), - "logo", gdk_pixbuf_from_pixdata(&pixdata_bimpicon, FALSE, NULL), + "logo", pixbuf_new_from_resource("/gimp/plugin/bimp/icons/bimp-icon.png"), "copyright", PLUG_IN_COPYRIGHT, "license", license, "wrap-license", TRUE, @@ -1052,6 +1105,7 @@ void bimp_show_error_dialog(char* message, GtkWidget* parent) GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, + "%s", message ); gtk_dialog_run(GTK_DIALOG(dialog)); @@ -1082,6 +1136,9 @@ void bimp_progress_bar_set(double fraction, char* text) { if (text != NULL) { gtk_progress_bar_set_text(GTK_PROGRESS_BAR(progressbar_visible), text); } + else { + gtk_progress_bar_set_text(GTK_PROGRESS_BAR(progressbar_visible), " "); + } } void bimp_set_busy(gboolean busy) { @@ -1123,4 +1180,4 @@ void bimp_set_busy(gboolean busy) { gtk_widget_set_sensitive(panel_sequence, !busy); gtk_widget_set_sensitive(panel_options, !busy); -} \ No newline at end of file +} diff --git a/src/bimp-gui.h b/src/bimp-gui.h index 4cea569..5dc82b0 100644 --- a/src/bimp-gui.h +++ b/src/bimp-gui.h @@ -3,48 +3,15 @@ #include -#define MAIN_WINDOW_W 660 -#define MAIN_WINDOW_H 470 - -#define PROGRESSBAR_W MAIN_WINDOW_W - 30 -#define PROGRESSBAR_H 20 - /* Sequence panel (and children) dimensions */ -#define SEQ_PANEL_W MAIN_WINDOW_W - 30 -#define SEQ_PANEL_H 120 - #define SEQ_BUTTON_W 100 -#define SEQ_BUTTON_H SEQ_PANEL_H - 70 +#define SEQ_BUTTON_H 100 /* Option panel (and children) dimensions */ -#define OPTION_PANEL_W MAIN_WINDOW_W - 30 -#define OPTION_PANEL_H MAIN_WINDOW_H - SEQ_PANEL_H - PROGRESSBAR_H - 80 - -#define INPUT_PANEL_W 350 -#define INPUT_PANEL_H OPTION_PANEL_H - 30 - -#define USEROPTIONS_PANEL_W OPTION_PANEL_W - INPUT_PANEL_W - 10 -#define USEROPTIONS_PANEL_H OPTION_PANEL_H - 10 - -#define USEROPTIONS_CHOOSER_W USEROPTIONS_PANEL_W - 40 -#define USEROPTIONS_CHOOSER_H 40 - #define FILE_PREVIEW_W 150 #define FILE_PREVIEW_H 130 -#define FILE_LIST_PANEL_W INPUT_PANEL_W -#define FILE_LIST_PANEL_H 200 - -#define FILE_LIST_BUTTONS_PANEL_W FILE_LIST_PANEL_W -#define FILE_LIST_BUTTONS_PANEL_H 30 - -#define FILE_LIST_BUTTON_W FILE_LIST_BUTTONS_PANEL_W / 2 -#define FILE_LIST_BUTTON_H FILE_LIST_BUTTONS_PANEL_H - -#define PREVIEW_WINDOW_W 600 -#define PREVIEW_WINDOW_H 320 - -#define PREVIEW_IMG_W (PREVIEW_WINDOW_W / 2) - 30 +#define PREVIEW_IMG_W 270 #define PREVIEW_IMG_H 220 void bimp_show_gui(void); @@ -54,6 +21,6 @@ void bimp_progress_bar_set(double, char*); void bimp_show_error_dialog(char*, GtkWidget*); void bimp_set_busy(gboolean); -GtkWidget* bimp_window_main; +extern GtkWidget* bimp_window_main; #endif diff --git a/src/bimp-icons.h b/src/bimp-icons.h deleted file mode 100644 index f2a4d4c..0000000 --- a/src/bimp-icons.h +++ /dev/null @@ -1,2063 +0,0 @@ -/* GdkPixbuf RGBA C-Source images dumps 1-byte-run-length-encoded - * Encoded with gdk-pixbuf-csource */ - -#ifndef __BIMP_ICONS_H__ -#define __BIMP_ICONS_H__ - -#include - -static GdkPixdata pixdata_bimpicon = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 16838, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 384, /* rowstride */ - 96, /* width */ - 96, /* height */ - /* pixel_data: */ - "\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0" - "\0\0\330\0\0\0\0\2\0\0\0\1\0\0\0\2\336\0\0\0\0\2\4\4\4\236\14\14\14V" - "\335\0\0\0\0\4\30\32\33J!$&\377\5\6\6\332\0\0\0'\334\0\0\0\0\4\0\0\0" - "\341\17\17\17\376(./\377\0\0\0""5\266\0\0\0\0\1\0\0\0'\244\0\0\0\0\5" - "\0\0\0A\6\7\7\37700,\376\13\14\15\377\0\0\0S\266\0\0\0\0\1\0\0\0\240" - "\244\0\0\0\0\5\13\14\14\331\27\30\27\376\35\31\26\376\0\0\1\377\11\13" - "\12w\266\0\0\0\0\2\27\31\32\225&*+>\241\0\0\0\0\7\0\0\0\2$&)d\0\0\1\375" - "+(\40\37664-\376\0\0\0\377\4\4\4\234\266\0\0\0\0\3\33\36\37\240\31\32" - "\33\307\0\0\0\7\237\0\0\0\0\10\0\0\0\2\4\4\4U\23\25\26\374&%\"\375{w" - "m\37664/\376\0\0\0\377\2\3\3\230\266\0\0\0\0\3\1\1\1\303\0\0\0\377\0" - "\0\0a\237\0\0\0\0\10""59;\32\14\15\15\375\0\0\0\376GB8\376hdZ\376eaX" - "\376+,+\377\35\37!\232\266\0\0\0\0\4\20\23\23\234\37\"\"\377+//\364\0" - "\0\2-\233\0\0\0\0\14-46\202,02\211\0\0\0\177\15\16\20\371\21\21\17\375" - "\\WL\375YTI\376PLA\376KF=\376\7\10\7\376\21\22\23\254\0\0\0\1\265\0\0" - "\0\0\5&))\2360/*\377__Z\376\30\32\33\370\1\1\1.\231\0\0\0\0\14.46B,3" - "4\234\37$%\350\"%%\376\24\24\21\375ieZ\376pk`\37695-\376NI=\376MH<\376" - "\32\32\31\376\0\0\0\330\266\0\0\0\0\6\7\7\7\241750\377faT\375,-)\376" - "\0\0\0\373\1\1\1B\227\0\0\0\0\15\2\3\4\33,24\277$''\375+//\37723/\376" - "hcV\376PK\77\376#\37\27\376\"\37\30\376\17\15\13\37684)\376\4\4\3\376" - "\0\0\0\326\256\0\0\0\0\1.35%\207\0\0\0\0\10\0\0\0\260==7\377\210\201" - "r\376\201|m\37611.\376\0\0\0\377\"&'`\0\0\0\20\222\0\0\0\0\20\0\0\0\10" - "\0\0\0M\6\7\7\211\27\31\32\377\40#&\377FD<\376=>9\377MME\376RL>\376E" - "A7\376\6\6\5\376*&\35\376OJA\376QMF\376\2\2\2\376\0\0\0\327\256\0\0\0" - "\0\2.46d,25\17\206\0\0\0\0\12\0\0\0\246871\377\230\222\201\376FB1\376" - "\204\202v\376PPL\3758<;\377\23\24\24\350&((A\0\0\0\14\204\0\0\0\0\34" - "\265\262\261\11|~yNEGA\247z|w\335\177\201}\305\242\244\237u>@;\25\0\0" - "\0\0\0\0\0\3\0\0\0\23\0\0\0Y\3\4\5w\27\32\34\262\14\14\14\377\0\0\0\377" - "8:9\376GHC\377b\\P\377<<6\377<<6\3761+\34\376\12\11\7\376+(\40\376:7" - "-\376hcW\376[VK\376\36\36\35\376\0\0\0\327\256\0\0\0\0\2.45_-46b\206" - "\0\0\0\0*\0\0\0\255``\\\377\213\213\202\376\205\207\202\376~\200{\376" - "\222\224\217\376\262\263\257\376\225\227\222\375lok\377\10\11\12\373" - "\0\0\0\256\0\0\0I^ba\25\203\203\200Zoql\376\226\227\223\377\307\310\306" - "\375\334\335\334\376\357\360\357\376\227\230\224\377\231\233\226\377" - "\204\206\202\371\40\"\"\334\20\22\22\357\1\0\0\377')(\376HG=\376heX\376" - "YYP\376EFB\377KG>\377[VK\377>>7\3779:5\37773*\376%!\33\376\40\37\32\376" - "JE8\376UQD\376PMF\376\40\40\36\376\0\0\0\323\256\0\0\0\0\3.45b-45\231" - ".26\23\205\0\0\0\0\4EHI\256\212\215\211\376\271\272\266\376\370\370\371" - "\376\203\376\376\376\376\12\377\377\377\376\250\251\245\376\222\224\220" - "\376\40!!\376\30\31\30\376\210\212\207\376\212\215\207\376\275\277\272" - "\375\377\377\377\376\376\376\376\376\202\375\375\375\376\27\376\376\376" - "\376\344\344\343\376\232\233\227\376\201\203\200\375mlc\375\205\200p" - "\376rl]\376sm]\376]ZP\376896\377OKA\377TPE\377_ZO\377..)\377\77@:\377" - "WQC\376\20\13\10\376TNB\376@<1\376_ZN\37695.\376\37\37\37\376\0\0\0\317" - "\256\0\0\0\0\3-35g.36\231-46\202\205\0\0\0\0\4[^[\347\207\211\204\376" - "\365\365\365\376\376\376\376\376\202\375\375\375\376\202\376\376\376" - "\376\6\377\377\377\376\247\251\244\376\221\223\215\375\237\236\225\376" - "\276\300\273\376\367\370\367\375\202\375\375\375\376\203\376\376\376" - "\376\27\375\375\375\376\376\376\376\376\372\372\371\376\303\304\302\376" - "\214\216\211\376}xh\376[TC\376VSG\376\77A;\377GF=\377idW\377QM@\377Y" - "TH\377<:3\377@A;\377WQB\376KE8\376\36\33\27\37693'\376\77;3\376WRF\376" - "010\376\0\0\0\301\253\0\0\0\0\7\0\0\0\22\0\0\0\206\0\0\0\260\26\31\32" - "\327\"%%\336\37#%\325$)*\204\203\0\0\0\0\5|~y\21\216\220\213\376\326" - "\327\324\376\376\376\376\376\375\375\375\376\202\376\376\376\376\11\365" - "\365\365\376[[[\376\307\307\306\376\377\377\377\376\256\260\254\376\203" - "\205\200\376\312\313\311\376\352\352\351\376\373\373\373\376\203\376" - "\376\376\376\30\367\367\366\376\273\273\273\376\377\377\377\376\373\373" - "\372\376\372\372\371\376z|w\376yyo\376MMC\376EE\77\377HF;\377idW\377" - "QK>\377:5*\377KG>\377DB:\377FF@\377PK=\376JD6\3761-%\376LF:\376^YN\376" - "YUJ\376\1\2\2\377\13\15\16\226\252\0\0\0\0\2\0\0\0'\0\0\0\320\202\0\0" - "\0\377\26\23\26\27\377%'%\377=<6\377\31\35\37\366\26\32\33\274\0\0\0" - "\40\0\0\0\0\206\210\203\216\250\251\246\377\377\377\377\376\370\370\367" - "\376\375\375\375\376\376\376\376\376\375\375\375\376\377\377\377\376" - "\235\235\235\376\0\0\0\376iig\376\301\302\277\376\203\204\177\376\367" - "\367\366\376\362\362\361\376\204\376\376\376\376\30\373\373\373\376\262" - "\262\262\376\0\0\0\376###\376\377\377\377\376\244\245\244\376TVU\377" - "LLF\377OK>\377[VH\377^XJ\377QK=\377HC4\377`[N\377MJ@\377<=8\377lfU\376" - "TOA\37695,\376TN@\376_[M\376=;3\376,02\377\0\0\0X\251\0\0\0\0\35\0\0" - "\0\15\0\0\0\332\0\0\0\377jll\375\267\271\272\376{\177\200\376ILJ\377" - "`]T\377@@;\377\32\37\40\377\23\25\26\365\0\0\0""6\221\222\215\311\265" - "\267\263\376\367\366\365\376\356\356\354\376\377\377\377\376\376\376" - "\376\376\375\375\375\376\376\376\376\376\377\377\377\376\4\5\5\376\0" - "\0\0\376CDA\376\230\231\225\376\377\377\377\376\376\376\376\376\372\372" - "\372\376\375\375\375\376\202\376\376\376\376\30\373\373\373\376\375\375" - "\375\376B==\376\22""55\377\36""00\377`de\377WYV\377QL\77\377_YL\377X" - "RD\377FA5\377D@4\377*'\37\377MH>\377FC:\377574\377\40\36\32\376HC9\376" - "85.\3760,#\3762/'\376HD<\376\0\0\0\377\1\1\1c\251\0\0\0\0\22\0\0\0\204" - "\3\4\4\377{\177\201\376\377\377\377\376\376\376\376\376\235\240\241\376" - "\204\206\204\377usj\377}{r\377TTN\376\32\36\37\377\26\31\32\3769;:\376" - "\317\317\315\375\366\366\364\376\377\377\377\376\224\224\223\376\343" - "\343\343\376\202\377\377\377\376#\341\341\341\376\2\3\3\376\1\1\1\376" - "mok\376\231\233\225\376\340\337\334\376\375\375\375\376\375\375\374\376" - "\332\332\332\376\377\377\377\376\376\376\376\376\362\362\362\376\307" - "\311\312\376.33\377\22""55\377\22""77\377^WQ\377|zo\377hcV\377\\UF\377" - "OI9\377UO@\377PJ;\377HC7\377UOD\377OMC\377564\377LF7\376QK=\37674)\376" - "\36\32\20\376WSF\37620)\376\26\30\30\377\6\6\7%\251\0\0\0\0\3\0\0\0\277" - "\7\10\10\376\351\351\352\376\202\376\376\376\376\20\232\234\235\376\217" - "\220\216\377{zp\377YWO\377kle\377`a]\3779;:\377*--\377NQP\376\340\341" - "\337\376\331\331\325\376\232\232\230\376\0\0\0\376\244\246\246\376\221" - "\224\224\376=><\376\202PQN\377\40{}x\377\215\217\211\377\315\316\312" - "\376\365\365\364\376\343\344\342\376\26\27\26\376\222\224\225\376\220" - "\223\224\377\200\204\205\377\177\203\204\377\30""44\377\23""66\377\21" - "66\377NE@\377{xn\377RL=\377WP@\377ID7\377SM>\377C>1\377LG8\377RMA\377" - "\77<3\3779;6\3773.\40\376RL>\376NJ=\376EA8\376TOB\376HF\77\375\0\0\0" - "\370\0\0\0\26\244\0\0\0\0\1m\22\22J\203\0\0\0\0\4\0\0\0\10\1\1\1\341" - "89;\375\373\373\373\376\202\376\376\376\3762\225\231\232\376\220\222" - "\220\377\242\242\235\377WYW\377egf\377vyw\377dfd\377RTQ\377STQ\377y|" - "x\377z}}\377\222\224\225\376\11\13\13\376686\376UWT\377VWU\377`a_\377" - "tus\377\250\252\246\377\237\241\235\377\247\250\243\377\254\255\251\377" - "\216\221\221\3776::\377\35\40!\377gji\377yxs\377720\377\25""33\377\27" - "DD\377\21""55\377;53\377ieZ\377d]N\377]WG\377UPA\377YSC\377NI9\377JD" - "6\377XSH\377IF<\377CD>\377`ZK\376sm`\376<8/\376/+\40\376XRG\376EE@\376" - "\0\0\0\364\0\0\0\24\244\0\0\0\0\2n\23\23\300k\23\23\12\202\0\0\0\0\4" - "\0\0\0\14\0\0\0\356EGH\375\326\330\330\376\202\376\376\376\3761\226\230" - "\232\376\266\270\265\377\211\215\212\377\223\225\223\377\235\236\236" - "\377\234\234\235\377\247\250\250\377\236\237\236\377fgd\377ab^\377\230" - "\231\225\377knl\377dfc\377QSP\377str\377\220\220\216\377\223\223\221" - "\377\246\246\245\377\314\315\312\377\313\314\311\377\332\332\326\377" - "\305\307\303\377\257\261\255\377\212\211\202\377IF<\377JF=\377HA:\377" - "\32""22\377\33>>\377\33NN\377\21""66\377553\377fcV\377XRA\377WP@\377" - "RL=\377MG8\377OH9\377IC4\377\\WK\377HE<\377AB;\377F@1\376]WH\376@<-\376" - "a\\N\376ZTI\376-0/\376\0\1\2\313\245\0\0\0\0\2m\23\23\304m\23\23\210" - "\202\0\0\0\0""7\0\0\0\16\0\0\0\364456\375|\177\201\376\376\376\376\376" - "\375\375\375\376\274\275\273\377\271\272\267\377\253\256\255\377\233" - "\235\233\377\230\231\231\377\247\251\251\377\224\224\223\377\225\225" - "\224\377\213\213\211\377ttr\377z{w\377\230\230\220\377\237\240\233\377" - "\323\323\321\377\270\270\264\377\244\244\241\377\307\310\305\377\312" - "\312\307\377\302\301\273\377\304\303\300\377\317\317\314\377\312\312" - "\305\377\263\264\256\377\225\227\220\377^\\Q\377;6,\377\"00\377\32""2" - "2\377\"OO\377\34QQ\377\21""66\377.32\377f`P\377UN=\377WQA\377JC3\377" - "ZTC\377NH9\377RL=\377]WJ\377@\77""6\377\77\77:\377;6)\376KE7\376QL>\376" - ";8-\376>;2\376BEE\377\4\5\7\211\245\0\0\0\0;d\21\21\333n\23\23\377\12" - "\1\1\225\0\0\0\213\0\0\0x\0\0\0\316\25\26\27\376MRS\376EEE\376\311\312" - "\311\376\245\247\244\377\224\227\225\377\227\232\230\377\237\242\241" - "\377\220\221\220\377\220\220\217\377Z[[\377))*\377JJI\377\212\212\207" - "\377rsp\377\217\221\214\377\231\233\226\377\270\271\264\377\274\275\270" - "\377\306\307\303\377\304\304\277\377\275\273\264\377\254\251\237\377" - "yvn\377\237\240\233\377\307\307\303\377\325\324\317\377\243\244\236\377" - "\237\237\232\377*.-\377\36""00\377'LL\377#QQ\377\34RR\377\22""66\377" - "(10\377XRA\377SM<\377JE8\377UO\77\377OI9\377LF7\377QK=\377ZUG\377CB9" - "\377771\377VQB\376ZTE\376SM>\376TOC\376^[Q\376\16\21\21\373\1\3\4\35" - "\243\0\0\0\0=\0\0\0\13\0\0\0\215`\20\20\354m\23\23\377e\27\27\353#%&" - "\230\4\6\6\231\0\0\0\313\3\3\3\377\35\36\40\376\17\21\21\376RWV\376b" - "ec\377\236\242\240\377\220\222\220\377\211\212\210\377\215\215\214\377" - "\233\233\233\377\232\232\232\377sss\377\1\1\1\377\30\30\27\377\203\203" - "}\377xwn\377\261\257\246\377\266\265\256\377\274\274\264\377\272\270" - "\260\377\300\275\264\377\312\306\276\377\276\273\262\377\254\251\240" - "\37752+\377;<9\377\255\256\251\377\254\253\247\377000\377\"//\377,FF" - "\377)QQ\377\37JJ\377\35TT\377\22""77\377$00\377qjY\377TN>\377WQA\377" - "]VF\377PK;\377TN\77\377RL=\377LG8\377<=6\37734/\37673+\376F@2\376^YL" - "\376LH\77\376MLE\375\1\1\1\332\4\5\5\2\242\0\0\0\0\23\0\0\0\3\0\0\0\220" - "\21\21\21\230k\32\32\357}\26\26\377i\22\22\377o**\334mrt\231=@A\246\6" - "\6\7\371\0\0\0\376\32\34\34\376GIH\376[\\Y\377\211\212\207\377\177\177" - "}\377\200\200~\377\216\216\216\377\232\232\232\377\202\231\231\231\377" - "(\33\35\36\377\0\0\0\377@A>\377\213\211}\377\241\235\221\377\253\250" - "\235\377\255\251\236\377\255\252\240\377\305\302\272\377\310\305\275" - "\377\311\306\276\377\304\301\270\377ljb\37730)\377;1.\377/--\377&--\377" - "3GG\3771OO\377#CC\377\34EE\377\35TT\377\23""99\377#11\377OJ<\377OI;\377" - "SM<\377TM=\377QK;\377SM=\377=9.\377^YJ\377=>8\377IHB\376GA5\376RL\77" - "\376C=0\376XRE\376')&\376-13\262\243\0\0\0\0=\0\0\0""2\4\4\4\231nst\231" - "v##\362\230\34\34\377\263\"\"\377i\22\22\377g((\326dik\231CGH\315\16" - "\17\20\377\11\13\13\3769::\377\\]Z\377||x\377~~y\377ffc\377OOO\377\231" - "\231\231\377\231\232\232\377{{|\377\31\35\36\377\3\3\4\377<=:\377zxm" - "\377\237\234\220\377\262\257\243\377\251\247\233\377spf\377\306\304\273" - "\377\306\303\272\377;@B\377BFF\377\177~v\377B/-\377.**\377-..\377:\377.-'\376P" - "K>\376\77;0\376QMB\376DA7\3769=\77\375\25\26\27J\243\0\0\0\0\37\0\0\0" - "v!\"\"\231\211\215\217\231v!!\364\232\35\35\377\334//\377\253\"\"\377" - "i\22\22\377a\34\35\336LRS\245145\365\14\15\16\377\14\15\15\376664\377" - "xyt\377yyu\377ggc\377\0\0\0\377EFG\377PRS\377\32\36\37\377\36!#\377\0" - "\1\1\377;:8\377onb\377\260\255\240\377\244\241\225\377\254\251\235\377" - "fcZ\377yvn\377xyv\377\202-46\377\36""4**\3771((\377\77""99\377ILL\377" - "@NN\377.@@\377&==\377\40\77\77\377\34CC\377\36UU\377\23;;\377\37""11" - "\377e_O\377@<1\37763(\377FA5\377NH:\377RL=\377QK>\37741*\377785\377&" - "%\40\376JE7\37662)\37652+\37623.\375\4\4\4\350\0\0\0\14\0\0\0\12\0\0" - "\0\3\241\0\0\0\0@\0\0\0\231@BB\231\257\262\263\231t\35\35\367\234\36" - "\36\377\33333\377\33455\377\263''\377i\21\21\377d\22\22\367J22\303')" - "*\374\5\6\6\377\0\0\0\376^_[\377sso\377wws\377\3\3\3\377\1\1\1\377'\36" - "\37\3775\"$\377!\21\21\377\0\0\0\377LKG\377\177}r\377\232\227\212\377" - "\214\212\201\377\241\236\223\377qlb\3774\37\33\377013\377020\377.45\377" - "923\377UGG\377SMM\377DGG\3772==\377->>\377&>>\377!@@\377\34DD\377\35" - "WW\377\23<<\377\36""22\377RL<\377GB5\3771.$\3770,#\3772.$\377PJ<\377" - "<7/\377TQF\377463\377\31\30\23\376*(!\376OJ>\376QLC\376\24\27\26\377" - "\31\34\35l\0\0\0\34\0\0\0\26\0\0\0\16\0\0\0\3\230\0\0\0\0\1.25A\207\0" - "\0\0\0A\0\0\0\231FHI\231\223\226\231\231p\31\31\371\240\40\40\377\333" - "77\377\320..\377\334>>\377\336<<\377\30755\377\235##\377p\32\32\362+" - "\31\32\374\6\1\1\377\34\35\34\377noi\377qok\377\222]Y\377\314<<\377\334" - ">>\377\333;;\377\325>>\377\315FF\377\245XV\377}g_\377\205tl\377rPK\377" - "].-\377L\36\36\377=''\377-36\377DA:\377,24\377\77;;\377WGG\377D\77\77" - "\3779<<\3773==\377->>\377&\77\77\377\40@@\377\36FF\377\35WW\377\24;;" - "\377\36""22\37783)\37773*\3771-%\3770,#\377/+\"\377ID6\377TOB\377;:3" - "\377!#\"\377\31\30\23\376icU\376]XL\376\13\13\12\375\7\11\12\374\0\0" - "\0;\0\0\0(\0\0\0\36\0\0\0\26\0\0\0\14\0\0\0\4\227\0\0\0\0\2.46\260+3" - "5\26\206\0\0\0\0B\0\0\0\217012\231djk\231o\27\27\373\250%%\377\335BB" - "\377\335CC\377\340UU\377\343ee\377\341ZZ\377\335FF\377\341CC\377\246" - "((\377l\22\22\377b\20\20\377h/-\377\327DC\377\335BB\377\341aa\377\356" - "\244\244\377\367\327\327\377\360\303\303\377\333~~\377\307SS\377\277" - "NN\377},,\377V\34\34\377Z!!\377h++\377336\377376\377XRH\377.33\37756" - "7\377H;;\377@;;\377:==\3772\77\77\377.\77\77\377(AA\377\40@@\377\36F" - "F\377\36XX\377\23::\377\37""00\37751'\377J<(\377XD,\377H7'\377;3&\377" - "F\77""1\377QK>\377::4\377\25\30\31\3763/&\376_\\T\376$#\36\376\6\7\7" - "\377\11\12\12\226\0\0\0=\0\0\0""0\0\0\0%\0\0\0\35\0\0\0\23\0\0\0\11\0" - "\0\0\1\226\0\0\0\0\2-45\250-46\241\206\0\0\0\0B\0\0\0g\22\23\23\230\\" - "`b\231\222\35\35\373\342DD\377\341[[\377\371\342\342\377\373\354\354" - "\377\375\370\370\377\373\357\357\377\372\351\351\377\350\201\201\377" - "\335AA\377\30500\377\205\27\27\377\341DD\377\334EE\377\365\315\315\377" - "\371\344\344\377\373\354\354\377\375\370\370\377\373\361\361\377\366" - "\347\347\377\363\340\340\377\312zz\377\266SS\377\254FF\377\234;;\377" - "D66\377-35\377SOG\377YTJ\377143\377355\377I==\377A;;\377;>>\3773>>\377" - ".\77\77\377'AA\377!AA\377\36GG\377\35WW\377\23;;\377!10\377L>.\377nQ" - "1\377wT-\377oO.\377V>&\377ZH2\377TB2\377B9.\37791'\376WQC\376`]R\376" - "\2\3\2\376\2\3\3\361\6\6\6L\0\0\0>\0\0\0""5\0\0\0+\0\0\0!\0\0\0\30\0" - "\0\0\17\0\0\0\4\226\0\0\0\0\4.45\256-45\377.26\35\40\5\5\1\204\0\0\0" - "\0B\0\0\0+\3\3\3\231UTU\233\332AA\376\343hh\377\366\324\324\377\370\333" - "\333\377\372\350\350\377\374\356\356\377\375\360\360\377\372\347\347" - "\377\367\324\324\377\354\226\226\377\334@@\377\335AA\377\335EE\377\365" - "\311\311\377\366\325\325\377\371\340\340\377\372\350\350\377\373\357" - "\357\377\372\354\354\377\366\345\345\377\362\334\334\377\354\324\324" - "\377\307\203\203\377\257WW\377X56\377-35\377KH\77\377ZVL\377ZUK\3774" - "63\377246\377J==\377B>>\377;==\3774\77\77\377.@@\377(AA\377!BB\377\36" - "II\377\34VV\377\23""99\377$/.\377SH7\377L@/\377ZC*\377nO+\377mF$\377" - "\202^7\377fK-\377I:*\377G0\32\376/!\25\3763&\31\376\1\2\3\370\0\0\0t" - "\0\0\0L\0\0\0A\0\0\0""8\0\0\0/\0\0\0$\0\0\0\32\0\0\0\21\0\0\0\7\226\0" - "\0\0\0J,13\277.36\377+,.\375\40\5\5\371\40\6\6\363!\5\5\335\40\6\6w\0" - "\0\0\0\0\0\0\7\0\0\0\231\243::\323\333==\377\362\273\273\377\365\312" - "\312\377\367\325\325\377\371\335\335\377\371\337\337\377\314\202\202" - "\377<\24\24\377\207FF\377\376\314\314\377\340TT\377\334AA\377\356\245" - "\245\377\364\307\307\377\366\321\321\377\367\332\332\377\371\340\340" - "\377\373\353\353\377\335\205\205\377q,,\377\244qq\377\362\327\327\377" - "\345\316\316\377cEF\377-35\377CB<\377]XN\377QMB\377[VL\377895\377145" - "\377I==\377C>>\377:==\3774\77\77\377-AA\377(AA\377#BB\377\40LL\377\34" - "UU\377\22""77\377*20\377SM>\377RH7\377I9(\377YD+\377hL+\377uQ-\377tR" - ".\377pN,\377\252e\36\376gA\31\376_3\15\375@!\14\363\0\0\0d\0\0\0L\0\0" - "\0C\0\0\0""8\0\0\0.\0\0\0&\0\0\0\32\0\0\0\22\0\0\0\7\225\0\0\0\0K!\6" - "\6b)&(\377488\377,24\377K*,\377w\25\25\3779\12\12\377\32\4\4\377!\6\6" - "\362!\6\6Y\0\0\0B\307;;\357\343gg\377\363\275\275\377\363\302\302\377" - "\365\311\311\377\374\362\362\377\376\374\374\377\377\377\377\377\315" - "\233\233\377\22\0\0\377X$$\377\353xx\377\336II\377\362\273\273\377\363" - "\300\300\377\365\312\312\377\365\320\320\377\374\361\361\377\376\373" - "\373\377\376\377\377\377\334\312\312\377\22\2\2\3772\23\23\377JIK\377" - "-35\377HF\77\377_[P\377TPD\377E@4\377\\XN\377;;7\377145\377J>>\377C\77" - "\77\377:\77\77\3775@@\377-@@\377(BB\377\"CC\377\40NN\377\33TT\377\22" - "66\37700/\377YSD\377QK<\377OH9\377PE2\377[H3\377dL3\377cL1\377\177M\35" - "\376\300d\36\376\247H\13\376\274t(\375\215O\30\376d5\23\377)\22\7\263" - "\32\20\10W\22\20\16<\0\0\0+\0\0\0#\0\0\0\32\0\0\0\20\0\0\0\5\224\0\0" - "\0\0L!\6\6%\40\5\5\377>,-\377BDA\377he[\377*03\377j/1\377\321%%\377\224" - "\32\32\3775\11\11\376\40\5\5\377\23\0\0\200\323\77\77\365\346vv\377\360" - "\262\262\377\362\273\273\377\342\231\231\377\377\377\377\377\375\372" - "\372\377\376\372\372\377\377\366\366\377S\2\2\377\20\1\1\377\337;;\377" - "\341[[\377\360\262\262\377\363\273\273\377\363\301\301\377\361\267\267" - "\377\376\376\376\377\376\373\373\377\375\372\372\377\375\373\373\377" - "W$&\377-13\377,35\377TQH\377b^R\377VQF\377E@3\377FA4\377\\XM\377>=7\377" - "136\377J>>\377C\77\77\377;\77\77\3775@@\377-AA\377(BB\377!BB\377!PP\377" - "\32QQ\377\21""55\3773.+\377GA3\377LF8\377FA4\377MH:\377VO\77\377OC5\377" - ">1%\376Y0\13\376y=\14\376\245Y\27\375\303s%\376\314n\25\376\236W\22\376" - "=\33\10\376}Z6\364olc\350!!\40""1\0\0\0\37\0\0\0\24\0\0\0\14\0\0\0\2" - "\224\0\0\0\0\22\40\5\5\246;\12\12\376S23\377BFB\377\206\200p\377a`W\377" - "*03\377S+,\377\275!!\377\255\36\36\377G\14\14\377\37\5\5\377~\37\37\377" - "\351oo\377\357\252\252\377\362\262\262\377\241PP\377\311\221\221\377" - "\202\377\377\377\3777\265dd\377o\21\21\377\26\3\3\377\341<<\377\341`" - "`\377\357\253\253\377\360\262\262\377\362\273\273\377\220JJ\377\377\377" - "\377\377\375\372\372\377\267\270\271\377MRS\377+24\377<>;\377a\\P\377" - "eaU\377UPC\377HC5\377FA4\377FA5\377]WM\377\77\77""9\377045\377J>>\377" - "C\77\77\377;@@\3775@@\377-AA\377(BB\377!BB\377!QQ\377\31LL\377\21""6" - "6\377J\77""7\377LG:\377E@4\37773)\377[VH\377OJ\77\376475\376,+(\3762" - "\35\14\352^3\24\374wC\22\376\236[\32\375\252\\\25\376\256U\17\376\275" - "n%\376\226\216~\376\303\304\302\376\356\357\355\365)+'5\11\11\11\16\0" - "\0\0\6\225\0\0\0\0'\35\5\5\377\222\30\30\377THJ\377FGD\377\206\200o\377" - "\207\201p\377hf[\377,23\3772-/\377\212!!\377\233\34\34\377=\13\13\377" - "\30\4\4\377\24788\377\357\242\242\377\357\247\247\377\305gg\377\31\4" - "\4\377\221..\377\207((\377l\23\23\377i\22\22\377\22\2\2\377\32466\377" - "\340UU\377\355\243\243\377\357\251\251\377\361\264\264\377S##\377lZ[" - "\377\377KE7\377JD7\377\202" - "HB5\377!]XN\377@@9\377/35\377J>>\377C>>\377;@@\3774AA\377-AA\377(BB\377" - "!AA\377!RR\377\30GG\377\21""66\377QG<\377A<0\377E@3\377NJ=\377DB:\376" - "(($\377\33\36\40\377\6\7\7\310\0\0\0\200\1\0\0jE%\11\274G\33\3\377j=" - "\27\376\207L\36\375\225vU\376\202\203\200\376\377\376\377\375\377\377" - "\377\376\271\274\270\375\201\204~\317\225\0\0\0\0\24\40\5\5\35\36\5\5" - "\377\271\37\37\377PLO\377HJE\377\210\202q\377|wf\377\210\205z\377\200" - "\200y\377gig\377JOO\377O22\377r\33\33\377+\10\10\377\35\0\0\377\343z" - "z\377\354\230\230\377\325\222\221\377ia]\377\204\205\200\377\202\205" - "\207\202\377\16\177\177z\377ZIG\377\331GG\377\306AB\377\270\177\200\377" - "~ac\377:;=\377,25\377056\377=\77=\377b^Q\377pk\\\377jeW\377^XJ\377\202" - "OI:\377,LG9\377KE7\377ID6\377HC6\377]XM\377@@:\377/36\377J>>\377C@@\377" - ":\77\77\3775@@\377-AA\377(BB\377!BB\377\"TT\377\26BB\377\26""33\3775" - "3)\377/,#\3772/&\377FE>\374=:3\364#')\314\35\40\"\262\0\0\0r\0\0\0h\0" - "\0\0_\0\0\0R\25\13\5SD(\21\212O'\13\377jdW\376\224\226\222\375\341\341" - "\341\376\376\376\376\376\377\377\377\376\361\361\361\376\340\340\337" - "\355AAAj\30\30\30d<<<\266###\213\0\0\0""3\0\0\0\11\216\0\0\0\0J!\6\6" - "\"\37\5\5\377\265\36\36\377I@B\377LNI\377\211\213\203\377\207\212\205" - "\377\216\220\213\377\224\226\221\377\222\224\217\377\212\214\207\377" - "\213\215\210\377W[Z\377-35\377)'(\377X&'\377\242\210\204\377\207\211" - "\204\377\221\222\215\377\252\253\250\377\314\315\313\377\306\307\304" - "\377\236\237\233\377\215\216\212\377\207\211\204\377LQQ\377.46\37738" - "9\377<\77>\377_\\Q\377wqa\377sm^\377mhZ\377b\\M\377TN>\377SM>\377QK<" - "\377OI;\377NH:\377LF8\377JD7\377ID7\377^YN\377\77\77""9\377146\377J>" - ">\377C@@\377:\77\77\3774AA\377-AA\377(BB\377#FF\377\"VV\377\23::\377" - "$0/\376C+\17\350:-\34\345;:2\324B\77""6\305*-,\274%*,\273\3\4\4r\0\0" - "\0g\0\0\0[\0\0\0S\0\0\0H\0\0\0>\0\0\0/\0\0\0\"TUO\263xyt\322ghd\377\261" - "\262\257\377\360\360\357\375\202\377\377\377\376\7\30\30\30\377\177\177" - "\177\377\255\255\255\377\220\220\220\377&&&\372\0\0\0\233\0\0\0\11\215" - "\0\0\0\0S!\6\6\13\35\5\5\377\224\32\32\377F45\377\212\214\207\377\213" - "\214\210\377\333\334\331\377\365\365\364\377\373\373\372\377\370\370" - "\367\377\364\364\362\377\256\257\252\377\207\211\204\377psp\377288\377" - "\201\203~\377\210\212\205\377\313\314\310\377\360\360\356\377\365\365" - "\364\377\373\373\373\377\372\372\371\377\363\363\361\377\356\356\353" - "\377\243\245\240\377\207\211\204\377\202\177t\377{td\377xrb\377vpa\377" - "oiY\377]VE\377ZSB\377XQA\377VP@\377TN>\377RL=\377PJ;\377NH:\377MG9\377" - "KE7\377KF9\377^YN\377>>9\377136\377H==\377B\77\77\377:==\3773@@\377-" - "AA\377(AA\377&MM\377!RR\377\22""66\37790'\364c6\6\270P+\4\272T0\10\270" - "J5\33\270&+,\265\15\21\22z\0\0\0a\0\0\0X\0\0\0O\0\0\0F\0\0\0:\0\0\0/" - "\0\0\0$\0\0\0\31\0\0\0\4\0\0\0\0\177\200}#\217\221\215j\206\210\202\317" - "\245\246\243\377\223\224\222\376333\375jjj\376\255\255\255\376\260\260" - "\260\376JJJ\376\0\0\0\374\5\5\5:\216\0\0\0\0D\37\5\5\340T\17\17\376\206" - "zv\377\217\222\214\377\344\343\340\377\353\353\351\377\363\363\361\377" - "\370\370\367\377\367\367\366\377\360\360\356\377\350\350\345\377\302" - "\303\277\377\205\207\202\377\210\211\202\377\210\212\205\377\325\326" - "\323\377\346\346\344\377\355\355\352\377\363\363\362\377\370\370\367" - "\377\366\366\365\377\361\361\360\377\353\353\351\377\343\343\340\377" - "\256\257\253\377\207\211\204\377sn_\377d]J\377aZH\377^XF\377]VE\377[" - "UC\377YRB\377WQ@\377UO\77\377SM=\377QK<\377OI:\377NH9\377KF8\377MH;\377" - "^ZM\377;<7\377146\377I==\377A>>\3779==\3773@@\377-AA\377'@@\377&PP\377" - "\36JJ\377\21""55\377i>\33\330\303k\17\262\252]\14\261yB\10\260X0\5\256" - "[1\4\255\77\"\3\205\11\5\0S\0\0\0G\0\0\0\77\0\0\0""5\0\0\0)\0\0\0\40" - "\0\0\0\25\0\0\0\12\205\0\0\0\0\12fgc$rsq\301LLL\376ttt\375\220\220\220" - "\376ppp\376\1\1\1\376666\377\0\0\0\302\0\0\0\12\204\0\0\0\0\7\0\0\0\1" - "\0\0\0\243\0\0\0\344\0\0\0\361\0\0\0\354\0\0\0\317\0\0\0b\202\0\0\0\0" - "D!\5\5nB*)\377\203\205\200\377\307\307\302\377\340\340\334\377\347\347" - "\344\377\354\354\352\377\360\360\357\377\231\231\231\377'''\377mml\377" - "\346\346\341\377\236\237\233\377\207\211\204\377\255\256\251\377\336" - "\336\332\377\343\343\340\377\352\352\347\377\357\357\354\377\363\363" - "\362\377\305\305\304\377iih\377\242\242\241\377\355\355\351\377\336\336" - "\331\377\224\227\222\377\202\202z\377bZG\377aZH\377_XF\377]WF\377\\U" - "D\377ZSB\377XQA\377UO\77\377TN>\377RL=\377OI:\377NH:\377LF8\377PK=\377" - "^ZL\377686\377356\377I==\377@==\377:>>\3772\77\77\377,\77\77\377'@@\377" - "'PP\377\32\77\77\377\23""44\377t@\10\251\235V\13\251\265c\15\250\313" - "o\17\250\306m\17\247\205J\12\244a5\6\243b6\5\241D%\3d\37\34\30""6\20" - "\20\16&\0\0\0\31\0\0\0\20\0\0\0\13\0\0\0\5\206\0\0\0\0\11\0\0\0V888\374" - "aaa\376:::\376!!!\376\0\0\0\376\12\12\12\376\1\1\1\370\0\0\0+\203\0\0" - "\0\0\21\0\0\0\36\0\0\0\365\0\0\0\377(*+\3777:;\377)+-\376\10\12\12\377" - "\0\0\0\377\0\0\0\353\0\0\0S\40\6\6\31jd`\377\220\221\215\377\330\330" - "\322\377\333\333\327\377\341\341\335\377\354\354\353\377\202\377\377" - "\377\377;\301\300\301\377\0\0\0\377''&\377\301\302\274\377\212\214\207" - "\377\325\325\320\377\332\332\326\377\340\340\334\377\344\344\341\377" - "\363\363\361\377\377\377\377\377\376\376\376\377\322\322\322\377\0\0" - "\0\377\26\26\26\377\307\307\303\377\270\271\263\377\207\212\206\377f" - "_M\377b[H\377`YG\377_XF\377]VE\377ZTC\377XRA\377VP@\377TN>\377RL=\377" - "PJ;\377NI:\377LG9\377SM@\377]XK\377265\377356\377G<<\377@<<\377:==\377" - "2\77\77\377,\77\77\377+HH\377'PP\377\26""77\377*/-\367`6\6\241_4\5\240" - "\202G\11\240\246[\14\236\273g\16\236\324t\20\235\337z\20\233\207K\12" - "\231kA\23\231\210\211\202\231prnO\0\0\0\23\0\0\0\16\0\0\0\10\0\0\0\2" - "\206\0\0\0\0\6\5\5\5\1\37\37\37\331fff\376DDD\376+++\376\4\4\4\376\202" - "\0\0\0\376\1\0\0\0\222\202\0\0\0\0\22\0\0\0\12\0\0\0\372\31\31\32\376" - "inp\377\255\260\262\377\256\261\262\377tz|\377nsu\377EJK\377\13\14\14" - "\377\0\0\0\377\0\0\0\207~}y\356\234\235\230\377\321\321\313\377\325\325" - "\320\377\311\311\305\377\362\362\362\377\203\377\377\377\377\10',.\377" - "\0\0\0\377ijg\377\217\221\214\377\320\320\313\377\326\326\321\377\333" - "\333\326\377\327\327\323\377\202\376\376\376\377\202\377\377\377\377" - "-cfg\377\3\3\3\377\14\14\14\377\313\313\305\377\205\210\204\377ql_\377" - "b[I\377aZG\377_XF\377]VE\377ZTC\377XRB\377WQ@\377UO\77\377SM=\377PJ;" - "\377OI9\377MG9\377VQC\377\\VI\377.34\377757\377E::\377@<<\3778<<\377" - "3>>\377-\77\77\377-LL\377#GG\377\24""44\3777.+\322+14\231W7\23\230f8" - "\6\230g9\6\231\205I\12\230\250]\14\231\276h\16\231\330t\14\231\221\211" - "{\231\232\234\227\231\317\317\315\231\203\205\177\201\25\26\24\10\0\0" - "\0\4\211\0\0\0\0\15""999\316\26\26\26\375\40\40\40\376\2\2\2\376\22\22" - "\22\376\0\0\0\376\0\0\0\356\0\0\0\11\0\0\0\0\0\0\0a\6\6\6\377puw\377" - "\357\360\360\377\202\377\377\377\377\14\347\350\351\377T[]\377chj\377" - "[`b\377\31\34\34\377\0\0\0\377:;9\376\235\237\231\377\314\314\305\377" - "\320\320\312\377\235\235\231\377\210\210\210\377\202\377\377\377\377" - "\11\276\277\300\377+13\377\3\4\5\377jkg\377\221\222\215\377\315\315\306" - "\377\321\321\313\377\325\325\320\377vvs\377\202\376\376\376\377\202\377" - "\377\377\377\22mqr\377*/1\377\0\0\0\377\225\226\220\377\210\211\205\377" - "usf\377c\\I\377aZG\377_YG\377]WE\377[TC\377YRB\377WQ@\377UO\77\377SM" - "=\377PJ;\377OI;\377MG8\377\202XSF\377\31,25\377<67\377E::\377\77;;\377" - "9==\3771<<\377-AA\377-LL\377\33""77\377\25""44\377%*+\246\36!\"\201\4" - "\4\4F\22\11\1>]2\5|h9\7\231h9\7\230zC\11\231\224rK\231\203\206\202\231" - "\352\352\351\231\377\377\377\230\245\246\242\231\205\207\202\226\210" - "\212\206D\211\0\0\0\0\14\0\0\0\1\0\0\0\40\24\24\24\223\0\0\0\353\0\0" - "\0\377\0\0\0\376\0\0\0\371\0\0\0+\0\0\0\0\0\0\0\324(()\377\222\226\230" - "\377\204\377\377\377\377\27\211\215\220\3777>A\377SXZ\377OTU\377\25\27" - "\30\377\0\0\0\377UVS\377\307\307\277\377\311\311\301\377\250\250\242" - "\377\0\0\0\377hln\377uz{\377)/1\377068\377\0\0\0\377_a^\377\216\220\212" - "\377\307\307\300\377\314\314\305\377\320\320\312\377UUS\377\202\202\202" - "\377\202\377\377\377\3773\342\343\343\377+13\377/57\377\3\3\3\377{{v" - "\377\206\210\204\377qn_\377c\\I\377aZG\377_YG\377]WE\377[TC\377YRB\377" - "WQ@\377UO\77\377SM=\377PJ;\377OI;\377KF8\377[UI\377RMC\377,25\377B67" - "\377F::\377=::\3778;;\3771==\3773JJ\377,II\377\31""44\377)$$\331\12\10" - "\10k\10\4\4Z\7\4\4M\4\1\1""9\0\0\0)!\22\1""1[2\6hf8\6\231\202{o\231\207" - "\211\204\230\274\275\274\231\353\353\353\231\377\377\377\231\363\363" - "\363\231\277\300\275\231\207\211\204\203333yVVV\213TTT\212\34\34\34g" - "\207\0\0\0\0\11\0\0\0\34\0\0\0\223\0\0\0\354\0\0\0\377\0\0\0r\0\0\0\0" - "\0\0\0\377GHI\377\267\272\273\377\204\377\377\377\377M\264\270\271\377" - ":CE\377069\377GKL\377ADE\377\11\12\12\377\0\0\0\377\237\240\232\377\301" - "\301\271\377\301\301\272\377\7\7\7\377\1\2\2\377).0\377-35\377\15\17" - "\17\377\0\0\0\377uvr\377\212\213\206\377\303\302\273\377\306\306\277" - "\377\311\311\303\377ppl\377\0\0\0\3777<\77\377NTV\377'-/\377-35\377," - "34\377\0\0\0\377xyu\377\210\212\206\377g`M\377b[I\377aZG\377_YG\377]" - "VE\377[TC\377XRB\377WQ@\377UO\77\377SM=\377PJ;\377OI:\377LF8\377\\VJ" - "\377IH\77\377-35\377K88\377D88\377=99\3776::\3774AA\3772II\377\37""5" - "5\377\31""44\377\20\12\12\202\13\7\7o\12\6\6`\11\5\5O\10\4\4>\5\2\2)" - "\0\0\0\35\0\0\0\26!\20\0\34\203\203|z\210\211\204\224\206\210\203\231" - "\214\216\211\231\250\252\247\230\351\352\352\231\377\377\377\231JJK\231" - "eee\231\251\251\251\230\246\246\246\230ZZZ\231\36\36\36\212\210\0\0\0" - "\0\7\0\0\0\25\0\0\0|\0\0\0\251\0\0\0\3\0\0\0\377KLM\377\227\233\235\377" - "\204\377\377\377\377\14\223\230\232\377;CF\37718:\377',-\377:>\77\377" - "-01\377\0\0\0\377-.+\377\267\267\256\377\274\274\263\377\264\264\255" - "\377\10\10\7\377\203\0\0\0\377\12ab^\377\210\212\205\377\207\211\204" - "\377\243\244\235\377\277\277\267\377\303\303\273\377\305\305\276\377" - "\0\0\0\377\10\11\12\377067\377\202/57\3773\4\5\5\377\0\0\0\377\217\221" - "\213\377\202\203|\377c[H\377b[H\377`YG\377_XF\377]VE\377ZTC\377XRA\377" - "VP@\377UN\77\377RL=\377PJ;\377OI:\377MG9\377]XK\377\77\77:\377/24\377" - "H66\377C88\377=88\3777;;\3779GG\377-BB\377\35""22\377$\35\35\304\14\7" - "\7}\15\10\10q\14\7\7b\14\7\7P\13\6\6\77\11\5\5+\3\1\1\27\0\0\0\20\0\0" - "\0\13=<<\13\0\0\0\0\210\211\204\34\207\211\204Y\207\211\204\222\202\204" - "\177\231\202\203\200\231PPP\231vvv\231\256\256\256\231\251\251\251\231" - "fff\231(((\231\26\26\26n\211\0\0\0\0\6\0\0\0\15\0\0\0\0\0\0\0\361456" - "\377dil\377\367\367\370\377\202\377\377\377\377\30\370\371\371\377;D" - "H\3779\77B\377/57\377%+,\377\40$&\377.11\377\20\21\22\377\0\0\0\377\210" - "\212\205\377\233\234\226\377\270\270\257\377\271\271\260\377\251\251" - "\240\377\232\232\223\377\212\214\206\377\211\213\206\377\200}l\377\203" - "\177r\377\210\212\205\377\267\267\256\377\275\275\265\377\277\277\266" - "\377\227\227\221\377\202\0\0\0\377\1\2\3\3\377\202\0\0\0\377$\210\211" - "\203\377\211\214\207\377ojZ\377c\\J\377aZH\377`YG\377_XF\377\\VD\377" - "ZTC\377XQA\377VP@\377TN>\377RL=\377PJ;\377NI:\377SM\77\377]XK\377586" - "\377312\377\77..\377<22\377:66\377>EE\3776DD\377!00\377!..\373\16\11" - "\11\210\16\11\11~\16\11\11p\16\11\11_\16\11\11O\16\10\10<\15\10\10(\12" - "\6\6\25\0\0\0\5\0\0\0\2\205\0\0\0\0\12\210\212\205,jkh}[[[\231]]]\231" - "\177\177\177\231xxx\231222\231___\230\26\26\26\227\16\16\16\3\212\0\0" - "\0\0\34\0\0\0\263\24\24\24\376[`a\377\77EH\377\221\226\227\377\223\230" - "\232\377GOR\377:BD\3773:=\377+13\377\"'(\377\30\33\34\377&)*\377\37\"" - "#\377\0\0\0\377CC>\377\210\213\206\377\210\212\205\377\212\214\207\377" - "\212\214\206\377\207\212\206\377\206\210\202\377{ua\377xqY\377ypZ\377" - "\206\207\201\377\210\212\205\377\253\254\243\377\202\273\273\262\377" - "'\260\260\247\377~~x\377^^Y\377\204\204~\377\222\223\215\377\211\213" - "\206\377wui\377d\\J\377b\\I\377aZG\377_XF\377]WE\377\\UD\377YSB\377W" - "Q@\377UO\77\377TM>\377RL<\377OI:\377NG9\377XSF\377XTF\377-34\377SMN\377" - "e]]\377G==\3773//\377155\377,66\377#00\376\20\12\12\222\17\12\12\204" - "\17\12\12z\17\12\12m\17\12\12\\\20\12\12J\20\11\11""7\22\12\12#\23\12" - "\12\20\210\0\0\0\0\6LLL\31YYY\231^^^\230TTT\231EEE\231666\231\202(((" - "\231\1\10\10\10G\212\0\0\0\0\26\0\0\0L\3\3\3\377SWY\377>DE\377/68\377" - "29;\3775<>\37729;\377,24\377&+-\377\36\"$\377\25\31\32\377\36!!\377!" - "%&\377\3\3\4\377\35\33\25\377tmX\377xra\377zvf\377{ve\377xr_\377umV\377" - "\202vnX\377\202umW\377+\203\202z\377\207\211\204\377\220\222\214\377" - "\236\237\230\377\250\251\241\377\247\250\240\377\234\235\227\377\215" - "\217\211\377\211\214\207\377vsg\377e^K\377c\\J\377b[H\377`YG\377^WE\377" - "]VE\377ZTC\377XRA\377VP@\377UN\77\377RM=\377QK<\377OI;\377LF8\377ZUH" - "\377IG>\377,35\377^AA\377oZZ\377nuu\377`nn\377BNN\377,66\377(88\377-" - "--\351\34\23\23\223\13\7\7m\17\12\12d\20\12\12U\21\13\13E\22\12\12""3" - "\23\13\13!\23\12\12\20\211\0\0\0\0\10NNN\206PPP\231JJJ\230\77\77\77\231" - "111\231\"\"\"\231\30\30\30\231\5\5\5\231\212\0\0\0\0\5\0\0\0\14\0\0\0" - "\377'()\377IMO\377*/1\377\202+02\377\16).0\377%*,\377\37$&\377\30\34" - "\35\377\23\26\27\377\30\33\34\377\35\40!\377\7\11\11\377\24\23\17\377" - "rjT\377ohS\377qiT\377qjT\377rjU\377\204skU\377\5rkU\377phR\377wra\377" - "\201\201x\377\206\210\203\377\202\207\211\205\377%\205\206\200\377}{" - "q\377keS\377e^J\377d]J\377c]J\377`YG\377_XF\377]VE\377[UD\377YSB\377" - "WQ@\377UO\77\377TN>\377RL=\377PJ;\377MH9\377OJ;\377[VI\377797\377034" - "\377C,,\377H77\377YKK\377\\]]\377[ww\377U\177\177\3779WW\377$==\377\36" - "==\377,++\331G>>\230\16\7\7M\22\13\13\77\22\12\12.\23\13\13\35\23\12" - "\12\14\212\0\0\0\0\10AAA~===\231444\231)))\231\35\35\35\231\17\17\17" - "\231\1\1\1\231\0\0\0\14\212\0\0\0\0\24\0\0\0o\0\0\0\3779=>\3776;;\377" - "\40$'\377!&(\377\37$&\377\35!\"\377\30\33\34\377\23\26\27\377\24\27\30" - "\377\25\30\31\377\30\32\33\377\11\12\12\377\22\21\15\377qiS\377meQ\377" - "ngR\377ogR\377ohR\377\204phS\377\4ohR\377ogR\377ngR\377ldO\377\202kd" - "O\377\1jbN\377\202g`K\377#e^K\377d]J\377b\\I\377OI:\377E@3\377[UC\377" - "\\VD\377ZSB\377XQA\377VP@\377TN>\377SM=\377QK<\377OI:\377MH8\377YTG\377" - "YSF\377.45\377C46\377M33\377\77//\377:00\377A>>\377IPP\377J__\377Kzz" - "\377E\211\211\377(WW\377%bb\3770\223\223\377[]]\262\22\13\13""7\21\12" - "\12&\24\13\13\26\25\13\13\2\213\0\0\0\0\7///\21)))b\36\36\36\231\24\24" - "\24\231\7\7\7\230\0\0\0\231\0\0\0&\212\0\0\0\0\11\0\0\0\5\0\0\0\365\10" - "\10\10\377/23\377'*+\377\30\32\34\377\26\31\33\377\24\30\31\377\23\26" - "\27\377\204\24\27\30\377\7\5\6\7\377\27\26\22\377leP\377jcO\377kdO\377" - "leP\377meP\377\204meQ\377+meP\377leP\377ldP\377jcO\377jcN\377iaN\377" - "h`L\377f_L\377e]J\377c\\I\377a[I\377`YG\377aZG\377>:/\377\1\2\1\377A" - "<0\377YSB\377VP@\377UO\77\377SM>\377QL<\377PJ;\377MH9\377LF8\377YTG\377" - "A@;\377-36\377J//\3779%%\3773''\3778,,\371733\377155\3774BB\3779VV\377" - "9dd\3778}}\3774\215\215\377\210\311\311\377\271\345\345\377;\200\200" - "\373N;;#\25\13\13\10\216\0\0\0\0\2\27\27\27\11\12\12\12<\202\0\0\0\231" - "\1\0\0\0w\213\0\0\0\0\10\0\0\0\21\0\0\0\372\12\13\14\377'*+\377$&'\377" - "\25\30\31\377\24\27\30\377\23\26\27\377\202\24\27\30\377\4\23\26\27\377" - "\25\30\31\377\0\0\0\377+)!\377\202haM\377\3ibN\377jcN\377jcO\377\203" - "kcO\377,kcP\377jcO\377jcN\377iaN\377haM\377h`M\377g`L\377e^K\377d]J\377" - "c\\I\377bZH\377aZH\377_XF\377^WE\377QL=\377\3\2\2\377\0\0\0\377\33\30" - "\24\377VP@\377TN>\377RL=\377PJ;\377NH:\377LG8\377WQD\377YSG\377056\377" - "0-.\3779!!\3775\"\"\375!\21\21\261\23\11\11\212\27\14\14\2066,,\344," - "77\377'99\377'AA\3779\202\202\3778\230\230\377\361\373\373\377\371\375" - "\375\377E\255\255\377-\216\216\377kuu\271\221\0\0\0\0\3\0\0\0""4\0\0" - "\0\224\0\0\0\7\213\0\0\0\0\7\0\0\0%\0\0\0\375\3\3\4\376\36\40!\377\35" - "\40!\377\32\34\35\377\25\30\31\377\203\24\27\30\377\5\7\10\11\377\0\0" - "\0\377b\\I\377f^K\377f_L\377\202g`M\377\1gaL\377\204iaN\377\202haM\377" - ".g`M\377f_L\377f^K\377d]K\377c\\J\377b[H\377aZH\377`YG\377_XF\377XRB" - "\377\31\26\20\377\0\0\0\377\16\10\1\377\6\3\0\377\0\0\0\377IC6\377RL" - "=\377PJ;\377OI:\377MG8\377NH:\377YSG\377@A;\377.46\3771\34\34\355\32" - "\14\14\253\20\7\7\220\17\7\7\210\21\10\10|\22\11\11s\20\10\10f\37\22" - "\22p7**\307\"99\377:\204\204\3777\217\217\377o\301\301\377\311\357\357" - "\377\377\377\377\377\352\366\366\377\235\325\325\3774ee\374\27""00\375" - "5\211\211\377*hh\376\27\36\36\361\216\0\0\0\0\1\0\0\0\3\214\0\0\0\0\13" - "\0\0\0\30\0\0\0\357\0\0\0\377\6\7\7\377\22\24\25\377\26\31\32\377\25" - "\31\32\377\23\26\27\377\5\6\6\377\0\0\0\37762(\377\202c\\I\377\2c]J\377" - "d]K\377\203e^K\377\1f_L\377\202e^K\3771f^K\377e^K\377d]K\377d]J\377c" - "\\J\377c\\I\377b[I\377c\\I\377YSB\377\77:/\377\24\22\17\377\1\1\1\377" - "\4\2\0\377\201H\12\377_5\6\377e8\6\377a6\6\377T8\27\377QJ;\377NI;\377" - "MH9\377LF8\377XSG\377VQD\377-35\377%'(\332\12\4\4\214\15\5\5\212\16\6" - "\6\201\16\6\6y\20\7\7l\21\10\10a\22\11\11T\23\12\12J\15\7\7>\15\6\6""5" - "Q{{\365O\177\177\364.\217\217\377/\224\224\377X\253\253\377\265\340\340" - "\377\315\351\351\377\27EE\3778\230\230\377J\305\305\377C\305\305\377" - "\32NN\377\21##\374\233\0\0\0\0\3\0\0\0\3\0\0\0g\0\0\0\366\204\0\0\0\377" - "\5\0\0\0\376MI\77\377ytd\377nhX\377^XF\377\202aZH\377\1b[H\377\204b[" - "I\3773b[H\377^XE\377WQA\377OI:\377KE7\377F@4\377@;/\37784*\3770,#\377" - "'$\35\377\34\33\25\377\16\15\12\377\0\0\1\377H&\2\377vA\10\377\302j\17" - "\377\303l\16\377\221P\13\377^4\6\377f8\5\377b;\17\377VA$\377SQG\377V" - "RF\377376\377.47\377\15\7\7\220\13\4\4\204\14\4\4z\14\5\5q\15\5\5f\16" - "\7\7Z\17\7\7L\21\10\10=\24\12\12""0\23\12\12&\24\12\12\33\0\0\0\2\0\0" - "\0\0\202kk,juu\274E\206\206\371*\216\216\377\33\\\\\377\33RR\3777\222" - "\222\377X\313\313\377K\311\311\377\27HH\377\21""44\377\30\27\27\323\234" - "\0\0\0\0\14\0\0\0\4\0\0\0C\0\0\0p\0\0\0|\13\14\15\203.46\377167\377Y" - "VM\377yrc\377tn_\377hcR\377]WE\377\202_XF\377\203`YG\377\12`XF\377_X" - "F\377`XF\377^XF\377XRA\377RL=\377JE7\377B=1\377;7+\37762(\377\20230&" - "\377\31\77:/\377XJ4\377e;\13\377e8\6\377\223Q\13\377\325u\20\377\333" - "x\20\377\264c\15\377|D\11\377a4\5\377f9\10\377Y\77\37\377/44\376\21\21" - "\23\231\11\3\3{\11\3\3r\11\3\3h\12\4\4]\12\4\4Q\14\5\5C\15\6\6""6\17" - "\6\6%\25\12\12\24\25\12\12\11\25\14\14\2\205\0\0\0\0\12\200ooJ,PP\372" - "\36[[\377\35YY\377,{{\377\40\\\\\377\22""88\377\35VV\377\11\33\33\377" - "\33\16\16\6\232\0\0\0\0\20\0\0\0\1\0\0\0\13\0\0\0\24\0\0\0\36\0\0\0'" - "\0\0\0""1\15\17\20J*/1\315,25\377:=;\376c`S\377uo`\377qk]\377e_O\377" - "]VE\377\\VD\377\202]WE\377\202]VE\377\4\\VD\377\\UD\377[UC\377[TC\377" - "\203ZTC\377\31YSB\377XQA\377VP@\377TN>\377SM=\377RL>\377^@\34\377g7\5" - "\377o=\7\377\247\\\14\377\313p\20\377\341|\22\377\312o\17\377\217O\13" - "\377f8\6\377h8\4\376O*\5\302\26\13\2r\6\2\2\\\6\2\2S\7\2\2E\6\2\2""9" - "\7\2\2)\5\2\2\31\3\2\2\13\211\0\0\0\0\11J::\227\35WW\377\34WW\377\32" - "OO\377\26CC\377\22""77\377\16,,\377\14##\377\24\14\14m\233\0\0\0\0\14" - "\0\0\0\11\0\0\0\23\0\0\0\35\0\0\0&\0\0\0/\0\0\0:\0\0\0""9\34\40\40\201" - ",24\354+25\377\77A=\377e`T\376\202qk\\\377\2g`Q\377]WF\377\204ZTC\377" - "\10YSB\377YRB\377XRB\377XRA\377WQ@\377UP@\377UO\77\377TM>\377\202RM=" - "\377\25QK<\377PJ;\377NI;\377RE/\377c:\14\377b6\5\377~F\11\377\254^\15" - "\377\306m\17\377\335z\21\377\334y\21\377\225R\13\376i:\7\377g9\7\377" - "Q+\3\2330-(O\24\25\23""3\0\0\0%\0\0\0\33\0\0\0\21\0\0\0\10\212\0\0\0" - "\0\10$HH\375\31LL\377\27EE\377\24>>\377\21""22\377\15''\377\11\34\34" - "\377\11\17\17\366\233\0\0\0\0\24\0\0\0\6\0\0\0\17\0\0\0\31\0\0\0!\0\0" - "\0+\0\0\0""4\0\0\0>\0\0\0G\0\0\0J\36!#\232,24\364,35\3776:9\377^[N\377" - "lfX\377nhZ\377keV\377b[L\377YSC\377XRA\377\202VP@\377\35VP\77\377UO\77" - "\377TN>\377SM>\377SM=\377RL=\377QK<\377PJ;\377OI:\377NH9\377MH9\377N" - "H:\377URG\377_E&\377f9\10\377d7\6\377\205I\11\377\252]\15\377\300j\17" - "\377\330w\21\377\343|\21\377\214M\12\377mF\33\377\211\213\205\377qso" - "\202\0\0\0\37\0\0\0\26\0\0\0\15\0\0\0\3\213\0\0\0\0\10'88\364\24==\377" - "\21""55\377\16,,\377\13\"\"\377\7\27\27\377\5\20\20\377\22\13\13\22\233" - "\0\0\0\0\31\0\0\0\10\0\0\0\22\0\0\0\32\0\0\0$\0\0\0-\0\0\0""6\0\0\0\77" - "\0\0\0I\0\0\0Q\0\0\0W\25\30\31\212-35\370-35\376-25\377AB>\376d^Q\377" - "hcU\377gbT\377hcU\377e_R\377_YK\377WRC\377SM=\377RL=\377QL<\377\202P" - "J;\377\26OI:\377OI;\377SM@\377YSF\377ZUH\377WRF\377UPD\377;<8\376+37" - "\377U7\24\374g8\6\375f9\6\377\202G\12\376\247\\\14\377\275g\16\377\326" - "s\15\377\216\211\177\377\240\242\236\377\326\326\325\377\203\205\200" - "\335\31\33\31\20\0\0\0\6\215\0\0\0\0\7=%%\37(##\263\13\"\"\377\10\32" - "\32\377\5\22\22\377\4\17\17\377\20\13\13M\234\0\0\0\0\15\0\0\0\12\0\0" - "\0\22\0\0\0\32\0\0\0$\0\0\0,\0\0\0""4\0\0\0=\0\0\0F\0\0\0N\0\0\0V\0\1" - "\0^\7\10\10p&+,\312\202.46\377\14/56\3767:9\377OLC\377a\\O\377e_R\377" - "c]P\377b\\O\377`[N\377_ZL\377^XL\377]XL\377\\WJ\377\202[UH\377\23XSF" - "\377HF=\377277\376.46\377.57\377\37#%\256\0\1\1d\15\7\0d[1\5\310g9\7" - "\377h9\7\376wA\11\377\221uU\377\203\206\202\377\357\357\356\377\377\377" - "\377\376\240\242\235\377\204\206\201\373\210\212\205|\217\0\0\0\0\5!" - "\22\22\14\24\16\16\203\7\16\16\375\5\20\20\377\14\14\14\324\235\0\0\0" - "\0""4\0\0\0\10\0\0\0\20\0\0\0\31\0\0\0!\0\0\0(\0\0\0""1\0\0\0""8\0\0" - "\0@\0\0\0H\0\0\0O\0\0\0U\0\0\0[\3\4\4f\17\22\23\200#')\275-34\370/57" - "\377.46\377056\377277\376599\3778;9\377:<;\377<=;\3779<9\3777:9\3774" - "87\377066\376.46\377/57\377,24\362\32\36\37\227\5\6\6i\0\0\0Z\0\0\0T" - "\0\0\0N\0\0\0D\36\20\1NY1\5\242g8\6\377\203}r\377\207\211\204\376\270" - "\271\267\377\352\352\352\377\377\377\377\377\365\365\364\376\305\306" - "\304\377\202\204\200\335222\324aaa\354\\\\\\\352\34\34\34\266\215\0\0" - "\0\0\3\20\13\13w\10\16\16\366\23\13\13\2\235\0\0\0\0""4\0\0\0\3\0\0\0" - "\14\0\0\0\23\0\0\0\33\0\0\0#\0\0\0*\0\0\0""1\0\0\0""7\0\0\0=\0\0\0D\0" - "\0\0K\0\0\0P\0\0\0U\0\0\0W\0\0\0\\\10\12\12n\23\26\26\204\37$%\243%)" - ",\305*02\343+13\357,24\364,34\365,23\364+13\355)/0\333#')\263\31\34\35" - "\214\13\15\15m\0\0\0W\0\0\0S\0\0\0O\0\0\0J\0\0\0C\0\0\0=\0\0\0""6\0\0" - "\0""0\0\0\0%\27\12\0(\203\204}\315\207\211\204\351\206\210\203\377\212" - "\214\207\377\245\247\243\376\344\344\344\377\377\377\377\377HHH\377m" - "mm\377\251\251\251\376\245\245\245\376YYY\377\36\36\36\347\216\0\0\0" - "\0\1\22\12\12\2\237\0\0\0\0\23\0\0\0\5\0\0\0\14\0\0\0\23\0\0\0\32\0\0" - "\0\40\0\0\0'\0\0\0,\0\0\0""2\0\0\0""8\0\0\0=\0\0\0B\0\0\0G\0\0\0I\0\0" - "\0M\0\0\0Q\0\0\0R\0\0\0P\0\0\0M\0\0\0Q\202\0\0\0S\36\0\0\0Q\0\0\0L\0" - "\0\0I\0\0\0M\0\0\0L\0\0\0I\0\0\0E\0\0\0@\0\0\0=\0\0\0""7\0\0\0""1\0\0" - "\0,\0\0\0%\0\0\0\37\0\0\0\31\0\0\0\22""111\16\0\0\0\0\211\211\204'\207" - "\211\204\214\207\211\204\353\202\204\177\377xzv\377QQQ\376xxx\377\256" - "\256\256\377\252\252\252\377^^^\377***\377\26\26\26\264\257\0\0\0\0#" - "\0\0\0\3\0\0\0\11\0\0\0\17\0\0\0\26\0\0\0\32\0\0\0\40\0\0\0%\0\0\0*\0" - "\0\0.\0\0\0""3\0\0\0""4\0\0\0""9\0\0\0:\0\0\0<\0\0\0\77\0\0\0A\0\0\0" - "@\0\0\0B\0\0\0A\0\0\0@\0\0\0>\0\0\0<\0\0\0;\0\0\0""8\0\0\0""4\0\0\0""1" - "\0\0\0,\0\0\0)\0\0\0$\0\0\0\37\0\0\0\32\0\0\0\24\0\0\0\16\0\0\0\11\0" - "\0\0\2\205\0\0\0\0\12\211\214\205Afgd\315[[[\377]]]\377{{{\377ppp\377" - "222\377^^^\376\25\25\25\374\14\14\14\4\261\0\0\0\0\14\0\0\0\3\0\0\0\7" - "\0\0\0\14\0\0\0\21\0\0\0\25\0\0\0\31\0\0\0\35\0\0\0\37\0\0\0\"\0\0\0" - "%\0\0\0'\0\0\0(\202\0\0\0*\17\0\0\0+\0\0\0)\0\0\0*\0\0\0(\0\0\0'\0\0" - "\0$\0\0\0\"\0\0\0\37\0\0\0\33\0\0\0\30\0\0\0\25\0\0\0\21\0\0\0\13\0\0" - "\0\6\0\0\0\2\211\0\0\0\0\6MMM3YYY\377^^^\376SSS\377DDD\377555\377\202" - "&&&\377\1\10\10\10s\265\0\0\0\0\11\0\0\0\2\0\0\0\4\0\0\0\7\0\0\0\11\0" - "\0\0\15\0\0\0\16\0\0\0\21\0\0\0\22\0\0\0\23\203\0\0\0\24\11\0\0\0\22" - "\0\0\0\21\0\0\0\20\0\0\0\16\0\0\0\14\0\0\0\11\0\0\0\6\0\0\0\3\0\0\0\2" - "\216\0\0\0\0\10MMM\336OOO\377III\376>>>\377000\377\"\"\"\377\26\26\26" - "\377\5\5\5\373\274\0\0\0\0\207\0\0\0\1\226\0\0\0\0\10AAA\313<<<\3773" - "33\377(((\377\34\34\34\377\17\17\17\377\1\1\1\377\0\0\0\22\331\0\0\0" - "\0\7""000\31(((\222\35\35\35\377\23\23\23\377\6\6\6\376\0\0\0\377\0\0" - "\0;\333\0\0\0\0\5\26\26\26\14\12\12\12[\0\0\0\371\0\0\0\377\0\0\0\303" - "\336\0\0\0\0\3\0\0\0P\0\0\0\362\0\0\0\11\337\0\0\0\0\1\0\0\0\3\377\0" - "\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377" - "\0\0\0\0\343\0\0\0\0", -}; - -static GdkPixdata pixdata_flipH = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 479, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 64, /* rowstride */ - 16, /* width */ - 16, /* height */ - /* pixel_data: */ - "\257\0\0\0\0\1\0\0\0\1\203\0\0\0\0\2\0\0\0\2\40J\207E\202\40J\207\377" - "\202\0\0\0\0\202\40J\207\377\2\40J\207E\40J\207\2\202\0\0\0\0\1\0\0\0" - "\2\203\0\0\0\0\4\40J\2072\40J\207\377\276\322\352\377\40J\207\377\202" - "\0\0\0\0\4\40J\207\377\276\322\352\377\40J\207\377\40J\2072\202\0\0\0" - "\0\1\0\0\0\2\202\0\0\0\0\4\40J\2072\40J\207\377\274\321\352\377\244\300" - "\342\377\204\40J\207\377\4\244\300\342\377\276\322\352\377\40J\207\377" - "\40J\2072\203\0\0\0\0\6\40J\2072\40J\207\377\274\321\352\377\223\264" - "\335\377\254\306\344\377\273\320\351\377\202\304\326\354\377\6\273\320" - "\351\377\254\306\344\377\223\264\335\377\276\322\352\377\40J\207\377" - "\40J\207@\202\0\0\0\0\2\40J\207\377\276\322\352\377\212\223\264\335\377" - "\2\276\322\352\377\40J\207\377\202\0\0\0\0\5\40J\207H\40J\207\377\276" - "\322\352\377\223\264\335\377\254\306\344\377\204\276\322\352\377\5\235" - "\273\337\377\223\264\335\377\276\322\352\377\40J\207\377\40J\207Q\202" - "\0\0\0\0\5\40J\207\11\40J\207R\40J\207\377\276\322\352\377\244\300\342" - "\377\204\40J\207\377\4\244\300\342\377\276\322\352\377\40J\207\377\40" - "J\207R\203\0\0\0\0\6\40J\207\2\40J\207\13\40J\207Y\40J\207\377\276\322" - "\352\377\40J\207\377\202\0\0\0\0\4\40J\207\377\276\322\352\377\40J\207" - "\377\40J\207Y\202\0\0\0\0\1\0\0\0\1\202\0\0\0\0\3\0\0\0\3\40J\207\13" - "\40J\207M\202\40J\207\377\202\0\0\0\0\202\40J\207\377\1\40J\207M\202" - "\0\0\0\0\1\40J\207\1\204\0\0\0\0\1\40J\207\3\227\0\0\0\0\1\0\0\0\3\244" -}; - -static GdkPixdata pixdata_flipV = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 500, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 64, /* rowstride */ - 16, /* width */ - 16, /* height */ - /* pixel_data: */ - "\225\0\0\0\0\5\40J\207\2\40J\207\11\40J\207H\40J\207\377\40J\2072\212" - "\0\0\0\0\7\0\0\0\3\40J\207\13\40J\207R\40J\207\377\276\322\352\377\40" - "J\207\377\40J\2072\210\0\0\0\0\12\40J\207\3\40J\207\13\40J\207Y\40J\207" - "\377\276\322\352\377\223\264\335\377\274\321\352\377\40J\207\377\40J" - "\2072\0\0\0\2\207\0\0\0\0\3\40J\207M\40J\207\377\276\322\352\377\203" - "\223\264\335\377\3\274\321\352\377\40J\207\377\40J\207E\207\0\0\0\0\11" - "\40J\207\377\276\322\352\377\244\300\342\377\254\306\344\377\223\264" - "\335\377\254\306\344\377\244\300\342\377\276\322\352\377\40J\207\377" - "\207\0\0\0\0\203\40J\207\377\3\276\322\352\377\223\264\335\377\273\320" - "\351\377\203\40J\207\377\211\0\0\0\0\5\40J\207\377\276\322\352\377\223" - "\264\335\377\304\326\354\377\40J\207\377\213\0\0\0\0\5\40J\207\377\276" - "\322\352\377\223\264\335\377\304\326\354\377\40J\207\377\211\0\0\0\0" - "\203\40J\207\377\3\276\322\352\377\223\264\335\377\273\320\351\377\203" - "\40J\207\377\207\0\0\0\0\11\40J\207\377\276\322\352\377\244\300\342\377" - "\235\273\337\377\223\264\335\377\254\306\344\377\244\300\342\377\276" - "\322\352\377\40J\207\377\205\0\0\0\0\5\0\0\0\3\0\0\0\0\40J\207M\40J\207" - "\377\276\322\352\377\203\223\264\335\377\3\276\322\352\377\40J\207\377" - "\40J\207E\210\0\0\0\0\10\40J\207Y\40J\207\377\276\322\352\377\223\264" - "\335\377\276\322\352\377\40J\207\377\40J\2072\40J\207\2\211\0\0\0\0\5" - "\40J\207R\40J\207\377\276\322\352\377\40J\207\377\40J\2072\211\0\0\0" - "\0\1\40J\207\1\202\0\0\0\0\3\40J\207Q\40J\207\377\40J\207@\213\0\0\0" - "\0\1\0\0\0\1\205\0\0\0\0\202\0\0\0\2\1\0\0\0\1\202\0\0\0\0", -}; - -static GdkPixdata pixdata_resize = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 785, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 128, /* rowstride */ - 32, /* width */ - 32, /* height */ - /* pixel_data: */ - "\300\0\0\0\0\220\40J\207\377\202\0\0\0\0\202\210\212\205\377\202\0\0" - "\0\0\202\210\212\205\377\202\0\0\0\0\202\210\212\205\377\202\0\0\0\0" - "\202\210\212\205\377\220\40J\207\377\202\0\0\0\0\202\210\212\205\377" - "\202\0\0\0\0\202\210\212\205\377\202\0\0\0\0\202\210\212\205\377\202" - "\0\0\0\0\202\210\212\205\377\202\40J\207\377\214r\237\317\377\202\40" - "J\207\377\220\0\0\0\0\202\40J\207\377\214r\237\317\377\202\40J\207\377" - "\220\0\0\0\0\202\40J\207\377\202r\237\317\377\2104e\244\377\202r\237" - "\317\377\202\40J\207\377\216\0\0\0\0\202\210\212\205\377\202\40J\207" - "\377\202r\237\317\377\2104e\244\377\202r\237\317\377\202\40J\207\377" - "\216\0\0\0\0\202\210\212\205\377\202\40J\207\377\202k\231\312\377\210" - ":j\250\377\202k\231\312\377\202\40J\207\377\220\0\0\0\0\202\40J\207\377" - "\202k\231\312\377\210:j\250\377\202k\231\312\377\202\40J\207\377\220" - "\0\0\0\0\202\40J\207\377\202e\223\306\377\210\77o\253\377\202e\223\306" - "\377\202\40J\207\377\216\0\0\0\0\202\210\212\205\377\202\40J\207\377" - "\202e\223\306\377\210\77o\253\377\202e\223\306\377\202\40J\207\377\216" - "\0\0\0\0\202\210\212\205\377\202\40J\207\377\214`\216\302\377\202\40" - "J\207\377\220\0\0\0\0\202\40J\207\377\214`\216\302\377\202\40J\207\377" - "\220\0\0\0\0\220\40J\207\377\206\0\0\0\0\202.46\377\206\0\0\0\0\202\210" - "\212\205\377\220\40J\207\377\206\0\0\0\0\202.46\377\206\0\0\0\0\204\210" - "\212\205\377\224\0\0\0\0\202.46\377\210\0\0\0\0\202\210\212\205\377\224" - "\0\0\0\0\202.46\377\232\0\0\0\0\212.46\377\202\0\0\0\0\202\210\212\205" - "\377\222\0\0\0\0\212.46\377\202\0\0\0\0\204\210\212\205\377\224\0\0\0" - "\0\202.46\377\210\0\0\0\0\202\210\212\205\377\224\0\0\0\0\202.46\377" - "\236\0\0\0\0\202.46\377\206\0\0\0\0\202\210\212\205\377\226\0\0\0\0\202" - ".46\377\206\0\0\0\0\204\210\212\205\377\236\0\0\0\0\202\210\212\205\377" - "\260\0\0\0\0\212.46\377\202\0\0\0\0\202\210\212\205\377\222\0\0\0\0\212" - ".46\377\202\0\0\0\0\204\210\212\205\377\236\0\0\0\0\202\210\212\205\377" - "\240\0\0\0\0\202\210\212\205\377\202\0\0\0\0\202\210\212\205\377\202" - "\0\0\0\0\202\210\212\205\377\202\0\0\0\0\202\210\212\205\377\202\0\0" - "\0\0\202\210\212\205\377\202\0\0\0\0\202\210\212\205\377\202\0\0\0\0" - "\202\210\212\205\377\202\0\0\0\0\202\210\212\205\377\202\0\0\0\0\202" - "\210\212\205\377\202\0\0\0\0\202\210\212\205\377\202\0\0\0\0\202\210" - "\212\205\377\202\0\0\0\0\202\210\212\205\377\202\0\0\0\0\202\210\212" - "\205\377\202\0\0\0\0\202\210\212\205\377\202\0\0\0\0\202\210\212\205" - "\377\202\0\0\0\0\202\210\212\205\377", -}; - -static GdkPixdata pixdata_crop = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 2648, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 128, /* rowstride */ - 32, /* width */ - 32, /* height */ - /* pixel_data: */ - "\264\0\0\0\0\5\200\200r\5\211\211}\10\260\260\257\5\305\305\305\3\325" - "\325\325\2\231\0\0\0\0\11\206\206\200\1\206\206\200\7ikb\32qrk\37\301" - "\301\300\16\322\322\322\11\331\331\331\5\337\337\337\1\337\337\337\0" - "\227\0\0\0\0\11\206\206\200\7\206\206\200\40^_ZN`b]S\325\326\325\32\343" - "\343\343\21\336\336\336\14\337\337\337\7\337\337\337\2\226\0\0\0\0\13" - "\207\207\202\20qrm.\\^Zc\211\212\207d\263\264\261N\346\346\346#\352\352" - "\346\32\347\347\342\24\342\342\342\16\342\342\342\7\343\343\343\3\223" - "\0\0\0\0\17eib\3eib\21gidVXT\244\225\227" - "\224\312\316\316\315\315\355\355\353\253\336\337\334\212\303\304\300" - "m\247\250\243U\256\260\254E\300\302\2775\347\347\345$\347\347\346\31" - "\350\350\344\21\345\345\330\13\257\257\251\6\206\206\206\3\200\200\200" - "\1\214\0\0\0\0\24UUP\1UUP\15VWSDfgc\221\212\214\211\346\304\305\303\355" - "\363\363\362\332\342\342\337\300\306\307\303\240\257\261\254\202\261" - "\262\254h\255\257\252V\270\272\267C\342\344\342/\347\350\347\"\345\347" - "\343\27\332\337\321\20\337\341\335\20\327\327\327\11eee\1\213\0\0\0\0" - "\24UUP\0UUP\6UUP-YZV\226sur\376\344\344\344\375\365\365\364\366\344\344" - "\343\352\312\312\310\324\257\260\254\266\253\255\250\230\337\342\335" - "z\310\313\305f\300\304\276Q\336\342\336=\346\347\345-\340\343\340\37" - "\316\327\316\27\360\361\357!\361\361\361\23\214\0\0\0\0\24UUP\16UUP3" - "UVR\242\226\227\224\340\324\325\323\376\354\354\353\372\350\350\346\370" - "\321\322\320\363\244\245\242\345\270\271\266\315\321\322\317\262\332" - "\333\330\226\312\314\307~\313\315\310i\352\352\347W\347\347\344=\354" - "\355\3523\354\355\3532\224\225\2211wws\32\214\0\0\0\0\24UVP$dfah\223" - "\225\222\332\305\305\304\373\365\365\364\370\354\354\353\372\323\323" - "\320\373\271\272\267\371\253\255\251\362\310\311\306\340\333\334\331" - "\313\315\316\312\264\320\322\315\234\332\333\327\205\354\354\352o\361" - "\361\357Z\325\325\323O\242\242\240Iqql/UUN\24\214\0\0\0\0\24TVQ=noj\241" - "\346\346\346\350\366\366\365\367\352\352\350\362\345\345\343\374\274" - "\275\271\376\245\246\242\375\314\315\312\372\331\332\326\360\330\330" - "\324\343\303\304\277\321\330\331\325\273\350\350\346\243\356\356\354" - "\211\352\352\351~\266\266\265nUUQUUUM\40UUG\10\214\0\0\0\0\24TVQUghe" - "\327\336\337\336\365\366\366\365\375\347\347\345\373\316\317\314\376" - "\272\273\270\376\271\272\267\376\337\337\334\375\323\324\320\370\314" - "\316\310\361\330\332\326\350\344\344\342\325\360\360\357\304\370\370" - "\367\264\233\234\232\244kmipUUO)UUM\14UUG\2\212\0\0\0\0\25hh`\0hh`\12" - "VWSkegc\362\333\333\332\374\365\365\364\377\343\343\341\377\307\307\304" - "\377\272\273\267\377\273\275\271\376\323\324\320\376\320\321\314\374" - "\323\324\317\371\345\346\343\365\360\360\357\351\334\334\333\335\246" - "\247\245\320wyv\213TVQHUUM\16UUM\3\212\0\0\0\0\24```\0ab^\3bc^.bd_\212" - "opm\370\310\311\307\375\347\347\346\377\344\344\342\377\315\315\312\377" - "\300\301\275\377\273\275\270\377\303\305\300\377\322\323\317\376\341" - "\342\336\375\360\360\356\374\350\350\347\367\270\270\267\346TVR\306T" - "UQTUUO\26\214\0\0\0\0\24```\2_`^\14^`]\224}\177{\320\242\243\237\333" - "z|x\366\260\261\257\377\367\367\366\377\346\346\345\377\330\331\326\377" - "\322\323\317\377\331\332\326\377\343\344\341\376\357\357\355\376\373" - "\373\373\376\237\240\236\374kmi\303W[VUWZU\35UUO\4\214\0\0\0\0\23`b]" - "%egar\226\227\225\317\265\265\263\360\314\315\312\353\216\220\214\372" - "\217\221\215\377\261\262\260\377\350\350\347\377\337\340\336\376\320" - "\320\315\376\330\330\326\375\352\353\351\376\337\340\336\377\247\250" - "\246\377{}z\302Y[XtZ_Z\34Z_Z\10\214\0\0\0\0\22jle\17oqkWtvq\324\301\302" - "\300\361\340\340\337\376\340\341\336\377\266\270\263\377\211\214\207" - "\377xzv\377\307\310\307\377\326\326\325\376\325\326\323\376\334\334\332" - "\375\333\333\332\376\271\272\270\364]_[\331]_[tehe*\216\0\0\0\0\22jl" - "e\77\204\206\200\223\233\235\230\367\330\330\327\374\351\352\350\376" - "\335\337\331\377\315\317\311\377\263\266\257\377\223\225\220\377mok\377" - "\263\264\263\376\372\372\371\376\372\372\372\376\241\242\240\376gie\321" - "yyubwxt%ehe\5\214\0\0\0\0\23hhc\11hhc\37ikf\210\223\225\221\324\320\321" - "\317\375\337\340\335\376\340\341\334\377\326\331\322\377\317\322\313" - "\377\303\306\277\377\260\263\255\377\222\224\217\377\227\230\224\377" - "\237\240\235\377\232\233\231\377|}z\274[\\Xo\177\177{#\205\205\201\12" - "\214\0\0\0\0\23aaa\3cea\"dfag\206\210\204\311\257\260\255\374\353\354" - "\352\377\335\337\332\377\324\326\317\377\316\321\312\377\314\317\310" - "\377\312\315\307\377\306\310\303\377\265\266\262\377\215\217\212\376" - "ikf\375Z\\X\373Z\\W\211]^Z+442\3\215\0\0\0\0\24aaa\14adaQbea\345\274" - "\275\273\370\344\345\343\376\335\337\333\377\317\322\313\377\310\313" - "\304\377\306\311\302\377\304\307\300\377\312\315\307\377\316\320\314" - "\377\267\270\265\377\237\240\235\375\205\207\202\372ehc\361ad^~]b]#!" - "#!\4\0\0\0\2\203\0\0\0\1\207\0\0\0\0\7UUU\0UUU\1`d_Z\201\204\200\263" - "\263\265\263\366\325\326\324\375\335\336\333\377\202\315\317\312\377" - "\14\324\326\321\377\335\337\334\377\331\332\327\377\320\321\317\377\302" - "\303\301\376\246\247\244\375\222\224\220\373\200\202}\356gjd\310`c]c" - "LNL\31\14\14\14\7\202\0\0\0\5\1\0\0\0\4\202\0\0\0\3\1\0\0\0\2\202\0\0" - "\0\1\203\0\0\0\0\26img\13img.\200\203~\236\241\243\240\355\343\344\343" - "\374\347\347\346\376\337\340\335\377\317\321\314\377\321\322\317\377" - "\316\317\315\376\307\310\306\374\276\277\275\374\261\262\260\367\241" - "\242\240\356\215\217\213\335\202\204\200\304wzu\243dga{WYT=---\22\3\3" - "\3\12\0\0\0\11\202\0\0\0\10\33\0\0\0\7\0\0\0\6\0\0\0\5\0\0\0\3\0\0\0" - "\2\0\0\0\1\0\0\0\0gjd\1img\"img\205\247\250\246\322\316\316\315\375\360" - "\360\360\376\360\360\357\376\351\351\350\376\336\336\335\376\327\327" - "\326\375\264\266\264\371\203\205\200\363qtn\360hke\342be`\310^`[\234" - "VWRY994!\15\15\14\21\0\0\0\17\202\0\0\0\16\1\0\0\0\15\202\0\0\0\14\32" - "\0\0\0\12\0\0\0\11\0\0\0\7\0\0\0\5\0\0\0\4\0\0\0\3\0\0\0\0gjd\37hje^" - "ikf\316\270\271\267\361\342\342\341\376\322\322\320\375\251\253\247\372" - "\220\222\216\366\211\213\207\360\212\214\210\331\202\204\200\263mok\207" - "`b^iVYTVOQMHGIE;895'\30\30\25\27\3\3\3\22\202\0\0\0\21\203\0\0\0\20\31" - "\0\0\0\16\0\0\0\14\0\0\0\12\0\0\0\10\0\0\0\6\0\0\0\5\0\0\0\4\0\0\0\0" - "_a\\Wac^\253ehb\357\235\237\233\356\300\301\276\334\256\260\254\302\203" - "\205\200\260fhc\241^a\\\223]^Z\200WXTdHIEB00/+\30\31\30\40\7\13\7\32" - "\7\10\7\32\7\7\7\32\202\7\7\7\31\35\6\6\6\30\4\4\4\26\4\4\4\25\1\1\1" - "\25\0\0\0\24\0\0\0\23\0\0\0\16\0\0\0\13\0\0\0\11\0\0\0\10\0\0\0\6\0\0" - "\0\5\205\177u\14\\^Z\216\\^Z\344ad^\336dg`\303eha\232ae^cUWQ@<<8%\0\0" - "\0\23\0\0\0\24\4\4\4\30\11\11\11\35\16\16\16\40\16\22\16\"\16\23\16#" - "\15\17\15\"\203\16\16\15\"*\13\13\13\37\11\11\11\33\11\11\11\31\3\3\3" - "\31\0\0\0\30\1\1\1\26\1\1\1\20\1\1\1\14\1\1\1\12\0\0\0\11\0\0\0\10\0" - "\0\0\6jie6ac^H^a\\Nad^8cf_/be^&Y]V\32AC>\24##\40\17\0\0\0\14\0\0\0\16" - "\5\5\5\21\14\14\14\26\21\21\21\31\23\24\23\32\21\23\21\32\15\16\15\30" - "\20\20\14\30\25\25\14\30\25\25\15\27\21\21\15\25\15\15\15\23\16\16\16" - "\21\5\15\5\20\4\14\4\20\13\13\13\20\17\17\17\15\22\22\22\12\23\23\23" - "\11\5\5\5\10\202\0\0\0\6\4hgd$ehc\32bib\20bib\1\202\0\0\0\0\30\0\0\0" - "\2\0\0\0\3\0\0\0\5\0\0\0\6\0\0\0\7\5\5\5\11\14\14\14\13\22\22\22\15\23" - "\23\23\15\22\22\22\15\14\14\14\14\20\20\12\14\25\25\12\14\26\26\13\14" - "\21\21\14\13\15\15\15\12\16\16\16\11\5\17\5\10\5\20\5\10\17\17\17\10" - "\23\23\23\7\26\26\26\5\27\27\27\5\6\6\6\4\202\0\0\0\3\207\0\0\0\0\202" - "\0\0\0\1\210\0\0\0\2\207\0\0\0\3\1\0\0\0\2\207\0\0\0\1", -}; - -static GdkPixdata pixdata_rotate = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 2733, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 128, /* rowstride */ - 32, /* width */ - 32, /* height */ - /* pixel_data: */ - "\377\0\0\0\0\205\0\0\0\0\21!V\244Q\40T\241\252\36R\237\246\35P\235\243" - "\35O\233\240\34N\231\236\33M\227\234\33L\226\233\32K\225\232\32J\224" - "\231\31J\223\231\31I\222\231\30I\222\232\30I\223\234\30J\223\236\30J" - "\224\241\31K\225\34\217\0\0\0\0\30\40T\242\253([\247\377=q\271\377=q" - "\266\377\203E3d\243\0+e\257\221+e\257" - "\346+e\260\3775m\266\377\377\377\377\377\340\361\377\377,i\266\377,i" - "\270\36\2024e\244\0\204\0\0\0\0\34\34N\231\2366h\256\377x\256\352\377" - "f\233\332\377Z\220\320\377Y\217\315\377X\215\313\377W\214\311\377V\212" - "\306\377U\211\304\377>n\254\377\"Q\221\377\"P\221\377N\177\271\377^\217" - "\311\377\30D\207\377\16<\201A+c\253\3*c\254\344*c\255\377)c\256\3774" - "k\263\377\377\377\377\377\337\357\377\377+g\264\377+h\265\347,i\267\323" - ",i\270\326\204\0\0\0\0\26\33M\230\2343f\254\377r\247\344\377b\231\327" - "\377Y\216\315\377X\214\312\377W\212\310\377V\211\306\377R\204\301\377" - ">p\255\377\202" - "\377\15:~>*a\251\16)a\252\377}\242\320\377\247\302\345\377\253\305\347" - "\377\202\377\377\377\377\4\245\303\350\377\245\304\352\377k\231\322\377" - "+h\267\377\204\0\0\0\0\24\31J\225\2331c\251\377k\241\337\377a\226\324" - "\377X\214\313\377W\213\311\377V\211\306\377R\205\301\377Iy\266\377%R" - "\221\377My\262\377\205\264\343\377\204\264\342\377Kw\261\377\26A\202" - "\377\15""9|\377\15""9|;*b\251\3*b\252\365\344\357\375\377\206\377\377" - "\377\377\2\303\332\370\377+h\266\377\204\0\0\0\0\21\27I\223\232.`\246" - "\377c\233\332\377c\231\327\377`\226\323\377a\224\322\377`\222\317\377" - "Dv\264\377%R\222\377]\213\301\377i\231\315\377c\223\313\377c\224\312" - "\377h\227\314\377X\204\272\377\25A\202\377\14""8{8\2024e\244\0\2d\216" - "\303\276\274\322\355\377\204\377\377\377\377\3\240\300\347\377b\221\315" - "\257+h\266\23\204\0\0\0\0\26\26G\220\232!S\232\377\204\377" - "\36K\215\377Iv\262\377{\254\337\377[\214\306\377P\203\276\377Q\202\275" - "\377R\203\276\377R\203\300\377\\\216\306\377z\253\334\377Et\255\377\36" - "J\212\301\"L\210\0\40J\207\0*b\253\27""3i\260\361\353\366\377\377\315" - "\341\371\377+g\263\333,h\265\2\206\0\0\0\0\30\17$C\0\0\26:\23\0\21/\24" - "\0\13'\27\10+`r\24A\205\377Z\211\302\377h\232\322\377T\207\304\377O\201" - "\277\377M\177\274\377L\177\273\377O\177\274\377O\201\276\377P\204\300" - "\377W\212\305\377i\232\317\377[\211\300\377\20=\201\346\15:\177\23""4" - "e\244\0""9i\246\0W\207\304\324V\207\305\260\2024e\244\0\211\0\0\0\0\25" - "\4$TW*V\220\277Q\202\275\377_\221\315\377Y\215\312\377H}\275\377I|\273" - "\377I}\272\377J}\273\377K}\272\377K}\273\377K\177\275\377M\201\276\377" - "\\\221\313\377a\223\313\377P\177\271\377.]\235\257\17=\204/4e\244\0." - "h\2643.j\266\40\210\0\0\0\0\27\11\"A\22\11\40@\"\1\3\5\0\10-f\2213b\236" - "\366o\240\327\377[\220\314\377M\203\303\377F{\274\377Ez\272\377E{\271" - "\377Fz\272\377H|\271\377H|\272\377J~\274\377K\200\275\377L\201\300\377" - "Y\216\313\377{\256\343\377Fx\265\377)X\234\304\21A\211\2\40J\207\0\211" - "\0\0\0\0\27(^\245\222']\243\276\7\16\27\0\0\0\0\10\14,[q\36N\221\377" - "f\230\321\377i\235\327\377Bw\271\377Ax\271\377Ax\272\377Cw\271\377Ey" - "\273\377E{\273\377G|\274\377I~\277\377I\177\300\377L\203\303\377Q\210" - "\310\377q\246\337\377^\221\314\377\24D\215\377\25F\220\31\207\0\0\0\0" - "\32)Q\203\0)a\252\220\253\306\354\366\273\323\362\377.`\241\255\20.V" - "&\0\12&\14\14""2jb9g\245\347T\205\300\377i\234\326\377H~\300\377\77u" - "\267\377@v\271\377Ax\272\377Cy\273\377D{\274\377G|\277\377H~\301\377" - "H\177\302\377J\202\306\377]\224\324\377c\232\330\377]\221\316\3774g\254" - "\312\26I\225G\205\0\0\0\0\3""1`\234\0U\210\310b\200\250\335\377\202\377" - "\377\377\377\26\211\256\336\377Y\200\265\207\23""5a\21\5\14\26\0\12""2" - "p\2008f\244\350g\231\321\377X\215\311\377I\177\300\377>u\270\377@u\272" - "\377Bx\273\377Bx\275\377D{\277\377F|\301\377G\177\302\377I\201\306\377" - "W\220\323\377f\234\333\377n\243\337\3776h\256\365\27I\221m\205\0\0\0" - "\0\2+i\271}o\234\326\377\204\377\377\377\377\25\223\266\342\377)a\250" - "\250\0\0\1\0\4\13\24\0\13""0hg\37O\223\377q\242\331\377d\231\325\377" - ":r\270\377w\276\377@x\300\377Ay\303\377R\213\317" - "\377x\257\353\377W\213\315\377:i\250\370\14*X}\1\21*\33\205\0\0\0\0\2" - "\14R\253\377\224\271\347\377\202\363\377\377\377\202\377\377\377\377" - "\25\367\377\377\377\366\377\377\377\262\314\361\377-g\263\377\24""7d" - "H\0\0\0\0\0\0\0&\10(Y\251:f\240\370d\226\321\377Z\217\320\377I\201\306" - "\377;u\276\377=v\300\377P\212\320\377a\232\334\377k\240\336\3778d\242" - "\377\17""0a\246\0\0\0$\0\0\0\14\205\0\0\0\0\2)h\270\377)g\267\377\202" - ")g\266\377\31\337\361\377\377\377\377\377\3775o\272\377+h\266\377+g\264" - "\377,f\262\377\23""4`F\0\0\0\5\0\0\0\35\0\0\0""1\7#O\246)Y\234\377|\257" - "\347\377c\231\333\377;v\302\377s\40$[\242Z-h\265\211.i\265\213/k\270\2130m\271\206+S\210\0\265" - "\0\0\0\0", -}; - -static GdkPixdata pixdata_sharp = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 2570, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 128, /* rowstride */ - 32, /* width */ - 32, /* height */ - /* pixel_data: */ - "\233\0\0\0\0\3\0\6\0\3\17**\11\0\30\30\1\232\0\0\0\0\7\32""33\1\33""2" - "2\5#+1\21&.3\21.88\12AFF\5UUU\1\230\0\0\0\0\10---\2(13\15'34\37-37&3" - "7<\36III\15JJJ\10KKK\4\230\0\0\0\0\10---\12,13+,35^69:\77DEE&YYY\24F" - "FF\16<<<\6\226\0\0\0\0\12#..\3#..\14-34J167k7=>mJNMNRTS5BFF#277\33+0" - "0\15\225\0\0\0\0\13++5\4+13\32+23J177\2119>>\227JNMvQUS^KONJ49;8+33\"" - "&..\16\225\0\0\0\0\13++5\15-24L-34\3158<<\271HLK\236bfb\203KNMr9<=d," - "25S(24\37\"22\10\223\0\0\0\0\15)33\3)33\16,25j168\2669<=\331LON\304T" - "VT\255ILK\2319=>\216067b)24&'24\15\"33\2\222\0\0\0\0\15+05\10+14#,24" - "_179\272:>\77\355KNM\337SUS\315MPN\2758<<\255168~,24C\"33\10\"33\2\212" - "\0\0\0\0\4,35\1,35\3,35\5-35\6\202.35\7\16-35\7,35\5,35\4+05\36,25a-" - "35\3529==\367JML\357ada\343LNM\3279<=\312-24\271,05B((6\12\214\0\0\0" - "\0\4,35\34,35U,35\177-35\235\202.35\260\16-35\241,35\207,35]-35\2171" - "68\3219=>\367MPO\371UYV\363IML\352:>\77\342167\252+13D*03\27((6\3\211" - "\0\0\0\0\7)11\3)11\14-249;@ApHMM\256MRP\321NSQ\351\202MQP\371\15MQP\355" - "LRP\327GMK\264;@A\330:\77\77\376LON\375RVS\373MPO\3678==\362278\262-" - "24d!,,\15\37))\4\202\0\0\0\0\1\0\0\0\1\202\0\0\0\2\205\0\0\0\0\24+12" - "\15+12-49:\227DHH\336\\`^\377loj\377tvq\377uwr\377tvr\377rup\377loj\377" - "[^[\377LPN\377JMK\377^a^\377LON\3759=>\366-35\344,14\\))3\16\203\0\0" - "\0\1\1\0\0\0\2\202\0\0\0\3\1\0\0\0\4\205\0\0\0\0\33-24.-24\236SWU\327" - "ad`\367ada\377X[W\377SVR\377QTQ\377PSQ\377SVT\377VYW\377QTR\377VZW\377" - "X[X\377JMK\377:\77\77\376168\313,34O+13\35\40\40'\4\0\0\0\1\0\0\0\2\0" - "\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\204\0\0\0\0\31,35\40;@AfDIH\334" - "\\_\\\365ad`\377UXU\377KNL\377GJH\377FJH\377GJI\377JNM\377ORQ\377PTR" - "\377RUS\377PSQ\377FII\3778=>\330-35\214(01\23\34$$\6\0\0\0\2\0\0\0\3" - "\0\0\0\4\0\0\0\5\0\0\0\7\202\0\0\0\10\1\0\0\0\11\204\0\0\0\0\27,35LA" - "FF\244[_]\373]`^\377UXV\377DHF\377EHG\377FJH\377HLJ\377JNL\377MPO\377" - "ORQ\377QTR\377GJH\377AED\377MQP\377@EE\265+13^\31\34\36\7\0\0\0\4\0\0" - "\0\5\0\0\0\7\0\0\0\10\205\0\0\0\11\204\0\0\0\0\24,35oCHH\317knk\374W" - "ZW\377HKJ\377BEE\377JML\377MPO\377LPN\377MPN\377ORP\377OSQ\377EIH\377" - "<@@\377\77DC\377_a^\377FJJ\330+14\212\23\25\27\15\0\0\0\11\202\0\0\0" - "\13\1\0\0\0\14\202\0\0\0\13\1\0\0\0\11\202\0\0\0\10\204\0\0\0\0\24-3" - "4\205BGG\351pqn\376SVT\377BFE\377BEE\377GKJ\377JNL\377KOM\377MPN\377" - "JNL\377DHG\377:\77\77\3777<<\377AED\377cfb\377FJJ\355+13\246\17\21\22" - "\24\0\0\0\16\202\0\0\0\17\6\0\0\0\15\0\0\0\14\0\0\0\12\0\0\0\10\0\0\0" - "\6\0\0\0\5\203\0\0\0\0\35\0\0\0\1-24\222AEE\367pqm\376PTR\377\77DC\377" - "@ED\377BGF\377EJH\377GLJ\377JNL\377BGF\3777==\377388\3775::\377BFE\377" - "cfb\377EII\371+13\266\14\16\17\32\0\0\0\22\0\0\0\21\0\0\0\20\0\0\0\16" - "\0\0\0\13\0\0\0\7\0\0\0\5\0\0\0\4\0\0\0\3\202\0\0\0\0\6\0\0\0\1\0\0\0" - "\3-24\222@EE\367mpk\376NRP\377\202=AA\377\24>CB\377@DD\377AFE\377CHG" - "\377;@\77\377267\37749:\3775:;\377@ED\377ad`\377DIH\371+12\267\12\14" - "\14\40\0\0\0\25\0\0\0\21\0\0\0\16\0\0\0\13\0\0\0\10\0\0\0\5\0\0\0\3\202" - "\0\0\0\1\14\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\11*02\210\77DD\350ilh\376M" - "QO\377>\3779>\77" - "\3778=>\3777<=\37738:\377057\377278\3778==\377CGF\377VYV\377\77DC\332" - "%+-\225\6\6\7(\0\0\0\30\0\0\0\17\0\0\0\10\0\0\0\4\0\0\0\2\0\0\0\1\204" - "\0\0\0\0\33\0\0\0\5\0\0\0\15\0\0\0\32\37$&b5:;\260ORQ\373RUS\377JML\377" - "7<<\3775;<\3774:;\37749:\377279\377178\377067\377168\377\77CC\377KOM" - "\377JNL\3778<<\300\37$%w\3\4\4+\0\0\0\32\0\0\0\16\0\0\0\5\0\0\0\3\0\0" - "\0\1\205\0\0\0\0\32\0\0\0\6\0\0\0\20\0\0\0\36\17\22\23A%*+\1777<=\340" - "MQO\366RUS\377GJI\377;\77@\3774::\377178\377168\377178\3774:;\377\77" - "CC\377IMK\377KNL\3718=>\347)-.\222\20\23\23K\1\1\1(\0\0\0\31\0\0\0\15" - "\0\0\0\4\0\0\0\2\206\0\0\0\0\14\0\0\0\6\0\0\0\17\0\0\0\36\0\0\0.\23\26" - "\30X$)+\250@DD\331LON\365NQO\377GJI\377BFE\377AED\377\202@DD\377\14A" - "FE\377HKJ\377HKJ\367ADD\341(.0\261\30\34\36f\0\0\0""1\0\0\0#\0\0\0\26" - "\0\0\0\13\0\0\0\3\0\0\0\1\206\0\0\0\0\31\0\0\0\5\0\0\0\14\0\0\0\31\0" - "\0\0)\5\7\7<\16\21\21T%),\2476:;\340JNL\373VYV\375\\^Z\376^_[\376\\_" - "[\376Z]Y\376UXT\375IMK\3739<=\345'+.\266\24\27\30_\10\11\11=\0\0\0)\0" - "\0\0\34\0\0\0\21\0\0\0\10\0\0\0\1\207\0\0\0\0\13\0\0\0\1\0\0\0\6\0\0" - "\0\17\0\0\0\33\2\3\3(\6\7\7""6\26\31\32P'+,x499\2569=>\321;\77@\351\202" - ":@@\371\14:\77\77\3559==\327489\264*./\201\31\34\35R\12\14\14""6\3\4" - "\4'\0\0\0\33\0\0\0\21\0\0\0\12\0\0\0\4\0\0\0\1\210\0\0\0\0\12\0\0\0\2" - "\0\0\0\7\0\0\0\17\0\0\0\27\0\0\0\36\0\0\0!\23\26\26""6!&'\\'+.x).1\215" - "\202)02\231\13)/1\217(,/~\"()a\27\33\34;\0\0\0\36\0\0\0\33\0\0\0\26\0" - "\0\0\17\0\0\0\10\0\0\0\4\0\0\0\2\212\0\0\0\0\5\0\0\0\1\0\0\0\5\0\0\0" - "\11\0\0\0\15\0\0\0\17\211\0\0\0\20\5\0\0\0\17\0\0\0\15\0\0\0\13\0\0\0" - "\10\0\0\0\5\202\0\0\0\1\214\0\0\0\0\4\0\0\0\1\0\0\0\3\0\0\0\4\0\0\0\5" - "\210\0\0\0\6\202\0\0\0\5\4\0\0\0\4\0\0\0\3\0\0\0\2\0\0\0\1\220\0\0\0" - "\0\214\0\0\0\1\256\0\0\0\0", -}; - -static GdkPixdata pixdata_color = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 3368, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 128, /* rowstride */ - 32, /* width */ - 32, /* height */ - /* pixel_data: */ - "\206\200c\27\377\202\200\\\37\377\202\200T'\377\202\200L-\377\202\200" - "C1\377\202\20093\377\202\2003:\377\202\2001E\377\202\200,N\377\202\200" - "&V\377\202\200\36]\377\206\200\25c\377\206\200c\27\377\202\200\\\37\377" - "\202\200T'\377\202\200L-\377\202\200C1\377\202\20093\377\202\2003:\377" - "\202\2001E\377\202\200,N\377\202\200&V\377\202\200\36]\377\206\200\25" - "c\377\202\200c\27\377\202\377\357\256\377\202\377\352\265\377\202\377" - "\345\273\377\202\377\340\300\377\202\377\333\304\377\202\377\324\310" - "\377\202\377\315\311\377\202\377\311\316\377\202\377\307\325\377\202" - "\377\304\334\377\202\377\300\341\377\202\377\272\346\377\202\377\264" - "\353\377\202\377\255\360\377\202\200\25c\377\202\200c\27\377\202\377" - "\357\256\377\202\377\352\265\377\202\377\345\273\377\202\377\340\300" - "\377\202\377\333\304\377\202\377\324\310\377\202\377\315\311\377\202" - "\377\311\316\377\202\377\307\325\377\202\377\304\334\377\202\377\300" - "\341\377\202\377\272\346\377\202\377\264\353\377\202\377\255\360\377" - "\202\200\25c\377\202\200c\27\377\202\377\357\256\377\30\377\3075\377" - "\377\3039\377\377\276\77\377\377\270F\377\377\261N\377\377\251T\377\377" - "\241[\377\377\231`\377\377\220e\377\377\207i\377\377~m\377\377wr\377" - "\377py\377\377l\201\377\377g\212\377\377c\223\377\377^\233\377\377Y\244" - "\377\377R\254\377\377K\263\377\377D\272\377\377=\300\377\3776\305\377" - "\3772\310\377\202\362\211\336\377\202\200\25c\377\202\200c\27\377\202" - "\377\357\256\377\30\377\314:\377\377\311>\377\377\304E\377\377\276L\377" - "\377\267S\377\377\257Z\377\377\247a\377\377\237f\377\377\226k\377\377" - "\215o\377\377\205t\377\377}y\377\377w\200\377\377r\207\377\377n\220\377" - "\377i\231\377\377d\242\377\377^\252\377\377X\262\377\377P\271\377\377" - "I\300\377\377B\306\377\377;\313\377\3777\316\377\202\362\211\336\377" - "\202\200\25c\377\202\200n\40\377\202\377\367\264\377\30\377\324@\377" - "\377\321E\377\377\314K\377\377\306S\377\377\277[\377\377\270b\377\377" - "\260i\377\377\250o\377\377\240t\377\377\227x\377\377\216}\377\377\207" - "\202\377\377\201\211\377\377|\221\377\377w\232\377\377r\242\377\377m" - "\253\377\377g\263\377\377`\273\377\377X\302\377\377P\310\377\377H\316" - "\377\377B\323\377\377=\326\377\202\354\220\343\377\202\200\37o\377\202" - "\200n\40\377\202\377\367\264\377\30\376\336H\377\376\333M\377\377\326" - "T\377\377\320\\\377\377\312d\377\377\303l\377\377\273s\377\377\263y\377" - "\377\253\177\377\377\242\204\377\377\232\210\377\377\222\216\377\377" - "\214\225\377\377\207\234\377\377\202\245\377\377}\255\377\377w\266\377" - "\377q\275\377\377i\305\377\377a\314\377\377Y\322\377\377Q\330\377\376" - "J\334\377\376E\337\377\202\354\220\343\377\202\200\37o\377\202\200y(" - "\377\202\376\376\272\377\30\375\350P\377\375\345U\377\376\341\\\377\376" - "\333e\377\377\325n\377\377\316v\377\377\307~\377\377\277\205\377\377" - "\267\213\377\377\257\220\377\377\247\225\377\377\237\233\377\377\231" - "\241\377\377\223\251\377\377\216\262\377\377\211\272\377\377\203\302" - "\377\377{\311\377\377s\320\377\376k\327\377\376b\335\377\375Y\342\377" - "\375R\346\377\374M\351\377\202\350\226\351\377\202\200'z\377\202\200" - "y(\377\202\376\376\272\377\30\372\360X\377\373\355]\377\374\352e\377" - "\375\345m\377\376\337w\377\376\331\200\377\377\323\211\377\377\313\220" - "\377\377\303\226\377\377\273\234\377\377\263\242\377\377\254\247\377" - "\377\245\256\377\377\240\266\377\377\232\276\377\377\224\306\377\377" - "\216\316\377\377\206\325\377\376}\333\377\375t\341\377\374j\347\377\373" - "a\353\377\373Y\357\377\372T\361\377\202\350\226\351\377\202\200'z\377" - "\202z\200/\377\202\367\377\276\377\30\365\367^\377\367\365d\377\371\362" - "l\377\372\356u\377\374\351\177\377\375\343\211\377\376\335\222\377\377" - "\327\232\377\377\317\242\377\377\307\250\377\377\300\256\377\377\271" - "\264\377\377\262\273\377\377\254\302\377\377\246\312\377\377\240\322" - "\377\376\230\331\377\376\220\337\377\375\206\345\377\373|\353\377\372" - "r\357\377\370i\363\377\366a\366\377\364[\370\377\202\337\233\352\377" - "\202z-\200\377\202z\200/\377\202\367\377\276\377\30\356\373d\377\360" - "\372j\377\363\370s\377\366\365}\377\370\361\207\377\372\355\221\377\374" - "\347\233\377\375\342\244\377\376\333\254\377\377\324\263\377\377\314" - "\272\377\377\305\301\377\377\277\310\377\377\270\317\377\377\262\326" - "\377\376\252\335\377\375\242\343\377\374\231\351\377\372\217\356\377" - "\367\204\362\377\364y\365\377\361o\370\377\357f\372\377\355`\373\377" - "\202\337\233\352\377\202z-\200\377\202o\2004\377\202\357\377\301\377" - "\30\345\376i\377\347\375o\377\353\373x\377\357\371\203\377\362\367\216" - "\377\366\364\231\377\371\360\244\377\373\353\256\377\374\345\267\377" - "\375\337\277\377\376\330\306\377\377\322\315\377\377\313\324\377\376" - "\304\333\377\375\274\341\377\374\264\347\377\372\253\355\377\370\241" - "\361\377\365\226\365\377\361\213\370\377\356\177\372\377\352u\374\377" - "\346l\375\377\344f\376\377\202\326\237\352\377\202n2\200\377\202o\200" - "4\377\202\357\377\301\377\30\333\377n\377\336\376t\377\342\375}\377\346" - "\374\207\377\353\373\223\377\357\371\237\377\363\366\252\377\367\363" - "\265\377\371\356\277\377\373\351\310\377\374\343\320\377\375\335\330" - "\377\375\326\337\377\374\316\345\377\372\306\353\377\370\274\360\377" - "\366\262\364\377\362\247\367\377\356\234\372\377\352\220\373\377\345" - "\204\375\377\340y\376\377\334p\377\377\331j\377\377\202\326\237\352\377" - "\202n2\200\377\202d\2007\377\202\346\377\302\377\30\317\377p\377\322" - "\377v\377\327\376\200\377\334\376\213\377\341\375\227\377\347\374\243" - "\377\354\372\257\377\360\370\273\377\364\365\306\377\367\361\320\377" - "\371\354\331\377\372\346\341\377\372\337\350\377\370\327\355\377\366" - "\315\362\377\362\303\366\377\357\270\371\377\352\254\373\377\345\240" - "\374\377\340\224\375\377\332\210\376\377\325}\377\377\320s\377\377\315" - "m\377\377\202\314\240\352\377\202c5\200\377\202d\2007\377\202\346\377" - "\302\377\30\303\377r\377\306\377x\377\313\377\202\377\320\377\215\377" - "\326\376\232\377\334\376\246\377\342\375\263\377\347\374\277\377\354" - "\372\313\377\360\367\326\377\363\363\340\377\364\355\350\377\364\346" - "\357\377\362\335\364\377\357\322\370\377\353\307\372\377\346\273\374" - "\377\340\257\375\377\332\242\376\377\325\226\376\377\317\211\377\377" - "\311~\377\377\304t\377\377\301n\377\377\202\314\240\352\377\202c5\200" - "\377\202W\2007\377\202\335\377\303\377\30\266\377r\377\271\377y\377\276" - "\377\202\377\304\377\216\377\312\377\232\377\320\377\247\377\326\376" - "\264\377\334\376\301\377\342\374\315\377\347\373\331\377\353\367\344" - "\377\355\362\355\377\354\352\364\377\352\341\370\377\346\326\373\377" - "\340\312\375\377\332\275\376\377\324\261\376\377\316\244\377\377\310" - "\227\377\377\302\212\377\377\274\177\377\377\267u\377\377\264o\377\377" - "\202\301\241\352\377\202V5\200\377\202W\2007\377\202\335\377\303\377" - "\30\250\377q\377\253\377x\377\260\377\201\377\266\377\215\377\274\377" - "\232\377\303\377\247\377\312\377\264\377\320\377\301\377\327\376\317" - "\377\335\374\333\377\341\371\347\377\343\365\360\377\343\355\367\377" - "\340\343\373\377\333\330\375\377\325\313\377\377\317\276\377\377\310" - "\260\377\377\301\243\377\377\273\226\377\377\264\211\377\377\256~\377" - "\377\251t\377\377\246n\377\377\202\301\241\352\377\202V5\200\377\202" - "I\2005\377\202\324\377\301\377\30\232\377p\377\235\377v\377\242\377\200" - "\377\250\377\213\377\257\377\230\377\266\377\246\377\275\377\263\377" - "\304\377\301\377\313\377\317\377\321\375\334\377\326\373\350\377\330" - "\366\361\377\330\356\367\377\325\344\374\377\320\330\376\377\311\313" - "\377\377\302\275\377\377\273\257\377\377\264\242\377\377\255\224\377" - "\377\246\207\377\377\240|\377\377\233r\377\377\230l\377\377\202\265\237" - "\352\377\202H3\200\377\202I\2005\377\202\324\377\301\377\30\214\377m" - "\377\217\377t\377\224\377}\377\232\377\211\377\241\377\227\377\251\377" - "\245\377\260\377\263\377\270\377\301\377\277\377\317\377\305\376\335" - "\377\312\373\350\377\314\367\362\377\314\357\370\377\311\345\374\377" - "\304\331\376\377\275\313\377\377\266\275\377\377\257\257\377\377\247" - "\241\377\377\240\223\377\377\231\206\377\377\222z\377\377\215p\377\377" - "\212i\377\377\202\265\237\352\377\202H3\200\377\2029\2001\377\202\311" - "\377\277\377\30}\377j\377\201\377q\377\206\377{\377\215\377\210\377\225" - "\377\225\377\235\377\244\377\245\377\263\377\254\377\301\377\264\377" - "\320\377\272\376\335\377\276\374\351\377\300\367\362\377\300\360\371" - "\377\275\345\374\377\270\331\376\377\262\313\377\377\253\275\377\377" - "\243\256\377\377\233\240\377\377\223\221\377\377\213\203\377\377\204" - "w\377\377\177m\377\377{f\377\377\202\251\234\352\377\2028/\200\377\202" - "9\2001\377\202\311\377\277\377\30p\377h\377t\377o\377z\377z\377\201\377" - "\207\377\211\377\225\377\222\377\244\377\232\377\263\377\241\377\302" - "\377\250\377\320\377\256\376\335\377\262\374\351\377\264\367\362\377" - "\263\360\371\377\261\346\374\377\254\332\376\377\246\314\377\377\237" - "\275\377\377\230\257\377\377\217\240\377\377\207\221\377\377\177\203" - "\377\377xv\377\377rk\377\377nd\377\377\202\251\234\352\377\2028/\200" - "\377\202+\200.\377\202\275\377\273\377\30c\377f\377g\377n\377n\377y\377" - "v\377\207\377~\377\225\377\207\377\245\377\217\377\264\377\226\377\303" - "\377\235\377\321\377\242\376\336\377\245\374\351\377\247\367\362\377" - "\246\360\371\377\244\346\374\377\240\332\376\377\233\315\377\377\224" - "\276\377\377\215\257\377\377\204\240\377\377|\221\377\377s\202\377\377" - "ku\377\377ej\377\377ac\377\377\202\233\230\352\377\202),\200\377\202" - "+\200.\377\202\275\377\273\377\30X\377f\377]\377n\377c\377z\377k\377" - "\210\377t\377\227\377|\377\246\377\204\377\265\377\213\377\304\377\221" - "\377\321\377\225\376\336\377\230\374\352\377\232\367\362\377\232\360" - "\371\377\230\346\374\377\224\332\376\377\217\315\377\377\211\277\377" - "\377\202\260\377\377z\241\377\377q\222\377\377i\203\377\377au\377\377" - "Zj\377\377Ub\377\377\202\233\230\352\377\202),\200\377\202#\2001\377" - "\202\266\377\274\377\30N\377g\377S\377p\377Z\377{\377b\377\211\377j\377" - "\230\377r\377\247\377y\377\266\377\200\377\304\377\205\377\322\377\211" - "\376\337\377\214\374\352\377\215\367\363\377\215\360\371\377\214\347" - "\374\377\210\333\376\377\204\316\377\377~\300\377\377w\262\377\377p\243" - "\377\377g\224\377\377_\205\377\377Ww\377\377Pk\377\377Kc\377\377\202" - "\222\230\352\377\202!.\200\377\202#\2001\377\202\266\377\274\377\30F" - "\377i\377K\377q\377Q\377}\377Y\377\212\377a\377\231\377h\377\250\377" - "o\377\266\377v\377\305\377{\377\322\377~\376\337\377\201\374\352\377" - "\202\367\363\377\202\360\371\377\200\347\374\377}\333\376\377y\316\377" - "\377t\301\377\377m\262\377\377f\244\377\377^\225\377\377V\206\377\377" - "Nx\377\377Hm\377\377Cd\377\377\202\222\230\352\377\202!.\200\377\202" - "\32\2003\377\202\260\377\276\377\30\77\377k\377C\377s\377J\377~\377Q" - "\377\214\377Y\377\232\377`\377\251\377g\377\267\377l\377\305\377q\377" - "\323\377u\376\337\377w\374\352\377x\367\363\377x\360\371\377w\347\374" - "\377t\333\376\377p\317\377\377k\301\377\377e\263\377\377_\245\377\377" - "W\226\377\377O\207\377\377Gz\377\377An\377\377\367\335" - "\314c\372\353\335~\376\361\345\213\377\364\351\216\377\365\351\210\377" - "\363\346t\377\356\337f\377\337\316V\374\310\263\77\355\256\223\21\255" - "\247\212\6C\244\200\0\6\213\0\0\0\0\25\22.R\1\22.R\3\22.R\0\0\0\0\0\244" - "\206\0*\247\210\0\201\256\220\0\345\324\277@\373\354\336w\375\360\345" - "\225\375\356\343\220\376\357\343\221\376\360\343\207\376\360\342m\376" - "\361\340J\376\362\340H\377\362\342a\377\353\334z\375\271\240#\367\256" - "\221\17x\245\204\0\33\213\0\0\0\0\25\22.R\11\22.R\25\22.R\3\0\0\0\0\243" - "\206\0V\251\214\0\351\312\256\0\372\315\265\34\372\310\261/\366\277\247" - ".\364\262\231\32\371\265\233\40\371\304\2547\371\333\310Z\372\362\345" - "\201\376\361\336@\377\360\3345\377\357\340g\376\327\303I\374\276\244" - "#\270\247\211\0Z\212\0\0\0\0\26\17-Z\6\24/YA\24/Y\220\23""0YG\22/W\26" - "\244\206\0\\\250\212\0\364\266\230\0\370\267\234\12\304\265\233\25\225" - "\261\226\25z\247\212\5g\251\214\13m\263\230\32\226\300\250.\326\337\320" - "i\367\354\334V\376\361\337E\377\357\336I\376\346\326d\376\303\253.\326" - "\250\212\0w\212\0\0\0\0\26\22.Z(&Ai|.Hn\325\34""9b\233\27""3^K\206s\23" - "^\246\207\0\301\246\210\0\257\245\207\0m\242\205\0""9\242\201\0\36\242" - "y\0\12\240\200\0\20\244\207\0>\255\222\17\221\311\264A\352\345\325c\374" - "\362\342W\377\357\3331\377\357\341x\377\304\2566\350\247\212\0\210\210" - "\0\0\0\0\30\23,W\0\23,W\4\25""1\\c\77X}\260g\177\236\324+Hr\346\35:e" - "\231JQ:n\227~\7n\237\202\2""5\243\205\0\20\200\200\0\0\240\204\0\2\242" - "\204\0\22\243\205\0\33\242\206\0-\247\214\12Y\263\230\35\337\336\315" - "c\373\363\343]\377\356\331!\377\363\347\206\377\305\256;\364\246\210" - "\0\240\202\244\206\0\37\3\243\205\0\31\242\204\0\15\200\200\0\0\203\0" - "\0\0\0\30\23,W\4\23,W\37\36:c\231[t\225\343\254\301\331\351Xv\241\351" - ".Mx\336\37;^\247.\77GLTV/\20\243\205\0\2\200\200\0\0\240\204\0\24\242" - "\204\0\203\243\205\0\303\243\206\0\341\245\207\2\347\253\220\20\371\333" - "\312e\376\363\343a\377\357\330\33\377\366\352\212\377\304\255;\374\244" - "\206\0\361\202\244\206\0\337\3\243\205\0\261\242\204\0^\200\200\0\1\203" - "\0\0\0\0\35\24""0Y\20\24""0YrDb\212\270\201\234\273\342\260\307\337\364" - "Np\241\366=_\217\3573R~\325\34:c\240\27""3\\\77\24""0X\21\200\200\0\0" - "\237\203\0\11\241\203\0<\245\207\0\243\260\224\22\350\302\2544\374\330" - "\307f\376\355\341\215\376\364\345f\377\356\330\31\377\367\353\216\377" - "\345\327}\376\320\275Q\375\276\245'\370\252\214\6\343\245\206\0\177\242" - "\204\0+\200\200\0\0\202\0\0\0\0\35\24/[\12\34""7b1#@i\262a\202\251\326" - "\231\267\326\350\251\302\334\370=c\230\376;`\225\367=_\217\360/Nz\337" - "\40=h\223\31""6`B\22""0Y\20\222m\0\0\222m\0\3\246\210\0S\264\232\30\252" - "\307\262;\357\350\332~\373\363\351\222\376\363\344a\377\356\330\31\377" - "\366\352\205\377\362\346\216\376\337\316h\371\301\251+\343\254\217\11" - "\223\246\207\0""5\237\200\0\3\202\0\0\0\0\35\0\0""3\0\24/Z#\40i\220\27""5^;\24""1Y\6\24""1Y\0\244\200" - "\0\7\246\210\0O\255\221\14\307\317\273F\362\347\330m\374\361\341[\376" - "\357\332+\376\363\345r\376\342\321a\374\307\2615\347\245\211\0\260\240" - "\203\0%\226x\0\5\203\0\0\0\0\35\0\0""3\2\25""1ZM$Bk\313t\225\274\337" - "\177\246\317\364\223\265\332\373\242\274\331\3702Y\222\376!K\207\377" - ")Q\213\3767\\\222\373Fi\230\3622Q}\340\40=g\233\24""1Y0\24""1Y\6\244" - "\200\0\1\242\206\0\22\246\213\4F\254\221\13\321\320\275J\365\353\335" - "x\375\364\350\207\376\351\332o\376\304\2551\364\255\220\12\251\243\205" - "\0/\241\202\0\10\226x\0\0\203\0\0\0\0\34\23/Y.0Nw\177Kk\222\334\201\245" - "\314\361}\246\322\373\215\262\330\374\242\274\331\3702Z\222\376\40J\207" - "\377\"K\210\377(Q\213\3768^\223\372=`\220\3646V\202\326!\77h\232\30""4" - "_4\22-Y\15\233\205\0\3\241\206\0\24\244\207\0_\270\237!\300\314\267C" - "\367\337\316d\376\304\2541\370\264\230\26\246\245\206\0N\242\200\0\11" - "\242\200\0\1\204\0\0\0\0\10\24""0Zd;Z\202\265o\221\270\336\205\252\322" - "\372z\244\321\377\213\260\327\374\242\275\331\3702Z\222\376\202\40J\207" - "\377\20\"K\210\377.U\216\377Cg\231\372Cd\222\361-Kv\327\31""5`\210\23" - "/Y1\20""0P\3\236\200\0\2\236\200\0\22\245\207\1o\265\232\30\305\302\252" - ".\360\254\216\11\272\246\207\1T\243\202\0\22\206\0\0\0\0\22\24""0Y\207" - ":X\201\331y\233\303\341\204\252\322\366|\245\321\374\215\261\330\374" - "\242\275\331\3702Z\222\376\40J\207\377\"K\210\377&O\212\3761X\217\374" - "Ad\227\372Ef\225\3548W\204\325\32""5`\321\24/YV\20""0P\10\202\0\0\0\0" - "\5\243\202\0\31\243\206\0h\244\207\0\277\244\205\0M\244\205\0\25\207" - "\0\0\0\0\22\23.Y6\37f~;Z\201\315f\207\256\335\227\265\325\350" - "\254\303\336\371Af\232\376:_\224\373\77b\224\357;\\\214\336-Lx\345%C" - "n\255\34:dq\24""0Y\77\24/X\25\24/W\5\206\0\0\4\212\0\0\27\215\0\0U\216" - "\0\0z\215\1\0\223\214\3\0\237\215\0\0\215\216\0\0o\215\0\0@\206\0\0\13" - "\206\0\0\1\205\0\0\0\0\15\22""1U\11\23""1X)\26""2[\204>]\205\266v\221" - "\262\326\237\264\320\351Kn\236\356>_\217\3609X\205\333+Jv\263\31""6a" - "\232\24""1[\\\23/Y#\202\0\0\0\0\15\211\0\0\17\215\3\3""5\222\11\11q\241" - "\34\34\262\246$$\331\247%%\360\246\"\"\372\244\34\34\354\237\26\26\315" - "\230\16\16\234\214\0\0\\\212\0\0\"\211\0\0\11\205\0\0\0\0\34\13,Y\2\13" - ",Y\21\23/Yv;Ty\272m\205\245\313Fg\224\322*Hv\322\32""6b\265\23/Yw\21" - ".Y\35\17-Z\5\0\0\0\0\206\0\0\0\206\0\0\2\212\0\0""7\223\11\11\220\234" - "\25\25\362\270;;\371\310RQ\375\320ZY\377\320UU\377\305AA\377\26600\373" - "\245\34\34\366\223\7\7\335\215\2\2j\212\0\0\"\206\0\0\1\204\0\0\0\0\34" - "\13,Y\0\13,Y\2\17+X\25\37:dW#=f\266\34""8b\316\31""6`\200\26""2\\8\23" - "/Y\21\21.Y\4\17-Z\0\0\0\0\0\206\0\0\2\206\0\0\20\216\0\0\216\245\35\35" - "\346\307II\375\324VV\376\325JJ\376\322;;\377\317//\377\313&&\377\307" - "..\376\30044\375\262--\370\223\7\7\335\214\0\0\\\206\0\0\13\206\0\0\0" - "\0\6\0\34U\2\23.Y\32\24/YC\24/YO\23/X,\22""0X\15\204\0\0\0\0\20\215\0" - "\0\14\215\0\0Z\237\23\23\300\267//\370\326SR\377\331BB\377\33244\377" - "\330)(\377\325\37\37\377\321\27\27\377\312\25\25\377\306!!\377\30044" - "\375\245\34\34\366\230\16\16\234\215\0\0@\210\0\0\0\0\3\0\0\27\0\0\0" - "=\2\0\0@\0\205\0\0\0\0\20\216\0\0\26\216\0\0\234\255!!\337\30688\374" - "\332DD\377\333.-\377\337$#\377\340\35\34\377\335\25\25\377\327\14\14" - "\377\315\4\4\377\310\17\17\377\305))\376\266..\373\237\25\25\315\216" - "\0\0o\220\0\0\0\0\20\216\0\0\34\216\0\0\304\266**\363\31766\377\330&" - "&\377\337\"!\377\345\33\33\377\350\24\24\377\344\15\15\377\334\4\4\377" - "\322\1\1\377\312\6\6\377\304\26\26\377\302::\377\242\32\32\354\215\0" - "\0\214\220\0\0\0\0\20\215\0\0\36\215\0\0\330\270..\374\32233\377\325" - "\16\16\377\335\21\21\377\345\20\20\377\351\13\13\377\346\4\4\377\335" - "\1\1\377\323\0\0\377\312\2\2\377\303\17\17\377\307AA\377\243\34\34\372" - "\214\0\0\232\220\0\0\0\0\20\215\0\0\35\215\0\0\313\265++\366\315//\377" - "\321\15\15\377\327\6\6\377\336\5\5\377\341\3\3\377\340\0\0\377\331\0" - "\0\377\321\0\0\377\311\5\5\377\303\24\24\377\303<<\377\242\32\32\360" - "\215\0\0\221\220\0\0\0\0\7\216\0\0\30\216\0\0\253\256$$\347\303--\375" - "\316\33\33\377\320\3\3\377\324\0\0\377\202\327\0\0\377\7\322\0\0\377" - "\314\0\0\377\307\13\13\377\304\"\"\376\27233\375\240\27\27\330\216\0" - "\0z\220\0\0\0\0\20\215\0\0\21\215\0\0w\242\31\31\316\266))\372\31311" - "\377\311\14\14\377\313\3\3\377\314\1\1\377\314\0\0\377\312\2\2\377\306" - "\5\5\377\305\31\31\377\30344\376\253$$\370\233\21\21\262\215\0\0U\220" - "\0\0\0\0\20\212\0\0\4\212\0\0\40\221\4\4\244\243\31\31\365\30188\377" - "\31011\377\306\33\33\377\304\13\13\377\303\6\6\377\303\16\16\377\306" - "##\377\30333\377\27033\375\227\13\13\362\220\3\3q\212\0\0\27\220\0\0" - "\0\0\20\206\0\0\0\206\0\0\6\214\0\0T\227\14\14\255\243\31\31\365\264" - "))\372\275--\375\302//\377\30400\377\300..\377\271--\374\255$$\370\236" - "\25\25\346\220\4\4\220\213\0\0""5\206\0\0\4\222\0\0\0\0\15\211\0\0\31" - "\214\0\0T\221\4\4\244\241\31\31\316\252$$\347\257++\366\260..\374\256" - "**\363\247!!\337\234\23\23\300\215\0\0\216\212\0\0""7\211\0\0\17\224" - "\0\0\0\0\13\206\0\0\7\212\0\0%\215\0\0\210\216\0\0\303\215\0\0\350\214" - "\0\0\367\215\0\0\340\216\0\0\262\215\0\0g\206\0\0\22\206\0\0\2\203\0" - "\0\0\0", -}; - -static GdkPixdata pixdata_rename = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 2989, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 128, /* rowstride */ - 32, /* width */ - 32, /* height */ - /* pixel_data: */ - "\211\0\0\0\0\3\0\0\0\2\0\0\0<\0\0\0\231\210\0\0\0\377\2\0\0\0\324\2\2" - "\2\202\223\0\0\0\0\5\2\2\2\5\2\2\2z\"\"\"\314CCC\377NNN\377\204QQQ\377" - "\6PPP\377MMM\377&&&\352\7\7\7\244\1\1\1\32\0\0\0\6\220\0\0\0\0\6\0\0" - "\0\4\3\3\3\24\10\10\10\252<<<\361\200\200\200\377\207\207\207\377\202" - "\211\211\211\377\1\210\210\210\377\202\207\207\207\377\5\212\212\212" - "\377EEE\372\22\22\22\302\3\3\3B\1\1\1\24\220\0\0\0\0\20\0\0\0\23\3\3" - "\3>\27\27\27\276KKK\367\213\213\213\377kkk\377```\377^^^\377[[[\377Y" - "YY\377___\377www\377OOO\373)))\330\4\4\4\207\1\1\1-\220\0\0\0\0\21\3" - "\3\3,\7\7\7\204:::\327^^^\373\177\177\177\377aaa\377WWW\377TTT\377RR" - "R\377OOO\377RRR\377```\377PPP\375444\356\3\3\3\311\1\1\1F\0\0\0\1\216" - "\0\0\0\0\12\0\0\0\3\4\4\4F\10\10\10\304UUU\354nnn\376mmm\377ZZZ\377R" - "RR\377PPP\377MMM\377\202KKK\377\6NNN\377MMM\377888\372\5\5\5\361\2\2" - "\2c\0\0\0\20\216\0\0\0\0\22\0\0\0\13\4\4\4_\11\11\11\365ggg\374xxx\376" - "ZZZ\377RRR\377NNN\377KKK\377HHH\377FFF\377EEE\377BBB\377EEE\377666\373" - "\12\12\12\362\5\5\5\205\0\0\0""2\216\0\0\0\0\22\0\0\0""4\32\32\32\210" - "---\366kkk\374ooo\377QQQ\377MMM\377\77\77\77\375...\373\40\40\40\371" - "000\374AAA\377>>>\377===\377333\375\31\31\31\372\14\14\14\271\2\2\2c" - "\216\0\0\0\0\13\1\1\1b&&&\270RRR\371jjj\375ccc\377KKK\377HHH\377222\373" - "\26\26\26\367\7\7\7\366\40\40\40\372\202999\377\7""777\377111\377$$$" - "\377\17\17\17\341\1\1\1\214\0\0\0\10\0\0\0\2\213\0\0\0\0\25\0\0\0\1\3" - "\3\3\224...\353ttt\377ddd\377UUU\377GGG\377DDD\377&&&\370\4\4\4\361\0" - "\0\0\361\30\30\30\370...\376444\376333\377000\377,,,\377\17\17\17\372" - "\0\0\0\254\0\0\0\33\0\0\0\7\212\0\0\0\0\26\0\0\0\13\0\0\0)\20\20\20\252" - ":::\363\177\177\177\377[[[\377HHH\377AAA\377777\377\36\36\36\361\2\2" - "\2\331\0\0\0\257\20\20\20\322\37\37\37\373///\376///\377,,,\377)))\377" - "\24\24\24\371\7\7\7\302\0\0\0[\0\0\0\32\212\0\0\0\0\26\1\1\1\35\1\1\1" - "d)))\305JJJ\371www\377RRR\377AAA\377<<<\376)))\373\26\26\26\327\1\1\1" - "\243\0\0\0k\10\10\10\260\23\23\23\371***\376+++\377(((\377&&&\377\30" - "\30\30\373\14\14\14\334\0\0\0\240\0\0\0.\212\0\0\0\0\27\3\3\3""2\3\3" - "\3\253BBB\343]]]\375bbb\377HHH\377<<<\377666\375\32\32\32\366\14\14\14" - "\262\0\0\0\\\0\0\0,\0\0\0\221\11\11\11\366###\376&&&\377$$$\377\"\"\"" - "\377\33\33\33\377\20\20\20\366\0\0\0\340\0\0\0E\0\0\0\3\210\0\0\0\0\30" - "\0\0\0\7\3\3\3I\3\3\3\336QQQ\365hhh\376KKK\377\77\77\77\377777\377//" - "/\376\16\16\16\367\3\3\3\225\0\0\0#\0\0\0\15\0\0\0y\7\7\7\344\31\31\31" - "\373\37\37\37\377\40\40\40\377\37\37\37\377\36\36\36\377\24\24\24\371" - "\1\1\1\352\1\1\1f\0\0\0\34\210\0\0\0\0\21\0\0\0#\20\20\20p\32\32\32\360" - "XXX\373ddd\377===\377888\377000\377$$$\373\12\12\12\341\0\0\0x\0\0\0" - "\10\0\0\0\1\0\0\0V\5\5\5\265\17\17\17\362\31\31\31\375\203\37\37\37\377" - "\4\27\27\27\374\10\10\10\363\3\3\3\226\0\0\0C\210\0\0\0\0\13\0\0\0K\32" - "\32\32\240;;;\363ZZZ\374XXX\377444\377222\377(((\376\30\30\30\365\10" - "\10\10\274\0\0\0Z\202\0\0\0\1\4\0\0\0""2\2\2\2~\5\5\5\347\24\24\24\373" - "\202\36\36\36\377\6\37\37\37\377\32\32\32\376\20\20\20\373\5\5\5\312" - "\0\0\0m\0\0\0\1\207\0\0\0\0\13\1\1\1y\40\40\40\332\\\\\\\374VVV\376F" - "FF\377000\377...\377\37\37\37\372\12\12\12\345\4\4\4\203\0\0\0""8\202" - "\0\0\0\6\15\0\0\0\27\0\0\0T\1\1\1\345\21\21\21\374\35\35\35\377\36\36" - "\36\377\37\37\37\377\35\35\35\376\31\31\31\376\7\7\7\360\0\0\0\220\0" - "\0\0\12\0\0\0\2\204\0\0\0\0\15\0\0\0\6\0\0\0\32\13\13\13\226***\357m" - "mm\376NNN\377777\377,,,\377)))\377\32\32\32\372\4\4\4\355\1\1\1\274\0" - "\0\0\234\202\0\0\0\211\15\0\0\0\216\0\0\0\250\0\0\0\360\17\17\17\375" - "\33\33\33\377\36\36\36\377\37\37\37\377\36\36\36\377\34\34\34\376\13" - "\13\13\370\3\3\3\252\0\0\0""8\0\0\0\15\204\0\0\0\0\14\0\0\0\21\0\0\0" - "H\32\32\32\261777\367nnn\376DDD\377+++\377(((\377&&&\377\37\37\37\374" - "\26\26\26\370\24\24\24\373\205\23\23\23\374\3\23\23\23\373\33\33\33\375" - "\40\40\40\377\203\37\37\37\377\5\36\36\36\376\20\20\20\370\7\7\7\306" - "\0\0\0t\0\0\0\34\204\0\0\0\0\13\1\1\1\"\1\1\1\215111\325JJJ\374XXX\376" - "888\377&&&\377$$$\377(((\377999\376QQQ\376\207PPP\376\2BBB\376111\377" - "\203\37\37\37\377\5\36\36\36\376\26\26\26\376\14\14\14\352\0\0\0\272" - "\0\0\0,\203\0\0\0\0\13\0\0\0\4\1\1\1""5\1\1\1\302>>>\355WWW\376\77\77" - "\77\376,,,\377###\377\"\"\"\377###\377+++\377\210888\377\2""000\377'" - "''\377\203\37\37\37\377\6\36\36\36\377\33\33\33\377\20\20\20\366\0\0" - "\0\326\0\0\0H\0\0\0\16\202\0\0\0\0\14\0\0\0\25\10\10\10T\15\15\15\342" - "EEE\373WWW\377+++\377###\377\37\37\37\377\36\36\36\376\30\30\30\376\27" - "\27\27\375\30\30\30\376\207\31\31\31\376\5\27\27\27\376\27\27\27\375" - "\30\30\30\373\34\34\34\375\37\37\37\377\202\36\36\36\377\4\23\23\23\373" - "\4\4\4\347\2\2\2q\0\0\0(\202\0\0\0\0\13\0\0\0""6\21\21\21\205(((\347" - "EEE\372GGG\377!!!\377\37\37\37\377\34\34\34\377\24\24\24\376\6\6\6\374" - "\1\1\1\373\211\1\1\1\374\4\3\3\3\371\11\11\11\363\27\27\27\373\37\37" - "\37\377\202\36\36\36\377\4\27\27\27\375\13\13\13\361\4\4\4\252\0\0\0" - "N\202\0\0\0\0\5\0\0\0_\24\24\24\303AAA\364AAA\375444\377\202\37\37\37" - "\377\4\31\31\31\374\13\13\13\363\4\4\4\257\0\0\0|\210\0\0\0[\5\0\0\0" - "`\1\1\1\215\3\3\3\361\24\24\24\374\36\36\36\377\202\37\37\37\377\21\33" - "\33\33\376\23\23\23\371\5\5\5\335\0\0\0r\0\0\0\4\0\0\0\0\6\6\6\201\30" - "\30\30\351LLL\374:::\377'''\377\37\37\37\377\36\36\36\377\26\26\26\373" - "\4\4\4\356\2\2\2s\0\0\0)\210\0\0\0\5\5\0\0\0\12\0\0\0J\0\0\0\337\21\21" - "\21\366\33\33\33\377\202\37\37\37\377\12\35\35\35\377\31\31\31\375\7" - "\7\7\366\1\1\1\221\0\0\0\"\0\0\0\32\15\15\15\233\37\37\37\365JJJ\375" - "333\377\202\37\37\37\377\5\35\35\35\377\23\23\23\374\0\0\0\357\0\0\0" - "O\0\0\0\10\211\0\0\0\0\4\0\0\0""6\0\0\0\273\16\16\16\351\27\27\27\376" - "\203\36\36\36\377\23\34\34\34\375\13\13\13\365\4\4\4\253\0\0\0Z\0\0\0" - "q\24\24\24\302&&&\372AAA\376222\377###\377\37\37\37\377\31\31\31\377" - "\17\17\17\357\0\0\0\314\0\0\0@\0\0\0\6\0\0\0\5\0\0\0\6\0\0\0\7\204\0" - "\0\0\10\6\0\0\0\7\0\0\0\5\0\0\0'\0\0\0|\11\11\11\316\22\22\22\371\203" - "\36\36\36\377\23\34\34\34\376\21\21\21\374\11\11\11\324\0\0\0\247\0\0" - "\0\250\14\14\14\332\30\30\30\375$$$\376\35\35\35\377\26\26\26\377\22" - "\22\22\377\16\16\16\377\11\11\11\337\0\0\0\237\0\0\0\77\0\0\0\32\0\0" - "\0\35\0\0\0\37\0\0\0!\203\0\0\0#\7\0\0\0\"\0\0\0\40\0\0\0\36\0\0\0-\0" - "\0\0W\4\4\4\275\11\11\11\366\204\21\21\21\375\5\14\14\14\375\6\6\6\347" - "\0\0\0\317\0\0\0\262\0\0\0\322\202\0\0\0\350\2\0\0\0\351\0\0\0\352\202" - "\0\0\0\353\10\0\0\0\301\0\0\0m\0\0\0F\0\0\0:\0\0\0\77\0\0\0B\0\0\0F\0" - "\0\0H\202\0\0\0I\2\0\0\0G\0\0\0D\202\0\0\0@\4\0\0\0F\0\0\0\253\0\0\0" - "\343\0\0\0\351\202\0\0\0\350D\0\0\0\347\0\0\0\345\0\0\0\327\0\0\0\307" - "\0\0\0*\0\0\0""6\0\0\0@\0\0\0G\0\0\0M\0\0\0S\0\0\0Y\0\0\0_\0\0\0Z\0\0" - "\0K\0\0\0H\0\0\0K\0\0\0R\0\0\0X\0\0\0^\0\0\0d\0\0\0g\0\0\0e\0\0\0a\0" - "\0\0[\0\0\0U\0\0\0O\0\0\0J\0\0\0]\0\0\0e\0\0\0a\0\0\0[\0\0\0V\0\0\0O" - "\0\0\0H\0\0\0=\0\0\0""3\0\0\0\0\0\0\0\2\0\0\0\6\0\0\0\12\0\0\0\20\0\0" - "\0\26\0\0\0\33\0\0\0!\0\0\0'\0\0\0-\0\0\0""4\0\0\0:\0\0\0A\0\0\0G\0\0" - "\0N\0\0\0S\0\0\0U\0\0\0S\0\0\0N\0\0\0H\0\0\0B\0\0\0<\0\0\0""5\0\0\0/" - "\0\0\0)\0\0\0#\0\0\0\35\0\0\0\27\0\0\0\21\0\0\0\13\0\0\0\6\0\0\0\2\204" - "\0\0\0\0\13\0\0\0\2\0\0\0\6\0\0\0\11\0\0\0\15\0\0\0\22\0\0\0\27\0\0\0" - "\34\0\0\0\"\0\0\0'\0\0\0-\0\0\0""2\202\0\0\0""6\14\0\0\0""3\0\0\0/\0" - "\0\0+\0\0\0&\0\0\0!\0\0\0\34\0\0\0\26\0\0\0\21\0\0\0\15\0\0\0\11\0\0" - "\0\5\0\0\0\1\203\0\0\0\0", -}; - -static GdkPixdata pixdata_watermark = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 2087, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 128, /* rowstride */ - 32, /* width */ - 32, /* height */ - /* pixel_data: */ - "\377\0\0\0\0\247\0\0\0\0\2\214\221\212\26\211\212\205k\226\211\211\204" - "q\2\210\210\204_\204\204\204\12\206\0\0\0\0\2\227\232\223L\346\347\346" - "\225\226\372\372\372\227\2\222\225\221o\214\214\214\5\205\0\0\0\0\3y" - "yy\12\246\250\245\214\362\362\362\226\224\353\353\353\227\3\355\355\355" - "\227\330\330\327\224\214\214\2113\205\0\0\0\0\4\222\222\222\0\214\217" - "\211L\335\336\333\225\356\356\356\227\204\353\353\353\227\4\351\351\352" - "\227\326\333\342\236\310\321\335\243\342\344\347\232\211\353\353\353" - "\227\6\352\352\352\227\351\351\351\227\347\347\347\227\356\356\355\226" - "\251\254\247\200\200\200\200\1\205\0\0\0\0\3\205\211\201\14\245\251\243" - "y\367\367\367\227\204\353\353\353\227\6\346\347\351\230m\217\272\321" - "a\205\264\331r\222\274\316`\205\265\331\327\334\342\236\206\353\353\353" - "\227\2\350\350\350\227\347\347\347\227\203\346\346\346\227\2\344\344" - "\344\226\231\231\2307\206\0\0\0\0\3\217\223\215+\332\334\331\223\361" - "\361\361\227\203\353\353\353\227\24\342\344\350\231k\216\271\322\220" - "\250\310\275\352\352\352\227\353\353\353\227\253\273\321\260g\212\266" - "\326\337\342\346\232\353\353\353\227\352\352\352\227\351\351\351\227" - "\332\336\342\233\330\334\340\233\345\345\345\227\344\344\344\227\343" - "\343\343\227\341\341\341\227\356\356\356\227\302\305\302\202\211\213" - "\211\22\206\0\0\0\0\2\242\245\240p\357\357\356\226\204\353\353\353\227" - "\3\270\305\327\252\200\235\302\305\352\353\353\227\203\353\353\353\227" - "\3\220\247\307\275\223\253\310\273\347\347\347\227\202\346\346\346\227" - "\2\210\242\303\300\235\260\311\264\202\341\341\341\227\5\337\337\337" - "\227\340\340\340\227\352\352\352\227\220\221\216]zzz\1\205\0\0\0\0\3" - "\204\204\203!\272\273\270\222\361\361\361\227\204\353\353\353\227\23" - "\330\334\344\235\331\336\344\235\353\353\353\227\352\352\352\227\351" - "\351\351\227\347\347\347\227\327\333\340\234^\203\263\332\257\276\317" - "\253\331\334\340\232\272\305\323\246Y~\257\335\310\317\326\237\336\336" - "\336\227\334\334\334\227\333\333\333\227\344\344\344\227\267\270\267" - "\220\211\211\203\27\205\0\0\0\0\4\225\225\225\2\212\214\207f\362\362" - "\362\226\354\354\354\227\204\353\353\353\227\3\352\352\352\227\350\350" - "\350\227\347\347\347\227\202\346\346\346\227\15\344\344\344\227\342\342" - "\342\227\305\315\327\241j\214\267\320U}\257\340h\213\265\321\250\267" - "\312\254\334\334\334\227\332\332\332\227\327\327\327\227\326\326\326" - "\227\350\350\350\226\242\243\240_\206\0\0\0\0\20\211\214\204\27\305\306" - "\305\206\365\365\365\227\353\353\353\227\347\347\347\234\334\334\333" - "\257\332\333\332\261\330\331\330\261\327\330\327\261\327\327\327\261" - "\326\327\326\261\325\326\325\261\323\323\323\261\323\323\322\261\322" - "\323\322\261\321\322\321\261\202\317\317\316\261\10\316\317\316\261\315" - "\315\315\261\312\312\312\261\311\312\311\261\311\311\311\261\321\321" - "\320\261\310\311\307\257\211\213\206]\202\210\212\205\77\2\210\212\205" - "5\212\212\205\6\202\0\0\0\0&\230\230\225C\346\347\346\225\353\353\353" - "\227\347\347\347\227\325\325\324\274\334\334\333\374\343\344\343\377" - "\342\342\342\377\342\342\341\377\341\341\341\377\340\341\340\377\337" - "\337\337\377\337\337\336\377\336\336\336\377\335\336\335\377\335\335" - "\334\377\334\334\333\377\333\333\333\377\332\333\332\377\332\332\331" - "\377\331\332\331\377\330\330\330\377\330\331\330\377\351\351\351\377" - "\302\303\300\377\337\340\337\377\341\341\340\377\340\341\337\377\220" - "\222\216\312\210\213\206\20\0\0\0\0\216\216\207\6\253\254\251\210\356" - "\356\356\227\346\346\346\227\344\344\344\231\315\316\315\355\350\351" - "\350\377\202\345\345\345\377\2\344\344\344\377\343\343\343\377\202\342" - "\342\342\377\1\341\341\341\377\202\340\340\340\377\1\337\337\337\377" - "\202\336\336\336\377\2\335\335\335\377\334\334\334\377\202\333\333\333" - "\377\7\340\340\340\377\333\334\333\377\323\323\323\377\354\354\354\377" - "\355\355\355\377\353\353\352\375\215\221\213\206\202\0\0\0\0\7\212\216" - "\207D\321\321\320\225\370\370\370\227\366\366\366\227\341\341\341\273" - "\344\345\344\375\364\364\364\377\206\361\361\361\377\202\360\360\360" - "\377\206\357\357\357\377\202\356\356\356\377\21\355\355\355\377\307\310" - "\306\377\350\350\350\377\351\351\351\377\360\360\357\377\264\265\262" - "\362\212\215\207\21\0\0\0\0|\177|\6\212\213\207t\310\310\306\227\313" - "\313\311\227\310\310\307\232\265\266\264\345\332\332\332\377\326\326" - "\326\377\325\325\325\377\202\324\324\323\377\4\323\323\323\377\323\323" - "\322\377\322\323\322\377\322\322\321\377\202\321\321\320\377\2\320\320" - "\320\377\320\320\317\377\203\317\320\317\377\202\317\317\317\377\6\312" - "\312\311\377\321\322\320\377\347\347\347\377\346\346\346\377\351\351" - "\351\375\241\243\241\204\202\0\0\0\0\2\202\210\202\2\210\210\203\37\202" - "\211\211\204%\3\213\214\207T\307\310\306\365\344\344\343\377\215\335" - "\335\334\377\12\334\334\333\377\333\333\332\377\332\332\331\377\331\331" - "\330\377\330\331\330\377\341\341\341\377\343\343\343\377\353\353\353" - "\377\325\326\324\352\215\217\214/\206\0\0\0\0\3\233\233\227\216\352\352" - "\351\374\355\355\355\377\210\354\354\354\377\203\353\353\353\377\7\352" - "\352\352\377\350\350\350\377\347\347\347\377\346\346\346\377\345\345" - "\345\377\343\343\343\377\342\342\342\377\202\341\341\341\377\3\362\362" - "\362\377\226\231\223\266\200\215\200\7\205\0\0\0\0\3\210\210}\31\254" - "\254\252\356\362\362\362\377\207\354\354\354\377\20\353\353\353\377\352" - "\352\352\377\351\351\351\377\350\350\350\377\347\347\347\377\346\346" - "\346\377\344\344\344\377\343\343\343\377\342\342\342\377\341\341\341" - "\377\337\337\337\377\336\336\336\377\335\335\335\377\342\342\342\377" - "\311\311\310\371\212\213\204K\205\0\0\0\0\4\206\206\206\1\213\216\210" - "\214\345\346\345\375\356\356\356\377\203\354\354\354\377\202\353\353" - "\353\377\10\352\352\352\377\351\351\351\377\350\350\350\377\347\347\347" - "\377\345\345\345\377\344\344\344\377\343\343\343\377\342\342\342\377" - "\202\340\340\340\377\2\336\336\336\377\335\335\335\377\202\333\333\333" - "\377\3\331\331\331\377\347\350\347\376\245\247\244\320\206\0\0\0\0\3" - "\207\211\204\31\262\262\260\323\367\367\367\377\202\354\354\354\377\25" - "\353\353\353\377\352\352\352\377\351\351\351\377\350\350\350\377\346" - "\346\346\377\345\345\345\377\344\344\344\377\343\343\343\377\342\342" - "\342\377\340\340\340\377\337\337\337\377\336\336\336\377\335\335\335" - "\377\333\333\333\377\332\332\332\377\331\331\331\377\330\330\330\377" - "\326\326\326\377\332\332\332\377\337\340\336\374\224\226\220U\206\0\0" - "\0\0\5\221\222\217P\340\340\337\373\356\356\356\377\352\352\352\377\351" - "\351\351\377\202\347\347\347\377\23\345\345\345\377\344\344\344\377\343" - "\343\343\377\342\342\342\377\340\340\340\377\337\337\337\377\336\336" - "\336\377\335\335\335\377\333\333\333\377\332\332\332\377\331\331\331" - "\377\330\330\330\377\326\326\326\377\325\325\325\377\324\324\324\377" - "\323\323\323\377\352\352\352\377\263\264\261\327\212\212\206\33\206\0" - "\0\0\0\32\245\246\244\312\357\357\357\376\347\347\347\377\346\346\346" - "\377\345\345\345\377\344\344\344\377\343\343\343\377\341\341\341\377" - "\340\340\340\377\337\337\337\377\336\336\336\377\334\334\334\377\333" - "\333\333\377\332\332\332\377\331\331\331\377\327\327\327\377\326\326" - "\326\377\325\325\325\377\324\324\324\377\322\322\322\377\321\321\321" - "\377\320\320\320\377\324\324\324\377\340\341\340\376\214\215\211\222" - "\200\200\200\1\205\0\0\0\0\14\213\214\210D\301\302\276\370\361\361\361" - "\377\354\354\354\377\353\353\353\377\352\352\352\377\351\351\351\377" - "\350\350\350\377\347\347\347\377\346\346\346\377\345\345\345\377\344" - "\344\344\377\202\343\343\343\377\2\342\342\342\377\341\341\341\377\202" - "\340\340\340\377\1\336\336\336\377\202\335\335\335\377\5\334\334\334" - "\377\333\333\333\377\343\343\343\377\255\256\253\361\207\214\207\35\205" - "\0\0\0\0\6\200\200\200\6\214\215\211\262\335\335\335\376\350\350\350" - "\377\347\347\347\377\345\345\345\377\202\344\344\344\377\11\343\343\343" - "\377\342\342\342\377\341\341\341\377\340\340\340\377\337\337\337\377" - "\336\336\336\377\335\335\335\377\334\334\334\377\333\333\333\377\202" - "\332\332\332\377\205\331\331\331\377\2\315\315\314\374\225\227\222\224" - "\206\0\0\0\0\2\205\214\205\15\207\212\205\235\226\210\212\205\277\2\210" - "\212\205\270\215\216\210+\346\0\0\0\0", -}; - -static GdkPixdata pixdata_userdef = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 2209, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 128, /* rowstride */ - 32, /* width */ - 32, /* height */ - /* pixel_data: */ - "\247\0\0\0\0\5`bp'bhxfadtwbhxf`bp'\231\0\0\0\0\11`bv%z\203\230\276\230" - "\246\304\372\225\256\332\377\217\255\332\377\212\247\321\377\202\227" - "\270\372my\217\276`bv%\226\0\0\0\0\13div^\232\246\275\365\234\266\345" - "\377\227\264\340\377\252\302\341\377\267\314\344\375\260\307\341\375" - "\233\270\331\375\204\250\320\375t\211\246\365_fs^\224\0\0\0\0\15aerD" - "\241\256\307\373\225\262\344\377\274\317\351\377\304\325\351\375\305" - "\326\350\372\306\326\350\366\304\326\350\364\302\324\346\364\247\301" - "\334\363y\240\312\365r\213\253\372aerD\222\0\0\0\0\17\200\200\200\1\210" - "\220\243\324\244\274\350\377\274\317\352\377\303\324\350\374\305\326" - "\350\366\307\327\351\361\311\331\351\355\310\330\351\352\306\325\347" - "\352\302\322\346\353\204\250\317\344}\244\315\360iw\215\322\200\200\200" - "\1\221\0\0\0\0\17]es7\256\274\326\373\227\264\341\377\277\321\347\375" - "\303\324\347\366\310\327\351\356\313\332\352\347\315\334\353\342\314" - "\333\354\337\313\332\352\336\307\327\351\340\224\263\325\325\203\246" - "\316\337u\217\257\356^es7\221\0\0\0\0\17`gus\260\305\350\377\244\276" - "\337\376\276\321\345\367\305\326\350\355\312\331\352\344\316\335\354" - "\334\320\336\354\326\321\337\355\322\317\335\354\320\310\327\351\320" - "\227\266\325\302\216\257\322\320\201\242\306\343bftr\221\0\0\0\0\17c" - "ft~\256\305\345\377\231\265\330\373\277\321\345\360\306\327\351\345\315" - "\334\353\332\323\337\355\320\326\341\356\311\326\343\356\304\325\340" - "\356\302\271\315\343\260\243\275\332\261\227\265\326\301\214\255\321" - "\324`dq~\221\0\0\0\0\17bewk\257\305\337\377\200\245\316\361\276\320\344" - "\350\312\331\351\334\320\335\354\317\327\342\360\303\333\344\357\272" - "\333\345\360\261\312\331\351\234\266\313\342\225\256\304\337\242\241" - "\274\331\263\217\254\313\314cftp\221\0\0\0\0\17_cl!\255\270\306\372\200" - "\245\316\347\227\265\327\322\324\337\355\335\354\361\366\347\341\351" - "\360\307\330\341\353\247\317\332\345\226\340\344\351\306\325\335\345" - "\271\266\313\343\224\252\302\336\247\205\227\255\320ccr-\222\0\0\0\0" - "\15~\203\220\213\271\313\337\354\224\263\324\307\257\306\336\267\331" - "\343\357\274\331\343\354\244\346\353\361\251\347\353\356\246\353\356" - "\362\265\324\340\354\201\300\322\345\207\257\303\332\244mr\201\236\223" - "\0\0\0\0\15[[d\7\221\225\241\273\273\315\341\323\251\301\335\250\327" - "\342\356\260\311\332\351w\331\343\356b\336\352\361U\355\362\365\211\325" - "\342\355f\307\324\345\205z\177\216\270adq\23\224\0\0\0\0\13ccm\14\255" - "\263\275\341\256\305\337\244\276\314\333\241\310\323\340y\337\352\361" - "W\331\337\342S\327\333\337j\333\344\361[\233\241\255\257_aq%\226\0\0" - "\0\0\11\232\235\250\231\301\322\345\262\262\302\321\227\237\245\245\236" - "\303\307\265|\226\227\217}\304\310\304T\340\346\357Z\212\216\232\256" - "\227\0\0\0\0\11diu@\262\270\276\355\257\270\257\372\214\220\202\377\276" - "\301\245\377\234\235\200\376\275\277\233\362\255\260\246\305jnz{\216" - "\0\0\0\0\1.46B\210\0\0\0\0\12PP(\10suX\362\243\247\250\377\302\307\277" - "\377\317\322\301\377\317\321\275\377\266\271\255\377moi\351aaj\7\0\0" - "\0\1\214\0\0\0\0\3.34-/33\370---\4\207\0\0\0\0\13FF#\5vv@\354\325\327" - "\245\377\274\277\244\377\245\250\225\377\244\246\215\377\236\235w\377" - "fe=\354\0\0\0\0.46>-55.\212\0\0\0\0\4""000\14""8;9\315BB=\371*00\22\207" - "\0\0\0\0\14JJ!\13\205\205G\375\357\360\322\377\364\367\313\377\350\352" - "\270\377\306\310\227\377\241\240p\377cc<\343\0\0\0\0/46L6:9\321'66\15" - "\210\0\0\0\0\5/66\32""7:9\277OK@\376DD>\367*22\40\207\0\0\0\0\31QQ\33" - "\4wwB\354\354\355\316\377\363\365\311\377\351\353\271\377\324\325\241" - "\377\245\244t\377jiA\361==)\6""066Tkg\\\377KMI\3231668\0\0\0\0vvv\3\206" - "\210\201,\204\213\177\32""000\4.268398\217JJD\362WRE\377ID6\377GF>\370" - ",25/\206\0\0\0\0\32\0\0\0\1((\21\13oo;\342\312\313\233\377\345\350\270" - "\377\326\330\250\377\257\260\203\377\230\227i\377__8\336\33\33\13\20" - ".44arna\377\204\201t\377ih_\373WWQ\325\230\231\226\345\313\314\311\374" - "\302\303\300\375qsp\371][O\372d^O\377YSC\377QK<\377LF8\377GF\77\367+" - "02&\204\0\0\0\0\34\0\0\0\1\0\0\0\7\0\0\0\16\0\0\0\25\27\27\14(>>)\201" - "ppa\374\201\201o\377TTE\376##\34\351\35\36\36\306\0\0\0o398o\246\246" - "\242\377\317\317\315\377\217\220\215\377\214\213\202\377\331\331\325" - "\377\351\351\347\377\251\251\250\377\242\243\237\377niZ\377_XF\377YS" - "B\377TN>\377NH:\377EE\77\371+36\21\204\0\0\0\0\34\0\0\0\3\0\0\0\13\0" - "\0\0\22\0\0\0\32\0\0\0'\0\0\0""6YYY\267\201\201\201\371*++\367\324\326" - "\326\377\233\240\241\377\377UO\77" - "\377QK<\377GF>\374$)*@\0\0\0\1\215\0\0\0\0\6\0\0\0G\12\14\14\342\15\17" - "\20\373\17\20\17\377WRC\377e^K\377\202g`L\377\13b[I\377\\VD\377QL<\377" - "84*\377\33\32\24\377A<0\377QL<\377QM\77\377.11\303\0\0\0.\0\0\0\24\216" - "\0\0\0\0\23\0\0\0\12\0\0\0C#&'\213NOG\370f`Q\377c\\J\377`YG\377^WF\377" - "XQA\377OI:\377MH9\377SM=\377QK<\377RL\77\377685\352\13\14\15h\0\0\0=" - "\0\0\0!\0\0\0\5\215\0\0\0\0\23\0\0\0\1\0\0\0\25\0\0\0""0\12\14\14Z#(" - "(\260EE@\363XTI\376^XI\377\\VG\377XQB\377UP@\377TN@\377KG>\375031\341" - "\15\17\17~\0\0\0Q\0\0\0""6\0\0\0\32\0\0\0\1\216\0\0\0\0\21\0\0\0\3\0" - "\0\0\27\0\0\0/\0\0\0F\2\3\3_\31\34\35\227\37#$\265*,-\314896\346352\336" - "')*\304\31\33\34\231\0\0\0_\0\0\0J\0\0\0""4\0\0\0\31\0\0\0\3\221\0\0" - "\0\0\15\0\0\0\7\0\0\0\25\0\0\0'\0\0\0""6\0\0\0@\0\0\0G\0\0\0J\0\0\0H" - "\0\0\0B\0\0\0""8\0\0\0)\0\0\0\26\0\0\0\7\226\0\0\0\0\7\0\0\0\1\0\0\0" - "\4\0\0\0\7\0\0\0\11\0\0\0\7\0\0\0\4\0\0\0\1\207\0\0\0\0", -}; - -static GdkPixdata pixdata_posbl = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 697, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 80, /* rowstride */ - 20, /* width */ - 20, /* height */ - /* pixel_data: */ - "\240\0\0\0\0\202`\235\40\377\221\0\0\0\0\1`\235\40\377\202e\245\36\377" - "\1`\235\40\377\217\0\0\0\0\6`\235\40\377e\245\36\377k\260\31\377l\260" - "\32\377f\245\37\377`\235\40\377\215\0\0\0\0\2`\235\40\377e\245\36\377" - "\202k\260\31\377\4l\261\34\377n\261\36\377g\245\40\377`\235\40\377\213" - "\0\0\0\0\2`\235\40\377e\245\36\377\202k\260\31\377\6l\261\33\377m\261" - "\35\377q\262\37\377t\263#\377j\247#\377`\235\40\377\211\0\0\0\0\2`\235" - "\40\377e\245\36\377\202k\260\31\377\10l\260\32\377l\261\34\377o\262\37" - "\377r\262\"\377u\265%\377y\267)\377l\250&\377`\235\40\377\202\0\0\0\0" - "\1`\235\40\377\204\0\0\0\0\2`\235\40\377e\245\36\377\203k\260\31\377" - "\7l\261\33\377n\261\35\377r\262\40\377t\263%\377x\266'\377l\247%\377" - "`\235\40\377\203\0\0\0\0\202`\235\40\377\202\0\0\0\0\2`\235\40\377e\245" - "\36\377\203k\260\31\377\7l\260\32\377m\261\34\377p\262\37\377s\263#\377" - "w\265&\377k\247%\377`\235\40\377\204\0\0\0\0\2`\235\40\377a\242\34\377" - "\202`\235\40\377\1e\245\36\377\204k\260\31\377\6l\261\34\377o\261\36" - "\377r\262!\377u\265%\377k\247$\377`\235\40\377\205\0\0\0\0\3`\235\40" - "\377e\253\31\377i\256\31\377\205k\260\31\377\6l\261\33\377n\261\35\377" - "q\262\40\377t\263$\377j\247#\377`\235\40\377\206\0\0\0\0\2`\235\40\377" - "g\255\31\377\205k\260\31\377\6l\260\32\377l\261\34\377p\262\37\377s\262" - "\"\377i\246\"\377`\235\40\377\207\0\0\0\0\2`\235\40\377j\257\31\377\205" - "k\260\31\377\5l\261\34\377n\261\36\377r\262!\377h\246\"\377`\235\40\377" - "\210\0\0\0\0\1`\235\40\377\205k\260\31\377\5l\261\33\377m\261\35\377" - "q\262\37\377h\246!\377`\235\40\377\211\0\0\0\0\1`\235\40\377\204k\260" - "\31\377\5l\260\32\377l\261\34\377o\262\37\377h\245!\377`\235\40\377\212" - "\0\0\0\0\1`\235\40\377\204k\260\31\377\4l\261\33\377n\261\35\377r\262" - "\40\377`\235\40\377\213\0\0\0\0\1`\235\40\377\203k\260\31\377\6l\260" - "\32\377m\261\34\377p\262\37\377s\263#\377j\246#\377`\235\40\377\212\0" - "\0\0\0\1`\235\40\377\203k\260\31\377\7l\261\34\377o\261\36\377r\262!" - "\377u\265%\377y\267)\377l\247&\377`\235\40\377\211\0\0\0\0\214`\235\40" - "\377\233\0\0\0\0", -}; - -static GdkPixdata pixdata_posbc = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 924, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 80, /* rowstride */ - 20, /* width */ - 20, /* height */ - /* pixel_data: */ - "\205\0\0\0\0\3c\240\40\6c\240\40\21c\240\40\13\202c\240\40\6\202c\240" - "\40\14\1c\240\40\6\213\0\0\0\0\13N\211\23\15_\235\36ib\236\40vb\237\40" - "ub\236\40\215b\236\40\207b\237\40\201b\236\40xb\236\40~b\236\40aW\225" - "\32\26\211\0\0\0\0\13\77\177\0\4_\235\34qc\240\33\251c\240\34\266c\240" - "\34\256c\240\35\255c\240\40\260e\242\40\276e\242\40\244c\240\37\200^" - "\232\32\40\211\0\0\0\0\13H\221\0\7`\236\36\217c\243\33\372e\251\31\377" - "e\252\31\377g\253\34\377l\255\37\377p\257\40\377m\252#\377c\240\40\316" - "Z\224\30\37\211\0\0\0\0\13b\234\23\15_\235\35\223d\245\34\377j\256\31" - "\377k\260\31\377l\260\33\377o\261\36\377r\261!\377m\252#\376b\237\40" - "\305]\220\31\36\211\0\0\0\0\13L~\31\12^\235\35\315d\245\33\377j\256\31" - "\377k\260\31\377k\260\32\377m\261\34\377q\261\40\377m\253\"\377b\237" - "\37\361Z\227\31""8\211\0\0\0\0\4U\224\25\14_\235\35\225d\245\34\377j" - "\257\31\377\202k\260\31\377\5l\260\34\377o\260\37\377l\252!\377b\237" - "\37\310[\232\33\34\211\0\0\0\0\4U\224\25\14`\234\35\224d\245\33\377j" - "\257\31\377\202k\260\31\377\5l\260\33\377o\260\36\377k\252\40\377`\237" - "\37\310[\232\33\34\211\0\0\0\0\4\0\0\0\1_\233\35\213d\245\33\370j\256" - "\31\377\202k\260\31\377\5k\260\32\377n\261\35\377j\252\40\377a\237\36" - "\301W\225\32\35\211\0\0\0\0\4U\215\34\11`\235\35\222d\245\34\373j\256" - "\31\377\202k\260\31\377\5k\260\32\377m\260\34\377j\251\37\377a\240\35" - "\304]\231\31\36\206\0\0\0\0\7[\231\36\31^\233\34""6^\227\34""6^\231\37" - "I`\236\35\276e\247\33\377j\257\31\377\202k\260\31\377\6k\260\32\377l" - "\260\34\377i\250\36\376a\235\37\305]\232\36L_\233\36;\202^\233\34""6" - "\1[\231\36\31\202\0\0\0\0\6\\\231\33""7_\233\36\266_\234\36\341_\237" - "\34\340c\244\33\377i\255\31\377\204k\260\31\377\10l\261\34\377l\255\36" - "\377f\244\37\362d\241!\337e\242!\337`\236\37\340_\234\36\265\\\231\33" - "7\203\0\0\0\0\5^\232\36T_\235\36\323a\242\33\377f\253\31\377j\257\31" - "\377\204k\260\31\377\7l\260\33\377q\262\37\377r\262#\377v\264'\376p\254" - "'\377`\235\40\377`\235\40D\205\0\0\0\0\5a\236!C`\236\40\377e\251\33\377" - "j\260\31\377j\257\31\377\203k\260\31\377\6k\260\32\377n\261\35\377t\265" - "\"\377p\257$\377d\241\40\323^\232\36T\207\0\0\0\0\4^\232\36T`\237\36" - "\323f\250\33\377j\257\31\377\204k\260\31\377\4m\260\34\377j\252\37\377" - "`\235\40\377]\232\37D\211\0\0\0\0\3^\232\36Ta\240\36\323g\251\33\377" - "\203k\260\31\377\4l\262\32\377i\254\36\377`\235\40\377^\232\40D\213\0" - "\0\0\0\10^\232\36Ta\240\36\323h\253\33\377l\261\31\377k\260\31\377g\252" - "\33\377a\240\36\323^\232\36T\215\0\0\0\0\2^\232\36T`\236\40\377\202i" - "\254\32\377\2a\240\36\323^\232\36T\217\0\0\0\0\4`\235!C`\236\40\377`" - "\235\40\377_\233!D\221\0\0\0\0\2a\237\40C`\235\40D\211\0\0\0\0", -}; -static GdkPixdata pixdata_posbr = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 687, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 80, /* rowstride */ - 20, /* width */ - 20, /* height */ - /* pixel_data: */ - "\232\0\0\0\0\1`\235\40\377\222\0\0\0\0\3`\235\40\377l\250&\377`\235\40" - "\377\220\0\0\0\0\5`\235\40\377j\247#\377y\267)\377l\247%\377`\235\40" - "\377\216\0\0\0\0\7`\235\40\377g\245\40\377t\263#\377u\265%\377x\266'" - "\377k\247%\377`\235\40\377\214\0\0\0\0\11`\235\40\377f\245\37\377n\261" - "\36\377q\262\37\377r\262\"\377t\263%\377w\265&\377k\247$\377`\235\40" - "\377\212\0\0\0\0\13`\235\40\377e\245\36\377l\260\32\377l\261\34\377m" - "\261\35\377o\262\37\377r\262\40\377s\263#\377u\265%\377j\247#\377`\235" - "\40\377\211\0\0\0\0\2`\235\40\377e\245\36\377\202k\260\31\377\10l\261" - "\33\377l\261\34\377n\261\35\377p\262\37\377r\262!\377t\263$\377i\246" - "\"\377`\235\40\377\205\0\0\0\0\1`\235\40\377\203\0\0\0\0\2`\235\40\377" - "e\245\36\377\202k\260\31\377\10l\260\32\377l\261\33\377m\261\34\377o" - "\261\36\377q\262\40\377s\262\"\377h\246\"\377`\235\40\377\203\0\0\0\0" - "\202`\235\40\377\204\0\0\0\0\2`\235\40\377e\245\36\377\203k\260\31\377" - "\13l\260\32\377l\261\34\377n\261\35\377p\262\37\377r\262!\377h\246!\377" - "`\235\40\377\0\0\0\0`\235\40\377l\247&\377`\235\40\377\205\0\0\0\0\2" - "`\235\40\377e\245\36\377\204k\260\31\377\11l\261\33\377l\261\34\377n" - "\261\36\377q\262\37\377h\245!\377`\235\40\377j\246#\377y\267)\377`\235" - "\40\377\206\0\0\0\0\2`\235\40\377e\245\36\377\204k\260\31\377\10l\260" - "\32\377l\261\34\377m\261\35\377o\262\37\377r\262\40\377s\263#\377u\265" - "%\377`\235\40\377\207\0\0\0\0\2`\235\40\377e\245\36\377\205k\260\31\377" - "\6l\261\33\377l\261\34\377n\261\35\377p\262\37\377r\262!\377`\235\40" - "\377\210\0\0\0\0\2`\235\40\377e\245\36\377\205k\260\31\377\5l\260\32" - "\377l\261\33\377m\261\34\377o\261\36\377`\235\40\377\211\0\0\0\0\2`\235" - "\40\377e\245\36\377\206k\260\31\377\3l\260\32\377l\261\34\377`\235\40" - "\377\212\0\0\0\0\1`\235\40\377\210k\260\31\377\1`\235\40\377\212\0\0" - "\0\0\2`\235\40\377i\256\31\377\207k\260\31\377\1`\235\40\377\211\0\0" - "\0\0\5`\235\40\377a\242\34\377e\253\31\377g\255\31\377j\257\31\377\205" - "k\260\31\377\1`\235\40\377\210\0\0\0\0\214`\235\40\377\225\0\0\0\0", -}; - -static GdkPixdata pixdata_poscl = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 839, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 80, /* rowstride */ - 20, /* width */ - 20, /* height */ - /* pixel_data: */ - "\234\0\0\0\0\2\\\231\33""7[\231\36\31\221\0\0\0\0\3^\232\36T_\233\36" - "\266^\233\34""6\220\0\0\0\0\4a\236!C_\235\36\323_\234\36\341^\227\34" - "6\217\0\0\0\0\7^\232\36T`\236\40\377a\242\33\377_\237\34\340^\231\37" - "IU\215\34\11\0\0\0\1\202U\224\25\14\5L~\31\12b\234\23\15H\221\0\7\77" - "\177\0\4N\211\23\15\205\0\0\0\0\20^\232\36T`\237\36\323e\251\33\377f" - "\253\31\377c\244\33\377`\236\35\276`\235\35\222_\233\35\213`\234\35\224" - "_\235\35\225^\235\35\315_\235\35\223`\236\36\217_\235\34q_\235\36ic\240" - "\40\6\203\0\0\0\0\21^\232\36Ta\240\36\323f\250\33\377j\260\31\377j\257" - "\31\377i\255\31\377e\247\33\377d\245\34\373d\245\33\370d\245\33\377d" - "\245\34\377d\245\33\377d\245\34\377c\243\33\372c\240\33\251b\236\40v" - "c\240\40\21\202\0\0\0\0\3^\232\36Ta\240\36\323g\251\33\377\202j\257\31" - "\377\202k\260\31\377\1j\257\31\377\202j\256\31\377\202j\257\31\377\202" - "j\256\31\377\10e\251\31\377c\240\34\266b\237\40uc\240\40\13\0\0\0\0`" - "\235!C`\236\40\377h\253\33\377\214k\260\31\377\10e\252\31\377c\240\34" - "\256b\236\40\215c\240\40\6a\237\40C`\236\40\377i\254\32\377l\261\31\377" - "\212k\260\31\377\11k\260\32\377l\260\33\377g\253\34\377c\240\35\255b" - "\236\40\207c\240\40\6`\235\40D`\235\40\377i\254\32\377\206k\260\31\377" - "\203k\260\32\377\34l\260\33\377l\260\34\377m\261\34\377o\261\36\377l" - "\255\37\377c\240\40\260b\237\40\201c\240\40\14\0\0\0\0_\233!Da\240\36" - "\323g\252\33\377l\262\32\377k\260\31\377k\260\32\377l\260\33\377l\261" - "\34\377l\260\34\377m\260\34\377n\261\35\377o\260\36\377o\260\37\377q" - "\261\40\377r\261!\377p\257\40\377e\242\40\276b\236\40xc\240\40\14\202" - "\0\0\0\0\22^\232\36Ta\240\36\323i\254\36\377m\260\34\377n\261\35\377" - "q\262\37\377l\255\36\377i\250\36\376j\251\37\377j\252\40\377k\252\40" - "\377l\252!\377m\253\"\377m\252#\376m\252#\377e\242\40\244b\236\40~c\240" - "\40\6\203\0\0\0\0\20^\232\36T`\235\40\377j\252\37\377t\265\"\377r\262" - "#\377f\244\37\362a\235\37\305a\240\35\304a\237\36\301`\237\37\310b\237" - "\37\310b\237\37\361b\237\40\305c\240\40\316c\240\37\200b\236\40a\205" - "\0\0\0\0\10^\232\40D`\235\40\377p\257$\377v\264'\376d\241!\337]\232\36" - "L]\231\31\36W\225\32\35\202[\232\33\34\5Z\227\31""8]\220\31\36Z\224\30" - "\37^\232\32\40W\225\32\26\206\0\0\0\0\5]\232\37Dd\241\40\323p\254'\377" - "e\242!\337_\233\36;\220\0\0\0\0\4^\232\36T`\235\40\377`\236\37\340^\233" - "\34""6\221\0\0\0\0\3`\235\40D_\234\36\265^\233\34""6\222\0\0\0\0\2\\" - "\231\33""7[\231\36\31\236\0\0\0\0", -}; - -static GdkPixdata pixdata_poscc = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 813, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 80, /* rowstride */ - 20, /* width */ - 20, /* height */ - /* pixel_data: */ - "\300\0\0\0\0\1Z\221'\2\205\0\0\0\0\1S\210%\3\202\0\0\0\0\2Cv6\1L~!\2" - "\210\0\0\0\0\15c\243\37\3`\235! #include "bimp-manipulations.h" #include "bimp-manipulations-gui.h" -#include "bimp-icons.h" #include "plugin-intl.h" + +GSList* bimp_selected_manipulations; + /* Appends a default manipulation to the step list */ manipulation bimp_append_manipulation(manipulation_type type) { manipulation newman = NULL; /* newman, paul newman. */ - if (type != MANIP_USERDEF && bimp_list_contains_manip(type)) { + if (type != MANIP_WATERMARK && type != MANIP_USERDEF && bimp_list_contains_manip(type)) { return NULL; } else { @@ -114,6 +116,20 @@ manipulation bimp_list_get_manip(manipulation_type search) return found_man; } +GSList* bimp_list_get_manip_all(manipulation_type search) +{ + GSList *result = NULL; + GSList *iterator = NULL; + + for (iterator = bimp_selected_manipulations; iterator; iterator = iterator->next) { + manipulation found_man = (manipulation)(iterator->data); + if (found_man->type == search) result = g_slist_append (result, iterator->data); + } + + return result; +} + + /* set of constructors for each type of manipulation (with default values) */ manipulation manipulation_resize_new() @@ -121,13 +137,14 @@ manipulation manipulation_resize_new() manipulation resize; resize = (manipulation) g_malloc(sizeof(struct manip_str)); resize->type = MANIP_RESIZE; - resize->icon = &pixdata_resize; + resize->icon = "/gimp/plugin/bimp/icons/stock-resize.png"; resize->settings = (resize_settings) g_malloc(sizeof(struct manip_resize_set)); ((resize_settings)resize->settings)->new_w_pc = 100.0; ((resize_settings)resize->settings)->new_h_pc = 100.0; ((resize_settings)resize->settings)->new_w_px = 640; ((resize_settings)resize->settings)->new_h_px = 480; - ((resize_settings)resize->settings)->resize_mode = RESIZE_PERCENT; + ((resize_settings)resize->settings)->resize_mode_width = RESIZE_PERCENT; + ((resize_settings)resize->settings)->resize_mode_height = RESIZE_PERCENT; ((resize_settings)resize->settings)->stretch_mode = STRETCH_ALLOW; gdk_color_parse("black", &(((resize_settings)resize->settings)->padding_color)); gdk_colormap_alloc_color(gdk_colormap_get_system(), &(((resize_settings)resize->settings)->padding_color), TRUE, TRUE); @@ -145,7 +162,7 @@ manipulation manipulation_crop_new() manipulation crop; crop = (manipulation) g_malloc(sizeof(struct manip_str)); crop->type = MANIP_CROP; - crop->icon = &pixdata_crop; + crop->icon = "/gimp/plugin/bimp/icons/stock-crop.png"; crop->settings = (crop_settings) g_malloc(sizeof(struct manip_crop_set)); ((crop_settings)crop->settings)->new_w = 640; ((crop_settings)crop->settings)->new_h = 480; @@ -163,7 +180,7 @@ manipulation manipulation_fliprotate_new() manipulation fliprotate; fliprotate = (manipulation) g_malloc(sizeof(struct manip_str)); fliprotate->type = MANIP_FLIPROTATE; - fliprotate->icon = &pixdata_rotate; + fliprotate->icon = "/gimp/plugin/bimp/icons/stock-rotate.png"; fliprotate->settings = (fliprotate_settings) g_malloc(sizeof(struct manip_fliprotate_set)); ((fliprotate_settings)fliprotate->settings)->flip_h = FALSE; ((fliprotate_settings)fliprotate->settings)->flip_v = FALSE; @@ -178,7 +195,7 @@ manipulation manipulation_color_new() manipulation color; color = (manipulation) g_malloc(sizeof(struct manip_str)); color->type = MANIP_COLOR; - color->icon = &pixdata_color; + color->icon = "/gimp/plugin/bimp/icons/stock-color.png"; color->settings = (color_settings) g_malloc(sizeof(struct manip_color_set)); ((color_settings)color->settings)->brightness = 0; ((color_settings)color->settings)->contrast = 0; @@ -194,7 +211,7 @@ manipulation manipulation_sharpblur_new() manipulation sharpblur; sharpblur = (manipulation) g_malloc(sizeof(struct manip_str)); sharpblur->type = MANIP_SHARPBLUR; - sharpblur->icon = &pixdata_sharp; + sharpblur->icon = "/gimp/plugin/bimp/icons/stock-sharp.png"; sharpblur->settings = (sharpblur_settings) g_malloc(sizeof(struct manip_sharpblur_set)); ((sharpblur_settings)sharpblur->settings)->amount = 0; @@ -206,7 +223,7 @@ manipulation manipulation_watermark_new() manipulation watermark; watermark = (manipulation) g_malloc(sizeof(struct manip_str)); watermark->type = MANIP_WATERMARK; - watermark->icon = &pixdata_watermark; + watermark->icon = "/gimp/plugin/bimp/icons/stock-watermark.png"; watermark->settings = (watermark_settings) g_malloc(sizeof(struct manip_watermark_set)); ((watermark_settings)watermark->settings)->mode = TRUE; ((watermark_settings)watermark->settings)->text = ""; @@ -228,7 +245,7 @@ manipulation manipulation_changeformat_new() manipulation changeformat; changeformat = (manipulation) g_malloc(sizeof(struct manip_str)); changeformat->type = MANIP_CHANGEFORMAT; - changeformat->icon = &pixdata_changeformat; + changeformat->icon = "/gimp/plugin/bimp/icons/stock-changeformat.png"; changeformat->settings = (changeformat_settings) g_malloc(sizeof(struct manip_changeformat_set)); ((changeformat_settings)changeformat->settings)->format = FORMAT_JPEG; ((changeformat_settings)changeformat->settings)->params = (format_params_jpeg) g_malloc(sizeof(struct changeformat_params_jpeg)); @@ -250,7 +267,7 @@ manipulation manipulation_rename_new() manipulation rename; rename = (manipulation) g_malloc(sizeof(struct manip_str)); rename->type = MANIP_RENAME; - rename->icon = &pixdata_rename; + rename->icon = "/gimp/plugin/bimp/icons/stock-rename.png"; rename->settings = (rename_settings) g_malloc(sizeof(struct manip_rename_set)); ((rename_settings)rename->settings)->pattern = RENAME_KEY_ORIG; @@ -262,7 +279,7 @@ manipulation manipulation_userdef_new() manipulation userdef; userdef = (manipulation) g_malloc(sizeof(struct manip_str)); userdef->type = MANIP_USERDEF; - userdef->icon = &pixdata_userdef; + userdef->icon = "/gimp/plugin/bimp/icons/stock-userdef.png"; userdef->settings = (userdef_settings) g_malloc(sizeof(struct manip_userdef_set)); ((userdef_settings)userdef->settings)->procedure = NULL; ((userdef_settings)userdef->settings)->num_params = 0; diff --git a/src/bimp-manipulations.h b/src/bimp-manipulations.h index 574bcc4..cf3f155 100644 --- a/src/bimp-manipulations.h +++ b/src/bimp-manipulations.h @@ -24,9 +24,8 @@ typedef enum manipulation_type { typedef enum resize_mode { RESIZE_PERCENT = 0, - RESIZE_PIXEL_BOTH, - RESIZE_PIXEL_WIDTH, - RESIZE_PIXEL_HEIGHT, + RESIZE_PIXEL, + RESIZE_DISABLE, RESIZE_END } resize_mode; @@ -80,18 +79,27 @@ typedef enum format_type { FORMAT_PNG, FORMAT_TGA, FORMAT_TIFF, + FORMAT_HEIF, + FORMAT_WEBP, + FORMAT_AVIF, + FORMAT_EXR, FORMAT_END } format_type; static const char* format_type_string[][2] = { - {"bmp", "Bitmap (.bmp)"}, /* FORMAT_BMP */ - {"gif", "Gif (.gif)"}, /* FORMAT_GIF */ - {"ico", "Icon (.ico)"}, /* FORMAT_ICON */ + {"bmp", "Bitmap (.bmp)"}, /* FORMAT_BMP */ + {"gif", "Gif (.gif)"}, /* FORMAT_GIF */ + {"ico", "Icon (.ico)"}, /* FORMAT_ICON */ {"jpg", "Jpeg (.jpeg)"}, /* FORMAT_JPEG */ {"png", "Portable Network Graphics (.png)"}, /* FORMAT_PNG */ {"tga", "Targa (.tga)"}, /* FORMAT_TGA */ - {"tiff", "Tagged Image File Format (.tiff)"} /* FORMAT_TIFF */ + {"tiff", "Tagged Image File Format (.tiff)"}, /* FORMAT_TIFF */ + {"heif", "Heif (.heif)"}, /* FORMAT_HEIF */ + {"webp", "WebP (.webp)"}, /* FORMAT_WEBP */ + {"avif", "AV1 Image Format (.avif)"}, /* FORMAT_AVIF */ + {"exr", "OpenEXR (.exr)"} /* FORMAT_EXR */ }; +// First two bits = column, second two bits = row typedef enum watermark_position { WM_POS_TL = 0, WM_POS_TC, @@ -118,7 +126,7 @@ typedef void *format_params; /* Single manipulation struct */ typedef struct manip_str { manipulation_type type; - GdkPixdata* icon; + char* icon; manipulation_settings settings; /* Pointer to one of the following settings structs */ } *manipulation; @@ -129,7 +137,8 @@ typedef struct manip_resize_set { gdouble new_h_pc; gint new_w_px; gint new_h_px; - resize_mode resize_mode; + resize_mode resize_mode_width; + resize_mode resize_mode_height; stretch_mode stretch_mode; GdkColor padding_color; guint16 padding_color_alpha; @@ -157,8 +166,8 @@ typedef struct manip_fliprotate_set { } *fliprotate_settings; typedef struct manip_color_set { - gint brightness; - gint contrast; + gdouble brightness; + gdouble contrast; gboolean levels_auto; gboolean grayscale; char* curve_file; @@ -223,6 +232,32 @@ typedef struct changeformat_params_tiff { int compression; } *format_params_tiff; +typedef struct changeformat_params_heif { + gboolean lossless; + int quality; +} *format_params_heif; + +typedef struct changeformat_params_webp { + int preset; + gboolean lossless; + float quality; + float alpha_quality; + gboolean animation; + gboolean anim_loop; + gboolean minimize_size; + int kf_distance; + gboolean exif; + gboolean iptc; + gboolean xmp; + int delay; + int force_delay; +} *format_params_webp; + +typedef struct changeformat_params_avif { + gboolean lossless; + int quality; +} *format_params_avif; + typedef struct manip_rename_set { gchar* pattern; } *rename_settings; @@ -238,6 +273,7 @@ void bimp_remove_manipulation(manipulation); gboolean bimp_list_contains_manip(manipulation_type); gboolean bimp_list_contains_savingplugin(void); manipulation bimp_list_get_manip(manipulation_type); +GSList* bimp_list_get_manip_all(manipulation_type); char* bimp_manip_get_string(manipulation_type); manipulation manipulation_sharpblur_new(void); @@ -250,6 +286,6 @@ manipulation manipulation_changeformat_new(void); manipulation manipulation_rename_new(void); manipulation manipulation_userdef_new(void); -GSList* bimp_selected_manipulations; /* Manipulations selected by user */ +extern GSList* bimp_selected_manipulations; /* Manipulations selected by user */ #endif diff --git a/src/bimp-operate.c b/src/bimp-operate.c index d57e9e3..c4fe5c5 100644 --- a/src/bimp-operate.c +++ b/src/bimp-operate.c @@ -16,8 +16,6 @@ #include "bimp-serialize.h" #include "plugin-intl.h" -#define USE_API26 (_WIN32 || (!defined _WIN32 && (GIMP_MAJOR_VERSION == 2) && (GIMP_MINOR_VERSION <= 6))) - static gboolean process_image(gpointer); static gboolean apply_manipulation(manipulation, image_output); @@ -36,37 +34,41 @@ static gboolean image_save_bmp(image_output); static gboolean image_save_gif(image_output, gboolean); static gboolean image_save_icon(image_output); static gboolean image_save_jpeg(image_output, float, float, gboolean, gboolean, gchar*, int, gboolean, int, int); +static gboolean image_save_heif(image_output, int, gboolean); static gboolean image_save_png(image_output, gboolean, int, gboolean, gboolean, gboolean, gboolean, gboolean, gboolean, gboolean); static gboolean image_save_tga(image_output, gboolean, int); static gboolean image_save_tiff(image_output, int); +static gboolean image_save_webp(image_output, int, gboolean, float, float, gboolean, gboolean, gboolean, int, gboolean, gboolean, gboolean, int, int); +static gboolean image_save_avif(image_output, gboolean, int); +static gboolean image_save_exr(image_output); static int overwrite_result(char*, GtkWidget*); -char* current_datetime; -int processed_count; -int success_count; -int total_images; +static char* current_datetime; +static int processed_count; +static int success_count; +static int total_images; -char* common_folder_path; +static char* common_folder_path; -gboolean list_contains_changeformat; -gboolean list_contains_rename; -gboolean list_contains_watermark; -gboolean list_contains_savingplugin; +static gboolean list_contains_changeformat; +static gboolean list_contains_rename; +static gboolean list_contains_watermark; +static gboolean list_contains_savingplugin; // set of variables to be used when doing Curve color correction // they are global so the batch process will read the source curve file once -gboolean colorcurve_init; -int colorcurve_num_points_v; -guint8* colorcurve_ctr_points_v; -int colorcurve_num_points_r; -guint8* colorcurve_ctr_points_r; -int colorcurve_num_points_g; -guint8* colorcurve_ctr_points_g; -int colorcurve_num_points_b; -guint8* colorcurve_ctr_points_b; -int colorcurve_num_points_a; -guint8* colorcurve_ctr_points_a; +static gboolean colorcurve_init; +static int colorcurve_num_points_v; +static gdouble* colorcurve_ctr_points_v; +static int colorcurve_num_points_r; +static gdouble* colorcurve_ctr_points_r; +static int colorcurve_num_points_g; +static gdouble* colorcurve_ctr_points_g; +static int colorcurve_num_points_b; +static gdouble* colorcurve_ctr_points_b; +static int colorcurve_num_points_a; +static gdouble* colorcurve_ctr_points_a; void bimp_start_batch(gpointer parent_dialog) { @@ -363,8 +365,14 @@ void bimp_apply_drawable_manipulations(image_output imageout, gchar* orig_filena // watermark at last if(list_contains_watermark) { - g_print("Applying WATERMARK...\n"); - apply_watermark((watermark_settings)(bimp_list_get_manip(MANIP_WATERMARK))->settings, imageout); + GSList* watermarks = bimp_list_get_manip_all(MANIP_WATERMARK); + GSList *iterator = NULL; + for (iterator = watermarks; iterator; iterator = iterator->next) { + g_print("Applying WATERMARK...\n"); + apply_watermark((watermark_settings)(((manipulation)(iterator->data))->settings), imageout); + } + + } // re-enable undo @@ -429,118 +437,64 @@ static gboolean apply_resize(resize_settings settings, image_output out) orig_w = gimp_image_width(out->image_id); orig_h = gimp_image_height(out->image_id); - if (settings->resize_mode == RESIZE_PERCENT) { - - if (settings->stretch_mode == STRETCH_ASPECT) { - gdouble newpct = min(settings->new_w_pc, settings->new_h_pc); - - final_w = view_w = round((orig_w * newpct) / 100.0); - final_h = view_h = round((orig_h * newpct) / 100.0); - } - else if (settings->stretch_mode == STRETCH_PADDED) { - gdouble newpct = min(settings->new_w_pc, settings->new_h_pc); - - final_w = round((orig_w * newpct) / 100.0); - final_h = round((orig_h * newpct) / 100.0); - view_w = round((orig_w * settings->new_w_pc) / 100.0); - view_h = round((orig_h * settings->new_h_pc) / 100.0); - } - else { - final_w = view_w = round((orig_w * settings->new_w_pc) / 100.0); - final_h = view_h = round((orig_h * settings->new_h_pc) / 100.0); - } + if (settings->resize_mode_width == RESIZE_DISABLE && settings->resize_mode_height == RESIZE_DISABLE) { + return !settings->change_res || success; + } + + gdouble newwpct, newwpctmax; + if (settings->resize_mode_width == RESIZE_PERCENT) { + newwpct = newwpctmax = settings->new_w_pc / 100.0; + } + else if(settings->resize_mode_width == RESIZE_PIXEL) { + newwpct = newwpctmax = (double)settings->new_w_px / (double)orig_w; } else { - // user typed exact pixel size - if (settings->resize_mode == RESIZE_PIXEL_WIDTH) { - view_w = settings->new_w_px; // width is fixed - - if (settings->stretch_mode == STRETCH_ASPECT) { - final_w = view_w; - final_h = view_h = round(((float)final_w * orig_h) / orig_w); - } - else if (settings->stretch_mode == STRETCH_PADDED) { - final_w = min(view_w, orig_w); - final_h = round(((float)final_w * orig_h) / orig_w); - view_h = max(orig_h, final_h); - } - else { - final_w = view_w; - final_h = view_h = orig_h; - } - } - else if (settings->resize_mode == RESIZE_PIXEL_HEIGHT) { - view_h = settings->new_h_px; // height is fixed - - if (settings->stretch_mode == STRETCH_ASPECT) { - final_h = view_h; - final_w = view_w = round(((float)final_h * orig_w) / orig_h); - } - else if (settings->stretch_mode == STRETCH_PADDED) { - final_h = min(view_h, orig_h); - final_w = round(((float)final_h * orig_w) / orig_h); - view_w = max(orig_w, final_w); - } - else { - final_h = view_h; - final_w = view_w = orig_w; - } - } - else { - // both dimensions are defined - if (settings->stretch_mode == STRETCH_ASPECT) { - // Find which new dimension is the smallest percentage of the existing image dimension - gdouble newwpct = (float)settings->new_w_px / (float)orig_w; - gdouble newhpct = (float)settings->new_h_px / (float)orig_h; - gdouble newpct = min(newwpct, newhpct); - - final_w = view_w = round(orig_w * newpct); - final_h = view_h = round(orig_h * newpct); - } - else if (settings->stretch_mode == STRETCH_PADDED) { - // Find which new dimension is the smallest percentage of the existing image dimension - gdouble newwpct = (float)settings->new_w_px / (float)orig_w; - gdouble newhpct = (float)settings->new_h_px / (float)orig_h; - gdouble newpct = min(newwpct, newhpct); - - final_w = round(orig_w * newpct); - final_h = round(orig_h * newpct); - view_w = round(orig_w * newwpct); - view_h = round(orig_h * newhpct); - } - else { - final_w = view_w = settings->new_w_px; - final_h = view_h = settings->new_h_px; - } - } + newwpct = 1; + newwpctmax = DBL_MAX; } - // do resize - #if USE_API26 + gdouble newhpct, newhpctmax; + if (settings->resize_mode_height == RESIZE_PERCENT) { + newhpct = newhpctmax = settings->new_h_pc / 100.0; + } + else if(settings->resize_mode_height == RESIZE_PIXEL) { + newhpct = newhpctmax = (double)settings->new_h_px / (double)orig_h; + } + else { + newhpct = 1; + newhpctmax = DBL_MAX; + } - success = gimp_image_scale_full ( - out->image_id, - final_w, - final_h, - settings->interpolation - ); - - #else + if(settings->stretch_mode == STRETCH_ASPECT) { + gdouble newpct = min(newwpctmax, newhpctmax); + + final_w = view_w = round(orig_w * newpct); + final_h = view_h = round(orig_h * newpct); + } + else if (settings->stretch_mode == STRETCH_PADDED) { + gdouble newpct = min(newwpctmax, newhpctmax); + + final_w = round(orig_w * newpct); + final_h = round(orig_h * newpct); + view_w = round(orig_w * newwpct); + view_h = round(orig_h * newhpct); + } + else { + final_w = view_w = round(orig_w * newwpct); + final_h = view_h = round(orig_h * newhpct); + } - // starting from 2.8, gimp_image_scale_full is deprecated. - // use gimp_image_scale instead - GimpInterpolationType old_interpolation; - old_interpolation = gimp_context_get_interpolation(); - - success = gimp_context_set_interpolation (settings->interpolation); - success = gimp_image_scale ( - out->image_id, - final_w, - final_h - ); - success = gimp_context_set_interpolation (old_interpolation); + // use gimp_image_scale instead + GimpInterpolationType old_interpolation; + old_interpolation = gimp_context_get_interpolation(); - #endif + success = gimp_context_set_interpolation (settings->interpolation); + success = gimp_image_scale ( + out->image_id, + final_w, + final_h + ); + success = gimp_context_set_interpolation (old_interpolation); // add a padding if requested if (settings->stretch_mode == STRETCH_PADDED) { @@ -560,31 +514,17 @@ static gboolean apply_resize(resize_settings settings, image_output out) view_w, view_h, layerType, (settings->padding_color_alpha / (float)G_MAXUINT16) * 100, - GIMP_NORMAL_MODE + GIMP_LAYER_MODE_NORMAL_LEGACY ); - #if USE_API26 - - gimp_image_add_layer ( - out->image_id, - layerId, - 0 - ); - - gimp_image_lower_layer_to_bottom(out->image_id, layerId); + gimp_image_insert_layer( + out->image_id, + layerId, + 0, + 0 + ); - #else - - gimp_image_insert_layer( - out->image_id, - layerId, - 0, - 0 - ); - - gimp_image_lower_item_to_bottom(out->image_id, layerId); - - #endif + gimp_image_lower_item_to_bottom(out->image_id, layerId); // fill it with the selected color GimpRGB old_background, new_background; @@ -592,11 +532,11 @@ static gboolean apply_resize(resize_settings settings, image_output out) gimp_context_get_background(&old_background); gimp_rgb_parse_hex (&new_background, gdk_color_to_string(&(settings->padding_color)), strlen(gdk_color_to_string(&(settings->padding_color)))); gimp_context_set_background(&new_background); - gimp_drawable_fill(layerId, GIMP_BACKGROUND_FILL); + gimp_drawable_fill(layerId, GIMP_FILL_BACKGROUND); gimp_context_set_background(&old_background); // move it to the center - gimp_layer_translate(layerId, -abs(view_w - final_w) / 2, -abs(view_h - final_h) / 2); + gimp_item_transform_translate(layerId, -abs(view_w - final_w) / 2, -abs(view_h - final_h) / 2); // finish changing the canvas size accordingly success = gimp_image_resize_to_layers(out->image_id); @@ -725,7 +665,7 @@ static gboolean apply_color(color_settings settings, image_output out) int i; for (i = 0; i < out->drawable_count; i++) { - success = gimp_brightness_contrast( + success = gimp_drawable_brightness_contrast( out->drawable_ids[i], settings->brightness, settings->contrast @@ -742,7 +682,7 @@ static gboolean apply_color(color_settings settings, image_output out) // do levels correction int i; for (i = 0; i < out->drawable_count; i++) { - success = gimp_levels_stretch(out->drawable_ids[i]); + success = gimp_drawable_levels_stretch(out->drawable_ids[i]); } } @@ -768,23 +708,23 @@ static gboolean apply_color(color_settings settings, image_output out) int i; for (i = 0; i < out->drawable_count; i++) { if (colorcurve_num_points_v >= 4 && colorcurve_num_points_v <= 34) { - success = gimp_curves_spline(out->drawable_ids[i], GIMP_HISTOGRAM_VALUE, colorcurve_num_points_v, colorcurve_ctr_points_v); + success = gimp_drawable_curves_spline(out->drawable_ids[i], GIMP_HISTOGRAM_VALUE, colorcurve_num_points_v, colorcurve_ctr_points_v); } if (colorcurve_num_points_r >= 4 && colorcurve_num_points_r <= 34) { - success = gimp_curves_spline(out->drawable_ids[i], GIMP_HISTOGRAM_RED, colorcurve_num_points_r, colorcurve_ctr_points_r); + success = gimp_drawable_curves_spline(out->drawable_ids[i], GIMP_HISTOGRAM_RED, colorcurve_num_points_r, colorcurve_ctr_points_r); } if (colorcurve_num_points_g >= 4 && colorcurve_num_points_g <= 34) { - success = gimp_curves_spline(out->drawable_ids[i], GIMP_HISTOGRAM_GREEN, colorcurve_num_points_g, colorcurve_ctr_points_g); + success = gimp_drawable_curves_spline(out->drawable_ids[i], GIMP_HISTOGRAM_GREEN, colorcurve_num_points_g, colorcurve_ctr_points_g); } if (colorcurve_num_points_b >= 4 && colorcurve_num_points_b <= 34) { - success = gimp_curves_spline(out->drawable_ids[i], GIMP_HISTOGRAM_BLUE, colorcurve_num_points_b, colorcurve_ctr_points_b); + success = gimp_drawable_curves_spline(out->drawable_ids[i], GIMP_HISTOGRAM_BLUE, colorcurve_num_points_b, colorcurve_ctr_points_b); } if (colorcurve_num_points_a >= 4 && colorcurve_num_points_a <= 34) { - success = gimp_curves_spline(out->drawable_ids[i], GIMP_HISTOGRAM_ALPHA, colorcurve_num_points_a, colorcurve_ctr_points_a); + success = gimp_drawable_curves_spline(out->drawable_ids[i], GIMP_HISTOGRAM_ALPHA, colorcurve_num_points_a, colorcurve_ctr_points_a); } } } @@ -902,26 +842,12 @@ static gboolean apply_watermark(watermark_settings settings, image_output out) settings->image_file ); - #if USE_API26 - - gimp_image_add_layer( - out->image_id, - layerId, - 0 - ); - - #else - - // starting from 2.8, gimp_image_add_layer is deprecated. - // use gimp_image_insert_layer instead - gimp_image_insert_layer( - out->image_id, - layerId, - 0, - 0 - ); - - #endif + gimp_image_insert_layer( + out->image_id, + layerId, + 0, + 0 + ); wmwidth = gimp_drawable_width(layerId); wmheight = gimp_drawable_height(layerId); @@ -939,32 +865,17 @@ static gboolean apply_watermark(watermark_settings settings, image_output out) wmheight = round(wmheight_); } - // resize wm - #if USE_API26 + GimpInterpolationType old_interpolation; + old_interpolation = gimp_context_get_interpolation(); - success = gimp_layer_scale_full ( - layerId, - wmwidth, - wmheight, - TRUE, - GIMP_INTERPOLATION_CUBIC - ); - - #else - - GimpInterpolationType old_interpolation; - old_interpolation = gimp_context_get_interpolation(); - - success = gimp_context_set_interpolation (GIMP_INTERPOLATION_CUBIC); - success = gimp_layer_scale ( - layerId, - wmwidth, - wmheight, - TRUE - ); - success = gimp_context_set_interpolation (old_interpolation); - - #endif + success = gimp_context_set_interpolation (GIMP_INTERPOLATION_CUBIC); + success = gimp_layer_scale ( + layerId, + wmwidth, + wmheight, + TRUE + ); + success = gimp_context_set_interpolation (old_interpolation); } gimp_layer_set_opacity(layerId, settings->opacity); @@ -1038,6 +949,7 @@ static gboolean apply_userdef(userdef_settings settings, image_output out) gboolean saving_function = (strstr(settings->procedure, "-save") != NULL); int single_drawable = gimp_image_merge_visible_layers(out->image_id, GIMP_CLIP_TO_IMAGE); + gimp_selection_none(out->image_id); for (param_i = 0; param_i < settings->num_params; param_i++) { switch((settings->params[param_i]).type) { @@ -1158,6 +1070,41 @@ static gboolean image_save(format_type type, image_output imageout, format_param else if(type == FORMAT_TIFF) { result = image_save_tiff(imageout, ((format_params_tiff)params)->compression); } + else if(type == FORMAT_HEIF) { + result = image_save_heif( + imageout, + ((format_params_heif)params)->quality, + ((format_params_heif)params)->lossless + ); + } + else if(type == FORMAT_WEBP) { + result = image_save_webp( + imageout, + ((format_params_webp)params)->preset, + ((format_params_webp)params)->lossless, + ((format_params_webp)params)->quality, + ((format_params_webp)params)->alpha_quality, + ((format_params_webp)params)->animation, + ((format_params_webp)params)->anim_loop, + ((format_params_webp)params)->minimize_size, + ((format_params_webp)params)->kf_distance, + ((format_params_webp)params)->exif, + ((format_params_webp)params)->iptc, + ((format_params_webp)params)->xmp, + ((format_params_webp)params)->delay, + ((format_params_webp)params)->force_delay + ); + } + else if(type == FORMAT_AVIF) { + result = image_save_avif( + imageout, + ((format_params_avif)params)->lossless, + ((format_params_avif)params)->quality + ); + } + else if(type == FORMAT_EXR) { + result = image_save_exr(imageout); + } else { // save in the original format int final_drawable = gimp_image_merge_visible_layers(imageout->image_id, GIMP_CLIP_TO_IMAGE); @@ -1165,22 +1112,52 @@ static gboolean image_save(format_type type, image_output imageout, format_param if (file_has_extension(imageout->filename, ".gif") && gimp_drawable_is_rgb(final_drawable)) { gimp_image_convert_indexed( imageout->image_id, - GIMP_FS_DITHER, - GIMP_MAKE_PALETTE, + GIMP_CONVERT_DITHER_FS, + GIMP_CONVERT_PALETTE_GENERATE, gimp_drawable_has_alpha (final_drawable) ? 255 : 256, TRUE, FALSE, "" ); } - - result = gimp_file_save( - GIMP_RUN_NONINTERACTIVE, - imageout->image_id, - final_drawable, - imageout->filepath, - imageout->filename - ); + + // for HEIF, the default values are "0 quality"... save lossless instead + if ((file_has_extension(imageout->filename, ".heif") || file_has_extension(imageout->filename, ".heic"))) { + result = image_save_heif( + imageout, + 100, + TRUE + ); + } + // same thing for WEBP + else if (file_has_extension(imageout->filename, ".webp")) { + result = image_save_webp( + imageout, + 0, + FALSE, + 90, + 100, + FALSE, + TRUE, + TRUE, + 50, + TRUE, + TRUE, + TRUE, + 200, + FALSE + ); + } + else + { + result = gimp_file_save( + GIMP_RUN_NONINTERACTIVE, + imageout->image_id, + final_drawable, + imageout->filepath, + imageout->filename + ); + } } return result; @@ -1212,8 +1189,8 @@ static gboolean image_save_gif(image_output out, gboolean interlace) // first, convert to indexed-256 color mode gimp_image_convert_indexed( out->image_id, - GIMP_FS_DITHER, - GIMP_MAKE_PALETTE, + GIMP_CONVERT_DITHER_FS, + GIMP_CONVERT_PALETTE_GENERATE, gimp_drawable_has_alpha (out->drawable_ids[0]) ? 255 : 256, TRUE, FALSE, @@ -1290,6 +1267,27 @@ static gboolean image_save_jpeg(image_output out, float quality, float smoothing return TRUE; } +static gboolean image_save_heif(image_output out, int quality, gboolean lossless) +{ + gint nreturn_vals; + int final_drawable = gimp_image_merge_visible_layers(out->image_id, GIMP_CLIP_TO_IMAGE); + + GimpParam *return_vals = gimp_run_procedure( + "file_heif_save", + &nreturn_vals, + GIMP_PDB_INT32, GIMP_RUN_NONINTERACTIVE, + GIMP_PDB_IMAGE, out->image_id, + GIMP_PDB_DRAWABLE, final_drawable, + GIMP_PDB_STRING, out->filepath, + GIMP_PDB_STRING, out->filename, + GIMP_PDB_INT32, quality, // Quality factor (range: 0-100. 0 = worst, 100 = best) + GIMP_PDB_INT32, lossless ? 1 : 0, // Use lossless compression (0 = lossy, 1 = lossless) + GIMP_PDB_END + ); + + return TRUE; +} + static gboolean image_save_png(image_output out, gboolean interlace, int compression, gboolean savebgc, gboolean savegamma, gboolean saveoff, gboolean savephys, gboolean savetime, gboolean savecomm, gboolean savetrans) { gint nreturn_vals; @@ -1359,6 +1357,76 @@ static gboolean image_save_tiff(image_output out, int compression) return TRUE; } +static gboolean image_save_webp(image_output out, int preset, gboolean lossless, float quality, float alpha_quality, gboolean animation, gboolean anim_loop, gboolean minimize_size, int kf_distance, gboolean exif, gboolean iptc, gboolean xmp, int delay, int force_delay) +{ + gint nreturn_vals; + int final_drawable = gimp_image_merge_visible_layers(out->image_id, GIMP_CLIP_TO_IMAGE); + + GimpParam *return_vals = gimp_run_procedure( + "file_webp_save", + &nreturn_vals, + GIMP_PDB_INT32, GIMP_RUN_NONINTERACTIVE, + GIMP_PDB_IMAGE, out->image_id, + GIMP_PDB_DRAWABLE, final_drawable, + GIMP_PDB_STRING, out->filepath, + GIMP_PDB_STRING, out->filename, + GIMP_PDB_INT32, preset, // preset (Default=0, Picture=1, Photo=2, Drawing=3, Icon=4, Text=5) + GIMP_PDB_INT32, lossless, // Use lossless encoding (0/1) + GIMP_PDB_FLOAT, quality, // Quality of the image (0 <= quality <= 100) + GIMP_PDB_FLOAT, alpha_quality, // Quality of the image's alpha channel (0 <= alpha-quality <= 100) + GIMP_PDB_INT32, animation, // Use layers for animation (0/1) + GIMP_PDB_INT32, anim_loop, // Loop animation infinitely (0/1) + GIMP_PDB_INT32, minimize_size, // Minimize animation size (0/1) + GIMP_PDB_INT32, kf_distance, // Maximum distance between key-frames (>=0) + GIMP_PDB_INT32, exif, // Toggle saving exif data (0/1) + GIMP_PDB_INT32, iptc, // Toggle saving iptc data (0/1) + GIMP_PDB_INT32, xmp, // Toggle saving xmp data (0/1) + GIMP_PDB_INT32, delay, // Delay to use when timestamps are not available or forced + GIMP_PDB_INT32, force_delay, // Force delay on all frames + GIMP_PDB_END + ); + + return TRUE; +} + +static gboolean image_save_avif(image_output out, gboolean lossless, int quality) +{ + gint nreturn_vals; + int final_drawable = gimp_image_merge_visible_layers(out->image_id, GIMP_CLIP_TO_IMAGE); + + GimpParam *return_vals = gimp_run_procedure( + "file_heif_av1_save", + &nreturn_vals, + GIMP_PDB_INT32, GIMP_RUN_NONINTERACTIVE, + GIMP_PDB_IMAGE, out->image_id, + GIMP_PDB_DRAWABLE, final_drawable, + GIMP_PDB_STRING, out->filepath, + GIMP_PDB_STRING, out->filename, + GIMP_PDB_INT32, quality, // Quality of the image (0 <= quality <= 100) + GIMP_PDB_INT32, lossless, // Use lossless encoding (0/1) + GIMP_PDB_END + ); +} + +static gboolean image_save_exr(image_output out) +{ + gint nreturn_vals; + int final_drawable = gimp_image_merge_visible_layers(out->image_id, GIMP_CLIP_TO_IMAGE); + + GimpParam *return_vals = gimp_run_procedure( + "file_exr_save", + &nreturn_vals, + GIMP_PDB_INT32, GIMP_RUN_NONINTERACTIVE, + GIMP_PDB_IMAGE, out->image_id, + GIMP_PDB_DRAWABLE, final_drawable, + GIMP_PDB_STRING, out->filepath, + GIMP_PDB_STRING, out->filename, + GIMP_PDB_END + ); + + return TRUE; +} + /* returns a result code following this schema: * 0 = user responses "don't overwrite" to a confirm dialog * 1 = old file was the same as the new one and user responses "yes, overwrite" diff --git a/src/bimp-serialize.c b/src/bimp-serialize.c index 5c5bb11..1d916a5 100644 --- a/src/bimp-serialize.c +++ b/src/bimp-serialize.c @@ -16,7 +16,7 @@ #include "bimp-serialize.h" static void append_manipulation_details(manipulation, GKeyFile*); -static GSList* parse_manipulations(GKeyFile*); +static GSList* parse_manipulations(GKeyFile*, int); static void write_resize(resize_settings, GKeyFile*); static manipulation read_resize(GKeyFile*); static void write_crop(crop_settings, GKeyFile*); @@ -24,11 +24,11 @@ static manipulation read_crop(GKeyFile*); static void write_fliprotate(fliprotate_settings, GKeyFile*); static manipulation read_fliprotate(GKeyFile*); static void write_color(color_settings, GKeyFile*); -static manipulation read_color(GKeyFile*); +static manipulation read_color(GKeyFile*, int); static void write_sharpblur(sharpblur_settings, GKeyFile*); static manipulation read_sharpblur(GKeyFile*); -static void write_watermark(watermark_settings, GKeyFile*); -static manipulation read_watermark(GKeyFile*); +static void write_watermark(watermark_settings, GKeyFile*, int); +static manipulation read_watermark(GKeyFile*, int); static void write_changeformat(changeformat_settings, GKeyFile*); static manipulation read_changeformat(GKeyFile*); static void write_rename(rename_settings, GKeyFile*); @@ -36,7 +36,8 @@ static manipulation read_rename(GKeyFile*); static void write_userdef(userdef_settings, GKeyFile*, int); static manipulation read_userdef(GKeyFile*, int); -int userdef_count; +static int watermark_count, userdef_count; +static int loaded_build; gboolean bimp_serialize_to_file(gchar* filename) { @@ -47,6 +48,7 @@ gboolean bimp_serialize_to_file(gchar* filename) g_key_file_set_comment (output_file, NULL, NULL, g_strdup_printf("BIMP %s\nMANIPULATION SET DEFINITION", PLUG_IN_VERSION), NULL); + watermark_count = 0; userdef_count = 0; g_slist_foreach(bimp_selected_manipulations, (GFunc)append_manipulation_details, output_file); @@ -64,9 +66,30 @@ gboolean bimp_deserialize_from_file(gchar* filename) GKeyFile* input_file = g_key_file_new(); g_key_file_set_list_separator(input_file, ';'); - if (result = g_key_file_load_from_file (input_file, filename, G_KEY_FILE_KEEP_COMMENTS, NULL)) { + if ((result = g_key_file_load_from_file (input_file, filename, G_KEY_FILE_KEEP_COMMENTS, NULL))) { - GSList* new_list = parse_manipulations(input_file); + // read build code + int buildnumber = 0; + gchar* header = g_key_file_get_comment(input_file, NULL, NULL, NULL); + GRegex *regex = g_regex_new ("^BIMP\\s(\\d+)\\.(\\d+)", 0, 0, NULL); + + GMatchInfo *match_info; + g_regex_match (regex, header, 0, &match_info); + while (g_match_info_matches (match_info)) + { + gchar *major = g_match_info_fetch (match_info, 1); + int major_i = g_ascii_strtoll(major, NULL, 10); + gchar *minor = g_match_info_fetch (match_info, 2); + int minor_i = g_ascii_strtoll(major, NULL, 10); + buildnumber = (major_i * 1000) + minor_i; + if (buildnumber > 0) break; + + g_match_info_next (match_info, NULL); + } + g_match_info_free (match_info); + g_regex_unref (regex); + + GSList* new_list = parse_manipulations(input_file, buildnumber); if (new_list != NULL) { g_slist_free(bimp_selected_manipulations); bimp_selected_manipulations = new_list; @@ -101,7 +124,8 @@ static void append_manipulation_details(manipulation man, GKeyFile* output_file) write_sharpblur((sharpblur_settings)man->settings, output_file); } else if (man->type == MANIP_WATERMARK) { - write_watermark((watermark_settings)man->settings, output_file); + write_watermark((watermark_settings)man->settings, output_file, watermark_count); + watermark_count++; } else if (man->type == MANIP_CHANGEFORMAT) { write_changeformat((changeformat_settings)man->settings, output_file); @@ -115,7 +139,7 @@ static void append_manipulation_details(manipulation man, GKeyFile* output_file) } } -static GSList* parse_manipulations(GKeyFile* file) +static GSList* parse_manipulations(GKeyFile* file, int version) { GSList* manipulations = NULL; manipulation newman = NULL; @@ -136,13 +160,21 @@ static GSList* parse_manipulations(GKeyFile* file) newman = read_fliprotate(file); } else if (strcmp(groups[i], "COLOR") == 0) { - newman = read_color(file); + newman = read_color(file, version); } else if (strcmp(groups[i], "SHARPBLUR") == 0) { newman = read_sharpblur(file); } - else if (strcmp(groups[i], "WATERMARK") == 0) { - newman = read_watermark(file); + else if (strncmp(groups[i], "WATERMARK", strlen("WATERMARK")) == 0) { + if (strcmp(groups[i], "WATERMARK") == 0) { + newman = read_watermark(file, -1); + } + else { + int watermark_id; + if (sscanf(groups[i], "WATERMARK%d", &watermark_id) == 1) { + newman = read_watermark(file, watermark_id); + } + } } else if (strcmp(groups[i], "CHANGEFORMAT") == 0) { newman = read_changeformat(file); @@ -173,7 +205,8 @@ static void write_resize(resize_settings settings, GKeyFile* file) g_key_file_set_double(file, group_name, "new_h_pc", settings->new_h_pc); g_key_file_set_integer(file, group_name, "new_w_px", settings->new_w_px); g_key_file_set_integer(file, group_name, "new_h_px", settings->new_h_px); - g_key_file_set_integer(file, group_name, "resize_mode", settings->resize_mode); + g_key_file_set_integer(file, group_name, "resize_mode_width", settings->resize_mode_width); + g_key_file_set_integer(file, group_name, "resize_mode_height", settings->resize_mode_height); g_key_file_set_integer(file, group_name, "stretch_mode", settings->stretch_mode); g_key_file_set_string(file, group_name, "padding_color", gdk_color_to_string(&(settings->padding_color))); g_key_file_set_integer(file, group_name, "padding_color_alpha", settings->padding_color_alpha); @@ -205,8 +238,34 @@ static manipulation read_resize(GKeyFile* file) if (g_key_file_has_key(file, group_name, "new_h_px", NULL)) settings->new_h_px = g_key_file_get_integer(file, group_name, "new_h_px", NULL); - if (g_key_file_has_key(file, group_name, "resize_mode", NULL)) - settings->resize_mode = g_key_file_get_integer(file, group_name, "resize_mode", NULL); + // for backwards compatibility + if (g_key_file_has_key(file, group_name, "resize_mode", NULL)) { + switch(g_key_file_get_integer(file, group_name, "resize_mode", NULL)) { + case 0: // RESIZE_PERCENT + settings->resize_mode_width = settings->resize_mode_height = RESIZE_PERCENT; + break; + case 1: // RESIZE_PIZEL_BOTH + settings->resize_mode_width = settings->resize_mode_height = RESIZE_PIXEL; + break; + case 2: // RESIZE_PIXEL_WIDTH + settings->resize_mode_width = RESIZE_PIXEL; + settings->resize_mode_height = RESIZE_DISABLE; + break; + case 3: // RESIZE_PIXEL_HEIGHT + settings->resize_mode_width = RESIZE_DISABLE; + settings->resize_mode_height = RESIZE_PIXEL; + break; + case 4: // RESIZE_END + default: + settings->resize_mode_width = settings->resize_mode_height = RESIZE_END; + } + } + + if (g_key_file_has_key(file, group_name, "resize_mode_width", NULL)) + settings->resize_mode_width = g_key_file_get_integer(file, group_name, "resize_mode_width", NULL); + + if (g_key_file_has_key(file, group_name, "resize_mode_height", NULL)) + settings->resize_mode_height = g_key_file_get_integer(file, group_name, "resize_mode_height", NULL); if (g_key_file_has_key(file, group_name, "stretch_mode", NULL)) settings->stretch_mode = g_key_file_get_integer(file, group_name, "stretch_mode", NULL); @@ -319,14 +378,14 @@ static void write_color(color_settings settings, GKeyFile* file) { gchar* group_name = "COLOR"; - g_key_file_set_integer(file, group_name, "brightness", settings->brightness); - g_key_file_set_integer(file, group_name, "contrast", settings->contrast); + g_key_file_set_double(file, group_name, "brightness", settings->brightness); + g_key_file_set_double(file, group_name, "contrast", settings->contrast); g_key_file_set_boolean(file, group_name, "levels_auto", settings->levels_auto); g_key_file_set_boolean(file, group_name, "grayscale", settings->grayscale); if (settings->curve_file != NULL) g_key_file_set_string(file, group_name, "curve_file", settings->curve_file); } -static manipulation read_color(GKeyFile* file) +static manipulation read_color(GKeyFile* file, int version) { gchar* group_name = "COLOR"; manipulation man = NULL; @@ -336,10 +395,34 @@ static manipulation read_color(GKeyFile* file) color_settings settings = ((color_settings)man->settings); if (g_key_file_has_key(file, group_name, "brightness", NULL)) - settings->brightness = g_key_file_get_integer(file, group_name, "brightness", NULL); + { + double b = g_key_file_get_double(file, group_name, "brightness", NULL); + if (version < 2000) + { + // prior to BIMP 2.0, brightness range was [-127;127] + // now map to [-0.5;0.5] + settings->brightness = -0.5 + ((0.5 - (-0.5)) / (127 - (-127)) * (b - (-127))); + } + else + { + settings->brightness = b; + } + } if (g_key_file_has_key(file, group_name, "contrast", NULL)) - settings->contrast = g_key_file_get_integer(file, group_name, "contrast", NULL); + { + double c = g_key_file_get_double(file, group_name, "contrast", NULL); + if (version < 2000) + { + // prior to BIMP 2.0, contrast range was [-127;127] + // now map to [-0.5;0.5] + settings->contrast = -0.5 + ((0.5 - (-0.5)) / (127 - (-127)) * (c - (-127))); + } + else + { + settings->contrast = c; + } + } if (g_key_file_has_key(file, group_name, "levels_auto", NULL)) settings->levels_auto = g_key_file_get_boolean(file, group_name, "levels_auto", NULL); @@ -359,15 +442,15 @@ static manipulation read_color(GKeyFile* file) gboolean parse_curve_file( char* file, int* num_points_v, - guint8** ctr_points_v, + gdouble** ctr_points_v, int* num_points_r, - guint8** ctr_points_r, + gdouble** ctr_points_r, int* num_points_g, - guint8** ctr_points_g, + gdouble** ctr_points_g, int* num_points_b, - guint8** ctr_points_b, + gdouble** ctr_points_b, int* num_points_a, - guint8** ctr_points_a + gdouble** ctr_points_a ) { FILE* pFile; pFile = fopen (file, "r"); @@ -378,7 +461,7 @@ gboolean parse_curve_file( char line[2400]; char channel_name[6]; int num_points_temp = 0; - guint8* ctr_points_temp = NULL; + gdouble* ctr_points_temp = NULL; if (pFile == NULL) goto err; else { @@ -407,19 +490,19 @@ gboolean parse_curve_file( if (fgets(line, sizeof(line), pFile) == NULL) goto err; } - // number of points - int n_points; + // n-points, ignored (also it is missing since GIMP 2.10) + // the actual number of points is parsed from "(points N..." if (g_str_has_prefix(line, " (n-points")) { - if (sscanf (line, " (n-points %d)", &n_points) != 1) goto err; if (fgets(line, sizeof(line), pFile) == NULL) goto err; } - // points list - + // number of points and list double pX, pY; int p_count = 0; - char* token = strtok(line + strlen(g_strdup_printf(" (points %d", n_points * 2)), " "); + char* token = strtok(line + strlen(g_strdup_printf(" (points ")), " "); + int num_points = atoi(token); // first token holds the number of points + token = strtok(NULL, " "); while (token) { pX = atof(token); token = strtok(NULL, " "); @@ -430,9 +513,9 @@ gboolean parse_curve_file( pY >= 0 && pY <= 1) { // save X and Y - ctr_points_temp = (guint8*)g_realloc(ctr_points_temp, sizeof(guint8) * (p_count + 2)); // add one element to the array - ctr_points_temp[p_count] = (guint8)(255 * pX); // round, map to [0;255] and save - ctr_points_temp[p_count + 1] = (guint8)(255 * pY); + ctr_points_temp = (gdouble*)g_realloc(ctr_points_temp, sizeof(gdouble) * (p_count + 2)); // add one element to the array + ctr_points_temp[p_count] = pX; + ctr_points_temp[p_count + 1] = pY; p_count += 2; } @@ -454,23 +537,23 @@ gboolean parse_curve_file( // save in the proper variables if (strcmp(channel_name, "value") == 0) { *num_points_v = num_points_temp; - *ctr_points_v = g_memdup(ctr_points_temp, num_points_temp * sizeof(guint8)); + *ctr_points_v = g_memdup(ctr_points_temp, num_points_temp * sizeof(gdouble)); } else if (strcmp(channel_name, "red") == 0) { *num_points_r = num_points_temp; - *ctr_points_r = g_memdup(ctr_points_temp, num_points_temp * sizeof(guint8)); + *ctr_points_r = g_memdup(ctr_points_temp, num_points_temp * sizeof(gdouble)); } else if (strcmp(channel_name, "green") == 0) { *num_points_g = num_points_temp; - *ctr_points_g = g_memdup(ctr_points_temp, num_points_temp * sizeof(guint8)); + *ctr_points_g = g_memdup(ctr_points_temp, num_points_temp * sizeof(gdouble)); } else if (strcmp(channel_name, "blue") == 0) { *num_points_b = num_points_temp; - *ctr_points_b = g_memdup(ctr_points_temp, num_points_temp * sizeof(guint8)); + *ctr_points_b = g_memdup(ctr_points_temp, num_points_temp * sizeof(gdouble)); } else if (strcmp(channel_name, "alpha") == 0) { *num_points_a = num_points_temp; - *ctr_points_a = g_memdup(ctr_points_temp, num_points_temp * sizeof(guint8)); + *ctr_points_a = g_memdup(ctr_points_temp, num_points_temp * sizeof(gdouble)); } else goto err; @@ -520,9 +603,9 @@ static manipulation read_sharpblur(GKeyFile* file) return man; } -static void write_watermark(watermark_settings settings, GKeyFile* file) +static void write_watermark(watermark_settings settings, GKeyFile* file, int id) { - gchar* group_name = "WATERMARK"; + gchar* group_name = g_strdup_printf("WATERMARK%d", id); g_key_file_set_boolean(file, group_name, "mode", settings->mode); g_key_file_set_string(file, group_name, "text", settings->text); @@ -536,9 +619,11 @@ static void write_watermark(watermark_settings settings, GKeyFile* file) g_key_file_set_integer(file, group_name, "position", settings->position); } -static manipulation read_watermark(GKeyFile* file) +static manipulation read_watermark(GKeyFile* file, int id) { - gchar* group_name = "WATERMARK"; + gchar* group_name; + if (id == -1) group_name = "WATERMARK"; + else group_name = g_strdup_printf("WATERMARK%d", id); manipulation man = NULL; if (g_key_file_has_group(file, group_name)) { @@ -622,6 +707,32 @@ static void write_changeformat(changeformat_settings settings, GKeyFile* file) format_params_tiff params = settings->params; g_key_file_set_integer(file, group_name, "compression", params->compression); } + else if(settings->format == FORMAT_HEIF) { + format_params_heif params = settings->params; + g_key_file_set_boolean(file, group_name, "lossless", params->lossless); + g_key_file_set_integer(file, group_name, "quality", params->quality); + } + else if(settings->format == FORMAT_WEBP) { + format_params_webp params = settings->params; + g_key_file_set_integer(file, group_name, "preset", params->preset); + g_key_file_set_boolean(file, group_name, "lossless", params->lossless); + g_key_file_set_double(file, group_name, "quality", params->quality); + g_key_file_set_double(file, group_name, "alpha_quality", params->alpha_quality); + g_key_file_set_boolean(file, group_name, "animation", params->animation); + g_key_file_set_boolean(file, group_name, "anim_loop", params->anim_loop); + g_key_file_set_boolean(file, group_name, "minimize_size", params->minimize_size); + g_key_file_set_integer(file, group_name, "kf_distance", params->kf_distance); + g_key_file_set_boolean(file, group_name, "exif", params->exif); + g_key_file_set_boolean(file, group_name, "iptc", params->iptc); + g_key_file_set_boolean(file, group_name, "xmp", params->xmp); + g_key_file_set_integer(file, group_name, "delay", params->delay); + g_key_file_set_integer(file, group_name, "force_delay", params->force_delay); + } + else if(settings->format == FORMAT_AVIF) { + format_params_avif params = settings->params; + g_key_file_set_boolean(file, group_name, "lossless", params->lossless); + g_key_file_set_integer(file, group_name, "quality", params->quality); + } } static manipulation read_changeformat(GKeyFile* file) @@ -722,7 +833,69 @@ static manipulation read_changeformat(GKeyFile* file) if (g_key_file_has_key(file, group_name, "compression", NULL)) params->compression = g_key_file_get_integer(file, group_name, "compression", NULL); } - + else if (settings->format == FORMAT_HEIF) { + settings->params = (format_params_heif) g_malloc(sizeof(struct changeformat_params_heif)); + format_params_heif params = settings->params; + + if (g_key_file_has_key(file, group_name, "lossless", NULL)) + params->lossless = g_key_file_get_boolean(file, group_name, "lossless", NULL); + + if (g_key_file_has_key(file, group_name, "quality", NULL)) + params->quality = g_key_file_get_integer(file, group_name, "quality", NULL); + } + else if (settings->format == FORMAT_WEBP) { + settings->params = (format_params_webp) g_malloc(sizeof(struct changeformat_params_webp)); + format_params_webp params = settings->params; + + if (g_key_file_has_key(file, group_name, "preset", NULL)) + params->preset = g_key_file_get_integer(file, group_name, "preset", NULL); + + if (g_key_file_has_key(file, group_name, "lossless", NULL)) + params->lossless = g_key_file_get_boolean(file, group_name, "lossless", NULL); + + if (g_key_file_has_key(file, group_name, "quality", NULL)) + params->quality = g_key_file_get_double(file, group_name, "quality", NULL); + + if (g_key_file_has_key(file, group_name, "alpha_quality", NULL)) + params->alpha_quality = g_key_file_get_double(file, group_name, "alpha_quality", NULL); + + if (g_key_file_has_key(file, group_name, "animation", NULL)) + params->animation = g_key_file_get_boolean(file, group_name, "animation", NULL); + + if (g_key_file_has_key(file, group_name, "anim_loop", NULL)) + params->anim_loop = g_key_file_get_boolean(file, group_name, "anim_loop", NULL); + + if (g_key_file_has_key(file, group_name, "minimize_size", NULL)) + params->minimize_size = g_key_file_get_boolean(file, group_name, "minimize_size", NULL); + + if (g_key_file_has_key(file, group_name, "kf_distance", NULL)) + params->kf_distance = g_key_file_get_integer(file, group_name, "kf_distance", NULL); + + if (g_key_file_has_key(file, group_name, "exif", NULL)) + params->exif = g_key_file_get_boolean(file, group_name, "exif", NULL); + + if (g_key_file_has_key(file, group_name, "iptc", NULL)) + params->iptc = g_key_file_get_boolean(file, group_name, "iptc", NULL); + + if (g_key_file_has_key(file, group_name, "xmp", NULL)) + params->xmp = g_key_file_get_boolean(file, group_name, "xmp", NULL); + + if (g_key_file_has_key(file, group_name, "delay", NULL)) + params->delay = g_key_file_get_boolean(file, group_name, "delay", NULL); + + if (g_key_file_has_key(file, group_name, "force_delay", NULL)) + params->force_delay = g_key_file_get_integer(file, group_name, "force_delay", NULL); + } + else if (settings->format == FORMAT_AVIF) { + settings->params = (format_params_avif) g_malloc(sizeof(struct changeformat_params_avif)); + format_params_avif params = settings->params; + + if (g_key_file_has_key(file, group_name, "lossless", NULL)) + params->lossless = g_key_file_get_boolean(file, group_name, "lossless", NULL); + + if (g_key_file_has_key(file, group_name, "quality", NULL)) + params->quality = g_key_file_get_integer(file, group_name, "quality", NULL); + } } } diff --git a/src/bimp-serialize.h b/src/bimp-serialize.h index ccf6602..2c22526 100644 --- a/src/bimp-serialize.h +++ b/src/bimp-serialize.h @@ -8,11 +8,11 @@ gboolean bimp_deserialize_from_file(gchar*); gboolean parse_curve_file( char*, - int*, guint8**, - int*, guint8**, - int*, guint8**, - int*, guint8**, - int*, guint8** + int*, gdouble**, + int*, gdouble**, + int*, gdouble**, + int*, gdouble**, + int*, gdouble** ); #endif diff --git a/src/bimp-utils.c b/src/bimp-utils.c index 97e192b..16a12a0 100644 --- a/src/bimp-utils.c +++ b/src/bimp-utils.c @@ -7,6 +7,7 @@ #include #include #include +#include "images/bimp-icons.h" #include "bimp-utils.h" #ifdef __unix__ @@ -48,7 +49,7 @@ char* str_replace(char *orig, char *rep, char *with) len_with = strlen(with); - for (count = 0; tmp = strstr(ins, rep); ++count) { + for (count = 0; (tmp = strstr(ins, rep)); ++count) { ins = tmp + len_rep; } @@ -78,7 +79,7 @@ char* comp_get_filename(char* path) pfile = path + strlen(path); for (; pfile > path; pfile--) { - if ((*pfile == FILE_SEPARATOR)) //'\\') || (*pfile == '/')) + if (*pfile == FILE_SEPARATOR) { pfile++; break; @@ -97,7 +98,7 @@ char* comp_get_filefolder(char* path) for (i = strlen(folder); i > 0 ; i--) { - if ((folder[i-1] == FILE_SEPARATOR)) + if (folder[i-1] == FILE_SEPARATOR) { folder[i] = '\0'; break; @@ -235,4 +236,64 @@ int set_modification_time(char* filename, time_t mtime) return -1; } else return 0; -} \ No newline at end of file +} + +GdkPixbuf* pixbuf_new_from_resource(const char* path) +{ + GdkPixbuf* pixbuf; + pixbuf = gdk_pixbuf_new_from_resource(path, NULL); + + return pixbuf; +} + +GtkWidget* image_new_from_resource(const char* path) +{ + return image_new_from_resource_scaled(path, NULL); +} + +GtkWidget* image_new_from_resource_scaled(const char* path, GdkWindow *window) +{ + GdkPixbuf* pixbuf = pixbuf_new_from_resource(path); + + // Must wait for GTK3 + /*if (window) { + gint scaleFactor = gdk_window_get_scale_factor(window); + if (scaleFactor > 1) { + // Add "-x2" to the end of the filename in path but before the extension + char *iptr = strrchar(path, '.'); + int index; + if(iptr) { + index = iptr - path; + } + else { + index = strlen(path); + } + char highResPath[strlen(path)+4]; + memcpy(highResPath, path, index); + highResPath[index] = '-'; + highResPath[index+1] = 'x'; + highResPath[index+2] = '2'; + memcpy(&highResPath[index+3], &path[index], strlen(path)-index); + highResPath[strlen(path)+3] = '\0'; + + // Try and get high resolution version of the icon if it exists + GdkPixbuf* pixbuf2 = pixbuf_new_from_resource(highResPath); + if (pixbuf2) { + pixbuf = pixbuf2; + scaleFactor /= 2; + } + + // Scale the image if we still need to + if (scaleFactor != 1) { + gint width = gdk_pixbuf_get_width(pixbuf); + gint height = gdk_pixbuf_get_height(pixbuf); + pixbuf = gdk_pixbuf_scale_simple(pixbuf, width*scaleFactor, height*scaleFactor, GDK_INTERP_NEAREST); + } + } + }*/ + + GtkWidget* image; + image = gtk_image_new_from_pixbuf(pixbuf); + + return image; +} diff --git a/src/bimp-utils.h b/src/bimp-utils.h index 163399f..217643c 100644 --- a/src/bimp-utils.h +++ b/src/bimp-utils.h @@ -18,6 +18,9 @@ gchar** get_path_folders (char*); char* get_datetime(void); time_t get_modification_time(char*); int set_modification_time(char*, time_t); +GdkPixbuf* pixbuf_new_from_resource(const char*); +GtkWidget* image_new_from_resource(const char*); +GtkWidget* image_new_from_resource_scaled(const char*, GdkWindow*); #if defined _WIN32 #define FILE_SEPARATOR '\\' diff --git a/src/bimp.c b/src/bimp.c index 7e69a51..1cbbd54 100644 --- a/src/bimp.c +++ b/src/bimp.c @@ -1,7 +1,7 @@ /* * BIMP - Batch Image Manipulation Plugin for GIMP * - * (C)2013 - Alessandro Francesconi + * (C) 2018 - Alessandro Francesconi * http://www.alessandrofrancesconi.it/projects/bimp * * This program is free software; you can redistribute it and/or modify @@ -22,8 +22,8 @@ */ -#include #include +#include #include #include #include "bimp.h" @@ -32,6 +32,18 @@ #include "bimp-utils.h" #include "plugin-intl.h" +GSList* bimp_input_filenames; +char* bimp_output_folder; + +gint bimp_opt_alertoverwrite; +gboolean bimp_opt_keepfolderhierarchy; +gboolean bimp_opt_deleteondone; +gboolean bimp_opt_keepdates; + +gboolean bimp_is_busy; + +GSList* bimp_supported_procedures; + static void query (void); static gboolean pdb_proc_has_compatible_params (gchar*); @@ -43,7 +55,7 @@ static void run ( GimpParam **return_vals ); -const GimpPlugInInfo PLUG_IN_INFO = { +static const GimpPlugInInfo PLUG_IN_INFO = { NULL, /* init_proc */ NULL, /* quit_proc */ query, /* query_proc */ @@ -67,7 +79,7 @@ static void query (void) "Alessandro Francesconi ", "Copyright (C) Alessandro Francesconi\n" "http://www.alessandrofrancesconi.it/projects/bimp", - "2014", + "2018", "Batch Image Manipulation...", "", GIMP_PLUGIN, diff --git a/src/bimp.h b/src/bimp.h index c2d1f5f..a860ddc 100644 --- a/src/bimp.h +++ b/src/bimp.h @@ -2,14 +2,15 @@ #define __BIMP_H__ #include +#include #define PLUG_IN_FULLNAME "Batch Image Manipulation Plugin" #define PLUG_IN_DESCRIPTION "Applies GIMP manipulations on groups of images" -#define PLUG_IN_COPYRIGHT "(C) 2016 - Alessandro Francesconi" +#define PLUG_IN_COPYRIGHT "(C) 2021 - Alessandro Francesconi" #define PLUG_IN_WEBSITE "http://www.alessandrofrancesconi.it/projects/bimp" #define PLUG_IN_BINARY "bimp" #define PLUG_IN_PROC "plug-in-bimp" -#define PLUG_IN_VERSION "1.17" +#define PLUG_IN_VERSION "2.6" #define BIMP_RESULT_OK 1 #define BIMP_RESULT_WARNING 0 @@ -19,17 +20,17 @@ #define BIMP_OVERWRITE_SKIP_ASK 1 #define BIMP_DONT_OVERWRITE_SKIP_ASK 2 -GSList *bimp_input_filenames; -char *bimp_output_folder; +extern GSList* bimp_input_filenames; +extern char* bimp_output_folder; -gint bimp_opt_alertoverwrite; -gboolean bimp_opt_keepfolderhierarchy; -gboolean bimp_opt_deleteondone; -gboolean bimp_opt_keepdates; +extern gint bimp_opt_alertoverwrite; +extern gboolean bimp_opt_keepfolderhierarchy; +extern gboolean bimp_opt_deleteondone; +extern gboolean bimp_opt_keepdates; -gboolean bimp_is_busy; +extern gboolean bimp_is_busy; -GSList *bimp_supported_procedures; +extern GSList* bimp_supported_procedures; void init_supported_procedures(void); #endif diff --git a/src/images/Thumbs.db b/src/images/Thumbs.db deleted file mode 100644 index fcf71fd..0000000 Binary files a/src/images/Thumbs.db and /dev/null differ diff --git a/src/images/bimp-icons.c b/src/images/bimp-icons.c new file mode 100644 index 0000000..f47a28d --- /dev/null +++ b/src/images/bimp-icons.c @@ -0,0 +1,11700 @@ +#include + +#if defined (__ELF__) && ( __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6)) +# define SECTION __attribute__ ((section (".gresource.icons"), aligned (8))) +#else +# define SECTION +#endif + +static const SECTION union { const guint8 data[92304]; const double alignment; void * const ptr;} icons_resource_data = { { + 0x47, 0x56, 0x61, 0x72, 0x69, 0x61, 0x6e, 0x74, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x00, 0x00, 0x00, 0xf8, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x28, 0x1a, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, + 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, + 0x0a, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, + 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, + 0x0c, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, + 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, + 0x0f, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, + 0x12, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, + 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, + 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, + 0x86, 0x17, 0x13, 0xfc, 0x12, 0x00, 0x00, 0x00, + 0xf8, 0x02, 0x00, 0x00, 0x17, 0x00, 0x76, 0x00, + 0x10, 0x03, 0x00, 0x00, 0x38, 0x07, 0x00, 0x00, + 0x8c, 0xcb, 0x8c, 0x94, 0x12, 0x00, 0x00, 0x00, + 0x38, 0x07, 0x00, 0x00, 0x10, 0x00, 0x76, 0x00, + 0x48, 0x07, 0x00, 0x00, 0x70, 0x17, 0x00, 0x00, + 0xcf, 0x03, 0xc3, 0xf8, 0x12, 0x00, 0x00, 0x00, + 0x70, 0x17, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00, + 0x80, 0x17, 0x00, 0x00, 0xe8, 0x1d, 0x00, 0x00, + 0x50, 0xc8, 0x04, 0x7d, 0x0d, 0x00, 0x00, 0x00, + 0xe8, 0x1d, 0x00, 0x00, 0x05, 0x00, 0x4c, 0x00, + 0xf0, 0x1d, 0x00, 0x00, 0xf4, 0x1d, 0x00, 0x00, + 0xae, 0x81, 0x4d, 0x25, 0x03, 0x00, 0x00, 0x00, + 0xf4, 0x1d, 0x00, 0x00, 0x07, 0x00, 0x4c, 0x00, + 0xfc, 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, + 0x66, 0x5f, 0x9d, 0xbc, 0x12, 0x00, 0x00, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00, + 0x10, 0x1e, 0x00, 0x00, 0x78, 0x24, 0x00, 0x00, + 0xa7, 0x14, 0xfa, 0x41, 0x12, 0x00, 0x00, 0x00, + 0x78, 0x24, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00, + 0x88, 0x24, 0x00, 0x00, 0xf0, 0x2a, 0x00, 0x00, + 0xc2, 0x95, 0xbb, 0x44, 0x12, 0x00, 0x00, 0x00, + 0xf0, 0x2a, 0x00, 0x00, 0x13, 0x00, 0x76, 0x00, + 0x08, 0x2b, 0x00, 0x00, 0x30, 0x3b, 0x00, 0x00, + 0xbe, 0x84, 0x61, 0x35, 0x12, 0x00, 0x00, 0x00, + 0x30, 0x3b, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00, + 0x40, 0x3b, 0x00, 0x00, 0xa8, 0x41, 0x00, 0x00, + 0x32, 0x40, 0x2b, 0xf1, 0x12, 0x00, 0x00, 0x00, + 0xa8, 0x41, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00, + 0xb8, 0x41, 0x00, 0x00, 0xe0, 0x51, 0x00, 0x00, + 0x43, 0x4f, 0x48, 0xbb, 0x12, 0x00, 0x00, 0x00, + 0xe0, 0x51, 0x00, 0x00, 0x10, 0x00, 0x76, 0x00, + 0xf0, 0x51, 0x00, 0x00, 0x18, 0x62, 0x00, 0x00, + 0xd6, 0xf6, 0xac, 0x06, 0x12, 0x00, 0x00, 0x00, + 0x18, 0x62, 0x00, 0x00, 0x19, 0x00, 0x76, 0x00, + 0x38, 0x62, 0x00, 0x00, 0x60, 0x66, 0x00, 0x00, + 0x28, 0xf3, 0x96, 0x5d, 0x12, 0x00, 0x00, 0x00, + 0x60, 0x66, 0x00, 0x00, 0x0e, 0x00, 0x76, 0x00, + 0x70, 0x66, 0x00, 0x00, 0x98, 0x76, 0x00, 0x00, + 0xd4, 0xb5, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, + 0x98, 0x76, 0x00, 0x00, 0x01, 0x00, 0x4c, 0x00, + 0x9c, 0x76, 0x00, 0x00, 0xa0, 0x76, 0x00, 0x00, + 0xf8, 0x1d, 0x22, 0x1d, 0x12, 0x00, 0x00, 0x00, + 0xa0, 0x76, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00, + 0xb0, 0x76, 0x00, 0x00, 0x18, 0x7d, 0x00, 0x00, + 0xc2, 0x88, 0xd4, 0xd5, 0x12, 0x00, 0x00, 0x00, + 0x18, 0x7d, 0x00, 0x00, 0x11, 0x00, 0x76, 0x00, + 0x30, 0x7d, 0x00, 0x00, 0x58, 0x8d, 0x00, 0x00, + 0xe3, 0x65, 0x72, 0x3e, 0x12, 0x00, 0x00, 0x00, + 0x58, 0x8d, 0x00, 0x00, 0x16, 0x00, 0x76, 0x00, + 0x70, 0x8d, 0x00, 0x00, 0x98, 0x9d, 0x00, 0x00, + 0x3d, 0x45, 0x3e, 0x98, 0x12, 0x00, 0x00, 0x00, + 0x98, 0x9d, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00, + 0xa8, 0x9d, 0x00, 0x00, 0x10, 0xa4, 0x00, 0x00, + 0x90, 0x8e, 0x5d, 0xcc, 0x15, 0x00, 0x00, 0x00, + 0x10, 0xa4, 0x00, 0x00, 0x06, 0x00, 0x4c, 0x00, + 0x18, 0xa4, 0x00, 0x00, 0x6c, 0xa4, 0x00, 0x00, + 0x7e, 0xfa, 0x9a, 0x1d, 0x12, 0x00, 0x00, 0x00, + 0x6c, 0xa4, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00, + 0x80, 0xa4, 0x00, 0x00, 0xe8, 0xaa, 0x00, 0x00, + 0x2c, 0xc6, 0xdc, 0xd4, 0x12, 0x00, 0x00, 0x00, + 0xe8, 0xaa, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00, + 0xf8, 0xaa, 0x00, 0x00, 0x60, 0xb1, 0x00, 0x00, + 0xe5, 0x91, 0xf0, 0x03, 0x04, 0x00, 0x00, 0x00, + 0x60, 0xb1, 0x00, 0x00, 0x05, 0x00, 0x4c, 0x00, + 0x68, 0xb1, 0x00, 0x00, 0x6c, 0xb1, 0x00, 0x00, + 0x6d, 0x7b, 0x39, 0x5a, 0x12, 0x00, 0x00, 0x00, + 0x6c, 0xb1, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00, + 0x80, 0xb1, 0x00, 0x00, 0xe8, 0xb7, 0x00, 0x00, + 0xb3, 0x55, 0x16, 0x67, 0x12, 0x00, 0x00, 0x00, + 0xe8, 0xb7, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00, + 0xf8, 0xb7, 0x00, 0x00, 0x20, 0xc8, 0x00, 0x00, + 0x26, 0xea, 0xfa, 0xb7, 0x12, 0x00, 0x00, 0x00, + 0x20, 0xc8, 0x00, 0x00, 0x10, 0x00, 0x76, 0x00, + 0x30, 0xc8, 0x00, 0x00, 0x58, 0xd8, 0x00, 0x00, + 0xa1, 0x49, 0x54, 0x63, 0x12, 0x00, 0x00, 0x00, + 0x58, 0xd8, 0x00, 0x00, 0x0d, 0x00, 0x76, 0x00, + 0x68, 0xd8, 0x00, 0x00, 0x90, 0x68, 0x01, 0x00, + 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x2d, 0x66, 0x6c, + 0x69, 0x70, 0x2d, 0x76, 0x65, 0x72, 0x74, 0x69, + 0x63, 0x61, 0x6c, 0x2e, 0x70, 0x6e, 0x67, 0x00, + 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x04, 0x18, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0x02, + 0x20, 0x4a, 0x87, 0x09, 0x20, 0x4a, 0x87, 0x48, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0x32, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x20, 0x4a, 0x87, 0x0b, + 0x20, 0x4a, 0x87, 0x52, 0x20, 0x4a, 0x87, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0x32, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0x03, + 0x20, 0x4a, 0x87, 0x0b, 0x20, 0x4a, 0x87, 0x59, + 0x20, 0x4a, 0x87, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0xbc, 0xd1, 0xea, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0x32, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0x4d, 0x20, 0x4a, 0x87, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0x93, 0xb4, 0xdd, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0x93, 0xb4, 0xdd, 0xff, + 0xbc, 0xd1, 0xea, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0x45, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0xa4, 0xc0, 0xe2, 0xff, 0xac, 0xc6, 0xe4, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0xac, 0xc6, 0xe4, 0xff, + 0xa4, 0xc0, 0xe2, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0xbb, 0xd0, 0xe9, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0xc4, 0xd6, 0xec, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0xc4, 0xd6, 0xec, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0xbb, 0xd0, 0xe9, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0xa4, 0xc0, 0xe2, 0xff, 0x9d, 0xbb, 0xdf, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0xac, 0xc6, 0xe4, 0xff, + 0xa4, 0xc0, 0xe2, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0x4d, 0x20, 0x4a, 0x87, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0x93, 0xb4, 0xdd, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0x93, 0xb4, 0xdd, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0x45, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0x59, + 0x20, 0x4a, 0x87, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0x32, + 0x20, 0x4a, 0x87, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0x52, 0x20, 0x4a, 0x87, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0x32, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0x51, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0x40, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x2d, 0x72, 0x65, + 0x6e, 0x61, 0x6d, 0x65, 0x2e, 0x70, 0x6e, 0x67, + 0x18, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x10, 0x18, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x80, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x99, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0xd4, 0x02, 0x02, 0x02, 0x82, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x02, 0x05, + 0x02, 0x02, 0x02, 0x7a, 0x22, 0x22, 0x22, 0xcc, + 0x43, 0x43, 0x43, 0xff, 0x4e, 0x4e, 0x4e, 0xff, + 0x51, 0x51, 0x51, 0xff, 0x51, 0x51, 0x51, 0xff, + 0x51, 0x51, 0x51, 0xff, 0x51, 0x51, 0x51, 0xff, + 0x50, 0x50, 0x50, 0xff, 0x4d, 0x4d, 0x4d, 0xff, + 0x26, 0x26, 0x26, 0xea, 0x07, 0x07, 0x07, 0xa4, + 0x01, 0x01, 0x01, 0x1a, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x03, 0x03, 0x03, 0x14, + 0x08, 0x08, 0x08, 0xaa, 0x3c, 0x3c, 0x3c, 0xf1, + 0x80, 0x80, 0x80, 0xff, 0x87, 0x87, 0x87, 0xff, + 0x89, 0x89, 0x89, 0xff, 0x89, 0x89, 0x89, 0xff, + 0x88, 0x88, 0x88, 0xff, 0x87, 0x87, 0x87, 0xff, + 0x87, 0x87, 0x87, 0xff, 0x8a, 0x8a, 0x8a, 0xff, + 0x45, 0x45, 0x45, 0xfa, 0x12, 0x12, 0x12, 0xc2, + 0x03, 0x03, 0x03, 0x42, 0x01, 0x01, 0x01, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x13, 0x03, 0x03, 0x03, 0x3e, + 0x17, 0x17, 0x17, 0xbe, 0x4b, 0x4b, 0x4b, 0xf7, + 0x8b, 0x8b, 0x8b, 0xff, 0x6b, 0x6b, 0x6b, 0xff, + 0x60, 0x60, 0x60, 0xff, 0x5e, 0x5e, 0x5e, 0xff, + 0x5b, 0x5b, 0x5b, 0xff, 0x59, 0x59, 0x59, 0xff, + 0x5f, 0x5f, 0x5f, 0xff, 0x77, 0x77, 0x77, 0xff, + 0x4f, 0x4f, 0x4f, 0xfb, 0x29, 0x29, 0x29, 0xd8, + 0x04, 0x04, 0x04, 0x87, 0x01, 0x01, 0x01, 0x2d, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x03, 0x03, 0x03, 0x2c, 0x07, 0x07, 0x07, 0x84, + 0x3a, 0x3a, 0x3a, 0xd7, 0x5e, 0x5e, 0x5e, 0xfb, + 0x7f, 0x7f, 0x7f, 0xff, 0x61, 0x61, 0x61, 0xff, + 0x57, 0x57, 0x57, 0xff, 0x54, 0x54, 0x54, 0xff, + 0x52, 0x52, 0x52, 0xff, 0x4f, 0x4f, 0x4f, 0xff, + 0x52, 0x52, 0x52, 0xff, 0x60, 0x60, 0x60, 0xff, + 0x50, 0x50, 0x50, 0xfd, 0x34, 0x34, 0x34, 0xee, + 0x03, 0x03, 0x03, 0xc9, 0x01, 0x01, 0x01, 0x46, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x04, 0x04, 0x04, 0x46, 0x08, 0x08, 0x08, 0xc4, + 0x55, 0x55, 0x55, 0xec, 0x6e, 0x6e, 0x6e, 0xfe, + 0x6d, 0x6d, 0x6d, 0xff, 0x5a, 0x5a, 0x5a, 0xff, + 0x52, 0x52, 0x52, 0xff, 0x50, 0x50, 0x50, 0xff, + 0x4d, 0x4d, 0x4d, 0xff, 0x4b, 0x4b, 0x4b, 0xff, + 0x4b, 0x4b, 0x4b, 0xff, 0x4e, 0x4e, 0x4e, 0xff, + 0x4d, 0x4d, 0x4d, 0xff, 0x38, 0x38, 0x38, 0xfa, + 0x05, 0x05, 0x05, 0xf1, 0x02, 0x02, 0x02, 0x63, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, + 0x04, 0x04, 0x04, 0x5f, 0x09, 0x09, 0x09, 0xf5, + 0x67, 0x67, 0x67, 0xfc, 0x78, 0x78, 0x78, 0xfe, + 0x5a, 0x5a, 0x5a, 0xff, 0x52, 0x52, 0x52, 0xff, + 0x4e, 0x4e, 0x4e, 0xff, 0x4b, 0x4b, 0x4b, 0xff, + 0x48, 0x48, 0x48, 0xff, 0x46, 0x46, 0x46, 0xff, + 0x45, 0x45, 0x45, 0xff, 0x42, 0x42, 0x42, 0xff, + 0x45, 0x45, 0x45, 0xff, 0x36, 0x36, 0x36, 0xfb, + 0x0a, 0x0a, 0x0a, 0xf2, 0x05, 0x05, 0x05, 0x85, + 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, + 0x1a, 0x1a, 0x1a, 0x88, 0x2d, 0x2d, 0x2d, 0xf6, + 0x6b, 0x6b, 0x6b, 0xfc, 0x6f, 0x6f, 0x6f, 0xff, + 0x51, 0x51, 0x51, 0xff, 0x4d, 0x4d, 0x4d, 0xff, + 0x3f, 0x3f, 0x3f, 0xfd, 0x2e, 0x2e, 0x2e, 0xfb, + 0x20, 0x20, 0x20, 0xf9, 0x30, 0x30, 0x30, 0xfc, + 0x41, 0x41, 0x41, 0xff, 0x3e, 0x3e, 0x3e, 0xff, + 0x3d, 0x3d, 0x3d, 0xff, 0x33, 0x33, 0x33, 0xfd, + 0x19, 0x19, 0x19, 0xfa, 0x0c, 0x0c, 0x0c, 0xb9, + 0x02, 0x02, 0x02, 0x63, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x62, + 0x26, 0x26, 0x26, 0xb8, 0x52, 0x52, 0x52, 0xf9, + 0x6a, 0x6a, 0x6a, 0xfd, 0x63, 0x63, 0x63, 0xff, + 0x4b, 0x4b, 0x4b, 0xff, 0x48, 0x48, 0x48, 0xff, + 0x32, 0x32, 0x32, 0xfb, 0x16, 0x16, 0x16, 0xf7, + 0x07, 0x07, 0x07, 0xf6, 0x20, 0x20, 0x20, 0xfa, + 0x39, 0x39, 0x39, 0xff, 0x39, 0x39, 0x39, 0xff, + 0x37, 0x37, 0x37, 0xff, 0x31, 0x31, 0x31, 0xff, + 0x24, 0x24, 0x24, 0xff, 0x0f, 0x0f, 0x0f, 0xe1, + 0x01, 0x01, 0x01, 0x8c, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x03, 0x03, 0x03, 0x94, + 0x2e, 0x2e, 0x2e, 0xeb, 0x74, 0x74, 0x74, 0xff, + 0x64, 0x64, 0x64, 0xff, 0x55, 0x55, 0x55, 0xff, + 0x47, 0x47, 0x47, 0xff, 0x44, 0x44, 0x44, 0xff, + 0x26, 0x26, 0x26, 0xf8, 0x04, 0x04, 0x04, 0xf1, + 0x00, 0x00, 0x00, 0xf1, 0x18, 0x18, 0x18, 0xf8, + 0x2e, 0x2e, 0x2e, 0xfe, 0x34, 0x34, 0x34, 0xfe, + 0x33, 0x33, 0x33, 0xff, 0x30, 0x30, 0x30, 0xff, + 0x2c, 0x2c, 0x2c, 0xff, 0x0f, 0x0f, 0x0f, 0xfa, + 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, 0x1b, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x00, 0x00, 0x29, 0x10, 0x10, 0x10, 0xaa, + 0x3a, 0x3a, 0x3a, 0xf3, 0x7f, 0x7f, 0x7f, 0xff, + 0x5b, 0x5b, 0x5b, 0xff, 0x48, 0x48, 0x48, 0xff, + 0x41, 0x41, 0x41, 0xff, 0x37, 0x37, 0x37, 0xff, + 0x1e, 0x1e, 0x1e, 0xf1, 0x02, 0x02, 0x02, 0xd9, + 0x00, 0x00, 0x00, 0xaf, 0x10, 0x10, 0x10, 0xd2, + 0x1f, 0x1f, 0x1f, 0xfb, 0x2f, 0x2f, 0x2f, 0xfe, + 0x2f, 0x2f, 0x2f, 0xff, 0x2c, 0x2c, 0x2c, 0xff, + 0x29, 0x29, 0x29, 0xff, 0x14, 0x14, 0x14, 0xf9, + 0x07, 0x07, 0x07, 0xc2, 0x00, 0x00, 0x00, 0x5b, + 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x1d, + 0x01, 0x01, 0x01, 0x64, 0x29, 0x29, 0x29, 0xc5, + 0x4a, 0x4a, 0x4a, 0xf9, 0x77, 0x77, 0x77, 0xff, + 0x52, 0x52, 0x52, 0xff, 0x41, 0x41, 0x41, 0xff, + 0x3c, 0x3c, 0x3c, 0xfe, 0x29, 0x29, 0x29, 0xfb, + 0x16, 0x16, 0x16, 0xd7, 0x01, 0x01, 0x01, 0xa3, + 0x00, 0x00, 0x00, 0x6b, 0x08, 0x08, 0x08, 0xb0, + 0x13, 0x13, 0x13, 0xf9, 0x2a, 0x2a, 0x2a, 0xfe, + 0x2b, 0x2b, 0x2b, 0xff, 0x28, 0x28, 0x28, 0xff, + 0x26, 0x26, 0x26, 0xff, 0x18, 0x18, 0x18, 0xfb, + 0x0c, 0x0c, 0x0c, 0xdc, 0x00, 0x00, 0x00, 0xa0, + 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x32, + 0x03, 0x03, 0x03, 0xab, 0x42, 0x42, 0x42, 0xe3, + 0x5d, 0x5d, 0x5d, 0xfd, 0x62, 0x62, 0x62, 0xff, + 0x48, 0x48, 0x48, 0xff, 0x3c, 0x3c, 0x3c, 0xff, + 0x36, 0x36, 0x36, 0xfd, 0x1a, 0x1a, 0x1a, 0xf6, + 0x0c, 0x0c, 0x0c, 0xb2, 0x00, 0x00, 0x00, 0x5c, + 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x91, + 0x09, 0x09, 0x09, 0xf6, 0x23, 0x23, 0x23, 0xfe, + 0x26, 0x26, 0x26, 0xff, 0x24, 0x24, 0x24, 0xff, + 0x22, 0x22, 0x22, 0xff, 0x1b, 0x1b, 0x1b, 0xff, + 0x10, 0x10, 0x10, 0xf6, 0x00, 0x00, 0x00, 0xe0, + 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0x03, 0x03, 0x03, 0x49, + 0x03, 0x03, 0x03, 0xde, 0x51, 0x51, 0x51, 0xf5, + 0x68, 0x68, 0x68, 0xfe, 0x4b, 0x4b, 0x4b, 0xff, + 0x3f, 0x3f, 0x3f, 0xff, 0x37, 0x37, 0x37, 0xff, + 0x2f, 0x2f, 0x2f, 0xfe, 0x0e, 0x0e, 0x0e, 0xf7, + 0x03, 0x03, 0x03, 0x95, 0x00, 0x00, 0x00, 0x23, + 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x79, + 0x07, 0x07, 0x07, 0xe4, 0x19, 0x19, 0x19, 0xfb, + 0x1f, 0x1f, 0x1f, 0xff, 0x20, 0x20, 0x20, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1e, 0x1e, 0xff, + 0x14, 0x14, 0x14, 0xf9, 0x01, 0x01, 0x01, 0xea, + 0x01, 0x01, 0x01, 0x66, 0x00, 0x00, 0x00, 0x1c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x23, 0x10, 0x10, 0x10, 0x70, + 0x1a, 0x1a, 0x1a, 0xf0, 0x58, 0x58, 0x58, 0xfb, + 0x64, 0x64, 0x64, 0xff, 0x3d, 0x3d, 0x3d, 0xff, + 0x38, 0x38, 0x38, 0xff, 0x30, 0x30, 0x30, 0xff, + 0x24, 0x24, 0x24, 0xfb, 0x0a, 0x0a, 0x0a, 0xe1, + 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x56, + 0x05, 0x05, 0x05, 0xb5, 0x0f, 0x0f, 0x0f, 0xf2, + 0x19, 0x19, 0x19, 0xfd, 0x1f, 0x1f, 0x1f, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, + 0x17, 0x17, 0x17, 0xfc, 0x08, 0x08, 0x08, 0xf3, + 0x03, 0x03, 0x03, 0x96, 0x00, 0x00, 0x00, 0x43, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x4b, 0x1a, 0x1a, 0x1a, 0xa0, + 0x3b, 0x3b, 0x3b, 0xf3, 0x5a, 0x5a, 0x5a, 0xfc, + 0x58, 0x58, 0x58, 0xff, 0x34, 0x34, 0x34, 0xff, + 0x32, 0x32, 0x32, 0xff, 0x28, 0x28, 0x28, 0xfe, + 0x18, 0x18, 0x18, 0xf5, 0x08, 0x08, 0x08, 0xbc, + 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x32, + 0x02, 0x02, 0x02, 0x7e, 0x05, 0x05, 0x05, 0xe7, + 0x14, 0x14, 0x14, 0xfb, 0x1e, 0x1e, 0x1e, 0xff, + 0x1e, 0x1e, 0x1e, 0xff, 0x1f, 0x1f, 0x1f, 0xff, + 0x1a, 0x1a, 0x1a, 0xfe, 0x10, 0x10, 0x10, 0xfb, + 0x05, 0x05, 0x05, 0xca, 0x00, 0x00, 0x00, 0x6d, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x01, 0x01, 0x79, 0x20, 0x20, 0x20, 0xda, + 0x5c, 0x5c, 0x5c, 0xfc, 0x56, 0x56, 0x56, 0xfe, + 0x46, 0x46, 0x46, 0xff, 0x30, 0x30, 0x30, 0xff, + 0x2e, 0x2e, 0x2e, 0xff, 0x1f, 0x1f, 0x1f, 0xfa, + 0x0a, 0x0a, 0x0a, 0xe5, 0x04, 0x04, 0x04, 0x83, + 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x17, + 0x00, 0x00, 0x00, 0x54, 0x01, 0x01, 0x01, 0xe5, + 0x11, 0x11, 0x11, 0xfc, 0x1d, 0x1d, 0x1d, 0xff, + 0x1e, 0x1e, 0x1e, 0xff, 0x1f, 0x1f, 0x1f, 0xff, + 0x1d, 0x1d, 0x1d, 0xfe, 0x19, 0x19, 0x19, 0xfe, + 0x07, 0x07, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x90, + 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1a, + 0x0b, 0x0b, 0x0b, 0x96, 0x2a, 0x2a, 0x2a, 0xef, + 0x6d, 0x6d, 0x6d, 0xfe, 0x4e, 0x4e, 0x4e, 0xff, + 0x37, 0x37, 0x37, 0xff, 0x2c, 0x2c, 0x2c, 0xff, + 0x29, 0x29, 0x29, 0xff, 0x1a, 0x1a, 0x1a, 0xfa, + 0x04, 0x04, 0x04, 0xed, 0x01, 0x01, 0x01, 0xbc, + 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x89, + 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00, 0x8e, + 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0xf0, + 0x0f, 0x0f, 0x0f, 0xfd, 0x1b, 0x1b, 0x1b, 0xff, + 0x1e, 0x1e, 0x1e, 0xff, 0x1f, 0x1f, 0x1f, 0xff, + 0x1e, 0x1e, 0x1e, 0xff, 0x1c, 0x1c, 0x1c, 0xfe, + 0x0b, 0x0b, 0x0b, 0xf8, 0x03, 0x03, 0x03, 0xaa, + 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x0d, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x48, + 0x1a, 0x1a, 0x1a, 0xb1, 0x37, 0x37, 0x37, 0xf7, + 0x6e, 0x6e, 0x6e, 0xfe, 0x44, 0x44, 0x44, 0xff, + 0x2b, 0x2b, 0x2b, 0xff, 0x28, 0x28, 0x28, 0xff, + 0x26, 0x26, 0x26, 0xff, 0x1f, 0x1f, 0x1f, 0xfc, + 0x16, 0x16, 0x16, 0xf8, 0x14, 0x14, 0x14, 0xfb, + 0x13, 0x13, 0x13, 0xfc, 0x13, 0x13, 0x13, 0xfc, + 0x13, 0x13, 0x13, 0xfc, 0x13, 0x13, 0x13, 0xfc, + 0x13, 0x13, 0x13, 0xfc, 0x13, 0x13, 0x13, 0xfb, + 0x1b, 0x1b, 0x1b, 0xfd, 0x20, 0x20, 0x20, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1e, 0x1e, 0xfe, + 0x10, 0x10, 0x10, 0xf8, 0x07, 0x07, 0x07, 0xc6, + 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x1c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x01, 0x01, 0x22, 0x01, 0x01, 0x01, 0x8d, + 0x31, 0x31, 0x31, 0xd5, 0x4a, 0x4a, 0x4a, 0xfc, + 0x58, 0x58, 0x58, 0xfe, 0x38, 0x38, 0x38, 0xff, + 0x26, 0x26, 0x26, 0xff, 0x24, 0x24, 0x24, 0xff, + 0x28, 0x28, 0x28, 0xff, 0x39, 0x39, 0x39, 0xfe, + 0x51, 0x51, 0x51, 0xfe, 0x50, 0x50, 0x50, 0xfe, + 0x50, 0x50, 0x50, 0xfe, 0x50, 0x50, 0x50, 0xfe, + 0x50, 0x50, 0x50, 0xfe, 0x50, 0x50, 0x50, 0xfe, + 0x50, 0x50, 0x50, 0xfe, 0x50, 0x50, 0x50, 0xfe, + 0x42, 0x42, 0x42, 0xfe, 0x31, 0x31, 0x31, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1e, 0x1e, 0xfe, + 0x16, 0x16, 0x16, 0xfe, 0x0c, 0x0c, 0x0c, 0xea, + 0x00, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00, 0x2c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x01, 0x01, 0x01, 0x35, 0x01, 0x01, 0x01, 0xc2, + 0x3e, 0x3e, 0x3e, 0xed, 0x57, 0x57, 0x57, 0xfe, + 0x3f, 0x3f, 0x3f, 0xfe, 0x2c, 0x2c, 0x2c, 0xff, + 0x23, 0x23, 0x23, 0xff, 0x22, 0x22, 0x22, 0xff, + 0x23, 0x23, 0x23, 0xff, 0x2b, 0x2b, 0x2b, 0xff, + 0x38, 0x38, 0x38, 0xff, 0x38, 0x38, 0x38, 0xff, + 0x38, 0x38, 0x38, 0xff, 0x38, 0x38, 0x38, 0xff, + 0x38, 0x38, 0x38, 0xff, 0x38, 0x38, 0x38, 0xff, + 0x38, 0x38, 0x38, 0xff, 0x38, 0x38, 0x38, 0xff, + 0x30, 0x30, 0x30, 0xff, 0x27, 0x27, 0x27, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1e, 0x1e, 0xff, + 0x1b, 0x1b, 0x1b, 0xff, 0x10, 0x10, 0x10, 0xf6, + 0x00, 0x00, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x48, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, + 0x08, 0x08, 0x08, 0x54, 0x0d, 0x0d, 0x0d, 0xe2, + 0x45, 0x45, 0x45, 0xfb, 0x57, 0x57, 0x57, 0xff, + 0x2b, 0x2b, 0x2b, 0xff, 0x23, 0x23, 0x23, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1e, 0x1e, 0xfe, + 0x18, 0x18, 0x18, 0xfe, 0x17, 0x17, 0x17, 0xfd, + 0x18, 0x18, 0x18, 0xfe, 0x19, 0x19, 0x19, 0xfe, + 0x19, 0x19, 0x19, 0xfe, 0x19, 0x19, 0x19, 0xfe, + 0x19, 0x19, 0x19, 0xfe, 0x19, 0x19, 0x19, 0xfe, + 0x19, 0x19, 0x19, 0xfe, 0x19, 0x19, 0x19, 0xfe, + 0x17, 0x17, 0x17, 0xfe, 0x17, 0x17, 0x17, 0xfd, + 0x18, 0x18, 0x18, 0xfb, 0x1c, 0x1c, 0x1c, 0xfd, + 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1e, 0x1e, 0xff, + 0x1e, 0x1e, 0x1e, 0xff, 0x13, 0x13, 0x13, 0xfb, + 0x04, 0x04, 0x04, 0xe7, 0x02, 0x02, 0x02, 0x71, + 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, + 0x11, 0x11, 0x11, 0x85, 0x28, 0x28, 0x28, 0xe7, + 0x45, 0x45, 0x45, 0xfa, 0x47, 0x47, 0x47, 0xff, + 0x21, 0x21, 0x21, 0xff, 0x1f, 0x1f, 0x1f, 0xff, + 0x1c, 0x1c, 0x1c, 0xff, 0x14, 0x14, 0x14, 0xfe, + 0x06, 0x06, 0x06, 0xfc, 0x01, 0x01, 0x01, 0xfb, + 0x01, 0x01, 0x01, 0xfc, 0x01, 0x01, 0x01, 0xfc, + 0x01, 0x01, 0x01, 0xfc, 0x01, 0x01, 0x01, 0xfc, + 0x01, 0x01, 0x01, 0xfc, 0x01, 0x01, 0x01, 0xfc, + 0x01, 0x01, 0x01, 0xfc, 0x01, 0x01, 0x01, 0xfc, + 0x01, 0x01, 0x01, 0xfc, 0x03, 0x03, 0x03, 0xf9, + 0x09, 0x09, 0x09, 0xf3, 0x17, 0x17, 0x17, 0xfb, + 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1e, 0x1e, 0xff, + 0x1e, 0x1e, 0x1e, 0xff, 0x17, 0x17, 0x17, 0xfd, + 0x0b, 0x0b, 0x0b, 0xf1, 0x04, 0x04, 0x04, 0xaa, + 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, + 0x14, 0x14, 0x14, 0xc3, 0x41, 0x41, 0x41, 0xf4, + 0x41, 0x41, 0x41, 0xfd, 0x34, 0x34, 0x34, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, + 0x19, 0x19, 0x19, 0xfc, 0x0b, 0x0b, 0x0b, 0xf3, + 0x04, 0x04, 0x04, 0xaf, 0x00, 0x00, 0x00, 0x7c, + 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x5b, + 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x5b, + 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x5b, + 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x5b, + 0x00, 0x00, 0x00, 0x60, 0x01, 0x01, 0x01, 0x8d, + 0x03, 0x03, 0x03, 0xf1, 0x14, 0x14, 0x14, 0xfc, + 0x1e, 0x1e, 0x1e, 0xff, 0x1f, 0x1f, 0x1f, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1b, 0x1b, 0x1b, 0xfe, + 0x13, 0x13, 0x13, 0xf9, 0x05, 0x05, 0x05, 0xdd, + 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x81, + 0x18, 0x18, 0x18, 0xe9, 0x4c, 0x4c, 0x4c, 0xfc, + 0x3a, 0x3a, 0x3a, 0xff, 0x27, 0x27, 0x27, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1e, 0x1e, 0xff, + 0x16, 0x16, 0x16, 0xfb, 0x04, 0x04, 0x04, 0xee, + 0x02, 0x02, 0x02, 0x73, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x4a, + 0x00, 0x00, 0x00, 0xdf, 0x11, 0x11, 0x11, 0xf6, + 0x1b, 0x1b, 0x1b, 0xff, 0x1f, 0x1f, 0x1f, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1d, 0x1d, 0x1d, 0xff, + 0x19, 0x19, 0x19, 0xfd, 0x07, 0x07, 0x07, 0xf6, + 0x01, 0x01, 0x01, 0x91, 0x00, 0x00, 0x00, 0x22, + 0x00, 0x00, 0x00, 0x1a, 0x0d, 0x0d, 0x0d, 0x9b, + 0x1f, 0x1f, 0x1f, 0xf5, 0x4a, 0x4a, 0x4a, 0xfd, + 0x33, 0x33, 0x33, 0xff, 0x1f, 0x1f, 0x1f, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x1d, 0x1d, 0x1d, 0xff, + 0x13, 0x13, 0x13, 0xfc, 0x00, 0x00, 0x00, 0xef, + 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, + 0x00, 0x00, 0x00, 0xbb, 0x0e, 0x0e, 0x0e, 0xe9, + 0x17, 0x17, 0x17, 0xfe, 0x1e, 0x1e, 0x1e, 0xff, + 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, + 0x1c, 0x1c, 0x1c, 0xfd, 0x0b, 0x0b, 0x0b, 0xf5, + 0x04, 0x04, 0x04, 0xab, 0x00, 0x00, 0x00, 0x5a, + 0x00, 0x00, 0x00, 0x71, 0x14, 0x14, 0x14, 0xc2, + 0x26, 0x26, 0x26, 0xfa, 0x41, 0x41, 0x41, 0xfe, + 0x32, 0x32, 0x32, 0xff, 0x23, 0x23, 0x23, 0xff, + 0x1f, 0x1f, 0x1f, 0xff, 0x19, 0x19, 0x19, 0xff, + 0x0f, 0x0f, 0x0f, 0xef, 0x00, 0x00, 0x00, 0xcc, + 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x27, + 0x00, 0x00, 0x00, 0x7c, 0x09, 0x09, 0x09, 0xce, + 0x12, 0x12, 0x12, 0xf9, 0x1e, 0x1e, 0x1e, 0xff, + 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, + 0x1c, 0x1c, 0x1c, 0xfe, 0x11, 0x11, 0x11, 0xfc, + 0x09, 0x09, 0x09, 0xd4, 0x00, 0x00, 0x00, 0xa7, + 0x00, 0x00, 0x00, 0xa8, 0x0c, 0x0c, 0x0c, 0xda, + 0x18, 0x18, 0x18, 0xfd, 0x24, 0x24, 0x24, 0xfe, + 0x1d, 0x1d, 0x1d, 0xff, 0x16, 0x16, 0x16, 0xff, + 0x12, 0x12, 0x12, 0xff, 0x0e, 0x0e, 0x0e, 0xff, + 0x09, 0x09, 0x09, 0xdf, 0x00, 0x00, 0x00, 0x9f, + 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x1a, + 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x1f, + 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x23, + 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x23, + 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x2d, + 0x00, 0x00, 0x00, 0x57, 0x04, 0x04, 0x04, 0xbd, + 0x09, 0x09, 0x09, 0xf6, 0x11, 0x11, 0x11, 0xfd, + 0x11, 0x11, 0x11, 0xfd, 0x11, 0x11, 0x11, 0xfd, + 0x11, 0x11, 0x11, 0xfd, 0x0c, 0x0c, 0x0c, 0xfd, + 0x06, 0x06, 0x06, 0xe7, 0x00, 0x00, 0x00, 0xcf, + 0x00, 0x00, 0x00, 0xb2, 0x00, 0x00, 0x00, 0xd2, + 0x00, 0x00, 0x00, 0xe8, 0x00, 0x00, 0x00, 0xe8, + 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0xea, + 0x00, 0x00, 0x00, 0xeb, 0x00, 0x00, 0x00, 0xeb, + 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x6d, + 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x3a, + 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x42, + 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x48, + 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x49, + 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x44, + 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0xab, + 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0xe9, + 0x00, 0x00, 0x00, 0xe8, 0x00, 0x00, 0x00, 0xe8, + 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0xe5, + 0x00, 0x00, 0x00, 0xd7, 0x00, 0x00, 0x00, 0xc7, + 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x36, + 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x47, + 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x53, + 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x5f, + 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x4b, + 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x4b, + 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x58, + 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x65, + 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x5b, + 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x4f, + 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x5d, + 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x61, + 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x56, + 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x48, + 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x33, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0a, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x21, + 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x2d, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x3a, + 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x47, + 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x53, + 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x53, + 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x48, + 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x3c, + 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x2f, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x23, + 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x17, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0d, + 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x17, + 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x22, + 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x2d, + 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x36, + 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x33, + 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x2b, + 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x21, + 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0d, + 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x70, 0x6f, 0x73, 0x2d, 0x74, 0x63, 0x2d, 0x69, + 0x63, 0x6f, 0x6e, 0x2e, 0x70, 0x6e, 0x67, 0x00, + 0x58, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x06, 0x58, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0x44, + 0x61, 0x9f, 0x20, 0x43, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5f, 0x9b, 0x21, 0x44, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9e, 0x20, 0xff, 0x60, 0x9d, 0x21, 0x43, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5e, 0x9a, 0x1e, 0x54, + 0x61, 0xa0, 0x1e, 0xd3, 0x69, 0xac, 0x1a, 0xff, + 0x69, 0xac, 0x1a, 0xff, 0x60, 0x9e, 0x20, 0xff, + 0x5e, 0x9a, 0x1e, 0x54, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x9a, 0x1e, 0x54, 0x61, 0xa0, 0x1e, 0xd3, + 0x67, 0xaa, 0x1b, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb1, 0x19, 0xff, 0x68, 0xab, 0x1b, 0xff, + 0x61, 0xa0, 0x1e, 0xd3, 0x5e, 0x9a, 0x1e, 0x54, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5e, 0x9a, 0x20, 0x44, + 0x60, 0x9d, 0x20, 0xff, 0x69, 0xac, 0x1e, 0xff, + 0x6c, 0xb2, 0x1a, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x67, 0xa9, 0x1b, 0xff, 0x61, 0xa0, 0x1e, 0xd3, + 0x5e, 0x9a, 0x1e, 0x54, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5d, 0x9a, 0x1f, 0x44, 0x60, 0x9d, 0x20, 0xff, + 0x6a, 0xaa, 0x1f, 0xff, 0x6d, 0xb0, 0x1c, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x66, 0xa8, 0x1b, 0xff, + 0x60, 0x9f, 0x1e, 0xd3, 0x5e, 0x9a, 0x1e, 0x54, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5e, 0x9a, 0x1e, 0x54, + 0x64, 0xa1, 0x20, 0xd3, 0x70, 0xaf, 0x24, 0xff, + 0x74, 0xb5, 0x22, 0xff, 0x6e, 0xb1, 0x1d, 0xff, + 0x6b, 0xb0, 0x1a, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x6a, 0xb0, 0x19, 0xff, + 0x65, 0xa9, 0x1b, 0xff, 0x60, 0x9e, 0x20, 0xff, + 0x61, 0x9e, 0x21, 0x43, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0x44, 0x60, 0x9d, 0x20, 0xff, + 0x70, 0xac, 0x27, 0xff, 0x76, 0xb4, 0x27, 0xfe, + 0x72, 0xb2, 0x23, 0xff, 0x71, 0xb2, 0x1f, 0xff, + 0x6c, 0xb0, 0x1b, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x66, 0xab, 0x19, 0xff, 0x61, 0xa2, 0x1b, 0xff, + 0x5f, 0x9d, 0x1e, 0xd3, 0x5e, 0x9a, 0x1e, 0x54, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5c, 0x99, 0x1b, 0x37, + 0x5f, 0x9c, 0x1e, 0xb5, 0x60, 0x9e, 0x1f, 0xe0, + 0x65, 0xa2, 0x21, 0xdf, 0x64, 0xa1, 0x21, 0xdf, + 0x66, 0xa4, 0x1f, 0xf2, 0x6c, 0xad, 0x1e, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x69, 0xad, 0x19, 0xff, + 0x63, 0xa4, 0x1b, 0xff, 0x5f, 0x9f, 0x1c, 0xe0, + 0x5f, 0x9c, 0x1e, 0xe1, 0x5f, 0x9b, 0x1e, 0xb6, + 0x5c, 0x99, 0x1b, 0x37, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5b, 0x99, 0x1e, 0x19, + 0x5e, 0x9b, 0x1c, 0x36, 0x5e, 0x9b, 0x1c, 0x36, + 0x5f, 0x9b, 0x1e, 0x3b, 0x5d, 0x9a, 0x1e, 0x4c, + 0x61, 0x9d, 0x1f, 0xc5, 0x69, 0xa8, 0x1e, 0xfe, + 0x6c, 0xb0, 0x1c, 0xff, 0x6b, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x65, 0xa7, 0x1b, 0xff, + 0x60, 0x9e, 0x1d, 0xbe, 0x5e, 0x99, 0x1f, 0x49, + 0x5e, 0x97, 0x1c, 0x36, 0x5e, 0x9b, 0x1c, 0x36, + 0x5b, 0x99, 0x1e, 0x19, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5d, 0x99, 0x19, 0x1e, + 0x61, 0xa0, 0x1d, 0xc4, 0x6a, 0xa9, 0x1f, 0xff, + 0x6d, 0xb0, 0x1c, 0xff, 0x6b, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6a, 0xae, 0x19, 0xff, 0x64, 0xa5, 0x1c, 0xfb, + 0x60, 0x9d, 0x1d, 0x92, 0x55, 0x8d, 0x1c, 0x09, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x57, 0x95, 0x1a, 0x1d, + 0x61, 0x9f, 0x1e, 0xc1, 0x6a, 0xaa, 0x20, 0xff, + 0x6e, 0xb1, 0x1d, 0xff, 0x6b, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6a, 0xae, 0x19, 0xff, 0x64, 0xa5, 0x1b, 0xf8, + 0x5f, 0x9b, 0x1d, 0x8b, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5b, 0x9a, 0x1b, 0x1c, + 0x60, 0x9f, 0x1f, 0xc8, 0x6b, 0xaa, 0x20, 0xff, + 0x6f, 0xb0, 0x1e, 0xff, 0x6c, 0xb0, 0x1b, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x64, 0xa5, 0x1b, 0xff, + 0x60, 0x9c, 0x1d, 0x94, 0x55, 0x94, 0x15, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5b, 0x9a, 0x1b, 0x1c, + 0x62, 0x9f, 0x1f, 0xc8, 0x6c, 0xaa, 0x21, 0xff, + 0x6f, 0xb0, 0x1f, 0xff, 0x6c, 0xb0, 0x1c, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x64, 0xa5, 0x1c, 0xff, + 0x5f, 0x9d, 0x1d, 0x95, 0x55, 0x94, 0x15, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5a, 0x97, 0x19, 0x38, + 0x62, 0x9f, 0x1f, 0xf1, 0x6d, 0xab, 0x22, 0xff, + 0x71, 0xb1, 0x20, 0xff, 0x6d, 0xb1, 0x1c, 0xff, + 0x6b, 0xb0, 0x1a, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6a, 0xae, 0x19, 0xff, 0x64, 0xa5, 0x1b, 0xff, + 0x5e, 0x9d, 0x1d, 0xcd, 0x4c, 0x7e, 0x19, 0x0a, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5d, 0x90, 0x19, 0x1e, + 0x62, 0x9f, 0x20, 0xc5, 0x6d, 0xaa, 0x23, 0xfe, + 0x72, 0xb1, 0x21, 0xff, 0x6f, 0xb1, 0x1e, 0xff, + 0x6c, 0xb0, 0x1b, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6a, 0xae, 0x19, 0xff, 0x64, 0xa5, 0x1c, 0xff, + 0x5f, 0x9d, 0x1d, 0x93, 0x62, 0x9c, 0x13, 0x0d, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5a, 0x94, 0x18, 0x1f, + 0x63, 0xa0, 0x20, 0xce, 0x6d, 0xaa, 0x23, 0xff, + 0x70, 0xaf, 0x20, 0xff, 0x6c, 0xad, 0x1f, 0xff, + 0x67, 0xab, 0x1c, 0xff, 0x65, 0xaa, 0x19, 0xff, + 0x65, 0xa9, 0x19, 0xff, 0x63, 0xa3, 0x1b, 0xfa, + 0x60, 0x9e, 0x1e, 0x8f, 0x48, 0x91, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5e, 0x9a, 0x1a, 0x20, + 0x63, 0xa0, 0x1f, 0x80, 0x65, 0xa2, 0x20, 0xa4, + 0x65, 0xa2, 0x20, 0xbe, 0x63, 0xa0, 0x20, 0xb0, + 0x63, 0xa0, 0x1d, 0xad, 0x63, 0xa0, 0x1c, 0xae, + 0x63, 0xa0, 0x1c, 0xb6, 0x63, 0xa0, 0x1b, 0xa9, + 0x5f, 0x9d, 0x1c, 0x71, 0x3f, 0x7f, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x57, 0x95, 0x1a, 0x16, + 0x62, 0x9e, 0x20, 0x61, 0x62, 0x9e, 0x20, 0x7e, + 0x62, 0x9e, 0x20, 0x78, 0x62, 0x9f, 0x20, 0x81, + 0x62, 0x9e, 0x20, 0x87, 0x62, 0x9e, 0x20, 0x8d, + 0x62, 0x9f, 0x20, 0x75, 0x62, 0x9e, 0x20, 0x76, + 0x5f, 0x9d, 0x1e, 0x69, 0x4e, 0x89, 0x13, 0x0d, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x63, 0xa0, 0x20, 0x06, + 0x63, 0xa0, 0x20, 0x0c, 0x63, 0xa0, 0x20, 0x0c, + 0x63, 0xa0, 0x20, 0x06, 0x63, 0xa0, 0x20, 0x06, + 0x63, 0xa0, 0x20, 0x0b, 0x63, 0xa0, 0x20, 0x11, + 0x63, 0xa0, 0x20, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x67, 0x69, 0x6d, 0x70, 0x2f, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x00, 0x00, 0x70, 0x6c, 0x75, 0x67, + 0x69, 0x6e, 0x2f, 0x00, 0x15, 0x00, 0x00, 0x00, + 0x70, 0x6f, 0x73, 0x2d, 0x62, 0x6c, 0x2d, 0x69, + 0x63, 0x6f, 0x6e, 0x2e, 0x70, 0x6e, 0x67, 0x00, + 0x58, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x06, 0x58, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb0, 0x1a, 0xff, + 0x66, 0xa5, 0x1f, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6e, 0xb1, 0x1e, 0xff, 0x67, 0xa5, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb1, 0x1b, 0xff, 0x6d, 0xb1, 0x1d, 0xff, + 0x71, 0xb2, 0x1f, 0xff, 0x74, 0xb3, 0x23, 0xff, + 0x6a, 0xa7, 0x23, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb0, 0x1a, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6f, 0xb2, 0x1f, 0xff, + 0x72, 0xb2, 0x22, 0xff, 0x75, 0xb5, 0x25, 0xff, + 0x79, 0xb7, 0x29, 0xff, 0x6c, 0xa8, 0x26, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb1, 0x1b, 0xff, + 0x6e, 0xb1, 0x1d, 0xff, 0x72, 0xb2, 0x20, 0xff, + 0x74, 0xb3, 0x25, 0xff, 0x78, 0xb6, 0x27, 0xff, + 0x6c, 0xa7, 0x25, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x6d, 0xb1, 0x1c, 0xff, + 0x70, 0xb2, 0x1f, 0xff, 0x73, 0xb3, 0x23, 0xff, + 0x77, 0xb5, 0x26, 0xff, 0x6b, 0xa7, 0x25, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x61, 0xa2, 0x1c, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6f, 0xb1, 0x1e, 0xff, + 0x72, 0xb2, 0x21, 0xff, 0x75, 0xb5, 0x25, 0xff, + 0x6b, 0xa7, 0x24, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x65, 0xab, 0x19, 0xff, 0x69, 0xae, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb1, 0x1b, 0xff, + 0x6e, 0xb1, 0x1d, 0xff, 0x71, 0xb2, 0x20, 0xff, + 0x74, 0xb3, 0x24, 0xff, 0x6a, 0xa7, 0x23, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x67, 0xad, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x70, 0xb2, 0x1f, 0xff, 0x73, 0xb2, 0x22, 0xff, + 0x69, 0xa6, 0x22, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6e, 0xb1, 0x1e, 0xff, + 0x72, 0xb2, 0x21, 0xff, 0x68, 0xa6, 0x22, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb1, 0x1b, 0xff, + 0x6d, 0xb1, 0x1d, 0xff, 0x71, 0xb2, 0x1f, 0xff, + 0x68, 0xa6, 0x21, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6f, 0xb2, 0x1f, 0xff, 0x68, 0xa5, 0x21, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb1, 0x1b, 0xff, 0x6e, 0xb1, 0x1d, 0xff, + 0x72, 0xb2, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb0, 0x1a, 0xff, + 0x6d, 0xb1, 0x1c, 0xff, 0x70, 0xb2, 0x1f, 0xff, + 0x73, 0xb3, 0x23, 0xff, 0x6a, 0xa6, 0x23, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6f, 0xb1, 0x1e, 0xff, 0x72, 0xb2, 0x21, 0xff, + 0x75, 0xb5, 0x25, 0xff, 0x79, 0xb7, 0x29, 0xff, + 0x6c, 0xa7, 0x26, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x70, 0x6f, 0x73, 0x2d, 0x63, 0x6c, 0x2d, 0x69, + 0x63, 0x6f, 0x6e, 0x2e, 0x70, 0x6e, 0x67, 0x00, + 0x58, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x06, 0x58, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5c, 0x99, 0x1b, 0x37, 0x5b, 0x99, 0x1e, 0x19, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5e, 0x9a, 0x1e, 0x54, + 0x5f, 0x9b, 0x1e, 0xb6, 0x5e, 0x9b, 0x1c, 0x36, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x61, 0x9e, 0x21, 0x43, 0x5f, 0x9d, 0x1e, 0xd3, + 0x5f, 0x9c, 0x1e, 0xe1, 0x5e, 0x97, 0x1c, 0x36, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5e, 0x9a, 0x1e, 0x54, + 0x60, 0x9e, 0x20, 0xff, 0x61, 0xa2, 0x1b, 0xff, + 0x5f, 0x9f, 0x1c, 0xe0, 0x5e, 0x99, 0x1f, 0x49, + 0x55, 0x8d, 0x1c, 0x09, 0x00, 0x00, 0x00, 0x01, + 0x55, 0x94, 0x15, 0x0c, 0x55, 0x94, 0x15, 0x0c, + 0x4c, 0x7e, 0x19, 0x0a, 0x62, 0x9c, 0x13, 0x0d, + 0x48, 0x91, 0x00, 0x07, 0x3f, 0x7f, 0x00, 0x04, + 0x4e, 0x89, 0x13, 0x0d, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x9a, 0x1e, 0x54, 0x60, 0x9f, 0x1e, 0xd3, + 0x65, 0xa9, 0x1b, 0xff, 0x66, 0xab, 0x19, 0xff, + 0x63, 0xa4, 0x1b, 0xff, 0x60, 0x9e, 0x1d, 0xbe, + 0x60, 0x9d, 0x1d, 0x92, 0x5f, 0x9b, 0x1d, 0x8b, + 0x60, 0x9c, 0x1d, 0x94, 0x5f, 0x9d, 0x1d, 0x95, + 0x5e, 0x9d, 0x1d, 0xcd, 0x5f, 0x9d, 0x1d, 0x93, + 0x60, 0x9e, 0x1e, 0x8f, 0x5f, 0x9d, 0x1c, 0x71, + 0x5f, 0x9d, 0x1e, 0x69, 0x63, 0xa0, 0x20, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5e, 0x9a, 0x1e, 0x54, + 0x61, 0xa0, 0x1e, 0xd3, 0x66, 0xa8, 0x1b, 0xff, + 0x6a, 0xb0, 0x19, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x69, 0xad, 0x19, 0xff, 0x65, 0xa7, 0x1b, 0xff, + 0x64, 0xa5, 0x1c, 0xfb, 0x64, 0xa5, 0x1b, 0xf8, + 0x64, 0xa5, 0x1b, 0xff, 0x64, 0xa5, 0x1c, 0xff, + 0x64, 0xa5, 0x1b, 0xff, 0x64, 0xa5, 0x1c, 0xff, + 0x63, 0xa3, 0x1b, 0xfa, 0x63, 0xa0, 0x1b, 0xa9, + 0x62, 0x9e, 0x20, 0x76, 0x63, 0xa0, 0x20, 0x11, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x9a, 0x1e, 0x54, 0x61, 0xa0, 0x1e, 0xd3, + 0x67, 0xa9, 0x1b, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x6a, 0xae, 0x19, 0xff, 0x6a, 0xae, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x6a, 0xae, 0x19, 0xff, 0x6a, 0xae, 0x19, 0xff, + 0x65, 0xa9, 0x19, 0xff, 0x63, 0xa0, 0x1c, 0xb6, + 0x62, 0x9f, 0x20, 0x75, 0x63, 0xa0, 0x20, 0x0b, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x21, 0x43, + 0x60, 0x9e, 0x20, 0xff, 0x68, 0xab, 0x1b, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x65, 0xaa, 0x19, 0xff, 0x63, 0xa0, 0x1c, 0xae, + 0x62, 0x9e, 0x20, 0x8d, 0x63, 0xa0, 0x20, 0x06, + 0x61, 0x9f, 0x20, 0x43, 0x60, 0x9e, 0x20, 0xff, + 0x69, 0xac, 0x1a, 0xff, 0x6c, 0xb1, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x1a, 0xff, 0x6c, 0xb0, 0x1b, 0xff, + 0x67, 0xab, 0x1c, 0xff, 0x63, 0xa0, 0x1d, 0xad, + 0x62, 0x9e, 0x20, 0x87, 0x63, 0xa0, 0x20, 0x06, + 0x60, 0x9d, 0x20, 0x44, 0x60, 0x9d, 0x20, 0xff, + 0x69, 0xac, 0x1a, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x1a, 0xff, 0x6b, 0xb0, 0x1a, 0xff, + 0x6c, 0xb0, 0x1b, 0xff, 0x6c, 0xb0, 0x1c, 0xff, + 0x6d, 0xb1, 0x1c, 0xff, 0x6f, 0xb1, 0x1e, 0xff, + 0x6c, 0xad, 0x1f, 0xff, 0x63, 0xa0, 0x20, 0xb0, + 0x62, 0x9f, 0x20, 0x81, 0x63, 0xa0, 0x20, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x5f, 0x9b, 0x21, 0x44, + 0x61, 0xa0, 0x1e, 0xd3, 0x67, 0xaa, 0x1b, 0xff, + 0x6c, 0xb2, 0x1a, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x1a, 0xff, 0x6c, 0xb0, 0x1b, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6c, 0xb0, 0x1c, 0xff, + 0x6d, 0xb0, 0x1c, 0xff, 0x6e, 0xb1, 0x1d, 0xff, + 0x6f, 0xb0, 0x1e, 0xff, 0x6f, 0xb0, 0x1f, 0xff, + 0x71, 0xb1, 0x20, 0xff, 0x72, 0xb1, 0x21, 0xff, + 0x70, 0xaf, 0x20, 0xff, 0x65, 0xa2, 0x20, 0xbe, + 0x62, 0x9e, 0x20, 0x78, 0x63, 0xa0, 0x20, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x9a, 0x1e, 0x54, 0x61, 0xa0, 0x1e, 0xd3, + 0x69, 0xac, 0x1e, 0xff, 0x6d, 0xb0, 0x1c, 0xff, + 0x6e, 0xb1, 0x1d, 0xff, 0x71, 0xb2, 0x1f, 0xff, + 0x6c, 0xad, 0x1e, 0xff, 0x69, 0xa8, 0x1e, 0xfe, + 0x6a, 0xa9, 0x1f, 0xff, 0x6a, 0xaa, 0x20, 0xff, + 0x6b, 0xaa, 0x20, 0xff, 0x6c, 0xaa, 0x21, 0xff, + 0x6d, 0xab, 0x22, 0xff, 0x6d, 0xaa, 0x23, 0xfe, + 0x6d, 0xaa, 0x23, 0xff, 0x65, 0xa2, 0x20, 0xa4, + 0x62, 0x9e, 0x20, 0x7e, 0x63, 0xa0, 0x20, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5e, 0x9a, 0x1e, 0x54, + 0x60, 0x9d, 0x20, 0xff, 0x6a, 0xaa, 0x1f, 0xff, + 0x74, 0xb5, 0x22, 0xff, 0x72, 0xb2, 0x23, 0xff, + 0x66, 0xa4, 0x1f, 0xf2, 0x61, 0x9d, 0x1f, 0xc5, + 0x61, 0xa0, 0x1d, 0xc4, 0x61, 0x9f, 0x1e, 0xc1, + 0x60, 0x9f, 0x1f, 0xc8, 0x62, 0x9f, 0x1f, 0xc8, + 0x62, 0x9f, 0x1f, 0xf1, 0x62, 0x9f, 0x20, 0xc5, + 0x63, 0xa0, 0x20, 0xce, 0x63, 0xa0, 0x1f, 0x80, + 0x62, 0x9e, 0x20, 0x61, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x9a, 0x20, 0x44, 0x60, 0x9d, 0x20, 0xff, + 0x70, 0xaf, 0x24, 0xff, 0x76, 0xb4, 0x27, 0xfe, + 0x64, 0xa1, 0x21, 0xdf, 0x5d, 0x9a, 0x1e, 0x4c, + 0x5d, 0x99, 0x19, 0x1e, 0x57, 0x95, 0x1a, 0x1d, + 0x5b, 0x9a, 0x1b, 0x1c, 0x5b, 0x9a, 0x1b, 0x1c, + 0x5a, 0x97, 0x19, 0x38, 0x5d, 0x90, 0x19, 0x1e, + 0x5a, 0x94, 0x18, 0x1f, 0x5e, 0x9a, 0x1a, 0x20, + 0x57, 0x95, 0x1a, 0x16, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5d, 0x9a, 0x1f, 0x44, + 0x64, 0xa1, 0x20, 0xd3, 0x70, 0xac, 0x27, 0xff, + 0x65, 0xa2, 0x21, 0xdf, 0x5f, 0x9b, 0x1e, 0x3b, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x9a, 0x1e, 0x54, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9e, 0x1f, 0xe0, 0x5e, 0x9b, 0x1c, 0x36, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0x44, + 0x5f, 0x9c, 0x1e, 0xb5, 0x5e, 0x9b, 0x1c, 0x36, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5c, 0x99, 0x1b, 0x37, 0x5b, 0x99, 0x1e, 0x19, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x2d, 0x77, 0x61, + 0x74, 0x65, 0x72, 0x6d, 0x61, 0x72, 0x6b, 0x2e, + 0x70, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x10, 0x18, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x80, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x8c, 0x91, 0x8a, 0x16, 0x89, 0x8a, 0x85, 0x6b, + 0x89, 0x89, 0x84, 0x71, 0x89, 0x89, 0x84, 0x71, + 0x89, 0x89, 0x84, 0x71, 0x89, 0x89, 0x84, 0x71, + 0x89, 0x89, 0x84, 0x71, 0x89, 0x89, 0x84, 0x71, + 0x89, 0x89, 0x84, 0x71, 0x89, 0x89, 0x84, 0x71, + 0x89, 0x89, 0x84, 0x71, 0x89, 0x89, 0x84, 0x71, + 0x89, 0x89, 0x84, 0x71, 0x89, 0x89, 0x84, 0x71, + 0x89, 0x89, 0x84, 0x71, 0x89, 0x89, 0x84, 0x71, + 0x89, 0x89, 0x84, 0x71, 0x89, 0x89, 0x84, 0x71, + 0x89, 0x89, 0x84, 0x71, 0x89, 0x89, 0x84, 0x71, + 0x89, 0x89, 0x84, 0x71, 0x89, 0x89, 0x84, 0x71, + 0x89, 0x89, 0x84, 0x71, 0x89, 0x89, 0x84, 0x71, + 0x88, 0x88, 0x84, 0x5f, 0x84, 0x84, 0x84, 0x0a, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x97, 0x9a, 0x93, 0x4c, 0xe6, 0xe7, 0xe6, 0x95, + 0xfa, 0xfa, 0xfa, 0x97, 0xfa, 0xfa, 0xfa, 0x97, + 0xfa, 0xfa, 0xfa, 0x97, 0xfa, 0xfa, 0xfa, 0x97, + 0xfa, 0xfa, 0xfa, 0x97, 0xfa, 0xfa, 0xfa, 0x97, + 0xfa, 0xfa, 0xfa, 0x97, 0xfa, 0xfa, 0xfa, 0x97, + 0xfa, 0xfa, 0xfa, 0x97, 0xfa, 0xfa, 0xfa, 0x97, + 0xfa, 0xfa, 0xfa, 0x97, 0xfa, 0xfa, 0xfa, 0x97, + 0xfa, 0xfa, 0xfa, 0x97, 0xfa, 0xfa, 0xfa, 0x97, + 0xfa, 0xfa, 0xfa, 0x97, 0xfa, 0xfa, 0xfa, 0x97, + 0xfa, 0xfa, 0xfa, 0x97, 0xfa, 0xfa, 0xfa, 0x97, + 0xfa, 0xfa, 0xfa, 0x97, 0xfa, 0xfa, 0xfa, 0x97, + 0xfa, 0xfa, 0xfa, 0x97, 0xfa, 0xfa, 0xfa, 0x97, + 0x92, 0x95, 0x91, 0x6f, 0x8c, 0x8c, 0x8c, 0x05, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x79, 0x79, 0x79, 0x0a, + 0xa6, 0xa8, 0xa5, 0x8c, 0xf2, 0xf2, 0xf2, 0x96, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xed, 0xed, 0xed, 0x97, 0xd8, 0xd8, 0xd7, 0x94, + 0x8c, 0x8c, 0x89, 0x33, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x92, 0x92, 0x92, 0x00, 0x8c, 0x8f, 0x89, 0x4c, + 0xdd, 0xde, 0xdb, 0x95, 0xee, 0xee, 0xee, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xe9, 0xe9, 0xea, 0x97, 0xd6, 0xdb, 0xe2, 0x9e, + 0xc8, 0xd1, 0xdd, 0xa3, 0xe2, 0xe4, 0xe7, 0x9a, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xea, 0xea, 0xea, 0x97, + 0xe9, 0xe9, 0xe9, 0x97, 0xe7, 0xe7, 0xe7, 0x97, + 0xee, 0xee, 0xed, 0x96, 0xa9, 0xac, 0xa7, 0x80, + 0x80, 0x80, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x85, 0x89, 0x81, 0x0c, 0xa5, 0xa9, 0xa3, 0x79, + 0xf7, 0xf7, 0xf7, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xe6, 0xe7, 0xe9, 0x98, + 0x6d, 0x8f, 0xba, 0xd1, 0x61, 0x85, 0xb4, 0xd9, + 0x72, 0x92, 0xbc, 0xce, 0x60, 0x85, 0xb5, 0xd9, + 0xd7, 0xdc, 0xe2, 0x9e, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xe8, 0xe8, 0xe8, 0x97, + 0xe7, 0xe7, 0xe7, 0x97, 0xe6, 0xe6, 0xe6, 0x97, + 0xe6, 0xe6, 0xe6, 0x97, 0xe6, 0xe6, 0xe6, 0x97, + 0xe4, 0xe4, 0xe4, 0x96, 0x99, 0x99, 0x98, 0x37, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x8f, 0x93, 0x8d, 0x2b, 0xda, 0xdc, 0xd9, 0x93, + 0xf1, 0xf1, 0xf1, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xe2, 0xe4, 0xe8, 0x99, 0x6b, 0x8e, 0xb9, 0xd2, + 0x90, 0xa8, 0xc8, 0xbd, 0xea, 0xea, 0xea, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xab, 0xbb, 0xd1, 0xb0, + 0x67, 0x8a, 0xb6, 0xd6, 0xdf, 0xe2, 0xe6, 0x9a, + 0xeb, 0xeb, 0xeb, 0x97, 0xea, 0xea, 0xea, 0x97, + 0xe9, 0xe9, 0xe9, 0x97, 0xda, 0xde, 0xe2, 0x9b, + 0xd8, 0xdc, 0xe0, 0x9b, 0xe5, 0xe5, 0xe5, 0x97, + 0xe4, 0xe4, 0xe4, 0x97, 0xe3, 0xe3, 0xe3, 0x97, + 0xe1, 0xe1, 0xe1, 0x97, 0xee, 0xee, 0xee, 0x97, + 0xc2, 0xc5, 0xc2, 0x82, 0x89, 0x8b, 0x89, 0x12, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xa2, 0xa5, 0xa0, 0x70, 0xef, 0xef, 0xee, 0x96, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xb8, 0xc5, 0xd7, 0xaa, 0x80, 0x9d, 0xc2, 0xc5, + 0xea, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0x90, 0xa7, 0xc7, 0xbd, 0x93, 0xab, 0xc8, 0xbb, + 0xe7, 0xe7, 0xe7, 0x97, 0xe6, 0xe6, 0xe6, 0x97, + 0xe6, 0xe6, 0xe6, 0x97, 0x88, 0xa2, 0xc3, 0xc0, + 0x9d, 0xb0, 0xc9, 0xb4, 0xe1, 0xe1, 0xe1, 0x97, + 0xe1, 0xe1, 0xe1, 0x97, 0xdf, 0xdf, 0xdf, 0x97, + 0xe0, 0xe0, 0xe0, 0x97, 0xea, 0xea, 0xea, 0x97, + 0x90, 0x91, 0x8e, 0x5d, 0x7a, 0x7a, 0x7a, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x84, 0x84, 0x83, 0x21, + 0xba, 0xbb, 0xb8, 0x92, 0xf1, 0xf1, 0xf1, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xd8, 0xdc, 0xe4, 0x9d, 0xd9, 0xde, 0xe4, 0x9d, + 0xeb, 0xeb, 0xeb, 0x97, 0xea, 0xea, 0xea, 0x97, + 0xe9, 0xe9, 0xe9, 0x97, 0xe7, 0xe7, 0xe7, 0x97, + 0xd7, 0xdb, 0xe0, 0x9c, 0x5e, 0x83, 0xb3, 0xda, + 0xaf, 0xbe, 0xcf, 0xab, 0xd9, 0xdc, 0xe0, 0x9a, + 0xba, 0xc5, 0xd3, 0xa6, 0x59, 0x7e, 0xaf, 0xdd, + 0xc8, 0xcf, 0xd6, 0x9f, 0xde, 0xde, 0xde, 0x97, + 0xdc, 0xdc, 0xdc, 0x97, 0xdb, 0xdb, 0xdb, 0x97, + 0xe4, 0xe4, 0xe4, 0x97, 0xb7, 0xb8, 0xb7, 0x90, + 0x89, 0x89, 0x83, 0x17, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x95, 0x95, 0x95, 0x02, 0x8a, 0x8c, 0x87, 0x66, + 0xf2, 0xf2, 0xf2, 0x96, 0xec, 0xec, 0xec, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xeb, 0xeb, 0xeb, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xea, 0xea, 0xea, 0x97, 0xe8, 0xe8, 0xe8, 0x97, + 0xe7, 0xe7, 0xe7, 0x97, 0xe6, 0xe6, 0xe6, 0x97, + 0xe6, 0xe6, 0xe6, 0x97, 0xe4, 0xe4, 0xe4, 0x97, + 0xe2, 0xe2, 0xe2, 0x97, 0xc5, 0xcd, 0xd7, 0xa1, + 0x6a, 0x8c, 0xb7, 0xd0, 0x55, 0x7d, 0xaf, 0xe0, + 0x68, 0x8b, 0xb5, 0xd1, 0xa8, 0xb7, 0xca, 0xac, + 0xdc, 0xdc, 0xdc, 0x97, 0xda, 0xda, 0xda, 0x97, + 0xd7, 0xd7, 0xd7, 0x97, 0xd6, 0xd6, 0xd6, 0x97, + 0xe8, 0xe8, 0xe8, 0x96, 0xa2, 0xa3, 0xa0, 0x5f, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x89, 0x8c, 0x84, 0x17, 0xc5, 0xc6, 0xc5, 0x86, + 0xf5, 0xf5, 0xf5, 0x97, 0xeb, 0xeb, 0xeb, 0x97, + 0xe7, 0xe7, 0xe7, 0x9c, 0xdc, 0xdc, 0xdb, 0xaf, + 0xda, 0xdb, 0xda, 0xb1, 0xd8, 0xd9, 0xd8, 0xb1, + 0xd7, 0xd8, 0xd7, 0xb1, 0xd7, 0xd7, 0xd7, 0xb1, + 0xd6, 0xd7, 0xd6, 0xb1, 0xd5, 0xd6, 0xd5, 0xb1, + 0xd3, 0xd3, 0xd3, 0xb1, 0xd3, 0xd3, 0xd2, 0xb1, + 0xd2, 0xd3, 0xd2, 0xb1, 0xd1, 0xd2, 0xd1, 0xb1, + 0xcf, 0xcf, 0xce, 0xb1, 0xcf, 0xcf, 0xce, 0xb1, + 0xce, 0xcf, 0xce, 0xb1, 0xcd, 0xcd, 0xcd, 0xb1, + 0xca, 0xca, 0xca, 0xb1, 0xc9, 0xca, 0xc9, 0xb1, + 0xc9, 0xc9, 0xc9, 0xb1, 0xd1, 0xd1, 0xd0, 0xb1, + 0xc8, 0xc9, 0xc7, 0xaf, 0x89, 0x8b, 0x86, 0x5d, + 0x88, 0x8a, 0x85, 0x3f, 0x88, 0x8a, 0x85, 0x3f, + 0x88, 0x8a, 0x85, 0x35, 0x8a, 0x8a, 0x85, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x98, 0x98, 0x95, 0x43, 0xe6, 0xe7, 0xe6, 0x95, + 0xeb, 0xeb, 0xeb, 0x97, 0xe7, 0xe7, 0xe7, 0x97, + 0xd5, 0xd5, 0xd4, 0xbc, 0xdc, 0xdc, 0xdb, 0xfc, + 0xe3, 0xe4, 0xe3, 0xff, 0xe2, 0xe2, 0xe2, 0xff, + 0xe2, 0xe2, 0xe1, 0xff, 0xe1, 0xe1, 0xe1, 0xff, + 0xe0, 0xe1, 0xe0, 0xff, 0xdf, 0xdf, 0xdf, 0xff, + 0xdf, 0xdf, 0xde, 0xff, 0xde, 0xde, 0xde, 0xff, + 0xdd, 0xde, 0xdd, 0xff, 0xdd, 0xdd, 0xdc, 0xff, + 0xdc, 0xdc, 0xdb, 0xff, 0xdb, 0xdb, 0xdb, 0xff, + 0xda, 0xdb, 0xda, 0xff, 0xda, 0xda, 0xd9, 0xff, + 0xd9, 0xda, 0xd9, 0xff, 0xd8, 0xd8, 0xd8, 0xff, + 0xd8, 0xd9, 0xd8, 0xff, 0xe9, 0xe9, 0xe9, 0xff, + 0xc2, 0xc3, 0xc0, 0xff, 0xdf, 0xe0, 0xdf, 0xff, + 0xe1, 0xe1, 0xe0, 0xff, 0xe0, 0xe1, 0xdf, 0xff, + 0x90, 0x92, 0x8e, 0xca, 0x88, 0x8b, 0x86, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x8e, 0x8e, 0x87, 0x06, + 0xab, 0xac, 0xa9, 0x88, 0xee, 0xee, 0xee, 0x97, + 0xe6, 0xe6, 0xe6, 0x97, 0xe4, 0xe4, 0xe4, 0x99, + 0xcd, 0xce, 0xcd, 0xed, 0xe8, 0xe9, 0xe8, 0xff, + 0xe5, 0xe5, 0xe5, 0xff, 0xe5, 0xe5, 0xe5, 0xff, + 0xe4, 0xe4, 0xe4, 0xff, 0xe3, 0xe3, 0xe3, 0xff, + 0xe2, 0xe2, 0xe2, 0xff, 0xe2, 0xe2, 0xe2, 0xff, + 0xe1, 0xe1, 0xe1, 0xff, 0xe0, 0xe0, 0xe0, 0xff, + 0xe0, 0xe0, 0xe0, 0xff, 0xdf, 0xdf, 0xdf, 0xff, + 0xde, 0xde, 0xde, 0xff, 0xde, 0xde, 0xde, 0xff, + 0xdd, 0xdd, 0xdd, 0xff, 0xdc, 0xdc, 0xdc, 0xff, + 0xdb, 0xdb, 0xdb, 0xff, 0xdb, 0xdb, 0xdb, 0xff, + 0xe0, 0xe0, 0xe0, 0xff, 0xdb, 0xdc, 0xdb, 0xff, + 0xd3, 0xd3, 0xd3, 0xff, 0xec, 0xec, 0xec, 0xff, + 0xed, 0xed, 0xed, 0xff, 0xeb, 0xeb, 0xea, 0xfd, + 0x8d, 0x91, 0x8b, 0x86, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8a, 0x8e, 0x87, 0x44, + 0xd1, 0xd1, 0xd0, 0x95, 0xf8, 0xf8, 0xf8, 0x97, + 0xf6, 0xf6, 0xf6, 0x97, 0xe1, 0xe1, 0xe1, 0xbb, + 0xe4, 0xe5, 0xe4, 0xfd, 0xf4, 0xf4, 0xf4, 0xff, + 0xf1, 0xf1, 0xf1, 0xff, 0xf1, 0xf1, 0xf1, 0xff, + 0xf1, 0xf1, 0xf1, 0xff, 0xf1, 0xf1, 0xf1, 0xff, + 0xf1, 0xf1, 0xf1, 0xff, 0xf1, 0xf1, 0xf1, 0xff, + 0xf0, 0xf0, 0xf0, 0xff, 0xf0, 0xf0, 0xf0, 0xff, + 0xef, 0xef, 0xef, 0xff, 0xef, 0xef, 0xef, 0xff, + 0xef, 0xef, 0xef, 0xff, 0xef, 0xef, 0xef, 0xff, + 0xef, 0xef, 0xef, 0xff, 0xef, 0xef, 0xef, 0xff, + 0xee, 0xee, 0xee, 0xff, 0xee, 0xee, 0xee, 0xff, + 0xed, 0xed, 0xed, 0xff, 0xc7, 0xc8, 0xc6, 0xff, + 0xe8, 0xe8, 0xe8, 0xff, 0xe9, 0xe9, 0xe9, 0xff, + 0xf0, 0xf0, 0xef, 0xff, 0xb4, 0xb5, 0xb2, 0xf2, + 0x8a, 0x8d, 0x87, 0x11, 0x00, 0x00, 0x00, 0x00, + 0x7c, 0x7f, 0x7c, 0x06, 0x8a, 0x8b, 0x87, 0x74, + 0xc8, 0xc8, 0xc6, 0x97, 0xcb, 0xcb, 0xc9, 0x97, + 0xc8, 0xc8, 0xc7, 0x9a, 0xb5, 0xb6, 0xb4, 0xe5, + 0xda, 0xda, 0xda, 0xff, 0xd6, 0xd6, 0xd6, 0xff, + 0xd5, 0xd5, 0xd5, 0xff, 0xd4, 0xd4, 0xd3, 0xff, + 0xd4, 0xd4, 0xd3, 0xff, 0xd3, 0xd3, 0xd3, 0xff, + 0xd3, 0xd3, 0xd2, 0xff, 0xd2, 0xd3, 0xd2, 0xff, + 0xd2, 0xd2, 0xd1, 0xff, 0xd1, 0xd1, 0xd0, 0xff, + 0xd1, 0xd1, 0xd0, 0xff, 0xd0, 0xd0, 0xd0, 0xff, + 0xd0, 0xd0, 0xcf, 0xff, 0xcf, 0xd0, 0xcf, 0xff, + 0xcf, 0xd0, 0xcf, 0xff, 0xcf, 0xd0, 0xcf, 0xff, + 0xcf, 0xcf, 0xcf, 0xff, 0xcf, 0xcf, 0xcf, 0xff, + 0xca, 0xca, 0xc9, 0xff, 0xd1, 0xd2, 0xd0, 0xff, + 0xe7, 0xe7, 0xe7, 0xff, 0xe6, 0xe6, 0xe6, 0xff, + 0xe9, 0xe9, 0xe9, 0xfd, 0xa1, 0xa3, 0xa1, 0x84, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x82, 0x88, 0x82, 0x02, 0x88, 0x88, 0x83, 0x1f, + 0x89, 0x89, 0x84, 0x25, 0x89, 0x89, 0x84, 0x25, + 0x8b, 0x8c, 0x87, 0x54, 0xc7, 0xc8, 0xc6, 0xf5, + 0xe4, 0xe4, 0xe3, 0xff, 0xdd, 0xdd, 0xdc, 0xff, + 0xdd, 0xdd, 0xdc, 0xff, 0xdd, 0xdd, 0xdc, 0xff, + 0xdd, 0xdd, 0xdc, 0xff, 0xdd, 0xdd, 0xdc, 0xff, + 0xdd, 0xdd, 0xdc, 0xff, 0xdd, 0xdd, 0xdc, 0xff, + 0xdd, 0xdd, 0xdc, 0xff, 0xdd, 0xdd, 0xdc, 0xff, + 0xdd, 0xdd, 0xdc, 0xff, 0xdd, 0xdd, 0xdc, 0xff, + 0xdd, 0xdd, 0xdc, 0xff, 0xdd, 0xdd, 0xdc, 0xff, + 0xdc, 0xdc, 0xdb, 0xff, 0xdb, 0xdb, 0xda, 0xff, + 0xda, 0xda, 0xd9, 0xff, 0xd9, 0xd9, 0xd8, 0xff, + 0xd8, 0xd9, 0xd8, 0xff, 0xe1, 0xe1, 0xe1, 0xff, + 0xe3, 0xe3, 0xe3, 0xff, 0xeb, 0xeb, 0xeb, 0xff, + 0xd5, 0xd6, 0xd4, 0xea, 0x8d, 0x8f, 0x8c, 0x2f, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x9b, 0x9b, 0x97, 0x8e, 0xea, 0xea, 0xe9, 0xfc, + 0xed, 0xed, 0xed, 0xff, 0xec, 0xec, 0xec, 0xff, + 0xec, 0xec, 0xec, 0xff, 0xec, 0xec, 0xec, 0xff, + 0xec, 0xec, 0xec, 0xff, 0xec, 0xec, 0xec, 0xff, + 0xec, 0xec, 0xec, 0xff, 0xec, 0xec, 0xec, 0xff, + 0xec, 0xec, 0xec, 0xff, 0xeb, 0xeb, 0xeb, 0xff, + 0xeb, 0xeb, 0xeb, 0xff, 0xeb, 0xeb, 0xeb, 0xff, + 0xea, 0xea, 0xea, 0xff, 0xe8, 0xe8, 0xe8, 0xff, + 0xe7, 0xe7, 0xe7, 0xff, 0xe6, 0xe6, 0xe6, 0xff, + 0xe5, 0xe5, 0xe5, 0xff, 0xe3, 0xe3, 0xe3, 0xff, + 0xe2, 0xe2, 0xe2, 0xff, 0xe1, 0xe1, 0xe1, 0xff, + 0xe1, 0xe1, 0xe1, 0xff, 0xf2, 0xf2, 0xf2, 0xff, + 0x96, 0x99, 0x93, 0xb6, 0x80, 0x8d, 0x80, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x88, 0x88, 0x7d, 0x19, + 0xac, 0xac, 0xaa, 0xee, 0xf2, 0xf2, 0xf2, 0xff, + 0xec, 0xec, 0xec, 0xff, 0xec, 0xec, 0xec, 0xff, + 0xec, 0xec, 0xec, 0xff, 0xec, 0xec, 0xec, 0xff, + 0xec, 0xec, 0xec, 0xff, 0xec, 0xec, 0xec, 0xff, + 0xec, 0xec, 0xec, 0xff, 0xeb, 0xeb, 0xeb, 0xff, + 0xea, 0xea, 0xea, 0xff, 0xe9, 0xe9, 0xe9, 0xff, + 0xe8, 0xe8, 0xe8, 0xff, 0xe7, 0xe7, 0xe7, 0xff, + 0xe6, 0xe6, 0xe6, 0xff, 0xe4, 0xe4, 0xe4, 0xff, + 0xe3, 0xe3, 0xe3, 0xff, 0xe2, 0xe2, 0xe2, 0xff, + 0xe1, 0xe1, 0xe1, 0xff, 0xdf, 0xdf, 0xdf, 0xff, + 0xde, 0xde, 0xde, 0xff, 0xdd, 0xdd, 0xdd, 0xff, + 0xe2, 0xe2, 0xe2, 0xff, 0xc9, 0xc9, 0xc8, 0xf9, + 0x8a, 0x8b, 0x84, 0x4b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x86, 0x86, 0x86, 0x01, 0x8b, 0x8e, 0x88, 0x8c, + 0xe5, 0xe6, 0xe5, 0xfd, 0xee, 0xee, 0xee, 0xff, + 0xec, 0xec, 0xec, 0xff, 0xec, 0xec, 0xec, 0xff, + 0xec, 0xec, 0xec, 0xff, 0xeb, 0xeb, 0xeb, 0xff, + 0xeb, 0xeb, 0xeb, 0xff, 0xea, 0xea, 0xea, 0xff, + 0xe9, 0xe9, 0xe9, 0xff, 0xe8, 0xe8, 0xe8, 0xff, + 0xe7, 0xe7, 0xe7, 0xff, 0xe5, 0xe5, 0xe5, 0xff, + 0xe4, 0xe4, 0xe4, 0xff, 0xe3, 0xe3, 0xe3, 0xff, + 0xe2, 0xe2, 0xe2, 0xff, 0xe0, 0xe0, 0xe0, 0xff, + 0xe0, 0xe0, 0xe0, 0xff, 0xde, 0xde, 0xde, 0xff, + 0xdd, 0xdd, 0xdd, 0xff, 0xdb, 0xdb, 0xdb, 0xff, + 0xdb, 0xdb, 0xdb, 0xff, 0xd9, 0xd9, 0xd9, 0xff, + 0xe7, 0xe8, 0xe7, 0xfe, 0xa5, 0xa7, 0xa4, 0xd0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x87, 0x89, 0x84, 0x19, 0xb2, 0xb2, 0xb0, 0xd3, + 0xf7, 0xf7, 0xf7, 0xff, 0xec, 0xec, 0xec, 0xff, + 0xec, 0xec, 0xec, 0xff, 0xeb, 0xeb, 0xeb, 0xff, + 0xea, 0xea, 0xea, 0xff, 0xe9, 0xe9, 0xe9, 0xff, + 0xe8, 0xe8, 0xe8, 0xff, 0xe6, 0xe6, 0xe6, 0xff, + 0xe5, 0xe5, 0xe5, 0xff, 0xe4, 0xe4, 0xe4, 0xff, + 0xe3, 0xe3, 0xe3, 0xff, 0xe2, 0xe2, 0xe2, 0xff, + 0xe0, 0xe0, 0xe0, 0xff, 0xdf, 0xdf, 0xdf, 0xff, + 0xde, 0xde, 0xde, 0xff, 0xdd, 0xdd, 0xdd, 0xff, + 0xdb, 0xdb, 0xdb, 0xff, 0xda, 0xda, 0xda, 0xff, + 0xd9, 0xd9, 0xd9, 0xff, 0xd8, 0xd8, 0xd8, 0xff, + 0xd6, 0xd6, 0xd6, 0xff, 0xda, 0xda, 0xda, 0xff, + 0xdf, 0xe0, 0xde, 0xfc, 0x94, 0x96, 0x90, 0x55, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x91, 0x92, 0x8f, 0x50, 0xe0, 0xe0, 0xdf, 0xfb, + 0xee, 0xee, 0xee, 0xff, 0xea, 0xea, 0xea, 0xff, + 0xe9, 0xe9, 0xe9, 0xff, 0xe7, 0xe7, 0xe7, 0xff, + 0xe7, 0xe7, 0xe7, 0xff, 0xe5, 0xe5, 0xe5, 0xff, + 0xe4, 0xe4, 0xe4, 0xff, 0xe3, 0xe3, 0xe3, 0xff, + 0xe2, 0xe2, 0xe2, 0xff, 0xe0, 0xe0, 0xe0, 0xff, + 0xdf, 0xdf, 0xdf, 0xff, 0xde, 0xde, 0xde, 0xff, + 0xdd, 0xdd, 0xdd, 0xff, 0xdb, 0xdb, 0xdb, 0xff, + 0xda, 0xda, 0xda, 0xff, 0xd9, 0xd9, 0xd9, 0xff, + 0xd8, 0xd8, 0xd8, 0xff, 0xd6, 0xd6, 0xd6, 0xff, + 0xd5, 0xd5, 0xd5, 0xff, 0xd4, 0xd4, 0xd4, 0xff, + 0xd3, 0xd3, 0xd3, 0xff, 0xea, 0xea, 0xea, 0xff, + 0xb3, 0xb4, 0xb1, 0xd7, 0x8a, 0x8a, 0x86, 0x1b, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xa5, 0xa6, 0xa4, 0xca, 0xef, 0xef, 0xef, 0xfe, + 0xe7, 0xe7, 0xe7, 0xff, 0xe6, 0xe6, 0xe6, 0xff, + 0xe5, 0xe5, 0xe5, 0xff, 0xe4, 0xe4, 0xe4, 0xff, + 0xe3, 0xe3, 0xe3, 0xff, 0xe1, 0xe1, 0xe1, 0xff, + 0xe0, 0xe0, 0xe0, 0xff, 0xdf, 0xdf, 0xdf, 0xff, + 0xde, 0xde, 0xde, 0xff, 0xdc, 0xdc, 0xdc, 0xff, + 0xdb, 0xdb, 0xdb, 0xff, 0xda, 0xda, 0xda, 0xff, + 0xd9, 0xd9, 0xd9, 0xff, 0xd7, 0xd7, 0xd7, 0xff, + 0xd6, 0xd6, 0xd6, 0xff, 0xd5, 0xd5, 0xd5, 0xff, + 0xd4, 0xd4, 0xd4, 0xff, 0xd2, 0xd2, 0xd2, 0xff, + 0xd1, 0xd1, 0xd1, 0xff, 0xd0, 0xd0, 0xd0, 0xff, + 0xd4, 0xd4, 0xd4, 0xff, 0xe0, 0xe1, 0xe0, 0xfe, + 0x8c, 0x8d, 0x89, 0x92, 0x80, 0x80, 0x80, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8b, 0x8c, 0x88, 0x44, + 0xc1, 0xc2, 0xbe, 0xf8, 0xf1, 0xf1, 0xf1, 0xff, + 0xec, 0xec, 0xec, 0xff, 0xeb, 0xeb, 0xeb, 0xff, + 0xea, 0xea, 0xea, 0xff, 0xe9, 0xe9, 0xe9, 0xff, + 0xe8, 0xe8, 0xe8, 0xff, 0xe7, 0xe7, 0xe7, 0xff, + 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xff, + 0xe4, 0xe4, 0xe4, 0xff, 0xe3, 0xe3, 0xe3, 0xff, + 0xe3, 0xe3, 0xe3, 0xff, 0xe2, 0xe2, 0xe2, 0xff, + 0xe1, 0xe1, 0xe1, 0xff, 0xe0, 0xe0, 0xe0, 0xff, + 0xe0, 0xe0, 0xe0, 0xff, 0xde, 0xde, 0xde, 0xff, + 0xdd, 0xdd, 0xdd, 0xff, 0xdd, 0xdd, 0xdd, 0xff, + 0xdc, 0xdc, 0xdc, 0xff, 0xdb, 0xdb, 0xdb, 0xff, + 0xe3, 0xe3, 0xe3, 0xff, 0xad, 0xae, 0xab, 0xf1, + 0x87, 0x8c, 0x87, 0x1d, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x80, 0x80, 0x06, 0x8c, 0x8d, 0x89, 0xb2, + 0xdd, 0xdd, 0xdd, 0xfe, 0xe8, 0xe8, 0xe8, 0xff, + 0xe7, 0xe7, 0xe7, 0xff, 0xe5, 0xe5, 0xe5, 0xff, + 0xe4, 0xe4, 0xe4, 0xff, 0xe4, 0xe4, 0xe4, 0xff, + 0xe3, 0xe3, 0xe3, 0xff, 0xe2, 0xe2, 0xe2, 0xff, + 0xe1, 0xe1, 0xe1, 0xff, 0xe0, 0xe0, 0xe0, 0xff, + 0xdf, 0xdf, 0xdf, 0xff, 0xde, 0xde, 0xde, 0xff, + 0xdd, 0xdd, 0xdd, 0xff, 0xdc, 0xdc, 0xdc, 0xff, + 0xdb, 0xdb, 0xdb, 0xff, 0xda, 0xda, 0xda, 0xff, + 0xda, 0xda, 0xda, 0xff, 0xd9, 0xd9, 0xd9, 0xff, + 0xd9, 0xd9, 0xd9, 0xff, 0xd9, 0xd9, 0xd9, 0xff, + 0xd9, 0xd9, 0xd9, 0xff, 0xd9, 0xd9, 0xd9, 0xff, + 0xcd, 0xcd, 0xcc, 0xfc, 0x95, 0x97, 0x92, 0x94, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x85, 0x8c, 0x85, 0x0d, 0x87, 0x8a, 0x85, 0x9d, + 0x88, 0x8a, 0x85, 0xbf, 0x88, 0x8a, 0x85, 0xbf, + 0x88, 0x8a, 0x85, 0xbf, 0x88, 0x8a, 0x85, 0xbf, + 0x88, 0x8a, 0x85, 0xbf, 0x88, 0x8a, 0x85, 0xbf, + 0x88, 0x8a, 0x85, 0xbf, 0x88, 0x8a, 0x85, 0xbf, + 0x88, 0x8a, 0x85, 0xbf, 0x88, 0x8a, 0x85, 0xbf, + 0x88, 0x8a, 0x85, 0xbf, 0x88, 0x8a, 0x85, 0xbf, + 0x88, 0x8a, 0x85, 0xbf, 0x88, 0x8a, 0x85, 0xbf, + 0x88, 0x8a, 0x85, 0xbf, 0x88, 0x8a, 0x85, 0xbf, + 0x88, 0x8a, 0x85, 0xbf, 0x88, 0x8a, 0x85, 0xbf, + 0x88, 0x8a, 0x85, 0xbf, 0x88, 0x8a, 0x85, 0xbf, + 0x88, 0x8a, 0x85, 0xbf, 0x88, 0x8a, 0x85, 0xbf, + 0x88, 0x8a, 0x85, 0xb8, 0x8d, 0x8e, 0x88, 0x2b, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x70, 0x6f, 0x73, 0x2d, 0x74, 0x72, 0x2d, 0x69, + 0x63, 0x6f, 0x6e, 0x2e, 0x70, 0x6e, 0x67, 0x00, + 0x58, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x06, 0x58, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x6c, 0xa7, 0x26, 0xff, + 0x79, 0xb7, 0x29, 0xff, 0x75, 0xb5, 0x25, 0xff, + 0x72, 0xb2, 0x21, 0xff, 0x6f, 0xb1, 0x1e, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6a, 0xa6, 0x23, 0xff, 0x73, 0xb3, 0x23, 0xff, + 0x70, 0xb2, 0x1f, 0xff, 0x6d, 0xb1, 0x1c, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x72, 0xb2, 0x20, 0xff, + 0x6e, 0xb1, 0x1d, 0xff, 0x6c, 0xb1, 0x1b, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x68, 0xa5, 0x21, 0xff, 0x6f, 0xb2, 0x1f, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6c, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x68, 0xa6, 0x21, 0xff, + 0x71, 0xb2, 0x1f, 0xff, 0x6d, 0xb1, 0x1d, 0xff, + 0x6c, 0xb1, 0x1b, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x68, 0xa6, 0x22, 0xff, 0x72, 0xb2, 0x21, 0xff, + 0x6e, 0xb1, 0x1e, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x69, 0xa6, 0x22, 0xff, + 0x73, 0xb2, 0x22, 0xff, 0x70, 0xb2, 0x1f, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6c, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x67, 0xad, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6a, 0xa7, 0x23, 0xff, 0x74, 0xb3, 0x24, 0xff, + 0x71, 0xb2, 0x20, 0xff, 0x6e, 0xb1, 0x1d, 0xff, + 0x6c, 0xb1, 0x1b, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x69, 0xae, 0x19, 0xff, 0x65, 0xab, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x6b, 0xa7, 0x24, 0xff, + 0x75, 0xb5, 0x25, 0xff, 0x72, 0xb2, 0x21, 0xff, + 0x6f, 0xb1, 0x1e, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x61, 0xa2, 0x1c, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6b, 0xa7, 0x25, 0xff, 0x77, 0xb5, 0x26, 0xff, + 0x73, 0xb3, 0x23, 0xff, 0x70, 0xb2, 0x1f, 0xff, + 0x6d, 0xb1, 0x1c, 0xff, 0x6c, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x6c, 0xa7, 0x25, 0xff, + 0x78, 0xb6, 0x27, 0xff, 0x74, 0xb3, 0x25, 0xff, + 0x72, 0xb2, 0x20, 0xff, 0x6e, 0xb1, 0x1d, 0xff, + 0x6c, 0xb1, 0x1b, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6c, 0xa8, 0x26, 0xff, 0x79, 0xb7, 0x29, 0xff, + 0x75, 0xb5, 0x25, 0xff, 0x72, 0xb2, 0x22, 0xff, + 0x6f, 0xb2, 0x1f, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x6a, 0xa7, 0x23, 0xff, + 0x74, 0xb3, 0x23, 0xff, 0x71, 0xb2, 0x1f, 0xff, + 0x6d, 0xb1, 0x1d, 0xff, 0x6c, 0xb1, 0x1b, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x67, 0xa5, 0x20, 0xff, 0x6e, 0xb1, 0x1e, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x66, 0xa5, 0x1f, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x2d, 0x73, 0x68, + 0x61, 0x72, 0x70, 0x2e, 0x70, 0x6e, 0x67, 0x00, + 0x18, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x10, 0x18, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x80, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x03, + 0x0f, 0x2a, 0x2a, 0x09, 0x00, 0x18, 0x18, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x1a, 0x33, 0x33, 0x01, 0x1b, 0x32, 0x32, 0x05, + 0x23, 0x2b, 0x31, 0x11, 0x26, 0x2e, 0x33, 0x11, + 0x2e, 0x38, 0x38, 0x0a, 0x41, 0x46, 0x46, 0x05, + 0x55, 0x55, 0x55, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2d, 0x2d, 0x2d, 0x02, + 0x28, 0x31, 0x33, 0x0d, 0x27, 0x33, 0x34, 0x1f, + 0x2d, 0x33, 0x37, 0x26, 0x33, 0x37, 0x3c, 0x1e, + 0x49, 0x49, 0x49, 0x0d, 0x4a, 0x4a, 0x4a, 0x08, + 0x4b, 0x4b, 0x4b, 0x04, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2d, 0x2d, 0x2d, 0x0a, + 0x2c, 0x31, 0x33, 0x2b, 0x2c, 0x33, 0x35, 0x5e, + 0x36, 0x39, 0x3a, 0x3f, 0x44, 0x45, 0x45, 0x26, + 0x59, 0x59, 0x59, 0x14, 0x46, 0x46, 0x46, 0x0e, + 0x3c, 0x3c, 0x3c, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x23, 0x2e, 0x2e, 0x03, + 0x23, 0x2e, 0x2e, 0x0c, 0x2d, 0x33, 0x34, 0x4a, + 0x31, 0x36, 0x37, 0x6b, 0x37, 0x3d, 0x3e, 0x6d, + 0x4a, 0x4e, 0x4d, 0x4e, 0x52, 0x54, 0x53, 0x35, + 0x42, 0x46, 0x46, 0x23, 0x32, 0x37, 0x37, 0x1b, + 0x2b, 0x30, 0x30, 0x0d, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2b, 0x2b, 0x35, 0x04, 0x2b, 0x31, 0x33, 0x1a, + 0x2b, 0x32, 0x33, 0x4a, 0x31, 0x37, 0x37, 0x89, + 0x39, 0x3e, 0x3e, 0x97, 0x4a, 0x4e, 0x4d, 0x76, + 0x51, 0x55, 0x53, 0x5e, 0x4b, 0x4f, 0x4e, 0x4a, + 0x34, 0x39, 0x3b, 0x38, 0x2b, 0x33, 0x33, 0x22, + 0x26, 0x2e, 0x2e, 0x0e, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2b, 0x2b, 0x35, 0x0d, 0x2d, 0x32, 0x34, 0x4c, + 0x2d, 0x33, 0x34, 0xcd, 0x38, 0x3c, 0x3c, 0xb9, + 0x48, 0x4c, 0x4b, 0x9e, 0x62, 0x66, 0x62, 0x83, + 0x4b, 0x4e, 0x4d, 0x72, 0x39, 0x3c, 0x3d, 0x64, + 0x2c, 0x32, 0x35, 0x53, 0x28, 0x32, 0x34, 0x1f, + 0x22, 0x32, 0x32, 0x08, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x29, 0x33, 0x33, 0x03, 0x29, 0x33, 0x33, 0x0e, + 0x2c, 0x32, 0x35, 0x6a, 0x31, 0x36, 0x38, 0xb6, + 0x39, 0x3c, 0x3d, 0xd9, 0x4c, 0x4f, 0x4e, 0xc4, + 0x54, 0x56, 0x54, 0xad, 0x49, 0x4c, 0x4b, 0x99, + 0x39, 0x3d, 0x3e, 0x8e, 0x30, 0x36, 0x37, 0x62, + 0x29, 0x32, 0x34, 0x26, 0x27, 0x32, 0x34, 0x0d, + 0x22, 0x33, 0x33, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2b, 0x30, 0x35, 0x08, + 0x2b, 0x31, 0x34, 0x23, 0x2c, 0x32, 0x34, 0x5f, + 0x31, 0x37, 0x39, 0xba, 0x3a, 0x3e, 0x3f, 0xed, + 0x4b, 0x4e, 0x4d, 0xdf, 0x53, 0x55, 0x53, 0xcd, + 0x4d, 0x50, 0x4e, 0xbd, 0x38, 0x3c, 0x3c, 0xad, + 0x31, 0x36, 0x38, 0x7e, 0x2c, 0x32, 0x34, 0x43, + 0x22, 0x33, 0x33, 0x08, 0x22, 0x33, 0x33, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2c, 0x33, 0x35, 0x01, 0x2c, 0x33, 0x35, 0x03, + 0x2c, 0x33, 0x35, 0x05, 0x2d, 0x33, 0x35, 0x06, + 0x2e, 0x33, 0x35, 0x07, 0x2e, 0x33, 0x35, 0x07, + 0x2d, 0x33, 0x35, 0x07, 0x2c, 0x33, 0x35, 0x05, + 0x2c, 0x33, 0x35, 0x04, 0x2b, 0x30, 0x35, 0x1e, + 0x2c, 0x32, 0x35, 0x61, 0x2d, 0x33, 0x35, 0xea, + 0x39, 0x3d, 0x3d, 0xf7, 0x4a, 0x4d, 0x4c, 0xef, + 0x61, 0x64, 0x61, 0xe3, 0x4c, 0x4e, 0x4d, 0xd7, + 0x39, 0x3c, 0x3d, 0xca, 0x2d, 0x32, 0x34, 0xb9, + 0x2c, 0x30, 0x35, 0x42, 0x28, 0x28, 0x36, 0x0a, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2c, 0x33, 0x35, 0x1c, 0x2c, 0x33, 0x35, 0x55, + 0x2c, 0x33, 0x35, 0x7f, 0x2d, 0x33, 0x35, 0x9d, + 0x2e, 0x33, 0x35, 0xb0, 0x2e, 0x33, 0x35, 0xb0, + 0x2d, 0x33, 0x35, 0xa1, 0x2c, 0x33, 0x35, 0x87, + 0x2c, 0x33, 0x35, 0x5d, 0x2d, 0x33, 0x35, 0x8f, + 0x31, 0x36, 0x38, 0xd1, 0x39, 0x3d, 0x3e, 0xf7, + 0x4d, 0x50, 0x4f, 0xf9, 0x55, 0x59, 0x56, 0xf3, + 0x49, 0x4d, 0x4c, 0xea, 0x3a, 0x3e, 0x3f, 0xe2, + 0x31, 0x36, 0x37, 0xaa, 0x2b, 0x31, 0x33, 0x44, + 0x2a, 0x30, 0x33, 0x17, 0x28, 0x28, 0x36, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x29, 0x31, 0x31, 0x03, + 0x29, 0x31, 0x31, 0x0c, 0x2d, 0x32, 0x34, 0x39, + 0x3b, 0x40, 0x41, 0x70, 0x48, 0x4d, 0x4d, 0xae, + 0x4d, 0x52, 0x50, 0xd1, 0x4e, 0x53, 0x51, 0xe9, + 0x4d, 0x51, 0x50, 0xf9, 0x4d, 0x51, 0x50, 0xf9, + 0x4d, 0x51, 0x50, 0xed, 0x4c, 0x52, 0x50, 0xd7, + 0x47, 0x4d, 0x4b, 0xb4, 0x3b, 0x40, 0x41, 0xd8, + 0x3a, 0x3f, 0x3f, 0xfe, 0x4c, 0x4f, 0x4e, 0xfd, + 0x52, 0x56, 0x53, 0xfb, 0x4d, 0x50, 0x4f, 0xf7, + 0x38, 0x3d, 0x3d, 0xf2, 0x32, 0x37, 0x38, 0xb2, + 0x2d, 0x32, 0x34, 0x64, 0x21, 0x2c, 0x2c, 0x0d, + 0x1f, 0x29, 0x29, 0x04, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2b, 0x31, 0x32, 0x0d, + 0x2b, 0x31, 0x32, 0x2d, 0x34, 0x39, 0x3a, 0x97, + 0x44, 0x48, 0x48, 0xde, 0x5c, 0x60, 0x5e, 0xff, + 0x6c, 0x6f, 0x6a, 0xff, 0x74, 0x76, 0x71, 0xff, + 0x75, 0x77, 0x72, 0xff, 0x74, 0x76, 0x72, 0xff, + 0x72, 0x75, 0x70, 0xff, 0x6c, 0x6f, 0x6a, 0xff, + 0x5b, 0x5e, 0x5b, 0xff, 0x4c, 0x50, 0x4e, 0xff, + 0x4a, 0x4d, 0x4b, 0xff, 0x5e, 0x61, 0x5e, 0xff, + 0x4c, 0x4f, 0x4e, 0xfd, 0x39, 0x3d, 0x3e, 0xf6, + 0x2d, 0x33, 0x35, 0xe4, 0x2c, 0x31, 0x34, 0x5c, + 0x29, 0x29, 0x33, 0x0e, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2d, 0x32, 0x34, 0x2e, + 0x2d, 0x32, 0x34, 0x9e, 0x53, 0x57, 0x55, 0xd7, + 0x61, 0x64, 0x60, 0xf7, 0x61, 0x64, 0x61, 0xff, + 0x58, 0x5b, 0x57, 0xff, 0x53, 0x56, 0x52, 0xff, + 0x51, 0x54, 0x51, 0xff, 0x50, 0x53, 0x51, 0xff, + 0x53, 0x56, 0x54, 0xff, 0x56, 0x59, 0x57, 0xff, + 0x51, 0x54, 0x52, 0xff, 0x56, 0x5a, 0x57, 0xff, + 0x58, 0x5b, 0x58, 0xff, 0x4a, 0x4d, 0x4b, 0xff, + 0x3a, 0x3f, 0x3f, 0xfe, 0x31, 0x36, 0x38, 0xcb, + 0x2c, 0x33, 0x34, 0x4f, 0x2b, 0x31, 0x33, 0x1d, + 0x20, 0x20, 0x27, 0x04, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2c, 0x33, 0x35, 0x20, 0x3b, 0x40, 0x41, 0x66, + 0x44, 0x49, 0x48, 0xdc, 0x5c, 0x5f, 0x5c, 0xf5, + 0x61, 0x64, 0x60, 0xff, 0x55, 0x58, 0x55, 0xff, + 0x4b, 0x4e, 0x4c, 0xff, 0x47, 0x4a, 0x48, 0xff, + 0x46, 0x4a, 0x48, 0xff, 0x47, 0x4a, 0x49, 0xff, + 0x4a, 0x4e, 0x4d, 0xff, 0x4f, 0x52, 0x51, 0xff, + 0x50, 0x54, 0x52, 0xff, 0x52, 0x55, 0x53, 0xff, + 0x50, 0x53, 0x51, 0xff, 0x46, 0x49, 0x49, 0xff, + 0x38, 0x3d, 0x3e, 0xd8, 0x2d, 0x33, 0x35, 0x8c, + 0x28, 0x30, 0x31, 0x13, 0x1c, 0x24, 0x24, 0x06, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2c, 0x33, 0x35, 0x4c, 0x41, 0x46, 0x46, 0xa4, + 0x5b, 0x5f, 0x5d, 0xfb, 0x5d, 0x60, 0x5e, 0xff, + 0x55, 0x58, 0x56, 0xff, 0x44, 0x48, 0x46, 0xff, + 0x45, 0x48, 0x47, 0xff, 0x46, 0x4a, 0x48, 0xff, + 0x48, 0x4c, 0x4a, 0xff, 0x4a, 0x4e, 0x4c, 0xff, + 0x4d, 0x50, 0x4f, 0xff, 0x4f, 0x52, 0x51, 0xff, + 0x51, 0x54, 0x52, 0xff, 0x47, 0x4a, 0x48, 0xff, + 0x41, 0x45, 0x44, 0xff, 0x4d, 0x51, 0x50, 0xff, + 0x40, 0x45, 0x45, 0xb5, 0x2b, 0x31, 0x33, 0x5e, + 0x19, 0x1c, 0x1e, 0x07, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2c, 0x33, 0x35, 0x6f, 0x43, 0x48, 0x48, 0xcf, + 0x6b, 0x6e, 0x6b, 0xfc, 0x57, 0x5a, 0x57, 0xff, + 0x48, 0x4b, 0x4a, 0xff, 0x42, 0x45, 0x45, 0xff, + 0x4a, 0x4d, 0x4c, 0xff, 0x4d, 0x50, 0x4f, 0xff, + 0x4c, 0x50, 0x4e, 0xff, 0x4d, 0x50, 0x4e, 0xff, + 0x4f, 0x52, 0x50, 0xff, 0x4f, 0x53, 0x51, 0xff, + 0x45, 0x49, 0x48, 0xff, 0x3c, 0x40, 0x40, 0xff, + 0x3f, 0x44, 0x43, 0xff, 0x5f, 0x61, 0x5e, 0xff, + 0x46, 0x4a, 0x4a, 0xd8, 0x2b, 0x31, 0x34, 0x8a, + 0x13, 0x15, 0x17, 0x0d, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2d, 0x33, 0x34, 0x85, 0x42, 0x47, 0x47, 0xe9, + 0x70, 0x71, 0x6e, 0xfe, 0x53, 0x56, 0x54, 0xff, + 0x42, 0x46, 0x45, 0xff, 0x42, 0x45, 0x45, 0xff, + 0x47, 0x4b, 0x4a, 0xff, 0x4a, 0x4e, 0x4c, 0xff, + 0x4b, 0x4f, 0x4d, 0xff, 0x4d, 0x50, 0x4e, 0xff, + 0x4a, 0x4e, 0x4c, 0xff, 0x44, 0x48, 0x47, 0xff, + 0x3a, 0x3f, 0x3f, 0xff, 0x37, 0x3c, 0x3c, 0xff, + 0x41, 0x45, 0x44, 0xff, 0x63, 0x66, 0x62, 0xff, + 0x46, 0x4a, 0x4a, 0xed, 0x2b, 0x31, 0x33, 0xa6, + 0x0f, 0x11, 0x12, 0x14, 0x00, 0x00, 0x00, 0x0e, + 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x0f, + 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x2d, 0x32, 0x34, 0x92, 0x41, 0x45, 0x45, 0xf7, + 0x70, 0x71, 0x6d, 0xfe, 0x50, 0x54, 0x52, 0xff, + 0x3f, 0x44, 0x43, 0xff, 0x40, 0x45, 0x44, 0xff, + 0x42, 0x47, 0x46, 0xff, 0x45, 0x4a, 0x48, 0xff, + 0x47, 0x4c, 0x4a, 0xff, 0x4a, 0x4e, 0x4c, 0xff, + 0x42, 0x47, 0x46, 0xff, 0x37, 0x3d, 0x3d, 0xff, + 0x33, 0x38, 0x38, 0xff, 0x35, 0x3a, 0x3a, 0xff, + 0x42, 0x46, 0x45, 0xff, 0x63, 0x66, 0x62, 0xff, + 0x45, 0x49, 0x49, 0xf9, 0x2b, 0x31, 0x33, 0xb6, + 0x0c, 0x0e, 0x0f, 0x1a, 0x00, 0x00, 0x00, 0x12, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, + 0x2d, 0x32, 0x34, 0x92, 0x40, 0x45, 0x45, 0xf7, + 0x6d, 0x70, 0x6b, 0xfe, 0x4e, 0x52, 0x50, 0xff, + 0x3d, 0x41, 0x41, 0xff, 0x3d, 0x41, 0x41, 0xff, + 0x3e, 0x43, 0x42, 0xff, 0x40, 0x44, 0x44, 0xff, + 0x41, 0x46, 0x45, 0xff, 0x43, 0x48, 0x47, 0xff, + 0x3b, 0x40, 0x3f, 0xff, 0x32, 0x36, 0x37, 0xff, + 0x34, 0x39, 0x3a, 0xff, 0x35, 0x3a, 0x3b, 0xff, + 0x40, 0x45, 0x44, 0xff, 0x61, 0x64, 0x60, 0xff, + 0x44, 0x49, 0x48, 0xf9, 0x2b, 0x31, 0x32, 0xb7, + 0x0a, 0x0c, 0x0c, 0x20, 0x00, 0x00, 0x00, 0x15, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0e, + 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x09, + 0x2a, 0x30, 0x32, 0x88, 0x3f, 0x44, 0x44, 0xe8, + 0x69, 0x6c, 0x68, 0xfe, 0x4d, 0x51, 0x4f, 0xff, + 0x3c, 0x41, 0x41, 0xff, 0x3b, 0x3f, 0x3f, 0xff, + 0x3c, 0x41, 0x41, 0xff, 0x3d, 0x42, 0x41, 0xff, + 0x3d, 0x42, 0x42, 0xff, 0x3d, 0x42, 0x42, 0xff, + 0x36, 0x3b, 0x3c, 0xff, 0x30, 0x35, 0x36, 0xff, + 0x34, 0x38, 0x39, 0xff, 0x35, 0x3a, 0x3b, 0xff, + 0x3f, 0x44, 0x43, 0xff, 0x5d, 0x60, 0x5c, 0xff, + 0x43, 0x47, 0x47, 0xed, 0x29, 0x2e, 0x31, 0xaa, + 0x08, 0x09, 0x09, 0x24, 0x00, 0x00, 0x00, 0x17, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x11, + 0x26, 0x2c, 0x2e, 0x78, 0x3c, 0x41, 0x42, 0xd0, + 0x60, 0x63, 0x60, 0xfc, 0x4e, 0x52, 0x50, 0xff, + 0x40, 0x44, 0x43, 0xff, 0x39, 0x3d, 0x3d, 0xff, + 0x39, 0x3e, 0x3e, 0xff, 0x39, 0x3e, 0x3f, 0xff, + 0x38, 0x3d, 0x3e, 0xff, 0x37, 0x3c, 0x3d, 0xff, + 0x33, 0x38, 0x3a, 0xff, 0x30, 0x35, 0x37, 0xff, + 0x32, 0x37, 0x38, 0xff, 0x38, 0x3d, 0x3d, 0xff, + 0x43, 0x47, 0x46, 0xff, 0x56, 0x59, 0x56, 0xff, + 0x3f, 0x44, 0x43, 0xda, 0x25, 0x2b, 0x2d, 0x95, + 0x06, 0x06, 0x07, 0x28, 0x00, 0x00, 0x00, 0x18, + 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x1a, + 0x1f, 0x24, 0x26, 0x62, 0x35, 0x3a, 0x3b, 0xb0, + 0x4f, 0x52, 0x51, 0xfb, 0x52, 0x55, 0x53, 0xff, + 0x4a, 0x4d, 0x4c, 0xff, 0x37, 0x3c, 0x3c, 0xff, + 0x35, 0x3b, 0x3c, 0xff, 0x34, 0x3a, 0x3b, 0xff, + 0x34, 0x39, 0x3a, 0xff, 0x32, 0x37, 0x39, 0xff, + 0x31, 0x37, 0x38, 0xff, 0x30, 0x36, 0x37, 0xff, + 0x31, 0x36, 0x38, 0xff, 0x3f, 0x43, 0x43, 0xff, + 0x4b, 0x4f, 0x4d, 0xff, 0x4a, 0x4e, 0x4c, 0xff, + 0x38, 0x3c, 0x3c, 0xc0, 0x1f, 0x24, 0x25, 0x77, + 0x03, 0x04, 0x04, 0x2b, 0x00, 0x00, 0x00, 0x1a, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x1e, + 0x0f, 0x12, 0x13, 0x41, 0x25, 0x2a, 0x2b, 0x7f, + 0x37, 0x3c, 0x3d, 0xe0, 0x4d, 0x51, 0x4f, 0xf6, + 0x52, 0x55, 0x53, 0xff, 0x47, 0x4a, 0x49, 0xff, + 0x3b, 0x3f, 0x40, 0xff, 0x34, 0x3a, 0x3a, 0xff, + 0x31, 0x37, 0x38, 0xff, 0x31, 0x36, 0x38, 0xff, + 0x31, 0x37, 0x38, 0xff, 0x34, 0x3a, 0x3b, 0xff, + 0x3f, 0x43, 0x43, 0xff, 0x49, 0x4d, 0x4b, 0xff, + 0x4b, 0x4e, 0x4c, 0xf9, 0x38, 0x3d, 0x3e, 0xe7, + 0x29, 0x2d, 0x2e, 0x92, 0x10, 0x13, 0x13, 0x4b, + 0x01, 0x01, 0x01, 0x28, 0x00, 0x00, 0x00, 0x19, + 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x1e, + 0x00, 0x00, 0x00, 0x2e, 0x13, 0x16, 0x18, 0x58, + 0x24, 0x29, 0x2b, 0xa8, 0x40, 0x44, 0x44, 0xd9, + 0x4c, 0x4f, 0x4e, 0xf5, 0x4e, 0x51, 0x4f, 0xff, + 0x47, 0x4a, 0x49, 0xff, 0x42, 0x46, 0x45, 0xff, + 0x41, 0x45, 0x44, 0xff, 0x40, 0x44, 0x44, 0xff, + 0x40, 0x44, 0x44, 0xff, 0x41, 0x46, 0x45, 0xff, + 0x48, 0x4b, 0x4a, 0xff, 0x48, 0x4b, 0x4a, 0xf7, + 0x41, 0x44, 0x44, 0xe1, 0x28, 0x2e, 0x30, 0xb1, + 0x18, 0x1c, 0x1e, 0x66, 0x00, 0x00, 0x00, 0x31, + 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x19, + 0x00, 0x00, 0x00, 0x29, 0x05, 0x07, 0x07, 0x3c, + 0x0e, 0x11, 0x11, 0x54, 0x25, 0x29, 0x2c, 0xa7, + 0x36, 0x3a, 0x3b, 0xe0, 0x4a, 0x4e, 0x4c, 0xfb, + 0x56, 0x59, 0x56, 0xfd, 0x5c, 0x5e, 0x5a, 0xfe, + 0x5e, 0x5f, 0x5b, 0xfe, 0x5c, 0x5f, 0x5b, 0xfe, + 0x5a, 0x5d, 0x59, 0xfe, 0x55, 0x58, 0x54, 0xfd, + 0x49, 0x4d, 0x4b, 0xfb, 0x39, 0x3c, 0x3d, 0xe5, + 0x27, 0x2b, 0x2e, 0xb6, 0x14, 0x17, 0x18, 0x5f, + 0x08, 0x09, 0x09, 0x3d, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x11, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0f, + 0x00, 0x00, 0x00, 0x1b, 0x02, 0x03, 0x03, 0x28, + 0x06, 0x07, 0x07, 0x36, 0x16, 0x19, 0x1a, 0x50, + 0x27, 0x2b, 0x2c, 0x78, 0x34, 0x39, 0x39, 0xae, + 0x39, 0x3d, 0x3e, 0xd1, 0x3b, 0x3f, 0x40, 0xe9, + 0x3a, 0x40, 0x40, 0xf9, 0x3a, 0x40, 0x40, 0xf9, + 0x3a, 0x3f, 0x3f, 0xed, 0x39, 0x3d, 0x3d, 0xd7, + 0x34, 0x38, 0x39, 0xb4, 0x2a, 0x2e, 0x2f, 0x81, + 0x19, 0x1c, 0x1d, 0x52, 0x0a, 0x0c, 0x0c, 0x36, + 0x03, 0x04, 0x04, 0x27, 0x00, 0x00, 0x00, 0x1b, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0a, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x17, + 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x21, + 0x13, 0x16, 0x16, 0x36, 0x21, 0x26, 0x27, 0x5c, + 0x27, 0x2b, 0x2e, 0x78, 0x29, 0x2e, 0x31, 0x8d, + 0x29, 0x30, 0x32, 0x99, 0x29, 0x30, 0x32, 0x99, + 0x29, 0x2f, 0x31, 0x8f, 0x28, 0x2c, 0x2f, 0x7e, + 0x22, 0x28, 0x29, 0x61, 0x17, 0x1b, 0x1c, 0x3b, + 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1b, + 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x0f, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0f, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x0f, + 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x2d, 0x72, 0x6f, + 0x74, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x6e, 0x67, + 0x18, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x10, 0x18, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x80, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x21, 0x56, 0xa4, 0x51, 0x20, 0x54, 0xa1, 0xaa, + 0x1e, 0x52, 0x9f, 0xa6, 0x1d, 0x50, 0x9d, 0xa3, + 0x1d, 0x4f, 0x9b, 0xa0, 0x1c, 0x4e, 0x99, 0x9e, + 0x1b, 0x4d, 0x97, 0x9c, 0x1b, 0x4c, 0x96, 0x9b, + 0x1a, 0x4b, 0x95, 0x9a, 0x1a, 0x4a, 0x94, 0x99, + 0x19, 0x4a, 0x93, 0x99, 0x19, 0x49, 0x92, 0x99, + 0x18, 0x49, 0x92, 0x9a, 0x18, 0x49, 0x93, 0x9c, + 0x18, 0x4a, 0x93, 0x9e, 0x18, 0x4a, 0x94, 0xa1, + 0x19, 0x4b, 0x95, 0x1c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x54, 0xa2, 0xab, 0x28, 0x5b, 0xa7, 0xff, + 0x3d, 0x71, 0xb9, 0xff, 0x3d, 0x71, 0xb6, 0xff, + 0x3c, 0x6f, 0xb4, 0xff, 0x3b, 0x6e, 0xb2, 0xff, + 0x3b, 0x6d, 0xb1, 0xff, 0x3a, 0x6c, 0xb1, 0xff, + 0x3a, 0x6b, 0xaf, 0xff, 0x3b, 0x6a, 0xae, 0xff, + 0x3a, 0x6a, 0xad, 0xff, 0x39, 0x69, 0xad, 0xff, + 0x39, 0x69, 0xac, 0xff, 0x39, 0x69, 0xad, 0xff, + 0x32, 0x62, 0xa6, 0xff, 0x1a, 0x4a, 0x92, 0xff, + 0x17, 0x48, 0x91, 0x57, 0x34, 0x65, 0xa4, 0x00, + 0x34, 0x71, 0xbe, 0x28, 0x34, 0x71, 0xbf, 0x2e, + 0x34, 0x71, 0xc0, 0x30, 0x34, 0x70, 0xbf, 0x30, + 0x34, 0x71, 0xc0, 0x16, 0x34, 0x64, 0xa3, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x1f, 0x53, 0xa0, 0xa8, 0x3d, 0x72, 0xb9, 0xff, + 0x8d, 0xc2, 0xfc, 0xff, 0x8f, 0xc5, 0xfc, 0xff, + 0x8e, 0xc3, 0xfb, 0xff, 0x8d, 0xc2, 0xf9, 0xff, + 0x8e, 0xc2, 0xf7, 0xff, 0x8d, 0xc1, 0xf7, 0xff, + 0x8c, 0xc1, 0xf5, 0xff, 0x8d, 0xc0, 0xf4, 0xff, + 0x8c, 0xc0, 0xf3, 0xff, 0x8c, 0xbf, 0xf2, 0xff, + 0x8b, 0xbf, 0xf2, 0xff, 0x8b, 0xbf, 0xf3, 0xff, + 0x72, 0xa4, 0xdd, 0xff, 0x1f, 0x4f, 0x96, 0xff, + 0x15, 0x45, 0x8d, 0x52, 0x32, 0x6e, 0xba, 0x21, + 0x32, 0x6e, 0xba, 0xff, 0x32, 0x6e, 0xbb, 0xff, + 0x32, 0x6e, 0xbc, 0xff, 0x32, 0x6d, 0xbb, 0xff, + 0x32, 0x6e, 0xbd, 0xcd, 0x32, 0x6e, 0xbe, 0x4b, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x1e, 0x52, 0x9e, 0xa5, 0x3c, 0x70, 0xb6, 0xff, + 0x8b, 0xc1, 0xf9, 0xff, 0x7a, 0xb1, 0xee, 0xff, + 0x70, 0xa6, 0xe5, 0xff, 0x6e, 0xa5, 0xe3, 0xff, + 0x6d, 0xa4, 0xdf, 0xff, 0x6e, 0xa2, 0xde, 0xff, + 0x6d, 0xa1, 0xdc, 0xff, 0x6c, 0xa0, 0xda, 0xff, + 0x6b, 0x9f, 0xd9, 0xff, 0x6b, 0x9f, 0xd8, 0xff, + 0x6a, 0x9e, 0xd8, 0xff, 0x7b, 0xaf, 0xe5, 0xff, + 0x6e, 0xa1, 0xd9, 0xff, 0x1d, 0x4c, 0x92, 0xff, + 0x13, 0x42, 0x8a, 0x4d, 0x31, 0x6b, 0xb6, 0x20, + 0x30, 0x6b, 0xb7, 0xff, 0xb3, 0xce, 0xf2, 0xff, + 0xf7, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, + 0x6d, 0x9b, 0xd5, 0xff, 0x30, 0x6b, 0xba, 0xc4, + 0x30, 0x6c, 0xbb, 0x4d, 0x34, 0x64, 0xa3, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x1e, 0x50, 0x9c, 0xa2, 0x3a, 0x6e, 0xb4, 0xff, + 0x84, 0xb9, 0xf3, 0xff, 0x6c, 0xa4, 0xe1, 0xff, + 0x5d, 0x94, 0xd5, 0xff, 0x5c, 0x93, 0xd3, 0xff, + 0x5b, 0x91, 0xd1, 0xff, 0x5b, 0x90, 0xcd, 0xff, + 0x5a, 0x8f, 0xcc, 0xff, 0x59, 0x8e, 0xca, 0xff, + 0x58, 0x8b, 0xc9, 0xff, 0x57, 0x8a, 0xc8, 0xff, + 0x57, 0x8a, 0xc8, 0xff, 0x6d, 0xa2, 0xda, 0xff, + 0x68, 0x9b, 0xd4, 0xff, 0x1c, 0x4a, 0x8f, 0xff, + 0x11, 0x40, 0x86, 0x49, 0x2f, 0x67, 0xb1, 0x0c, + 0x2f, 0x67, 0xb2, 0xf3, 0xba, 0xd2, 0xf2, 0xff, + 0xfa, 0xff, 0xff, 0xff, 0xf2, 0xfe, 0xff, 0xff, + 0xb0, 0xcd, 0xf1, 0xff, 0x73, 0x9f, 0xd6, 0xff, + 0x2e, 0x69, 0xb8, 0xc1, 0x2e, 0x6a, 0xb9, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x1d, 0x4f, 0x9b, 0xa0, 0x38, 0x6b, 0xb1, 0xff, + 0x7d, 0xb4, 0xee, 0xff, 0x68, 0xa0, 0xde, 0xff, + 0x5b, 0x92, 0xd2, 0xff, 0x5a, 0x90, 0xcf, 0xff, + 0x59, 0x8e, 0xcd, 0xff, 0x58, 0x8d, 0xcb, 0xff, + 0x57, 0x8c, 0xc8, 0xff, 0x56, 0x8a, 0xc6, 0xff, + 0x56, 0x88, 0xc5, 0xff, 0x53, 0x86, 0xc2, 0xff, + 0x53, 0x87, 0xc2, 0xff, 0x69, 0x9b, 0xd4, 0xff, + 0x64, 0x95, 0xce, 0xff, 0x19, 0x48, 0x8b, 0xff, + 0x10, 0x3e, 0x83, 0x45, 0x33, 0x64, 0xa3, 0x00, + 0x2b, 0x65, 0xaf, 0x91, 0x2b, 0x65, 0xaf, 0xe6, + 0x2b, 0x65, 0xb0, 0xff, 0x35, 0x6d, 0xb6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf1, 0xff, 0xff, + 0x2c, 0x69, 0xb6, 0xff, 0x2c, 0x69, 0xb8, 0x1e, + 0x34, 0x65, 0xa4, 0x00, 0x34, 0x65, 0xa4, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x1c, 0x4e, 0x99, 0x9e, 0x36, 0x68, 0xae, 0xff, + 0x78, 0xae, 0xea, 0xff, 0x66, 0x9b, 0xda, 0xff, + 0x5a, 0x90, 0xd0, 0xff, 0x59, 0x8f, 0xcd, 0xff, + 0x58, 0x8d, 0xcb, 0xff, 0x57, 0x8c, 0xc9, 0xff, + 0x56, 0x8a, 0xc6, 0xff, 0x55, 0x89, 0xc4, 0xff, + 0x3e, 0x6e, 0xac, 0xff, 0x22, 0x51, 0x91, 0xff, + 0x22, 0x50, 0x91, 0xff, 0x4e, 0x7f, 0xb9, 0xff, + 0x5e, 0x8f, 0xc9, 0xff, 0x18, 0x44, 0x87, 0xff, + 0x0e, 0x3c, 0x81, 0x41, 0x2b, 0x63, 0xab, 0x03, + 0x2a, 0x63, 0xac, 0xe4, 0x2a, 0x63, 0xad, 0xff, + 0x29, 0x63, 0xae, 0xff, 0x34, 0x6b, 0xb3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdf, 0xef, 0xff, 0xff, + 0x2b, 0x67, 0xb4, 0xff, 0x2b, 0x68, 0xb5, 0xe7, + 0x2c, 0x69, 0xb7, 0xd3, 0x2c, 0x69, 0xb8, 0xd6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x1b, 0x4d, 0x98, 0x9c, 0x33, 0x66, 0xac, 0xff, + 0x72, 0xa7, 0xe4, 0xff, 0x62, 0x99, 0xd7, 0xff, + 0x59, 0x8e, 0xcd, 0xff, 0x58, 0x8c, 0xca, 0xff, + 0x57, 0x8a, 0xc8, 0xff, 0x56, 0x89, 0xc6, 0xff, + 0x52, 0x84, 0xc1, 0xff, 0x3e, 0x70, 0xad, 0xff, + 0x3c, 0x6a, 0xa7, 0xff, 0x41, 0x6d, 0xa9, 0xff, + 0x40, 0x6d, 0xa8, 0xff, 0x44, 0x73, 0xae, 0xff, + 0x3c, 0x6a, 0xa7, 0xff, 0x12, 0x3e, 0x82, 0xff, + 0x0d, 0x3a, 0x7e, 0x3e, 0x2a, 0x61, 0xa9, 0x0e, + 0x29, 0x61, 0xaa, 0xff, 0x7d, 0xa2, 0xd0, 0xff, + 0xa7, 0xc2, 0xe5, 0xff, 0xab, 0xc5, 0xe7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa5, 0xc3, 0xe8, 0xff, 0xa5, 0xc4, 0xea, 0xff, + 0x6b, 0x99, 0xd2, 0xff, 0x2b, 0x68, 0xb7, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x19, 0x4a, 0x95, 0x9b, 0x31, 0x63, 0xa9, 0xff, + 0x6b, 0xa1, 0xdf, 0xff, 0x61, 0x96, 0xd4, 0xff, + 0x58, 0x8c, 0xcb, 0xff, 0x57, 0x8b, 0xc9, 0xff, + 0x56, 0x89, 0xc6, 0xff, 0x52, 0x85, 0xc1, 0xff, + 0x49, 0x79, 0xb6, 0xff, 0x25, 0x52, 0x91, 0xff, + 0x4d, 0x79, 0xb2, 0xff, 0x85, 0xb4, 0xe3, 0xff, + 0x84, 0xb4, 0xe2, 0xff, 0x4b, 0x77, 0xb1, 0xff, + 0x16, 0x41, 0x82, 0xff, 0x0d, 0x39, 0x7c, 0xff, + 0x0d, 0x39, 0x7c, 0x3b, 0x2a, 0x62, 0xa9, 0x03, + 0x2a, 0x62, 0xaa, 0xf5, 0xe4, 0xef, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc3, 0xda, 0xf8, 0xff, 0x2b, 0x68, 0xb6, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x17, 0x49, 0x93, 0x9a, 0x2e, 0x60, 0xa6, 0xff, + 0x63, 0x9b, 0xda, 0xff, 0x63, 0x99, 0xd7, 0xff, + 0x60, 0x96, 0xd3, 0xff, 0x61, 0x94, 0xd2, 0xff, + 0x60, 0x92, 0xcf, 0xff, 0x44, 0x76, 0xb4, 0xff, + 0x25, 0x52, 0x92, 0xff, 0x5d, 0x8b, 0xc1, 0xff, + 0x69, 0x99, 0xcd, 0xff, 0x63, 0x93, 0xcb, 0xff, + 0x63, 0x94, 0xca, 0xff, 0x68, 0x97, 0xcc, 0xff, + 0x58, 0x84, 0xba, 0xff, 0x15, 0x41, 0x82, 0xff, + 0x0c, 0x38, 0x7b, 0x38, 0x34, 0x65, 0xa4, 0x00, + 0x34, 0x65, 0xa4, 0x00, 0x64, 0x8e, 0xc3, 0xbe, + 0xbc, 0xd2, 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa0, 0xc0, 0xe7, 0xff, + 0x62, 0x91, 0xcd, 0xaf, 0x2b, 0x68, 0xb6, 0x13, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x16, 0x47, 0x90, 0x9a, 0x21, 0x53, 0x9a, 0xff, + 0x3c, 0x70, 0xb4, 0xff, 0x3c, 0x71, 0xb2, 0xff, + 0x3d, 0x6f, 0xaf, 0xff, 0x3c, 0x6c, 0xae, 0xff, + 0x3b, 0x6c, 0xac, 0xff, 0x40, 0x6f, 0xad, 0xff, + 0x4c, 0x7a, 0xb3, 0xff, 0x66, 0x96, 0xcc, 0xff, + 0x62, 0x94, 0xcb, 0xff, 0x55, 0x87, 0xc1, 0xff, + 0x55, 0x86, 0xc0, 0xff, 0x64, 0x94, 0xcb, 0xff, + 0x66, 0x95, 0xcb, 0xff, 0x4a, 0x76, 0xaf, 0xff, + 0x2d, 0x5a, 0x98, 0xa1, 0x0c, 0x38, 0x7b, 0x1f, + 0x20, 0x4a, 0x87, 0x00, 0x29, 0x61, 0xa9, 0x2a, + 0x79, 0x9e, 0xce, 0xb1, 0xce, 0xe1, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc3, 0xd9, 0xf5, 0xff, 0x62, 0x91, 0xcb, 0xac, + 0x2b, 0x68, 0xb5, 0x28, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x13, 0x42, 0x86, 0x7d, 0x14, 0x43, 0x89, 0xf9, + 0x13, 0x41, 0x86, 0xf6, 0x12, 0x3d, 0x81, 0xf1, + 0x11, 0x3d, 0x82, 0xff, 0x11, 0x3e, 0x84, 0xff, + 0x1e, 0x4b, 0x8d, 0xff, 0x49, 0x76, 0xb2, 0xff, + 0x7b, 0xac, 0xdf, 0xff, 0x5b, 0x8c, 0xc6, 0xff, + 0x50, 0x83, 0xbe, 0xff, 0x51, 0x82, 0xbd, 0xff, + 0x52, 0x83, 0xbe, 0xff, 0x52, 0x83, 0xc0, 0xff, + 0x5c, 0x8e, 0xc6, 0xff, 0x7a, 0xab, 0xdc, 0xff, + 0x45, 0x74, 0xad, 0xff, 0x1e, 0x4a, 0x8a, 0xc1, + 0x22, 0x4c, 0x88, 0x00, 0x20, 0x4a, 0x87, 0x00, + 0x2a, 0x62, 0xab, 0x17, 0x33, 0x69, 0xb0, 0xf1, + 0xeb, 0xf6, 0xff, 0xff, 0xcd, 0xe1, 0xf9, 0xff, + 0x2b, 0x67, 0xb3, 0xdb, 0x2c, 0x68, 0xb5, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x0f, 0x24, 0x43, 0x00, 0x00, 0x16, 0x3a, 0x13, + 0x00, 0x11, 0x2f, 0x14, 0x00, 0x0b, 0x27, 0x17, + 0x08, 0x2b, 0x60, 0x72, 0x14, 0x41, 0x85, 0xff, + 0x5a, 0x89, 0xc2, 0xff, 0x68, 0x9a, 0xd2, 0xff, + 0x54, 0x87, 0xc4, 0xff, 0x4f, 0x81, 0xbf, 0xff, + 0x4d, 0x7f, 0xbc, 0xff, 0x4c, 0x7f, 0xbb, 0xff, + 0x4f, 0x7f, 0xbc, 0xff, 0x4f, 0x81, 0xbe, 0xff, + 0x50, 0x84, 0xc0, 0xff, 0x57, 0x8a, 0xc5, 0xff, + 0x69, 0x9a, 0xcf, 0xff, 0x5b, 0x89, 0xc0, 0xff, + 0x10, 0x3d, 0x81, 0xe6, 0x0d, 0x3a, 0x7f, 0x13, + 0x34, 0x65, 0xa4, 0x00, 0x39, 0x69, 0xa6, 0x00, + 0x57, 0x87, 0xc4, 0xd4, 0x56, 0x87, 0xc5, 0xb0, + 0x34, 0x65, 0xa4, 0x00, 0x34, 0x65, 0xa4, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x04, 0x24, 0x54, 0x57, + 0x2a, 0x56, 0x90, 0xbf, 0x51, 0x82, 0xbd, 0xff, + 0x5f, 0x91, 0xcd, 0xff, 0x59, 0x8d, 0xca, 0xff, + 0x48, 0x7d, 0xbd, 0xff, 0x49, 0x7c, 0xbb, 0xff, + 0x49, 0x7d, 0xba, 0xff, 0x4a, 0x7d, 0xbb, 0xff, + 0x4b, 0x7d, 0xba, 0xff, 0x4b, 0x7d, 0xbb, 0xff, + 0x4b, 0x7f, 0xbd, 0xff, 0x4d, 0x81, 0xbe, 0xff, + 0x5c, 0x91, 0xcb, 0xff, 0x61, 0x93, 0xcb, 0xff, + 0x50, 0x7f, 0xb9, 0xff, 0x2e, 0x5d, 0x9d, 0xaf, + 0x0f, 0x3d, 0x84, 0x2f, 0x34, 0x65, 0xa4, 0x00, + 0x2e, 0x68, 0xb4, 0x33, 0x2e, 0x6a, 0xb6, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x09, 0x22, 0x41, 0x12, 0x09, 0x20, 0x40, 0x22, + 0x01, 0x03, 0x05, 0x00, 0x08, 0x2d, 0x66, 0x91, + 0x33, 0x62, 0x9e, 0xf6, 0x6f, 0xa0, 0xd7, 0xff, + 0x5b, 0x90, 0xcc, 0xff, 0x4d, 0x83, 0xc3, 0xff, + 0x46, 0x7b, 0xbc, 0xff, 0x45, 0x7a, 0xba, 0xff, + 0x45, 0x7b, 0xb9, 0xff, 0x46, 0x7a, 0xba, 0xff, + 0x48, 0x7c, 0xb9, 0xff, 0x48, 0x7c, 0xba, 0xff, + 0x4a, 0x7e, 0xbc, 0xff, 0x4b, 0x80, 0xbd, 0xff, + 0x4c, 0x81, 0xc0, 0xff, 0x59, 0x8e, 0xcb, 0xff, + 0x7b, 0xae, 0xe3, 0xff, 0x46, 0x78, 0xb5, 0xff, + 0x29, 0x58, 0x9c, 0xc4, 0x11, 0x41, 0x89, 0x02, + 0x20, 0x4a, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x28, 0x5e, 0xa5, 0x92, 0x27, 0x5d, 0xa3, 0xbe, + 0x07, 0x0e, 0x17, 0x00, 0x00, 0x00, 0x00, 0x08, + 0x0c, 0x2c, 0x5b, 0x71, 0x1e, 0x4e, 0x91, 0xff, + 0x66, 0x98, 0xd1, 0xff, 0x69, 0x9d, 0xd7, 0xff, + 0x42, 0x77, 0xb9, 0xff, 0x41, 0x78, 0xb9, 0xff, + 0x41, 0x78, 0xba, 0xff, 0x43, 0x77, 0xb9, 0xff, + 0x45, 0x79, 0xbb, 0xff, 0x45, 0x7b, 0xbb, 0xff, + 0x47, 0x7c, 0xbc, 0xff, 0x49, 0x7e, 0xbf, 0xff, + 0x49, 0x7f, 0xc0, 0xff, 0x4c, 0x83, 0xc3, 0xff, + 0x51, 0x88, 0xc8, 0xff, 0x71, 0xa6, 0xdf, 0xff, + 0x5e, 0x91, 0xcc, 0xff, 0x14, 0x44, 0x8d, 0xff, + 0x15, 0x46, 0x90, 0x19, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x29, 0x51, 0x83, 0x00, 0x29, 0x61, 0xaa, 0x90, + 0xab, 0xc6, 0xec, 0xf6, 0xbb, 0xd3, 0xf2, 0xff, + 0x2e, 0x60, 0xa1, 0xad, 0x10, 0x2e, 0x56, 0x26, + 0x00, 0x0a, 0x26, 0x0c, 0x0c, 0x32, 0x6a, 0x62, + 0x39, 0x67, 0xa5, 0xe7, 0x54, 0x85, 0xc0, 0xff, + 0x69, 0x9c, 0xd6, 0xff, 0x48, 0x7e, 0xc0, 0xff, + 0x3f, 0x75, 0xb7, 0xff, 0x40, 0x76, 0xb9, 0xff, + 0x41, 0x78, 0xba, 0xff, 0x43, 0x79, 0xbb, 0xff, + 0x44, 0x7b, 0xbc, 0xff, 0x47, 0x7c, 0xbf, 0xff, + 0x48, 0x7e, 0xc1, 0xff, 0x48, 0x7f, 0xc2, 0xff, + 0x4a, 0x82, 0xc6, 0xff, 0x5d, 0x94, 0xd4, 0xff, + 0x63, 0x9a, 0xd8, 0xff, 0x5d, 0x91, 0xce, 0xff, + 0x34, 0x67, 0xac, 0xca, 0x16, 0x49, 0x95, 0x47, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x31, 0x60, 0x9c, 0x00, + 0x55, 0x88, 0xc8, 0x62, 0x80, 0xa8, 0xdd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x89, 0xae, 0xde, 0xff, 0x59, 0x80, 0xb5, 0x87, + 0x13, 0x35, 0x61, 0x11, 0x05, 0x0c, 0x16, 0x00, + 0x0a, 0x32, 0x70, 0x80, 0x38, 0x66, 0xa4, 0xe8, + 0x67, 0x99, 0xd1, 0xff, 0x58, 0x8d, 0xc9, 0xff, + 0x49, 0x7f, 0xc0, 0xff, 0x3e, 0x75, 0xb8, 0xff, + 0x40, 0x75, 0xba, 0xff, 0x42, 0x78, 0xbb, 0xff, + 0x42, 0x78, 0xbd, 0xff, 0x44, 0x7b, 0xbf, 0xff, + 0x46, 0x7c, 0xc1, 0xff, 0x47, 0x7f, 0xc2, 0xff, + 0x49, 0x81, 0xc6, 0xff, 0x57, 0x90, 0xd3, 0xff, + 0x66, 0x9c, 0xdb, 0xff, 0x6e, 0xa3, 0xdf, 0xff, + 0x36, 0x68, 0xae, 0xf5, 0x17, 0x49, 0x91, 0x6d, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2b, 0x69, 0xb9, 0x7d, + 0x6f, 0x9c, 0xd6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x93, 0xb6, 0xe2, 0xff, + 0x29, 0x61, 0xa8, 0xa8, 0x00, 0x00, 0x01, 0x00, + 0x04, 0x0b, 0x14, 0x00, 0x0b, 0x30, 0x68, 0x67, + 0x1f, 0x4f, 0x93, 0xff, 0x71, 0xa2, 0xd9, 0xff, + 0x64, 0x99, 0xd5, 0xff, 0x3a, 0x72, 0xb8, 0xff, + 0x3c, 0x73, 0xb8, 0xff, 0x3f, 0x75, 0xbb, 0xff, + 0x41, 0x78, 0xbd, 0xff, 0x43, 0x7a, 0xbf, 0xff, + 0x44, 0x7b, 0xc1, 0xff, 0x46, 0x7e, 0xc4, 0xff, + 0x48, 0x81, 0xc7, 0xff, 0x77, 0xae, 0xeb, 0xff, + 0x69, 0x9e, 0xdc, 0xff, 0x1e, 0x50, 0x9a, 0xff, + 0x17, 0x41, 0x80, 0x49, 0x08, 0x12, 0x21, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x42, 0xa3, 0x9f, 0xaa, 0xca, 0xf1, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xbf, 0xd6, 0xf4, 0xff, 0x2a, 0x60, 0xa7, 0xa8, + 0x0e, 0x29, 0x4d, 0x21, 0x00, 0x02, 0x17, 0x1e, + 0x0b, 0x28, 0x53, 0x7e, 0x35, 0x63, 0x9f, 0xf9, + 0x56, 0x87, 0xc5, 0xff, 0x68, 0x9e, 0xda, 0xff, + 0x44, 0x79, 0xc0, 0xff, 0x3c, 0x74, 0xbb, 0xff, + 0x3e, 0x77, 0xbe, 0xff, 0x40, 0x78, 0xc0, 0xff, + 0x41, 0x79, 0xc3, 0xff, 0x52, 0x8b, 0xcf, 0xff, + 0x78, 0xaf, 0xeb, 0xff, 0x57, 0x8b, 0xcd, 0xff, + 0x3a, 0x69, 0xa8, 0xf8, 0x0c, 0x2a, 0x58, 0x7d, + 0x01, 0x11, 0x2a, 0x1b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x0c, 0x52, 0xab, 0xff, 0x94, 0xb9, 0xe7, 0xff, + 0xf3, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0xff, 0xff, 0xff, 0xf6, 0xff, 0xff, 0xff, + 0xb2, 0xcc, 0xf1, 0xff, 0x2d, 0x67, 0xb3, 0xff, + 0x14, 0x37, 0x64, 0x48, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x08, 0x28, 0x59, 0xa9, + 0x3a, 0x66, 0xa0, 0xf8, 0x64, 0x96, 0xd1, 0xff, + 0x5a, 0x8f, 0xd0, 0xff, 0x49, 0x81, 0xc6, 0xff, + 0x3b, 0x75, 0xbe, 0xff, 0x3d, 0x76, 0xc0, 0xff, + 0x50, 0x8a, 0xd0, 0xff, 0x61, 0x9a, 0xdc, 0xff, + 0x6b, 0xa0, 0xde, 0xff, 0x38, 0x64, 0xa2, 0xff, + 0x0f, 0x30, 0x61, 0xa6, 0x00, 0x00, 0x00, 0x24, + 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x29, 0x68, 0xb8, 0xff, 0x29, 0x67, 0xb7, 0xff, + 0x29, 0x67, 0xb6, 0xff, 0x29, 0x67, 0xb6, 0xff, + 0xdf, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x35, 0x6f, 0xba, 0xff, 0x2b, 0x68, 0xb6, 0xff, + 0x2b, 0x67, 0xb4, 0xff, 0x2c, 0x66, 0xb2, 0xff, + 0x13, 0x34, 0x60, 0x46, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x31, + 0x07, 0x23, 0x4f, 0xa6, 0x29, 0x59, 0x9c, 0xff, + 0x7c, 0xaf, 0xe7, 0xff, 0x63, 0x99, 0xdb, 0xff, + 0x3b, 0x76, 0xc2, 0xff, 0x3c, 0x79, 0xc4, 0xff, + 0x70, 0xa9, 0xe8, 0xff, 0x72, 0xa7, 0xe3, 0xff, + 0x21, 0x52, 0x9c, 0xff, 0x0a, 0x20, 0x46, 0xa0, + 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x2c, + 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x23, 0x5c, 0xa4, 0x2d, 0x1c, 0x4c, 0x8b, 0x3a, + 0x1f, 0x54, 0x96, 0x78, 0x29, 0x67, 0xb5, 0xff, + 0xdf, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x36, 0x70, 0xbb, 0xff, 0x2a, 0x67, 0xb4, 0xff, + 0x2a, 0x65, 0xb1, 0xfb, 0x28, 0x60, 0xa9, 0xc1, + 0x0e, 0x2e, 0x55, 0x2c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x24, + 0x00, 0x00, 0x03, 0x56, 0x0e, 0x26, 0x4c, 0xa0, + 0x36, 0x65, 0xa4, 0xff, 0x5e, 0x92, 0xd2, 0xff, + 0x7c, 0xb3, 0xf1, 0xff, 0x7d, 0xb6, 0xf3, 0xff, + 0x5a, 0x8f, 0xd1, 0xff, 0x36, 0x65, 0xa3, 0xff, + 0x0a, 0x21, 0x42, 0x97, 0x00, 0x00, 0x06, 0x60, + 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x1d, + 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x0d, 0x2f, 0x5a, 0x27, 0x25, 0x60, 0xaa, 0xea, + 0x9b, 0xbc, 0xe7, 0xff, 0xd0, 0xe6, 0xff, 0xff, + 0xaa, 0xc9, 0xf1, 0xff, 0xac, 0xca, 0xf0, 0xff, + 0x86, 0xad, 0xdd, 0xff, 0x2a, 0x65, 0xaf, 0xd9, + 0x15, 0x3a, 0x68, 0x2e, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x47, + 0x0f, 0x33, 0x68, 0xab, 0x46, 0x75, 0xb3, 0xfe, + 0x65, 0x9a, 0xd9, 0xff, 0x66, 0x9c, 0xdb, 0xff, + 0x40, 0x70, 0xb0, 0xf3, 0x12, 0x35, 0x69, 0x9d, + 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x30, + 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x0a, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0x19, 0x35, 0x18, 0x1d, 0x4f, 0x8e, 0x9a, + 0x28, 0x61, 0xac, 0xf5, 0x7b, 0xa5, 0xdd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe4, 0xf6, 0xff, 0xff, 0x30, 0x6d, 0xbb, 0xff, + 0x22, 0x4e, 0x8a, 0x3d, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, + 0x00, 0x00, 0x00, 0x19, 0x13, 0x38, 0x70, 0xa2, + 0x1d, 0x50, 0x9b, 0xff, 0x1e, 0x52, 0x9d, 0xff, + 0x13, 0x36, 0x6c, 0x7f, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x0d, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x0a, 0x13, 0x20, 0x00, 0x01, 0x18, 0x35, 0x1a, + 0x20, 0x52, 0x94, 0x89, 0x40, 0x75, 0xbb, 0xed, + 0x6f, 0x9c, 0xd8, 0xff, 0x72, 0x9f, 0xd9, 0xff, + 0x5c, 0x8f, 0xd1, 0xff, 0x31, 0x6e, 0xbd, 0xff, + 0x27, 0x5a, 0x9c, 0x35, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x07, 0x1c, 0x3c, 0x13, + 0x12, 0x37, 0x6c, 0x2f, 0x15, 0x39, 0x70, 0x30, + 0x08, 0x1c, 0x39, 0x0b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x15, 0x3e, 0x73, 0x20, 0x24, 0x5b, 0xa2, 0x5a, + 0x2d, 0x68, 0xb5, 0x89, 0x2e, 0x69, 0xb5, 0x8b, + 0x2f, 0x6b, 0xb8, 0x8b, 0x30, 0x6d, 0xb9, 0x86, + 0x2b, 0x53, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x2d, 0x66, 0x6c, + 0x69, 0x70, 0x2d, 0x68, 0x6f, 0x72, 0x69, 0x7a, + 0x6f, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x70, 0x6e, + 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x04, 0x18, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x20, 0x4a, 0x87, 0x45, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0x45, + 0x20, 0x4a, 0x87, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0x32, + 0x20, 0x4a, 0x87, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0x32, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0x32, 0x20, 0x4a, 0x87, 0xff, + 0xbc, 0xd1, 0xea, 0xff, 0xa4, 0xc0, 0xe2, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0xa4, 0xc0, 0xe2, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0x32, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0x32, + 0x20, 0x4a, 0x87, 0xff, 0xbc, 0xd1, 0xea, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0xac, 0xc6, 0xe4, 0xff, + 0xbb, 0xd0, 0xe9, 0xff, 0xc4, 0xd6, 0xec, 0xff, + 0xc4, 0xd6, 0xec, 0xff, 0xbb, 0xd0, 0xe9, 0xff, + 0xac, 0xc6, 0xe4, 0xff, 0x93, 0xb4, 0xdd, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0x40, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0x93, 0xb4, 0xdd, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0x93, 0xb4, 0xdd, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0x93, 0xb4, 0xdd, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0x93, 0xb4, 0xdd, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0x93, 0xb4, 0xdd, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0x48, + 0x20, 0x4a, 0x87, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x93, 0xb4, 0xdd, 0xff, 0xac, 0xc6, 0xe4, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x9d, 0xbb, 0xdf, 0xff, 0x93, 0xb4, 0xdd, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0x51, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0x09, + 0x20, 0x4a, 0x87, 0x52, 0x20, 0x4a, 0x87, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0xa4, 0xc0, 0xe2, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0xa4, 0xc0, 0xe2, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0x52, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0x02, + 0x20, 0x4a, 0x87, 0x0b, 0x20, 0x4a, 0x87, 0x59, + 0x20, 0x4a, 0x87, 0xff, 0xbe, 0xd2, 0xea, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0xff, + 0xbe, 0xd2, 0xea, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0x59, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x20, 0x4a, 0x87, 0x0b, + 0x20, 0x4a, 0x87, 0x4d, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0x4d, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x4a, 0x87, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x2d, 0x63, 0x72, + 0x6f, 0x70, 0x2e, 0x70, 0x6e, 0x67, 0x00, 0x00, + 0x18, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x10, 0x18, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x80, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x80, 0x72, 0x05, 0x89, 0x89, 0x7d, 0x08, + 0xb0, 0xb0, 0xaf, 0x05, 0xc5, 0xc5, 0xc5, 0x03, + 0xd5, 0xd5, 0xd5, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x86, 0x86, 0x80, 0x01, 0x86, 0x86, 0x80, 0x07, + 0x69, 0x6b, 0x62, 0x1a, 0x71, 0x72, 0x6b, 0x1f, + 0xc1, 0xc1, 0xc0, 0x0e, 0xd2, 0xd2, 0xd2, 0x09, + 0xd9, 0xd9, 0xd9, 0x05, 0xdf, 0xdf, 0xdf, 0x01, + 0xdf, 0xdf, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x86, 0x86, 0x80, 0x07, 0x86, 0x86, 0x80, 0x20, + 0x5e, 0x5f, 0x5a, 0x4e, 0x60, 0x62, 0x5d, 0x53, + 0xd5, 0xd6, 0xd5, 0x1a, 0xe3, 0xe3, 0xe3, 0x11, + 0xde, 0xde, 0xde, 0x0c, 0xdf, 0xdf, 0xdf, 0x07, + 0xdf, 0xdf, 0xdf, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x87, 0x87, 0x82, 0x10, + 0x71, 0x72, 0x6d, 0x2e, 0x5c, 0x5e, 0x5a, 0x63, + 0x89, 0x8a, 0x87, 0x64, 0xb3, 0xb4, 0xb1, 0x4e, + 0xe6, 0xe6, 0xe6, 0x23, 0xea, 0xea, 0xe6, 0x1a, + 0xe7, 0xe7, 0xe2, 0x14, 0xe2, 0xe2, 0xe2, 0x0e, + 0xe2, 0xe2, 0xe2, 0x07, 0xe3, 0xe3, 0xe3, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x65, 0x69, 0x62, 0x03, + 0x65, 0x69, 0x62, 0x11, 0x67, 0x69, 0x64, 0x3c, + 0x6f, 0x71, 0x6d, 0x6b, 0x80, 0x81, 0x7e, 0x90, + 0xb8, 0xb9, 0xb7, 0x70, 0xf6, 0xf6, 0xf5, 0x4b, + 0xe9, 0xe9, 0xe9, 0x30, 0xeb, 0xeb, 0xe6, 0x25, + 0xeb, 0xeb, 0xe4, 0x1c, 0xe7, 0xe7, 0xe3, 0x15, + 0xe4, 0xe4, 0xe2, 0x0e, 0xe1, 0xe1, 0xe1, 0x07, + 0xdc, 0xdc, 0xdc, 0x02, 0x9a, 0x9a, 0x9a, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x65, 0x69, 0x62, 0x0b, + 0x65, 0x69, 0x62, 0x3b, 0x58, 0x5b, 0x56, 0x8d, + 0x6f, 0x71, 0x6e, 0xbe, 0xe4, 0xe4, 0xe3, 0x94, + 0xf3, 0xf3, 0xf1, 0x74, 0xeb, 0xeb, 0xe9, 0x58, + 0xe4, 0xe4, 0xe4, 0x41, 0xe9, 0xe9, 0xe5, 0x31, + 0xec, 0xec, 0xe6, 0x25, 0xec, 0xec, 0xe3, 0x1b, + 0xe5, 0xe5, 0xe2, 0x13, 0xe0, 0xe0, 0xe0, 0x0d, + 0xdc, 0xdc, 0xdc, 0x07, 0x9a, 0x9a, 0x9a, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5b, 0x5b, 0x56, 0x12, 0x58, 0x59, 0x55, 0x3e, + 0x56, 0x58, 0x54, 0xa4, 0x95, 0x97, 0x94, 0xca, + 0xce, 0xce, 0xcd, 0xcd, 0xed, 0xed, 0xeb, 0xab, + 0xde, 0xdf, 0xdc, 0x8a, 0xc3, 0xc4, 0xc0, 0x6d, + 0xa7, 0xa8, 0xa3, 0x55, 0xae, 0xb0, 0xac, 0x45, + 0xc0, 0xc2, 0xbf, 0x35, 0xe7, 0xe7, 0xe5, 0x24, + 0xe7, 0xe7, 0xe6, 0x19, 0xe8, 0xe8, 0xe4, 0x11, + 0xe5, 0xe5, 0xd8, 0x0b, 0xaf, 0xaf, 0xa9, 0x06, + 0x86, 0x86, 0x86, 0x03, 0x80, 0x80, 0x80, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x55, 0x55, 0x50, 0x01, 0x55, 0x55, 0x50, 0x0d, + 0x56, 0x57, 0x53, 0x44, 0x66, 0x67, 0x63, 0x91, + 0x8a, 0x8c, 0x89, 0xe6, 0xc4, 0xc5, 0xc3, 0xed, + 0xf3, 0xf3, 0xf2, 0xda, 0xe2, 0xe2, 0xdf, 0xc0, + 0xc6, 0xc7, 0xc3, 0xa0, 0xaf, 0xb1, 0xac, 0x82, + 0xb1, 0xb2, 0xac, 0x68, 0xad, 0xaf, 0xaa, 0x56, + 0xb8, 0xba, 0xb7, 0x43, 0xe2, 0xe4, 0xe2, 0x2f, + 0xe7, 0xe8, 0xe7, 0x22, 0xe5, 0xe7, 0xe3, 0x17, + 0xda, 0xdf, 0xd1, 0x10, 0xdf, 0xe1, 0xdd, 0x10, + 0xd7, 0xd7, 0xd7, 0x09, 0x65, 0x65, 0x65, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x55, 0x55, 0x50, 0x00, + 0x55, 0x55, 0x50, 0x06, 0x55, 0x55, 0x50, 0x2d, + 0x59, 0x5a, 0x56, 0x96, 0x73, 0x75, 0x72, 0xfe, + 0xe4, 0xe4, 0xe4, 0xfd, 0xf5, 0xf5, 0xf4, 0xf6, + 0xe4, 0xe4, 0xe3, 0xea, 0xca, 0xca, 0xc8, 0xd4, + 0xaf, 0xb0, 0xac, 0xb6, 0xab, 0xad, 0xa8, 0x98, + 0xdf, 0xe2, 0xdd, 0x7a, 0xc8, 0xcb, 0xc5, 0x66, + 0xc0, 0xc4, 0xbe, 0x51, 0xde, 0xe2, 0xde, 0x3d, + 0xe6, 0xe7, 0xe5, 0x2d, 0xe0, 0xe3, 0xe0, 0x1f, + 0xce, 0xd7, 0xce, 0x17, 0xf0, 0xf1, 0xef, 0x21, + 0xf1, 0xf1, 0xf1, 0x13, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x55, 0x55, 0x50, 0x0e, + 0x55, 0x55, 0x50, 0x33, 0x55, 0x56, 0x52, 0xa2, + 0x96, 0x97, 0x94, 0xe0, 0xd4, 0xd5, 0xd3, 0xfe, + 0xec, 0xec, 0xeb, 0xfa, 0xe8, 0xe8, 0xe6, 0xf8, + 0xd1, 0xd2, 0xd0, 0xf3, 0xa4, 0xa5, 0xa2, 0xe5, + 0xb8, 0xb9, 0xb6, 0xcd, 0xd1, 0xd2, 0xcf, 0xb2, + 0xda, 0xdb, 0xd8, 0x96, 0xca, 0xcc, 0xc7, 0x7e, + 0xcb, 0xcd, 0xc8, 0x69, 0xea, 0xea, 0xe7, 0x57, + 0xe7, 0xe7, 0xe4, 0x3d, 0xec, 0xed, 0xea, 0x33, + 0xec, 0xed, 0xeb, 0x32, 0x94, 0x95, 0x91, 0x31, + 0x77, 0x77, 0x73, 0x1a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x55, 0x56, 0x50, 0x24, + 0x64, 0x66, 0x61, 0x68, 0x93, 0x95, 0x92, 0xda, + 0xc5, 0xc5, 0xc4, 0xfb, 0xf5, 0xf5, 0xf4, 0xf8, + 0xec, 0xec, 0xeb, 0xfa, 0xd3, 0xd3, 0xd0, 0xfb, + 0xb9, 0xba, 0xb7, 0xf9, 0xab, 0xad, 0xa9, 0xf2, + 0xc8, 0xc9, 0xc6, 0xe0, 0xdb, 0xdc, 0xd9, 0xcb, + 0xcd, 0xce, 0xca, 0xb4, 0xd0, 0xd2, 0xcd, 0x9c, + 0xda, 0xdb, 0xd7, 0x85, 0xec, 0xec, 0xea, 0x6f, + 0xf1, 0xf1, 0xef, 0x5a, 0xd5, 0xd5, 0xd3, 0x4f, + 0xa2, 0xa2, 0xa0, 0x49, 0x71, 0x71, 0x6c, 0x2f, + 0x55, 0x55, 0x4e, 0x14, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x54, 0x56, 0x51, 0x3d, + 0x6e, 0x6f, 0x6a, 0xa1, 0xe6, 0xe6, 0xe6, 0xe8, + 0xf6, 0xf6, 0xf5, 0xf7, 0xea, 0xea, 0xe8, 0xf2, + 0xe5, 0xe5, 0xe3, 0xfc, 0xbc, 0xbd, 0xb9, 0xfe, + 0xa5, 0xa6, 0xa2, 0xfd, 0xcc, 0xcd, 0xca, 0xfa, + 0xd9, 0xda, 0xd6, 0xf0, 0xd8, 0xd8, 0xd4, 0xe3, + 0xc3, 0xc4, 0xbf, 0xd1, 0xd8, 0xd9, 0xd5, 0xbb, + 0xe8, 0xe8, 0xe6, 0xa3, 0xee, 0xee, 0xec, 0x89, + 0xea, 0xea, 0xe9, 0x7e, 0xb6, 0xb6, 0xb5, 0x6e, + 0x55, 0x55, 0x51, 0x55, 0x55, 0x55, 0x4d, 0x20, + 0x55, 0x55, 0x47, 0x08, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x54, 0x56, 0x51, 0x55, + 0x67, 0x68, 0x65, 0xd7, 0xde, 0xdf, 0xde, 0xf5, + 0xf6, 0xf6, 0xf5, 0xfd, 0xe7, 0xe7, 0xe5, 0xfb, + 0xce, 0xcf, 0xcc, 0xfe, 0xba, 0xbb, 0xb8, 0xfe, + 0xb9, 0xba, 0xb7, 0xfe, 0xdf, 0xdf, 0xdc, 0xfd, + 0xd3, 0xd4, 0xd0, 0xf8, 0xcc, 0xce, 0xc8, 0xf1, + 0xd8, 0xda, 0xd6, 0xe8, 0xe4, 0xe4, 0xe2, 0xd5, + 0xf0, 0xf0, 0xef, 0xc4, 0xf8, 0xf8, 0xf7, 0xb4, + 0x9b, 0x9c, 0x9a, 0xa4, 0x6b, 0x6d, 0x69, 0x70, + 0x55, 0x55, 0x4f, 0x29, 0x55, 0x55, 0x4d, 0x0c, + 0x55, 0x55, 0x47, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x68, 0x68, 0x60, 0x00, + 0x68, 0x68, 0x60, 0x0a, 0x56, 0x57, 0x53, 0x6b, + 0x65, 0x67, 0x63, 0xf2, 0xdb, 0xdb, 0xda, 0xfc, + 0xf5, 0xf5, 0xf4, 0xff, 0xe3, 0xe3, 0xe1, 0xff, + 0xc7, 0xc7, 0xc4, 0xff, 0xba, 0xbb, 0xb7, 0xff, + 0xbb, 0xbd, 0xb9, 0xfe, 0xd3, 0xd4, 0xd0, 0xfe, + 0xd0, 0xd1, 0xcc, 0xfc, 0xd3, 0xd4, 0xcf, 0xf9, + 0xe5, 0xe6, 0xe3, 0xf5, 0xf0, 0xf0, 0xef, 0xe9, + 0xdc, 0xdc, 0xdb, 0xdd, 0xa6, 0xa7, 0xa5, 0xd0, + 0x77, 0x79, 0x76, 0x8b, 0x54, 0x56, 0x51, 0x48, + 0x55, 0x55, 0x4d, 0x0e, 0x55, 0x55, 0x4d, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x60, 0x60, 0x00, 0x61, 0x62, 0x5e, 0x03, + 0x62, 0x63, 0x5e, 0x2e, 0x62, 0x64, 0x5f, 0x8a, + 0x6f, 0x70, 0x6d, 0xf8, 0xc8, 0xc9, 0xc7, 0xfd, + 0xe7, 0xe7, 0xe6, 0xff, 0xe4, 0xe4, 0xe2, 0xff, + 0xcd, 0xcd, 0xca, 0xff, 0xc0, 0xc1, 0xbd, 0xff, + 0xbb, 0xbd, 0xb8, 0xff, 0xc3, 0xc5, 0xc0, 0xff, + 0xd2, 0xd3, 0xcf, 0xfe, 0xe1, 0xe2, 0xde, 0xfd, + 0xf0, 0xf0, 0xee, 0xfc, 0xe8, 0xe8, 0xe7, 0xf7, + 0xb8, 0xb8, 0xb7, 0xe6, 0x54, 0x56, 0x52, 0xc6, + 0x54, 0x55, 0x51, 0x54, 0x55, 0x55, 0x4f, 0x16, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x60, 0x60, 0x02, 0x5f, 0x60, 0x5e, 0x0c, + 0x5e, 0x60, 0x5d, 0x94, 0x7d, 0x7f, 0x7b, 0xd0, + 0xa2, 0xa3, 0x9f, 0xdb, 0x7a, 0x7c, 0x78, 0xf6, + 0xb0, 0xb1, 0xaf, 0xff, 0xf7, 0xf7, 0xf6, 0xff, + 0xe6, 0xe6, 0xe5, 0xff, 0xd8, 0xd9, 0xd6, 0xff, + 0xd2, 0xd3, 0xcf, 0xff, 0xd9, 0xda, 0xd6, 0xff, + 0xe3, 0xe4, 0xe1, 0xfe, 0xef, 0xef, 0xed, 0xfe, + 0xfb, 0xfb, 0xfb, 0xfe, 0x9f, 0xa0, 0x9e, 0xfc, + 0x6b, 0x6d, 0x69, 0xc3, 0x57, 0x5b, 0x56, 0x55, + 0x57, 0x5a, 0x55, 0x1d, 0x55, 0x55, 0x4f, 0x04, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x62, 0x5d, 0x25, 0x65, 0x67, 0x61, 0x72, + 0x96, 0x97, 0x95, 0xcf, 0xb5, 0xb5, 0xb3, 0xf0, + 0xcc, 0xcd, 0xca, 0xeb, 0x8e, 0x90, 0x8c, 0xfa, + 0x8f, 0x91, 0x8d, 0xff, 0xb1, 0xb2, 0xb0, 0xff, + 0xe8, 0xe8, 0xe7, 0xff, 0xdf, 0xe0, 0xde, 0xfe, + 0xd0, 0xd0, 0xcd, 0xfe, 0xd8, 0xd8, 0xd6, 0xfd, + 0xea, 0xeb, 0xe9, 0xfe, 0xdf, 0xe0, 0xde, 0xff, + 0xa7, 0xa8, 0xa6, 0xff, 0x7b, 0x7d, 0x7a, 0xc2, + 0x59, 0x5b, 0x58, 0x74, 0x5a, 0x5f, 0x5a, 0x1c, + 0x5a, 0x5f, 0x5a, 0x08, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6a, 0x6c, 0x65, 0x0f, + 0x6f, 0x71, 0x6b, 0x57, 0x74, 0x76, 0x71, 0xd4, + 0xc1, 0xc2, 0xc0, 0xf1, 0xe0, 0xe0, 0xdf, 0xfe, + 0xe0, 0xe1, 0xde, 0xff, 0xb6, 0xb8, 0xb3, 0xff, + 0x89, 0x8c, 0x87, 0xff, 0x78, 0x7a, 0x76, 0xff, + 0xc7, 0xc8, 0xc7, 0xff, 0xd6, 0xd6, 0xd5, 0xfe, + 0xd5, 0xd6, 0xd3, 0xfe, 0xdc, 0xdc, 0xda, 0xfd, + 0xdb, 0xdb, 0xda, 0xfe, 0xb9, 0xba, 0xb8, 0xf4, + 0x5d, 0x5f, 0x5b, 0xd9, 0x5d, 0x5f, 0x5b, 0x74, + 0x65, 0x68, 0x65, 0x2a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6a, 0x6c, 0x65, 0x3f, + 0x84, 0x86, 0x80, 0x93, 0x9b, 0x9d, 0x98, 0xf7, + 0xd8, 0xd8, 0xd7, 0xfc, 0xe9, 0xea, 0xe8, 0xfe, + 0xdd, 0xdf, 0xd9, 0xff, 0xcd, 0xcf, 0xc9, 0xff, + 0xb3, 0xb6, 0xaf, 0xff, 0x93, 0x95, 0x90, 0xff, + 0x6d, 0x6f, 0x6b, 0xff, 0xb3, 0xb4, 0xb3, 0xfe, + 0xfa, 0xfa, 0xf9, 0xfe, 0xfa, 0xfa, 0xfa, 0xfe, + 0xa1, 0xa2, 0xa0, 0xfe, 0x67, 0x69, 0x65, 0xd1, + 0x79, 0x79, 0x75, 0x62, 0x77, 0x78, 0x74, 0x25, + 0x65, 0x68, 0x65, 0x05, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x68, 0x68, 0x63, 0x09, + 0x68, 0x68, 0x63, 0x1f, 0x69, 0x6b, 0x66, 0x88, + 0x93, 0x95, 0x91, 0xd4, 0xd0, 0xd1, 0xcf, 0xfd, + 0xdf, 0xe0, 0xdd, 0xfe, 0xe0, 0xe1, 0xdc, 0xff, + 0xd6, 0xd9, 0xd2, 0xff, 0xcf, 0xd2, 0xcb, 0xff, + 0xc3, 0xc6, 0xbf, 0xff, 0xb0, 0xb3, 0xad, 0xff, + 0x92, 0x94, 0x8f, 0xff, 0x97, 0x98, 0x94, 0xff, + 0x9f, 0xa0, 0x9d, 0xff, 0x9a, 0x9b, 0x99, 0xff, + 0x7c, 0x7d, 0x7a, 0xbc, 0x5b, 0x5c, 0x58, 0x6f, + 0x7f, 0x7f, 0x7b, 0x23, 0x85, 0x85, 0x81, 0x0a, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x61, 0x61, 0x61, 0x03, 0x63, 0x65, 0x61, 0x22, + 0x64, 0x66, 0x61, 0x67, 0x86, 0x88, 0x84, 0xc9, + 0xaf, 0xb0, 0xad, 0xfc, 0xeb, 0xec, 0xea, 0xff, + 0xdd, 0xdf, 0xda, 0xff, 0xd4, 0xd6, 0xcf, 0xff, + 0xce, 0xd1, 0xca, 0xff, 0xcc, 0xcf, 0xc8, 0xff, + 0xca, 0xcd, 0xc7, 0xff, 0xc6, 0xc8, 0xc3, 0xff, + 0xb5, 0xb6, 0xb2, 0xff, 0x8d, 0x8f, 0x8a, 0xfe, + 0x69, 0x6b, 0x66, 0xfd, 0x5a, 0x5c, 0x58, 0xfb, + 0x5a, 0x5c, 0x57, 0x89, 0x5d, 0x5e, 0x5a, 0x2b, + 0x34, 0x34, 0x32, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x61, 0x61, 0x61, 0x0c, 0x61, 0x64, 0x61, 0x51, + 0x62, 0x65, 0x61, 0xe5, 0xbc, 0xbd, 0xbb, 0xf8, + 0xe4, 0xe5, 0xe3, 0xfe, 0xdd, 0xdf, 0xdb, 0xff, + 0xcf, 0xd2, 0xcb, 0xff, 0xc8, 0xcb, 0xc4, 0xff, + 0xc6, 0xc9, 0xc2, 0xff, 0xc4, 0xc7, 0xc0, 0xff, + 0xca, 0xcd, 0xc7, 0xff, 0xce, 0xd0, 0xcc, 0xff, + 0xb7, 0xb8, 0xb5, 0xff, 0x9f, 0xa0, 0x9d, 0xfd, + 0x85, 0x87, 0x82, 0xfa, 0x65, 0x68, 0x63, 0xf1, + 0x61, 0x64, 0x5e, 0x7e, 0x5d, 0x62, 0x5d, 0x23, + 0x21, 0x23, 0x21, 0x04, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x55, 0x55, 0x55, 0x00, 0x55, 0x55, 0x55, 0x01, + 0x60, 0x64, 0x5f, 0x5a, 0x81, 0x84, 0x80, 0xb3, + 0xb3, 0xb5, 0xb3, 0xf6, 0xd5, 0xd6, 0xd4, 0xfd, + 0xdd, 0xde, 0xdb, 0xff, 0xcd, 0xcf, 0xca, 0xff, + 0xcd, 0xcf, 0xca, 0xff, 0xd4, 0xd6, 0xd1, 0xff, + 0xdd, 0xdf, 0xdc, 0xff, 0xd9, 0xda, 0xd7, 0xff, + 0xd0, 0xd1, 0xcf, 0xff, 0xc2, 0xc3, 0xc1, 0xfe, + 0xa6, 0xa7, 0xa4, 0xfd, 0x92, 0x94, 0x90, 0xfb, + 0x80, 0x82, 0x7d, 0xee, 0x67, 0x6a, 0x64, 0xc8, + 0x60, 0x63, 0x5d, 0x63, 0x4c, 0x4e, 0x4c, 0x19, + 0x0c, 0x0c, 0x0c, 0x07, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x69, 0x6d, 0x67, 0x0b, 0x69, 0x6d, 0x67, 0x2e, + 0x80, 0x83, 0x7e, 0x9e, 0xa1, 0xa3, 0xa0, 0xed, + 0xe3, 0xe4, 0xe3, 0xfc, 0xe7, 0xe7, 0xe6, 0xfe, + 0xdf, 0xe0, 0xdd, 0xff, 0xcf, 0xd1, 0xcc, 0xff, + 0xd1, 0xd2, 0xcf, 0xff, 0xce, 0xcf, 0xcd, 0xfe, + 0xc7, 0xc8, 0xc6, 0xfc, 0xbe, 0xbf, 0xbd, 0xfc, + 0xb1, 0xb2, 0xb0, 0xf7, 0xa1, 0xa2, 0xa0, 0xee, + 0x8d, 0x8f, 0x8b, 0xdd, 0x82, 0x84, 0x80, 0xc4, + 0x77, 0x7a, 0x75, 0xa3, 0x64, 0x67, 0x61, 0x7b, + 0x57, 0x59, 0x54, 0x3d, 0x2d, 0x2d, 0x2d, 0x12, + 0x03, 0x03, 0x03, 0x0a, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x67, 0x6a, 0x64, 0x01, + 0x69, 0x6d, 0x67, 0x22, 0x69, 0x6d, 0x67, 0x85, + 0xa7, 0xa8, 0xa6, 0xd2, 0xce, 0xce, 0xcd, 0xfd, + 0xf0, 0xf0, 0xf0, 0xfe, 0xf0, 0xf0, 0xef, 0xfe, + 0xe9, 0xe9, 0xe8, 0xfe, 0xde, 0xde, 0xdd, 0xfe, + 0xd7, 0xd7, 0xd6, 0xfd, 0xb4, 0xb6, 0xb4, 0xf9, + 0x83, 0x85, 0x80, 0xf3, 0x71, 0x74, 0x6e, 0xf0, + 0x68, 0x6b, 0x65, 0xe2, 0x62, 0x65, 0x60, 0xc8, + 0x5e, 0x60, 0x5b, 0x9c, 0x56, 0x57, 0x52, 0x59, + 0x39, 0x39, 0x34, 0x21, 0x0d, 0x0d, 0x0c, 0x11, + 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x0e, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0d, + 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x67, 0x6a, 0x64, 0x1f, + 0x68, 0x6a, 0x65, 0x5e, 0x69, 0x6b, 0x66, 0xce, + 0xb8, 0xb9, 0xb7, 0xf1, 0xe2, 0xe2, 0xe1, 0xfe, + 0xd2, 0xd2, 0xd0, 0xfd, 0xa9, 0xab, 0xa7, 0xfa, + 0x90, 0x92, 0x8e, 0xf6, 0x89, 0x8b, 0x87, 0xf0, + 0x8a, 0x8c, 0x88, 0xd9, 0x82, 0x84, 0x80, 0xb3, + 0x6d, 0x6f, 0x6b, 0x87, 0x60, 0x62, 0x5e, 0x69, + 0x56, 0x59, 0x54, 0x56, 0x4f, 0x51, 0x4d, 0x48, + 0x47, 0x49, 0x45, 0x3b, 0x38, 0x39, 0x35, 0x27, + 0x18, 0x18, 0x15, 0x17, 0x03, 0x03, 0x03, 0x12, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x11, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x0e, + 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0a, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x00, 0x5f, 0x61, 0x5c, 0x57, + 0x61, 0x63, 0x5e, 0xab, 0x65, 0x68, 0x62, 0xef, + 0x9d, 0x9f, 0x9b, 0xee, 0xc0, 0xc1, 0xbe, 0xdc, + 0xae, 0xb0, 0xac, 0xc2, 0x83, 0x85, 0x80, 0xb0, + 0x66, 0x68, 0x63, 0xa1, 0x5e, 0x61, 0x5c, 0x93, + 0x5d, 0x5e, 0x5a, 0x80, 0x57, 0x58, 0x54, 0x64, + 0x48, 0x49, 0x45, 0x42, 0x30, 0x30, 0x2f, 0x2b, + 0x18, 0x19, 0x18, 0x20, 0x07, 0x0b, 0x07, 0x1a, + 0x07, 0x08, 0x07, 0x1a, 0x07, 0x07, 0x07, 0x1a, + 0x07, 0x07, 0x07, 0x19, 0x07, 0x07, 0x07, 0x19, + 0x06, 0x06, 0x06, 0x18, 0x04, 0x04, 0x04, 0x16, + 0x04, 0x04, 0x04, 0x15, 0x01, 0x01, 0x01, 0x15, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x13, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x05, + 0x85, 0x7f, 0x75, 0x0c, 0x5c, 0x5e, 0x5a, 0x8e, + 0x5c, 0x5e, 0x5a, 0xe4, 0x61, 0x64, 0x5e, 0xde, + 0x64, 0x67, 0x60, 0xc3, 0x65, 0x68, 0x61, 0x9a, + 0x61, 0x65, 0x5e, 0x63, 0x55, 0x57, 0x51, 0x40, + 0x3c, 0x3c, 0x38, 0x25, 0x00, 0x00, 0x00, 0x13, + 0x00, 0x00, 0x00, 0x14, 0x04, 0x04, 0x04, 0x18, + 0x09, 0x09, 0x09, 0x1d, 0x0e, 0x0e, 0x0e, 0x20, + 0x0e, 0x12, 0x0e, 0x22, 0x0e, 0x13, 0x0e, 0x23, + 0x0d, 0x0f, 0x0d, 0x22, 0x0e, 0x0e, 0x0d, 0x22, + 0x0e, 0x0e, 0x0d, 0x22, 0x0e, 0x0e, 0x0d, 0x22, + 0x0b, 0x0b, 0x0b, 0x1f, 0x09, 0x09, 0x09, 0x1b, + 0x09, 0x09, 0x09, 0x19, 0x03, 0x03, 0x03, 0x19, + 0x00, 0x00, 0x00, 0x18, 0x01, 0x01, 0x01, 0x16, + 0x01, 0x01, 0x01, 0x10, 0x01, 0x01, 0x01, 0x0c, + 0x01, 0x01, 0x01, 0x0a, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x06, + 0x6a, 0x69, 0x65, 0x36, 0x61, 0x63, 0x5e, 0x48, + 0x5e, 0x61, 0x5c, 0x4e, 0x61, 0x64, 0x5e, 0x38, + 0x63, 0x66, 0x5f, 0x2f, 0x62, 0x65, 0x5e, 0x26, + 0x59, 0x5d, 0x56, 0x1a, 0x41, 0x43, 0x3e, 0x14, + 0x23, 0x23, 0x20, 0x0f, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0x0e, 0x05, 0x05, 0x05, 0x11, + 0x0c, 0x0c, 0x0c, 0x16, 0x11, 0x11, 0x11, 0x19, + 0x13, 0x14, 0x13, 0x1a, 0x11, 0x13, 0x11, 0x1a, + 0x0d, 0x0e, 0x0d, 0x18, 0x10, 0x10, 0x0c, 0x18, + 0x15, 0x15, 0x0c, 0x18, 0x15, 0x15, 0x0d, 0x17, + 0x11, 0x11, 0x0d, 0x15, 0x0d, 0x0d, 0x0d, 0x13, + 0x0e, 0x0e, 0x0e, 0x11, 0x05, 0x0d, 0x05, 0x10, + 0x04, 0x0c, 0x04, 0x10, 0x0b, 0x0b, 0x0b, 0x10, + 0x0f, 0x0f, 0x0f, 0x0d, 0x12, 0x12, 0x12, 0x0a, + 0x13, 0x13, 0x13, 0x09, 0x05, 0x05, 0x05, 0x08, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x06, + 0x68, 0x67, 0x64, 0x24, 0x65, 0x68, 0x63, 0x1a, + 0x62, 0x69, 0x62, 0x10, 0x62, 0x69, 0x62, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x05, 0x05, 0x09, + 0x0c, 0x0c, 0x0c, 0x0b, 0x12, 0x12, 0x12, 0x0d, + 0x13, 0x13, 0x13, 0x0d, 0x12, 0x12, 0x12, 0x0d, + 0x0c, 0x0c, 0x0c, 0x0c, 0x10, 0x10, 0x0a, 0x0c, + 0x15, 0x15, 0x0a, 0x0c, 0x16, 0x16, 0x0b, 0x0c, + 0x11, 0x11, 0x0c, 0x0b, 0x0d, 0x0d, 0x0d, 0x0a, + 0x0e, 0x0e, 0x0e, 0x09, 0x05, 0x0f, 0x05, 0x08, + 0x05, 0x10, 0x05, 0x08, 0x0f, 0x0f, 0x0f, 0x08, + 0x13, 0x13, 0x13, 0x07, 0x16, 0x16, 0x16, 0x05, + 0x17, 0x17, 0x17, 0x05, 0x06, 0x06, 0x06, 0x04, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x2f, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, + 0x70, 0x6f, 0x73, 0x2d, 0x74, 0x6c, 0x2d, 0x69, + 0x63, 0x6f, 0x6e, 0x2e, 0x70, 0x6e, 0x67, 0x00, + 0x58, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x06, 0x58, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x67, 0xad, 0x19, 0xff, 0x65, 0xab, 0x19, 0xff, + 0x61, 0xa2, 0x1c, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x69, 0xae, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6c, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6f, 0xb1, 0x1e, 0xff, 0x6d, 0xb1, 0x1c, 0xff, + 0x6c, 0xb1, 0x1b, 0xff, 0x6c, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x72, 0xb2, 0x21, 0xff, 0x70, 0xb2, 0x1f, 0xff, + 0x6e, 0xb1, 0x1d, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6c, 0xb1, 0x1b, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x75, 0xb5, 0x25, 0xff, 0x73, 0xb3, 0x23, 0xff, + 0x72, 0xb2, 0x20, 0xff, 0x6f, 0xb2, 0x1f, 0xff, + 0x6d, 0xb1, 0x1d, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x79, 0xb7, 0x29, 0xff, 0x6a, 0xa6, 0x23, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x68, 0xa5, 0x21, 0xff, + 0x71, 0xb2, 0x1f, 0xff, 0x6e, 0xb1, 0x1e, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6c, 0xb1, 0x1b, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6c, 0xa7, 0x26, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x68, 0xa6, 0x21, 0xff, 0x72, 0xb2, 0x21, 0xff, + 0x70, 0xb2, 0x1f, 0xff, 0x6e, 0xb1, 0x1d, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6c, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x68, 0xa6, 0x22, 0xff, + 0x73, 0xb2, 0x22, 0xff, 0x71, 0xb2, 0x20, 0xff, + 0x6f, 0xb1, 0x1e, 0xff, 0x6d, 0xb1, 0x1c, 0xff, + 0x6c, 0xb1, 0x1b, 0xff, 0x6c, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x69, 0xa6, 0x22, 0xff, 0x74, 0xb3, 0x24, 0xff, + 0x72, 0xb2, 0x21, 0xff, 0x70, 0xb2, 0x1f, 0xff, + 0x6e, 0xb1, 0x1d, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6c, 0xb1, 0x1b, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x6a, 0xa7, 0x23, 0xff, + 0x75, 0xb5, 0x25, 0xff, 0x73, 0xb3, 0x23, 0xff, + 0x72, 0xb2, 0x20, 0xff, 0x6f, 0xb2, 0x1f, 0xff, + 0x6d, 0xb1, 0x1d, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6b, 0xa7, 0x24, 0xff, 0x77, 0xb5, 0x26, 0xff, + 0x74, 0xb3, 0x25, 0xff, 0x72, 0xb2, 0x22, 0xff, + 0x71, 0xb2, 0x1f, 0xff, 0x6e, 0xb1, 0x1e, 0xff, + 0x66, 0xa5, 0x1f, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x6b, 0xa7, 0x25, 0xff, + 0x78, 0xb6, 0x27, 0xff, 0x75, 0xb5, 0x25, 0xff, + 0x74, 0xb3, 0x23, 0xff, 0x67, 0xa5, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6c, 0xa7, 0x25, 0xff, 0x79, 0xb7, 0x29, 0xff, + 0x6a, 0xa7, 0x23, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x6c, 0xa8, 0x26, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x2d, 0x75, 0x73, + 0x65, 0x72, 0x64, 0x65, 0x66, 0x2e, 0x70, 0x6e, + 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x10, 0x18, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x80, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x62, 0x70, 0x27, + 0x62, 0x68, 0x78, 0x66, 0x61, 0x64, 0x74, 0x77, + 0x62, 0x68, 0x78, 0x66, 0x60, 0x62, 0x70, 0x27, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x62, 0x76, 0x25, + 0x7a, 0x83, 0x98, 0xbe, 0x98, 0xa6, 0xc4, 0xfa, + 0x95, 0xae, 0xda, 0xff, 0x8f, 0xad, 0xda, 0xff, + 0x8a, 0xa7, 0xd1, 0xff, 0x82, 0x97, 0xb8, 0xfa, + 0x6d, 0x79, 0x8f, 0xbe, 0x60, 0x62, 0x76, 0x25, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x64, 0x69, 0x76, 0x5e, 0x9a, 0xa6, 0xbd, 0xf5, + 0x9c, 0xb6, 0xe5, 0xff, 0x97, 0xb4, 0xe0, 0xff, + 0xaa, 0xc2, 0xe1, 0xff, 0xb7, 0xcc, 0xe4, 0xfd, + 0xb0, 0xc7, 0xe1, 0xfd, 0x9b, 0xb8, 0xd9, 0xfd, + 0x84, 0xa8, 0xd0, 0xfd, 0x74, 0x89, 0xa6, 0xf5, + 0x5f, 0x66, 0x73, 0x5e, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x61, 0x65, 0x72, 0x44, + 0xa1, 0xae, 0xc7, 0xfb, 0x95, 0xb2, 0xe4, 0xff, + 0xbc, 0xcf, 0xe9, 0xff, 0xc4, 0xd5, 0xe9, 0xfd, + 0xc5, 0xd6, 0xe8, 0xfa, 0xc6, 0xd6, 0xe8, 0xf6, + 0xc4, 0xd6, 0xe8, 0xf4, 0xc2, 0xd4, 0xe6, 0xf4, + 0xa7, 0xc1, 0xdc, 0xf3, 0x79, 0xa0, 0xca, 0xf5, + 0x72, 0x8b, 0xab, 0xfa, 0x61, 0x65, 0x72, 0x44, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x80, 0x80, 0x01, 0x88, 0x90, 0xa3, 0xd4, + 0xa4, 0xbc, 0xe8, 0xff, 0xbc, 0xcf, 0xea, 0xff, + 0xc3, 0xd4, 0xe8, 0xfc, 0xc5, 0xd6, 0xe8, 0xf6, + 0xc7, 0xd7, 0xe9, 0xf1, 0xc9, 0xd9, 0xe9, 0xed, + 0xc8, 0xd8, 0xe9, 0xea, 0xc6, 0xd5, 0xe7, 0xea, + 0xc2, 0xd2, 0xe6, 0xeb, 0x84, 0xa8, 0xcf, 0xe4, + 0x7d, 0xa4, 0xcd, 0xf0, 0x69, 0x77, 0x8d, 0xd2, + 0x80, 0x80, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5d, 0x65, 0x73, 0x37, 0xae, 0xbc, 0xd6, 0xfb, + 0x97, 0xb4, 0xe1, 0xff, 0xbf, 0xd1, 0xe7, 0xfd, + 0xc3, 0xd4, 0xe7, 0xf6, 0xc8, 0xd7, 0xe9, 0xee, + 0xcb, 0xda, 0xea, 0xe7, 0xcd, 0xdc, 0xeb, 0xe2, + 0xcc, 0xdb, 0xec, 0xdf, 0xcb, 0xda, 0xea, 0xde, + 0xc7, 0xd7, 0xe9, 0xe0, 0x94, 0xb3, 0xd5, 0xd5, + 0x83, 0xa6, 0xce, 0xdf, 0x75, 0x8f, 0xaf, 0xee, + 0x5e, 0x65, 0x73, 0x37, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x67, 0x75, 0x73, 0xb0, 0xc5, 0xe8, 0xff, + 0xa4, 0xbe, 0xdf, 0xfe, 0xbe, 0xd1, 0xe5, 0xf7, + 0xc5, 0xd6, 0xe8, 0xed, 0xca, 0xd9, 0xea, 0xe4, + 0xce, 0xdd, 0xec, 0xdc, 0xd0, 0xde, 0xec, 0xd6, + 0xd1, 0xdf, 0xed, 0xd2, 0xcf, 0xdd, 0xec, 0xd0, + 0xc8, 0xd7, 0xe9, 0xd0, 0x97, 0xb6, 0xd5, 0xc2, + 0x8e, 0xaf, 0xd2, 0xd0, 0x81, 0xa2, 0xc6, 0xe3, + 0x62, 0x66, 0x74, 0x72, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x63, 0x66, 0x74, 0x7e, 0xae, 0xc5, 0xe5, 0xff, + 0x99, 0xb5, 0xd8, 0xfb, 0xbf, 0xd1, 0xe5, 0xf0, + 0xc6, 0xd7, 0xe9, 0xe5, 0xcd, 0xdc, 0xeb, 0xda, + 0xd3, 0xdf, 0xed, 0xd0, 0xd6, 0xe1, 0xee, 0xc9, + 0xd6, 0xe3, 0xee, 0xc4, 0xd5, 0xe0, 0xee, 0xc2, + 0xb9, 0xcd, 0xe3, 0xb0, 0xa3, 0xbd, 0xda, 0xb1, + 0x97, 0xb5, 0xd6, 0xc1, 0x8c, 0xad, 0xd1, 0xd4, + 0x60, 0x64, 0x71, 0x7e, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x62, 0x65, 0x77, 0x6b, 0xaf, 0xc5, 0xdf, 0xff, + 0x80, 0xa5, 0xce, 0xf1, 0xbe, 0xd0, 0xe4, 0xe8, + 0xca, 0xd9, 0xe9, 0xdc, 0xd0, 0xdd, 0xec, 0xcf, + 0xd7, 0xe2, 0xf0, 0xc3, 0xdb, 0xe4, 0xef, 0xba, + 0xdb, 0xe5, 0xf0, 0xb1, 0xca, 0xd9, 0xe9, 0x9c, + 0xb6, 0xcb, 0xe2, 0x95, 0xae, 0xc4, 0xdf, 0xa2, + 0xa1, 0xbc, 0xd9, 0xb3, 0x8f, 0xac, 0xcb, 0xcc, + 0x63, 0x66, 0x74, 0x70, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5f, 0x63, 0x6c, 0x21, 0xad, 0xb8, 0xc6, 0xfa, + 0x80, 0xa5, 0xce, 0xe7, 0x97, 0xb5, 0xd7, 0xd2, + 0xd4, 0xdf, 0xed, 0xdd, 0xec, 0xf1, 0xf6, 0xe7, + 0xe1, 0xe9, 0xf0, 0xc7, 0xd8, 0xe1, 0xeb, 0xa7, + 0xcf, 0xda, 0xe5, 0x96, 0xe0, 0xe4, 0xe9, 0xc6, + 0xd5, 0xdd, 0xe5, 0xb9, 0xb6, 0xcb, 0xe3, 0x94, + 0xaa, 0xc2, 0xde, 0xa7, 0x85, 0x97, 0xad, 0xd0, + 0x63, 0x63, 0x72, 0x2d, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x7e, 0x83, 0x90, 0x8b, + 0xb9, 0xcb, 0xdf, 0xec, 0x94, 0xb3, 0xd4, 0xc7, + 0xaf, 0xc6, 0xde, 0xb7, 0xd9, 0xe3, 0xef, 0xbc, + 0xd9, 0xe3, 0xec, 0xa4, 0xe6, 0xeb, 0xf1, 0xa9, + 0xe7, 0xeb, 0xee, 0xa6, 0xeb, 0xee, 0xf2, 0xb5, + 0xd4, 0xe0, 0xec, 0x81, 0xc0, 0xd2, 0xe5, 0x87, + 0xaf, 0xc3, 0xda, 0xa4, 0x6d, 0x72, 0x81, 0x9e, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5b, 0x5b, 0x64, 0x07, + 0x91, 0x95, 0xa1, 0xbb, 0xbb, 0xcd, 0xe1, 0xd3, + 0xa9, 0xc1, 0xdd, 0xa8, 0xd7, 0xe2, 0xee, 0xb0, + 0xc9, 0xda, 0xe9, 0x77, 0xd9, 0xe3, 0xee, 0x62, + 0xde, 0xea, 0xf1, 0x55, 0xed, 0xf2, 0xf5, 0x89, + 0xd5, 0xe2, 0xed, 0x66, 0xc7, 0xd4, 0xe5, 0x85, + 0x7a, 0x7f, 0x8e, 0xb8, 0x61, 0x64, 0x71, 0x13, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x63, 0x63, 0x6d, 0x0c, 0xad, 0xb3, 0xbd, 0xe1, + 0xae, 0xc5, 0xdf, 0xa4, 0xbe, 0xcc, 0xdb, 0xa1, + 0xc8, 0xd3, 0xe0, 0x79, 0xdf, 0xea, 0xf1, 0x57, + 0xd9, 0xdf, 0xe2, 0x53, 0xd7, 0xdb, 0xdf, 0x6a, + 0xdb, 0xe4, 0xf1, 0x5b, 0x9b, 0xa1, 0xad, 0xaf, + 0x5f, 0x61, 0x71, 0x25, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x9a, 0x9d, 0xa8, 0x99, + 0xc1, 0xd2, 0xe5, 0xb2, 0xb2, 0xc2, 0xd1, 0x97, + 0x9f, 0xa5, 0xa5, 0x9e, 0xc3, 0xc7, 0xb5, 0x7c, + 0x96, 0x97, 0x8f, 0x7d, 0xc4, 0xc8, 0xc4, 0x54, + 0xe0, 0xe6, 0xef, 0x5a, 0x8a, 0x8e, 0x9a, 0xae, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x64, 0x69, 0x75, 0x40, + 0xb2, 0xb8, 0xbe, 0xed, 0xaf, 0xb8, 0xaf, 0xfa, + 0x8c, 0x90, 0x82, 0xff, 0xbe, 0xc1, 0xa5, 0xff, + 0x9c, 0x9d, 0x80, 0xfe, 0xbd, 0xbf, 0x9b, 0xf2, + 0xad, 0xb0, 0xa6, 0xc5, 0x6a, 0x6e, 0x7a, 0x7b, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0x42, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x50, 0x50, 0x28, 0x08, + 0x73, 0x75, 0x58, 0xf2, 0xa3, 0xa7, 0xa8, 0xff, + 0xc2, 0xc7, 0xbf, 0xff, 0xcf, 0xd2, 0xc1, 0xff, + 0xcf, 0xd1, 0xbd, 0xff, 0xb6, 0xb9, 0xad, 0xff, + 0x6d, 0x6f, 0x69, 0xe9, 0x61, 0x61, 0x6a, 0x07, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2e, 0x33, 0x34, 0x2d, + 0x2f, 0x33, 0x33, 0xf8, 0x2d, 0x2d, 0x2d, 0x04, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x46, 0x46, 0x23, 0x05, + 0x76, 0x76, 0x40, 0xec, 0xd5, 0xd7, 0xa5, 0xff, + 0xbc, 0xbf, 0xa4, 0xff, 0xa5, 0xa8, 0x95, 0xff, + 0xa4, 0xa6, 0x8d, 0xff, 0x9e, 0x9d, 0x77, 0xff, + 0x66, 0x65, 0x3d, 0xec, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0x3e, 0x2d, 0x35, 0x35, 0x2e, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x30, 0x30, 0x30, 0x0c, 0x38, 0x3b, 0x39, 0xcd, + 0x42, 0x42, 0x3d, 0xf9, 0x2a, 0x30, 0x30, 0x12, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4a, 0x4a, 0x21, 0x0b, + 0x85, 0x85, 0x47, 0xfd, 0xef, 0xf0, 0xd2, 0xff, + 0xf4, 0xf7, 0xcb, 0xff, 0xe8, 0xea, 0xb8, 0xff, + 0xc6, 0xc8, 0x97, 0xff, 0xa1, 0xa0, 0x70, 0xff, + 0x63, 0x63, 0x3c, 0xe3, 0x00, 0x00, 0x00, 0x00, + 0x2f, 0x34, 0x36, 0x4c, 0x36, 0x3a, 0x39, 0xd1, + 0x27, 0x36, 0x36, 0x0d, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2f, 0x36, 0x36, 0x1a, + 0x37, 0x3a, 0x39, 0xbf, 0x4f, 0x4b, 0x40, 0xfe, + 0x44, 0x44, 0x3e, 0xf7, 0x2a, 0x32, 0x32, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x51, 0x51, 0x1b, 0x04, + 0x77, 0x77, 0x42, 0xec, 0xec, 0xed, 0xce, 0xff, + 0xf3, 0xf5, 0xc9, 0xff, 0xe9, 0xeb, 0xb9, 0xff, + 0xd4, 0xd5, 0xa1, 0xff, 0xa5, 0xa4, 0x74, 0xff, + 0x6a, 0x69, 0x41, 0xf1, 0x3d, 0x3d, 0x29, 0x06, + 0x30, 0x36, 0x36, 0x54, 0x6b, 0x67, 0x5c, 0xff, + 0x4b, 0x4d, 0x49, 0xd3, 0x31, 0x36, 0x36, 0x38, + 0x00, 0x00, 0x00, 0x00, 0x76, 0x76, 0x76, 0x03, + 0x86, 0x88, 0x81, 0x2c, 0x84, 0x8b, 0x7f, 0x1a, + 0x30, 0x30, 0x30, 0x04, 0x2e, 0x32, 0x36, 0x38, + 0x33, 0x39, 0x38, 0x8f, 0x4a, 0x4a, 0x44, 0xf2, + 0x57, 0x52, 0x45, 0xff, 0x49, 0x44, 0x36, 0xff, + 0x47, 0x46, 0x3e, 0xf8, 0x2c, 0x32, 0x35, 0x2f, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x28, 0x28, 0x11, 0x0b, + 0x6f, 0x6f, 0x3b, 0xe2, 0xca, 0xcb, 0x9b, 0xff, + 0xe5, 0xe8, 0xb8, 0xff, 0xd6, 0xd8, 0xa8, 0xff, + 0xaf, 0xb0, 0x83, 0xff, 0x98, 0x97, 0x69, 0xff, + 0x5f, 0x5f, 0x38, 0xde, 0x1b, 0x1b, 0x0b, 0x10, + 0x2e, 0x34, 0x34, 0x61, 0x72, 0x6e, 0x61, 0xff, + 0x84, 0x81, 0x74, 0xff, 0x69, 0x68, 0x5f, 0xfb, + 0x57, 0x57, 0x51, 0xd5, 0x98, 0x99, 0x96, 0xe5, + 0xcb, 0xcc, 0xc9, 0xfc, 0xc2, 0xc3, 0xc0, 0xfd, + 0x71, 0x73, 0x70, 0xf9, 0x5d, 0x5b, 0x4f, 0xfa, + 0x64, 0x5e, 0x4f, 0xff, 0x59, 0x53, 0x43, 0xff, + 0x51, 0x4b, 0x3c, 0xff, 0x4c, 0x46, 0x38, 0xff, + 0x47, 0x46, 0x3f, 0xf7, 0x2b, 0x30, 0x32, 0x26, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x15, + 0x17, 0x17, 0x0c, 0x28, 0x3e, 0x3e, 0x29, 0x81, + 0x70, 0x70, 0x61, 0xfc, 0x81, 0x81, 0x6f, 0xff, + 0x54, 0x54, 0x45, 0xfe, 0x23, 0x23, 0x1c, 0xe9, + 0x1d, 0x1e, 0x1e, 0xc6, 0x00, 0x00, 0x00, 0x6f, + 0x33, 0x39, 0x38, 0x6f, 0xa6, 0xa6, 0xa2, 0xff, + 0xcf, 0xcf, 0xcd, 0xff, 0x8f, 0x90, 0x8d, 0xff, + 0x8c, 0x8b, 0x82, 0xff, 0xd9, 0xd9, 0xd5, 0xff, + 0xe9, 0xe9, 0xe7, 0xff, 0xa9, 0xa9, 0xa8, 0xff, + 0xa2, 0xa3, 0x9f, 0xff, 0x6e, 0x69, 0x5a, 0xff, + 0x5f, 0x58, 0x46, 0xff, 0x59, 0x53, 0x42, 0xff, + 0x54, 0x4e, 0x3e, 0xff, 0x4e, 0x48, 0x3a, 0xff, + 0x45, 0x45, 0x3f, 0xf9, 0x2b, 0x33, 0x36, 0x11, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x1a, + 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x36, + 0x59, 0x59, 0x59, 0xb7, 0x81, 0x81, 0x81, 0xf9, + 0x2a, 0x2b, 0x2b, 0xf7, 0xd4, 0xd6, 0xd6, 0xff, + 0x9b, 0xa0, 0xa1, 0xff, 0x3c, 0x41, 0x42, 0xfc, + 0x2d, 0x2d, 0x2d, 0xdb, 0xcb, 0xcb, 0xc8, 0xff, + 0x9d, 0x9d, 0x9d, 0xff, 0x3f, 0x40, 0x41, 0xff, + 0x97, 0x98, 0x92, 0xff, 0xd1, 0xd1, 0xcb, 0xff, + 0xb4, 0xb5, 0xb5, 0xff, 0xa0, 0xa3, 0xa4, 0xff, + 0x49, 0x4a, 0x48, 0xff, 0x76, 0x73, 0x66, 0xff, + 0x60, 0x59, 0x47, 0xff, 0x5a, 0x54, 0x43, 0xff, + 0x54, 0x4e, 0x3f, 0xff, 0x50, 0x4b, 0x3c, 0xff, + 0x42, 0x42, 0x3d, 0xfb, 0x33, 0x33, 0x33, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x0e, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1a, + 0x00, 0x00, 0x00, 0x20, 0x01, 0x01, 0x01, 0x25, + 0x26, 0x29, 0x29, 0xe7, 0xea, 0xea, 0xeb, 0xff, + 0xae, 0xb2, 0xb4, 0xff, 0x36, 0x3d, 0x40, 0xff, + 0x24, 0x26, 0x27, 0xff, 0x8b, 0x8b, 0x86, 0xff, + 0x89, 0x8a, 0x87, 0xff, 0x56, 0x56, 0x51, 0xff, + 0x88, 0x84, 0x77, 0xff, 0xbc, 0xbc, 0xb5, 0xff, + 0x44, 0x45, 0x43, 0xff, 0x1b, 0x1e, 0x1f, 0xff, + 0x5b, 0x5b, 0x58, 0xff, 0x6c, 0x66, 0x55, 0xff, + 0x60, 0x59, 0x47, 0xff, 0x5a, 0x54, 0x43, 0xff, + 0x54, 0x4e, 0x3f, 0xff, 0x53, 0x4d, 0x3f, 0xff, + 0x3b, 0x3d, 0x39, 0xca, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x05, + 0x0d, 0x0f, 0x0f, 0xa8, 0x49, 0x4f, 0x51, 0xff, + 0x3b, 0x43, 0x45, 0xff, 0x2c, 0x32, 0x34, 0xff, + 0x1d, 0x20, 0x21, 0xff, 0x39, 0x36, 0x2b, 0xff, + 0x77, 0x71, 0x5e, 0xff, 0x77, 0x6f, 0x5a, 0xff, + 0x78, 0x70, 0x5a, 0xff, 0x86, 0x84, 0x78, 0xff, + 0x9f, 0x9f, 0x98, 0xff, 0x8d, 0x8d, 0x86, 0xff, + 0x74, 0x70, 0x62, 0xff, 0x63, 0x5c, 0x4a, 0xff, + 0x5e, 0x57, 0x46, 0xff, 0x59, 0x52, 0x41, 0xff, + 0x53, 0x4d, 0x3d, 0xff, 0x54, 0x4e, 0x41, 0xff, + 0x2f, 0x34, 0x35, 0x86, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x01, 0x01, 0x2f, 0x1a, 0x1c, 0x1d, 0xf6, + 0x24, 0x28, 0x29, 0xff, 0x18, 0x1c, 0x1d, 0xff, + 0x14, 0x17, 0x18, 0xff, 0x34, 0x31, 0x27, 0xff, + 0x6d, 0x65, 0x51, 0xff, 0x6f, 0x67, 0x52, 0xff, + 0x70, 0x68, 0x52, 0xff, 0x6e, 0x67, 0x52, 0xff, + 0x6c, 0x64, 0x50, 0xff, 0x68, 0x61, 0x4d, 0xff, + 0x64, 0x5d, 0x4a, 0xff, 0x42, 0x3d, 0x30, 0xff, + 0x54, 0x4e, 0x3e, 0xff, 0x55, 0x4f, 0x3f, 0xff, + 0x51, 0x4b, 0x3c, 0xff, 0x47, 0x46, 0x3e, 0xfc, + 0x24, 0x29, 0x2a, 0x40, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, + 0x0a, 0x0c, 0x0c, 0xe2, 0x0d, 0x0f, 0x10, 0xfb, + 0x0f, 0x10, 0x0f, 0xff, 0x57, 0x52, 0x43, 0xff, + 0x65, 0x5e, 0x4b, 0xff, 0x67, 0x60, 0x4c, 0xff, + 0x67, 0x60, 0x4c, 0xff, 0x62, 0x5b, 0x49, 0xff, + 0x5c, 0x56, 0x44, 0xff, 0x51, 0x4c, 0x3c, 0xff, + 0x38, 0x34, 0x2a, 0xff, 0x1b, 0x1a, 0x14, 0xff, + 0x41, 0x3c, 0x30, 0xff, 0x51, 0x4c, 0x3c, 0xff, + 0x51, 0x4d, 0x3f, 0xff, 0x2e, 0x31, 0x31, 0xc3, + 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x43, + 0x23, 0x26, 0x27, 0x8b, 0x4e, 0x4f, 0x47, 0xf8, + 0x66, 0x60, 0x51, 0xff, 0x63, 0x5c, 0x4a, 0xff, + 0x60, 0x59, 0x47, 0xff, 0x5e, 0x57, 0x46, 0xff, + 0x58, 0x51, 0x41, 0xff, 0x4f, 0x49, 0x3a, 0xff, + 0x4d, 0x48, 0x39, 0xff, 0x53, 0x4d, 0x3d, 0xff, + 0x51, 0x4b, 0x3c, 0xff, 0x52, 0x4c, 0x3f, 0xff, + 0x36, 0x38, 0x35, 0xea, 0x0b, 0x0c, 0x0d, 0x68, + 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x21, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, + 0x00, 0x00, 0x00, 0x30, 0x0a, 0x0c, 0x0c, 0x5a, + 0x23, 0x28, 0x28, 0xb0, 0x45, 0x45, 0x40, 0xf3, + 0x58, 0x54, 0x49, 0xfe, 0x5e, 0x58, 0x49, 0xff, + 0x5c, 0x56, 0x47, 0xff, 0x58, 0x51, 0x42, 0xff, + 0x55, 0x50, 0x40, 0xff, 0x54, 0x4e, 0x40, 0xff, + 0x4b, 0x47, 0x3e, 0xfd, 0x30, 0x33, 0x31, 0xe1, + 0x0d, 0x0f, 0x0f, 0x7e, 0x00, 0x00, 0x00, 0x51, + 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x1a, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x2f, + 0x00, 0x00, 0x00, 0x46, 0x02, 0x03, 0x03, 0x5f, + 0x19, 0x1c, 0x1d, 0x97, 0x1f, 0x23, 0x24, 0xb5, + 0x2a, 0x2c, 0x2d, 0xcc, 0x38, 0x39, 0x36, 0xe6, + 0x33, 0x35, 0x32, 0xde, 0x27, 0x29, 0x2a, 0xc4, + 0x19, 0x1b, 0x1c, 0x99, 0x00, 0x00, 0x00, 0x5f, + 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x27, + 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x4a, + 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x42, + 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x2d, 0x63, 0x68, + 0x61, 0x6e, 0x67, 0x65, 0x66, 0x6f, 0x72, 0x6d, + 0x61, 0x74, 0x2e, 0x70, 0x6e, 0x67, 0x00, 0x00, + 0x18, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x10, 0x18, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x80, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x93, 0x6f, 0x00, 0x1b, 0x9a, 0x7a, 0x00, 0x71, + 0x9c, 0x7d, 0x00, 0xad, 0x9c, 0x7e, 0x00, 0xcf, + 0x9b, 0x7c, 0x00, 0xe8, 0x99, 0x7a, 0x00, 0xf9, + 0x9b, 0x7b, 0x00, 0xf7, 0x9d, 0x7d, 0x00, 0xde, + 0x9e, 0x7e, 0x00, 0x99, 0x9a, 0x79, 0x00, 0x35, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xa5, 0x86, 0x00, 0x07, + 0xa5, 0x86, 0x00, 0x36, 0xa6, 0x87, 0x00, 0x77, + 0xb2, 0x95, 0x10, 0xaa, 0xc3, 0xab, 0x2c, 0xca, + 0xd1, 0xbd, 0x48, 0xe2, 0xd5, 0xc3, 0x52, 0xef, + 0xd7, 0xc5, 0x59, 0xf7, 0xd8, 0xc6, 0x5f, 0xfd, + 0xd7, 0xc5, 0x5c, 0xfc, 0xd4, 0xc1, 0x4e, 0xf4, + 0xc7, 0xb1, 0x35, 0xda, 0xaf, 0x94, 0x12, 0xaa, + 0xa8, 0x8a, 0x05, 0x54, 0xa5, 0x87, 0x00, 0x1a, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xa5, 0x86, 0x00, 0x0d, 0xa6, 0x87, 0x00, 0x31, + 0xa7, 0x88, 0x00, 0x8a, 0xbb, 0xa1, 0x1f, 0xd3, + 0xcc, 0xb6, 0x3e, 0xf7, 0xdd, 0xcc, 0x63, 0xfa, + 0xeb, 0xdd, 0x7e, 0xfe, 0xf1, 0xe5, 0x8b, 0xff, + 0xf4, 0xe9, 0x8e, 0xff, 0xf5, 0xe9, 0x88, 0xff, + 0xf3, 0xe6, 0x74, 0xff, 0xee, 0xdf, 0x66, 0xff, + 0xdf, 0xce, 0x56, 0xfc, 0xc8, 0xb3, 0x3f, 0xed, + 0xae, 0x93, 0x11, 0xad, 0xa7, 0x8a, 0x06, 0x43, + 0xa4, 0x80, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x12, 0x2e, 0x52, 0x01, 0x12, 0x2e, 0x52, 0x03, + 0x12, 0x2e, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xa4, 0x86, 0x00, 0x2a, 0xa7, 0x88, 0x00, 0x81, + 0xae, 0x90, 0x00, 0xe5, 0xd4, 0xbf, 0x40, 0xfb, + 0xec, 0xde, 0x77, 0xfd, 0xf0, 0xe5, 0x95, 0xfd, + 0xee, 0xe3, 0x90, 0xfe, 0xef, 0xe3, 0x91, 0xfe, + 0xf0, 0xe3, 0x87, 0xfe, 0xf0, 0xe2, 0x6d, 0xfe, + 0xf1, 0xe0, 0x4a, 0xfe, 0xf2, 0xe0, 0x48, 0xff, + 0xf2, 0xe2, 0x61, 0xff, 0xeb, 0xdc, 0x7a, 0xfd, + 0xb9, 0xa0, 0x23, 0xf7, 0xae, 0x91, 0x0f, 0x78, + 0xa5, 0x84, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x12, 0x2e, 0x52, 0x09, 0x12, 0x2e, 0x52, 0x15, + 0x12, 0x2e, 0x52, 0x03, 0x00, 0x00, 0x00, 0x00, + 0xa3, 0x86, 0x00, 0x56, 0xa9, 0x8c, 0x00, 0xe9, + 0xca, 0xae, 0x00, 0xfa, 0xcd, 0xb5, 0x1c, 0xfa, + 0xc8, 0xb1, 0x2f, 0xf6, 0xbf, 0xa7, 0x2e, 0xf4, + 0xb2, 0x99, 0x1a, 0xf9, 0xb5, 0x9b, 0x20, 0xf9, + 0xc4, 0xac, 0x37, 0xf9, 0xdb, 0xc8, 0x5a, 0xfa, + 0xf2, 0xe5, 0x81, 0xfe, 0xf1, 0xde, 0x40, 0xff, + 0xf0, 0xdc, 0x35, 0xff, 0xef, 0xe0, 0x67, 0xfe, + 0xd7, 0xc3, 0x49, 0xfc, 0xbe, 0xa4, 0x23, 0xb8, + 0xa7, 0x89, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0f, 0x2d, 0x5a, 0x06, + 0x14, 0x2f, 0x59, 0x41, 0x14, 0x2f, 0x59, 0x90, + 0x13, 0x30, 0x59, 0x47, 0x12, 0x2f, 0x57, 0x16, + 0xa4, 0x86, 0x00, 0x5c, 0xa8, 0x8a, 0x00, 0xf4, + 0xb6, 0x98, 0x00, 0xf8, 0xb7, 0x9c, 0x0a, 0xc4, + 0xb5, 0x9b, 0x15, 0x95, 0xb1, 0x96, 0x15, 0x7a, + 0xa7, 0x8a, 0x05, 0x67, 0xa9, 0x8c, 0x0b, 0x6d, + 0xb3, 0x98, 0x1a, 0x96, 0xc0, 0xa8, 0x2e, 0xd6, + 0xdf, 0xd0, 0x69, 0xf7, 0xec, 0xdc, 0x56, 0xfe, + 0xf1, 0xdf, 0x45, 0xff, 0xef, 0xde, 0x49, 0xfe, + 0xe6, 0xd6, 0x64, 0xfe, 0xc3, 0xab, 0x2e, 0xd6, + 0xa8, 0x8a, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x12, 0x2e, 0x5a, 0x28, + 0x26, 0x41, 0x69, 0x7c, 0x2e, 0x48, 0x6e, 0xd5, + 0x1c, 0x39, 0x62, 0x9b, 0x17, 0x33, 0x5e, 0x4b, + 0x86, 0x73, 0x13, 0x5e, 0xa6, 0x87, 0x00, 0xc1, + 0xa6, 0x88, 0x00, 0xaf, 0xa5, 0x87, 0x00, 0x6d, + 0xa2, 0x85, 0x00, 0x39, 0xa2, 0x81, 0x00, 0x1e, + 0xa2, 0x79, 0x00, 0x0a, 0xa0, 0x80, 0x00, 0x10, + 0xa4, 0x87, 0x00, 0x3e, 0xad, 0x92, 0x0f, 0x91, + 0xc9, 0xb4, 0x41, 0xea, 0xe5, 0xd5, 0x63, 0xfc, + 0xf2, 0xe2, 0x57, 0xff, 0xef, 0xdb, 0x31, 0xff, + 0xef, 0xe1, 0x78, 0xff, 0xc4, 0xae, 0x36, 0xe8, + 0xa7, 0x8a, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x13, 0x2c, 0x57, 0x00, + 0x13, 0x2c, 0x57, 0x04, 0x15, 0x31, 0x5c, 0x63, + 0x3f, 0x58, 0x7d, 0xb0, 0x67, 0x7f, 0x9e, 0xd4, + 0x2b, 0x48, 0x72, 0xe6, 0x1d, 0x3a, 0x65, 0x99, + 0x4a, 0x51, 0x3a, 0x6e, 0x97, 0x7e, 0x07, 0x6e, + 0x9f, 0x82, 0x02, 0x35, 0xa3, 0x85, 0x00, 0x10, + 0x80, 0x80, 0x00, 0x00, 0xa0, 0x84, 0x00, 0x02, + 0xa2, 0x84, 0x00, 0x12, 0xa3, 0x85, 0x00, 0x1b, + 0xa2, 0x86, 0x00, 0x2d, 0xa7, 0x8c, 0x0a, 0x59, + 0xb3, 0x98, 0x1d, 0xdf, 0xde, 0xcd, 0x63, 0xfb, + 0xf3, 0xe3, 0x5d, 0xff, 0xee, 0xd9, 0x21, 0xff, + 0xf3, 0xe7, 0x86, 0xff, 0xc5, 0xae, 0x3b, 0xf4, + 0xa6, 0x88, 0x00, 0xa0, 0xa4, 0x86, 0x00, 0x1f, + 0xa4, 0x86, 0x00, 0x1f, 0xa3, 0x85, 0x00, 0x19, + 0xa2, 0x84, 0x00, 0x0d, 0x80, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x13, 0x2c, 0x57, 0x04, + 0x13, 0x2c, 0x57, 0x1f, 0x1e, 0x3a, 0x63, 0x99, + 0x5b, 0x74, 0x95, 0xe3, 0xac, 0xc1, 0xd9, 0xe9, + 0x58, 0x76, 0xa1, 0xe9, 0x2e, 0x4d, 0x78, 0xde, + 0x1f, 0x3b, 0x5e, 0xa7, 0x2e, 0x3f, 0x47, 0x4c, + 0x54, 0x56, 0x2f, 0x10, 0xa3, 0x85, 0x00, 0x02, + 0x80, 0x80, 0x00, 0x00, 0xa0, 0x84, 0x00, 0x14, + 0xa2, 0x84, 0x00, 0x83, 0xa3, 0x85, 0x00, 0xc3, + 0xa3, 0x86, 0x00, 0xe1, 0xa5, 0x87, 0x02, 0xe7, + 0xab, 0x90, 0x10, 0xf9, 0xdb, 0xca, 0x65, 0xfe, + 0xf3, 0xe3, 0x61, 0xff, 0xef, 0xd8, 0x1b, 0xff, + 0xf6, 0xea, 0x8a, 0xff, 0xc4, 0xad, 0x3b, 0xfc, + 0xa4, 0x86, 0x00, 0xf1, 0xa4, 0x86, 0x00, 0xdf, + 0xa4, 0x86, 0x00, 0xdf, 0xa3, 0x85, 0x00, 0xb1, + 0xa2, 0x84, 0x00, 0x5e, 0x80, 0x80, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x14, 0x30, 0x59, 0x10, + 0x14, 0x30, 0x59, 0x72, 0x44, 0x62, 0x8a, 0xb8, + 0x81, 0x9c, 0xbb, 0xe2, 0xb0, 0xc7, 0xdf, 0xf4, + 0x4e, 0x70, 0xa1, 0xf6, 0x3d, 0x5f, 0x8f, 0xef, + 0x33, 0x52, 0x7e, 0xd5, 0x1c, 0x3a, 0x63, 0xa0, + 0x17, 0x33, 0x5c, 0x3f, 0x14, 0x30, 0x58, 0x11, + 0x80, 0x80, 0x00, 0x00, 0x9f, 0x83, 0x00, 0x09, + 0xa1, 0x83, 0x00, 0x3c, 0xa5, 0x87, 0x00, 0xa3, + 0xb0, 0x94, 0x12, 0xe8, 0xc2, 0xac, 0x34, 0xfc, + 0xd8, 0xc7, 0x66, 0xfe, 0xed, 0xe1, 0x8d, 0xfe, + 0xf4, 0xe5, 0x66, 0xff, 0xee, 0xd8, 0x19, 0xff, + 0xf7, 0xeb, 0x8e, 0xff, 0xe5, 0xd7, 0x7d, 0xfe, + 0xd0, 0xbd, 0x51, 0xfd, 0xbe, 0xa5, 0x27, 0xf8, + 0xaa, 0x8c, 0x06, 0xe3, 0xa5, 0x86, 0x00, 0x7f, + 0xa2, 0x84, 0x00, 0x2b, 0x80, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x14, 0x2f, 0x5b, 0x0a, 0x1c, 0x37, 0x62, 0x31, + 0x23, 0x40, 0x69, 0xb2, 0x61, 0x82, 0xa9, 0xd6, + 0x99, 0xb7, 0xd6, 0xe8, 0xa9, 0xc2, 0xdc, 0xf8, + 0x3d, 0x63, 0x98, 0xfe, 0x3b, 0x60, 0x95, 0xf7, + 0x3d, 0x5f, 0x8f, 0xf0, 0x2f, 0x4e, 0x7a, 0xdf, + 0x20, 0x3d, 0x68, 0x93, 0x19, 0x36, 0x60, 0x42, + 0x12, 0x30, 0x59, 0x10, 0x92, 0x6d, 0x00, 0x00, + 0x92, 0x6d, 0x00, 0x03, 0xa6, 0x88, 0x00, 0x53, + 0xb4, 0x9a, 0x18, 0xaa, 0xc7, 0xb2, 0x3b, 0xef, + 0xe8, 0xda, 0x7e, 0xfb, 0xf3, 0xe9, 0x92, 0xfe, + 0xf3, 0xe4, 0x61, 0xff, 0xee, 0xd8, 0x19, 0xff, + 0xf6, 0xea, 0x85, 0xff, 0xf2, 0xe6, 0x8e, 0xfe, + 0xdf, 0xce, 0x68, 0xf9, 0xc1, 0xa9, 0x2b, 0xe3, + 0xac, 0x8f, 0x09, 0x93, 0xa6, 0x87, 0x00, 0x35, + 0x9f, 0x80, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, + 0x14, 0x2f, 0x5a, 0x23, 0x20, 0x3c, 0x67, 0x6e, + 0x40, 0x5e, 0x86, 0xd0, 0x73, 0x95, 0xbc, 0xf3, + 0x9c, 0xbb, 0xdd, 0xfb, 0xa3, 0xbc, 0xd9, 0xf8, + 0x32, 0x5a, 0x92, 0xfe, 0x29, 0x52, 0x8c, 0xff, + 0x39, 0x5f, 0x94, 0xf9, 0x47, 0x68, 0x98, 0xf0, + 0x2b, 0x49, 0x75, 0xec, 0x20, 0x3e, 0x69, 0x90, + 0x17, 0x35, 0x5e, 0x3b, 0x14, 0x31, 0x59, 0x06, + 0x14, 0x31, 0x59, 0x00, 0xa4, 0x80, 0x00, 0x07, + 0xa6, 0x88, 0x00, 0x4f, 0xad, 0x91, 0x0c, 0xc7, + 0xcf, 0xbb, 0x46, 0xf2, 0xe7, 0xd8, 0x6d, 0xfc, + 0xf1, 0xe1, 0x5b, 0xfe, 0xef, 0xda, 0x2b, 0xfe, + 0xf3, 0xe5, 0x72, 0xfe, 0xe2, 0xd1, 0x61, 0xfc, + 0xc7, 0xb1, 0x35, 0xe7, 0xa5, 0x89, 0x00, 0xb0, + 0xa0, 0x83, 0x00, 0x25, 0x96, 0x78, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x02, + 0x15, 0x31, 0x5a, 0x4d, 0x24, 0x42, 0x6b, 0xcb, + 0x74, 0x95, 0xbc, 0xdf, 0x7f, 0xa6, 0xcf, 0xf4, + 0x93, 0xb5, 0xda, 0xfb, 0xa2, 0xbc, 0xd9, 0xf8, + 0x32, 0x59, 0x92, 0xfe, 0x21, 0x4b, 0x87, 0xff, + 0x29, 0x51, 0x8b, 0xfe, 0x37, 0x5c, 0x92, 0xfb, + 0x46, 0x69, 0x98, 0xf2, 0x32, 0x51, 0x7d, 0xe0, + 0x20, 0x3d, 0x67, 0x9b, 0x14, 0x31, 0x59, 0x30, + 0x14, 0x31, 0x59, 0x06, 0xa4, 0x80, 0x00, 0x01, + 0xa2, 0x86, 0x00, 0x12, 0xa6, 0x8b, 0x04, 0x46, + 0xac, 0x91, 0x0b, 0xd1, 0xd0, 0xbd, 0x4a, 0xf5, + 0xeb, 0xdd, 0x78, 0xfd, 0xf4, 0xe8, 0x87, 0xfe, + 0xe9, 0xda, 0x6f, 0xfe, 0xc4, 0xad, 0x31, 0xf4, + 0xad, 0x90, 0x0a, 0xa9, 0xa3, 0x85, 0x00, 0x2f, + 0xa1, 0x82, 0x00, 0x08, 0x96, 0x78, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x13, 0x2f, 0x59, 0x2e, + 0x30, 0x4e, 0x77, 0x7f, 0x4b, 0x6b, 0x92, 0xdc, + 0x81, 0xa5, 0xcc, 0xf1, 0x7d, 0xa6, 0xd2, 0xfb, + 0x8d, 0xb2, 0xd8, 0xfc, 0xa2, 0xbc, 0xd9, 0xf8, + 0x32, 0x5a, 0x92, 0xfe, 0x20, 0x4a, 0x87, 0xff, + 0x22, 0x4b, 0x88, 0xff, 0x28, 0x51, 0x8b, 0xfe, + 0x38, 0x5e, 0x93, 0xfa, 0x3d, 0x60, 0x90, 0xf4, + 0x36, 0x56, 0x82, 0xd6, 0x21, 0x3f, 0x68, 0x9a, + 0x18, 0x34, 0x5f, 0x34, 0x12, 0x2d, 0x59, 0x0d, + 0x9b, 0x85, 0x00, 0x03, 0xa1, 0x86, 0x00, 0x14, + 0xa4, 0x87, 0x00, 0x5f, 0xb8, 0x9f, 0x21, 0xc0, + 0xcc, 0xb7, 0x43, 0xf7, 0xdf, 0xce, 0x64, 0xfe, + 0xc4, 0xac, 0x31, 0xf8, 0xb4, 0x98, 0x16, 0xa6, + 0xa5, 0x86, 0x00, 0x4e, 0xa2, 0x80, 0x00, 0x09, + 0xa2, 0x80, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x14, 0x30, 0x5a, 0x64, + 0x3b, 0x5a, 0x82, 0xb5, 0x6f, 0x91, 0xb8, 0xde, + 0x85, 0xaa, 0xd2, 0xfa, 0x7a, 0xa4, 0xd1, 0xff, + 0x8b, 0xb0, 0xd7, 0xfc, 0xa2, 0xbd, 0xd9, 0xf8, + 0x32, 0x5a, 0x92, 0xfe, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x22, 0x4b, 0x88, 0xff, + 0x2e, 0x55, 0x8e, 0xff, 0x43, 0x67, 0x99, 0xfa, + 0x43, 0x64, 0x92, 0xf1, 0x2d, 0x4b, 0x76, 0xd7, + 0x19, 0x35, 0x60, 0x88, 0x13, 0x2f, 0x59, 0x31, + 0x10, 0x30, 0x50, 0x03, 0x9e, 0x80, 0x00, 0x02, + 0x9e, 0x80, 0x00, 0x12, 0xa5, 0x87, 0x01, 0x6f, + 0xb5, 0x9a, 0x18, 0xc5, 0xc2, 0xaa, 0x2e, 0xf0, + 0xac, 0x8e, 0x09, 0xba, 0xa6, 0x87, 0x01, 0x54, + 0xa3, 0x82, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x14, 0x30, 0x59, 0x87, + 0x3a, 0x58, 0x81, 0xd9, 0x79, 0x9b, 0xc3, 0xe1, + 0x84, 0xaa, 0xd2, 0xf6, 0x7c, 0xa5, 0xd1, 0xfc, + 0x8d, 0xb1, 0xd8, 0xfc, 0xa2, 0xbd, 0xd9, 0xf8, + 0x32, 0x5a, 0x92, 0xfe, 0x20, 0x4a, 0x87, 0xff, + 0x22, 0x4b, 0x88, 0xff, 0x26, 0x4f, 0x8a, 0xfe, + 0x31, 0x58, 0x8f, 0xfc, 0x41, 0x64, 0x97, 0xfa, + 0x45, 0x66, 0x95, 0xec, 0x38, 0x57, 0x84, 0xd5, + 0x1a, 0x35, 0x60, 0xd1, 0x14, 0x2f, 0x59, 0x56, + 0x10, 0x30, 0x50, 0x08, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xa3, 0x82, 0x00, 0x19, + 0xa3, 0x86, 0x00, 0x68, 0xa4, 0x87, 0x00, 0xbf, + 0xa4, 0x85, 0x00, 0x4d, 0xa4, 0x85, 0x00, 0x15, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x13, 0x2e, 0x59, 0x36, + 0x1f, 0x3c, 0x66, 0x8c, 0x31, 0x50, 0x79, 0xe4, + 0x77, 0x9a, 0xc0, 0xda, 0x85, 0xaa, 0xd2, 0xf0, + 0x98, 0xb9, 0xdb, 0xfc, 0xa2, 0xbd, 0xd9, 0xf8, + 0x32, 0x5a, 0x92, 0xfe, 0x23, 0x4c, 0x88, 0xff, + 0x2f, 0x56, 0x8e, 0xff, 0x40, 0x64, 0x98, 0xfc, + 0x49, 0x6b, 0x9c, 0xeb, 0x39, 0x59, 0x87, 0xe1, + 0x27, 0x46, 0x71, 0xd2, 0x1a, 0x37, 0x61, 0xb0, + 0x16, 0x32, 0x5b, 0x4e, 0x14, 0x2f, 0x58, 0x18, + 0x10, 0x30, 0x50, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xa3, 0x82, 0x00, 0x03, + 0xa3, 0x84, 0x00, 0x13, 0xa4, 0x85, 0x00, 0x25, + 0xa4, 0x85, 0x00, 0x0c, 0xa4, 0x85, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x13, 0x2e, 0x59, 0x0f, + 0x16, 0x33, 0x5c, 0x39, 0x20, 0x3e, 0x66, 0x7e, + 0x3b, 0x5a, 0x81, 0xcd, 0x66, 0x87, 0xae, 0xdd, + 0x97, 0xb5, 0xd5, 0xe8, 0xac, 0xc3, 0xde, 0xf9, + 0x41, 0x66, 0x9a, 0xfe, 0x3a, 0x5f, 0x94, 0xfb, + 0x3f, 0x62, 0x94, 0xef, 0x3b, 0x5c, 0x8c, 0xde, + 0x2d, 0x4c, 0x78, 0xe5, 0x25, 0x43, 0x6e, 0xad, + 0x1c, 0x3a, 0x64, 0x71, 0x14, 0x30, 0x59, 0x3f, + 0x14, 0x2f, 0x58, 0x15, 0x14, 0x2f, 0x57, 0x05, + 0x86, 0x00, 0x00, 0x04, 0x8a, 0x00, 0x00, 0x17, + 0x8d, 0x00, 0x00, 0x55, 0x8e, 0x00, 0x00, 0x7a, + 0x8d, 0x01, 0x00, 0x93, 0x8c, 0x03, 0x00, 0x9f, + 0x8d, 0x00, 0x00, 0x8d, 0x8e, 0x00, 0x00, 0x6f, + 0x8d, 0x00, 0x00, 0x40, 0x86, 0x00, 0x00, 0x0b, + 0x86, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x12, 0x31, 0x55, 0x09, 0x13, 0x31, 0x58, 0x29, + 0x16, 0x32, 0x5b, 0x84, 0x3e, 0x5d, 0x85, 0xb6, + 0x76, 0x91, 0xb2, 0xd6, 0x9f, 0xb4, 0xd0, 0xe9, + 0x4b, 0x6e, 0x9e, 0xee, 0x3e, 0x5f, 0x8f, 0xf0, + 0x39, 0x58, 0x85, 0xdb, 0x2b, 0x4a, 0x76, 0xb3, + 0x19, 0x36, 0x61, 0x9a, 0x14, 0x31, 0x5b, 0x5c, + 0x13, 0x2f, 0x59, 0x23, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x0f, + 0x8d, 0x03, 0x03, 0x35, 0x92, 0x09, 0x09, 0x71, + 0xa1, 0x1c, 0x1c, 0xb2, 0xa6, 0x24, 0x24, 0xd9, + 0xa7, 0x25, 0x25, 0xf0, 0xa6, 0x22, 0x22, 0xfa, + 0xa4, 0x1c, 0x1c, 0xec, 0x9f, 0x16, 0x16, 0xcd, + 0x98, 0x0e, 0x0e, 0x9c, 0x8c, 0x00, 0x00, 0x5c, + 0x8a, 0x00, 0x00, 0x22, 0x89, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0b, 0x2c, 0x59, 0x02, + 0x0b, 0x2c, 0x59, 0x11, 0x13, 0x2f, 0x59, 0x76, + 0x3b, 0x54, 0x79, 0xba, 0x6d, 0x85, 0xa5, 0xcb, + 0x46, 0x67, 0x94, 0xd2, 0x2a, 0x48, 0x76, 0xd2, + 0x1a, 0x36, 0x62, 0xb5, 0x13, 0x2f, 0x59, 0x77, + 0x11, 0x2e, 0x59, 0x1d, 0x0f, 0x2d, 0x5a, 0x05, + 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x00, + 0x86, 0x00, 0x00, 0x02, 0x8a, 0x00, 0x00, 0x37, + 0x93, 0x09, 0x09, 0x90, 0x9c, 0x15, 0x15, 0xf2, + 0xb8, 0x3b, 0x3b, 0xf9, 0xc8, 0x52, 0x51, 0xfd, + 0xd0, 0x5a, 0x59, 0xff, 0xd0, 0x55, 0x55, 0xff, + 0xc5, 0x41, 0x41, 0xff, 0xb6, 0x30, 0x30, 0xfb, + 0xa5, 0x1c, 0x1c, 0xf6, 0x93, 0x07, 0x07, 0xdd, + 0x8d, 0x02, 0x02, 0x6a, 0x8a, 0x00, 0x00, 0x22, + 0x86, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0b, 0x2c, 0x59, 0x00, + 0x0b, 0x2c, 0x59, 0x02, 0x0f, 0x2b, 0x58, 0x15, + 0x1f, 0x3a, 0x64, 0x57, 0x23, 0x3d, 0x66, 0xb6, + 0x1c, 0x38, 0x62, 0xce, 0x19, 0x36, 0x60, 0x80, + 0x16, 0x32, 0x5c, 0x38, 0x13, 0x2f, 0x59, 0x11, + 0x11, 0x2e, 0x59, 0x04, 0x0f, 0x2d, 0x5a, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x02, + 0x86, 0x00, 0x00, 0x10, 0x8e, 0x00, 0x00, 0x8e, + 0xa5, 0x1d, 0x1d, 0xe6, 0xc7, 0x49, 0x49, 0xfd, + 0xd4, 0x56, 0x56, 0xfe, 0xd5, 0x4a, 0x4a, 0xfe, + 0xd2, 0x3b, 0x3b, 0xff, 0xcf, 0x2f, 0x2f, 0xff, + 0xcb, 0x26, 0x26, 0xff, 0xc7, 0x2e, 0x2e, 0xfe, + 0xc0, 0x34, 0x34, 0xfd, 0xb2, 0x2d, 0x2d, 0xf8, + 0x93, 0x07, 0x07, 0xdd, 0x8c, 0x00, 0x00, 0x5c, + 0x86, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x55, 0x02, + 0x13, 0x2e, 0x59, 0x1a, 0x14, 0x2f, 0x59, 0x43, + 0x14, 0x2f, 0x59, 0x4f, 0x13, 0x2f, 0x58, 0x2c, + 0x12, 0x30, 0x58, 0x0d, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x0c, + 0x8d, 0x00, 0x00, 0x5a, 0x9f, 0x13, 0x13, 0xc0, + 0xb7, 0x2f, 0x2f, 0xf8, 0xd6, 0x53, 0x52, 0xff, + 0xd9, 0x42, 0x42, 0xff, 0xda, 0x34, 0x34, 0xff, + 0xd8, 0x29, 0x28, 0xff, 0xd5, 0x1f, 0x1f, 0xff, + 0xd1, 0x17, 0x17, 0xff, 0xca, 0x15, 0x15, 0xff, + 0xc6, 0x21, 0x21, 0xff, 0xc0, 0x34, 0x34, 0xfd, + 0xa5, 0x1c, 0x1c, 0xf6, 0x98, 0x0e, 0x0e, 0x9c, + 0x8d, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, + 0x00, 0x00, 0x3d, 0x02, 0x00, 0x00, 0x40, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x16, + 0x8e, 0x00, 0x00, 0x9c, 0xad, 0x21, 0x21, 0xdf, + 0xc6, 0x38, 0x38, 0xfc, 0xda, 0x44, 0x44, 0xff, + 0xdb, 0x2e, 0x2d, 0xff, 0xdf, 0x24, 0x23, 0xff, + 0xe0, 0x1d, 0x1c, 0xff, 0xdd, 0x15, 0x15, 0xff, + 0xd7, 0x0c, 0x0c, 0xff, 0xcd, 0x04, 0x04, 0xff, + 0xc8, 0x0f, 0x0f, 0xff, 0xc5, 0x29, 0x29, 0xfe, + 0xb6, 0x2e, 0x2e, 0xfb, 0x9f, 0x15, 0x15, 0xcd, + 0x8e, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x1c, + 0x8e, 0x00, 0x00, 0xc4, 0xb6, 0x2a, 0x2a, 0xf3, + 0xcf, 0x36, 0x36, 0xff, 0xd8, 0x26, 0x26, 0xff, + 0xdf, 0x22, 0x21, 0xff, 0xe5, 0x1b, 0x1b, 0xff, + 0xe8, 0x14, 0x14, 0xff, 0xe4, 0x0d, 0x0d, 0xff, + 0xdc, 0x04, 0x04, 0xff, 0xd2, 0x01, 0x01, 0xff, + 0xca, 0x06, 0x06, 0xff, 0xc4, 0x16, 0x16, 0xff, + 0xc2, 0x3a, 0x3a, 0xff, 0xa2, 0x1a, 0x1a, 0xec, + 0x8d, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x1e, + 0x8d, 0x00, 0x00, 0xd8, 0xb8, 0x2e, 0x2e, 0xfc, + 0xd2, 0x33, 0x33, 0xff, 0xd5, 0x0e, 0x0e, 0xff, + 0xdd, 0x11, 0x11, 0xff, 0xe5, 0x10, 0x10, 0xff, + 0xe9, 0x0b, 0x0b, 0xff, 0xe6, 0x04, 0x04, 0xff, + 0xdd, 0x01, 0x01, 0xff, 0xd3, 0x00, 0x00, 0xff, + 0xca, 0x02, 0x02, 0xff, 0xc3, 0x0f, 0x0f, 0xff, + 0xc7, 0x41, 0x41, 0xff, 0xa3, 0x1c, 0x1c, 0xfa, + 0x8c, 0x00, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x1d, + 0x8d, 0x00, 0x00, 0xcb, 0xb5, 0x2b, 0x2b, 0xf6, + 0xcd, 0x2f, 0x2f, 0xff, 0xd1, 0x0d, 0x0d, 0xff, + 0xd7, 0x06, 0x06, 0xff, 0xde, 0x05, 0x05, 0xff, + 0xe1, 0x03, 0x03, 0xff, 0xe0, 0x00, 0x00, 0xff, + 0xd9, 0x00, 0x00, 0xff, 0xd1, 0x00, 0x00, 0xff, + 0xc9, 0x05, 0x05, 0xff, 0xc3, 0x14, 0x14, 0xff, + 0xc3, 0x3c, 0x3c, 0xff, 0xa2, 0x1a, 0x1a, 0xf0, + 0x8d, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x18, + 0x8e, 0x00, 0x00, 0xab, 0xae, 0x24, 0x24, 0xe7, + 0xc3, 0x2d, 0x2d, 0xfd, 0xce, 0x1b, 0x1b, 0xff, + 0xd0, 0x03, 0x03, 0xff, 0xd4, 0x00, 0x00, 0xff, + 0xd7, 0x00, 0x00, 0xff, 0xd7, 0x00, 0x00, 0xff, + 0xd2, 0x00, 0x00, 0xff, 0xcc, 0x00, 0x00, 0xff, + 0xc7, 0x0b, 0x0b, 0xff, 0xc4, 0x22, 0x22, 0xfe, + 0xba, 0x33, 0x33, 0xfd, 0xa0, 0x17, 0x17, 0xd8, + 0x8e, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x11, + 0x8d, 0x00, 0x00, 0x77, 0xa2, 0x19, 0x19, 0xce, + 0xb6, 0x29, 0x29, 0xfa, 0xcb, 0x31, 0x31, 0xff, + 0xc9, 0x0c, 0x0c, 0xff, 0xcb, 0x03, 0x03, 0xff, + 0xcc, 0x01, 0x01, 0xff, 0xcc, 0x00, 0x00, 0xff, + 0xca, 0x02, 0x02, 0xff, 0xc6, 0x05, 0x05, 0xff, + 0xc5, 0x19, 0x19, 0xff, 0xc3, 0x34, 0x34, 0xfe, + 0xab, 0x24, 0x24, 0xf8, 0x9b, 0x11, 0x11, 0xb2, + 0x8d, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8a, 0x00, 0x00, 0x04, + 0x8a, 0x00, 0x00, 0x20, 0x91, 0x04, 0x04, 0xa4, + 0xa3, 0x19, 0x19, 0xf5, 0xc1, 0x38, 0x38, 0xff, + 0xc8, 0x31, 0x31, 0xff, 0xc6, 0x1b, 0x1b, 0xff, + 0xc4, 0x0b, 0x0b, 0xff, 0xc3, 0x06, 0x06, 0xff, + 0xc3, 0x0e, 0x0e, 0xff, 0xc6, 0x23, 0x23, 0xff, + 0xc3, 0x33, 0x33, 0xff, 0xb8, 0x33, 0x33, 0xfd, + 0x97, 0x0b, 0x0b, 0xf2, 0x90, 0x03, 0x03, 0x71, + 0x8a, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x00, + 0x86, 0x00, 0x00, 0x06, 0x8c, 0x00, 0x00, 0x54, + 0x97, 0x0c, 0x0c, 0xad, 0xa3, 0x19, 0x19, 0xf5, + 0xb4, 0x29, 0x29, 0xfa, 0xbd, 0x2d, 0x2d, 0xfd, + 0xc2, 0x2f, 0x2f, 0xff, 0xc4, 0x30, 0x30, 0xff, + 0xc0, 0x2e, 0x2e, 0xff, 0xb9, 0x2d, 0x2d, 0xfc, + 0xad, 0x24, 0x24, 0xf8, 0x9e, 0x15, 0x15, 0xe6, + 0x90, 0x04, 0x04, 0x90, 0x8b, 0x00, 0x00, 0x35, + 0x86, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x19, + 0x8c, 0x00, 0x00, 0x54, 0x91, 0x04, 0x04, 0xa4, + 0xa1, 0x19, 0x19, 0xce, 0xaa, 0x24, 0x24, 0xe7, + 0xaf, 0x2b, 0x2b, 0xf6, 0xb0, 0x2e, 0x2e, 0xfc, + 0xae, 0x2a, 0x2a, 0xf3, 0xa7, 0x21, 0x21, 0xdf, + 0x9c, 0x13, 0x13, 0xc0, 0x8d, 0x00, 0x00, 0x8e, + 0x8a, 0x00, 0x00, 0x37, 0x89, 0x00, 0x00, 0x0f, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x86, 0x00, 0x00, 0x07, 0x8a, 0x00, 0x00, 0x25, + 0x8d, 0x00, 0x00, 0x88, 0x8e, 0x00, 0x00, 0xc3, + 0x8d, 0x00, 0x00, 0xe8, 0x8c, 0x00, 0x00, 0xf7, + 0x8d, 0x00, 0x00, 0xe0, 0x8e, 0x00, 0x00, 0xb2, + 0x8d, 0x00, 0x00, 0x67, 0x86, 0x00, 0x00, 0x12, + 0x86, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x70, 0x6f, 0x73, 0x2d, 0x62, 0x63, 0x2d, 0x69, + 0x63, 0x6f, 0x6e, 0x2e, 0x70, 0x6e, 0x67, 0x00, + 0x58, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x06, 0x58, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x63, 0xa0, 0x20, 0x06, + 0x63, 0xa0, 0x20, 0x11, 0x63, 0xa0, 0x20, 0x0b, + 0x63, 0xa0, 0x20, 0x06, 0x63, 0xa0, 0x20, 0x06, + 0x63, 0xa0, 0x20, 0x0c, 0x63, 0xa0, 0x20, 0x0c, + 0x63, 0xa0, 0x20, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x4e, 0x89, 0x13, 0x0d, 0x5f, 0x9d, 0x1e, 0x69, + 0x62, 0x9e, 0x20, 0x76, 0x62, 0x9f, 0x20, 0x75, + 0x62, 0x9e, 0x20, 0x8d, 0x62, 0x9e, 0x20, 0x87, + 0x62, 0x9f, 0x20, 0x81, 0x62, 0x9e, 0x20, 0x78, + 0x62, 0x9e, 0x20, 0x7e, 0x62, 0x9e, 0x20, 0x61, + 0x57, 0x95, 0x1a, 0x16, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3f, 0x7f, 0x00, 0x04, 0x5f, 0x9d, 0x1c, 0x71, + 0x63, 0xa0, 0x1b, 0xa9, 0x63, 0xa0, 0x1c, 0xb6, + 0x63, 0xa0, 0x1c, 0xae, 0x63, 0xa0, 0x1d, 0xad, + 0x63, 0xa0, 0x20, 0xb0, 0x65, 0xa2, 0x20, 0xbe, + 0x65, 0xa2, 0x20, 0xa4, 0x63, 0xa0, 0x1f, 0x80, + 0x5e, 0x9a, 0x1a, 0x20, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x48, 0x91, 0x00, 0x07, 0x60, 0x9e, 0x1e, 0x8f, + 0x63, 0xa3, 0x1b, 0xfa, 0x65, 0xa9, 0x19, 0xff, + 0x65, 0xaa, 0x19, 0xff, 0x67, 0xab, 0x1c, 0xff, + 0x6c, 0xad, 0x1f, 0xff, 0x70, 0xaf, 0x20, 0xff, + 0x6d, 0xaa, 0x23, 0xff, 0x63, 0xa0, 0x20, 0xce, + 0x5a, 0x94, 0x18, 0x1f, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x62, 0x9c, 0x13, 0x0d, 0x5f, 0x9d, 0x1d, 0x93, + 0x64, 0xa5, 0x1c, 0xff, 0x6a, 0xae, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb0, 0x1b, 0xff, + 0x6f, 0xb1, 0x1e, 0xff, 0x72, 0xb1, 0x21, 0xff, + 0x6d, 0xaa, 0x23, 0xfe, 0x62, 0x9f, 0x20, 0xc5, + 0x5d, 0x90, 0x19, 0x1e, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x4c, 0x7e, 0x19, 0x0a, 0x5e, 0x9d, 0x1d, 0xcd, + 0x64, 0xa5, 0x1b, 0xff, 0x6a, 0xae, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x1a, 0xff, + 0x6d, 0xb1, 0x1c, 0xff, 0x71, 0xb1, 0x20, 0xff, + 0x6d, 0xab, 0x22, 0xff, 0x62, 0x9f, 0x1f, 0xf1, + 0x5a, 0x97, 0x19, 0x38, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x55, 0x94, 0x15, 0x0c, 0x5f, 0x9d, 0x1d, 0x95, + 0x64, 0xa5, 0x1c, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb0, 0x1c, 0xff, 0x6f, 0xb0, 0x1f, 0xff, + 0x6c, 0xaa, 0x21, 0xff, 0x62, 0x9f, 0x1f, 0xc8, + 0x5b, 0x9a, 0x1b, 0x1c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x55, 0x94, 0x15, 0x0c, 0x60, 0x9c, 0x1d, 0x94, + 0x64, 0xa5, 0x1b, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb0, 0x1b, 0xff, 0x6f, 0xb0, 0x1e, 0xff, + 0x6b, 0xaa, 0x20, 0xff, 0x60, 0x9f, 0x1f, 0xc8, + 0x5b, 0x9a, 0x1b, 0x1c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x5f, 0x9b, 0x1d, 0x8b, + 0x64, 0xa5, 0x1b, 0xf8, 0x6a, 0xae, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x1a, 0xff, 0x6e, 0xb1, 0x1d, 0xff, + 0x6a, 0xaa, 0x20, 0xff, 0x61, 0x9f, 0x1e, 0xc1, + 0x57, 0x95, 0x1a, 0x1d, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x55, 0x8d, 0x1c, 0x09, 0x60, 0x9d, 0x1d, 0x92, + 0x64, 0xa5, 0x1c, 0xfb, 0x6a, 0xae, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x1a, 0xff, 0x6d, 0xb0, 0x1c, 0xff, + 0x6a, 0xa9, 0x1f, 0xff, 0x61, 0xa0, 0x1d, 0xc4, + 0x5d, 0x99, 0x19, 0x1e, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5b, 0x99, 0x1e, 0x19, + 0x5e, 0x9b, 0x1c, 0x36, 0x5e, 0x97, 0x1c, 0x36, + 0x5e, 0x99, 0x1f, 0x49, 0x60, 0x9e, 0x1d, 0xbe, + 0x65, 0xa7, 0x1b, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x1a, 0xff, 0x6c, 0xb0, 0x1c, 0xff, + 0x69, 0xa8, 0x1e, 0xfe, 0x61, 0x9d, 0x1f, 0xc5, + 0x5d, 0x9a, 0x1e, 0x4c, 0x5f, 0x9b, 0x1e, 0x3b, + 0x5e, 0x9b, 0x1c, 0x36, 0x5e, 0x9b, 0x1c, 0x36, + 0x5b, 0x99, 0x1e, 0x19, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5c, 0x99, 0x1b, 0x37, + 0x5f, 0x9b, 0x1e, 0xb6, 0x5f, 0x9c, 0x1e, 0xe1, + 0x5f, 0x9f, 0x1c, 0xe0, 0x63, 0xa4, 0x1b, 0xff, + 0x69, 0xad, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6c, 0xad, 0x1e, 0xff, 0x66, 0xa4, 0x1f, 0xf2, + 0x64, 0xa1, 0x21, 0xdf, 0x65, 0xa2, 0x21, 0xdf, + 0x60, 0x9e, 0x1f, 0xe0, 0x5f, 0x9c, 0x1e, 0xb5, + 0x5c, 0x99, 0x1b, 0x37, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x9a, 0x1e, 0x54, 0x5f, 0x9d, 0x1e, 0xd3, + 0x61, 0xa2, 0x1b, 0xff, 0x66, 0xab, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb0, 0x1b, 0xff, + 0x71, 0xb2, 0x1f, 0xff, 0x72, 0xb2, 0x23, 0xff, + 0x76, 0xb4, 0x27, 0xfe, 0x70, 0xac, 0x27, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0x44, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x61, 0x9e, 0x21, 0x43, + 0x60, 0x9e, 0x20, 0xff, 0x65, 0xa9, 0x1b, 0xff, + 0x6a, 0xb0, 0x19, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x1a, 0xff, + 0x6e, 0xb1, 0x1d, 0xff, 0x74, 0xb5, 0x22, 0xff, + 0x70, 0xaf, 0x24, 0xff, 0x64, 0xa1, 0x20, 0xd3, + 0x5e, 0x9a, 0x1e, 0x54, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x9a, 0x1e, 0x54, 0x60, 0x9f, 0x1e, 0xd3, + 0x66, 0xa8, 0x1b, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6d, 0xb0, 0x1c, 0xff, 0x6a, 0xaa, 0x1f, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x5d, 0x9a, 0x1f, 0x44, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5e, 0x9a, 0x1e, 0x54, + 0x61, 0xa0, 0x1e, 0xd3, 0x67, 0xa9, 0x1b, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb2, 0x1a, 0xff, + 0x69, 0xac, 0x1e, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x5e, 0x9a, 0x20, 0x44, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x9a, 0x1e, 0x54, 0x61, 0xa0, 0x1e, 0xd3, + 0x68, 0xab, 0x1b, 0xff, 0x6c, 0xb1, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x67, 0xaa, 0x1b, 0xff, + 0x61, 0xa0, 0x1e, 0xd3, 0x5e, 0x9a, 0x1e, 0x54, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5e, 0x9a, 0x1e, 0x54, + 0x60, 0x9e, 0x20, 0xff, 0x69, 0xac, 0x1a, 0xff, + 0x69, 0xac, 0x1a, 0xff, 0x61, 0xa0, 0x1e, 0xd3, + 0x5e, 0x9a, 0x1e, 0x54, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x21, 0x43, 0x60, 0x9e, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x5f, 0x9b, 0x21, 0x44, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x61, 0x9f, 0x20, 0x43, + 0x60, 0x9d, 0x20, 0x44, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x69, 0x63, 0x6f, 0x6e, 0x73, 0x2f, 0x00, 0x00, + 0x19, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, + 0x05, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, + 0x13, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, + 0x16, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x0e, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, + 0x10, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, + 0x0c, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x18, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, + 0x09, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x00, 0x00, 0x70, 0x6f, 0x73, 0x2d, + 0x63, 0x63, 0x2d, 0x69, 0x63, 0x6f, 0x6e, 0x2e, + 0x70, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x58, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x06, 0x58, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5a, 0x91, 0x27, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x53, 0x88, 0x25, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x43, 0x76, 0x36, 0x01, + 0x4c, 0x7e, 0x21, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x63, 0xa3, 0x1f, 0x03, + 0x60, 0x9d, 0x21, 0x3c, 0x61, 0x9f, 0x21, 0x25, + 0x60, 0x9e, 0x21, 0x38, 0x5f, 0x9c, 0x21, 0x40, + 0x61, 0x9f, 0x21, 0x26, 0x60, 0x9e, 0x21, 0x2b, + 0x5f, 0x9c, 0x21, 0x47, 0x61, 0x9d, 0x21, 0x31, + 0x61, 0x9f, 0x21, 0x26, 0x60, 0x9c, 0x20, 0x42, + 0x60, 0x9c, 0x20, 0x45, 0x60, 0x9c, 0x20, 0x1d, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x64, 0xa4, 0x1f, 0x14, + 0x61, 0x9f, 0x20, 0xdb, 0x62, 0xa0, 0x20, 0xf6, + 0x61, 0x9f, 0x20, 0xff, 0x61, 0x9f, 0x20, 0xff, + 0x62, 0xa0, 0x20, 0xfa, 0x61, 0x9f, 0x20, 0xff, + 0x61, 0x9f, 0x20, 0xff, 0x62, 0x9f, 0x20, 0xff, + 0x62, 0xa0, 0x20, 0xfa, 0x62, 0x9f, 0x1f, 0xff, + 0x62, 0x9f, 0x20, 0xff, 0x60, 0x9c, 0x20, 0xbd, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6a, 0xad, 0x1f, 0x17, + 0x68, 0xab, 0x1b, 0xd0, 0x68, 0xab, 0x1c, 0xff, + 0x68, 0xab, 0x1b, 0xff, 0x68, 0xab, 0x1b, 0xff, + 0x68, 0xab, 0x1c, 0xff, 0x68, 0xaa, 0x1b, 0xff, + 0x68, 0xab, 0x1b, 0xff, 0x69, 0xaa, 0x1b, 0xff, + 0x68, 0xab, 0x1b, 0xff, 0x69, 0xab, 0x1b, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x61, 0x9f, 0x20, 0xc3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6c, 0xb0, 0x1a, 0x1f, + 0x6c, 0xb1, 0x19, 0xbf, 0x6b, 0xaf, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xaf, 0x1a, 0xff, 0x6b, 0xaf, 0x19, 0xff, + 0x6c, 0xb0, 0x19, 0xff, 0x6b, 0xaf, 0x19, 0xff, + 0x6b, 0xaf, 0x19, 0xff, 0x6b, 0xb1, 0x1a, 0xff, + 0x67, 0xa8, 0x1d, 0xff, 0x60, 0x9e, 0x20, 0xde, + 0x00, 0x00, 0x00, 0x00, 0x65, 0xa5, 0x21, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6d, 0xb3, 0x19, 0x26, + 0x6c, 0xb1, 0x19, 0xc2, 0x6b, 0xb0, 0x19, 0xfe, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb1, 0x19, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x6b, 0xb1, 0x1a, 0xff, + 0x6b, 0xb1, 0x1a, 0xff, 0x6d, 0xb2, 0x1b, 0xff, + 0x68, 0xaa, 0x1e, 0xff, 0x60, 0x9d, 0x20, 0xed, + 0x00, 0x00, 0x00, 0x00, 0x65, 0xa6, 0x21, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6e, 0xb5, 0x19, 0x28, + 0x6b, 0xb0, 0x19, 0xd2, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb0, 0x19, 0xff, 0x6b, 0xb1, 0x1a, 0xff, + 0x6c, 0xb0, 0x1b, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6c, 0xb1, 0x1d, 0xff, 0x6f, 0xb2, 0x1d, 0xff, + 0x69, 0xaa, 0x1f, 0xff, 0x60, 0x9d, 0x20, 0xdd, + 0x00, 0x00, 0x00, 0x00, 0x66, 0xa7, 0x22, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6d, 0xb1, 0x1a, 0x23, + 0x6c, 0xb1, 0x1a, 0xdb, 0x6c, 0xb0, 0x1a, 0xff, + 0x6c, 0xb1, 0x1b, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6d, 0xb1, 0x1c, 0xff, 0x6d, 0xb1, 0x1c, 0xff, + 0x6e, 0xb1, 0x1d, 0xff, 0x6f, 0xb2, 0x1e, 0xff, + 0x6f, 0xb2, 0x1f, 0xff, 0x71, 0xb2, 0x1f, 0xff, + 0x6a, 0xa9, 0x20, 0xfe, 0x61, 0x9e, 0x20, 0xc5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6b, 0xb2, 0x1b, 0x39, + 0x6d, 0xb1, 0x1c, 0xe7, 0x6d, 0xb1, 0x1c, 0xff, + 0x6e, 0xb1, 0x1d, 0xff, 0x6e, 0xb1, 0x1d, 0xff, + 0x6f, 0xb1, 0x1e, 0xff, 0x70, 0xb2, 0x1f, 0xff, + 0x71, 0xb2, 0x20, 0xff, 0x72, 0xb2, 0x21, 0xff, + 0x72, 0xb3, 0x22, 0xff, 0x74, 0xb4, 0x23, 0xff, + 0x6d, 0xab, 0x22, 0xff, 0x61, 0x9e, 0x20, 0xd9, + 0x00, 0x00, 0x00, 0x00, 0x66, 0xa7, 0x22, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x72, 0xb4, 0x1f, 0x43, + 0x70, 0xb2, 0x1f, 0xeb, 0x71, 0xb3, 0x20, 0xff, + 0x72, 0xb3, 0x20, 0xff, 0x73, 0xb3, 0x21, 0xff, + 0x74, 0xb4, 0x22, 0xff, 0x75, 0xb5, 0x23, 0xff, + 0x75, 0xb4, 0x24, 0xfe, 0x77, 0xb5, 0x25, 0xff, + 0x78, 0xb6, 0x26, 0xff, 0x78, 0xb7, 0x27, 0xfe, + 0x71, 0xaf, 0x26, 0xff, 0x60, 0x9d, 0x20, 0xee, + 0x00, 0x00, 0x00, 0x00, 0x65, 0xa5, 0x21, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6f, 0xae, 0x21, 0x41, + 0x6d, 0xac, 0x21, 0xf5, 0x6e, 0xad, 0x21, 0xff, + 0x6e, 0xac, 0x22, 0xff, 0x6f, 0xad, 0x22, 0xff, + 0x6f, 0xae, 0x24, 0xff, 0x70, 0xaf, 0x24, 0xff, + 0x71, 0xae, 0x25, 0xff, 0x71, 0xaf, 0x25, 0xff, + 0x72, 0xaf, 0x26, 0xff, 0x72, 0xaf, 0x27, 0xff, + 0x6f, 0xac, 0x27, 0xff, 0x61, 0x9e, 0x20, 0xf0, + 0x00, 0x00, 0x00, 0x00, 0x64, 0xa4, 0x21, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x63, 0xa1, 0x21, 0x36, + 0x65, 0xa3, 0x21, 0xda, 0x64, 0xa2, 0x21, 0xed, + 0x65, 0xa2, 0x22, 0xe6, 0x66, 0xa3, 0x22, 0xe5, + 0x64, 0xa1, 0x22, 0xec, 0x65, 0xa2, 0x22, 0xe9, + 0x68, 0xa4, 0x23, 0xe3, 0x65, 0xa2, 0x23, 0xe9, + 0x65, 0xa2, 0x22, 0xea, 0x66, 0xa2, 0x24, 0xe3, + 0x69, 0xa5, 0x25, 0xe5, 0x63, 0xa0, 0x21, 0xcf, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9e, 0x20, 0x22, + 0x60, 0x9d, 0x20, 0x56, 0x5e, 0x9b, 0x20, 0x7c, + 0x60, 0x9d, 0x20, 0x52, 0x60, 0x9e, 0x20, 0x4c, + 0x5e, 0x9b, 0x1f, 0x74, 0x5e, 0x9c, 0x1f, 0x61, + 0x61, 0x9f, 0x20, 0x3f, 0x5d, 0x9a, 0x1f, 0x63, + 0x5e, 0x9c, 0x1f, 0x6c, 0x60, 0x9e, 0x20, 0x41, + 0x5e, 0x9a, 0x1f, 0x4c, 0x5f, 0x9c, 0x1f, 0x82, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5f, 0x9d, 0x20, 0x05, + 0x5e, 0x9a, 0x20, 0x0b, 0x5c, 0x99, 0x20, 0x11, + 0x5d, 0x9a, 0x1f, 0x0a, 0x5d, 0x9b, 0x1f, 0x09, + 0x5c, 0x99, 0x1e, 0x0f, 0x5b, 0x99, 0x1e, 0x0c, + 0x5c, 0x9b, 0x1e, 0x07, 0x5a, 0x97, 0x1e, 0x0d, + 0x5b, 0x9a, 0x1e, 0x0e, 0x5b, 0x9a, 0x1e, 0x07, + 0x58, 0x94, 0x1c, 0x09, 0x5e, 0x9b, 0x1f, 0x12, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x70, 0x6f, 0x73, 0x2d, 0x62, 0x72, 0x2d, 0x69, + 0x63, 0x6f, 0x6e, 0x2e, 0x70, 0x6e, 0x67, 0x00, + 0x58, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x06, 0x58, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6c, 0xa8, 0x26, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x6a, 0xa7, 0x23, 0xff, + 0x79, 0xb7, 0x29, 0xff, 0x6c, 0xa7, 0x25, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x67, 0xa5, 0x20, 0xff, 0x74, 0xb3, 0x23, 0xff, + 0x75, 0xb5, 0x25, 0xff, 0x78, 0xb6, 0x27, 0xff, + 0x6b, 0xa7, 0x25, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x66, 0xa5, 0x1f, 0xff, + 0x6e, 0xb1, 0x1e, 0xff, 0x71, 0xb2, 0x1f, 0xff, + 0x72, 0xb2, 0x22, 0xff, 0x74, 0xb3, 0x25, 0xff, + 0x77, 0xb5, 0x26, 0xff, 0x6b, 0xa7, 0x24, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x6c, 0xb0, 0x1a, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6d, 0xb1, 0x1d, 0xff, + 0x6f, 0xb2, 0x1f, 0xff, 0x72, 0xb2, 0x20, 0xff, + 0x73, 0xb3, 0x23, 0xff, 0x75, 0xb5, 0x25, 0xff, + 0x6a, 0xa7, 0x23, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb1, 0x1b, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6e, 0xb1, 0x1d, 0xff, + 0x70, 0xb2, 0x1f, 0xff, 0x72, 0xb2, 0x21, 0xff, + 0x74, 0xb3, 0x24, 0xff, 0x69, 0xa6, 0x22, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x6c, 0xb1, 0x1b, 0xff, + 0x6d, 0xb1, 0x1c, 0xff, 0x6f, 0xb1, 0x1e, 0xff, + 0x71, 0xb2, 0x20, 0xff, 0x73, 0xb2, 0x22, 0xff, + 0x68, 0xa6, 0x22, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6e, 0xb1, 0x1d, 0xff, 0x70, 0xb2, 0x1f, 0xff, + 0x72, 0xb2, 0x21, 0xff, 0x68, 0xa6, 0x21, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x6c, 0xa7, 0x26, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb1, 0x1b, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6e, 0xb1, 0x1e, 0xff, 0x71, 0xb2, 0x1f, 0xff, + 0x68, 0xa5, 0x21, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x6a, 0xa6, 0x23, 0xff, 0x79, 0xb7, 0x29, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb0, 0x1a, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6d, 0xb1, 0x1d, 0xff, + 0x6f, 0xb2, 0x1f, 0xff, 0x72, 0xb2, 0x20, 0xff, + 0x73, 0xb3, 0x23, 0xff, 0x75, 0xb5, 0x25, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb1, 0x1b, 0xff, + 0x6c, 0xb1, 0x1c, 0xff, 0x6e, 0xb1, 0x1d, 0xff, + 0x70, 0xb2, 0x1f, 0xff, 0x72, 0xb2, 0x21, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x65, 0xa5, 0x1e, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x6c, 0xb1, 0x1b, 0xff, + 0x6d, 0xb1, 0x1c, 0xff, 0x6f, 0xb1, 0x1e, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x65, 0xa5, 0x1e, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb0, 0x1a, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x69, 0xae, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x9d, 0x20, 0xff, 0x61, 0xa2, 0x1c, 0xff, + 0x65, 0xab, 0x19, 0xff, 0x67, 0xad, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x62, 0x69, 0x6d, 0x70, 0x2f, 0x00, 0x00, 0x00, + 0x12, 0x00, 0x00, 0x00, 0x70, 0x6f, 0x73, 0x2d, + 0x63, 0x72, 0x2d, 0x69, 0x63, 0x6f, 0x6e, 0x2e, + 0x70, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x58, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x06, 0x58, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5b, 0x99, 0x1e, 0x19, 0x5c, 0x99, 0x1b, 0x37, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x9b, 0x1c, 0x36, 0x5f, 0x9c, 0x1e, 0xb5, + 0x60, 0x9d, 0x20, 0x44, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x9b, 0x1c, 0x36, 0x60, 0x9e, 0x1f, 0xe0, + 0x60, 0x9d, 0x20, 0xff, 0x5e, 0x9a, 0x1e, 0x54, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5f, 0x9b, 0x1e, 0x3b, 0x65, 0xa2, 0x21, 0xdf, + 0x70, 0xac, 0x27, 0xff, 0x64, 0xa1, 0x20, 0xd3, + 0x5d, 0x9a, 0x1f, 0x44, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x57, 0x95, 0x1a, 0x16, + 0x5e, 0x9a, 0x1a, 0x20, 0x5a, 0x94, 0x18, 0x1f, + 0x5d, 0x90, 0x19, 0x1e, 0x5a, 0x97, 0x19, 0x38, + 0x5b, 0x9a, 0x1b, 0x1c, 0x5b, 0x9a, 0x1b, 0x1c, + 0x57, 0x95, 0x1a, 0x1d, 0x5d, 0x99, 0x19, 0x1e, + 0x5d, 0x9a, 0x1e, 0x4c, 0x64, 0xa1, 0x21, 0xdf, + 0x76, 0xb4, 0x27, 0xfe, 0x70, 0xaf, 0x24, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x5e, 0x9a, 0x20, 0x44, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x62, 0x9e, 0x20, 0x61, + 0x63, 0xa0, 0x1f, 0x80, 0x63, 0xa0, 0x20, 0xce, + 0x62, 0x9f, 0x20, 0xc5, 0x62, 0x9f, 0x1f, 0xf1, + 0x62, 0x9f, 0x1f, 0xc8, 0x60, 0x9f, 0x1f, 0xc8, + 0x61, 0x9f, 0x1e, 0xc1, 0x61, 0xa0, 0x1d, 0xc4, + 0x61, 0x9d, 0x1f, 0xc5, 0x66, 0xa4, 0x1f, 0xf2, + 0x72, 0xb2, 0x23, 0xff, 0x74, 0xb5, 0x22, 0xff, + 0x6a, 0xaa, 0x1f, 0xff, 0x60, 0x9d, 0x20, 0xff, + 0x5e, 0x9a, 0x1e, 0x54, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x63, 0xa0, 0x20, 0x06, 0x62, 0x9e, 0x20, 0x7e, + 0x65, 0xa2, 0x20, 0xa4, 0x6d, 0xaa, 0x23, 0xff, + 0x6d, 0xaa, 0x23, 0xfe, 0x6d, 0xab, 0x22, 0xff, + 0x6c, 0xaa, 0x21, 0xff, 0x6b, 0xaa, 0x20, 0xff, + 0x6a, 0xaa, 0x20, 0xff, 0x6a, 0xa9, 0x1f, 0xff, + 0x69, 0xa8, 0x1e, 0xfe, 0x6c, 0xad, 0x1e, 0xff, + 0x71, 0xb2, 0x1f, 0xff, 0x6e, 0xb1, 0x1d, 0xff, + 0x6d, 0xb0, 0x1c, 0xff, 0x69, 0xac, 0x1e, 0xff, + 0x61, 0xa0, 0x1e, 0xd3, 0x5e, 0x9a, 0x1e, 0x54, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x63, 0xa0, 0x20, 0x0c, 0x62, 0x9e, 0x20, 0x78, + 0x65, 0xa2, 0x20, 0xbe, 0x70, 0xaf, 0x20, 0xff, + 0x72, 0xb1, 0x21, 0xff, 0x71, 0xb1, 0x20, 0xff, + 0x6f, 0xb0, 0x1f, 0xff, 0x6f, 0xb0, 0x1e, 0xff, + 0x6e, 0xb1, 0x1d, 0xff, 0x6d, 0xb0, 0x1c, 0xff, + 0x6c, 0xb0, 0x1c, 0xff, 0x6c, 0xb1, 0x1c, 0xff, + 0x6c, 0xb0, 0x1b, 0xff, 0x6b, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6c, 0xb2, 0x1a, 0xff, + 0x67, 0xaa, 0x1b, 0xff, 0x61, 0xa0, 0x1e, 0xd3, + 0x5f, 0x9b, 0x21, 0x44, 0x00, 0x00, 0x00, 0x00, + 0x63, 0xa0, 0x20, 0x0c, 0x62, 0x9f, 0x20, 0x81, + 0x63, 0xa0, 0x20, 0xb0, 0x6c, 0xad, 0x1f, 0xff, + 0x6f, 0xb1, 0x1e, 0xff, 0x6d, 0xb1, 0x1c, 0xff, + 0x6c, 0xb0, 0x1c, 0xff, 0x6c, 0xb0, 0x1b, 0xff, + 0x6b, 0xb0, 0x1a, 0xff, 0x6b, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x1a, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x69, 0xac, 0x1a, 0xff, + 0x60, 0x9d, 0x20, 0xff, 0x60, 0x9d, 0x20, 0x44, + 0x63, 0xa0, 0x20, 0x06, 0x62, 0x9e, 0x20, 0x87, + 0x63, 0xa0, 0x1d, 0xad, 0x67, 0xab, 0x1c, 0xff, + 0x6c, 0xb0, 0x1b, 0xff, 0x6b, 0xb0, 0x1a, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6c, 0xb1, 0x19, 0xff, 0x69, 0xac, 0x1a, 0xff, + 0x60, 0x9e, 0x20, 0xff, 0x61, 0x9f, 0x20, 0x43, + 0x63, 0xa0, 0x20, 0x06, 0x62, 0x9e, 0x20, 0x8d, + 0x63, 0xa0, 0x1c, 0xae, 0x65, 0xaa, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x68, 0xab, 0x1b, 0xff, 0x60, 0x9e, 0x20, 0xff, + 0x60, 0x9d, 0x21, 0x43, 0x00, 0x00, 0x00, 0x00, + 0x63, 0xa0, 0x20, 0x0b, 0x62, 0x9f, 0x20, 0x75, + 0x63, 0xa0, 0x1c, 0xb6, 0x65, 0xa9, 0x19, 0xff, + 0x6a, 0xae, 0x19, 0xff, 0x6a, 0xae, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x6a, 0xae, 0x19, 0xff, 0x6a, 0xae, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x6b, 0xb0, 0x19, 0xff, + 0x6b, 0xb0, 0x19, 0xff, 0x6a, 0xaf, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x67, 0xa9, 0x1b, 0xff, + 0x61, 0xa0, 0x1e, 0xd3, 0x5e, 0x9a, 0x1e, 0x54, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x63, 0xa0, 0x20, 0x11, 0x62, 0x9e, 0x20, 0x76, + 0x63, 0xa0, 0x1b, 0xa9, 0x63, 0xa3, 0x1b, 0xfa, + 0x64, 0xa5, 0x1c, 0xff, 0x64, 0xa5, 0x1b, 0xff, + 0x64, 0xa5, 0x1c, 0xff, 0x64, 0xa5, 0x1b, 0xff, + 0x64, 0xa5, 0x1b, 0xf8, 0x64, 0xa5, 0x1c, 0xfb, + 0x65, 0xa7, 0x1b, 0xff, 0x69, 0xad, 0x19, 0xff, + 0x6a, 0xaf, 0x19, 0xff, 0x6a, 0xb0, 0x19, 0xff, + 0x66, 0xa8, 0x1b, 0xff, 0x61, 0xa0, 0x1e, 0xd3, + 0x5e, 0x9a, 0x1e, 0x54, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x63, 0xa0, 0x20, 0x06, 0x5f, 0x9d, 0x1e, 0x69, + 0x5f, 0x9d, 0x1c, 0x71, 0x60, 0x9e, 0x1e, 0x8f, + 0x5f, 0x9d, 0x1d, 0x93, 0x5e, 0x9d, 0x1d, 0xcd, + 0x5f, 0x9d, 0x1d, 0x95, 0x60, 0x9c, 0x1d, 0x94, + 0x5f, 0x9b, 0x1d, 0x8b, 0x60, 0x9d, 0x1d, 0x92, + 0x60, 0x9e, 0x1d, 0xbe, 0x63, 0xa4, 0x1b, 0xff, + 0x66, 0xab, 0x19, 0xff, 0x65, 0xa9, 0x1b, 0xff, + 0x60, 0x9f, 0x1e, 0xd3, 0x5e, 0x9a, 0x1e, 0x54, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4e, 0x89, 0x13, 0x0d, + 0x3f, 0x7f, 0x00, 0x04, 0x48, 0x91, 0x00, 0x07, + 0x62, 0x9c, 0x13, 0x0d, 0x4c, 0x7e, 0x19, 0x0a, + 0x55, 0x94, 0x15, 0x0c, 0x55, 0x94, 0x15, 0x0c, + 0x00, 0x00, 0x00, 0x01, 0x55, 0x8d, 0x1c, 0x09, + 0x5e, 0x99, 0x1f, 0x49, 0x5f, 0x9f, 0x1c, 0xe0, + 0x61, 0xa2, 0x1b, 0xff, 0x60, 0x9e, 0x20, 0xff, + 0x5e, 0x9a, 0x1e, 0x54, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x97, 0x1c, 0x36, 0x5f, 0x9c, 0x1e, 0xe1, + 0x5f, 0x9d, 0x1e, 0xd3, 0x61, 0x9e, 0x21, 0x43, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5e, 0x9b, 0x1c, 0x36, 0x5f, 0x9b, 0x1e, 0xb6, + 0x5e, 0x9a, 0x1e, 0x54, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5b, 0x99, 0x1e, 0x19, 0x5c, 0x99, 0x1b, 0x37, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x2d, 0x63, 0x6f, + 0x6c, 0x6f, 0x72, 0x2e, 0x70, 0x6e, 0x67, 0x00, + 0x18, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x10, 0x18, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x80, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, + 0x80, 0x63, 0x17, 0xff, 0x80, 0x63, 0x17, 0xff, + 0x80, 0x63, 0x17, 0xff, 0x80, 0x63, 0x17, 0xff, + 0x80, 0x63, 0x17, 0xff, 0x80, 0x63, 0x17, 0xff, + 0x80, 0x5c, 0x1f, 0xff, 0x80, 0x5c, 0x1f, 0xff, + 0x80, 0x54, 0x27, 0xff, 0x80, 0x54, 0x27, 0xff, + 0x80, 0x4c, 0x2d, 0xff, 0x80, 0x4c, 0x2d, 0xff, + 0x80, 0x43, 0x31, 0xff, 0x80, 0x43, 0x31, 0xff, + 0x80, 0x39, 0x33, 0xff, 0x80, 0x39, 0x33, 0xff, + 0x80, 0x33, 0x3a, 0xff, 0x80, 0x33, 0x3a, 0xff, + 0x80, 0x31, 0x45, 0xff, 0x80, 0x31, 0x45, 0xff, + 0x80, 0x2c, 0x4e, 0xff, 0x80, 0x2c, 0x4e, 0xff, + 0x80, 0x26, 0x56, 0xff, 0x80, 0x26, 0x56, 0xff, + 0x80, 0x1e, 0x5d, 0xff, 0x80, 0x1e, 0x5d, 0xff, + 0x80, 0x15, 0x63, 0xff, 0x80, 0x15, 0x63, 0xff, + 0x80, 0x15, 0x63, 0xff, 0x80, 0x15, 0x63, 0xff, + 0x80, 0x15, 0x63, 0xff, 0x80, 0x15, 0x63, 0xff, + 0x80, 0x63, 0x17, 0xff, 0x80, 0x63, 0x17, 0xff, + 0x80, 0x63, 0x17, 0xff, 0x80, 0x63, 0x17, 0xff, + 0x80, 0x63, 0x17, 0xff, 0x80, 0x63, 0x17, 0xff, + 0x80, 0x5c, 0x1f, 0xff, 0x80, 0x5c, 0x1f, 0xff, + 0x80, 0x54, 0x27, 0xff, 0x80, 0x54, 0x27, 0xff, + 0x80, 0x4c, 0x2d, 0xff, 0x80, 0x4c, 0x2d, 0xff, + 0x80, 0x43, 0x31, 0xff, 0x80, 0x43, 0x31, 0xff, + 0x80, 0x39, 0x33, 0xff, 0x80, 0x39, 0x33, 0xff, + 0x80, 0x33, 0x3a, 0xff, 0x80, 0x33, 0x3a, 0xff, + 0x80, 0x31, 0x45, 0xff, 0x80, 0x31, 0x45, 0xff, + 0x80, 0x2c, 0x4e, 0xff, 0x80, 0x2c, 0x4e, 0xff, + 0x80, 0x26, 0x56, 0xff, 0x80, 0x26, 0x56, 0xff, + 0x80, 0x1e, 0x5d, 0xff, 0x80, 0x1e, 0x5d, 0xff, + 0x80, 0x15, 0x63, 0xff, 0x80, 0x15, 0x63, 0xff, + 0x80, 0x15, 0x63, 0xff, 0x80, 0x15, 0x63, 0xff, + 0x80, 0x15, 0x63, 0xff, 0x80, 0x15, 0x63, 0xff, + 0x80, 0x63, 0x17, 0xff, 0x80, 0x63, 0x17, 0xff, + 0xff, 0xef, 0xae, 0xff, 0xff, 0xef, 0xae, 0xff, + 0xff, 0xea, 0xb5, 0xff, 0xff, 0xea, 0xb5, 0xff, + 0xff, 0xe5, 0xbb, 0xff, 0xff, 0xe5, 0xbb, 0xff, + 0xff, 0xe0, 0xc0, 0xff, 0xff, 0xe0, 0xc0, 0xff, + 0xff, 0xdb, 0xc4, 0xff, 0xff, 0xdb, 0xc4, 0xff, + 0xff, 0xd4, 0xc8, 0xff, 0xff, 0xd4, 0xc8, 0xff, + 0xff, 0xcd, 0xc9, 0xff, 0xff, 0xcd, 0xc9, 0xff, + 0xff, 0xc9, 0xce, 0xff, 0xff, 0xc9, 0xce, 0xff, + 0xff, 0xc7, 0xd5, 0xff, 0xff, 0xc7, 0xd5, 0xff, + 0xff, 0xc4, 0xdc, 0xff, 0xff, 0xc4, 0xdc, 0xff, + 0xff, 0xc0, 0xe1, 0xff, 0xff, 0xc0, 0xe1, 0xff, + 0xff, 0xba, 0xe6, 0xff, 0xff, 0xba, 0xe6, 0xff, + 0xff, 0xb4, 0xeb, 0xff, 0xff, 0xb4, 0xeb, 0xff, + 0xff, 0xad, 0xf0, 0xff, 0xff, 0xad, 0xf0, 0xff, + 0x80, 0x15, 0x63, 0xff, 0x80, 0x15, 0x63, 0xff, + 0x80, 0x63, 0x17, 0xff, 0x80, 0x63, 0x17, 0xff, + 0xff, 0xef, 0xae, 0xff, 0xff, 0xef, 0xae, 0xff, + 0xff, 0xea, 0xb5, 0xff, 0xff, 0xea, 0xb5, 0xff, + 0xff, 0xe5, 0xbb, 0xff, 0xff, 0xe5, 0xbb, 0xff, + 0xff, 0xe0, 0xc0, 0xff, 0xff, 0xe0, 0xc0, 0xff, + 0xff, 0xdb, 0xc4, 0xff, 0xff, 0xdb, 0xc4, 0xff, + 0xff, 0xd4, 0xc8, 0xff, 0xff, 0xd4, 0xc8, 0xff, + 0xff, 0xcd, 0xc9, 0xff, 0xff, 0xcd, 0xc9, 0xff, + 0xff, 0xc9, 0xce, 0xff, 0xff, 0xc9, 0xce, 0xff, + 0xff, 0xc7, 0xd5, 0xff, 0xff, 0xc7, 0xd5, 0xff, + 0xff, 0xc4, 0xdc, 0xff, 0xff, 0xc4, 0xdc, 0xff, + 0xff, 0xc0, 0xe1, 0xff, 0xff, 0xc0, 0xe1, 0xff, + 0xff, 0xba, 0xe6, 0xff, 0xff, 0xba, 0xe6, 0xff, + 0xff, 0xb4, 0xeb, 0xff, 0xff, 0xb4, 0xeb, 0xff, + 0xff, 0xad, 0xf0, 0xff, 0xff, 0xad, 0xf0, 0xff, + 0x80, 0x15, 0x63, 0xff, 0x80, 0x15, 0x63, 0xff, + 0x80, 0x63, 0x17, 0xff, 0x80, 0x63, 0x17, 0xff, + 0xff, 0xef, 0xae, 0xff, 0xff, 0xef, 0xae, 0xff, + 0xff, 0xc7, 0x35, 0xff, 0xff, 0xc3, 0x39, 0xff, + 0xff, 0xbe, 0x3f, 0xff, 0xff, 0xb8, 0x46, 0xff, + 0xff, 0xb1, 0x4e, 0xff, 0xff, 0xa9, 0x54, 0xff, + 0xff, 0xa1, 0x5b, 0xff, 0xff, 0x99, 0x60, 0xff, + 0xff, 0x90, 0x65, 0xff, 0xff, 0x87, 0x69, 0xff, + 0xff, 0x7e, 0x6d, 0xff, 0xff, 0x77, 0x72, 0xff, + 0xff, 0x70, 0x79, 0xff, 0xff, 0x6c, 0x81, 0xff, + 0xff, 0x67, 0x8a, 0xff, 0xff, 0x63, 0x93, 0xff, + 0xff, 0x5e, 0x9b, 0xff, 0xff, 0x59, 0xa4, 0xff, + 0xff, 0x52, 0xac, 0xff, 0xff, 0x4b, 0xb3, 0xff, + 0xff, 0x44, 0xba, 0xff, 0xff, 0x3d, 0xc0, 0xff, + 0xff, 0x36, 0xc5, 0xff, 0xff, 0x32, 0xc8, 0xff, + 0xf2, 0x89, 0xde, 0xff, 0xf2, 0x89, 0xde, 0xff, + 0x80, 0x15, 0x63, 0xff, 0x80, 0x15, 0x63, 0xff, + 0x80, 0x63, 0x17, 0xff, 0x80, 0x63, 0x17, 0xff, + 0xff, 0xef, 0xae, 0xff, 0xff, 0xef, 0xae, 0xff, + 0xff, 0xcc, 0x3a, 0xff, 0xff, 0xc9, 0x3e, 0xff, + 0xff, 0xc4, 0x45, 0xff, 0xff, 0xbe, 0x4c, 0xff, + 0xff, 0xb7, 0x53, 0xff, 0xff, 0xaf, 0x5a, 0xff, + 0xff, 0xa7, 0x61, 0xff, 0xff, 0x9f, 0x66, 0xff, + 0xff, 0x96, 0x6b, 0xff, 0xff, 0x8d, 0x6f, 0xff, + 0xff, 0x85, 0x74, 0xff, 0xff, 0x7d, 0x79, 0xff, + 0xff, 0x77, 0x80, 0xff, 0xff, 0x72, 0x87, 0xff, + 0xff, 0x6e, 0x90, 0xff, 0xff, 0x69, 0x99, 0xff, + 0xff, 0x64, 0xa2, 0xff, 0xff, 0x5e, 0xaa, 0xff, + 0xff, 0x58, 0xb2, 0xff, 0xff, 0x50, 0xb9, 0xff, + 0xff, 0x49, 0xc0, 0xff, 0xff, 0x42, 0xc6, 0xff, + 0xff, 0x3b, 0xcb, 0xff, 0xff, 0x37, 0xce, 0xff, + 0xf2, 0x89, 0xde, 0xff, 0xf2, 0x89, 0xde, 0xff, + 0x80, 0x15, 0x63, 0xff, 0x80, 0x15, 0x63, 0xff, + 0x80, 0x6e, 0x20, 0xff, 0x80, 0x6e, 0x20, 0xff, + 0xff, 0xf7, 0xb4, 0xff, 0xff, 0xf7, 0xb4, 0xff, + 0xff, 0xd4, 0x40, 0xff, 0xff, 0xd1, 0x45, 0xff, + 0xff, 0xcc, 0x4b, 0xff, 0xff, 0xc6, 0x53, 0xff, + 0xff, 0xbf, 0x5b, 0xff, 0xff, 0xb8, 0x62, 0xff, + 0xff, 0xb0, 0x69, 0xff, 0xff, 0xa8, 0x6f, 0xff, + 0xff, 0xa0, 0x74, 0xff, 0xff, 0x97, 0x78, 0xff, + 0xff, 0x8e, 0x7d, 0xff, 0xff, 0x87, 0x82, 0xff, + 0xff, 0x81, 0x89, 0xff, 0xff, 0x7c, 0x91, 0xff, + 0xff, 0x77, 0x9a, 0xff, 0xff, 0x72, 0xa2, 0xff, + 0xff, 0x6d, 0xab, 0xff, 0xff, 0x67, 0xb3, 0xff, + 0xff, 0x60, 0xbb, 0xff, 0xff, 0x58, 0xc2, 0xff, + 0xff, 0x50, 0xc8, 0xff, 0xff, 0x48, 0xce, 0xff, + 0xff, 0x42, 0xd3, 0xff, 0xff, 0x3d, 0xd6, 0xff, + 0xec, 0x90, 0xe3, 0xff, 0xec, 0x90, 0xe3, 0xff, + 0x80, 0x1f, 0x6f, 0xff, 0x80, 0x1f, 0x6f, 0xff, + 0x80, 0x6e, 0x20, 0xff, 0x80, 0x6e, 0x20, 0xff, + 0xff, 0xf7, 0xb4, 0xff, 0xff, 0xf7, 0xb4, 0xff, + 0xfe, 0xde, 0x48, 0xff, 0xfe, 0xdb, 0x4d, 0xff, + 0xff, 0xd6, 0x54, 0xff, 0xff, 0xd0, 0x5c, 0xff, + 0xff, 0xca, 0x64, 0xff, 0xff, 0xc3, 0x6c, 0xff, + 0xff, 0xbb, 0x73, 0xff, 0xff, 0xb3, 0x79, 0xff, + 0xff, 0xab, 0x7f, 0xff, 0xff, 0xa2, 0x84, 0xff, + 0xff, 0x9a, 0x88, 0xff, 0xff, 0x92, 0x8e, 0xff, + 0xff, 0x8c, 0x95, 0xff, 0xff, 0x87, 0x9c, 0xff, + 0xff, 0x82, 0xa5, 0xff, 0xff, 0x7d, 0xad, 0xff, + 0xff, 0x77, 0xb6, 0xff, 0xff, 0x71, 0xbd, 0xff, + 0xff, 0x69, 0xc5, 0xff, 0xff, 0x61, 0xcc, 0xff, + 0xff, 0x59, 0xd2, 0xff, 0xff, 0x51, 0xd8, 0xff, + 0xfe, 0x4a, 0xdc, 0xff, 0xfe, 0x45, 0xdf, 0xff, + 0xec, 0x90, 0xe3, 0xff, 0xec, 0x90, 0xe3, 0xff, + 0x80, 0x1f, 0x6f, 0xff, 0x80, 0x1f, 0x6f, 0xff, + 0x80, 0x79, 0x28, 0xff, 0x80, 0x79, 0x28, 0xff, + 0xfe, 0xfe, 0xba, 0xff, 0xfe, 0xfe, 0xba, 0xff, + 0xfd, 0xe8, 0x50, 0xff, 0xfd, 0xe5, 0x55, 0xff, + 0xfe, 0xe1, 0x5c, 0xff, 0xfe, 0xdb, 0x65, 0xff, + 0xff, 0xd5, 0x6e, 0xff, 0xff, 0xce, 0x76, 0xff, + 0xff, 0xc7, 0x7e, 0xff, 0xff, 0xbf, 0x85, 0xff, + 0xff, 0xb7, 0x8b, 0xff, 0xff, 0xaf, 0x90, 0xff, + 0xff, 0xa7, 0x95, 0xff, 0xff, 0x9f, 0x9b, 0xff, + 0xff, 0x99, 0xa1, 0xff, 0xff, 0x93, 0xa9, 0xff, + 0xff, 0x8e, 0xb2, 0xff, 0xff, 0x89, 0xba, 0xff, + 0xff, 0x83, 0xc2, 0xff, 0xff, 0x7b, 0xc9, 0xff, + 0xff, 0x73, 0xd0, 0xff, 0xfe, 0x6b, 0xd7, 0xff, + 0xfe, 0x62, 0xdd, 0xff, 0xfd, 0x59, 0xe2, 0xff, + 0xfd, 0x52, 0xe6, 0xff, 0xfc, 0x4d, 0xe9, 0xff, + 0xe8, 0x96, 0xe9, 0xff, 0xe8, 0x96, 0xe9, 0xff, + 0x80, 0x27, 0x7a, 0xff, 0x80, 0x27, 0x7a, 0xff, + 0x80, 0x79, 0x28, 0xff, 0x80, 0x79, 0x28, 0xff, + 0xfe, 0xfe, 0xba, 0xff, 0xfe, 0xfe, 0xba, 0xff, + 0xfa, 0xf0, 0x58, 0xff, 0xfb, 0xed, 0x5d, 0xff, + 0xfc, 0xea, 0x65, 0xff, 0xfd, 0xe5, 0x6d, 0xff, + 0xfe, 0xdf, 0x77, 0xff, 0xfe, 0xd9, 0x80, 0xff, + 0xff, 0xd3, 0x89, 0xff, 0xff, 0xcb, 0x90, 0xff, + 0xff, 0xc3, 0x96, 0xff, 0xff, 0xbb, 0x9c, 0xff, + 0xff, 0xb3, 0xa2, 0xff, 0xff, 0xac, 0xa7, 0xff, + 0xff, 0xa5, 0xae, 0xff, 0xff, 0xa0, 0xb6, 0xff, + 0xff, 0x9a, 0xbe, 0xff, 0xff, 0x94, 0xc6, 0xff, + 0xff, 0x8e, 0xce, 0xff, 0xff, 0x86, 0xd5, 0xff, + 0xfe, 0x7d, 0xdb, 0xff, 0xfd, 0x74, 0xe1, 0xff, + 0xfc, 0x6a, 0xe7, 0xff, 0xfb, 0x61, 0xeb, 0xff, + 0xfb, 0x59, 0xef, 0xff, 0xfa, 0x54, 0xf1, 0xff, + 0xe8, 0x96, 0xe9, 0xff, 0xe8, 0x96, 0xe9, 0xff, + 0x80, 0x27, 0x7a, 0xff, 0x80, 0x27, 0x7a, 0xff, + 0x7a, 0x80, 0x2f, 0xff, 0x7a, 0x80, 0x2f, 0xff, + 0xf7, 0xff, 0xbe, 0xff, 0xf7, 0xff, 0xbe, 0xff, + 0xf5, 0xf7, 0x5e, 0xff, 0xf7, 0xf5, 0x64, 0xff, + 0xf9, 0xf2, 0x6c, 0xff, 0xfa, 0xee, 0x75, 0xff, + 0xfc, 0xe9, 0x7f, 0xff, 0xfd, 0xe3, 0x89, 0xff, + 0xfe, 0xdd, 0x92, 0xff, 0xff, 0xd7, 0x9a, 0xff, + 0xff, 0xcf, 0xa2, 0xff, 0xff, 0xc7, 0xa8, 0xff, + 0xff, 0xc0, 0xae, 0xff, 0xff, 0xb9, 0xb4, 0xff, + 0xff, 0xb2, 0xbb, 0xff, 0xff, 0xac, 0xc2, 0xff, + 0xff, 0xa6, 0xca, 0xff, 0xff, 0xa0, 0xd2, 0xff, + 0xfe, 0x98, 0xd9, 0xff, 0xfe, 0x90, 0xdf, 0xff, + 0xfd, 0x86, 0xe5, 0xff, 0xfb, 0x7c, 0xeb, 0xff, + 0xfa, 0x72, 0xef, 0xff, 0xf8, 0x69, 0xf3, 0xff, + 0xf6, 0x61, 0xf6, 0xff, 0xf4, 0x5b, 0xf8, 0xff, + 0xdf, 0x9b, 0xea, 0xff, 0xdf, 0x9b, 0xea, 0xff, + 0x7a, 0x2d, 0x80, 0xff, 0x7a, 0x2d, 0x80, 0xff, + 0x7a, 0x80, 0x2f, 0xff, 0x7a, 0x80, 0x2f, 0xff, + 0xf7, 0xff, 0xbe, 0xff, 0xf7, 0xff, 0xbe, 0xff, + 0xee, 0xfb, 0x64, 0xff, 0xf0, 0xfa, 0x6a, 0xff, + 0xf3, 0xf8, 0x73, 0xff, 0xf6, 0xf5, 0x7d, 0xff, + 0xf8, 0xf1, 0x87, 0xff, 0xfa, 0xed, 0x91, 0xff, + 0xfc, 0xe7, 0x9b, 0xff, 0xfd, 0xe2, 0xa4, 0xff, + 0xfe, 0xdb, 0xac, 0xff, 0xff, 0xd4, 0xb3, 0xff, + 0xff, 0xcc, 0xba, 0xff, 0xff, 0xc5, 0xc1, 0xff, + 0xff, 0xbf, 0xc8, 0xff, 0xff, 0xb8, 0xcf, 0xff, + 0xff, 0xb2, 0xd6, 0xff, 0xfe, 0xaa, 0xdd, 0xff, + 0xfd, 0xa2, 0xe3, 0xff, 0xfc, 0x99, 0xe9, 0xff, + 0xfa, 0x8f, 0xee, 0xff, 0xf7, 0x84, 0xf2, 0xff, + 0xf4, 0x79, 0xf5, 0xff, 0xf1, 0x6f, 0xf8, 0xff, + 0xef, 0x66, 0xfa, 0xff, 0xed, 0x60, 0xfb, 0xff, + 0xdf, 0x9b, 0xea, 0xff, 0xdf, 0x9b, 0xea, 0xff, + 0x7a, 0x2d, 0x80, 0xff, 0x7a, 0x2d, 0x80, 0xff, + 0x6f, 0x80, 0x34, 0xff, 0x6f, 0x80, 0x34, 0xff, + 0xef, 0xff, 0xc1, 0xff, 0xef, 0xff, 0xc1, 0xff, + 0xe5, 0xfe, 0x69, 0xff, 0xe7, 0xfd, 0x6f, 0xff, + 0xeb, 0xfb, 0x78, 0xff, 0xef, 0xf9, 0x83, 0xff, + 0xf2, 0xf7, 0x8e, 0xff, 0xf6, 0xf4, 0x99, 0xff, + 0xf9, 0xf0, 0xa4, 0xff, 0xfb, 0xeb, 0xae, 0xff, + 0xfc, 0xe5, 0xb7, 0xff, 0xfd, 0xdf, 0xbf, 0xff, + 0xfe, 0xd8, 0xc6, 0xff, 0xff, 0xd2, 0xcd, 0xff, + 0xff, 0xcb, 0xd4, 0xff, 0xfe, 0xc4, 0xdb, 0xff, + 0xfd, 0xbc, 0xe1, 0xff, 0xfc, 0xb4, 0xe7, 0xff, + 0xfa, 0xab, 0xed, 0xff, 0xf8, 0xa1, 0xf1, 0xff, + 0xf5, 0x96, 0xf5, 0xff, 0xf1, 0x8b, 0xf8, 0xff, + 0xee, 0x7f, 0xfa, 0xff, 0xea, 0x75, 0xfc, 0xff, + 0xe6, 0x6c, 0xfd, 0xff, 0xe4, 0x66, 0xfe, 0xff, + 0xd6, 0x9f, 0xea, 0xff, 0xd6, 0x9f, 0xea, 0xff, + 0x6e, 0x32, 0x80, 0xff, 0x6e, 0x32, 0x80, 0xff, + 0x6f, 0x80, 0x34, 0xff, 0x6f, 0x80, 0x34, 0xff, + 0xef, 0xff, 0xc1, 0xff, 0xef, 0xff, 0xc1, 0xff, + 0xdb, 0xff, 0x6e, 0xff, 0xde, 0xfe, 0x74, 0xff, + 0xe2, 0xfd, 0x7d, 0xff, 0xe6, 0xfc, 0x87, 0xff, + 0xeb, 0xfb, 0x93, 0xff, 0xef, 0xf9, 0x9f, 0xff, + 0xf3, 0xf6, 0xaa, 0xff, 0xf7, 0xf3, 0xb5, 0xff, + 0xf9, 0xee, 0xbf, 0xff, 0xfb, 0xe9, 0xc8, 0xff, + 0xfc, 0xe3, 0xd0, 0xff, 0xfd, 0xdd, 0xd8, 0xff, + 0xfd, 0xd6, 0xdf, 0xff, 0xfc, 0xce, 0xe5, 0xff, + 0xfa, 0xc6, 0xeb, 0xff, 0xf8, 0xbc, 0xf0, 0xff, + 0xf6, 0xb2, 0xf4, 0xff, 0xf2, 0xa7, 0xf7, 0xff, + 0xee, 0x9c, 0xfa, 0xff, 0xea, 0x90, 0xfb, 0xff, + 0xe5, 0x84, 0xfd, 0xff, 0xe0, 0x79, 0xfe, 0xff, + 0xdc, 0x70, 0xff, 0xff, 0xd9, 0x6a, 0xff, 0xff, + 0xd6, 0x9f, 0xea, 0xff, 0xd6, 0x9f, 0xea, 0xff, + 0x6e, 0x32, 0x80, 0xff, 0x6e, 0x32, 0x80, 0xff, + 0x64, 0x80, 0x37, 0xff, 0x64, 0x80, 0x37, 0xff, + 0xe6, 0xff, 0xc2, 0xff, 0xe6, 0xff, 0xc2, 0xff, + 0xcf, 0xff, 0x70, 0xff, 0xd2, 0xff, 0x76, 0xff, + 0xd7, 0xfe, 0x80, 0xff, 0xdc, 0xfe, 0x8b, 0xff, + 0xe1, 0xfd, 0x97, 0xff, 0xe7, 0xfc, 0xa3, 0xff, + 0xec, 0xfa, 0xaf, 0xff, 0xf0, 0xf8, 0xbb, 0xff, + 0xf4, 0xf5, 0xc6, 0xff, 0xf7, 0xf1, 0xd0, 0xff, + 0xf9, 0xec, 0xd9, 0xff, 0xfa, 0xe6, 0xe1, 0xff, + 0xfa, 0xdf, 0xe8, 0xff, 0xf8, 0xd7, 0xed, 0xff, + 0xf6, 0xcd, 0xf2, 0xff, 0xf2, 0xc3, 0xf6, 0xff, + 0xef, 0xb8, 0xf9, 0xff, 0xea, 0xac, 0xfb, 0xff, + 0xe5, 0xa0, 0xfc, 0xff, 0xe0, 0x94, 0xfd, 0xff, + 0xda, 0x88, 0xfe, 0xff, 0xd5, 0x7d, 0xff, 0xff, + 0xd0, 0x73, 0xff, 0xff, 0xcd, 0x6d, 0xff, 0xff, + 0xcc, 0xa0, 0xea, 0xff, 0xcc, 0xa0, 0xea, 0xff, + 0x63, 0x35, 0x80, 0xff, 0x63, 0x35, 0x80, 0xff, + 0x64, 0x80, 0x37, 0xff, 0x64, 0x80, 0x37, 0xff, + 0xe6, 0xff, 0xc2, 0xff, 0xe6, 0xff, 0xc2, 0xff, + 0xc3, 0xff, 0x72, 0xff, 0xc6, 0xff, 0x78, 0xff, + 0xcb, 0xff, 0x82, 0xff, 0xd0, 0xff, 0x8d, 0xff, + 0xd6, 0xfe, 0x9a, 0xff, 0xdc, 0xfe, 0xa6, 0xff, + 0xe2, 0xfd, 0xb3, 0xff, 0xe7, 0xfc, 0xbf, 0xff, + 0xec, 0xfa, 0xcb, 0xff, 0xf0, 0xf7, 0xd6, 0xff, + 0xf3, 0xf3, 0xe0, 0xff, 0xf4, 0xed, 0xe8, 0xff, + 0xf4, 0xe6, 0xef, 0xff, 0xf2, 0xdd, 0xf4, 0xff, + 0xef, 0xd2, 0xf8, 0xff, 0xeb, 0xc7, 0xfa, 0xff, + 0xe6, 0xbb, 0xfc, 0xff, 0xe0, 0xaf, 0xfd, 0xff, + 0xda, 0xa2, 0xfe, 0xff, 0xd5, 0x96, 0xfe, 0xff, + 0xcf, 0x89, 0xff, 0xff, 0xc9, 0x7e, 0xff, 0xff, + 0xc4, 0x74, 0xff, 0xff, 0xc1, 0x6e, 0xff, 0xff, + 0xcc, 0xa0, 0xea, 0xff, 0xcc, 0xa0, 0xea, 0xff, + 0x63, 0x35, 0x80, 0xff, 0x63, 0x35, 0x80, 0xff, + 0x57, 0x80, 0x37, 0xff, 0x57, 0x80, 0x37, 0xff, + 0xdd, 0xff, 0xc3, 0xff, 0xdd, 0xff, 0xc3, 0xff, + 0xb6, 0xff, 0x72, 0xff, 0xb9, 0xff, 0x79, 0xff, + 0xbe, 0xff, 0x82, 0xff, 0xc4, 0xff, 0x8e, 0xff, + 0xca, 0xff, 0x9a, 0xff, 0xd0, 0xff, 0xa7, 0xff, + 0xd6, 0xfe, 0xb4, 0xff, 0xdc, 0xfe, 0xc1, 0xff, + 0xe2, 0xfc, 0xcd, 0xff, 0xe7, 0xfb, 0xd9, 0xff, + 0xeb, 0xf7, 0xe4, 0xff, 0xed, 0xf2, 0xed, 0xff, + 0xec, 0xea, 0xf4, 0xff, 0xea, 0xe1, 0xf8, 0xff, + 0xe6, 0xd6, 0xfb, 0xff, 0xe0, 0xca, 0xfd, 0xff, + 0xda, 0xbd, 0xfe, 0xff, 0xd4, 0xb1, 0xfe, 0xff, + 0xce, 0xa4, 0xff, 0xff, 0xc8, 0x97, 0xff, 0xff, + 0xc2, 0x8a, 0xff, 0xff, 0xbc, 0x7f, 0xff, 0xff, + 0xb7, 0x75, 0xff, 0xff, 0xb4, 0x6f, 0xff, 0xff, + 0xc1, 0xa1, 0xea, 0xff, 0xc1, 0xa1, 0xea, 0xff, + 0x56, 0x35, 0x80, 0xff, 0x56, 0x35, 0x80, 0xff, + 0x57, 0x80, 0x37, 0xff, 0x57, 0x80, 0x37, 0xff, + 0xdd, 0xff, 0xc3, 0xff, 0xdd, 0xff, 0xc3, 0xff, + 0xa8, 0xff, 0x71, 0xff, 0xab, 0xff, 0x78, 0xff, + 0xb0, 0xff, 0x81, 0xff, 0xb6, 0xff, 0x8d, 0xff, + 0xbc, 0xff, 0x9a, 0xff, 0xc3, 0xff, 0xa7, 0xff, + 0xca, 0xff, 0xb4, 0xff, 0xd0, 0xff, 0xc1, 0xff, + 0xd7, 0xfe, 0xcf, 0xff, 0xdd, 0xfc, 0xdb, 0xff, + 0xe1, 0xf9, 0xe7, 0xff, 0xe3, 0xf5, 0xf0, 0xff, + 0xe3, 0xed, 0xf7, 0xff, 0xe0, 0xe3, 0xfb, 0xff, + 0xdb, 0xd8, 0xfd, 0xff, 0xd5, 0xcb, 0xff, 0xff, + 0xcf, 0xbe, 0xff, 0xff, 0xc8, 0xb0, 0xff, 0xff, + 0xc1, 0xa3, 0xff, 0xff, 0xbb, 0x96, 0xff, 0xff, + 0xb4, 0x89, 0xff, 0xff, 0xae, 0x7e, 0xff, 0xff, + 0xa9, 0x74, 0xff, 0xff, 0xa6, 0x6e, 0xff, 0xff, + 0xc1, 0xa1, 0xea, 0xff, 0xc1, 0xa1, 0xea, 0xff, + 0x56, 0x35, 0x80, 0xff, 0x56, 0x35, 0x80, 0xff, + 0x49, 0x80, 0x35, 0xff, 0x49, 0x80, 0x35, 0xff, + 0xd4, 0xff, 0xc1, 0xff, 0xd4, 0xff, 0xc1, 0xff, + 0x9a, 0xff, 0x70, 0xff, 0x9d, 0xff, 0x76, 0xff, + 0xa2, 0xff, 0x80, 0xff, 0xa8, 0xff, 0x8b, 0xff, + 0xaf, 0xff, 0x98, 0xff, 0xb6, 0xff, 0xa6, 0xff, + 0xbd, 0xff, 0xb3, 0xff, 0xc4, 0xff, 0xc1, 0xff, + 0xcb, 0xff, 0xcf, 0xff, 0xd1, 0xfd, 0xdc, 0xff, + 0xd6, 0xfb, 0xe8, 0xff, 0xd8, 0xf6, 0xf1, 0xff, + 0xd8, 0xee, 0xf7, 0xff, 0xd5, 0xe4, 0xfc, 0xff, + 0xd0, 0xd8, 0xfe, 0xff, 0xc9, 0xcb, 0xff, 0xff, + 0xc2, 0xbd, 0xff, 0xff, 0xbb, 0xaf, 0xff, 0xff, + 0xb4, 0xa2, 0xff, 0xff, 0xad, 0x94, 0xff, 0xff, + 0xa6, 0x87, 0xff, 0xff, 0xa0, 0x7c, 0xff, 0xff, + 0x9b, 0x72, 0xff, 0xff, 0x98, 0x6c, 0xff, 0xff, + 0xb5, 0x9f, 0xea, 0xff, 0xb5, 0x9f, 0xea, 0xff, + 0x48, 0x33, 0x80, 0xff, 0x48, 0x33, 0x80, 0xff, + 0x49, 0x80, 0x35, 0xff, 0x49, 0x80, 0x35, 0xff, + 0xd4, 0xff, 0xc1, 0xff, 0xd4, 0xff, 0xc1, 0xff, + 0x8c, 0xff, 0x6d, 0xff, 0x8f, 0xff, 0x74, 0xff, + 0x94, 0xff, 0x7d, 0xff, 0x9a, 0xff, 0x89, 0xff, + 0xa1, 0xff, 0x97, 0xff, 0xa9, 0xff, 0xa5, 0xff, + 0xb0, 0xff, 0xb3, 0xff, 0xb8, 0xff, 0xc1, 0xff, + 0xbf, 0xff, 0xcf, 0xff, 0xc5, 0xfe, 0xdd, 0xff, + 0xca, 0xfb, 0xe8, 0xff, 0xcc, 0xf7, 0xf2, 0xff, + 0xcc, 0xef, 0xf8, 0xff, 0xc9, 0xe5, 0xfc, 0xff, + 0xc4, 0xd9, 0xfe, 0xff, 0xbd, 0xcb, 0xff, 0xff, + 0xb6, 0xbd, 0xff, 0xff, 0xaf, 0xaf, 0xff, 0xff, + 0xa7, 0xa1, 0xff, 0xff, 0xa0, 0x93, 0xff, 0xff, + 0x99, 0x86, 0xff, 0xff, 0x92, 0x7a, 0xff, 0xff, + 0x8d, 0x70, 0xff, 0xff, 0x8a, 0x69, 0xff, 0xff, + 0xb5, 0x9f, 0xea, 0xff, 0xb5, 0x9f, 0xea, 0xff, + 0x48, 0x33, 0x80, 0xff, 0x48, 0x33, 0x80, 0xff, + 0x39, 0x80, 0x31, 0xff, 0x39, 0x80, 0x31, 0xff, + 0xc9, 0xff, 0xbf, 0xff, 0xc9, 0xff, 0xbf, 0xff, + 0x7d, 0xff, 0x6a, 0xff, 0x81, 0xff, 0x71, 0xff, + 0x86, 0xff, 0x7b, 0xff, 0x8d, 0xff, 0x88, 0xff, + 0x95, 0xff, 0x95, 0xff, 0x9d, 0xff, 0xa4, 0xff, + 0xa5, 0xff, 0xb3, 0xff, 0xac, 0xff, 0xc1, 0xff, + 0xb4, 0xff, 0xd0, 0xff, 0xba, 0xfe, 0xdd, 0xff, + 0xbe, 0xfc, 0xe9, 0xff, 0xc0, 0xf7, 0xf2, 0xff, + 0xc0, 0xf0, 0xf9, 0xff, 0xbd, 0xe5, 0xfc, 0xff, + 0xb8, 0xd9, 0xfe, 0xff, 0xb2, 0xcb, 0xff, 0xff, + 0xab, 0xbd, 0xff, 0xff, 0xa3, 0xae, 0xff, 0xff, + 0x9b, 0xa0, 0xff, 0xff, 0x93, 0x91, 0xff, 0xff, + 0x8b, 0x83, 0xff, 0xff, 0x84, 0x77, 0xff, 0xff, + 0x7f, 0x6d, 0xff, 0xff, 0x7b, 0x66, 0xff, 0xff, + 0xa9, 0x9c, 0xea, 0xff, 0xa9, 0x9c, 0xea, 0xff, + 0x38, 0x2f, 0x80, 0xff, 0x38, 0x2f, 0x80, 0xff, + 0x39, 0x80, 0x31, 0xff, 0x39, 0x80, 0x31, 0xff, + 0xc9, 0xff, 0xbf, 0xff, 0xc9, 0xff, 0xbf, 0xff, + 0x70, 0xff, 0x68, 0xff, 0x74, 0xff, 0x6f, 0xff, + 0x7a, 0xff, 0x7a, 0xff, 0x81, 0xff, 0x87, 0xff, + 0x89, 0xff, 0x95, 0xff, 0x92, 0xff, 0xa4, 0xff, + 0x9a, 0xff, 0xb3, 0xff, 0xa1, 0xff, 0xc2, 0xff, + 0xa8, 0xff, 0xd0, 0xff, 0xae, 0xfe, 0xdd, 0xff, + 0xb2, 0xfc, 0xe9, 0xff, 0xb4, 0xf7, 0xf2, 0xff, + 0xb3, 0xf0, 0xf9, 0xff, 0xb1, 0xe6, 0xfc, 0xff, + 0xac, 0xda, 0xfe, 0xff, 0xa6, 0xcc, 0xff, 0xff, + 0x9f, 0xbd, 0xff, 0xff, 0x98, 0xaf, 0xff, 0xff, + 0x8f, 0xa0, 0xff, 0xff, 0x87, 0x91, 0xff, 0xff, + 0x7f, 0x83, 0xff, 0xff, 0x78, 0x76, 0xff, 0xff, + 0x72, 0x6b, 0xff, 0xff, 0x6e, 0x64, 0xff, 0xff, + 0xa9, 0x9c, 0xea, 0xff, 0xa9, 0x9c, 0xea, 0xff, + 0x38, 0x2f, 0x80, 0xff, 0x38, 0x2f, 0x80, 0xff, + 0x2b, 0x80, 0x2e, 0xff, 0x2b, 0x80, 0x2e, 0xff, + 0xbd, 0xff, 0xbb, 0xff, 0xbd, 0xff, 0xbb, 0xff, + 0x63, 0xff, 0x66, 0xff, 0x67, 0xff, 0x6e, 0xff, + 0x6e, 0xff, 0x79, 0xff, 0x76, 0xff, 0x87, 0xff, + 0x7e, 0xff, 0x95, 0xff, 0x87, 0xff, 0xa5, 0xff, + 0x8f, 0xff, 0xb4, 0xff, 0x96, 0xff, 0xc3, 0xff, + 0x9d, 0xff, 0xd1, 0xff, 0xa2, 0xfe, 0xde, 0xff, + 0xa5, 0xfc, 0xe9, 0xff, 0xa7, 0xf7, 0xf2, 0xff, + 0xa6, 0xf0, 0xf9, 0xff, 0xa4, 0xe6, 0xfc, 0xff, + 0xa0, 0xda, 0xfe, 0xff, 0x9b, 0xcd, 0xff, 0xff, + 0x94, 0xbe, 0xff, 0xff, 0x8d, 0xaf, 0xff, 0xff, + 0x84, 0xa0, 0xff, 0xff, 0x7c, 0x91, 0xff, 0xff, + 0x73, 0x82, 0xff, 0xff, 0x6b, 0x75, 0xff, 0xff, + 0x65, 0x6a, 0xff, 0xff, 0x61, 0x63, 0xff, 0xff, + 0x9b, 0x98, 0xea, 0xff, 0x9b, 0x98, 0xea, 0xff, + 0x29, 0x2c, 0x80, 0xff, 0x29, 0x2c, 0x80, 0xff, + 0x2b, 0x80, 0x2e, 0xff, 0x2b, 0x80, 0x2e, 0xff, + 0xbd, 0xff, 0xbb, 0xff, 0xbd, 0xff, 0xbb, 0xff, + 0x58, 0xff, 0x66, 0xff, 0x5d, 0xff, 0x6e, 0xff, + 0x63, 0xff, 0x7a, 0xff, 0x6b, 0xff, 0x88, 0xff, + 0x74, 0xff, 0x97, 0xff, 0x7c, 0xff, 0xa6, 0xff, + 0x84, 0xff, 0xb5, 0xff, 0x8b, 0xff, 0xc4, 0xff, + 0x91, 0xff, 0xd1, 0xff, 0x95, 0xfe, 0xde, 0xff, + 0x98, 0xfc, 0xea, 0xff, 0x9a, 0xf7, 0xf2, 0xff, + 0x9a, 0xf0, 0xf9, 0xff, 0x98, 0xe6, 0xfc, 0xff, + 0x94, 0xda, 0xfe, 0xff, 0x8f, 0xcd, 0xff, 0xff, + 0x89, 0xbf, 0xff, 0xff, 0x82, 0xb0, 0xff, 0xff, + 0x7a, 0xa1, 0xff, 0xff, 0x71, 0x92, 0xff, 0xff, + 0x69, 0x83, 0xff, 0xff, 0x61, 0x75, 0xff, 0xff, + 0x5a, 0x6a, 0xff, 0xff, 0x55, 0x62, 0xff, 0xff, + 0x9b, 0x98, 0xea, 0xff, 0x9b, 0x98, 0xea, 0xff, + 0x29, 0x2c, 0x80, 0xff, 0x29, 0x2c, 0x80, 0xff, + 0x23, 0x80, 0x31, 0xff, 0x23, 0x80, 0x31, 0xff, + 0xb6, 0xff, 0xbc, 0xff, 0xb6, 0xff, 0xbc, 0xff, + 0x4e, 0xff, 0x67, 0xff, 0x53, 0xff, 0x70, 0xff, + 0x5a, 0xff, 0x7b, 0xff, 0x62, 0xff, 0x89, 0xff, + 0x6a, 0xff, 0x98, 0xff, 0x72, 0xff, 0xa7, 0xff, + 0x79, 0xff, 0xb6, 0xff, 0x80, 0xff, 0xc4, 0xff, + 0x85, 0xff, 0xd2, 0xff, 0x89, 0xfe, 0xdf, 0xff, + 0x8c, 0xfc, 0xea, 0xff, 0x8d, 0xf7, 0xf3, 0xff, + 0x8d, 0xf0, 0xf9, 0xff, 0x8c, 0xe7, 0xfc, 0xff, + 0x88, 0xdb, 0xfe, 0xff, 0x84, 0xce, 0xff, 0xff, + 0x7e, 0xc0, 0xff, 0xff, 0x77, 0xb2, 0xff, 0xff, + 0x70, 0xa3, 0xff, 0xff, 0x67, 0x94, 0xff, 0xff, + 0x5f, 0x85, 0xff, 0xff, 0x57, 0x77, 0xff, 0xff, + 0x50, 0x6b, 0xff, 0xff, 0x4b, 0x63, 0xff, 0xff, + 0x92, 0x98, 0xea, 0xff, 0x92, 0x98, 0xea, 0xff, + 0x21, 0x2e, 0x80, 0xff, 0x21, 0x2e, 0x80, 0xff, + 0x23, 0x80, 0x31, 0xff, 0x23, 0x80, 0x31, 0xff, + 0xb6, 0xff, 0xbc, 0xff, 0xb6, 0xff, 0xbc, 0xff, + 0x46, 0xff, 0x69, 0xff, 0x4b, 0xff, 0x71, 0xff, + 0x51, 0xff, 0x7d, 0xff, 0x59, 0xff, 0x8a, 0xff, + 0x61, 0xff, 0x99, 0xff, 0x68, 0xff, 0xa8, 0xff, + 0x6f, 0xff, 0xb6, 0xff, 0x76, 0xff, 0xc5, 0xff, + 0x7b, 0xff, 0xd2, 0xff, 0x7e, 0xfe, 0xdf, 0xff, + 0x81, 0xfc, 0xea, 0xff, 0x82, 0xf7, 0xf3, 0xff, + 0x82, 0xf0, 0xf9, 0xff, 0x80, 0xe7, 0xfc, 0xff, + 0x7d, 0xdb, 0xfe, 0xff, 0x79, 0xce, 0xff, 0xff, + 0x74, 0xc1, 0xff, 0xff, 0x6d, 0xb2, 0xff, 0xff, + 0x66, 0xa4, 0xff, 0xff, 0x5e, 0x95, 0xff, 0xff, + 0x56, 0x86, 0xff, 0xff, 0x4e, 0x78, 0xff, 0xff, + 0x48, 0x6d, 0xff, 0xff, 0x43, 0x64, 0xff, 0xff, + 0x92, 0x98, 0xea, 0xff, 0x92, 0x98, 0xea, 0xff, + 0x21, 0x2e, 0x80, 0xff, 0x21, 0x2e, 0x80, 0xff, + 0x1a, 0x80, 0x33, 0xff, 0x1a, 0x80, 0x33, 0xff, + 0xb0, 0xff, 0xbe, 0xff, 0xb0, 0xff, 0xbe, 0xff, + 0x3f, 0xff, 0x6b, 0xff, 0x43, 0xff, 0x73, 0xff, + 0x4a, 0xff, 0x7e, 0xff, 0x51, 0xff, 0x8c, 0xff, + 0x59, 0xff, 0x9a, 0xff, 0x60, 0xff, 0xa9, 0xff, + 0x67, 0xff, 0xb7, 0xff, 0x6c, 0xff, 0xc5, 0xff, + 0x71, 0xff, 0xd3, 0xff, 0x75, 0xfe, 0xdf, 0xff, + 0x77, 0xfc, 0xea, 0xff, 0x78, 0xf7, 0xf3, 0xff, + 0x78, 0xf0, 0xf9, 0xff, 0x77, 0xe7, 0xfc, 0xff, + 0x74, 0xdb, 0xfe, 0xff, 0x70, 0xcf, 0xff, 0xff, + 0x6b, 0xc1, 0xff, 0xff, 0x65, 0xb3, 0xff, 0xff, + 0x5f, 0xa5, 0xff, 0xff, 0x57, 0x96, 0xff, 0xff, + 0x4f, 0x87, 0xff, 0xff, 0x47, 0x7a, 0xff, 0xff, + 0x41, 0x6e, 0xff, 0xff, 0x3c, 0x66, 0xff, 0xff, + 0x8b, 0x9a, 0xea, 0xff, 0x8b, 0x9a, 0xea, 0xff, + 0x18, 0x31, 0x80, 0xff, 0x18, 0x31, 0x80, 0xff, + 0x1a, 0x80, 0x33, 0xff, 0x1a, 0x80, 0x33, 0xff, + 0xb0, 0xff, 0xbe, 0xff, 0xb0, 0xff, 0xbe, 0xff, + 0x3b, 0xff, 0x6c, 0xff, 0x3f, 0xff, 0x74, 0xff, + 0x45, 0xff, 0x7f, 0xff, 0x4c, 0xff, 0x8c, 0xff, + 0x54, 0xff, 0x9b, 0xff, 0x5b, 0xff, 0xa9, 0xff, + 0x61, 0xff, 0xb8, 0xff, 0x66, 0xff, 0xc5, 0xff, + 0x6b, 0xff, 0xd3, 0xff, 0x6e, 0xfe, 0xdf, 0xff, + 0x71, 0xfc, 0xea, 0xff, 0x72, 0xf7, 0xf3, 0xff, + 0x71, 0xf0, 0xf9, 0xff, 0x70, 0xe7, 0xfc, 0xff, + 0x6e, 0xdb, 0xfe, 0xff, 0x6a, 0xcf, 0xff, 0xff, + 0x65, 0xc1, 0xff, 0xff, 0x60, 0xb4, 0xff, 0xff, + 0x59, 0xa5, 0xff, 0xff, 0x52, 0x97, 0xff, 0xff, + 0x4a, 0x88, 0xff, 0xff, 0x43, 0x7b, 0xff, 0xff, + 0x3c, 0x6f, 0xff, 0xff, 0x38, 0x67, 0xff, 0xff, + 0x8b, 0x9a, 0xea, 0xff, 0x8b, 0x9a, 0xea, 0xff, + 0x18, 0x31, 0x80, 0xff, 0x18, 0x31, 0x80, 0xff, + 0x1a, 0x80, 0x33, 0xff, 0x1a, 0x80, 0x33, 0xff, + 0xae, 0xf0, 0xba, 0xff, 0xae, 0xf0, 0xba, 0xff, + 0x95, 0xea, 0xaa, 0xff, 0x95, 0xea, 0xaa, 0xff, + 0x9c, 0xea, 0xb7, 0xff, 0x9c, 0xea, 0xb7, 0xff, + 0xa2, 0xea, 0xc3, 0xff, 0xa2, 0xea, 0xc3, 0xff, + 0xa7, 0xea, 0xcf, 0xff, 0xa7, 0xea, 0xcf, 0xff, + 0xab, 0xea, 0xda, 0xff, 0xab, 0xea, 0xda, 0xff, + 0xad, 0xea, 0xe5, 0xff, 0xad, 0xea, 0xe5, 0xff, + 0xad, 0xe3, 0xea, 0xff, 0xad, 0xe3, 0xea, 0xff, + 0xab, 0xd8, 0xea, 0xff, 0xab, 0xd8, 0xea, 0xff, + 0xa7, 0xcd, 0xea, 0xff, 0xa7, 0xcd, 0xea, 0xff, + 0xa1, 0xc2, 0xea, 0xff, 0xa1, 0xc2, 0xea, 0xff, + 0x9b, 0xb5, 0xea, 0xff, 0x9b, 0xb5, 0xea, 0xff, + 0x93, 0xa8, 0xea, 0xff, 0x93, 0xa8, 0xea, 0xff, + 0x89, 0x96, 0xd8, 0xff, 0x89, 0x96, 0xd8, 0xff, + 0x18, 0x31, 0x80, 0xff, 0x18, 0x31, 0x80, 0xff, + 0x1a, 0x80, 0x33, 0xff, 0x1a, 0x80, 0x33, 0xff, + 0xae, 0xf0, 0xba, 0xff, 0xae, 0xf0, 0xba, 0xff, + 0x95, 0xea, 0xaa, 0xff, 0x95, 0xea, 0xaa, 0xff, + 0x9c, 0xea, 0xb7, 0xff, 0x9c, 0xea, 0xb7, 0xff, + 0xa2, 0xea, 0xc3, 0xff, 0xa2, 0xea, 0xc3, 0xff, + 0xa7, 0xea, 0xcf, 0xff, 0xa7, 0xea, 0xcf, 0xff, + 0xab, 0xea, 0xda, 0xff, 0xab, 0xea, 0xda, 0xff, + 0xad, 0xea, 0xe5, 0xff, 0xad, 0xea, 0xe5, 0xff, + 0xad, 0xe3, 0xea, 0xff, 0xad, 0xe3, 0xea, 0xff, + 0xab, 0xd8, 0xea, 0xff, 0xab, 0xd8, 0xea, 0xff, + 0xa7, 0xcd, 0xea, 0xff, 0xa7, 0xcd, 0xea, 0xff, + 0xa1, 0xc2, 0xea, 0xff, 0xa1, 0xc2, 0xea, 0xff, + 0x9b, 0xb5, 0xea, 0xff, 0x9b, 0xb5, 0xea, 0xff, + 0x93, 0xa8, 0xea, 0xff, 0x93, 0xa8, 0xea, 0xff, + 0x89, 0x96, 0xd8, 0xff, 0x89, 0x96, 0xd8, 0xff, + 0x18, 0x31, 0x80, 0xff, 0x18, 0x31, 0x80, 0xff, + 0x1a, 0x80, 0x33, 0xff, 0x1a, 0x80, 0x33, 0xff, + 0x1a, 0x80, 0x33, 0xff, 0x1a, 0x80, 0x33, 0xff, + 0x1a, 0x80, 0x33, 0xff, 0x1a, 0x80, 0x33, 0xff, + 0x22, 0x80, 0x43, 0xff, 0x22, 0x80, 0x43, 0xff, + 0x2a, 0x80, 0x52, 0xff, 0x2a, 0x80, 0x52, 0xff, + 0x30, 0x80, 0x60, 0xff, 0x30, 0x80, 0x60, 0xff, + 0x35, 0x80, 0x6d, 0xff, 0x35, 0x80, 0x6d, 0xff, + 0x37, 0x80, 0x7a, 0xff, 0x37, 0x80, 0x7a, 0xff, + 0x37, 0x78, 0x80, 0xff, 0x37, 0x78, 0x80, 0xff, + 0x34, 0x6b, 0x80, 0xff, 0x34, 0x6b, 0x80, 0xff, + 0x30, 0x5e, 0x80, 0xff, 0x30, 0x5e, 0x80, 0xff, + 0x29, 0x50, 0x80, 0xff, 0x29, 0x50, 0x80, 0xff, + 0x21, 0x41, 0x80, 0xff, 0x21, 0x41, 0x80, 0xff, + 0x18, 0x31, 0x80, 0xff, 0x18, 0x31, 0x80, 0xff, + 0x18, 0x31, 0x80, 0xff, 0x18, 0x31, 0x80, 0xff, + 0x18, 0x31, 0x80, 0xff, 0x18, 0x31, 0x80, 0xff, + 0x1a, 0x80, 0x33, 0xff, 0x1a, 0x80, 0x33, 0xff, + 0x1a, 0x80, 0x33, 0xff, 0x1a, 0x80, 0x33, 0xff, + 0x1a, 0x80, 0x33, 0xff, 0x1a, 0x80, 0x33, 0xff, + 0x22, 0x80, 0x43, 0xff, 0x22, 0x80, 0x43, 0xff, + 0x2a, 0x80, 0x52, 0xff, 0x2a, 0x80, 0x52, 0xff, + 0x30, 0x80, 0x60, 0xff, 0x30, 0x80, 0x60, 0xff, + 0x35, 0x80, 0x6d, 0xff, 0x35, 0x80, 0x6d, 0xff, + 0x37, 0x80, 0x7a, 0xff, 0x37, 0x80, 0x7a, 0xff, + 0x37, 0x78, 0x80, 0xff, 0x37, 0x78, 0x80, 0xff, + 0x34, 0x6b, 0x80, 0xff, 0x34, 0x6b, 0x80, 0xff, + 0x30, 0x5e, 0x80, 0xff, 0x30, 0x5e, 0x80, 0xff, + 0x29, 0x50, 0x80, 0xff, 0x29, 0x50, 0x80, 0xff, + 0x21, 0x41, 0x80, 0xff, 0x21, 0x41, 0x80, 0xff, + 0x18, 0x31, 0x80, 0xff, 0x18, 0x31, 0x80, 0xff, + 0x18, 0x31, 0x80, 0xff, 0x18, 0x31, 0x80, 0xff, + 0x18, 0x31, 0x80, 0xff, 0x18, 0x31, 0x80, 0xff, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x2d, 0x72, 0x65, + 0x73, 0x69, 0x7a, 0x65, 0x2e, 0x70, 0x6e, 0x67, + 0x18, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x10, 0x18, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x80, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x34, 0x65, 0xa4, 0xff, 0x34, 0x65, 0xa4, 0xff, + 0x34, 0x65, 0xa4, 0xff, 0x34, 0x65, 0xa4, 0xff, + 0x34, 0x65, 0xa4, 0xff, 0x34, 0x65, 0xa4, 0xff, + 0x34, 0x65, 0xa4, 0xff, 0x34, 0x65, 0xa4, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x34, 0x65, 0xa4, 0xff, 0x34, 0x65, 0xa4, 0xff, + 0x34, 0x65, 0xa4, 0xff, 0x34, 0x65, 0xa4, 0xff, + 0x34, 0x65, 0xa4, 0xff, 0x34, 0x65, 0xa4, 0xff, + 0x34, 0x65, 0xa4, 0xff, 0x34, 0x65, 0xa4, 0xff, + 0x72, 0x9f, 0xcf, 0xff, 0x72, 0x9f, 0xcf, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x6b, 0x99, 0xca, 0xff, 0x6b, 0x99, 0xca, 0xff, + 0x3a, 0x6a, 0xa8, 0xff, 0x3a, 0x6a, 0xa8, 0xff, + 0x3a, 0x6a, 0xa8, 0xff, 0x3a, 0x6a, 0xa8, 0xff, + 0x3a, 0x6a, 0xa8, 0xff, 0x3a, 0x6a, 0xa8, 0xff, + 0x3a, 0x6a, 0xa8, 0xff, 0x3a, 0x6a, 0xa8, 0xff, + 0x6b, 0x99, 0xca, 0xff, 0x6b, 0x99, 0xca, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x6b, 0x99, 0xca, 0xff, 0x6b, 0x99, 0xca, 0xff, + 0x3a, 0x6a, 0xa8, 0xff, 0x3a, 0x6a, 0xa8, 0xff, + 0x3a, 0x6a, 0xa8, 0xff, 0x3a, 0x6a, 0xa8, 0xff, + 0x3a, 0x6a, 0xa8, 0xff, 0x3a, 0x6a, 0xa8, 0xff, + 0x3a, 0x6a, 0xa8, 0xff, 0x3a, 0x6a, 0xa8, 0xff, + 0x6b, 0x99, 0xca, 0xff, 0x6b, 0x99, 0xca, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x65, 0x93, 0xc6, 0xff, 0x65, 0x93, 0xc6, 0xff, + 0x3f, 0x6f, 0xab, 0xff, 0x3f, 0x6f, 0xab, 0xff, + 0x3f, 0x6f, 0xab, 0xff, 0x3f, 0x6f, 0xab, 0xff, + 0x3f, 0x6f, 0xab, 0xff, 0x3f, 0x6f, 0xab, 0xff, + 0x3f, 0x6f, 0xab, 0xff, 0x3f, 0x6f, 0xab, 0xff, + 0x65, 0x93, 0xc6, 0xff, 0x65, 0x93, 0xc6, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x65, 0x93, 0xc6, 0xff, 0x65, 0x93, 0xc6, 0xff, + 0x3f, 0x6f, 0xab, 0xff, 0x3f, 0x6f, 0xab, 0xff, + 0x3f, 0x6f, 0xab, 0xff, 0x3f, 0x6f, 0xab, 0xff, + 0x3f, 0x6f, 0xab, 0xff, 0x3f, 0x6f, 0xab, 0xff, + 0x3f, 0x6f, 0xab, 0xff, 0x3f, 0x6f, 0xab, 0xff, + 0x65, 0x93, 0xc6, 0xff, 0x65, 0x93, 0xc6, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x60, 0x8e, 0xc2, 0xff, 0x60, 0x8e, 0xc2, 0xff, + 0x60, 0x8e, 0xc2, 0xff, 0x60, 0x8e, 0xc2, 0xff, + 0x60, 0x8e, 0xc2, 0xff, 0x60, 0x8e, 0xc2, 0xff, + 0x60, 0x8e, 0xc2, 0xff, 0x60, 0x8e, 0xc2, 0xff, + 0x60, 0x8e, 0xc2, 0xff, 0x60, 0x8e, 0xc2, 0xff, + 0x60, 0x8e, 0xc2, 0xff, 0x60, 0x8e, 0xc2, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x60, 0x8e, 0xc2, 0xff, 0x60, 0x8e, 0xc2, 0xff, + 0x60, 0x8e, 0xc2, 0xff, 0x60, 0x8e, 0xc2, 0xff, + 0x60, 0x8e, 0xc2, 0xff, 0x60, 0x8e, 0xc2, 0xff, + 0x60, 0x8e, 0xc2, 0xff, 0x60, 0x8e, 0xc2, 0xff, + 0x60, 0x8e, 0xc2, 0xff, 0x60, 0x8e, 0xc2, 0xff, + 0x60, 0x8e, 0xc2, 0xff, 0x60, 0x8e, 0xc2, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x20, 0x4a, 0x87, 0xff, 0x20, 0x4a, 0x87, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x8a, 0x85, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x62, 0x69, 0x6d, 0x70, 0x2d, 0x69, 0x63, 0x6f, + 0x6e, 0x2e, 0x70, 0x6e, 0x67, 0x00, 0x00, 0x00, + 0x18, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x47, 0x64, 0x6b, 0x50, 0x00, 0x00, 0x90, 0x18, + 0x01, 0x01, 0x00, 0x02, 0x00, 0x00, 0x01, 0x80, + 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x60, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x04, 0x04, 0x04, 0x9e, 0x0c, 0x0c, 0x0c, 0x56, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x18, 0x1a, 0x1b, 0x4a, + 0x21, 0x24, 0x26, 0xff, 0x05, 0x06, 0x06, 0xda, + 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, + 0x0f, 0x0f, 0x0f, 0xfe, 0x28, 0x2e, 0x2f, 0xff, + 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x41, 0x06, 0x07, 0x07, 0xff, + 0x30, 0x30, 0x2c, 0xfe, 0x0b, 0x0c, 0x0d, 0xff, + 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x0b, 0x0c, 0x0c, 0xd9, 0x17, 0x18, 0x17, 0xfe, + 0x1d, 0x19, 0x16, 0xfe, 0x00, 0x00, 0x01, 0xff, + 0x09, 0x0b, 0x0a, 0x77, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x17, 0x19, 0x1a, 0x95, + 0x26, 0x2a, 0x2b, 0x3e, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x24, 0x26, 0x29, 0x64, + 0x00, 0x00, 0x01, 0xfd, 0x2b, 0x28, 0x20, 0xfe, + 0x36, 0x34, 0x2d, 0xfe, 0x00, 0x00, 0x00, 0xff, + 0x04, 0x04, 0x04, 0x9c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x1b, 0x1e, 0x1f, 0xa0, + 0x19, 0x1a, 0x1b, 0xc7, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x04, 0x04, 0x04, 0x55, 0x13, 0x15, 0x16, 0xfc, + 0x26, 0x25, 0x22, 0xfd, 0x7b, 0x77, 0x6d, 0xfe, + 0x36, 0x34, 0x2f, 0xfe, 0x00, 0x00, 0x00, 0xff, + 0x02, 0x03, 0x03, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0xc3, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x61, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x35, 0x39, 0x3b, 0x1a, + 0x0c, 0x0d, 0x0d, 0xfd, 0x00, 0x00, 0x00, 0xfe, + 0x47, 0x42, 0x38, 0xfe, 0x68, 0x64, 0x5a, 0xfe, + 0x65, 0x61, 0x58, 0xfe, 0x2b, 0x2c, 0x2b, 0xff, + 0x1d, 0x1f, 0x21, 0x9a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x10, 0x13, 0x13, 0x9c, + 0x1f, 0x22, 0x22, 0xff, 0x2b, 0x2f, 0x2f, 0xf4, + 0x00, 0x00, 0x02, 0x2d, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2d, 0x34, 0x36, 0x82, 0x2c, 0x30, 0x32, 0x89, + 0x00, 0x00, 0x00, 0x7f, 0x0d, 0x0e, 0x10, 0xf9, + 0x11, 0x11, 0x0f, 0xfd, 0x5c, 0x57, 0x4c, 0xfd, + 0x59, 0x54, 0x49, 0xfe, 0x50, 0x4c, 0x41, 0xfe, + 0x4b, 0x46, 0x3d, 0xfe, 0x07, 0x08, 0x07, 0xfe, + 0x11, 0x12, 0x13, 0xac, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x26, 0x29, 0x29, 0x9e, + 0x30, 0x2f, 0x2a, 0xff, 0x5f, 0x5f, 0x5a, 0xfe, + 0x18, 0x1a, 0x1b, 0xf8, 0x01, 0x01, 0x01, 0x2e, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2e, 0x34, 0x36, 0x42, + 0x2c, 0x33, 0x34, 0x9c, 0x1f, 0x24, 0x25, 0xe8, + 0x22, 0x25, 0x25, 0xfe, 0x14, 0x14, 0x11, 0xfd, + 0x69, 0x65, 0x5a, 0xfe, 0x70, 0x6b, 0x60, 0xfe, + 0x39, 0x35, 0x2d, 0xfe, 0x4e, 0x49, 0x3d, 0xfe, + 0x4d, 0x48, 0x3c, 0xfe, 0x1a, 0x1a, 0x19, 0xfe, + 0x00, 0x00, 0x00, 0xd8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x07, 0x07, 0x07, 0xa1, + 0x37, 0x35, 0x30, 0xff, 0x66, 0x61, 0x54, 0xfd, + 0x2c, 0x2d, 0x29, 0xfe, 0x00, 0x00, 0x00, 0xfb, + 0x01, 0x01, 0x01, 0x42, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0x03, 0x04, 0x1b, 0x2c, 0x32, 0x34, 0xbf, + 0x24, 0x27, 0x27, 0xfd, 0x2b, 0x2f, 0x2f, 0xff, + 0x32, 0x33, 0x2f, 0xfe, 0x68, 0x63, 0x56, 0xfe, + 0x50, 0x4b, 0x3f, 0xfe, 0x23, 0x1f, 0x17, 0xfe, + 0x22, 0x1f, 0x18, 0xfe, 0x0f, 0x0d, 0x0b, 0xfe, + 0x38, 0x34, 0x29, 0xfe, 0x04, 0x04, 0x03, 0xfe, + 0x00, 0x00, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2e, 0x33, 0x35, 0x25, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, + 0x3d, 0x3d, 0x37, 0xff, 0x88, 0x81, 0x72, 0xfe, + 0x81, 0x7c, 0x6d, 0xfe, 0x31, 0x31, 0x2e, 0xfe, + 0x00, 0x00, 0x00, 0xff, 0x22, 0x26, 0x27, 0x60, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x4d, 0x06, 0x07, 0x07, 0x89, + 0x17, 0x19, 0x1a, 0xff, 0x20, 0x23, 0x26, 0xff, + 0x46, 0x44, 0x3c, 0xfe, 0x3d, 0x3e, 0x39, 0xff, + 0x4d, 0x4d, 0x45, 0xfe, 0x52, 0x4c, 0x3e, 0xfe, + 0x45, 0x41, 0x37, 0xfe, 0x06, 0x06, 0x05, 0xfe, + 0x2a, 0x26, 0x1d, 0xfe, 0x4f, 0x4a, 0x41, 0xfe, + 0x51, 0x4d, 0x46, 0xfe, 0x02, 0x02, 0x02, 0xfe, + 0x00, 0x00, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2e, 0x34, 0x36, 0x64, + 0x2c, 0x32, 0x35, 0x0f, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, + 0x38, 0x37, 0x31, 0xff, 0x98, 0x92, 0x81, 0xfe, + 0x46, 0x42, 0x31, 0xfe, 0x84, 0x82, 0x76, 0xfe, + 0x50, 0x50, 0x4c, 0xfd, 0x38, 0x3c, 0x3b, 0xff, + 0x13, 0x14, 0x14, 0xe8, 0x26, 0x28, 0x28, 0x41, + 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xb5, 0xb2, 0xb1, 0x09, + 0x7c, 0x7e, 0x79, 0x4e, 0x45, 0x47, 0x41, 0xa7, + 0x7a, 0x7c, 0x77, 0xdd, 0x7f, 0x81, 0x7d, 0xc5, + 0xa2, 0xa4, 0x9f, 0x75, 0x3e, 0x40, 0x3b, 0x15, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x59, + 0x03, 0x04, 0x05, 0x77, 0x17, 0x1a, 0x1c, 0xb2, + 0x0c, 0x0c, 0x0c, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x38, 0x3a, 0x39, 0xfe, 0x47, 0x48, 0x43, 0xff, + 0x62, 0x5c, 0x50, 0xff, 0x3c, 0x3c, 0x36, 0xff, + 0x3c, 0x3c, 0x36, 0xfe, 0x31, 0x2b, 0x1c, 0xfe, + 0x0a, 0x09, 0x07, 0xfe, 0x2b, 0x28, 0x20, 0xfe, + 0x3a, 0x37, 0x2d, 0xfe, 0x68, 0x63, 0x57, 0xfe, + 0x5b, 0x56, 0x4b, 0xfe, 0x1e, 0x1e, 0x1d, 0xfe, + 0x00, 0x00, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2e, 0x34, 0x35, 0x5f, + 0x2d, 0x34, 0x36, 0x62, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xad, + 0x60, 0x60, 0x5c, 0xff, 0x8b, 0x8b, 0x82, 0xfe, + 0x85, 0x87, 0x82, 0xfe, 0x7e, 0x80, 0x7b, 0xfe, + 0x92, 0x94, 0x8f, 0xfe, 0xb2, 0xb3, 0xaf, 0xfe, + 0x95, 0x97, 0x92, 0xfd, 0x6c, 0x6f, 0x6b, 0xff, + 0x08, 0x09, 0x0a, 0xfb, 0x00, 0x00, 0x00, 0xae, + 0x00, 0x00, 0x00, 0x49, 0x5e, 0x62, 0x61, 0x15, + 0x83, 0x83, 0x80, 0x5a, 0x6f, 0x71, 0x6c, 0xfe, + 0x96, 0x97, 0x93, 0xff, 0xc7, 0xc8, 0xc6, 0xfd, + 0xdc, 0xdd, 0xdc, 0xfe, 0xef, 0xf0, 0xef, 0xfe, + 0x97, 0x98, 0x94, 0xff, 0x99, 0x9b, 0x96, 0xff, + 0x84, 0x86, 0x82, 0xf9, 0x20, 0x22, 0x22, 0xdc, + 0x10, 0x12, 0x12, 0xef, 0x01, 0x00, 0x00, 0xff, + 0x27, 0x29, 0x28, 0xfe, 0x48, 0x47, 0x3d, 0xfe, + 0x68, 0x65, 0x58, 0xfe, 0x59, 0x59, 0x50, 0xfe, + 0x45, 0x46, 0x42, 0xff, 0x4b, 0x47, 0x3e, 0xff, + 0x5b, 0x56, 0x4b, 0xff, 0x3e, 0x3e, 0x37, 0xff, + 0x39, 0x3a, 0x35, 0xff, 0x37, 0x33, 0x2a, 0xfe, + 0x25, 0x21, 0x1b, 0xfe, 0x20, 0x1f, 0x1a, 0xfe, + 0x4a, 0x45, 0x38, 0xfe, 0x55, 0x51, 0x44, 0xfe, + 0x50, 0x4d, 0x46, 0xfe, 0x20, 0x20, 0x1e, 0xfe, + 0x00, 0x00, 0x00, 0xd3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2e, 0x34, 0x35, 0x62, + 0x2d, 0x34, 0x35, 0x99, 0x2e, 0x32, 0x36, 0x13, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x45, 0x48, 0x49, 0xae, + 0x8a, 0x8d, 0x89, 0xfe, 0xb9, 0xba, 0xb6, 0xfe, + 0xf8, 0xf8, 0xf9, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xff, 0xff, 0xff, 0xfe, 0xa8, 0xa9, 0xa5, 0xfe, + 0x92, 0x94, 0x90, 0xfe, 0x20, 0x21, 0x21, 0xfe, + 0x18, 0x19, 0x18, 0xfe, 0x88, 0x8a, 0x87, 0xfe, + 0x8a, 0x8d, 0x87, 0xfe, 0xbd, 0xbf, 0xba, 0xfd, + 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfd, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xe4, 0xe4, 0xe3, 0xfe, + 0x9a, 0x9b, 0x97, 0xfe, 0x81, 0x83, 0x80, 0xfd, + 0x6d, 0x6c, 0x63, 0xfd, 0x85, 0x80, 0x70, 0xfe, + 0x72, 0x6c, 0x5d, 0xfe, 0x73, 0x6d, 0x5d, 0xfe, + 0x5d, 0x5a, 0x50, 0xfe, 0x38, 0x39, 0x36, 0xff, + 0x4f, 0x4b, 0x41, 0xff, 0x54, 0x50, 0x45, 0xff, + 0x5f, 0x5a, 0x4f, 0xff, 0x2e, 0x2e, 0x29, 0xff, + 0x3f, 0x40, 0x3a, 0xff, 0x57, 0x51, 0x43, 0xfe, + 0x10, 0x0b, 0x08, 0xfe, 0x54, 0x4e, 0x42, 0xfe, + 0x40, 0x3c, 0x31, 0xfe, 0x5f, 0x5a, 0x4e, 0xfe, + 0x39, 0x35, 0x2e, 0xfe, 0x1f, 0x1f, 0x1f, 0xfe, + 0x00, 0x00, 0x00, 0xcf, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2d, 0x33, 0x35, 0x67, + 0x2e, 0x33, 0x36, 0x99, 0x2d, 0x34, 0x36, 0x82, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5b, 0x5e, 0x5b, 0xe7, + 0x87, 0x89, 0x84, 0xfe, 0xf5, 0xf5, 0xf5, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfe, + 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xfe, + 0xa7, 0xa9, 0xa4, 0xfe, 0x91, 0x93, 0x8d, 0xfd, + 0x9f, 0x9e, 0x95, 0xfe, 0xbe, 0xc0, 0xbb, 0xfe, + 0xf7, 0xf8, 0xf7, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, + 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfa, 0xfa, 0xf9, 0xfe, 0xc3, 0xc4, 0xc2, 0xfe, + 0x8c, 0x8e, 0x89, 0xfe, 0x7d, 0x78, 0x68, 0xfe, + 0x5b, 0x54, 0x43, 0xfe, 0x56, 0x53, 0x47, 0xfe, + 0x3f, 0x41, 0x3b, 0xff, 0x47, 0x46, 0x3d, 0xff, + 0x69, 0x64, 0x57, 0xff, 0x51, 0x4d, 0x40, 0xff, + 0x59, 0x54, 0x48, 0xff, 0x3c, 0x3a, 0x33, 0xff, + 0x40, 0x41, 0x3b, 0xff, 0x57, 0x51, 0x42, 0xfe, + 0x4b, 0x45, 0x38, 0xfe, 0x1e, 0x1b, 0x17, 0xfe, + 0x39, 0x33, 0x27, 0xfe, 0x3f, 0x3b, 0x33, 0xfe, + 0x57, 0x52, 0x46, 0xfe, 0x30, 0x31, 0x30, 0xfe, + 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x86, + 0x00, 0x00, 0x00, 0xb0, 0x16, 0x19, 0x1a, 0xd7, + 0x22, 0x25, 0x25, 0xde, 0x1f, 0x23, 0x25, 0xd5, + 0x24, 0x29, 0x2a, 0x84, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x7c, 0x7e, 0x79, 0x11, 0x8e, 0x90, 0x8b, 0xfe, + 0xd6, 0xd7, 0xd4, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xf5, 0xf5, 0xf5, 0xfe, + 0x5b, 0x5b, 0x5b, 0xfe, 0xc7, 0xc7, 0xc6, 0xfe, + 0xff, 0xff, 0xff, 0xfe, 0xae, 0xb0, 0xac, 0xfe, + 0x83, 0x85, 0x80, 0xfe, 0xca, 0xcb, 0xc9, 0xfe, + 0xea, 0xea, 0xe9, 0xfe, 0xfb, 0xfb, 0xfb, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xf7, 0xf7, 0xf6, 0xfe, + 0xbb, 0xbb, 0xbb, 0xfe, 0xff, 0xff, 0xff, 0xfe, + 0xfb, 0xfb, 0xfa, 0xfe, 0xfa, 0xfa, 0xf9, 0xfe, + 0x7a, 0x7c, 0x77, 0xfe, 0x79, 0x79, 0x6f, 0xfe, + 0x4d, 0x4d, 0x43, 0xfe, 0x45, 0x45, 0x3f, 0xff, + 0x48, 0x46, 0x3b, 0xff, 0x69, 0x64, 0x57, 0xff, + 0x51, 0x4b, 0x3e, 0xff, 0x3a, 0x35, 0x2a, 0xff, + 0x4b, 0x47, 0x3e, 0xff, 0x44, 0x42, 0x3a, 0xff, + 0x46, 0x46, 0x40, 0xff, 0x50, 0x4b, 0x3d, 0xfe, + 0x4a, 0x44, 0x36, 0xfe, 0x31, 0x2d, 0x25, 0xfe, + 0x4c, 0x46, 0x3a, 0xfe, 0x5e, 0x59, 0x4e, 0xfe, + 0x59, 0x55, 0x4a, 0xfe, 0x01, 0x02, 0x02, 0xff, + 0x0b, 0x0d, 0x0e, 0x96, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, + 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x13, 0x16, 0x17, 0xff, + 0x25, 0x27, 0x25, 0xff, 0x3d, 0x3c, 0x36, 0xff, + 0x19, 0x1d, 0x1f, 0xf6, 0x16, 0x1a, 0x1b, 0xbc, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, + 0x86, 0x88, 0x83, 0x8e, 0xa8, 0xa9, 0xa6, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0xf8, 0xf8, 0xf7, 0xfe, + 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfd, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xfe, + 0x9d, 0x9d, 0x9d, 0xfe, 0x00, 0x00, 0x00, 0xfe, + 0x69, 0x69, 0x67, 0xfe, 0xc1, 0xc2, 0xbf, 0xfe, + 0x83, 0x84, 0x7f, 0xfe, 0xf7, 0xf7, 0xf6, 0xfe, + 0xf2, 0xf2, 0xf1, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xfb, 0xfb, 0xfb, 0xfe, + 0xb2, 0xb2, 0xb2, 0xfe, 0x00, 0x00, 0x00, 0xfe, + 0x23, 0x23, 0x23, 0xfe, 0xff, 0xff, 0xff, 0xfe, + 0xa4, 0xa5, 0xa4, 0xfe, 0x54, 0x56, 0x55, 0xff, + 0x4c, 0x4c, 0x46, 0xff, 0x4f, 0x4b, 0x3e, 0xff, + 0x5b, 0x56, 0x48, 0xff, 0x5e, 0x58, 0x4a, 0xff, + 0x51, 0x4b, 0x3d, 0xff, 0x48, 0x43, 0x34, 0xff, + 0x60, 0x5b, 0x4e, 0xff, 0x4d, 0x4a, 0x40, 0xff, + 0x3c, 0x3d, 0x38, 0xff, 0x6c, 0x66, 0x55, 0xfe, + 0x54, 0x4f, 0x41, 0xfe, 0x39, 0x35, 0x2c, 0xfe, + 0x54, 0x4e, 0x40, 0xfe, 0x5f, 0x5b, 0x4d, 0xfe, + 0x3d, 0x3b, 0x33, 0xfe, 0x2c, 0x30, 0x32, 0xff, + 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xda, + 0x00, 0x00, 0x00, 0xff, 0x6a, 0x6c, 0x6c, 0xfd, + 0xb7, 0xb9, 0xba, 0xfe, 0x7b, 0x7f, 0x80, 0xfe, + 0x49, 0x4c, 0x4a, 0xff, 0x60, 0x5d, 0x54, 0xff, + 0x40, 0x40, 0x3b, 0xff, 0x1a, 0x1f, 0x20, 0xff, + 0x13, 0x15, 0x16, 0xf5, 0x00, 0x00, 0x00, 0x36, + 0x91, 0x92, 0x8d, 0xc9, 0xb5, 0xb7, 0xb3, 0xfe, + 0xf7, 0xf6, 0xf5, 0xfe, 0xee, 0xee, 0xec, 0xfe, + 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xff, 0xff, 0xff, 0xfe, 0x04, 0x05, 0x05, 0xfe, + 0x00, 0x00, 0x00, 0xfe, 0x43, 0x44, 0x41, 0xfe, + 0x98, 0x99, 0x95, 0xfe, 0xff, 0xff, 0xff, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfa, 0xfe, + 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xfb, 0xfb, 0xfb, 0xfe, + 0xfd, 0xfd, 0xfd, 0xfe, 0x42, 0x3d, 0x3d, 0xfe, + 0x12, 0x35, 0x35, 0xff, 0x1e, 0x30, 0x30, 0xff, + 0x60, 0x64, 0x65, 0xff, 0x57, 0x59, 0x56, 0xff, + 0x51, 0x4c, 0x3f, 0xff, 0x5f, 0x59, 0x4c, 0xff, + 0x58, 0x52, 0x44, 0xff, 0x46, 0x41, 0x35, 0xff, + 0x44, 0x40, 0x34, 0xff, 0x2a, 0x27, 0x1f, 0xff, + 0x4d, 0x48, 0x3e, 0xff, 0x46, 0x43, 0x3a, 0xff, + 0x35, 0x37, 0x34, 0xff, 0x20, 0x1e, 0x1a, 0xfe, + 0x48, 0x43, 0x39, 0xfe, 0x38, 0x35, 0x2e, 0xfe, + 0x30, 0x2c, 0x23, 0xfe, 0x32, 0x2f, 0x27, 0xfe, + 0x48, 0x44, 0x3c, 0xfe, 0x00, 0x00, 0x00, 0xff, + 0x01, 0x01, 0x01, 0x63, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x84, 0x03, 0x04, 0x04, 0xff, + 0x7b, 0x7f, 0x81, 0xfe, 0xff, 0xff, 0xff, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0x9d, 0xa0, 0xa1, 0xfe, + 0x84, 0x86, 0x84, 0xff, 0x75, 0x73, 0x6a, 0xff, + 0x7d, 0x7b, 0x72, 0xff, 0x54, 0x54, 0x4e, 0xfe, + 0x1a, 0x1e, 0x1f, 0xff, 0x16, 0x19, 0x1a, 0xfe, + 0x39, 0x3b, 0x3a, 0xfe, 0xcf, 0xcf, 0xcd, 0xfd, + 0xf6, 0xf6, 0xf4, 0xfe, 0xff, 0xff, 0xff, 0xfe, + 0x94, 0x94, 0x93, 0xfe, 0xe3, 0xe3, 0xe3, 0xfe, + 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, + 0xe1, 0xe1, 0xe1, 0xfe, 0x02, 0x03, 0x03, 0xfe, + 0x01, 0x01, 0x01, 0xfe, 0x6d, 0x6f, 0x6b, 0xfe, + 0x99, 0x9b, 0x95, 0xfe, 0xe0, 0xdf, 0xdc, 0xfe, + 0xfd, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfc, 0xfe, + 0xda, 0xda, 0xda, 0xfe, 0xff, 0xff, 0xff, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0xf2, 0xf2, 0xf2, 0xfe, + 0xc7, 0xc9, 0xca, 0xfe, 0x2e, 0x33, 0x33, 0xff, + 0x12, 0x35, 0x35, 0xff, 0x12, 0x37, 0x37, 0xff, + 0x5e, 0x57, 0x51, 0xff, 0x7c, 0x7a, 0x6f, 0xff, + 0x68, 0x63, 0x56, 0xff, 0x5c, 0x55, 0x46, 0xff, + 0x4f, 0x49, 0x39, 0xff, 0x55, 0x4f, 0x40, 0xff, + 0x50, 0x4a, 0x3b, 0xff, 0x48, 0x43, 0x37, 0xff, + 0x55, 0x4f, 0x44, 0xff, 0x4f, 0x4d, 0x43, 0xff, + 0x35, 0x36, 0x34, 0xff, 0x4c, 0x46, 0x37, 0xfe, + 0x51, 0x4b, 0x3d, 0xfe, 0x37, 0x34, 0x29, 0xfe, + 0x1e, 0x1a, 0x10, 0xfe, 0x57, 0x53, 0x46, 0xfe, + 0x32, 0x30, 0x29, 0xfe, 0x16, 0x18, 0x18, 0xff, + 0x06, 0x06, 0x07, 0x25, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xbf, 0x07, 0x08, 0x08, 0xfe, + 0xe9, 0xe9, 0xea, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0x9a, 0x9c, 0x9d, 0xfe, + 0x8f, 0x90, 0x8e, 0xff, 0x7b, 0x7a, 0x70, 0xff, + 0x59, 0x57, 0x4f, 0xff, 0x6b, 0x6c, 0x65, 0xff, + 0x60, 0x61, 0x5d, 0xff, 0x39, 0x3b, 0x3a, 0xff, + 0x2a, 0x2d, 0x2d, 0xff, 0x4e, 0x51, 0x50, 0xfe, + 0xe0, 0xe1, 0xdf, 0xfe, 0xd9, 0xd9, 0xd5, 0xfe, + 0x9a, 0x9a, 0x98, 0xfe, 0x00, 0x00, 0x00, 0xfe, + 0xa4, 0xa6, 0xa6, 0xfe, 0x91, 0x94, 0x94, 0xfe, + 0x3d, 0x3e, 0x3c, 0xfe, 0x50, 0x51, 0x4e, 0xff, + 0x50, 0x51, 0x4e, 0xff, 0x7b, 0x7d, 0x78, 0xff, + 0x8d, 0x8f, 0x89, 0xff, 0xcd, 0xce, 0xca, 0xfe, + 0xf5, 0xf5, 0xf4, 0xfe, 0xe3, 0xe4, 0xe2, 0xfe, + 0x16, 0x17, 0x16, 0xfe, 0x92, 0x94, 0x95, 0xfe, + 0x90, 0x93, 0x94, 0xff, 0x80, 0x84, 0x85, 0xff, + 0x7f, 0x83, 0x84, 0xff, 0x18, 0x34, 0x34, 0xff, + 0x13, 0x36, 0x36, 0xff, 0x11, 0x36, 0x36, 0xff, + 0x4e, 0x45, 0x40, 0xff, 0x7b, 0x78, 0x6e, 0xff, + 0x52, 0x4c, 0x3d, 0xff, 0x57, 0x50, 0x40, 0xff, + 0x49, 0x44, 0x37, 0xff, 0x53, 0x4d, 0x3e, 0xff, + 0x43, 0x3e, 0x31, 0xff, 0x4c, 0x47, 0x38, 0xff, + 0x52, 0x4d, 0x41, 0xff, 0x3f, 0x3c, 0x33, 0xff, + 0x39, 0x3b, 0x36, 0xff, 0x33, 0x2e, 0x20, 0xfe, + 0x52, 0x4c, 0x3e, 0xfe, 0x4e, 0x4a, 0x3d, 0xfe, + 0x45, 0x41, 0x38, 0xfe, 0x54, 0x4f, 0x42, 0xfe, + 0x48, 0x46, 0x3f, 0xfd, 0x00, 0x00, 0x00, 0xf8, + 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6d, 0x12, 0x12, 0x4a, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, + 0x01, 0x01, 0x01, 0xe1, 0x38, 0x39, 0x3b, 0xfd, + 0xfb, 0xfb, 0xfb, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0x95, 0x99, 0x9a, 0xfe, + 0x90, 0x92, 0x90, 0xff, 0xa2, 0xa2, 0x9d, 0xff, + 0x57, 0x59, 0x57, 0xff, 0x65, 0x67, 0x66, 0xff, + 0x76, 0x79, 0x77, 0xff, 0x64, 0x66, 0x64, 0xff, + 0x52, 0x54, 0x51, 0xff, 0x53, 0x54, 0x51, 0xff, + 0x79, 0x7c, 0x78, 0xff, 0x7a, 0x7d, 0x7d, 0xff, + 0x92, 0x94, 0x95, 0xfe, 0x09, 0x0b, 0x0b, 0xfe, + 0x36, 0x38, 0x36, 0xfe, 0x55, 0x57, 0x54, 0xff, + 0x56, 0x57, 0x55, 0xff, 0x60, 0x61, 0x5f, 0xff, + 0x74, 0x75, 0x73, 0xff, 0xa8, 0xaa, 0xa6, 0xff, + 0x9f, 0xa1, 0x9d, 0xff, 0xa7, 0xa8, 0xa3, 0xff, + 0xac, 0xad, 0xa9, 0xff, 0x8e, 0x91, 0x91, 0xff, + 0x36, 0x3a, 0x3a, 0xff, 0x1d, 0x20, 0x21, 0xff, + 0x67, 0x6a, 0x69, 0xff, 0x79, 0x78, 0x73, 0xff, + 0x37, 0x32, 0x30, 0xff, 0x15, 0x33, 0x33, 0xff, + 0x17, 0x44, 0x44, 0xff, 0x11, 0x35, 0x35, 0xff, + 0x3b, 0x35, 0x33, 0xff, 0x69, 0x65, 0x5a, 0xff, + 0x64, 0x5d, 0x4e, 0xff, 0x5d, 0x57, 0x47, 0xff, + 0x55, 0x50, 0x41, 0xff, 0x59, 0x53, 0x43, 0xff, + 0x4e, 0x49, 0x39, 0xff, 0x4a, 0x44, 0x36, 0xff, + 0x58, 0x53, 0x48, 0xff, 0x49, 0x46, 0x3c, 0xff, + 0x43, 0x44, 0x3e, 0xff, 0x60, 0x5a, 0x4b, 0xfe, + 0x73, 0x6d, 0x60, 0xfe, 0x3c, 0x38, 0x2f, 0xfe, + 0x2f, 0x2b, 0x20, 0xfe, 0x58, 0x52, 0x47, 0xfe, + 0x45, 0x45, 0x40, 0xfe, 0x00, 0x00, 0x00, 0xf4, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6e, 0x13, 0x13, 0xc0, + 0x6b, 0x13, 0x13, 0x0a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0xee, 0x45, 0x47, 0x48, 0xfd, + 0xd6, 0xd8, 0xd8, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfe, 0xfe, 0xfe, 0xfe, 0x96, 0x98, 0x9a, 0xfe, + 0xb6, 0xb8, 0xb5, 0xff, 0x89, 0x8d, 0x8a, 0xff, + 0x93, 0x95, 0x93, 0xff, 0x9d, 0x9e, 0x9e, 0xff, + 0x9c, 0x9c, 0x9d, 0xff, 0xa7, 0xa8, 0xa8, 0xff, + 0x9e, 0x9f, 0x9e, 0xff, 0x66, 0x67, 0x64, 0xff, + 0x61, 0x62, 0x5e, 0xff, 0x98, 0x99, 0x95, 0xff, + 0x6b, 0x6e, 0x6c, 0xff, 0x64, 0x66, 0x63, 0xff, + 0x51, 0x53, 0x50, 0xff, 0x73, 0x74, 0x72, 0xff, + 0x90, 0x90, 0x8e, 0xff, 0x93, 0x93, 0x91, 0xff, + 0xa6, 0xa6, 0xa5, 0xff, 0xcc, 0xcd, 0xca, 0xff, + 0xcb, 0xcc, 0xc9, 0xff, 0xda, 0xda, 0xd6, 0xff, + 0xc5, 0xc7, 0xc3, 0xff, 0xaf, 0xb1, 0xad, 0xff, + 0x8a, 0x89, 0x82, 0xff, 0x49, 0x46, 0x3c, 0xff, + 0x4a, 0x46, 0x3d, 0xff, 0x48, 0x41, 0x3a, 0xff, + 0x1a, 0x32, 0x32, 0xff, 0x1b, 0x3e, 0x3e, 0xff, + 0x1b, 0x4e, 0x4e, 0xff, 0x11, 0x36, 0x36, 0xff, + 0x35, 0x35, 0x33, 0xff, 0x66, 0x63, 0x56, 0xff, + 0x58, 0x52, 0x41, 0xff, 0x57, 0x50, 0x40, 0xff, + 0x52, 0x4c, 0x3d, 0xff, 0x4d, 0x47, 0x38, 0xff, + 0x4f, 0x48, 0x39, 0xff, 0x49, 0x43, 0x34, 0xff, + 0x5c, 0x57, 0x4b, 0xff, 0x48, 0x45, 0x3c, 0xff, + 0x41, 0x42, 0x3b, 0xff, 0x46, 0x40, 0x31, 0xfe, + 0x5d, 0x57, 0x48, 0xfe, 0x40, 0x3c, 0x2d, 0xfe, + 0x61, 0x5c, 0x4e, 0xfe, 0x5a, 0x54, 0x49, 0xfe, + 0x2d, 0x30, 0x2f, 0xfe, 0x00, 0x01, 0x02, 0xcb, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6d, 0x13, 0x13, 0xc4, + 0x6d, 0x13, 0x13, 0x88, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, + 0x00, 0x00, 0x00, 0xf4, 0x34, 0x35, 0x36, 0xfd, + 0x7c, 0x7f, 0x81, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xfd, 0xfd, 0xfd, 0xfe, 0xbc, 0xbd, 0xbb, 0xff, + 0xb9, 0xba, 0xb7, 0xff, 0xab, 0xae, 0xad, 0xff, + 0x9b, 0x9d, 0x9b, 0xff, 0x98, 0x99, 0x99, 0xff, + 0xa7, 0xa9, 0xa9, 0xff, 0x94, 0x94, 0x93, 0xff, + 0x95, 0x95, 0x94, 0xff, 0x8b, 0x8b, 0x89, 0xff, + 0x74, 0x74, 0x72, 0xff, 0x7a, 0x7b, 0x77, 0xff, + 0x98, 0x98, 0x90, 0xff, 0x9f, 0xa0, 0x9b, 0xff, + 0xd3, 0xd3, 0xd1, 0xff, 0xb8, 0xb8, 0xb4, 0xff, + 0xa4, 0xa4, 0xa1, 0xff, 0xc7, 0xc8, 0xc5, 0xff, + 0xca, 0xca, 0xc7, 0xff, 0xc2, 0xc1, 0xbb, 0xff, + 0xc4, 0xc3, 0xc0, 0xff, 0xcf, 0xcf, 0xcc, 0xff, + 0xca, 0xca, 0xc5, 0xff, 0xb3, 0xb4, 0xae, 0xff, + 0x95, 0x97, 0x90, 0xff, 0x5e, 0x5c, 0x51, 0xff, + 0x3b, 0x36, 0x2c, 0xff, 0x22, 0x30, 0x30, 0xff, + 0x1a, 0x32, 0x32, 0xff, 0x22, 0x4f, 0x4f, 0xff, + 0x1c, 0x51, 0x51, 0xff, 0x11, 0x36, 0x36, 0xff, + 0x2e, 0x33, 0x32, 0xff, 0x66, 0x60, 0x50, 0xff, + 0x55, 0x4e, 0x3d, 0xff, 0x57, 0x51, 0x41, 0xff, + 0x4a, 0x43, 0x33, 0xff, 0x5a, 0x54, 0x43, 0xff, + 0x4e, 0x48, 0x39, 0xff, 0x52, 0x4c, 0x3d, 0xff, + 0x5d, 0x57, 0x4a, 0xff, 0x40, 0x3f, 0x36, 0xff, + 0x3f, 0x3f, 0x3a, 0xff, 0x3b, 0x36, 0x29, 0xfe, + 0x4b, 0x45, 0x37, 0xfe, 0x51, 0x4c, 0x3e, 0xfe, + 0x3b, 0x38, 0x2d, 0xfe, 0x3e, 0x3b, 0x32, 0xfe, + 0x42, 0x45, 0x45, 0xff, 0x04, 0x05, 0x07, 0x89, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x64, 0x11, 0x11, 0xdb, + 0x6e, 0x13, 0x13, 0xff, 0x0a, 0x01, 0x01, 0x95, + 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x78, + 0x00, 0x00, 0x00, 0xce, 0x15, 0x16, 0x17, 0xfe, + 0x4d, 0x52, 0x53, 0xfe, 0x45, 0x45, 0x45, 0xfe, + 0xc9, 0xca, 0xc9, 0xfe, 0xa5, 0xa7, 0xa4, 0xff, + 0x94, 0x97, 0x95, 0xff, 0x97, 0x9a, 0x98, 0xff, + 0x9f, 0xa2, 0xa1, 0xff, 0x90, 0x91, 0x90, 0xff, + 0x90, 0x90, 0x8f, 0xff, 0x5a, 0x5b, 0x5b, 0xff, + 0x29, 0x29, 0x2a, 0xff, 0x4a, 0x4a, 0x49, 0xff, + 0x8a, 0x8a, 0x87, 0xff, 0x72, 0x73, 0x70, 0xff, + 0x8f, 0x91, 0x8c, 0xff, 0x99, 0x9b, 0x96, 0xff, + 0xb8, 0xb9, 0xb4, 0xff, 0xbc, 0xbd, 0xb8, 0xff, + 0xc6, 0xc7, 0xc3, 0xff, 0xc4, 0xc4, 0xbf, 0xff, + 0xbd, 0xbb, 0xb4, 0xff, 0xac, 0xa9, 0x9f, 0xff, + 0x79, 0x76, 0x6e, 0xff, 0x9f, 0xa0, 0x9b, 0xff, + 0xc7, 0xc7, 0xc3, 0xff, 0xd5, 0xd4, 0xcf, 0xff, + 0xa3, 0xa4, 0x9e, 0xff, 0x9f, 0x9f, 0x9a, 0xff, + 0x2a, 0x2e, 0x2d, 0xff, 0x1e, 0x30, 0x30, 0xff, + 0x27, 0x4c, 0x4c, 0xff, 0x23, 0x51, 0x51, 0xff, + 0x1c, 0x52, 0x52, 0xff, 0x12, 0x36, 0x36, 0xff, + 0x28, 0x31, 0x30, 0xff, 0x58, 0x52, 0x41, 0xff, + 0x53, 0x4d, 0x3c, 0xff, 0x4a, 0x45, 0x38, 0xff, + 0x55, 0x4f, 0x3f, 0xff, 0x4f, 0x49, 0x39, 0xff, + 0x4c, 0x46, 0x37, 0xff, 0x51, 0x4b, 0x3d, 0xff, + 0x5a, 0x55, 0x47, 0xff, 0x43, 0x42, 0x39, 0xff, + 0x37, 0x37, 0x31, 0xff, 0x56, 0x51, 0x42, 0xfe, + 0x5a, 0x54, 0x45, 0xfe, 0x53, 0x4d, 0x3e, 0xfe, + 0x54, 0x4f, 0x43, 0xfe, 0x5e, 0x5b, 0x51, 0xfe, + 0x0e, 0x11, 0x11, 0xfb, 0x01, 0x03, 0x04, 0x1d, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x00, 0x00, 0x8d, 0x60, 0x10, 0x10, 0xec, + 0x6d, 0x13, 0x13, 0xff, 0x65, 0x17, 0x17, 0xeb, + 0x23, 0x25, 0x26, 0x98, 0x04, 0x06, 0x06, 0x99, + 0x00, 0x00, 0x00, 0xcb, 0x03, 0x03, 0x03, 0xff, + 0x1d, 0x1e, 0x20, 0xfe, 0x0f, 0x11, 0x11, 0xfe, + 0x52, 0x57, 0x56, 0xfe, 0x62, 0x65, 0x63, 0xff, + 0x9e, 0xa2, 0xa0, 0xff, 0x90, 0x92, 0x90, 0xff, + 0x89, 0x8a, 0x88, 0xff, 0x8d, 0x8d, 0x8c, 0xff, + 0x9b, 0x9b, 0x9b, 0xff, 0x9a, 0x9a, 0x9a, 0xff, + 0x73, 0x73, 0x73, 0xff, 0x01, 0x01, 0x01, 0xff, + 0x18, 0x18, 0x17, 0xff, 0x83, 0x83, 0x7d, 0xff, + 0x78, 0x77, 0x6e, 0xff, 0xb1, 0xaf, 0xa6, 0xff, + 0xb6, 0xb5, 0xae, 0xff, 0xbc, 0xbc, 0xb4, 0xff, + 0xba, 0xb8, 0xb0, 0xff, 0xc0, 0xbd, 0xb4, 0xff, + 0xca, 0xc6, 0xbe, 0xff, 0xbe, 0xbb, 0xb2, 0xff, + 0xac, 0xa9, 0xa0, 0xff, 0x35, 0x32, 0x2b, 0xff, + 0x3b, 0x3c, 0x39, 0xff, 0xad, 0xae, 0xa9, 0xff, + 0xac, 0xab, 0xa7, 0xff, 0x30, 0x30, 0x30, 0xff, + 0x22, 0x2f, 0x2f, 0xff, 0x2c, 0x46, 0x46, 0xff, + 0x29, 0x51, 0x51, 0xff, 0x1f, 0x4a, 0x4a, 0xff, + 0x1d, 0x54, 0x54, 0xff, 0x12, 0x37, 0x37, 0xff, + 0x24, 0x30, 0x30, 0xff, 0x71, 0x6a, 0x59, 0xff, + 0x54, 0x4e, 0x3e, 0xff, 0x57, 0x51, 0x41, 0xff, + 0x5d, 0x56, 0x46, 0xff, 0x50, 0x4b, 0x3b, 0xff, + 0x54, 0x4e, 0x3f, 0xff, 0x52, 0x4c, 0x3d, 0xff, + 0x4c, 0x47, 0x38, 0xff, 0x3c, 0x3d, 0x36, 0xff, + 0x33, 0x34, 0x2f, 0xfe, 0x37, 0x33, 0x2b, 0xfe, + 0x46, 0x40, 0x32, 0xfe, 0x5e, 0x59, 0x4c, 0xfe, + 0x4c, 0x48, 0x3f, 0xfe, 0x4d, 0x4c, 0x45, 0xfd, + 0x01, 0x01, 0x01, 0xda, 0x04, 0x05, 0x05, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x90, + 0x11, 0x11, 0x11, 0x98, 0x6b, 0x1a, 0x1a, 0xef, + 0x7d, 0x16, 0x16, 0xff, 0x69, 0x12, 0x12, 0xff, + 0x6f, 0x2a, 0x2a, 0xdc, 0x6d, 0x72, 0x74, 0x99, + 0x3d, 0x40, 0x41, 0xa6, 0x06, 0x06, 0x07, 0xf9, + 0x00, 0x00, 0x00, 0xfe, 0x1a, 0x1c, 0x1c, 0xfe, + 0x47, 0x49, 0x48, 0xfe, 0x5b, 0x5c, 0x59, 0xff, + 0x89, 0x8a, 0x87, 0xff, 0x7f, 0x7f, 0x7d, 0xff, + 0x80, 0x80, 0x7e, 0xff, 0x8e, 0x8e, 0x8e, 0xff, + 0x9a, 0x9a, 0x9a, 0xff, 0x99, 0x99, 0x99, 0xff, + 0x99, 0x99, 0x99, 0xff, 0x1b, 0x1d, 0x1e, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x40, 0x41, 0x3e, 0xff, + 0x8b, 0x89, 0x7d, 0xff, 0xa1, 0x9d, 0x91, 0xff, + 0xab, 0xa8, 0x9d, 0xff, 0xad, 0xa9, 0x9e, 0xff, + 0xad, 0xaa, 0xa0, 0xff, 0xc5, 0xc2, 0xba, 0xff, + 0xc8, 0xc5, 0xbd, 0xff, 0xc9, 0xc6, 0xbe, 0xff, + 0xc4, 0xc1, 0xb8, 0xff, 0x6c, 0x6a, 0x62, 0xff, + 0x33, 0x30, 0x29, 0xff, 0x3b, 0x31, 0x2e, 0xff, + 0x2f, 0x2d, 0x2d, 0xff, 0x26, 0x2d, 0x2d, 0xff, + 0x33, 0x47, 0x47, 0xff, 0x31, 0x4f, 0x4f, 0xff, + 0x23, 0x43, 0x43, 0xff, 0x1c, 0x45, 0x45, 0xff, + 0x1d, 0x54, 0x54, 0xff, 0x13, 0x39, 0x39, 0xff, + 0x23, 0x31, 0x31, 0xff, 0x4f, 0x4a, 0x3c, 0xff, + 0x4f, 0x49, 0x3b, 0xff, 0x53, 0x4d, 0x3c, 0xff, + 0x54, 0x4d, 0x3d, 0xff, 0x51, 0x4b, 0x3b, 0xff, + 0x53, 0x4d, 0x3d, 0xff, 0x3d, 0x39, 0x2e, 0xff, + 0x5e, 0x59, 0x4a, 0xff, 0x3d, 0x3e, 0x38, 0xff, + 0x49, 0x48, 0x42, 0xfe, 0x47, 0x41, 0x35, 0xfe, + 0x52, 0x4c, 0x3f, 0xfe, 0x43, 0x3d, 0x30, 0xfe, + 0x58, 0x52, 0x45, 0xfe, 0x27, 0x29, 0x26, 0xfe, + 0x2d, 0x31, 0x33, 0xb2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x32, 0x04, 0x04, 0x04, 0x99, + 0x6e, 0x73, 0x74, 0x99, 0x76, 0x23, 0x23, 0xf2, + 0x98, 0x1c, 0x1c, 0xff, 0xb3, 0x22, 0x22, 0xff, + 0x69, 0x12, 0x12, 0xff, 0x67, 0x28, 0x28, 0xd6, + 0x64, 0x69, 0x6b, 0x99, 0x43, 0x47, 0x48, 0xcd, + 0x0e, 0x0f, 0x10, 0xff, 0x09, 0x0b, 0x0b, 0xfe, + 0x39, 0x3a, 0x3a, 0xff, 0x5c, 0x5d, 0x5a, 0xff, + 0x7c, 0x7c, 0x78, 0xff, 0x7e, 0x7e, 0x79, 0xff, + 0x66, 0x66, 0x63, 0xff, 0x4f, 0x4f, 0x4f, 0xff, + 0x99, 0x99, 0x99, 0xff, 0x99, 0x9a, 0x9a, 0xff, + 0x7b, 0x7b, 0x7c, 0xff, 0x19, 0x1d, 0x1e, 0xff, + 0x03, 0x03, 0x04, 0xff, 0x3c, 0x3d, 0x3a, 0xff, + 0x7a, 0x78, 0x6d, 0xff, 0x9f, 0x9c, 0x90, 0xff, + 0xb2, 0xaf, 0xa3, 0xff, 0xa9, 0xa7, 0x9b, 0xff, + 0x73, 0x70, 0x66, 0xff, 0xc6, 0xc4, 0xbb, 0xff, + 0xc6, 0xc3, 0xba, 0xff, 0x3b, 0x40, 0x42, 0xff, + 0x42, 0x46, 0x46, 0xff, 0x7f, 0x7e, 0x76, 0xff, + 0x42, 0x2f, 0x2d, 0xff, 0x2e, 0x2a, 0x2a, 0xff, + 0x2d, 0x2e, 0x2e, 0xff, 0x3c, 0x49, 0x49, 0xff, + 0x39, 0x4e, 0x4e, 0xff, 0x29, 0x43, 0x43, 0xff, + 0x1f, 0x3c, 0x3c, 0xff, 0x1c, 0x44, 0x44, 0xff, + 0x1e, 0x55, 0x55, 0xff, 0x13, 0x3a, 0x3a, 0xff, + 0x1f, 0x31, 0x31, 0xff, 0x41, 0x3d, 0x30, 0xff, + 0x4b, 0x46, 0x39, 0xff, 0x4c, 0x46, 0x35, 0xff, + 0x5a, 0x54, 0x44, 0xff, 0x55, 0x4f, 0x41, 0xff, + 0x56, 0x50, 0x41, 0xff, 0x5a, 0x55, 0x46, 0xff, + 0x4d, 0x48, 0x3c, 0xff, 0x3c, 0x3e, 0x3a, 0xff, + 0x2e, 0x2d, 0x27, 0xfe, 0x50, 0x4b, 0x3e, 0xfe, + 0x3f, 0x3b, 0x30, 0xfe, 0x51, 0x4d, 0x42, 0xfe, + 0x44, 0x41, 0x37, 0xfe, 0x39, 0x3d, 0x3f, 0xfd, + 0x15, 0x16, 0x17, 0x4a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x76, 0x21, 0x22, 0x22, 0x99, + 0x89, 0x8d, 0x8f, 0x99, 0x76, 0x21, 0x21, 0xf4, + 0x9a, 0x1d, 0x1d, 0xff, 0xdc, 0x2f, 0x2f, 0xff, + 0xab, 0x22, 0x22, 0xff, 0x69, 0x12, 0x12, 0xff, + 0x61, 0x1c, 0x1d, 0xde, 0x4c, 0x52, 0x53, 0xa5, + 0x31, 0x34, 0x35, 0xf5, 0x0c, 0x0d, 0x0e, 0xff, + 0x0c, 0x0d, 0x0d, 0xfe, 0x36, 0x36, 0x34, 0xff, + 0x78, 0x79, 0x74, 0xff, 0x79, 0x79, 0x75, 0xff, + 0x67, 0x67, 0x63, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x45, 0x46, 0x47, 0xff, 0x50, 0x52, 0x53, 0xff, + 0x1a, 0x1e, 0x1f, 0xff, 0x1e, 0x21, 0x23, 0xff, + 0x00, 0x01, 0x01, 0xff, 0x3b, 0x3a, 0x38, 0xff, + 0x6f, 0x6e, 0x62, 0xff, 0xb0, 0xad, 0xa0, 0xff, + 0xa4, 0xa1, 0x95, 0xff, 0xac, 0xa9, 0x9d, 0xff, + 0x66, 0x63, 0x5a, 0xff, 0x79, 0x76, 0x6e, 0xff, + 0x78, 0x79, 0x76, 0xff, 0x2d, 0x34, 0x36, 0xff, + 0x2d, 0x34, 0x36, 0xff, 0x34, 0x2a, 0x2a, 0xff, + 0x31, 0x28, 0x28, 0xff, 0x3f, 0x39, 0x39, 0xff, + 0x49, 0x4c, 0x4c, 0xff, 0x40, 0x4e, 0x4e, 0xff, + 0x2e, 0x40, 0x40, 0xff, 0x26, 0x3d, 0x3d, 0xff, + 0x20, 0x3f, 0x3f, 0xff, 0x1c, 0x43, 0x43, 0xff, + 0x1e, 0x55, 0x55, 0xff, 0x13, 0x3b, 0x3b, 0xff, + 0x1f, 0x31, 0x31, 0xff, 0x65, 0x5f, 0x4f, 0xff, + 0x40, 0x3c, 0x31, 0xff, 0x36, 0x33, 0x28, 0xff, + 0x46, 0x41, 0x35, 0xff, 0x4e, 0x48, 0x3a, 0xff, + 0x52, 0x4c, 0x3d, 0xff, 0x51, 0x4b, 0x3e, 0xff, + 0x34, 0x31, 0x2a, 0xff, 0x37, 0x38, 0x35, 0xff, + 0x26, 0x25, 0x20, 0xfe, 0x4a, 0x45, 0x37, 0xfe, + 0x36, 0x32, 0x29, 0xfe, 0x35, 0x32, 0x2b, 0xfe, + 0x32, 0x33, 0x2e, 0xfd, 0x04, 0x04, 0x04, 0xe8, + 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0a, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x40, 0x42, 0x42, 0x99, + 0xaf, 0xb2, 0xb3, 0x99, 0x74, 0x1d, 0x1d, 0xf7, + 0x9c, 0x1e, 0x1e, 0xff, 0xdb, 0x33, 0x33, 0xff, + 0xdc, 0x35, 0x35, 0xff, 0xb3, 0x27, 0x27, 0xff, + 0x69, 0x11, 0x11, 0xff, 0x64, 0x12, 0x12, 0xf7, + 0x4a, 0x32, 0x32, 0xc3, 0x27, 0x29, 0x2a, 0xfc, + 0x05, 0x06, 0x06, 0xff, 0x00, 0x00, 0x00, 0xfe, + 0x5e, 0x5f, 0x5b, 0xff, 0x73, 0x73, 0x6f, 0xff, + 0x77, 0x77, 0x73, 0xff, 0x03, 0x03, 0x03, 0xff, + 0x01, 0x01, 0x01, 0xff, 0x27, 0x1e, 0x1f, 0xff, + 0x35, 0x22, 0x24, 0xff, 0x21, 0x11, 0x11, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x4c, 0x4b, 0x47, 0xff, + 0x7f, 0x7d, 0x72, 0xff, 0x9a, 0x97, 0x8a, 0xff, + 0x8c, 0x8a, 0x81, 0xff, 0xa1, 0x9e, 0x93, 0xff, + 0x71, 0x6c, 0x62, 0xff, 0x34, 0x1f, 0x1b, 0xff, + 0x30, 0x31, 0x33, 0xff, 0x30, 0x32, 0x30, 0xff, + 0x2e, 0x34, 0x35, 0xff, 0x39, 0x32, 0x33, 0xff, + 0x55, 0x47, 0x47, 0xff, 0x53, 0x4d, 0x4d, 0xff, + 0x44, 0x47, 0x47, 0xff, 0x32, 0x3d, 0x3d, 0xff, + 0x2d, 0x3e, 0x3e, 0xff, 0x26, 0x3e, 0x3e, 0xff, + 0x21, 0x40, 0x40, 0xff, 0x1c, 0x44, 0x44, 0xff, + 0x1d, 0x57, 0x57, 0xff, 0x13, 0x3c, 0x3c, 0xff, + 0x1e, 0x32, 0x32, 0xff, 0x52, 0x4c, 0x3c, 0xff, + 0x47, 0x42, 0x35, 0xff, 0x31, 0x2e, 0x24, 0xff, + 0x30, 0x2c, 0x23, 0xff, 0x32, 0x2e, 0x24, 0xff, + 0x50, 0x4a, 0x3c, 0xff, 0x3c, 0x37, 0x2f, 0xff, + 0x54, 0x51, 0x46, 0xff, 0x34, 0x36, 0x33, 0xff, + 0x19, 0x18, 0x13, 0xfe, 0x2a, 0x28, 0x21, 0xfe, + 0x4f, 0x4a, 0x3e, 0xfe, 0x51, 0x4c, 0x43, 0xfe, + 0x14, 0x17, 0x16, 0xff, 0x19, 0x1c, 0x1d, 0x6c, + 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x32, 0x35, 0x41, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x46, 0x48, 0x49, 0x99, + 0x93, 0x96, 0x99, 0x99, 0x70, 0x19, 0x19, 0xf9, + 0xa0, 0x20, 0x20, 0xff, 0xdb, 0x37, 0x37, 0xff, + 0xd0, 0x2e, 0x2e, 0xff, 0xdc, 0x3e, 0x3e, 0xff, + 0xde, 0x3c, 0x3c, 0xff, 0xc7, 0x35, 0x35, 0xff, + 0x9d, 0x23, 0x23, 0xff, 0x70, 0x1a, 0x1a, 0xf2, + 0x2b, 0x19, 0x1a, 0xfc, 0x06, 0x01, 0x01, 0xff, + 0x1c, 0x1d, 0x1c, 0xff, 0x6e, 0x6f, 0x69, 0xff, + 0x71, 0x6f, 0x6b, 0xff, 0x92, 0x5d, 0x59, 0xff, + 0xcc, 0x3c, 0x3c, 0xff, 0xdc, 0x3e, 0x3e, 0xff, + 0xdb, 0x3b, 0x3b, 0xff, 0xd5, 0x3e, 0x3e, 0xff, + 0xcd, 0x46, 0x46, 0xff, 0xa5, 0x58, 0x56, 0xff, + 0x7d, 0x67, 0x5f, 0xff, 0x85, 0x74, 0x6c, 0xff, + 0x72, 0x50, 0x4b, 0xff, 0x5d, 0x2e, 0x2d, 0xff, + 0x4c, 0x1e, 0x1e, 0xff, 0x3d, 0x27, 0x27, 0xff, + 0x2d, 0x33, 0x36, 0xff, 0x44, 0x41, 0x3a, 0xff, + 0x2c, 0x32, 0x34, 0xff, 0x3f, 0x3b, 0x3b, 0xff, + 0x57, 0x47, 0x47, 0xff, 0x44, 0x3f, 0x3f, 0xff, + 0x39, 0x3c, 0x3c, 0xff, 0x33, 0x3d, 0x3d, 0xff, + 0x2d, 0x3e, 0x3e, 0xff, 0x26, 0x3f, 0x3f, 0xff, + 0x20, 0x40, 0x40, 0xff, 0x1e, 0x46, 0x46, 0xff, + 0x1d, 0x57, 0x57, 0xff, 0x14, 0x3b, 0x3b, 0xff, + 0x1e, 0x32, 0x32, 0xff, 0x38, 0x33, 0x29, 0xff, + 0x37, 0x33, 0x2a, 0xff, 0x31, 0x2d, 0x25, 0xff, + 0x30, 0x2c, 0x23, 0xff, 0x2f, 0x2b, 0x22, 0xff, + 0x49, 0x44, 0x36, 0xff, 0x54, 0x4f, 0x42, 0xff, + 0x3b, 0x3a, 0x33, 0xff, 0x21, 0x23, 0x22, 0xff, + 0x19, 0x18, 0x13, 0xfe, 0x69, 0x63, 0x55, 0xfe, + 0x5d, 0x58, 0x4c, 0xfe, 0x0b, 0x0b, 0x0a, 0xfd, + 0x07, 0x09, 0x0a, 0xfc, 0x00, 0x00, 0x00, 0x3b, + 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x1e, + 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x36, 0xb0, 0x2b, 0x33, 0x35, 0x16, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x8f, 0x30, 0x31, 0x32, 0x99, + 0x64, 0x6a, 0x6b, 0x99, 0x6f, 0x17, 0x17, 0xfb, + 0xa8, 0x25, 0x25, 0xff, 0xdd, 0x42, 0x42, 0xff, + 0xdd, 0x43, 0x43, 0xff, 0xe0, 0x55, 0x55, 0xff, + 0xe3, 0x65, 0x65, 0xff, 0xe1, 0x5a, 0x5a, 0xff, + 0xdd, 0x46, 0x46, 0xff, 0xe1, 0x43, 0x43, 0xff, + 0xa6, 0x28, 0x28, 0xff, 0x6c, 0x12, 0x12, 0xff, + 0x62, 0x10, 0x10, 0xff, 0x68, 0x2f, 0x2d, 0xff, + 0xd7, 0x44, 0x43, 0xff, 0xdd, 0x42, 0x42, 0xff, + 0xe1, 0x61, 0x61, 0xff, 0xee, 0xa4, 0xa4, 0xff, + 0xf7, 0xd7, 0xd7, 0xff, 0xf0, 0xc3, 0xc3, 0xff, + 0xdb, 0x7e, 0x7e, 0xff, 0xc7, 0x53, 0x53, 0xff, + 0xbf, 0x4e, 0x4e, 0xff, 0x7d, 0x2c, 0x2c, 0xff, + 0x56, 0x1c, 0x1c, 0xff, 0x5a, 0x21, 0x21, 0xff, + 0x68, 0x2b, 0x2b, 0xff, 0x33, 0x33, 0x36, 0xff, + 0x33, 0x37, 0x36, 0xff, 0x58, 0x52, 0x48, 0xff, + 0x2e, 0x33, 0x33, 0xff, 0x35, 0x36, 0x37, 0xff, + 0x48, 0x3b, 0x3b, 0xff, 0x40, 0x3b, 0x3b, 0xff, + 0x3a, 0x3d, 0x3d, 0xff, 0x32, 0x3f, 0x3f, 0xff, + 0x2e, 0x3f, 0x3f, 0xff, 0x28, 0x41, 0x41, 0xff, + 0x20, 0x40, 0x40, 0xff, 0x1e, 0x46, 0x46, 0xff, + 0x1e, 0x58, 0x58, 0xff, 0x13, 0x3a, 0x3a, 0xff, + 0x1f, 0x30, 0x30, 0xff, 0x35, 0x31, 0x27, 0xff, + 0x4a, 0x3c, 0x28, 0xff, 0x58, 0x44, 0x2c, 0xff, + 0x48, 0x37, 0x27, 0xff, 0x3b, 0x33, 0x26, 0xff, + 0x46, 0x3f, 0x31, 0xff, 0x51, 0x4b, 0x3e, 0xff, + 0x3a, 0x3a, 0x34, 0xff, 0x15, 0x18, 0x19, 0xfe, + 0x33, 0x2f, 0x26, 0xfe, 0x5f, 0x5c, 0x54, 0xfe, + 0x24, 0x23, 0x1e, 0xfe, 0x06, 0x07, 0x07, 0xff, + 0x09, 0x0a, 0x0a, 0x96, 0x00, 0x00, 0x00, 0x3d, + 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x25, + 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x13, + 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2d, 0x34, 0x35, 0xa8, 0x2d, 0x34, 0x36, 0xa1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x67, 0x12, 0x13, 0x13, 0x98, + 0x5c, 0x60, 0x62, 0x99, 0x92, 0x1d, 0x1d, 0xfb, + 0xe2, 0x44, 0x44, 0xff, 0xe1, 0x5b, 0x5b, 0xff, + 0xf9, 0xe2, 0xe2, 0xff, 0xfb, 0xec, 0xec, 0xff, + 0xfd, 0xf8, 0xf8, 0xff, 0xfb, 0xef, 0xef, 0xff, + 0xfa, 0xe9, 0xe9, 0xff, 0xe8, 0x81, 0x81, 0xff, + 0xdd, 0x41, 0x41, 0xff, 0xc5, 0x30, 0x30, 0xff, + 0x85, 0x17, 0x17, 0xff, 0xe1, 0x44, 0x44, 0xff, + 0xdc, 0x45, 0x45, 0xff, 0xf5, 0xcd, 0xcd, 0xff, + 0xf9, 0xe4, 0xe4, 0xff, 0xfb, 0xec, 0xec, 0xff, + 0xfd, 0xf8, 0xf8, 0xff, 0xfb, 0xf1, 0xf1, 0xff, + 0xf6, 0xe7, 0xe7, 0xff, 0xf3, 0xe0, 0xe0, 0xff, + 0xca, 0x7a, 0x7a, 0xff, 0xb6, 0x53, 0x53, 0xff, + 0xac, 0x46, 0x46, 0xff, 0x9c, 0x3b, 0x3b, 0xff, + 0x44, 0x36, 0x36, 0xff, 0x2d, 0x33, 0x35, 0xff, + 0x53, 0x4f, 0x47, 0xff, 0x59, 0x54, 0x4a, 0xff, + 0x31, 0x34, 0x33, 0xff, 0x33, 0x35, 0x35, 0xff, + 0x49, 0x3d, 0x3d, 0xff, 0x41, 0x3b, 0x3b, 0xff, + 0x3b, 0x3e, 0x3e, 0xff, 0x33, 0x3e, 0x3e, 0xff, + 0x2e, 0x3f, 0x3f, 0xff, 0x27, 0x41, 0x41, 0xff, + 0x21, 0x41, 0x41, 0xff, 0x1e, 0x47, 0x47, 0xff, + 0x1d, 0x57, 0x57, 0xff, 0x13, 0x3b, 0x3b, 0xff, + 0x21, 0x31, 0x30, 0xff, 0x4c, 0x3e, 0x2e, 0xff, + 0x6e, 0x51, 0x31, 0xff, 0x77, 0x54, 0x2d, 0xff, + 0x6f, 0x4f, 0x2e, 0xff, 0x56, 0x3e, 0x26, 0xff, + 0x5a, 0x48, 0x32, 0xff, 0x54, 0x42, 0x32, 0xff, + 0x42, 0x39, 0x2e, 0xff, 0x39, 0x31, 0x27, 0xfe, + 0x57, 0x51, 0x43, 0xfe, 0x60, 0x5d, 0x52, 0xfe, + 0x02, 0x03, 0x02, 0xfe, 0x02, 0x03, 0x03, 0xf1, + 0x06, 0x06, 0x06, 0x4c, 0x00, 0x00, 0x00, 0x3e, + 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x2b, + 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x18, + 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2e, 0x34, 0x35, 0xae, 0x2d, 0x34, 0x35, 0xff, + 0x2e, 0x32, 0x36, 0x1d, 0x20, 0x05, 0x05, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x2b, 0x03, 0x03, 0x03, 0x99, + 0x55, 0x54, 0x55, 0x9b, 0xda, 0x41, 0x41, 0xfe, + 0xe3, 0x68, 0x68, 0xff, 0xf6, 0xd4, 0xd4, 0xff, + 0xf8, 0xdb, 0xdb, 0xff, 0xfa, 0xe8, 0xe8, 0xff, + 0xfc, 0xee, 0xee, 0xff, 0xfd, 0xf0, 0xf0, 0xff, + 0xfa, 0xe7, 0xe7, 0xff, 0xf7, 0xd4, 0xd4, 0xff, + 0xec, 0x96, 0x96, 0xff, 0xdc, 0x40, 0x40, 0xff, + 0xdd, 0x41, 0x41, 0xff, 0xdd, 0x45, 0x45, 0xff, + 0xf5, 0xc9, 0xc9, 0xff, 0xf6, 0xd5, 0xd5, 0xff, + 0xf9, 0xe0, 0xe0, 0xff, 0xfa, 0xe8, 0xe8, 0xff, + 0xfb, 0xef, 0xef, 0xff, 0xfa, 0xec, 0xec, 0xff, + 0xf6, 0xe5, 0xe5, 0xff, 0xf2, 0xdc, 0xdc, 0xff, + 0xec, 0xd4, 0xd4, 0xff, 0xc7, 0x83, 0x83, 0xff, + 0xaf, 0x57, 0x57, 0xff, 0x58, 0x35, 0x36, 0xff, + 0x2d, 0x33, 0x35, 0xff, 0x4b, 0x48, 0x3f, 0xff, + 0x5a, 0x56, 0x4c, 0xff, 0x5a, 0x55, 0x4b, 0xff, + 0x34, 0x36, 0x33, 0xff, 0x32, 0x34, 0x36, 0xff, + 0x4a, 0x3d, 0x3d, 0xff, 0x42, 0x3e, 0x3e, 0xff, + 0x3b, 0x3d, 0x3d, 0xff, 0x34, 0x3f, 0x3f, 0xff, + 0x2e, 0x40, 0x40, 0xff, 0x28, 0x41, 0x41, 0xff, + 0x21, 0x42, 0x42, 0xff, 0x1e, 0x49, 0x49, 0xff, + 0x1c, 0x56, 0x56, 0xff, 0x13, 0x39, 0x39, 0xff, + 0x24, 0x2f, 0x2e, 0xff, 0x53, 0x48, 0x37, 0xff, + 0x4c, 0x40, 0x2f, 0xff, 0x5a, 0x43, 0x2a, 0xff, + 0x6e, 0x4f, 0x2b, 0xff, 0x6d, 0x46, 0x24, 0xff, + 0x82, 0x5e, 0x37, 0xff, 0x66, 0x4b, 0x2d, 0xff, + 0x49, 0x3a, 0x2a, 0xff, 0x47, 0x30, 0x1a, 0xfe, + 0x2f, 0x21, 0x15, 0xfe, 0x33, 0x26, 0x19, 0xfe, + 0x01, 0x02, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x74, + 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x41, + 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x2f, + 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x1a, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2c, 0x31, 0x33, 0xbf, 0x2e, 0x33, 0x36, 0xff, + 0x2b, 0x2c, 0x2e, 0xfd, 0x20, 0x05, 0x05, 0xf9, + 0x20, 0x06, 0x06, 0xf3, 0x21, 0x05, 0x05, 0xdd, + 0x20, 0x06, 0x06, 0x77, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x99, + 0xa3, 0x3a, 0x3a, 0xd3, 0xdb, 0x3d, 0x3d, 0xff, + 0xf2, 0xbb, 0xbb, 0xff, 0xf5, 0xca, 0xca, 0xff, + 0xf7, 0xd5, 0xd5, 0xff, 0xf9, 0xdd, 0xdd, 0xff, + 0xf9, 0xdf, 0xdf, 0xff, 0xcc, 0x82, 0x82, 0xff, + 0x3c, 0x14, 0x14, 0xff, 0x87, 0x46, 0x46, 0xff, + 0xfe, 0xcc, 0xcc, 0xff, 0xe0, 0x54, 0x54, 0xff, + 0xdc, 0x41, 0x41, 0xff, 0xee, 0xa5, 0xa5, 0xff, + 0xf4, 0xc7, 0xc7, 0xff, 0xf6, 0xd1, 0xd1, 0xff, + 0xf7, 0xda, 0xda, 0xff, 0xf9, 0xe0, 0xe0, 0xff, + 0xfb, 0xeb, 0xeb, 0xff, 0xdd, 0x85, 0x85, 0xff, + 0x71, 0x2c, 0x2c, 0xff, 0xa4, 0x71, 0x71, 0xff, + 0xf2, 0xd7, 0xd7, 0xff, 0xe5, 0xce, 0xce, 0xff, + 0x63, 0x45, 0x46, 0xff, 0x2d, 0x33, 0x35, 0xff, + 0x43, 0x42, 0x3c, 0xff, 0x5d, 0x58, 0x4e, 0xff, + 0x51, 0x4d, 0x42, 0xff, 0x5b, 0x56, 0x4c, 0xff, + 0x38, 0x39, 0x35, 0xff, 0x31, 0x34, 0x35, 0xff, + 0x49, 0x3d, 0x3d, 0xff, 0x43, 0x3e, 0x3e, 0xff, + 0x3a, 0x3d, 0x3d, 0xff, 0x34, 0x3f, 0x3f, 0xff, + 0x2d, 0x41, 0x41, 0xff, 0x28, 0x41, 0x41, 0xff, + 0x23, 0x42, 0x42, 0xff, 0x20, 0x4c, 0x4c, 0xff, + 0x1c, 0x55, 0x55, 0xff, 0x12, 0x37, 0x37, 0xff, + 0x2a, 0x32, 0x30, 0xff, 0x53, 0x4d, 0x3e, 0xff, + 0x52, 0x48, 0x37, 0xff, 0x49, 0x39, 0x28, 0xff, + 0x59, 0x44, 0x2b, 0xff, 0x68, 0x4c, 0x2b, 0xff, + 0x75, 0x51, 0x2d, 0xff, 0x74, 0x52, 0x2e, 0xff, + 0x70, 0x4e, 0x2c, 0xff, 0xaa, 0x65, 0x1e, 0xfe, + 0x67, 0x41, 0x19, 0xfe, 0x5f, 0x33, 0x0d, 0xfd, + 0x40, 0x21, 0x0c, 0xf3, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x43, + 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x2e, + 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x1a, + 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x21, 0x06, 0x06, 0x62, + 0x29, 0x26, 0x28, 0xff, 0x34, 0x38, 0x38, 0xff, + 0x2c, 0x32, 0x34, 0xff, 0x4b, 0x2a, 0x2c, 0xff, + 0x77, 0x15, 0x15, 0xff, 0x39, 0x0a, 0x0a, 0xff, + 0x1a, 0x04, 0x04, 0xff, 0x21, 0x06, 0x06, 0xf2, + 0x21, 0x06, 0x06, 0x59, 0x00, 0x00, 0x00, 0x42, + 0xc7, 0x3b, 0x3b, 0xef, 0xe3, 0x67, 0x67, 0xff, + 0xf3, 0xbd, 0xbd, 0xff, 0xf3, 0xc2, 0xc2, 0xff, + 0xf5, 0xc9, 0xc9, 0xff, 0xfc, 0xf2, 0xf2, 0xff, + 0xfe, 0xfc, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcd, 0x9b, 0x9b, 0xff, 0x12, 0x00, 0x00, 0xff, + 0x58, 0x24, 0x24, 0xff, 0xeb, 0x78, 0x78, 0xff, + 0xde, 0x49, 0x49, 0xff, 0xf2, 0xbb, 0xbb, 0xff, + 0xf3, 0xc0, 0xc0, 0xff, 0xf5, 0xca, 0xca, 0xff, + 0xf5, 0xd0, 0xd0, 0xff, 0xfc, 0xf1, 0xf1, 0xff, + 0xfe, 0xfb, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, + 0xdc, 0xca, 0xca, 0xff, 0x12, 0x02, 0x02, 0xff, + 0x32, 0x13, 0x13, 0xff, 0x4a, 0x49, 0x4b, 0xff, + 0x2d, 0x33, 0x35, 0xff, 0x48, 0x46, 0x3f, 0xff, + 0x5f, 0x5b, 0x50, 0xff, 0x54, 0x50, 0x44, 0xff, + 0x45, 0x40, 0x34, 0xff, 0x5c, 0x58, 0x4e, 0xff, + 0x3b, 0x3b, 0x37, 0xff, 0x31, 0x34, 0x35, 0xff, + 0x4a, 0x3e, 0x3e, 0xff, 0x43, 0x3f, 0x3f, 0xff, + 0x3a, 0x3f, 0x3f, 0xff, 0x35, 0x40, 0x40, 0xff, + 0x2d, 0x40, 0x40, 0xff, 0x28, 0x42, 0x42, 0xff, + 0x22, 0x43, 0x43, 0xff, 0x20, 0x4e, 0x4e, 0xff, + 0x1b, 0x54, 0x54, 0xff, 0x12, 0x36, 0x36, 0xff, + 0x30, 0x30, 0x2f, 0xff, 0x59, 0x53, 0x44, 0xff, + 0x51, 0x4b, 0x3c, 0xff, 0x4f, 0x48, 0x39, 0xff, + 0x50, 0x45, 0x32, 0xff, 0x5b, 0x48, 0x33, 0xff, + 0x64, 0x4c, 0x33, 0xff, 0x63, 0x4c, 0x31, 0xff, + 0x7f, 0x4d, 0x1d, 0xfe, 0xc0, 0x64, 0x1e, 0xfe, + 0xa7, 0x48, 0x0b, 0xfe, 0xbc, 0x74, 0x28, 0xfd, + 0x8d, 0x4f, 0x18, 0xfe, 0x64, 0x35, 0x13, 0xff, + 0x29, 0x12, 0x07, 0xb3, 0x1a, 0x10, 0x08, 0x57, + 0x12, 0x10, 0x0e, 0x3c, 0x00, 0x00, 0x00, 0x2b, + 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x1a, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x21, 0x06, 0x06, 0x25, 0x20, 0x05, 0x05, 0xff, + 0x3e, 0x2c, 0x2d, 0xff, 0x42, 0x44, 0x41, 0xff, + 0x68, 0x65, 0x5b, 0xff, 0x2a, 0x30, 0x33, 0xff, + 0x6a, 0x2f, 0x31, 0xff, 0xd1, 0x25, 0x25, 0xff, + 0x94, 0x1a, 0x1a, 0xff, 0x35, 0x09, 0x09, 0xfe, + 0x20, 0x05, 0x05, 0xff, 0x13, 0x00, 0x00, 0x80, + 0xd3, 0x3f, 0x3f, 0xf5, 0xe6, 0x76, 0x76, 0xff, + 0xf0, 0xb2, 0xb2, 0xff, 0xf2, 0xbb, 0xbb, 0xff, + 0xe2, 0x99, 0x99, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0xfa, 0xfa, 0xff, 0xfe, 0xfa, 0xfa, 0xff, + 0xff, 0xf6, 0xf6, 0xff, 0x53, 0x02, 0x02, 0xff, + 0x10, 0x01, 0x01, 0xff, 0xdf, 0x3b, 0x3b, 0xff, + 0xe1, 0x5b, 0x5b, 0xff, 0xf0, 0xb2, 0xb2, 0xff, + 0xf3, 0xbb, 0xbb, 0xff, 0xf3, 0xc1, 0xc1, 0xff, + 0xf1, 0xb7, 0xb7, 0xff, 0xfe, 0xfe, 0xfe, 0xff, + 0xfe, 0xfb, 0xfb, 0xff, 0xfd, 0xfa, 0xfa, 0xff, + 0xfd, 0xfb, 0xfb, 0xff, 0x57, 0x24, 0x26, 0xff, + 0x2d, 0x31, 0x33, 0xff, 0x2c, 0x33, 0x35, 0xff, + 0x54, 0x51, 0x48, 0xff, 0x62, 0x5e, 0x52, 0xff, + 0x56, 0x51, 0x46, 0xff, 0x45, 0x40, 0x33, 0xff, + 0x46, 0x41, 0x34, 0xff, 0x5c, 0x58, 0x4d, 0xff, + 0x3e, 0x3d, 0x37, 0xff, 0x31, 0x33, 0x36, 0xff, + 0x4a, 0x3e, 0x3e, 0xff, 0x43, 0x3f, 0x3f, 0xff, + 0x3b, 0x3f, 0x3f, 0xff, 0x35, 0x40, 0x40, 0xff, + 0x2d, 0x41, 0x41, 0xff, 0x28, 0x42, 0x42, 0xff, + 0x21, 0x42, 0x42, 0xff, 0x21, 0x50, 0x50, 0xff, + 0x1a, 0x51, 0x51, 0xff, 0x11, 0x35, 0x35, 0xff, + 0x33, 0x2e, 0x2b, 0xff, 0x47, 0x41, 0x33, 0xff, + 0x4c, 0x46, 0x38, 0xff, 0x46, 0x41, 0x34, 0xff, + 0x4d, 0x48, 0x3a, 0xff, 0x56, 0x4f, 0x3f, 0xff, + 0x4f, 0x43, 0x35, 0xff, 0x3e, 0x31, 0x25, 0xfe, + 0x59, 0x30, 0x0b, 0xfe, 0x79, 0x3d, 0x0c, 0xfe, + 0xa5, 0x59, 0x17, 0xfd, 0xc3, 0x73, 0x25, 0xfe, + 0xcc, 0x6e, 0x15, 0xfe, 0x9e, 0x57, 0x12, 0xfe, + 0x3d, 0x1b, 0x08, 0xfe, 0x7d, 0x5a, 0x36, 0xf4, + 0x6f, 0x6c, 0x63, 0xe8, 0x21, 0x21, 0x20, 0x31, + 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x05, 0x05, 0xa6, 0x3b, 0x0a, 0x0a, 0xfe, + 0x53, 0x32, 0x33, 0xff, 0x42, 0x46, 0x42, 0xff, + 0x86, 0x80, 0x70, 0xff, 0x61, 0x60, 0x57, 0xff, + 0x2a, 0x30, 0x33, 0xff, 0x53, 0x2b, 0x2c, 0xff, + 0xbd, 0x21, 0x21, 0xff, 0xad, 0x1e, 0x1e, 0xff, + 0x47, 0x0c, 0x0c, 0xff, 0x1f, 0x05, 0x05, 0xff, + 0x7e, 0x1f, 0x1f, 0xff, 0xe9, 0x6f, 0x6f, 0xff, + 0xef, 0xaa, 0xaa, 0xff, 0xf2, 0xb2, 0xb2, 0xff, + 0xa1, 0x50, 0x50, 0xff, 0xc9, 0x91, 0x91, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb5, 0x64, 0x64, 0xff, 0x6f, 0x11, 0x11, 0xff, + 0x16, 0x03, 0x03, 0xff, 0xe1, 0x3c, 0x3c, 0xff, + 0xe1, 0x60, 0x60, 0xff, 0xef, 0xab, 0xab, 0xff, + 0xf0, 0xb2, 0xb2, 0xff, 0xf2, 0xbb, 0xbb, 0xff, + 0x90, 0x4a, 0x4a, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0xfa, 0xfa, 0xff, 0xb7, 0xb8, 0xb9, 0xff, + 0x4d, 0x52, 0x53, 0xff, 0x2b, 0x32, 0x34, 0xff, + 0x3c, 0x3e, 0x3b, 0xff, 0x61, 0x5c, 0x50, 0xff, + 0x65, 0x61, 0x55, 0xff, 0x55, 0x50, 0x43, 0xff, + 0x48, 0x43, 0x35, 0xff, 0x46, 0x41, 0x34, 0xff, + 0x46, 0x41, 0x35, 0xff, 0x5d, 0x57, 0x4d, 0xff, + 0x3f, 0x3f, 0x39, 0xff, 0x30, 0x34, 0x35, 0xff, + 0x4a, 0x3e, 0x3e, 0xff, 0x43, 0x3f, 0x3f, 0xff, + 0x3b, 0x40, 0x40, 0xff, 0x35, 0x40, 0x40, 0xff, + 0x2d, 0x41, 0x41, 0xff, 0x28, 0x42, 0x42, 0xff, + 0x21, 0x42, 0x42, 0xff, 0x21, 0x51, 0x51, 0xff, + 0x19, 0x4c, 0x4c, 0xff, 0x11, 0x36, 0x36, 0xff, + 0x4a, 0x3f, 0x37, 0xff, 0x4c, 0x47, 0x3a, 0xff, + 0x45, 0x40, 0x34, 0xff, 0x37, 0x33, 0x29, 0xff, + 0x5b, 0x56, 0x48, 0xff, 0x4f, 0x4a, 0x3f, 0xfe, + 0x34, 0x37, 0x35, 0xfe, 0x2c, 0x2b, 0x28, 0xfe, + 0x32, 0x1d, 0x0c, 0xea, 0x5e, 0x33, 0x14, 0xfc, + 0x77, 0x43, 0x12, 0xfe, 0x9e, 0x5b, 0x1a, 0xfd, + 0xaa, 0x5c, 0x15, 0xfe, 0xae, 0x55, 0x0f, 0xfe, + 0xbd, 0x6e, 0x25, 0xfe, 0x96, 0x8e, 0x7e, 0xfe, + 0xc3, 0xc4, 0xc2, 0xfe, 0xee, 0xef, 0xed, 0xf5, + 0x29, 0x2b, 0x27, 0x35, 0x09, 0x09, 0x09, 0x0e, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x1d, 0x05, 0x05, 0xff, 0x92, 0x18, 0x18, 0xff, + 0x54, 0x48, 0x4a, 0xff, 0x46, 0x47, 0x44, 0xff, + 0x86, 0x80, 0x6f, 0xff, 0x87, 0x81, 0x70, 0xff, + 0x68, 0x66, 0x5b, 0xff, 0x2c, 0x32, 0x33, 0xff, + 0x32, 0x2d, 0x2f, 0xff, 0x8a, 0x21, 0x21, 0xff, + 0x9b, 0x1c, 0x1c, 0xff, 0x3d, 0x0b, 0x0b, 0xff, + 0x18, 0x04, 0x04, 0xff, 0xa7, 0x38, 0x38, 0xff, + 0xef, 0xa2, 0xa2, 0xff, 0xef, 0xa7, 0xa7, 0xff, + 0xc5, 0x67, 0x67, 0xff, 0x19, 0x04, 0x04, 0xff, + 0x91, 0x2e, 0x2e, 0xff, 0x87, 0x28, 0x28, 0xff, + 0x6c, 0x13, 0x13, 0xff, 0x69, 0x12, 0x12, 0xff, + 0x12, 0x02, 0x02, 0xff, 0xd4, 0x36, 0x36, 0xff, + 0xe0, 0x55, 0x55, 0xff, 0xed, 0xa3, 0xa3, 0xff, + 0xef, 0xa9, 0xa9, 0xff, 0xf1, 0xb4, 0xb4, 0xff, + 0x53, 0x23, 0x23, 0xff, 0x6c, 0x5a, 0x5b, 0xff, + 0x3c, 0x41, 0x43, 0xff, 0x2b, 0x31, 0x34, 0xff, + 0x38, 0x3b, 0x3a, 0xff, 0x5a, 0x56, 0x4c, 0xff, + 0x6c, 0x66, 0x59, 0xff, 0x64, 0x5f, 0x52, 0xff, + 0x52, 0x4c, 0x3e, 0xff, 0x4b, 0x45, 0x37, 0xff, + 0x4a, 0x44, 0x37, 0xff, 0x48, 0x42, 0x35, 0xff, + 0x48, 0x42, 0x35, 0xff, 0x5d, 0x58, 0x4e, 0xff, + 0x40, 0x40, 0x39, 0xff, 0x2f, 0x33, 0x35, 0xff, + 0x4a, 0x3e, 0x3e, 0xff, 0x43, 0x3e, 0x3e, 0xff, + 0x3b, 0x40, 0x40, 0xff, 0x34, 0x41, 0x41, 0xff, + 0x2d, 0x41, 0x41, 0xff, 0x28, 0x42, 0x42, 0xff, + 0x21, 0x41, 0x41, 0xff, 0x21, 0x52, 0x52, 0xff, + 0x18, 0x47, 0x47, 0xff, 0x11, 0x36, 0x36, 0xff, + 0x51, 0x47, 0x3c, 0xff, 0x41, 0x3c, 0x30, 0xff, + 0x45, 0x40, 0x33, 0xff, 0x4e, 0x4a, 0x3d, 0xff, + 0x44, 0x42, 0x3a, 0xfe, 0x28, 0x28, 0x24, 0xff, + 0x1b, 0x1e, 0x20, 0xff, 0x06, 0x07, 0x07, 0xc8, + 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x6a, + 0x45, 0x25, 0x09, 0xbc, 0x47, 0x1b, 0x03, 0xff, + 0x6a, 0x3d, 0x17, 0xfe, 0x87, 0x4c, 0x1e, 0xfd, + 0x95, 0x76, 0x55, 0xfe, 0x82, 0x83, 0x80, 0xfe, + 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xfe, + 0xb9, 0xbc, 0xb8, 0xfd, 0x81, 0x84, 0x7e, 0xcf, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x05, 0x05, 0x1d, + 0x1e, 0x05, 0x05, 0xff, 0xb9, 0x1f, 0x1f, 0xff, + 0x50, 0x4c, 0x4f, 0xff, 0x48, 0x4a, 0x45, 0xff, + 0x88, 0x82, 0x71, 0xff, 0x7c, 0x77, 0x66, 0xff, + 0x88, 0x85, 0x7a, 0xff, 0x80, 0x80, 0x79, 0xff, + 0x67, 0x69, 0x67, 0xff, 0x4a, 0x4f, 0x4f, 0xff, + 0x4f, 0x32, 0x32, 0xff, 0x72, 0x1b, 0x1b, 0xff, + 0x2b, 0x08, 0x08, 0xff, 0x1d, 0x00, 0x00, 0xff, + 0xe3, 0x7a, 0x7a, 0xff, 0xec, 0x98, 0x98, 0xff, + 0xd5, 0x92, 0x91, 0xff, 0x69, 0x61, 0x5d, 0xff, + 0x84, 0x85, 0x80, 0xff, 0x85, 0x87, 0x82, 0xff, + 0x85, 0x87, 0x82, 0xff, 0x7f, 0x7f, 0x7a, 0xff, + 0x5a, 0x49, 0x47, 0xff, 0xd9, 0x47, 0x47, 0xff, + 0xc6, 0x41, 0x42, 0xff, 0xb8, 0x7f, 0x80, 0xff, + 0x7e, 0x61, 0x63, 0xff, 0x3a, 0x3b, 0x3d, 0xff, + 0x2c, 0x32, 0x35, 0xff, 0x30, 0x35, 0x36, 0xff, + 0x3d, 0x3f, 0x3d, 0xff, 0x62, 0x5e, 0x51, 0xff, + 0x70, 0x6b, 0x5c, 0xff, 0x6a, 0x65, 0x57, 0xff, + 0x5e, 0x58, 0x4a, 0xff, 0x4f, 0x49, 0x3a, 0xff, + 0x4f, 0x49, 0x3a, 0xff, 0x4c, 0x47, 0x39, 0xff, + 0x4b, 0x45, 0x37, 0xff, 0x49, 0x44, 0x36, 0xff, + 0x48, 0x43, 0x36, 0xff, 0x5d, 0x58, 0x4d, 0xff, + 0x40, 0x40, 0x3a, 0xff, 0x2f, 0x33, 0x36, 0xff, + 0x4a, 0x3e, 0x3e, 0xff, 0x43, 0x40, 0x40, 0xff, + 0x3a, 0x3f, 0x3f, 0xff, 0x35, 0x40, 0x40, 0xff, + 0x2d, 0x41, 0x41, 0xff, 0x28, 0x42, 0x42, 0xff, + 0x21, 0x42, 0x42, 0xff, 0x22, 0x54, 0x54, 0xff, + 0x16, 0x42, 0x42, 0xff, 0x16, 0x33, 0x33, 0xff, + 0x35, 0x33, 0x29, 0xff, 0x2f, 0x2c, 0x23, 0xff, + 0x32, 0x2f, 0x26, 0xff, 0x46, 0x45, 0x3e, 0xfc, + 0x3d, 0x3a, 0x33, 0xf4, 0x23, 0x27, 0x29, 0xcc, + 0x1d, 0x20, 0x22, 0xb2, 0x00, 0x00, 0x00, 0x72, + 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x5f, + 0x00, 0x00, 0x00, 0x52, 0x15, 0x0b, 0x05, 0x53, + 0x44, 0x28, 0x11, 0x8a, 0x4f, 0x27, 0x0b, 0xff, + 0x6a, 0x64, 0x57, 0xfe, 0x94, 0x96, 0x92, 0xfd, + 0xe1, 0xe1, 0xe1, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, + 0xff, 0xff, 0xff, 0xfe, 0xf1, 0xf1, 0xf1, 0xfe, + 0xe0, 0xe0, 0xdf, 0xed, 0x41, 0x41, 0x41, 0x6a, + 0x18, 0x18, 0x18, 0x64, 0x3c, 0x3c, 0x3c, 0xb6, + 0x23, 0x23, 0x23, 0x8b, 0x00, 0x00, 0x00, 0x33, + 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x21, 0x06, 0x06, 0x22, + 0x1f, 0x05, 0x05, 0xff, 0xb5, 0x1e, 0x1e, 0xff, + 0x49, 0x40, 0x42, 0xff, 0x4c, 0x4e, 0x49, 0xff, + 0x89, 0x8b, 0x83, 0xff, 0x87, 0x8a, 0x85, 0xff, + 0x8e, 0x90, 0x8b, 0xff, 0x94, 0x96, 0x91, 0xff, + 0x92, 0x94, 0x8f, 0xff, 0x8a, 0x8c, 0x87, 0xff, + 0x8b, 0x8d, 0x88, 0xff, 0x57, 0x5b, 0x5a, 0xff, + 0x2d, 0x33, 0x35, 0xff, 0x29, 0x27, 0x28, 0xff, + 0x58, 0x26, 0x27, 0xff, 0xa2, 0x88, 0x84, 0xff, + 0x87, 0x89, 0x84, 0xff, 0x91, 0x92, 0x8d, 0xff, + 0xaa, 0xab, 0xa8, 0xff, 0xcc, 0xcd, 0xcb, 0xff, + 0xc6, 0xc7, 0xc4, 0xff, 0x9e, 0x9f, 0x9b, 0xff, + 0x8d, 0x8e, 0x8a, 0xff, 0x87, 0x89, 0x84, 0xff, + 0x4c, 0x51, 0x51, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x33, 0x38, 0x39, 0xff, 0x3c, 0x3f, 0x3e, 0xff, + 0x5f, 0x5c, 0x51, 0xff, 0x77, 0x71, 0x61, 0xff, + 0x73, 0x6d, 0x5e, 0xff, 0x6d, 0x68, 0x5a, 0xff, + 0x62, 0x5c, 0x4d, 0xff, 0x54, 0x4e, 0x3e, 0xff, + 0x53, 0x4d, 0x3e, 0xff, 0x51, 0x4b, 0x3c, 0xff, + 0x4f, 0x49, 0x3b, 0xff, 0x4e, 0x48, 0x3a, 0xff, + 0x4c, 0x46, 0x38, 0xff, 0x4a, 0x44, 0x37, 0xff, + 0x49, 0x44, 0x37, 0xff, 0x5e, 0x59, 0x4e, 0xff, + 0x3f, 0x3f, 0x39, 0xff, 0x31, 0x34, 0x36, 0xff, + 0x4a, 0x3e, 0x3e, 0xff, 0x43, 0x40, 0x40, 0xff, + 0x3a, 0x3f, 0x3f, 0xff, 0x34, 0x41, 0x41, 0xff, + 0x2d, 0x41, 0x41, 0xff, 0x28, 0x42, 0x42, 0xff, + 0x23, 0x46, 0x46, 0xff, 0x22, 0x56, 0x56, 0xff, + 0x13, 0x3a, 0x3a, 0xff, 0x24, 0x30, 0x2f, 0xfe, + 0x43, 0x2b, 0x0f, 0xe8, 0x3a, 0x2d, 0x1c, 0xe5, + 0x3b, 0x3a, 0x32, 0xd4, 0x42, 0x3f, 0x36, 0xc5, + 0x2a, 0x2d, 0x2c, 0xbc, 0x25, 0x2a, 0x2c, 0xbb, + 0x03, 0x04, 0x04, 0x72, 0x00, 0x00, 0x00, 0x67, + 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x53, + 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x3e, + 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x22, + 0x54, 0x55, 0x4f, 0xb3, 0x78, 0x79, 0x74, 0xd2, + 0x67, 0x68, 0x64, 0xff, 0xb1, 0xb2, 0xaf, 0xff, + 0xf0, 0xf0, 0xef, 0xfd, 0xff, 0xff, 0xff, 0xfe, + 0xff, 0xff, 0xff, 0xfe, 0x18, 0x18, 0x18, 0xff, + 0x7f, 0x7f, 0x7f, 0xff, 0xad, 0xad, 0xad, 0xff, + 0x90, 0x90, 0x90, 0xff, 0x26, 0x26, 0x26, 0xfa, + 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x21, 0x06, 0x06, 0x0b, + 0x1d, 0x05, 0x05, 0xff, 0x94, 0x1a, 0x1a, 0xff, + 0x46, 0x34, 0x35, 0xff, 0x8a, 0x8c, 0x87, 0xff, + 0x8b, 0x8c, 0x88, 0xff, 0xdb, 0xdc, 0xd9, 0xff, + 0xf5, 0xf5, 0xf4, 0xff, 0xfb, 0xfb, 0xfa, 0xff, + 0xf8, 0xf8, 0xf7, 0xff, 0xf4, 0xf4, 0xf2, 0xff, + 0xae, 0xaf, 0xaa, 0xff, 0x87, 0x89, 0x84, 0xff, + 0x70, 0x73, 0x70, 0xff, 0x32, 0x38, 0x38, 0xff, + 0x81, 0x83, 0x7e, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0xcb, 0xcc, 0xc8, 0xff, 0xf0, 0xf0, 0xee, 0xff, + 0xf5, 0xf5, 0xf4, 0xff, 0xfb, 0xfb, 0xfb, 0xff, + 0xfa, 0xfa, 0xf9, 0xff, 0xf3, 0xf3, 0xf1, 0xff, + 0xee, 0xee, 0xeb, 0xff, 0xa3, 0xa5, 0xa0, 0xff, + 0x87, 0x89, 0x84, 0xff, 0x82, 0x7f, 0x74, 0xff, + 0x7b, 0x74, 0x64, 0xff, 0x78, 0x72, 0x62, 0xff, + 0x76, 0x70, 0x61, 0xff, 0x6f, 0x69, 0x59, 0xff, + 0x5d, 0x56, 0x45, 0xff, 0x5a, 0x53, 0x42, 0xff, + 0x58, 0x51, 0x41, 0xff, 0x56, 0x50, 0x40, 0xff, + 0x54, 0x4e, 0x3e, 0xff, 0x52, 0x4c, 0x3d, 0xff, + 0x50, 0x4a, 0x3b, 0xff, 0x4e, 0x48, 0x3a, 0xff, + 0x4d, 0x47, 0x39, 0xff, 0x4b, 0x45, 0x37, 0xff, + 0x4b, 0x46, 0x39, 0xff, 0x5e, 0x59, 0x4e, 0xff, + 0x3e, 0x3e, 0x39, 0xff, 0x31, 0x33, 0x36, 0xff, + 0x48, 0x3d, 0x3d, 0xff, 0x42, 0x3f, 0x3f, 0xff, + 0x3a, 0x3d, 0x3d, 0xff, 0x33, 0x40, 0x40, 0xff, + 0x2d, 0x41, 0x41, 0xff, 0x28, 0x41, 0x41, 0xff, + 0x26, 0x4d, 0x4d, 0xff, 0x21, 0x52, 0x52, 0xff, + 0x12, 0x36, 0x36, 0xff, 0x39, 0x30, 0x27, 0xf4, + 0x63, 0x36, 0x06, 0xb8, 0x50, 0x2b, 0x04, 0xba, + 0x54, 0x30, 0x08, 0xb8, 0x4a, 0x35, 0x1b, 0xb8, + 0x26, 0x2b, 0x2c, 0xb5, 0x0d, 0x11, 0x12, 0x7a, + 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x58, + 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x46, + 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x2f, + 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x19, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, + 0x7f, 0x80, 0x7d, 0x23, 0x8f, 0x91, 0x8d, 0x6a, + 0x86, 0x88, 0x82, 0xcf, 0xa5, 0xa6, 0xa3, 0xff, + 0x93, 0x94, 0x92, 0xfe, 0x33, 0x33, 0x33, 0xfd, + 0x6a, 0x6a, 0x6a, 0xfe, 0xad, 0xad, 0xad, 0xfe, + 0xb0, 0xb0, 0xb0, 0xfe, 0x4a, 0x4a, 0x4a, 0xfe, + 0x00, 0x00, 0x00, 0xfc, 0x05, 0x05, 0x05, 0x3a, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x1f, 0x05, 0x05, 0xe0, 0x54, 0x0f, 0x0f, 0xfe, + 0x86, 0x7a, 0x76, 0xff, 0x8f, 0x92, 0x8c, 0xff, + 0xe4, 0xe3, 0xe0, 0xff, 0xeb, 0xeb, 0xe9, 0xff, + 0xf3, 0xf3, 0xf1, 0xff, 0xf8, 0xf8, 0xf7, 0xff, + 0xf7, 0xf7, 0xf6, 0xff, 0xf0, 0xf0, 0xee, 0xff, + 0xe8, 0xe8, 0xe5, 0xff, 0xc2, 0xc3, 0xbf, 0xff, + 0x85, 0x87, 0x82, 0xff, 0x88, 0x89, 0x82, 0xff, + 0x88, 0x8a, 0x85, 0xff, 0xd5, 0xd6, 0xd3, 0xff, + 0xe6, 0xe6, 0xe4, 0xff, 0xed, 0xed, 0xea, 0xff, + 0xf3, 0xf3, 0xf2, 0xff, 0xf8, 0xf8, 0xf7, 0xff, + 0xf6, 0xf6, 0xf5, 0xff, 0xf1, 0xf1, 0xf0, 0xff, + 0xeb, 0xeb, 0xe9, 0xff, 0xe3, 0xe3, 0xe0, 0xff, + 0xae, 0xaf, 0xab, 0xff, 0x87, 0x89, 0x84, 0xff, + 0x73, 0x6e, 0x5f, 0xff, 0x64, 0x5d, 0x4a, 0xff, + 0x61, 0x5a, 0x48, 0xff, 0x5e, 0x58, 0x46, 0xff, + 0x5d, 0x56, 0x45, 0xff, 0x5b, 0x55, 0x43, 0xff, + 0x59, 0x52, 0x42, 0xff, 0x57, 0x51, 0x40, 0xff, + 0x55, 0x4f, 0x3f, 0xff, 0x53, 0x4d, 0x3d, 0xff, + 0x51, 0x4b, 0x3c, 0xff, 0x4f, 0x49, 0x3a, 0xff, + 0x4e, 0x48, 0x39, 0xff, 0x4b, 0x46, 0x38, 0xff, + 0x4d, 0x48, 0x3b, 0xff, 0x5e, 0x5a, 0x4d, 0xff, + 0x3b, 0x3c, 0x37, 0xff, 0x31, 0x34, 0x36, 0xff, + 0x49, 0x3d, 0x3d, 0xff, 0x41, 0x3e, 0x3e, 0xff, + 0x39, 0x3d, 0x3d, 0xff, 0x33, 0x40, 0x40, 0xff, + 0x2d, 0x41, 0x41, 0xff, 0x27, 0x40, 0x40, 0xff, + 0x26, 0x50, 0x50, 0xff, 0x1e, 0x4a, 0x4a, 0xff, + 0x11, 0x35, 0x35, 0xff, 0x69, 0x3e, 0x1b, 0xd8, + 0xc3, 0x6b, 0x0f, 0xb2, 0xaa, 0x5d, 0x0c, 0xb1, + 0x79, 0x42, 0x08, 0xb0, 0x58, 0x30, 0x05, 0xae, + 0x5b, 0x31, 0x04, 0xad, 0x3f, 0x22, 0x03, 0x85, + 0x09, 0x05, 0x00, 0x53, 0x00, 0x00, 0x00, 0x47, + 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x35, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x0a, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x66, 0x67, 0x63, 0x24, + 0x72, 0x73, 0x71, 0xc1, 0x4c, 0x4c, 0x4c, 0xfe, + 0x74, 0x74, 0x74, 0xfd, 0x90, 0x90, 0x90, 0xfe, + 0x70, 0x70, 0x70, 0xfe, 0x01, 0x01, 0x01, 0xfe, + 0x36, 0x36, 0x36, 0xff, 0x00, 0x00, 0x00, 0xc2, + 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0xa3, 0x00, 0x00, 0x00, 0xe4, + 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0xec, + 0x00, 0x00, 0x00, 0xcf, 0x00, 0x00, 0x00, 0x62, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x21, 0x05, 0x05, 0x6e, 0x42, 0x2a, 0x29, 0xff, + 0x83, 0x85, 0x80, 0xff, 0xc7, 0xc7, 0xc2, 0xff, + 0xe0, 0xe0, 0xdc, 0xff, 0xe7, 0xe7, 0xe4, 0xff, + 0xec, 0xec, 0xea, 0xff, 0xf0, 0xf0, 0xef, 0xff, + 0x99, 0x99, 0x99, 0xff, 0x27, 0x27, 0x27, 0xff, + 0x6d, 0x6d, 0x6c, 0xff, 0xe6, 0xe6, 0xe1, 0xff, + 0x9e, 0x9f, 0x9b, 0xff, 0x87, 0x89, 0x84, 0xff, + 0xad, 0xae, 0xa9, 0xff, 0xde, 0xde, 0xda, 0xff, + 0xe3, 0xe3, 0xe0, 0xff, 0xea, 0xea, 0xe7, 0xff, + 0xef, 0xef, 0xec, 0xff, 0xf3, 0xf3, 0xf2, 0xff, + 0xc5, 0xc5, 0xc4, 0xff, 0x69, 0x69, 0x68, 0xff, + 0xa2, 0xa2, 0xa1, 0xff, 0xed, 0xed, 0xe9, 0xff, + 0xde, 0xde, 0xd9, 0xff, 0x94, 0x97, 0x92, 0xff, + 0x82, 0x82, 0x7a, 0xff, 0x62, 0x5a, 0x47, 0xff, + 0x61, 0x5a, 0x48, 0xff, 0x5f, 0x58, 0x46, 0xff, + 0x5d, 0x57, 0x46, 0xff, 0x5c, 0x55, 0x44, 0xff, + 0x5a, 0x53, 0x42, 0xff, 0x58, 0x51, 0x41, 0xff, + 0x55, 0x4f, 0x3f, 0xff, 0x54, 0x4e, 0x3e, 0xff, + 0x52, 0x4c, 0x3d, 0xff, 0x4f, 0x49, 0x3a, 0xff, + 0x4e, 0x48, 0x3a, 0xff, 0x4c, 0x46, 0x38, 0xff, + 0x50, 0x4b, 0x3d, 0xff, 0x5e, 0x5a, 0x4c, 0xff, + 0x36, 0x38, 0x36, 0xff, 0x33, 0x35, 0x36, 0xff, + 0x49, 0x3d, 0x3d, 0xff, 0x40, 0x3d, 0x3d, 0xff, + 0x3a, 0x3e, 0x3e, 0xff, 0x32, 0x3f, 0x3f, 0xff, + 0x2c, 0x3f, 0x3f, 0xff, 0x27, 0x40, 0x40, 0xff, + 0x27, 0x50, 0x50, 0xff, 0x1a, 0x3f, 0x3f, 0xff, + 0x13, 0x34, 0x34, 0xff, 0x74, 0x40, 0x08, 0xa9, + 0x9d, 0x56, 0x0b, 0xa9, 0xb5, 0x63, 0x0d, 0xa8, + 0xcb, 0x6f, 0x0f, 0xa8, 0xc6, 0x6d, 0x0f, 0xa7, + 0x85, 0x4a, 0x0a, 0xa4, 0x61, 0x35, 0x06, 0xa3, + 0x62, 0x36, 0x05, 0xa1, 0x44, 0x25, 0x03, 0x64, + 0x1f, 0x1c, 0x18, 0x36, 0x10, 0x10, 0x0e, 0x26, + 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x56, 0x38, 0x38, 0x38, 0xfc, + 0x61, 0x61, 0x61, 0xfe, 0x3a, 0x3a, 0x3a, 0xfe, + 0x21, 0x21, 0x21, 0xfe, 0x00, 0x00, 0x00, 0xfe, + 0x0a, 0x0a, 0x0a, 0xfe, 0x01, 0x01, 0x01, 0xf8, + 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xf5, + 0x00, 0x00, 0x00, 0xff, 0x28, 0x2a, 0x2b, 0xff, + 0x37, 0x3a, 0x3b, 0xff, 0x29, 0x2b, 0x2d, 0xfe, + 0x08, 0x0a, 0x0a, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0xeb, 0x00, 0x00, 0x00, 0x53, + 0x20, 0x06, 0x06, 0x19, 0x6a, 0x64, 0x60, 0xff, + 0x90, 0x91, 0x8d, 0xff, 0xd8, 0xd8, 0xd2, 0xff, + 0xdb, 0xdb, 0xd7, 0xff, 0xe1, 0xe1, 0xdd, 0xff, + 0xec, 0xec, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc1, 0xc0, 0xc1, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x27, 0x27, 0x26, 0xff, + 0xc1, 0xc2, 0xbc, 0xff, 0x8a, 0x8c, 0x87, 0xff, + 0xd5, 0xd5, 0xd0, 0xff, 0xda, 0xda, 0xd6, 0xff, + 0xe0, 0xe0, 0xdc, 0xff, 0xe4, 0xe4, 0xe1, 0xff, + 0xf3, 0xf3, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0xfe, 0xfe, 0xff, 0xd2, 0xd2, 0xd2, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x16, 0x16, 0x16, 0xff, + 0xc7, 0xc7, 0xc3, 0xff, 0xb8, 0xb9, 0xb3, 0xff, + 0x87, 0x8a, 0x86, 0xff, 0x66, 0x5f, 0x4d, 0xff, + 0x62, 0x5b, 0x48, 0xff, 0x60, 0x59, 0x47, 0xff, + 0x5f, 0x58, 0x46, 0xff, 0x5d, 0x56, 0x45, 0xff, + 0x5a, 0x54, 0x43, 0xff, 0x58, 0x52, 0x41, 0xff, + 0x56, 0x50, 0x40, 0xff, 0x54, 0x4e, 0x3e, 0xff, + 0x52, 0x4c, 0x3d, 0xff, 0x50, 0x4a, 0x3b, 0xff, + 0x4e, 0x49, 0x3a, 0xff, 0x4c, 0x47, 0x39, 0xff, + 0x53, 0x4d, 0x40, 0xff, 0x5d, 0x58, 0x4b, 0xff, + 0x32, 0x36, 0x35, 0xff, 0x33, 0x35, 0x36, 0xff, + 0x47, 0x3c, 0x3c, 0xff, 0x40, 0x3c, 0x3c, 0xff, + 0x3a, 0x3d, 0x3d, 0xff, 0x32, 0x3f, 0x3f, 0xff, + 0x2c, 0x3f, 0x3f, 0xff, 0x2b, 0x48, 0x48, 0xff, + 0x27, 0x50, 0x50, 0xff, 0x16, 0x37, 0x37, 0xff, + 0x2a, 0x2f, 0x2d, 0xf7, 0x60, 0x36, 0x06, 0xa1, + 0x5f, 0x34, 0x05, 0xa0, 0x82, 0x47, 0x09, 0xa0, + 0xa6, 0x5b, 0x0c, 0x9e, 0xbb, 0x67, 0x0e, 0x9e, + 0xd4, 0x74, 0x10, 0x9d, 0xdf, 0x7a, 0x10, 0x9b, + 0x87, 0x4b, 0x0a, 0x99, 0x6b, 0x41, 0x13, 0x99, + 0x88, 0x89, 0x82, 0x99, 0x70, 0x72, 0x6e, 0x4f, + 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x0e, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x05, 0x05, 0x05, 0x01, 0x1f, 0x1f, 0x1f, 0xd9, + 0x66, 0x66, 0x66, 0xfe, 0x44, 0x44, 0x44, 0xfe, + 0x2b, 0x2b, 0x2b, 0xfe, 0x04, 0x04, 0x04, 0xfe, + 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0xfe, + 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, + 0x00, 0x00, 0x00, 0xfa, 0x19, 0x19, 0x1a, 0xfe, + 0x69, 0x6e, 0x70, 0xff, 0xad, 0xb0, 0xb2, 0xff, + 0xae, 0xb1, 0xb2, 0xff, 0x74, 0x7a, 0x7c, 0xff, + 0x6e, 0x73, 0x75, 0xff, 0x45, 0x4a, 0x4b, 0xff, + 0x0b, 0x0c, 0x0c, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0x87, 0x7e, 0x7d, 0x79, 0xee, + 0x9c, 0x9d, 0x98, 0xff, 0xd1, 0xd1, 0xcb, 0xff, + 0xd5, 0xd5, 0xd0, 0xff, 0xc9, 0xc9, 0xc5, 0xff, + 0xf2, 0xf2, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x27, 0x2c, 0x2e, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x69, 0x6a, 0x67, 0xff, 0x8f, 0x91, 0x8c, 0xff, + 0xd0, 0xd0, 0xcb, 0xff, 0xd6, 0xd6, 0xd1, 0xff, + 0xdb, 0xdb, 0xd6, 0xff, 0xd7, 0xd7, 0xd3, 0xff, + 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x63, 0x66, 0x67, 0xff, 0x03, 0x03, 0x03, 0xff, + 0x0c, 0x0c, 0x0c, 0xff, 0xcb, 0xcb, 0xc5, 0xff, + 0x85, 0x88, 0x84, 0xff, 0x71, 0x6c, 0x5f, 0xff, + 0x62, 0x5b, 0x49, 0xff, 0x61, 0x5a, 0x47, 0xff, + 0x5f, 0x58, 0x46, 0xff, 0x5d, 0x56, 0x45, 0xff, + 0x5a, 0x54, 0x43, 0xff, 0x58, 0x52, 0x42, 0xff, + 0x57, 0x51, 0x40, 0xff, 0x55, 0x4f, 0x3f, 0xff, + 0x53, 0x4d, 0x3d, 0xff, 0x50, 0x4a, 0x3b, 0xff, + 0x4f, 0x49, 0x39, 0xff, 0x4d, 0x47, 0x39, 0xff, + 0x56, 0x51, 0x43, 0xff, 0x5c, 0x56, 0x49, 0xff, + 0x2e, 0x33, 0x34, 0xff, 0x37, 0x35, 0x37, 0xff, + 0x45, 0x3a, 0x3a, 0xff, 0x40, 0x3c, 0x3c, 0xff, + 0x38, 0x3c, 0x3c, 0xff, 0x33, 0x3e, 0x3e, 0xff, + 0x2d, 0x3f, 0x3f, 0xff, 0x2d, 0x4c, 0x4c, 0xff, + 0x23, 0x47, 0x47, 0xff, 0x14, 0x34, 0x34, 0xff, + 0x37, 0x2e, 0x2b, 0xd2, 0x2b, 0x31, 0x34, 0x99, + 0x57, 0x37, 0x13, 0x98, 0x66, 0x38, 0x06, 0x98, + 0x67, 0x39, 0x06, 0x99, 0x85, 0x49, 0x0a, 0x98, + 0xa8, 0x5d, 0x0c, 0x99, 0xbe, 0x68, 0x0e, 0x99, + 0xd8, 0x74, 0x0c, 0x99, 0x91, 0x89, 0x7b, 0x99, + 0x9a, 0x9c, 0x97, 0x99, 0xcf, 0xcf, 0xcd, 0x99, + 0x83, 0x85, 0x7f, 0x81, 0x15, 0x16, 0x14, 0x08, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0x39, 0x39, 0xce, 0x16, 0x16, 0x16, 0xfd, + 0x20, 0x20, 0x20, 0xfe, 0x02, 0x02, 0x02, 0xfe, + 0x12, 0x12, 0x12, 0xfe, 0x00, 0x00, 0x00, 0xfe, + 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, + 0x06, 0x06, 0x06, 0xff, 0x70, 0x75, 0x77, 0xff, + 0xef, 0xf0, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe7, 0xe8, 0xe9, 0xff, + 0x54, 0x5b, 0x5d, 0xff, 0x63, 0x68, 0x6a, 0xff, + 0x5b, 0x60, 0x62, 0xff, 0x19, 0x1c, 0x1c, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x3a, 0x3b, 0x39, 0xfe, + 0x9d, 0x9f, 0x99, 0xff, 0xcc, 0xcc, 0xc5, 0xff, + 0xd0, 0xd0, 0xca, 0xff, 0x9d, 0x9d, 0x99, 0xff, + 0x88, 0x88, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xbe, 0xbf, 0xc0, 0xff, + 0x2b, 0x31, 0x33, 0xff, 0x03, 0x04, 0x05, 0xff, + 0x6a, 0x6b, 0x67, 0xff, 0x91, 0x92, 0x8d, 0xff, + 0xcd, 0xcd, 0xc6, 0xff, 0xd1, 0xd1, 0xcb, 0xff, + 0xd5, 0xd5, 0xd0, 0xff, 0x76, 0x76, 0x73, 0xff, + 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x6d, 0x71, 0x72, 0xff, 0x2a, 0x2f, 0x31, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x95, 0x96, 0x90, 0xff, + 0x88, 0x89, 0x85, 0xff, 0x75, 0x73, 0x66, 0xff, + 0x63, 0x5c, 0x49, 0xff, 0x61, 0x5a, 0x47, 0xff, + 0x5f, 0x59, 0x47, 0xff, 0x5d, 0x57, 0x45, 0xff, + 0x5b, 0x54, 0x43, 0xff, 0x59, 0x52, 0x42, 0xff, + 0x57, 0x51, 0x40, 0xff, 0x55, 0x4f, 0x3f, 0xff, + 0x53, 0x4d, 0x3d, 0xff, 0x50, 0x4a, 0x3b, 0xff, + 0x4f, 0x49, 0x3b, 0xff, 0x4d, 0x47, 0x38, 0xff, + 0x58, 0x53, 0x46, 0xff, 0x58, 0x53, 0x46, 0xff, + 0x2c, 0x32, 0x35, 0xff, 0x3c, 0x36, 0x37, 0xff, + 0x45, 0x3a, 0x3a, 0xff, 0x3f, 0x3b, 0x3b, 0xff, + 0x39, 0x3d, 0x3d, 0xff, 0x31, 0x3c, 0x3c, 0xff, + 0x2d, 0x41, 0x41, 0xff, 0x2d, 0x4c, 0x4c, 0xff, + 0x1b, 0x37, 0x37, 0xff, 0x15, 0x34, 0x34, 0xff, + 0x25, 0x2a, 0x2b, 0xa6, 0x1e, 0x21, 0x22, 0x81, + 0x04, 0x04, 0x04, 0x46, 0x12, 0x09, 0x01, 0x3e, + 0x5d, 0x32, 0x05, 0x7c, 0x68, 0x39, 0x07, 0x99, + 0x68, 0x39, 0x07, 0x98, 0x7a, 0x43, 0x09, 0x99, + 0x94, 0x72, 0x4b, 0x99, 0x83, 0x86, 0x82, 0x99, + 0xea, 0xea, 0xe9, 0x99, 0xff, 0xff, 0xff, 0x98, + 0xa5, 0xa6, 0xa2, 0x99, 0x85, 0x87, 0x82, 0x96, + 0x88, 0x8a, 0x86, 0x44, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, + 0x14, 0x14, 0x14, 0x93, 0x00, 0x00, 0x00, 0xeb, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xfe, + 0x00, 0x00, 0x00, 0xf9, 0x00, 0x00, 0x00, 0x2b, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, + 0x28, 0x28, 0x29, 0xff, 0x92, 0x96, 0x98, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x89, 0x8d, 0x90, 0xff, 0x37, 0x3e, 0x41, 0xff, + 0x53, 0x58, 0x5a, 0xff, 0x4f, 0x54, 0x55, 0xff, + 0x15, 0x17, 0x18, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x55, 0x56, 0x53, 0xff, 0xc7, 0xc7, 0xbf, 0xff, + 0xc9, 0xc9, 0xc1, 0xff, 0xa8, 0xa8, 0xa2, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x68, 0x6c, 0x6e, 0xff, + 0x75, 0x7a, 0x7b, 0xff, 0x29, 0x2f, 0x31, 0xff, + 0x30, 0x36, 0x38, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x5f, 0x61, 0x5e, 0xff, 0x8e, 0x90, 0x8a, 0xff, + 0xc7, 0xc7, 0xc0, 0xff, 0xcc, 0xcc, 0xc5, 0xff, + 0xd0, 0xd0, 0xca, 0xff, 0x55, 0x55, 0x53, 0xff, + 0x82, 0x82, 0x82, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe2, 0xe3, 0xe3, 0xff, + 0x2b, 0x31, 0x33, 0xff, 0x2f, 0x35, 0x37, 0xff, + 0x03, 0x03, 0x03, 0xff, 0x7b, 0x7b, 0x76, 0xff, + 0x86, 0x88, 0x84, 0xff, 0x71, 0x6e, 0x5f, 0xff, + 0x63, 0x5c, 0x49, 0xff, 0x61, 0x5a, 0x47, 0xff, + 0x5f, 0x59, 0x47, 0xff, 0x5d, 0x57, 0x45, 0xff, + 0x5b, 0x54, 0x43, 0xff, 0x59, 0x52, 0x42, 0xff, + 0x57, 0x51, 0x40, 0xff, 0x55, 0x4f, 0x3f, 0xff, + 0x53, 0x4d, 0x3d, 0xff, 0x50, 0x4a, 0x3b, 0xff, + 0x4f, 0x49, 0x3b, 0xff, 0x4b, 0x46, 0x38, 0xff, + 0x5b, 0x55, 0x49, 0xff, 0x52, 0x4d, 0x43, 0xff, + 0x2c, 0x32, 0x35, 0xff, 0x42, 0x36, 0x37, 0xff, + 0x46, 0x3a, 0x3a, 0xff, 0x3d, 0x3a, 0x3a, 0xff, + 0x38, 0x3b, 0x3b, 0xff, 0x31, 0x3d, 0x3d, 0xff, + 0x33, 0x4a, 0x4a, 0xff, 0x2c, 0x49, 0x49, 0xff, + 0x19, 0x34, 0x34, 0xff, 0x29, 0x24, 0x24, 0xd9, + 0x0a, 0x08, 0x08, 0x6b, 0x08, 0x04, 0x04, 0x5a, + 0x07, 0x04, 0x04, 0x4d, 0x04, 0x01, 0x01, 0x39, + 0x00, 0x00, 0x00, 0x29, 0x21, 0x12, 0x01, 0x31, + 0x5b, 0x32, 0x06, 0x68, 0x66, 0x38, 0x06, 0x99, + 0x82, 0x7b, 0x6f, 0x99, 0x87, 0x89, 0x84, 0x98, + 0xbc, 0xbd, 0xbc, 0x99, 0xeb, 0xeb, 0xeb, 0x99, + 0xff, 0xff, 0xff, 0x99, 0xf3, 0xf3, 0xf3, 0x99, + 0xbf, 0xc0, 0xbd, 0x99, 0x87, 0x89, 0x84, 0x83, + 0x33, 0x33, 0x33, 0x79, 0x56, 0x56, 0x56, 0x8b, + 0x54, 0x54, 0x54, 0x8a, 0x1c, 0x1c, 0x1c, 0x67, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, + 0x00, 0x00, 0x00, 0x93, 0x00, 0x00, 0x00, 0xec, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x72, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, + 0x47, 0x48, 0x49, 0xff, 0xb7, 0xba, 0xbb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb4, 0xb8, 0xb9, 0xff, 0x3a, 0x43, 0x45, 0xff, + 0x30, 0x36, 0x39, 0xff, 0x47, 0x4b, 0x4c, 0xff, + 0x41, 0x44, 0x45, 0xff, 0x09, 0x0a, 0x0a, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x9f, 0xa0, 0x9a, 0xff, + 0xc1, 0xc1, 0xb9, 0xff, 0xc1, 0xc1, 0xba, 0xff, + 0x07, 0x07, 0x07, 0xff, 0x01, 0x02, 0x02, 0xff, + 0x29, 0x2e, 0x30, 0xff, 0x2d, 0x33, 0x35, 0xff, + 0x0d, 0x0f, 0x0f, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x75, 0x76, 0x72, 0xff, 0x8a, 0x8b, 0x86, 0xff, + 0xc3, 0xc2, 0xbb, 0xff, 0xc6, 0xc6, 0xbf, 0xff, + 0xc9, 0xc9, 0xc3, 0xff, 0x70, 0x70, 0x6c, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x37, 0x3c, 0x3f, 0xff, + 0x4e, 0x54, 0x56, 0xff, 0x27, 0x2d, 0x2f, 0xff, + 0x2d, 0x33, 0x35, 0xff, 0x2c, 0x33, 0x34, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x78, 0x79, 0x75, 0xff, + 0x88, 0x8a, 0x86, 0xff, 0x67, 0x60, 0x4d, 0xff, + 0x62, 0x5b, 0x49, 0xff, 0x61, 0x5a, 0x47, 0xff, + 0x5f, 0x59, 0x47, 0xff, 0x5d, 0x56, 0x45, 0xff, + 0x5b, 0x54, 0x43, 0xff, 0x58, 0x52, 0x42, 0xff, + 0x57, 0x51, 0x40, 0xff, 0x55, 0x4f, 0x3f, 0xff, + 0x53, 0x4d, 0x3d, 0xff, 0x50, 0x4a, 0x3b, 0xff, + 0x4f, 0x49, 0x3a, 0xff, 0x4c, 0x46, 0x38, 0xff, + 0x5c, 0x56, 0x4a, 0xff, 0x49, 0x48, 0x3f, 0xff, + 0x2d, 0x33, 0x35, 0xff, 0x4b, 0x38, 0x38, 0xff, + 0x44, 0x38, 0x38, 0xff, 0x3d, 0x39, 0x39, 0xff, + 0x36, 0x3a, 0x3a, 0xff, 0x34, 0x41, 0x41, 0xff, + 0x32, 0x49, 0x49, 0xff, 0x1f, 0x35, 0x35, 0xff, + 0x19, 0x34, 0x34, 0xff, 0x10, 0x0a, 0x0a, 0x82, + 0x0b, 0x07, 0x07, 0x6f, 0x0a, 0x06, 0x06, 0x60, + 0x09, 0x05, 0x05, 0x4f, 0x08, 0x04, 0x04, 0x3e, + 0x05, 0x02, 0x02, 0x29, 0x00, 0x00, 0x00, 0x1d, + 0x00, 0x00, 0x00, 0x16, 0x21, 0x10, 0x00, 0x1c, + 0x83, 0x83, 0x7c, 0x7a, 0x88, 0x89, 0x84, 0x94, + 0x86, 0x88, 0x83, 0x99, 0x8c, 0x8e, 0x89, 0x99, + 0xa8, 0xaa, 0xa7, 0x98, 0xe9, 0xea, 0xea, 0x99, + 0xff, 0xff, 0xff, 0x99, 0x4a, 0x4a, 0x4b, 0x99, + 0x65, 0x65, 0x65, 0x99, 0xa9, 0xa9, 0xa9, 0x98, + 0xa6, 0xa6, 0xa6, 0x98, 0x5a, 0x5a, 0x5a, 0x99, + 0x1e, 0x1e, 0x1e, 0x8a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, + 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0xa9, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, + 0x4b, 0x4c, 0x4d, 0xff, 0x97, 0x9b, 0x9d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x93, 0x98, 0x9a, 0xff, 0x3b, 0x43, 0x46, 0xff, + 0x31, 0x38, 0x3a, 0xff, 0x27, 0x2c, 0x2d, 0xff, + 0x3a, 0x3e, 0x3f, 0xff, 0x2d, 0x30, 0x31, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x2d, 0x2e, 0x2b, 0xff, + 0xb7, 0xb7, 0xae, 0xff, 0xbc, 0xbc, 0xb3, 0xff, + 0xb4, 0xb4, 0xad, 0xff, 0x08, 0x08, 0x07, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x61, 0x62, 0x5e, 0xff, + 0x88, 0x8a, 0x85, 0xff, 0x87, 0x89, 0x84, 0xff, + 0xa3, 0xa4, 0x9d, 0xff, 0xbf, 0xbf, 0xb7, 0xff, + 0xc3, 0xc3, 0xbb, 0xff, 0xc5, 0xc5, 0xbe, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x08, 0x09, 0x0a, 0xff, + 0x30, 0x36, 0x37, 0xff, 0x2f, 0x35, 0x37, 0xff, + 0x2f, 0x35, 0x37, 0xff, 0x04, 0x05, 0x05, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x8f, 0x91, 0x8b, 0xff, + 0x82, 0x83, 0x7c, 0xff, 0x63, 0x5b, 0x48, 0xff, + 0x62, 0x5b, 0x48, 0xff, 0x60, 0x59, 0x47, 0xff, + 0x5f, 0x58, 0x46, 0xff, 0x5d, 0x56, 0x45, 0xff, + 0x5a, 0x54, 0x43, 0xff, 0x58, 0x52, 0x41, 0xff, + 0x56, 0x50, 0x40, 0xff, 0x55, 0x4e, 0x3f, 0xff, + 0x52, 0x4c, 0x3d, 0xff, 0x50, 0x4a, 0x3b, 0xff, + 0x4f, 0x49, 0x3a, 0xff, 0x4d, 0x47, 0x39, 0xff, + 0x5d, 0x58, 0x4b, 0xff, 0x3f, 0x3f, 0x3a, 0xff, + 0x2f, 0x32, 0x34, 0xff, 0x48, 0x36, 0x36, 0xff, + 0x43, 0x38, 0x38, 0xff, 0x3d, 0x38, 0x38, 0xff, + 0x37, 0x3b, 0x3b, 0xff, 0x39, 0x47, 0x47, 0xff, + 0x2d, 0x42, 0x42, 0xff, 0x1d, 0x32, 0x32, 0xff, + 0x24, 0x1d, 0x1d, 0xc4, 0x0c, 0x07, 0x07, 0x7d, + 0x0d, 0x08, 0x08, 0x71, 0x0c, 0x07, 0x07, 0x62, + 0x0c, 0x07, 0x07, 0x50, 0x0b, 0x06, 0x06, 0x3f, + 0x09, 0x05, 0x05, 0x2b, 0x03, 0x01, 0x01, 0x17, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x0b, + 0x3d, 0x3c, 0x3c, 0x0b, 0x00, 0x00, 0x00, 0x00, + 0x88, 0x89, 0x84, 0x1c, 0x87, 0x89, 0x84, 0x59, + 0x87, 0x89, 0x84, 0x92, 0x82, 0x84, 0x7f, 0x99, + 0x82, 0x83, 0x80, 0x99, 0x50, 0x50, 0x50, 0x99, + 0x76, 0x76, 0x76, 0x99, 0xae, 0xae, 0xae, 0x99, + 0xa9, 0xa9, 0xa9, 0x99, 0x66, 0x66, 0x66, 0x99, + 0x28, 0x28, 0x28, 0x99, 0x16, 0x16, 0x16, 0x6e, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, + 0x34, 0x35, 0x36, 0xff, 0x64, 0x69, 0x6c, 0xff, + 0xf7, 0xf7, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf9, 0xf9, 0xff, + 0x3b, 0x44, 0x48, 0xff, 0x39, 0x3f, 0x42, 0xff, + 0x2f, 0x35, 0x37, 0xff, 0x25, 0x2b, 0x2c, 0xff, + 0x20, 0x24, 0x26, 0xff, 0x2e, 0x31, 0x31, 0xff, + 0x10, 0x11, 0x12, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x88, 0x8a, 0x85, 0xff, 0x9b, 0x9c, 0x96, 0xff, + 0xb8, 0xb8, 0xaf, 0xff, 0xb9, 0xb9, 0xb0, 0xff, + 0xa9, 0xa9, 0xa0, 0xff, 0x9a, 0x9a, 0x93, 0xff, + 0x8a, 0x8c, 0x86, 0xff, 0x89, 0x8b, 0x86, 0xff, + 0x80, 0x7d, 0x6c, 0xff, 0x83, 0x7f, 0x72, 0xff, + 0x88, 0x8a, 0x85, 0xff, 0xb7, 0xb7, 0xae, 0xff, + 0xbd, 0xbd, 0xb5, 0xff, 0xbf, 0xbf, 0xb6, 0xff, + 0x97, 0x97, 0x91, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x02, 0x03, 0x03, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x88, 0x89, 0x83, 0xff, 0x89, 0x8c, 0x87, 0xff, + 0x6f, 0x6a, 0x5a, 0xff, 0x63, 0x5c, 0x4a, 0xff, + 0x61, 0x5a, 0x48, 0xff, 0x60, 0x59, 0x47, 0xff, + 0x5f, 0x58, 0x46, 0xff, 0x5c, 0x56, 0x44, 0xff, + 0x5a, 0x54, 0x43, 0xff, 0x58, 0x51, 0x41, 0xff, + 0x56, 0x50, 0x40, 0xff, 0x54, 0x4e, 0x3e, 0xff, + 0x52, 0x4c, 0x3d, 0xff, 0x50, 0x4a, 0x3b, 0xff, + 0x4e, 0x49, 0x3a, 0xff, 0x53, 0x4d, 0x3f, 0xff, + 0x5d, 0x58, 0x4b, 0xff, 0x35, 0x38, 0x36, 0xff, + 0x33, 0x31, 0x32, 0xff, 0x3f, 0x2e, 0x2e, 0xff, + 0x3c, 0x32, 0x32, 0xff, 0x3a, 0x36, 0x36, 0xff, + 0x3e, 0x45, 0x45, 0xff, 0x36, 0x44, 0x44, 0xff, + 0x21, 0x30, 0x30, 0xff, 0x21, 0x2e, 0x2e, 0xfb, + 0x0e, 0x09, 0x09, 0x88, 0x0e, 0x09, 0x09, 0x7e, + 0x0e, 0x09, 0x09, 0x70, 0x0e, 0x09, 0x09, 0x5f, + 0x0e, 0x09, 0x09, 0x4f, 0x0e, 0x08, 0x08, 0x3c, + 0x0d, 0x08, 0x08, 0x28, 0x0a, 0x06, 0x06, 0x15, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x88, 0x8a, 0x85, 0x2c, + 0x6a, 0x6b, 0x68, 0x7d, 0x5b, 0x5b, 0x5b, 0x99, + 0x5d, 0x5d, 0x5d, 0x99, 0x7f, 0x7f, 0x7f, 0x99, + 0x78, 0x78, 0x78, 0x99, 0x32, 0x32, 0x32, 0x99, + 0x5f, 0x5f, 0x5f, 0x98, 0x16, 0x16, 0x16, 0x97, + 0x0e, 0x0e, 0x0e, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, + 0x14, 0x14, 0x14, 0xfe, 0x5b, 0x60, 0x61, 0xff, + 0x3f, 0x45, 0x48, 0xff, 0x91, 0x96, 0x97, 0xff, + 0x93, 0x98, 0x9a, 0xff, 0x47, 0x4f, 0x52, 0xff, + 0x3a, 0x42, 0x44, 0xff, 0x33, 0x3a, 0x3d, 0xff, + 0x2b, 0x31, 0x33, 0xff, 0x22, 0x27, 0x28, 0xff, + 0x18, 0x1b, 0x1c, 0xff, 0x26, 0x29, 0x2a, 0xff, + 0x1f, 0x22, 0x23, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x43, 0x43, 0x3e, 0xff, 0x88, 0x8b, 0x86, 0xff, + 0x88, 0x8a, 0x85, 0xff, 0x8a, 0x8c, 0x87, 0xff, + 0x8a, 0x8c, 0x86, 0xff, 0x87, 0x8a, 0x86, 0xff, + 0x86, 0x88, 0x82, 0xff, 0x7b, 0x75, 0x61, 0xff, + 0x78, 0x71, 0x59, 0xff, 0x79, 0x70, 0x5a, 0xff, + 0x86, 0x87, 0x81, 0xff, 0x88, 0x8a, 0x85, 0xff, + 0xab, 0xac, 0xa3, 0xff, 0xbb, 0xbb, 0xb2, 0xff, + 0xbb, 0xbb, 0xb2, 0xff, 0xb0, 0xb0, 0xa7, 0xff, + 0x7e, 0x7e, 0x78, 0xff, 0x5e, 0x5e, 0x59, 0xff, + 0x84, 0x84, 0x7e, 0xff, 0x92, 0x93, 0x8d, 0xff, + 0x89, 0x8b, 0x86, 0xff, 0x77, 0x75, 0x69, 0xff, + 0x64, 0x5c, 0x4a, 0xff, 0x62, 0x5c, 0x49, 0xff, + 0x61, 0x5a, 0x47, 0xff, 0x5f, 0x58, 0x46, 0xff, + 0x5d, 0x57, 0x45, 0xff, 0x5c, 0x55, 0x44, 0xff, + 0x59, 0x53, 0x42, 0xff, 0x57, 0x51, 0x40, 0xff, + 0x55, 0x4f, 0x3f, 0xff, 0x54, 0x4d, 0x3e, 0xff, + 0x52, 0x4c, 0x3c, 0xff, 0x4f, 0x49, 0x3a, 0xff, + 0x4e, 0x47, 0x39, 0xff, 0x58, 0x53, 0x46, 0xff, + 0x58, 0x54, 0x46, 0xff, 0x2d, 0x33, 0x34, 0xff, + 0x53, 0x4d, 0x4e, 0xff, 0x65, 0x5d, 0x5d, 0xff, + 0x47, 0x3d, 0x3d, 0xff, 0x33, 0x2f, 0x2f, 0xff, + 0x31, 0x35, 0x35, 0xff, 0x2c, 0x36, 0x36, 0xff, + 0x23, 0x30, 0x30, 0xfe, 0x10, 0x0a, 0x0a, 0x92, + 0x0f, 0x0a, 0x0a, 0x84, 0x0f, 0x0a, 0x0a, 0x7a, + 0x0f, 0x0a, 0x0a, 0x6d, 0x0f, 0x0a, 0x0a, 0x5c, + 0x10, 0x0a, 0x0a, 0x4a, 0x10, 0x09, 0x09, 0x37, + 0x12, 0x0a, 0x0a, 0x23, 0x13, 0x0a, 0x0a, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x4c, 0x4c, 0x4c, 0x19, 0x59, 0x59, 0x59, 0x99, + 0x5e, 0x5e, 0x5e, 0x98, 0x54, 0x54, 0x54, 0x99, + 0x45, 0x45, 0x45, 0x99, 0x36, 0x36, 0x36, 0x99, + 0x28, 0x28, 0x28, 0x99, 0x28, 0x28, 0x28, 0x99, + 0x08, 0x08, 0x08, 0x47, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, + 0x03, 0x03, 0x03, 0xff, 0x53, 0x57, 0x59, 0xff, + 0x3e, 0x44, 0x45, 0xff, 0x2f, 0x36, 0x38, 0xff, + 0x32, 0x39, 0x3b, 0xff, 0x35, 0x3c, 0x3e, 0xff, + 0x32, 0x39, 0x3b, 0xff, 0x2c, 0x32, 0x34, 0xff, + 0x26, 0x2b, 0x2d, 0xff, 0x1e, 0x22, 0x24, 0xff, + 0x15, 0x19, 0x1a, 0xff, 0x1e, 0x21, 0x21, 0xff, + 0x21, 0x25, 0x26, 0xff, 0x03, 0x03, 0x04, 0xff, + 0x1d, 0x1b, 0x15, 0xff, 0x74, 0x6d, 0x58, 0xff, + 0x78, 0x72, 0x61, 0xff, 0x7a, 0x76, 0x66, 0xff, + 0x7b, 0x76, 0x65, 0xff, 0x78, 0x72, 0x5f, 0xff, + 0x75, 0x6d, 0x56, 0xff, 0x76, 0x6e, 0x58, 0xff, + 0x76, 0x6e, 0x58, 0xff, 0x75, 0x6d, 0x57, 0xff, + 0x75, 0x6d, 0x57, 0xff, 0x83, 0x82, 0x7a, 0xff, + 0x87, 0x89, 0x84, 0xff, 0x90, 0x92, 0x8c, 0xff, + 0x9e, 0x9f, 0x98, 0xff, 0xa8, 0xa9, 0xa1, 0xff, + 0xa7, 0xa8, 0xa0, 0xff, 0x9c, 0x9d, 0x97, 0xff, + 0x8d, 0x8f, 0x89, 0xff, 0x89, 0x8c, 0x87, 0xff, + 0x76, 0x73, 0x67, 0xff, 0x65, 0x5e, 0x4b, 0xff, + 0x63, 0x5c, 0x4a, 0xff, 0x62, 0x5b, 0x48, 0xff, + 0x60, 0x59, 0x47, 0xff, 0x5e, 0x57, 0x45, 0xff, + 0x5d, 0x56, 0x45, 0xff, 0x5a, 0x54, 0x43, 0xff, + 0x58, 0x52, 0x41, 0xff, 0x56, 0x50, 0x40, 0xff, + 0x55, 0x4e, 0x3f, 0xff, 0x52, 0x4d, 0x3d, 0xff, + 0x51, 0x4b, 0x3c, 0xff, 0x4f, 0x49, 0x3b, 0xff, + 0x4c, 0x46, 0x38, 0xff, 0x5a, 0x55, 0x48, 0xff, + 0x49, 0x47, 0x3e, 0xff, 0x2c, 0x33, 0x35, 0xff, + 0x5e, 0x41, 0x41, 0xff, 0x6f, 0x5a, 0x5a, 0xff, + 0x6e, 0x75, 0x75, 0xff, 0x60, 0x6e, 0x6e, 0xff, + 0x42, 0x4e, 0x4e, 0xff, 0x2c, 0x36, 0x36, 0xff, + 0x28, 0x38, 0x38, 0xff, 0x2d, 0x2d, 0x2d, 0xe9, + 0x1c, 0x13, 0x13, 0x93, 0x0b, 0x07, 0x07, 0x6d, + 0x0f, 0x0a, 0x0a, 0x64, 0x10, 0x0a, 0x0a, 0x55, + 0x11, 0x0b, 0x0b, 0x45, 0x12, 0x0a, 0x0a, 0x33, + 0x13, 0x0b, 0x0b, 0x21, 0x13, 0x0a, 0x0a, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4e, 0x4e, 0x4e, 0x86, + 0x50, 0x50, 0x50, 0x99, 0x4a, 0x4a, 0x4a, 0x98, + 0x3f, 0x3f, 0x3f, 0x99, 0x31, 0x31, 0x31, 0x99, + 0x22, 0x22, 0x22, 0x99, 0x18, 0x18, 0x18, 0x99, + 0x05, 0x05, 0x05, 0x99, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0xff, 0x27, 0x28, 0x29, 0xff, + 0x49, 0x4d, 0x4f, 0xff, 0x2a, 0x2f, 0x31, 0xff, + 0x2b, 0x30, 0x32, 0xff, 0x2b, 0x30, 0x32, 0xff, + 0x29, 0x2e, 0x30, 0xff, 0x25, 0x2a, 0x2c, 0xff, + 0x1f, 0x24, 0x26, 0xff, 0x18, 0x1c, 0x1d, 0xff, + 0x13, 0x16, 0x17, 0xff, 0x18, 0x1b, 0x1c, 0xff, + 0x1d, 0x20, 0x21, 0xff, 0x07, 0x09, 0x09, 0xff, + 0x14, 0x13, 0x0f, 0xff, 0x72, 0x6a, 0x54, 0xff, + 0x6f, 0x68, 0x53, 0xff, 0x71, 0x69, 0x54, 0xff, + 0x71, 0x6a, 0x54, 0xff, 0x72, 0x6a, 0x55, 0xff, + 0x73, 0x6b, 0x55, 0xff, 0x73, 0x6b, 0x55, 0xff, + 0x73, 0x6b, 0x55, 0xff, 0x73, 0x6b, 0x55, 0xff, + 0x72, 0x6b, 0x55, 0xff, 0x70, 0x68, 0x52, 0xff, + 0x77, 0x72, 0x61, 0xff, 0x81, 0x81, 0x78, 0xff, + 0x86, 0x88, 0x83, 0xff, 0x87, 0x89, 0x85, 0xff, + 0x87, 0x89, 0x85, 0xff, 0x85, 0x86, 0x80, 0xff, + 0x7d, 0x7b, 0x71, 0xff, 0x6b, 0x65, 0x53, 0xff, + 0x65, 0x5e, 0x4a, 0xff, 0x64, 0x5d, 0x4a, 0xff, + 0x63, 0x5d, 0x4a, 0xff, 0x60, 0x59, 0x47, 0xff, + 0x5f, 0x58, 0x46, 0xff, 0x5d, 0x56, 0x45, 0xff, + 0x5b, 0x55, 0x44, 0xff, 0x59, 0x53, 0x42, 0xff, + 0x57, 0x51, 0x40, 0xff, 0x55, 0x4f, 0x3f, 0xff, + 0x54, 0x4e, 0x3e, 0xff, 0x52, 0x4c, 0x3d, 0xff, + 0x50, 0x4a, 0x3b, 0xff, 0x4d, 0x48, 0x39, 0xff, + 0x4f, 0x4a, 0x3b, 0xff, 0x5b, 0x56, 0x49, 0xff, + 0x37, 0x39, 0x37, 0xff, 0x30, 0x33, 0x34, 0xff, + 0x43, 0x2c, 0x2c, 0xff, 0x48, 0x37, 0x37, 0xff, + 0x59, 0x4b, 0x4b, 0xff, 0x5c, 0x5d, 0x5d, 0xff, + 0x5b, 0x77, 0x77, 0xff, 0x55, 0x7f, 0x7f, 0xff, + 0x39, 0x57, 0x57, 0xff, 0x24, 0x3d, 0x3d, 0xff, + 0x1e, 0x3d, 0x3d, 0xff, 0x2c, 0x2b, 0x2b, 0xd9, + 0x47, 0x3e, 0x3e, 0x98, 0x0e, 0x07, 0x07, 0x4d, + 0x12, 0x0b, 0x0b, 0x3f, 0x12, 0x0a, 0x0a, 0x2e, + 0x13, 0x0b, 0x0b, 0x1d, 0x13, 0x0a, 0x0a, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x41, 0x41, 0x41, 0x7e, 0x3d, 0x3d, 0x3d, 0x99, + 0x34, 0x34, 0x34, 0x99, 0x29, 0x29, 0x29, 0x99, + 0x1d, 0x1d, 0x1d, 0x99, 0x0f, 0x0f, 0x0f, 0x99, + 0x01, 0x01, 0x01, 0x99, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0xff, + 0x39, 0x3d, 0x3e, 0xff, 0x36, 0x3b, 0x3b, 0xff, + 0x20, 0x24, 0x27, 0xff, 0x21, 0x26, 0x28, 0xff, + 0x1f, 0x24, 0x26, 0xff, 0x1d, 0x21, 0x22, 0xff, + 0x18, 0x1b, 0x1c, 0xff, 0x13, 0x16, 0x17, 0xff, + 0x14, 0x17, 0x18, 0xff, 0x15, 0x18, 0x19, 0xff, + 0x18, 0x1a, 0x1b, 0xff, 0x09, 0x0a, 0x0a, 0xff, + 0x12, 0x11, 0x0d, 0xff, 0x71, 0x69, 0x53, 0xff, + 0x6d, 0x65, 0x51, 0xff, 0x6e, 0x67, 0x52, 0xff, + 0x6f, 0x67, 0x52, 0xff, 0x6f, 0x68, 0x52, 0xff, + 0x70, 0x68, 0x53, 0xff, 0x70, 0x68, 0x53, 0xff, + 0x70, 0x68, 0x53, 0xff, 0x70, 0x68, 0x53, 0xff, + 0x6f, 0x68, 0x52, 0xff, 0x6f, 0x67, 0x52, 0xff, + 0x6e, 0x67, 0x52, 0xff, 0x6c, 0x64, 0x4f, 0xff, + 0x6b, 0x64, 0x4f, 0xff, 0x6b, 0x64, 0x4f, 0xff, + 0x6a, 0x62, 0x4e, 0xff, 0x67, 0x60, 0x4b, 0xff, + 0x67, 0x60, 0x4b, 0xff, 0x65, 0x5e, 0x4b, 0xff, + 0x64, 0x5d, 0x4a, 0xff, 0x62, 0x5c, 0x49, 0xff, + 0x4f, 0x49, 0x3a, 0xff, 0x45, 0x40, 0x33, 0xff, + 0x5b, 0x55, 0x43, 0xff, 0x5c, 0x56, 0x44, 0xff, + 0x5a, 0x53, 0x42, 0xff, 0x58, 0x51, 0x41, 0xff, + 0x56, 0x50, 0x40, 0xff, 0x54, 0x4e, 0x3e, 0xff, + 0x53, 0x4d, 0x3d, 0xff, 0x51, 0x4b, 0x3c, 0xff, + 0x4f, 0x49, 0x3a, 0xff, 0x4d, 0x48, 0x38, 0xff, + 0x59, 0x54, 0x47, 0xff, 0x59, 0x53, 0x46, 0xff, + 0x2e, 0x34, 0x35, 0xff, 0x43, 0x34, 0x36, 0xff, + 0x4d, 0x33, 0x33, 0xff, 0x3f, 0x2f, 0x2f, 0xff, + 0x3a, 0x30, 0x30, 0xff, 0x41, 0x3e, 0x3e, 0xff, + 0x49, 0x50, 0x50, 0xff, 0x4a, 0x5f, 0x5f, 0xff, + 0x4b, 0x7a, 0x7a, 0xff, 0x45, 0x89, 0x89, 0xff, + 0x28, 0x57, 0x57, 0xff, 0x25, 0x62, 0x62, 0xff, + 0x30, 0x93, 0x93, 0xff, 0x5b, 0x5d, 0x5d, 0xb2, + 0x12, 0x0b, 0x0b, 0x37, 0x11, 0x0a, 0x0a, 0x26, + 0x14, 0x0b, 0x0b, 0x16, 0x15, 0x0b, 0x0b, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2f, 0x2f, 0x2f, 0x11, + 0x29, 0x29, 0x29, 0x62, 0x1e, 0x1e, 0x1e, 0x99, + 0x14, 0x14, 0x14, 0x99, 0x07, 0x07, 0x07, 0x98, + 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x26, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf5, + 0x08, 0x08, 0x08, 0xff, 0x2f, 0x32, 0x33, 0xff, + 0x27, 0x2a, 0x2b, 0xff, 0x18, 0x1a, 0x1c, 0xff, + 0x16, 0x19, 0x1b, 0xff, 0x14, 0x18, 0x19, 0xff, + 0x13, 0x16, 0x17, 0xff, 0x14, 0x17, 0x18, 0xff, + 0x14, 0x17, 0x18, 0xff, 0x14, 0x17, 0x18, 0xff, + 0x14, 0x17, 0x18, 0xff, 0x05, 0x06, 0x07, 0xff, + 0x17, 0x16, 0x12, 0xff, 0x6c, 0x65, 0x50, 0xff, + 0x6a, 0x63, 0x4f, 0xff, 0x6b, 0x64, 0x4f, 0xff, + 0x6c, 0x65, 0x50, 0xff, 0x6d, 0x65, 0x50, 0xff, + 0x6d, 0x65, 0x51, 0xff, 0x6d, 0x65, 0x51, 0xff, + 0x6d, 0x65, 0x51, 0xff, 0x6d, 0x65, 0x51, 0xff, + 0x6d, 0x65, 0x50, 0xff, 0x6c, 0x65, 0x50, 0xff, + 0x6c, 0x64, 0x50, 0xff, 0x6a, 0x63, 0x4f, 0xff, + 0x6a, 0x63, 0x4e, 0xff, 0x69, 0x61, 0x4e, 0xff, + 0x68, 0x60, 0x4c, 0xff, 0x66, 0x5f, 0x4c, 0xff, + 0x65, 0x5d, 0x4a, 0xff, 0x63, 0x5c, 0x49, 0xff, + 0x61, 0x5b, 0x49, 0xff, 0x60, 0x59, 0x47, 0xff, + 0x61, 0x5a, 0x47, 0xff, 0x3e, 0x3a, 0x2f, 0xff, + 0x01, 0x02, 0x01, 0xff, 0x41, 0x3c, 0x30, 0xff, + 0x59, 0x53, 0x42, 0xff, 0x56, 0x50, 0x40, 0xff, + 0x55, 0x4f, 0x3f, 0xff, 0x53, 0x4d, 0x3e, 0xff, + 0x51, 0x4c, 0x3c, 0xff, 0x50, 0x4a, 0x3b, 0xff, + 0x4d, 0x48, 0x39, 0xff, 0x4c, 0x46, 0x38, 0xff, + 0x59, 0x54, 0x47, 0xff, 0x41, 0x40, 0x3b, 0xff, + 0x2d, 0x33, 0x36, 0xff, 0x4a, 0x2f, 0x2f, 0xff, + 0x39, 0x25, 0x25, 0xff, 0x33, 0x27, 0x27, 0xff, + 0x38, 0x2c, 0x2c, 0xf9, 0x37, 0x33, 0x33, 0xff, + 0x31, 0x35, 0x35, 0xff, 0x34, 0x42, 0x42, 0xff, + 0x39, 0x56, 0x56, 0xff, 0x39, 0x64, 0x64, 0xff, + 0x38, 0x7d, 0x7d, 0xff, 0x34, 0x8d, 0x8d, 0xff, + 0x88, 0xc9, 0xc9, 0xff, 0xb9, 0xe5, 0xe5, 0xff, + 0x3b, 0x80, 0x80, 0xfb, 0x4e, 0x3b, 0x3b, 0x23, + 0x15, 0x0b, 0x0b, 0x08, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x17, 0x17, 0x17, 0x09, + 0x0a, 0x0a, 0x0a, 0x3c, 0x00, 0x00, 0x00, 0x99, + 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x77, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, + 0x00, 0x00, 0x00, 0xfa, 0x0a, 0x0b, 0x0c, 0xff, + 0x27, 0x2a, 0x2b, 0xff, 0x24, 0x26, 0x27, 0xff, + 0x15, 0x18, 0x19, 0xff, 0x14, 0x17, 0x18, 0xff, + 0x13, 0x16, 0x17, 0xff, 0x14, 0x17, 0x18, 0xff, + 0x14, 0x17, 0x18, 0xff, 0x13, 0x16, 0x17, 0xff, + 0x15, 0x18, 0x19, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x2b, 0x29, 0x21, 0xff, 0x68, 0x61, 0x4d, 0xff, + 0x68, 0x61, 0x4d, 0xff, 0x69, 0x62, 0x4e, 0xff, + 0x6a, 0x63, 0x4e, 0xff, 0x6a, 0x63, 0x4f, 0xff, + 0x6b, 0x63, 0x4f, 0xff, 0x6b, 0x63, 0x4f, 0xff, + 0x6b, 0x63, 0x4f, 0xff, 0x6b, 0x63, 0x50, 0xff, + 0x6a, 0x63, 0x4f, 0xff, 0x6a, 0x63, 0x4e, 0xff, + 0x69, 0x61, 0x4e, 0xff, 0x68, 0x61, 0x4d, 0xff, + 0x68, 0x60, 0x4d, 0xff, 0x67, 0x60, 0x4c, 0xff, + 0x65, 0x5e, 0x4b, 0xff, 0x64, 0x5d, 0x4a, 0xff, + 0x63, 0x5c, 0x49, 0xff, 0x62, 0x5a, 0x48, 0xff, + 0x61, 0x5a, 0x48, 0xff, 0x5f, 0x58, 0x46, 0xff, + 0x5e, 0x57, 0x45, 0xff, 0x51, 0x4c, 0x3d, 0xff, + 0x03, 0x02, 0x02, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x1b, 0x18, 0x14, 0xff, 0x56, 0x50, 0x40, 0xff, + 0x54, 0x4e, 0x3e, 0xff, 0x52, 0x4c, 0x3d, 0xff, + 0x50, 0x4a, 0x3b, 0xff, 0x4e, 0x48, 0x3a, 0xff, + 0x4c, 0x47, 0x38, 0xff, 0x57, 0x51, 0x44, 0xff, + 0x59, 0x53, 0x47, 0xff, 0x30, 0x35, 0x36, 0xff, + 0x30, 0x2d, 0x2e, 0xff, 0x39, 0x21, 0x21, 0xff, + 0x35, 0x22, 0x22, 0xfd, 0x21, 0x11, 0x11, 0xb1, + 0x13, 0x09, 0x09, 0x8a, 0x17, 0x0c, 0x0c, 0x86, + 0x36, 0x2c, 0x2c, 0xe4, 0x2c, 0x37, 0x37, 0xff, + 0x27, 0x39, 0x39, 0xff, 0x27, 0x41, 0x41, 0xff, + 0x39, 0x82, 0x82, 0xff, 0x38, 0x98, 0x98, 0xff, + 0xf1, 0xfb, 0xfb, 0xff, 0xf9, 0xfd, 0xfd, 0xff, + 0x45, 0xad, 0xad, 0xff, 0x2d, 0x8e, 0x8e, 0xff, + 0x6b, 0x75, 0x75, 0xb9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x94, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0xfd, + 0x03, 0x03, 0x04, 0xfe, 0x1e, 0x20, 0x21, 0xff, + 0x1d, 0x20, 0x21, 0xff, 0x1a, 0x1c, 0x1d, 0xff, + 0x15, 0x18, 0x19, 0xff, 0x14, 0x17, 0x18, 0xff, + 0x14, 0x17, 0x18, 0xff, 0x14, 0x17, 0x18, 0xff, + 0x07, 0x08, 0x09, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x62, 0x5c, 0x49, 0xff, 0x66, 0x5e, 0x4b, 0xff, + 0x66, 0x5f, 0x4c, 0xff, 0x67, 0x60, 0x4d, 0xff, + 0x67, 0x60, 0x4d, 0xff, 0x67, 0x61, 0x4c, 0xff, + 0x69, 0x61, 0x4e, 0xff, 0x69, 0x61, 0x4e, 0xff, + 0x69, 0x61, 0x4e, 0xff, 0x69, 0x61, 0x4e, 0xff, + 0x68, 0x61, 0x4d, 0xff, 0x68, 0x61, 0x4d, 0xff, + 0x67, 0x60, 0x4d, 0xff, 0x66, 0x5f, 0x4c, 0xff, + 0x66, 0x5e, 0x4b, 0xff, 0x64, 0x5d, 0x4b, 0xff, + 0x63, 0x5c, 0x4a, 0xff, 0x62, 0x5b, 0x48, 0xff, + 0x61, 0x5a, 0x48, 0xff, 0x60, 0x59, 0x47, 0xff, + 0x5f, 0x58, 0x46, 0xff, 0x58, 0x52, 0x42, 0xff, + 0x19, 0x16, 0x10, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x0e, 0x08, 0x01, 0xff, 0x06, 0x03, 0x00, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x49, 0x43, 0x36, 0xff, + 0x52, 0x4c, 0x3d, 0xff, 0x50, 0x4a, 0x3b, 0xff, + 0x4f, 0x49, 0x3a, 0xff, 0x4d, 0x47, 0x38, 0xff, + 0x4e, 0x48, 0x3a, 0xff, 0x59, 0x53, 0x47, 0xff, + 0x40, 0x41, 0x3b, 0xff, 0x2e, 0x34, 0x36, 0xff, + 0x31, 0x1c, 0x1c, 0xed, 0x1a, 0x0c, 0x0c, 0xab, + 0x10, 0x07, 0x07, 0x90, 0x0f, 0x07, 0x07, 0x88, + 0x11, 0x08, 0x08, 0x7c, 0x12, 0x09, 0x09, 0x73, + 0x10, 0x08, 0x08, 0x66, 0x1f, 0x12, 0x12, 0x70, + 0x37, 0x2a, 0x2a, 0xc7, 0x22, 0x39, 0x39, 0xff, + 0x3a, 0x84, 0x84, 0xff, 0x37, 0x8f, 0x8f, 0xff, + 0x6f, 0xc1, 0xc1, 0xff, 0xc9, 0xef, 0xef, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xea, 0xf6, 0xf6, 0xff, + 0x9d, 0xd5, 0xd5, 0xff, 0x34, 0x65, 0x65, 0xfc, + 0x17, 0x30, 0x30, 0xfd, 0x35, 0x89, 0x89, 0xff, + 0x2a, 0x68, 0x68, 0xfe, 0x17, 0x1e, 0x1e, 0xf1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0xff, + 0x06, 0x07, 0x07, 0xff, 0x12, 0x14, 0x15, 0xff, + 0x16, 0x19, 0x1a, 0xff, 0x15, 0x19, 0x1a, 0xff, + 0x13, 0x16, 0x17, 0xff, 0x05, 0x06, 0x06, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x36, 0x32, 0x28, 0xff, + 0x63, 0x5c, 0x49, 0xff, 0x63, 0x5c, 0x49, 0xff, + 0x63, 0x5d, 0x4a, 0xff, 0x64, 0x5d, 0x4b, 0xff, + 0x65, 0x5e, 0x4b, 0xff, 0x65, 0x5e, 0x4b, 0xff, + 0x65, 0x5e, 0x4b, 0xff, 0x66, 0x5f, 0x4c, 0xff, + 0x65, 0x5e, 0x4b, 0xff, 0x65, 0x5e, 0x4b, 0xff, + 0x66, 0x5e, 0x4b, 0xff, 0x65, 0x5e, 0x4b, 0xff, + 0x64, 0x5d, 0x4b, 0xff, 0x64, 0x5d, 0x4a, 0xff, + 0x63, 0x5c, 0x4a, 0xff, 0x63, 0x5c, 0x49, 0xff, + 0x62, 0x5b, 0x49, 0xff, 0x63, 0x5c, 0x49, 0xff, + 0x59, 0x53, 0x42, 0xff, 0x3f, 0x3a, 0x2f, 0xff, + 0x14, 0x12, 0x0f, 0xff, 0x01, 0x01, 0x01, 0xff, + 0x04, 0x02, 0x00, 0xff, 0x81, 0x48, 0x0a, 0xff, + 0x5f, 0x35, 0x06, 0xff, 0x65, 0x38, 0x06, 0xff, + 0x61, 0x36, 0x06, 0xff, 0x54, 0x38, 0x17, 0xff, + 0x51, 0x4a, 0x3b, 0xff, 0x4e, 0x49, 0x3b, 0xff, + 0x4d, 0x48, 0x39, 0xff, 0x4c, 0x46, 0x38, 0xff, + 0x58, 0x53, 0x47, 0xff, 0x56, 0x51, 0x44, 0xff, + 0x2d, 0x33, 0x35, 0xff, 0x25, 0x27, 0x28, 0xda, + 0x0a, 0x04, 0x04, 0x8c, 0x0d, 0x05, 0x05, 0x8a, + 0x0e, 0x06, 0x06, 0x81, 0x0e, 0x06, 0x06, 0x79, + 0x10, 0x07, 0x07, 0x6c, 0x11, 0x08, 0x08, 0x61, + 0x12, 0x09, 0x09, 0x54, 0x13, 0x0a, 0x0a, 0x4a, + 0x0d, 0x07, 0x07, 0x3e, 0x0d, 0x06, 0x06, 0x35, + 0x51, 0x7b, 0x7b, 0xf5, 0x4f, 0x7f, 0x7f, 0xf4, + 0x2e, 0x8f, 0x8f, 0xff, 0x2f, 0x94, 0x94, 0xff, + 0x58, 0xab, 0xab, 0xff, 0xb5, 0xe0, 0xe0, 0xff, + 0xcd, 0xe9, 0xe9, 0xff, 0x17, 0x45, 0x45, 0xff, + 0x38, 0x98, 0x98, 0xff, 0x4a, 0xc5, 0xc5, 0xff, + 0x43, 0xc5, 0xc5, 0xff, 0x1a, 0x4e, 0x4e, 0xff, + 0x11, 0x23, 0x23, 0xfc, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x67, + 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xfe, + 0x4d, 0x49, 0x3f, 0xff, 0x79, 0x74, 0x64, 0xff, + 0x6e, 0x68, 0x58, 0xff, 0x5e, 0x58, 0x46, 0xff, + 0x61, 0x5a, 0x48, 0xff, 0x61, 0x5a, 0x48, 0xff, + 0x62, 0x5b, 0x48, 0xff, 0x62, 0x5b, 0x49, 0xff, + 0x62, 0x5b, 0x49, 0xff, 0x62, 0x5b, 0x49, 0xff, + 0x62, 0x5b, 0x49, 0xff, 0x62, 0x5b, 0x48, 0xff, + 0x5e, 0x58, 0x45, 0xff, 0x57, 0x51, 0x41, 0xff, + 0x4f, 0x49, 0x3a, 0xff, 0x4b, 0x45, 0x37, 0xff, + 0x46, 0x40, 0x34, 0xff, 0x40, 0x3b, 0x2f, 0xff, + 0x38, 0x34, 0x2a, 0xff, 0x30, 0x2c, 0x23, 0xff, + 0x27, 0x24, 0x1d, 0xff, 0x1c, 0x1b, 0x15, 0xff, + 0x0e, 0x0d, 0x0a, 0xff, 0x00, 0x00, 0x01, 0xff, + 0x48, 0x26, 0x02, 0xff, 0x76, 0x41, 0x08, 0xff, + 0xc2, 0x6a, 0x0f, 0xff, 0xc3, 0x6c, 0x0e, 0xff, + 0x91, 0x50, 0x0b, 0xff, 0x5e, 0x34, 0x06, 0xff, + 0x66, 0x38, 0x05, 0xff, 0x62, 0x3b, 0x0f, 0xff, + 0x56, 0x41, 0x24, 0xff, 0x53, 0x51, 0x47, 0xff, + 0x56, 0x52, 0x46, 0xff, 0x33, 0x37, 0x36, 0xff, + 0x2e, 0x34, 0x37, 0xff, 0x0d, 0x07, 0x07, 0x90, + 0x0b, 0x04, 0x04, 0x84, 0x0c, 0x04, 0x04, 0x7a, + 0x0c, 0x05, 0x05, 0x71, 0x0d, 0x05, 0x05, 0x66, + 0x0e, 0x07, 0x07, 0x5a, 0x0f, 0x07, 0x07, 0x4c, + 0x11, 0x08, 0x08, 0x3d, 0x14, 0x0a, 0x0a, 0x30, + 0x13, 0x0a, 0x0a, 0x26, 0x14, 0x0a, 0x0a, 0x1b, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x82, 0x6b, 0x6b, 0x2c, 0x6a, 0x75, 0x75, 0xbc, + 0x45, 0x86, 0x86, 0xf9, 0x2a, 0x8e, 0x8e, 0xff, + 0x1b, 0x5c, 0x5c, 0xff, 0x1b, 0x52, 0x52, 0xff, + 0x37, 0x92, 0x92, 0xff, 0x58, 0xcb, 0xcb, 0xff, + 0x4b, 0xc9, 0xc9, 0xff, 0x17, 0x48, 0x48, 0xff, + 0x11, 0x34, 0x34, 0xff, 0x18, 0x17, 0x17, 0xd3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x43, + 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x7c, + 0x0b, 0x0c, 0x0d, 0x83, 0x2e, 0x34, 0x36, 0xff, + 0x31, 0x36, 0x37, 0xff, 0x59, 0x56, 0x4d, 0xff, + 0x79, 0x72, 0x63, 0xff, 0x74, 0x6e, 0x5f, 0xff, + 0x68, 0x63, 0x52, 0xff, 0x5d, 0x57, 0x45, 0xff, + 0x5f, 0x58, 0x46, 0xff, 0x5f, 0x58, 0x46, 0xff, + 0x60, 0x59, 0x47, 0xff, 0x60, 0x59, 0x47, 0xff, + 0x60, 0x59, 0x47, 0xff, 0x60, 0x58, 0x46, 0xff, + 0x5f, 0x58, 0x46, 0xff, 0x60, 0x58, 0x46, 0xff, + 0x5e, 0x58, 0x46, 0xff, 0x58, 0x52, 0x41, 0xff, + 0x52, 0x4c, 0x3d, 0xff, 0x4a, 0x45, 0x37, 0xff, + 0x42, 0x3d, 0x31, 0xff, 0x3b, 0x37, 0x2b, 0xff, + 0x36, 0x32, 0x28, 0xff, 0x33, 0x30, 0x26, 0xff, + 0x33, 0x30, 0x26, 0xff, 0x3f, 0x3a, 0x2f, 0xff, + 0x58, 0x4a, 0x34, 0xff, 0x65, 0x3b, 0x0b, 0xff, + 0x65, 0x38, 0x06, 0xff, 0x93, 0x51, 0x0b, 0xff, + 0xd5, 0x75, 0x10, 0xff, 0xdb, 0x78, 0x10, 0xff, + 0xb4, 0x63, 0x0d, 0xff, 0x7c, 0x44, 0x09, 0xff, + 0x61, 0x34, 0x05, 0xff, 0x66, 0x39, 0x08, 0xff, + 0x59, 0x3f, 0x1f, 0xff, 0x2f, 0x34, 0x34, 0xfe, + 0x11, 0x11, 0x13, 0x99, 0x09, 0x03, 0x03, 0x7b, + 0x09, 0x03, 0x03, 0x72, 0x09, 0x03, 0x03, 0x68, + 0x0a, 0x04, 0x04, 0x5d, 0x0a, 0x04, 0x04, 0x51, + 0x0c, 0x05, 0x05, 0x43, 0x0d, 0x06, 0x06, 0x36, + 0x0f, 0x06, 0x06, 0x25, 0x15, 0x0a, 0x0a, 0x14, + 0x15, 0x0a, 0x0a, 0x09, 0x15, 0x0c, 0x0c, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x6f, 0x6f, 0x4a, + 0x2c, 0x50, 0x50, 0xfa, 0x1e, 0x5b, 0x5b, 0xff, + 0x1d, 0x59, 0x59, 0xff, 0x2c, 0x7b, 0x7b, 0xff, + 0x20, 0x5c, 0x5c, 0xff, 0x12, 0x38, 0x38, 0xff, + 0x1d, 0x56, 0x56, 0xff, 0x09, 0x1b, 0x1b, 0xff, + 0x1b, 0x0e, 0x0e, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x27, + 0x00, 0x00, 0x00, 0x31, 0x0d, 0x0f, 0x10, 0x4a, + 0x2a, 0x2f, 0x31, 0xcd, 0x2c, 0x32, 0x35, 0xff, + 0x3a, 0x3d, 0x3b, 0xfe, 0x63, 0x60, 0x53, 0xff, + 0x75, 0x6f, 0x60, 0xff, 0x71, 0x6b, 0x5d, 0xff, + 0x65, 0x5f, 0x4f, 0xff, 0x5d, 0x56, 0x45, 0xff, + 0x5c, 0x56, 0x44, 0xff, 0x5d, 0x57, 0x45, 0xff, + 0x5d, 0x57, 0x45, 0xff, 0x5d, 0x56, 0x45, 0xff, + 0x5d, 0x56, 0x45, 0xff, 0x5c, 0x56, 0x44, 0xff, + 0x5c, 0x55, 0x44, 0xff, 0x5b, 0x55, 0x43, 0xff, + 0x5b, 0x54, 0x43, 0xff, 0x5a, 0x54, 0x43, 0xff, + 0x5a, 0x54, 0x43, 0xff, 0x5a, 0x54, 0x43, 0xff, + 0x59, 0x53, 0x42, 0xff, 0x58, 0x51, 0x41, 0xff, + 0x56, 0x50, 0x40, 0xff, 0x54, 0x4e, 0x3e, 0xff, + 0x53, 0x4d, 0x3d, 0xff, 0x52, 0x4c, 0x3e, 0xff, + 0x5e, 0x40, 0x1c, 0xff, 0x67, 0x37, 0x05, 0xff, + 0x6f, 0x3d, 0x07, 0xff, 0xa7, 0x5c, 0x0c, 0xff, + 0xcb, 0x70, 0x10, 0xff, 0xe1, 0x7c, 0x12, 0xff, + 0xca, 0x6f, 0x0f, 0xff, 0x8f, 0x4f, 0x0b, 0xff, + 0x66, 0x38, 0x06, 0xff, 0x68, 0x38, 0x04, 0xfe, + 0x4f, 0x2a, 0x05, 0xc2, 0x16, 0x0b, 0x02, 0x72, + 0x06, 0x02, 0x02, 0x5c, 0x06, 0x02, 0x02, 0x53, + 0x07, 0x02, 0x02, 0x45, 0x06, 0x02, 0x02, 0x39, + 0x07, 0x02, 0x02, 0x29, 0x05, 0x02, 0x02, 0x19, + 0x03, 0x02, 0x02, 0x0b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x4a, 0x3a, 0x3a, 0x97, 0x1d, 0x57, 0x57, 0xff, + 0x1c, 0x57, 0x57, 0xff, 0x1a, 0x4f, 0x4f, 0xff, + 0x16, 0x43, 0x43, 0xff, 0x12, 0x37, 0x37, 0xff, + 0x0e, 0x2c, 0x2c, 0xff, 0x0c, 0x23, 0x23, 0xff, + 0x14, 0x0c, 0x0c, 0x6d, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x13, + 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x26, + 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x3a, + 0x00, 0x00, 0x00, 0x39, 0x1c, 0x20, 0x20, 0x81, + 0x2c, 0x32, 0x34, 0xec, 0x2b, 0x32, 0x35, 0xff, + 0x3f, 0x41, 0x3d, 0xff, 0x65, 0x60, 0x54, 0xfe, + 0x71, 0x6b, 0x5c, 0xff, 0x71, 0x6b, 0x5c, 0xff, + 0x67, 0x60, 0x51, 0xff, 0x5d, 0x57, 0x46, 0xff, + 0x5a, 0x54, 0x43, 0xff, 0x5a, 0x54, 0x43, 0xff, + 0x5a, 0x54, 0x43, 0xff, 0x5a, 0x54, 0x43, 0xff, + 0x59, 0x53, 0x42, 0xff, 0x59, 0x52, 0x42, 0xff, + 0x58, 0x52, 0x42, 0xff, 0x58, 0x52, 0x41, 0xff, + 0x57, 0x51, 0x40, 0xff, 0x55, 0x50, 0x40, 0xff, + 0x55, 0x4f, 0x3f, 0xff, 0x54, 0x4d, 0x3e, 0xff, + 0x52, 0x4d, 0x3d, 0xff, 0x52, 0x4d, 0x3d, 0xff, + 0x51, 0x4b, 0x3c, 0xff, 0x50, 0x4a, 0x3b, 0xff, + 0x4e, 0x49, 0x3b, 0xff, 0x52, 0x45, 0x2f, 0xff, + 0x63, 0x3a, 0x0c, 0xff, 0x62, 0x36, 0x05, 0xff, + 0x7e, 0x46, 0x09, 0xff, 0xac, 0x5e, 0x0d, 0xff, + 0xc6, 0x6d, 0x0f, 0xff, 0xdd, 0x7a, 0x11, 0xff, + 0xdc, 0x79, 0x11, 0xff, 0x95, 0x52, 0x0b, 0xfe, + 0x69, 0x3a, 0x07, 0xff, 0x67, 0x39, 0x07, 0xff, + 0x51, 0x2b, 0x03, 0x9b, 0x30, 0x2d, 0x28, 0x4f, + 0x14, 0x15, 0x13, 0x33, 0x00, 0x00, 0x00, 0x25, + 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x24, 0x48, 0x48, 0xfd, + 0x19, 0x4c, 0x4c, 0xff, 0x17, 0x45, 0x45, 0xff, + 0x14, 0x3e, 0x3e, 0xff, 0x11, 0x32, 0x32, 0xff, + 0x0d, 0x27, 0x27, 0xff, 0x09, 0x1c, 0x1c, 0xff, + 0x09, 0x0f, 0x0f, 0xf6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0f, + 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x21, + 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x47, + 0x00, 0x00, 0x00, 0x4a, 0x1e, 0x21, 0x23, 0x9a, + 0x2c, 0x32, 0x34, 0xf4, 0x2c, 0x33, 0x35, 0xff, + 0x36, 0x3a, 0x39, 0xff, 0x5e, 0x5b, 0x4e, 0xff, + 0x6c, 0x66, 0x58, 0xff, 0x6e, 0x68, 0x5a, 0xff, + 0x6b, 0x65, 0x56, 0xff, 0x62, 0x5b, 0x4c, 0xff, + 0x59, 0x53, 0x43, 0xff, 0x58, 0x52, 0x41, 0xff, + 0x56, 0x50, 0x40, 0xff, 0x56, 0x50, 0x40, 0xff, + 0x56, 0x50, 0x3f, 0xff, 0x55, 0x4f, 0x3f, 0xff, + 0x54, 0x4e, 0x3e, 0xff, 0x53, 0x4d, 0x3e, 0xff, + 0x53, 0x4d, 0x3d, 0xff, 0x52, 0x4c, 0x3d, 0xff, + 0x51, 0x4b, 0x3c, 0xff, 0x50, 0x4a, 0x3b, 0xff, + 0x4f, 0x49, 0x3a, 0xff, 0x4e, 0x48, 0x39, 0xff, + 0x4d, 0x48, 0x39, 0xff, 0x4e, 0x48, 0x3a, 0xff, + 0x55, 0x52, 0x47, 0xff, 0x5f, 0x45, 0x26, 0xff, + 0x66, 0x39, 0x08, 0xff, 0x64, 0x37, 0x06, 0xff, + 0x85, 0x49, 0x09, 0xff, 0xaa, 0x5d, 0x0d, 0xff, + 0xc0, 0x6a, 0x0f, 0xff, 0xd8, 0x77, 0x11, 0xff, + 0xe3, 0x7c, 0x11, 0xff, 0x8c, 0x4d, 0x0a, 0xff, + 0x6d, 0x46, 0x1b, 0xff, 0x89, 0x8b, 0x85, 0xff, + 0x71, 0x73, 0x6f, 0x82, 0x00, 0x00, 0x00, 0x1f, + 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x0d, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x27, 0x38, 0x38, 0xf4, 0x14, 0x3d, 0x3d, 0xff, + 0x11, 0x35, 0x35, 0xff, 0x0e, 0x2c, 0x2c, 0xff, + 0x0b, 0x22, 0x22, 0xff, 0x07, 0x17, 0x17, 0xff, + 0x05, 0x10, 0x10, 0xff, 0x12, 0x0b, 0x0b, 0x12, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x1a, + 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x2d, + 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x3f, + 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x51, + 0x00, 0x00, 0x00, 0x57, 0x15, 0x18, 0x19, 0x8a, + 0x2d, 0x33, 0x35, 0xf8, 0x2d, 0x33, 0x35, 0xfe, + 0x2d, 0x32, 0x35, 0xff, 0x41, 0x42, 0x3e, 0xfe, + 0x64, 0x5e, 0x51, 0xff, 0x68, 0x63, 0x55, 0xff, + 0x67, 0x62, 0x54, 0xff, 0x68, 0x63, 0x55, 0xff, + 0x65, 0x5f, 0x52, 0xff, 0x5f, 0x59, 0x4b, 0xff, + 0x57, 0x52, 0x43, 0xff, 0x53, 0x4d, 0x3d, 0xff, + 0x52, 0x4c, 0x3d, 0xff, 0x51, 0x4c, 0x3c, 0xff, + 0x50, 0x4a, 0x3b, 0xff, 0x50, 0x4a, 0x3b, 0xff, + 0x4f, 0x49, 0x3a, 0xff, 0x4f, 0x49, 0x3b, 0xff, + 0x53, 0x4d, 0x40, 0xff, 0x59, 0x53, 0x46, 0xff, + 0x5a, 0x55, 0x48, 0xff, 0x57, 0x52, 0x46, 0xff, + 0x55, 0x50, 0x44, 0xff, 0x3b, 0x3c, 0x38, 0xfe, + 0x2b, 0x33, 0x37, 0xff, 0x55, 0x37, 0x14, 0xfc, + 0x67, 0x38, 0x06, 0xfd, 0x66, 0x39, 0x06, 0xff, + 0x82, 0x47, 0x0a, 0xfe, 0xa7, 0x5c, 0x0c, 0xff, + 0xbd, 0x67, 0x0e, 0xff, 0xd6, 0x73, 0x0d, 0xff, + 0x8e, 0x89, 0x7f, 0xff, 0xa0, 0xa2, 0x9e, 0xff, + 0xd6, 0xd6, 0xd5, 0xff, 0x83, 0x85, 0x80, 0xdd, + 0x19, 0x1b, 0x19, 0x10, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x3d, 0x25, 0x25, 0x1f, + 0x28, 0x23, 0x23, 0xb3, 0x0b, 0x22, 0x22, 0xff, + 0x08, 0x1a, 0x1a, 0xff, 0x05, 0x12, 0x12, 0xff, + 0x04, 0x0f, 0x0f, 0xff, 0x10, 0x0b, 0x0b, 0x4d, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x12, + 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x24, + 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x46, + 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x56, + 0x00, 0x01, 0x00, 0x5e, 0x07, 0x08, 0x08, 0x70, + 0x26, 0x2b, 0x2c, 0xca, 0x2e, 0x34, 0x36, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x2f, 0x35, 0x36, 0xfe, + 0x37, 0x3a, 0x39, 0xff, 0x4f, 0x4c, 0x43, 0xff, + 0x61, 0x5c, 0x4f, 0xff, 0x65, 0x5f, 0x52, 0xff, + 0x63, 0x5d, 0x50, 0xff, 0x62, 0x5c, 0x4f, 0xff, + 0x60, 0x5b, 0x4e, 0xff, 0x5f, 0x5a, 0x4c, 0xff, + 0x5e, 0x58, 0x4c, 0xff, 0x5d, 0x58, 0x4c, 0xff, + 0x5c, 0x57, 0x4a, 0xff, 0x5b, 0x55, 0x48, 0xff, + 0x5b, 0x55, 0x48, 0xff, 0x58, 0x53, 0x46, 0xff, + 0x48, 0x46, 0x3d, 0xff, 0x32, 0x37, 0x37, 0xfe, + 0x2e, 0x34, 0x36, 0xff, 0x2e, 0x35, 0x37, 0xff, + 0x1f, 0x23, 0x25, 0xae, 0x00, 0x01, 0x01, 0x64, + 0x0d, 0x07, 0x00, 0x64, 0x5b, 0x31, 0x05, 0xc8, + 0x67, 0x39, 0x07, 0xff, 0x68, 0x39, 0x07, 0xfe, + 0x77, 0x41, 0x09, 0xff, 0x91, 0x75, 0x55, 0xff, + 0x83, 0x86, 0x82, 0xff, 0xef, 0xef, 0xee, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0xa0, 0xa2, 0x9d, 0xff, + 0x84, 0x86, 0x81, 0xfb, 0x88, 0x8a, 0x85, 0x7c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x21, 0x12, 0x12, 0x0c, + 0x14, 0x0e, 0x0e, 0x83, 0x07, 0x0e, 0x0e, 0xfd, + 0x05, 0x10, 0x10, 0xff, 0x0c, 0x0c, 0x0c, 0xd4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x19, + 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x28, + 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x38, + 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x48, + 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x55, + 0x00, 0x00, 0x00, 0x5b, 0x03, 0x04, 0x04, 0x66, + 0x0f, 0x12, 0x13, 0x80, 0x23, 0x27, 0x29, 0xbd, + 0x2d, 0x33, 0x34, 0xf8, 0x2f, 0x35, 0x37, 0xff, + 0x2e, 0x34, 0x36, 0xff, 0x30, 0x35, 0x36, 0xff, + 0x32, 0x37, 0x37, 0xfe, 0x35, 0x39, 0x39, 0xff, + 0x38, 0x3b, 0x39, 0xff, 0x3a, 0x3c, 0x3b, 0xff, + 0x3c, 0x3d, 0x3b, 0xff, 0x39, 0x3c, 0x39, 0xff, + 0x37, 0x3a, 0x39, 0xff, 0x34, 0x38, 0x37, 0xff, + 0x30, 0x36, 0x36, 0xfe, 0x2e, 0x34, 0x36, 0xff, + 0x2f, 0x35, 0x37, 0xff, 0x2c, 0x32, 0x34, 0xf2, + 0x1a, 0x1e, 0x1f, 0x97, 0x05, 0x06, 0x06, 0x69, + 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x54, + 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x44, + 0x1e, 0x10, 0x01, 0x4e, 0x59, 0x31, 0x05, 0xa2, + 0x67, 0x38, 0x06, 0xff, 0x83, 0x7d, 0x72, 0xff, + 0x87, 0x89, 0x84, 0xfe, 0xb8, 0xb9, 0xb7, 0xff, + 0xea, 0xea, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf5, 0xf5, 0xf4, 0xfe, 0xc5, 0xc6, 0xc4, 0xff, + 0x82, 0x84, 0x80, 0xdd, 0x32, 0x32, 0x32, 0xd4, + 0x61, 0x61, 0x61, 0xec, 0x5c, 0x5c, 0x5c, 0xea, + 0x1c, 0x1c, 0x1c, 0xb6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x10, 0x0b, 0x0b, 0x77, 0x08, 0x0e, 0x0e, 0xf6, + 0x13, 0x0b, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x1b, + 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x2a, + 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x37, + 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x44, + 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x57, + 0x00, 0x00, 0x00, 0x5c, 0x08, 0x0a, 0x0a, 0x6e, + 0x13, 0x16, 0x16, 0x84, 0x1f, 0x24, 0x25, 0xa3, + 0x25, 0x29, 0x2c, 0xc5, 0x2a, 0x30, 0x32, 0xe3, + 0x2b, 0x31, 0x33, 0xef, 0x2c, 0x32, 0x34, 0xf4, + 0x2c, 0x33, 0x34, 0xf5, 0x2c, 0x32, 0x33, 0xf4, + 0x2b, 0x31, 0x33, 0xed, 0x29, 0x2f, 0x30, 0xdb, + 0x23, 0x27, 0x29, 0xb3, 0x19, 0x1c, 0x1d, 0x8c, + 0x0b, 0x0d, 0x0d, 0x6d, 0x00, 0x00, 0x00, 0x57, + 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x4f, + 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x43, + 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x36, + 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x25, + 0x17, 0x0a, 0x00, 0x28, 0x83, 0x84, 0x7d, 0xcd, + 0x87, 0x89, 0x84, 0xe9, 0x86, 0x88, 0x83, 0xff, + 0x8a, 0x8c, 0x87, 0xff, 0xa5, 0xa7, 0xa3, 0xfe, + 0xe4, 0xe4, 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x48, 0x48, 0x48, 0xff, 0x6d, 0x6d, 0x6d, 0xff, + 0xa9, 0xa9, 0xa9, 0xfe, 0xa5, 0xa5, 0xa5, 0xfe, + 0x59, 0x59, 0x59, 0xff, 0x1e, 0x1e, 0x1e, 0xe7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x12, 0x0a, 0x0a, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x1a, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x27, + 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x32, + 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x3d, + 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x47, + 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4d, + 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x52, + 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x4d, + 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x53, + 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x51, + 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x49, + 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x4c, + 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x45, + 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x3d, + 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x31, + 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x25, + 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x19, + 0x00, 0x00, 0x00, 0x12, 0x31, 0x31, 0x31, 0x0e, + 0x00, 0x00, 0x00, 0x00, 0x89, 0x89, 0x84, 0x27, + 0x87, 0x89, 0x84, 0x8c, 0x87, 0x89, 0x84, 0xeb, + 0x82, 0x84, 0x7f, 0xff, 0x78, 0x7a, 0x76, 0xff, + 0x51, 0x51, 0x51, 0xfe, 0x78, 0x78, 0x78, 0xff, + 0xae, 0xae, 0xae, 0xff, 0xaa, 0xaa, 0xaa, 0xff, + 0x5e, 0x5e, 0x5e, 0xff, 0x2a, 0x2a, 0x2a, 0xff, + 0x16, 0x16, 0x16, 0xb4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x2a, + 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x33, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x39, + 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x3c, + 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x41, + 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x42, + 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3c, + 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x38, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x31, + 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x1f, + 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x89, 0x8c, 0x85, 0x41, 0x66, 0x67, 0x64, 0xcd, + 0x5b, 0x5b, 0x5b, 0xff, 0x5d, 0x5d, 0x5d, 0xff, + 0x7b, 0x7b, 0x7b, 0xff, 0x70, 0x70, 0x70, 0xff, + 0x32, 0x32, 0x32, 0xff, 0x5e, 0x5e, 0x5e, 0xfe, + 0x15, 0x15, 0x15, 0xfc, 0x0c, 0x0c, 0x0c, 0x04, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15, + 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, + 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x22, + 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x27, + 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x2a, + 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x2b, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2a, + 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x27, + 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x22, + 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x1b, + 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4d, 0x4d, 0x4d, 0x33, + 0x59, 0x59, 0x59, 0xff, 0x5e, 0x5e, 0x5e, 0xfe, + 0x53, 0x53, 0x53, 0xff, 0x44, 0x44, 0x44, 0xff, + 0x35, 0x35, 0x35, 0xff, 0x26, 0x26, 0x26, 0xff, + 0x26, 0x26, 0x26, 0xff, 0x08, 0x08, 0x08, 0x73, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0d, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x11, + 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x13, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x12, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x4d, 0x4d, 0x4d, 0xde, 0x4f, 0x4f, 0x4f, 0xff, + 0x49, 0x49, 0x49, 0xfe, 0x3e, 0x3e, 0x3e, 0xff, + 0x30, 0x30, 0x30, 0xff, 0x22, 0x22, 0x22, 0xff, + 0x16, 0x16, 0x16, 0xff, 0x05, 0x05, 0x05, 0xfb, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x41, 0x41, 0x41, 0xcb, + 0x3c, 0x3c, 0x3c, 0xff, 0x33, 0x33, 0x33, 0xff, + 0x28, 0x28, 0x28, 0xff, 0x1c, 0x1c, 0x1c, 0xff, + 0x0f, 0x0f, 0x0f, 0xff, 0x01, 0x01, 0x01, 0xff, + 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x30, 0x30, 0x30, 0x19, 0x28, 0x28, 0x28, 0x92, + 0x1d, 0x1d, 0x1d, 0xff, 0x13, 0x13, 0x13, 0xff, + 0x06, 0x06, 0x06, 0xfe, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x16, 0x16, 0x16, 0x0c, 0x0a, 0x0a, 0x0a, 0x5b, + 0x00, 0x00, 0x00, 0xf9, 0x00, 0x00, 0x00, 0xff, + 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x00, 0xf2, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29 +} }; + +static GStaticResource static_resource = { icons_resource_data.data, sizeof (icons_resource_data.data), NULL, NULL, NULL }; +extern GResource *icons_get_resource (void); +GResource *icons_get_resource (void) +{ + return g_static_resource_get_resource (&static_resource); +} +/* + If G_HAS_CONSTRUCTORS is true then the compiler support *both* constructors and + destructors, in a sane way, including e.g. on library unload. If not you're on + your own. + + Some compilers need #pragma to handle this, which does not work with macros, + so the way you need to use this is (for constructors): + + #ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA + #pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(my_constructor) + #endif + G_DEFINE_CONSTRUCTOR(my_constructor) + static void my_constructor(void) { + ... + } + +*/ + +#ifndef __GTK_DOC_IGNORE__ + +#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) + +#define G_HAS_CONSTRUCTORS 1 + +#define G_DEFINE_CONSTRUCTOR(_func) static void __attribute__((constructor)) _func (void); +#define G_DEFINE_DESTRUCTOR(_func) static void __attribute__((destructor)) _func (void); + +#elif defined (_MSC_VER) && (_MSC_VER >= 1500) +/* Visual studio 2008 and later has _Pragma */ + +#define G_HAS_CONSTRUCTORS 1 + +/* We do some weird things to avoid the constructors being optimized + * away on VS2015 if WholeProgramOptimization is enabled. First we + * make a reference to the array from the wrapper to make sure its + * references. Then we use a pragma to make sure the wrapper function + * symbol is always included at the link stage. Also, the symbols + * need to be extern (but not dllexport), even though they are not + * really used from another object file. + */ + +/* We need to account for differences between the mangling of symbols + * for Win32 (x86) and x64 programs, as symbols on Win32 are prefixed + * with an underscore but symbols on x64 are not. + */ +#ifdef _WIN64 +#define G_MSVC_SYMBOL_PREFIX "" +#else +#define G_MSVC_SYMBOL_PREFIX "_" +#endif + +#define G_DEFINE_CONSTRUCTOR(_func) G_MSVC_CTOR (_func, G_MSVC_SYMBOL_PREFIX) +#define G_DEFINE_DESTRUCTOR(_func) G_MSVC_DTOR (_func, G_MSVC_SYMBOL_PREFIX) + +#define G_MSVC_CTOR(_func,_sym_prefix) \ + static void _func(void); \ + extern int (* _array ## _func)(void); \ + int _func ## _wrapper(void) { _func(); g_slist_find (NULL, _array ## _func); return 0; } \ + __pragma(comment(linker,"/include:" _sym_prefix # _func "_wrapper")) \ + __pragma(section(".CRT$XCU",read)) \ + __declspec(allocate(".CRT$XCU")) int (* _array ## _func)(void) = _func ## _wrapper; + +#define G_MSVC_DTOR(_func,_sym_prefix) \ + static void _func(void); \ + extern int (* _array ## _func)(void); \ + int _func ## _constructor(void) { atexit (_func); g_slist_find (NULL, _array ## _func); return 0; } \ + __pragma(comment(linker,"/include:" _sym_prefix # _func "_constructor")) \ + __pragma(section(".CRT$XCU",read)) \ + __declspec(allocate(".CRT$XCU")) int (* _array ## _func)(void) = _func ## _constructor; + +#elif defined (_MSC_VER) + +#define G_HAS_CONSTRUCTORS 1 + +/* Pre Visual studio 2008 must use #pragma section */ +#define G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA 1 +#define G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA 1 + +#define G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(_func) \ + section(".CRT$XCU",read) +#define G_DEFINE_CONSTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _wrapper(void) { _func(); return 0; } \ + __declspec(allocate(".CRT$XCU")) static int (*p)(void) = _func ## _wrapper; + +#define G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(_func) \ + section(".CRT$XCU",read) +#define G_DEFINE_DESTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _constructor(void) { atexit (_func); return 0; } \ + __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _constructor; + +#elif defined(__SUNPRO_C) + +/* This is not tested, but i believe it should work, based on: + * http://opensource.apple.com/source/OpenSSL098/OpenSSL098-35/src/fips/fips_premain.c + */ + +#define G_HAS_CONSTRUCTORS 1 + +#define G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA 1 +#define G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA 1 + +#define G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(_func) \ + init(_func) +#define G_DEFINE_CONSTRUCTOR(_func) \ + static void _func(void); + +#define G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(_func) \ + fini(_func) +#define G_DEFINE_DESTRUCTOR(_func) \ + static void _func(void); + +#else + +/* constructors not supported for this compiler */ + +#endif + +#endif /* __GTK_DOC_IGNORE__ */ + +#ifdef G_HAS_CONSTRUCTORS + +#ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA +#pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(resource_constructor) +#endif +G_DEFINE_CONSTRUCTOR(resource_constructor) +#ifdef G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA +#pragma G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(resource_destructor) +#endif +G_DEFINE_DESTRUCTOR(resource_destructor) + +#else +#warning "Constructor not supported on this compiler, linking in resources will not work" +#endif + +static void resource_constructor (void) +{ + g_static_resource_init (&static_resource); +} + +static void resource_destructor (void) +{ + g_static_resource_fini (&static_resource); +} diff --git a/src/images/bimp-icons.h b/src/images/bimp-icons.h new file mode 100644 index 0000000..6fbf220 --- /dev/null +++ b/src/images/bimp-icons.h @@ -0,0 +1,7 @@ +#ifndef __RESOURCE_icons_H__ +#define __RESOURCE_icons_H__ + +#include + +extern GResource *icons_get_resource (void); +#endif diff --git a/src/images/icons.xml b/src/images/icons.xml new file mode 100644 index 0000000..bc31149 --- /dev/null +++ b/src/images/icons.xml @@ -0,0 +1,26 @@ + + + + bimp-icon.png + pos-bc-icon.png + pos-bl-icon.png + pos-br-icon.png + pos-cc-icon.png + pos-cl-icon.png + pos-cr-icon.png + pos-tc-icon.png + pos-tl-icon.png + pos-tr-icon.png + stock-changeformat.png + stock-color.png + stock-crop.png + stock-flip-horizontal.png + stock-flip-vertical.png + stock-rename.png + stock-resize.png + stock-rotate.png + stock-sharp.png + stock-userdef.png + stock-watermark.png + + \ No newline at end of file diff --git a/src/manipulation-gui/gui-changeformat.c b/src/manipulation-gui/gui-changeformat.c index 90198b8..11b3ba2 100644 --- a/src/manipulation-gui/gui-changeformat.c +++ b/src/manipulation-gui/gui-changeformat.c @@ -5,19 +5,20 @@ #include "../plugin-intl.h" static void update_frame_params(GtkComboBox*, changeformat_settings); -static void adv_expanded (GtkExpander *, gpointer); -static void increase_dialog_height(int); +static void adv_expanded (GtkWidget*, GtkRequisition*, gpointer); +static void update_window_size(); -GtkWidget *frame_params, *inner_widget; -GtkWidget *combo_format, *scale_quality, *scale_smoothing, *check_interlace, *scale_compression, *check_baseline; -GtkWidget *check_rle, *check_progressive, *check_entrophy, *combo_compression, *spin_markers, *combo_subsampling, *combo_dct, *combo_origin; -GtkWidget *check_savebgc, *check_savegamma, *check_saveoff, *check_savephys, *check_savetime, *check_savecomm, *check_savetrans; -GtkWidget *expander_advanced; +static GtkWidget *frame_params, *inner_widget; +static GtkWidget *combo_format, *scale_quality, *scale_alpha_quality, *scale_smoothing, *check_interlace, *scale_compression, *check_baseline; +static GtkWidget *check_rle, *check_progressive, *check_entrophy, *combo_compression, *spin_markers, *combo_subsampling, *combo_dct, *combo_origin; +static GtkWidget *check_savebgc, *check_savegamma, *check_saveoff, *check_savephys, *check_savetime, *check_savecomm, *check_savetrans, *check_lossless; +static GtkWidget *combo_preset, *check_saveexif, *check_savexmp, *check_savecp; +static GtkWidget *expander_advanced; -GtkTextBuffer *buffer_comment; -GtkTextIter start_comment, end_comment; +static GtkTextBuffer *buffer_comment; +static GtkTextIter start_comment, end_comment; -GtkWidget* parentwin; +static GtkWidget* parentwin; GtkWidget* bimp_changeformat_gui_new(changeformat_settings settings, GtkWidget* parent) { @@ -27,15 +28,12 @@ GtkWidget* bimp_changeformat_gui_new(changeformat_settings settings, GtkWidget* gui = gtk_vbox_new(FALSE, 5); combo_format = gtk_combo_box_new_text(); - gtk_widget_set_size_request (combo_format, COMBO_FORMAT_W, COMBO_H); - int i; - for(i = 0; i < FORMAT_END; i++) { + for(int i = 0; i < FORMAT_END; i++) { gtk_combo_box_append_text(GTK_COMBO_BOX(combo_format), format_type_string[i][1]); } gtk_combo_box_set_active(GTK_COMBO_BOX(combo_format), settings->format); frame_params = gtk_frame_new(_("Format settings")); - gtk_widget_set_size_request (frame_params, FRAME_PARAMS_W, FRAME_PARAMS_H); gtk_box_pack_start(GTK_BOX(gui), combo_format, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(gui), frame_params, FALSE, FALSE, 0); @@ -49,12 +47,12 @@ GtkWidget* bimp_changeformat_gui_new(changeformat_settings settings, GtkWidget* static void update_frame_params(GtkComboBox *widget, changeformat_settings settings) { - increase_dialog_height(0); + update_window_size(); format_type selected_format = (format_type)gtk_combo_box_get_active(widget); + inner_widget = gtk_vbox_new(FALSE, 5); + gtk_container_set_border_width(GTK_CONTAINER(inner_widget), 8); if (selected_format == FORMAT_GIF) { - inner_widget = gtk_vbox_new(FALSE, 5); - gtk_container_set_border_width(GTK_CONTAINER(inner_widget), 8); check_interlace = gtk_check_button_new_with_label(_("Interlaced")); if (selected_format == settings->format) { @@ -71,25 +69,18 @@ static void update_frame_params(GtkComboBox *widget, changeformat_settings setti GtkWidget *hbox_quality, *hbox_smoothing, *hbox_checks, *hbox_comment, *hbox_markers, *hbox_subsampling, *hbox_dct; GtkWidget *vbox_advanced, *label_quality, *label_smoothing, *label_markers, *label_comment, *label_subsampling, *label_dct, *text_comment; - inner_widget = gtk_vbox_new(FALSE, 5); - gtk_container_set_border_width(GTK_CONTAINER(inner_widget), 8); - hbox_quality = gtk_hbox_new(FALSE, 5); - label_quality = gtk_label_new(_("Quality")); - gtk_widget_set_size_request (label_quality, 100, LABEL_H); + label_quality = gtk_label_new(g_strconcat(_("Quality"), ":", NULL)); gtk_misc_set_alignment(GTK_MISC(label_quality), 0.5, 0.8); scale_quality = gtk_hscale_new_with_range(0, 100, 1); - gtk_widget_set_size_request (scale_quality, 160, SCALE_H); expander_advanced = gtk_expander_new(_("Advanced params")); vbox_advanced = gtk_vbox_new(FALSE, 5); hbox_smoothing = gtk_hbox_new(FALSE, 5); - label_smoothing = gtk_label_new(_("Smoothing")); - gtk_widget_set_size_request (label_smoothing, 100, LABEL_H); + label_smoothing = gtk_label_new(g_strconcat(_("Smoothing"), ":", NULL)); gtk_misc_set_alignment(GTK_MISC(label_smoothing), 0.5, 0.8); scale_smoothing = gtk_hscale_new_with_range(0, 1, 0.01); - gtk_widget_set_size_request (scale_smoothing, 160, SCALE_H); hbox_checks = gtk_hbox_new(FALSE, 5); check_entrophy = gtk_check_button_new_with_label(_("Optimize")); @@ -97,22 +88,17 @@ static void update_frame_params(GtkComboBox *widget, changeformat_settings setti check_baseline = gtk_check_button_new_with_label(_("Save baseline")); hbox_comment = gtk_hbox_new(FALSE, 5); - label_comment = gtk_label_new(g_strconcat(_("Comment"), ": ", NULL)); - gtk_widget_set_size_request (label_comment, 100, LABEL_H); + label_comment = gtk_label_new(g_strconcat(_("Comment"), ":", NULL)); text_comment = gtk_text_view_new(); buffer_comment = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text_comment)); - gtk_widget_set_size_request (text_comment, 160, TEXT_H); hbox_markers = gtk_hbox_new(FALSE, 5); - label_markers = gtk_label_new(g_strconcat(_("Markers rows"), ": ", NULL)); - gtk_widget_set_size_request (label_markers, 100, LABEL_H); + label_markers = gtk_label_new(g_strconcat(_("Markers rows"), ":", NULL)); spin_markers = gtk_spin_button_new(NULL, 1, 0); hbox_subsampling = gtk_hbox_new(FALSE, 5); - label_subsampling = gtk_label_new(g_strconcat(_("Subsampling"), ": ", NULL)); - gtk_widget_set_size_request (label_subsampling, 100, LABEL_H); + label_subsampling = gtk_label_new(g_strconcat(_("Subsampling"), ":", NULL)); combo_subsampling = gtk_combo_box_new_text(); - gtk_widget_set_size_request (combo_subsampling, 180, COMBO_H); gtk_combo_box_append_text(GTK_COMBO_BOX(combo_subsampling), g_strconcat("2x2, 1x1, 1x1 (", _("Small size"), ")", NULL)); gtk_combo_box_append_text(GTK_COMBO_BOX(combo_subsampling), "2x1, 1x1, 1x1 (4:2:2)"); gtk_combo_box_append_text(GTK_COMBO_BOX(combo_subsampling), g_strconcat("1x1, 1x1, 1x1 (", _("Quality"), ")", NULL)); @@ -120,10 +106,8 @@ static void update_frame_params(GtkComboBox *widget, changeformat_settings setti hbox_dct = gtk_hbox_new(FALSE, 5); - label_dct = gtk_label_new(g_strconcat(_("DCT algorithm"), ": ", NULL)); - gtk_widget_set_size_request (label_dct, 100, LABEL_H); + label_dct = gtk_label_new(g_strconcat(_("DCT algorithm"), ":", NULL)); combo_dct = gtk_combo_box_new_text(); - gtk_widget_set_size_request (combo_dct, 150, COMBO_H); gtk_combo_box_append_text(GTK_COMBO_BOX(combo_dct), _("Integer")); gtk_combo_box_append_text(GTK_COMBO_BOX(combo_dct), _("Fast integer")); gtk_combo_box_append_text(GTK_COMBO_BOX(combo_dct), _("Float")); @@ -162,14 +146,14 @@ static void update_frame_params(GtkComboBox *widget, changeformat_settings setti } gtk_box_pack_start(GTK_BOX(hbox_quality), label_quality, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_quality), scale_quality, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_quality), scale_quality, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(inner_widget), hbox_quality, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(inner_widget), expander_advanced, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox_smoothing), label_smoothing, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_smoothing), scale_smoothing, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_advanced), hbox_smoothing, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_smoothing), scale_smoothing, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(vbox_advanced), hbox_smoothing, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(hbox_checks), check_entrophy, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox_checks), check_progressive, FALSE, FALSE, 0); @@ -177,8 +161,8 @@ static void update_frame_params(GtkComboBox *widget, changeformat_settings setti gtk_box_pack_start(GTK_BOX(vbox_advanced), hbox_checks, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox_comment), label_comment, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_comment), text_comment, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_advanced), hbox_comment, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_comment), text_comment, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(vbox_advanced), hbox_comment, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(hbox_markers), label_markers, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox_markers), spin_markers, FALSE, FALSE, 0); @@ -194,21 +178,17 @@ static void update_frame_params(GtkComboBox *widget, changeformat_settings setti gtk_container_add (GTK_CONTAINER(expander_advanced), vbox_advanced); - g_signal_connect(G_OBJECT(expander_advanced), "activate", G_CALLBACK(adv_expanded), combo_format); + g_signal_connect(G_OBJECT(expander_advanced), "size-request", G_CALLBACK(adv_expanded), combo_format); } else if (selected_format == FORMAT_PNG) { GtkWidget *hbox_compression, *label_compression; GtkWidget *vbox_advanced; - inner_widget = gtk_vbox_new(FALSE, 5); - gtk_container_set_border_width(GTK_CONTAINER(inner_widget), 8); check_interlace = gtk_check_button_new_with_label(_("Interlace (Adam7)")); hbox_compression = gtk_hbox_new(FALSE, 5); - label_compression = gtk_label_new(_("Compression")); - gtk_widget_set_size_request (label_compression, 100, LABEL_H); + label_compression = gtk_label_new(g_strconcat(_("Compression"), ":", NULL)); gtk_misc_set_alignment(GTK_MISC(label_compression), 0.5, 0.8); scale_compression = gtk_hscale_new_with_range(0, 9, 1); - gtk_widget_set_size_request (scale_compression, 100, SCALE_H); expander_advanced = gtk_expander_new(_("Advanced params")); vbox_advanced = gtk_vbox_new(FALSE, 5); @@ -255,26 +235,22 @@ static void update_frame_params(GtkComboBox *widget, changeformat_settings setti gtk_box_pack_start(GTK_BOX(inner_widget), check_interlace, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox_compression), label_compression, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_compression), scale_compression, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(inner_widget), hbox_compression, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_compression), scale_compression, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(inner_widget), hbox_compression, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(inner_widget), expander_advanced, FALSE, FALSE, 0); gtk_container_add (GTK_CONTAINER(expander_advanced), vbox_advanced); - g_signal_connect(G_OBJECT(expander_advanced), "activate", G_CALLBACK(adv_expanded), combo_format); + g_signal_connect(G_OBJECT(expander_advanced), "size-request", G_CALLBACK(adv_expanded), combo_format); } - else if (selected_format == FORMAT_TGA) { + else if (selected_format == FORMAT_TGA) { GtkWidget *hbox_origin, *label_origin; - - inner_widget = gtk_vbox_new(FALSE, 5); - gtk_container_set_border_width(GTK_CONTAINER(inner_widget), 8); + check_rle = gtk_check_button_new_with_label(_("RLE compression")); hbox_origin = gtk_hbox_new(FALSE, 5); - label_origin = gtk_label_new(g_strconcat(_("Image origin"), ": ", NULL)); - gtk_widget_set_size_request (label_origin, 100, LABEL_H); + label_origin = gtk_label_new(g_strconcat(_("Image origin"), ":", NULL)); combo_origin = gtk_combo_box_new_text(); - gtk_widget_set_size_request (combo_origin, 100, COMBO_H); gtk_combo_box_append_text(GTK_COMBO_BOX(combo_origin), _("Top-left")); gtk_combo_box_append_text(GTK_COMBO_BOX(combo_origin), _("Bottom-left")); @@ -289,22 +265,18 @@ static void update_frame_params(GtkComboBox *widget, changeformat_settings setti } gtk_box_pack_start(GTK_BOX(hbox_origin), label_origin, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_origin), combo_origin, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_origin), combo_origin, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(inner_widget), check_rle, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(inner_widget), hbox_origin, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(inner_widget), hbox_origin, TRUE, TRUE, 0); } else if (selected_format == FORMAT_TIFF) { GtkWidget *hbox_compression, *label_compression; - inner_widget = gtk_vbox_new(FALSE, 5); - gtk_container_set_border_width(GTK_CONTAINER(inner_widget), 8); hbox_compression = gtk_hbox_new(FALSE, 5); - label_compression = gtk_label_new(_("Compression")); - gtk_widget_set_size_request (label_compression, 80, LABEL_H); + label_compression = gtk_label_new(g_strconcat(_("Compression"), ":", NULL)); gtk_misc_set_alignment(GTK_MISC(label_compression), 0.5, 0.5); combo_compression = gtk_combo_box_new_text(); - gtk_widget_set_size_request (combo_compression, 130, COMBO_H); gtk_combo_box_append_text(GTK_COMBO_BOX(combo_compression), _("None")); gtk_combo_box_append_text(GTK_COMBO_BOX(combo_compression), _("LZW")); gtk_combo_box_append_text(GTK_COMBO_BOX(combo_compression), _("Pack bits")); @@ -322,11 +294,145 @@ static void update_frame_params(GtkComboBox *widget, changeformat_settings setti } gtk_box_pack_start(GTK_BOX(hbox_compression), label_compression, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_compression), combo_compression, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(inner_widget), hbox_compression, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_compression), combo_compression, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(inner_widget), hbox_compression, TRUE, TRUE, 0); + } + else if (selected_format == FORMAT_HEIF) { + GtkWidget *hbox_quality, *label_quality; + + check_lossless = gtk_check_button_new_with_label(_("Lossless")); + + hbox_quality = gtk_hbox_new(FALSE, 5); + label_quality = gtk_label_new(g_strconcat(_("Quality"), ":", NULL)); + gtk_misc_set_alignment(GTK_MISC(label_quality), 0.5, 0.8); + scale_quality = gtk_hscale_new_with_range(0, 100, 1); + + if (selected_format == settings->format) { + format_params_heif settings_heif = (format_params_heif)(settings->params); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_lossless), settings_heif->lossless); + + gtk_range_set_value(GTK_RANGE(scale_quality), settings_heif->quality); + } + else { + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_lossless), FALSE); + + gtk_range_set_value(GTK_RANGE(scale_quality), 85.0); + } + + gtk_box_pack_start(GTK_BOX(inner_widget), check_lossless, FALSE, FALSE, 0); + + gtk_box_pack_start(GTK_BOX(hbox_quality), label_quality, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_quality), scale_quality, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(inner_widget), hbox_quality, TRUE, TRUE, 0); + } + else if (selected_format == FORMAT_WEBP) { + GtkWidget *hbox_quality, *hbox_alpha_quality, *hbox_preset, *label_quality, *label_alpha_quality, *label_preset; + + check_lossless = gtk_check_button_new_with_label(_("Lossless")); + + hbox_quality = gtk_hbox_new(FALSE, 5); + label_quality = gtk_label_new(g_strconcat(_("Image quality"), ":", NULL)); + gtk_misc_set_alignment(GTK_MISC(label_quality), 0.5, 0.8); + scale_quality = gtk_hscale_new_with_range(0, 100, 1); + + hbox_alpha_quality = gtk_hbox_new(FALSE, 5); + label_alpha_quality = gtk_label_new(g_strconcat(_("Alpha quality"), ":", NULL)); + gtk_misc_set_alignment(GTK_MISC(label_alpha_quality), 0.5, 0.8); + scale_alpha_quality = gtk_hscale_new_with_range(0, 100, 1); + + hbox_preset = gtk_hbox_new(FALSE, 5); + label_preset = gtk_label_new(g_strconcat(_("Preset"), ":", NULL)); + gtk_misc_set_alignment(GTK_MISC(label_preset), 0.5, 0.5); + combo_preset = gtk_combo_box_new_text(); + gtk_combo_box_append_text(GTK_COMBO_BOX(combo_preset), _("Default")); + gtk_combo_box_append_text(GTK_COMBO_BOX(combo_preset), _("Picture")); + gtk_combo_box_append_text(GTK_COMBO_BOX(combo_preset), _("Photo")); + gtk_combo_box_append_text(GTK_COMBO_BOX(combo_preset), _("Drawing")); + gtk_combo_box_append_text(GTK_COMBO_BOX(combo_preset), _("Icon")); + gtk_combo_box_append_text(GTK_COMBO_BOX(combo_preset), _("Text")); + + check_saveexif = gtk_check_button_new_with_label(_("Save EXIF data")); + check_savexmp = gtk_check_button_new_with_label(_("Save XMP data")); + check_savecp = gtk_check_button_new_with_label(_("Save color profile")); + + if (selected_format == settings->format) { + format_params_webp settings_webp = (format_params_webp)(settings->params); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_lossless), settings_webp->lossless); + + gtk_range_set_value(GTK_RANGE(scale_quality), settings_webp->quality); + gtk_range_set_value(GTK_RANGE(scale_alpha_quality), settings_webp->alpha_quality); + + gtk_combo_box_set_active(GTK_COMBO_BOX(combo_preset), settings_webp->preset); + + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_saveexif), settings_webp->exif); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_savexmp), settings_webp->xmp); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_savecp), settings_webp->iptc); + } + else { + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_lossless), FALSE); + + gtk_range_set_value(GTK_RANGE(scale_quality), 90.0); + gtk_range_set_value(GTK_RANGE(scale_alpha_quality), 100.0); + + gtk_combo_box_set_active(GTK_COMBO_BOX(combo_preset), 0); + + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_saveexif), TRUE); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_savexmp), TRUE); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_savecp), TRUE); + } + + gtk_box_pack_start(GTK_BOX(inner_widget), check_lossless, FALSE, FALSE, 0); + + gtk_box_pack_start(GTK_BOX(hbox_quality), label_quality, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_quality), scale_quality, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(inner_widget), hbox_quality, TRUE, TRUE, 0); + + gtk_box_pack_start(GTK_BOX(hbox_alpha_quality), label_alpha_quality, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_alpha_quality), scale_alpha_quality, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(inner_widget), hbox_alpha_quality, TRUE, TRUE, 0); + + gtk_box_pack_start(GTK_BOX(hbox_preset), label_preset, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_preset), combo_preset, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(inner_widget), hbox_preset, TRUE, TRUE, 0); + + gtk_box_pack_start(GTK_BOX(inner_widget), check_saveexif, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(inner_widget), check_savexmp, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(inner_widget), check_savecp, TRUE, TRUE, 0); + } + else if (selected_format == FORMAT_AVIF) { + GtkWidget *hbox_quality, *label_quality; + + check_lossless = gtk_check_button_new_with_label(_("Nearly lossless")); + + hbox_quality = gtk_hbox_new(FALSE, 5); + label_quality = gtk_label_new(g_strconcat(_("Quality"), ":", NULL)); + gtk_misc_set_alignment(GTK_MISC(label_quality), 0.5, 0.8); + scale_quality = gtk_hscale_new_with_range(0, 100, 1); + + if (selected_format == settings->format) { + format_params_avif settings_avif = (format_params_avif)(settings->params); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_lossless), settings_avif->lossless); + + gtk_range_set_value(GTK_RANGE(scale_quality), settings_avif->quality); + } + else { + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_lossless), FALSE); + + gtk_range_set_value(GTK_RANGE(scale_quality), 50); + } + + gtk_box_pack_start(GTK_BOX(inner_widget), check_lossless, FALSE, FALSE, 0); + + gtk_box_pack_start(GTK_BOX(hbox_quality), label_quality, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_quality), scale_quality, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(inner_widget), hbox_quality, TRUE, TRUE, 0); } else { - inner_widget = gtk_label_new(_("This format has no params")); + GtkWidget *label_no_param ; + + label_no_param = gtk_label_new(_("This format has no params")); + + gtk_box_pack_start(GTK_BOX(inner_widget), label_no_param, FALSE, FALSE, 0); } if (gtk_bin_get_child(GTK_BIN(frame_params)) != NULL) { @@ -336,24 +442,13 @@ static void update_frame_params(GtkComboBox *widget, changeformat_settings setti gtk_widget_show_all(frame_params); } -static void adv_expanded (GtkExpander *expander, gpointer combo) +static void adv_expanded (GtkWidget *expander, GtkRequisition *requisition, gpointer data) { - if (!gtk_expander_get_expanded (GTK_EXPANDER(expander))) { - if (gtk_combo_box_get_active(GTK_COMBO_BOX(combo)) == FORMAT_JPEG) { - increase_dialog_height(200); - } - else if (gtk_combo_box_get_active(GTK_COMBO_BOX(combo)) == FORMAT_PNG) { - increase_dialog_height(180); - } - } - else { - increase_dialog_height(0); - } + update_window_size(); } -static void increase_dialog_height(int inc) { - gtk_widget_set_size_request (parentwin, CHANGEFORMAT_WINDOW_W, CHANGEFORMAT_WINDOW_H + inc); - gtk_widget_set_size_request (frame_params, FRAME_PARAMS_W, FRAME_PARAMS_H + inc); +static void update_window_size() { + gtk_window_resize(GTK_WINDOW(parentwin), 1, 1); } void bimp_changeformat_save(changeformat_settings orig_settings) @@ -399,9 +494,38 @@ void bimp_changeformat_save(changeformat_settings orig_settings) ((format_params_tga)orig_settings->params)->origin = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_origin)); } else if (orig_settings->format == FORMAT_TIFF) { - orig_settings->params = (format_params_png) g_malloc(sizeof(struct changeformat_params_png)); + orig_settings->params = (format_params_tiff) g_malloc(sizeof(struct changeformat_params_tiff)); ((format_params_tiff)orig_settings->params)->compression = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_compression)); } + else if (orig_settings->format == FORMAT_HEIF) { + orig_settings->params = (format_params_heif) g_malloc(sizeof(struct changeformat_params_heif)); + ((format_params_heif)orig_settings->params)->lossless = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(check_lossless)); + ((format_params_heif)orig_settings->params)->quality = gtk_range_get_value(GTK_RANGE(scale_quality)); + } + else if (orig_settings->format == FORMAT_WEBP) { + orig_settings->params = (format_params_webp) g_malloc(sizeof(struct changeformat_params_webp)); + ((format_params_webp)orig_settings->params)->lossless = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(check_lossless)); + ((format_params_webp)orig_settings->params)->quality = gtk_range_get_value(GTK_RANGE(scale_quality)); + ((format_params_webp)orig_settings->params)->alpha_quality = gtk_range_get_value(GTK_RANGE(scale_alpha_quality)); + ((format_params_webp)orig_settings->params)->preset = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_preset)); + ((format_params_webp)orig_settings->params)->exif = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(check_saveexif)); + ((format_params_webp)orig_settings->params)->xmp = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(check_savexmp)); + ((format_params_webp)orig_settings->params)->iptc = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(check_savecp)); + + // also other "hidden" params + ((format_params_webp)orig_settings->params)->animation = FALSE; + ((format_params_webp)orig_settings->params)->anim_loop = TRUE; + ((format_params_webp)orig_settings->params)->minimize_size = TRUE; + ((format_params_webp)orig_settings->params)->kf_distance = 50; + ((format_params_webp)orig_settings->params)->delay = 200; + ((format_params_webp)orig_settings->params)->force_delay = FALSE; + } + else if (orig_settings->format == FORMAT_AVIF) { + orig_settings->params = (format_params_avif) g_malloc(sizeof(struct changeformat_params_avif)); + + ((format_params_avif)orig_settings->params)->lossless = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(check_lossless)); + ((format_params_avif)orig_settings->params)->quality = gtk_range_get_value(GTK_RANGE(scale_quality)); + } else { orig_settings->params = NULL; } diff --git a/src/manipulation-gui/gui-changeformat.h b/src/manipulation-gui/gui-changeformat.h index 0f2e616..9f1423f 100644 --- a/src/manipulation-gui/gui-changeformat.h +++ b/src/manipulation-gui/gui-changeformat.h @@ -4,23 +4,6 @@ #include #include "../bimp-manipulations.h" -#define CHANGEFORMAT_WINDOW_W 350 -#define CHANGEFORMAT_WINDOW_H 265 - -#define COMBO_FORMAT_W CHANGEFORMAT_WINDOW_W - 50 - -#define TEXT_H 40 -#define SCALE_H 35 -#define LABEL_H 30 -#define COMBO_H 30 -#define SPIN_W 60 -#define SPIN_H 25 - -#define SCALE_COMPRESSION_W COMBO_COMPRESSION_W - -#define FRAME_PARAMS_W CHANGEFORMAT_WINDOW_W - 100 -#define FRAME_PARAMS_H CHANGEFORMAT_WINDOW_H - COMBO_H - 115 - GtkWidget* bimp_changeformat_gui_new(changeformat_settings, GtkWidget*); void bimp_changeformat_save(changeformat_settings); diff --git a/src/manipulation-gui/gui-color.c b/src/manipulation-gui/gui-color.c index d8111c1..aeeebdb 100644 --- a/src/manipulation-gui/gui-color.c +++ b/src/manipulation-gui/gui-color.c @@ -6,33 +6,30 @@ static void toggle_curve(GtkToggleButton*, gpointer); -GtkWidget *scale_bright, *scale_contrast; -GtkWidget *check_autolevels, *check_grayscale, *check_curve; -GtkWidget *chooser_curve; +static GtkWidget *scale_bright, *scale_contrast; +static GtkWidget *check_autolevels, *check_grayscale, *check_curve; +static GtkWidget *chooser_curve; GtkWidget* bimp_color_gui_new(color_settings settings) { - GtkWidget *gui, *hbox_brightness, *hbox_contrast; + GtkWidget *gui; GtkWidget *label_bright, *label_contrast; - GtkWidget *align_choosercurve; - gui = gtk_vbox_new(FALSE, 5); + gui = gtk_table_new(6, 2, FALSE); + gtk_table_set_row_spacings(GTK_TABLE(gui), 5); + gtk_table_set_col_spacings(GTK_TABLE(gui), 5); - hbox_brightness = gtk_hbox_new(FALSE, 5); - label_bright = gtk_label_new(_("Brightness")); - gtk_widget_set_size_request (label_bright, LABEL_BC_W, LABEL_BC_H); - gtk_misc_set_alignment(GTK_MISC(label_bright), 0.5, 0.8); - scale_bright = gtk_hscale_new_with_range(-127, 127, 1); + label_bright = gtk_label_new(g_strconcat(_("Brightness"), ":", NULL)); + gtk_misc_set_alignment(GTK_MISC(label_bright), 0, 0.5); + scale_bright = gtk_hscale_new_with_range(-0.5, +0.5, 0.01); + gtk_misc_set_alignment(GTK_MISC(scale_bright), 0, 0.5); gtk_range_set_value(GTK_RANGE(scale_bright), settings->brightness); - gtk_widget_set_size_request (scale_bright, SCALE_BC_W, SCALE_BC_H); - hbox_contrast = gtk_hbox_new(FALSE, 5); - label_contrast = gtk_label_new(_("Contrast")); - gtk_widget_set_size_request (label_contrast, LABEL_BC_W, LABEL_BC_H); - gtk_misc_set_alignment(GTK_MISC(label_contrast), 0.5, 0.8); - scale_contrast = gtk_hscale_new_with_range(-127, 127, 1); + label_contrast = gtk_label_new(g_strconcat(_("Contrast"), ":", NULL)); + gtk_misc_set_alignment(GTK_MISC(label_contrast), 0, 0.5); + scale_contrast = gtk_hscale_new_with_range(-0.5, +0.5, 0.01); + gtk_misc_set_alignment(GTK_MISC(scale_contrast), 0, 0.5); gtk_range_set_value(GTK_RANGE(scale_contrast), settings->contrast); - gtk_widget_set_size_request (scale_contrast, SCALE_BC_W, SCALE_BC_H); check_grayscale = gtk_check_button_new_with_label(_("Convert to grayscale")); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_grayscale), settings->grayscale); @@ -41,9 +38,6 @@ GtkWidget* bimp_color_gui_new(color_settings settings) check_curve = gtk_check_button_new_with_label(_("Change color curve from settings file:")); - align_choosercurve = gtk_alignment_new(0, 0, 0, 0); - gtk_alignment_set_padding(GTK_ALIGNMENT(align_choosercurve), 0, 5, 20, 0); - chooser_curve = gtk_file_chooser_button_new(_("Select GIMP Curve file"), GTK_FILE_CHOOSER_ACTION_OPEN); if (settings->curve_file != NULL) { gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(chooser_curve), settings->curve_file); @@ -52,21 +46,17 @@ GtkWidget* bimp_color_gui_new(color_settings settings) else { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_curve), FALSE); } - gtk_widget_set_size_request (chooser_curve, INPUT_W, INPUT_H); - gtk_container_add(GTK_CONTAINER(align_choosercurve), chooser_curve); - gtk_box_pack_start(GTK_BOX(hbox_brightness), label_bright, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_brightness), scale_bright, FALSE, FALSE, 0); + gtk_table_attach(GTK_TABLE(gui), label_bright, 0, 1, 0, 1, GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0); + gtk_table_attach_defaults(GTK_TABLE(gui), scale_bright, 1, 2, 0, 1); - gtk_box_pack_start(GTK_BOX(hbox_contrast), label_contrast, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_contrast), scale_contrast, FALSE, FALSE, 0); - - gtk_box_pack_start(GTK_BOX(gui), hbox_brightness, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(gui), hbox_contrast, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(gui), check_grayscale, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(gui), check_autolevels, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(gui), check_curve, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(gui), align_choosercurve, FALSE, FALSE, 0); + gtk_table_attach(GTK_TABLE(gui), label_contrast, 0, 1, 1, 2, GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0); + gtk_table_attach_defaults(GTK_TABLE(gui), scale_contrast, 1, 2, 1, 2); + + gtk_table_attach_defaults(GTK_TABLE(gui), check_grayscale, 0, 2, 2, 3); + gtk_table_attach_defaults(GTK_TABLE(gui), check_autolevels, 0, 2, 3, 4); + gtk_table_attach_defaults(GTK_TABLE(gui), check_curve, 0, 2, 4, 5); + gtk_table_attach_defaults(GTK_TABLE(gui), chooser_curve, 0, 2, 5, 6); toggle_curve(NULL, NULL); g_signal_connect(G_OBJECT(check_curve), "toggled", G_CALLBACK(toggle_curve), NULL); diff --git a/src/manipulation-gui/gui-color.h b/src/manipulation-gui/gui-color.h index ecf4c3a..641a436 100644 --- a/src/manipulation-gui/gui-color.h +++ b/src/manipulation-gui/gui-color.h @@ -4,17 +4,6 @@ #include #include "../bimp-manipulations.h" -#define COLOR_WINDOW_W 310 - -#define LABEL_BC_W 80 -#define LABEL_BC_H 40 - -#define SCALE_BC_W COLOR_WINDOW_W - LABEL_BC_W - 40 -#define SCALE_BC_H LABEL_BC_H - -#define INPUT_W 200 -#define INPUT_H 30 - GtkWidget* bimp_color_gui_new(color_settings); void bimp_color_save(color_settings); diff --git a/src/manipulation-gui/gui-crop.c b/src/manipulation-gui/gui-crop.c index 5ef6092..3d6b3c3 100644 --- a/src/manipulation-gui/gui-crop.c +++ b/src/manipulation-gui/gui-crop.c @@ -8,15 +8,15 @@ static void toggle_group(GtkToggleButton*, gpointer); static void set_customratio(GtkComboBox*, gpointer); static char* crop_preset_get_string(crop_preset); -GtkWidget *hbox_ratio, *vbox_manual, *hbox_customratio; -GtkWidget *radio_stratio, *radio_manual; -GtkWidget *combo_ratio, *spin_ratio1, *spin_ratio2; -GtkWidget *spin_width, *spin_height; -GtkWidget *hbox_startpos, *combo_startpos; +static GtkWidget *hbox_ratio, *table_manual, *hbox_customratio; +static GtkWidget *radio_stratio, *radio_manual; +static GtkWidget *combo_ratio, *spin_ratio1, *spin_ratio2; +static GtkWidget *spin_width, *spin_height; +static GtkWidget *hbox_startpos, *combo_startpos; GtkWidget* bimp_crop_gui_new(crop_settings settings) { - GtkWidget *gui, *hbox_manual_width, *hbox_manual_height; + GtkWidget *gui; GtkWidget *label_manual_width, *label_manual_height, *label_manual_ratio, *label_startpos; GtkWidget *align_radio_stratio, *align_radio_manual; @@ -37,10 +37,8 @@ GtkWidget* bimp_crop_gui_new(crop_settings settings) hbox_customratio = gtk_hbox_new(FALSE, 5); spin_ratio1 = gtk_spin_button_new(GTK_ADJUSTMENT(gtk_adjustment_new (settings->custom_ratio1, 0.1, 100.0, 0.1, 1, 0)), 1, 1); - gtk_widget_set_size_request (spin_ratio1, 50, LABEL_CROP_H); label_manual_ratio = gtk_label_new(":"); spin_ratio2 = gtk_spin_button_new(GTK_ADJUSTMENT(gtk_adjustment_new (settings->custom_ratio2, 0.1, 100.0, 0.1, 1, 0)), 1, 1); - gtk_widget_set_size_request (spin_ratio2, 50, LABEL_CROP_H); gtk_box_pack_start(GTK_BOX(hbox_customratio), spin_ratio1, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox_customratio), label_manual_ratio, FALSE, FALSE, 0); @@ -54,14 +52,14 @@ GtkWidget* bimp_crop_gui_new(crop_settings settings) radio_manual = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(radio_stratio), _("Manual crop (pixel values)")); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(radio_manual), (settings->manual)); - vbox_manual = gtk_vbox_new(FALSE, 5); - hbox_manual_width = gtk_hbox_new(FALSE, 5); + table_manual = gtk_table_new(2, 2, FALSE); + gtk_table_set_row_spacings(GTK_TABLE(table_manual), 5); + gtk_table_set_col_spacings(GTK_TABLE(table_manual), 5); label_manual_width = gtk_label_new(g_strconcat(_("Width"), ": ", NULL)); - gtk_widget_set_size_request (label_manual_width, LABEL_CROP_W, LABEL_CROP_H); + gtk_misc_set_alignment(GTK_MISC(label_manual_width), 0, .5); spin_width = gtk_spin_button_new(GTK_ADJUSTMENT(gtk_adjustment_new (settings->new_w, 1, 40960, 1, 1, 0)), 1, 0); - hbox_manual_height = gtk_hbox_new(FALSE, 5); label_manual_height = gtk_label_new(g_strconcat(_("Height"), ": ", NULL)); - gtk_widget_set_size_request (label_manual_height, LABEL_CROP_W, LABEL_CROP_H); + gtk_misc_set_alignment(GTK_MISC(label_manual_height), 0, .5); spin_height = gtk_spin_button_new(GTK_ADJUSTMENT(gtk_adjustment_new (settings->new_h, 1, 40960, 1, 1, 0)), 1, 0); hbox_startpos = gtk_hbox_new(FALSE, 5); @@ -93,14 +91,11 @@ GtkWidget* bimp_crop_gui_new(crop_settings settings) gtk_box_pack_start(GTK_BOX(gui), radio_manual, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_manual_width), label_manual_width, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_manual_width), spin_width, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_manual_height), label_manual_height, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_manual_height), spin_height, FALSE, FALSE, 0); - - gtk_box_pack_start(GTK_BOX(vbox_manual), hbox_manual_width, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_manual), hbox_manual_height, FALSE, FALSE, 0); - gtk_container_add(GTK_CONTAINER(align_radio_manual), vbox_manual); + gtk_table_attach(GTK_TABLE(table_manual), label_manual_width, 0, 1, 0, 1, GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0); + gtk_table_attach_defaults(GTK_TABLE(table_manual), spin_width, 1, 2, 0, 1); + gtk_table_attach_defaults(GTK_TABLE(table_manual), label_manual_height, 0, 1, 1, 2); + gtk_table_attach_defaults(GTK_TABLE(table_manual), spin_height, 1, 2, 1, 2); + gtk_container_add(GTK_CONTAINER(align_radio_manual), table_manual); gtk_box_pack_start(GTK_BOX(gui), align_radio_manual, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox_startpos), label_startpos, FALSE, FALSE, 0); @@ -118,7 +113,7 @@ GtkWidget* bimp_crop_gui_new(crop_settings settings) static void toggle_group(GtkToggleButton *togglebutton, gpointer user_data) { gtk_widget_set_sensitive(GTK_WIDGET(hbox_ratio), gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radio_stratio))); - gtk_widget_set_sensitive(GTK_WIDGET(vbox_manual), !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radio_stratio))); + gtk_widget_set_sensitive(GTK_WIDGET(table_manual), !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radio_stratio))); } static void set_customratio(GtkComboBox *combobox, gpointer user_data) diff --git a/src/manipulation-gui/gui-crop.h b/src/manipulation-gui/gui-crop.h index c62aae1..2eb240f 100644 --- a/src/manipulation-gui/gui-crop.h +++ b/src/manipulation-gui/gui-crop.h @@ -4,9 +4,6 @@ #include #include "../bimp-manipulations.h" -#define LABEL_CROP_W 85 -#define LABEL_CROP_H 25 - GtkWidget* bimp_crop_gui_new(crop_settings); void bimp_crop_save(crop_settings); diff --git a/src/manipulation-gui/gui-fliprotate.c b/src/manipulation-gui/gui-fliprotate.c index ac5638b..b4a0f52 100644 --- a/src/manipulation-gui/gui-fliprotate.c +++ b/src/manipulation-gui/gui-fliprotate.c @@ -1,12 +1,13 @@ #include +#include #include #include "gui-fliprotate.h" #include "../bimp-manipulations.h" #include "../bimp-manipulations-gui.h" -#include "../bimp-icons.h" +#include "../bimp-utils.h" #include "../plugin-intl.h" -GtkWidget *button_flipH, *button_flipV, *combo_rotate; +static GtkWidget *button_flipH, *button_flipV, *combo_rotate; GtkWidget* bimp_fliprotate_gui_new(fliprotate_settings settings) { @@ -21,15 +22,13 @@ GtkWidget* bimp_fliprotate_gui_new(fliprotate_settings settings) align_flip = gtk_alignment_new(0.5, 0, 0, 0); button_flipH = gtk_toggle_button_new_with_label(_("Horizontally")); - gtk_widget_set_size_request (button_flipH, BUTTON_FLIP_W, BUTTON_FLIP_H); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_flipH), settings->flip_h); - gtk_button_set_image(GTK_BUTTON(button_flipH), gtk_image_new_from_pixbuf(gdk_pixbuf_from_pixdata(&pixdata_flipH, FALSE, NULL))); + gtk_button_set_image(GTK_BUTTON(button_flipH), image_new_from_resource("/gimp/plugin/bimp/icons/stock-flip-horizontal.png")); gtk_button_set_image_position(GTK_BUTTON(button_flipH), GTK_POS_TOP); button_flipV = gtk_toggle_button_new_with_label(_("Vertically")); - gtk_widget_set_size_request (button_flipV, BUTTON_FLIP_W, BUTTON_FLIP_H); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_flipV), settings->flip_v); - gtk_button_set_image(GTK_BUTTON(button_flipV), gtk_image_new_from_pixbuf(gdk_pixbuf_from_pixdata(&pixdata_flipV, FALSE, NULL))); + gtk_button_set_image(GTK_BUTTON(button_flipV), image_new_from_resource("/gimp/plugin/bimp/icons/stock-flip-vertical.png")); gtk_button_set_image_position(GTK_BUTTON(button_flipV), GTK_POS_TOP); hbox_rotate = gtk_hbox_new(FALSE, 5); diff --git a/src/manipulation-gui/gui-fliprotate.h b/src/manipulation-gui/gui-fliprotate.h index 726f439..345f940 100644 --- a/src/manipulation-gui/gui-fliprotate.h +++ b/src/manipulation-gui/gui-fliprotate.h @@ -4,9 +4,6 @@ #include #include "../bimp-manipulations.h" -#define BUTTON_FLIP_W 100 -#define BUTTON_FLIP_H 55 - GtkWidget* bimp_fliprotate_gui_new(fliprotate_settings); void bimp_fliprotate_save(fliprotate_settings); diff --git a/src/manipulation-gui/gui-rename.c b/src/manipulation-gui/gui-rename.c index 01df50b..4308394 100644 --- a/src/manipulation-gui/gui-rename.c +++ b/src/manipulation-gui/gui-rename.c @@ -9,7 +9,7 @@ #include "../plugin-intl.h" static void check_entrytext (GtkEditable*, gpointer); -GtkWidget *entry_pattern, *label_preview; +static GtkWidget *entry_pattern, *label_preview; GtkWidget* bimp_rename_gui_new(rename_settings settings, GtkWidget* parent) { @@ -20,11 +20,9 @@ GtkWidget* bimp_rename_gui_new(rename_settings settings, GtkWidget* parent) entry_pattern = gtk_entry_new(); gtk_entry_set_max_length(GTK_ENTRY(entry_pattern), 50); - gtk_widget_set_size_request (entry_pattern, ENTRY_W, ENTRY_H); gtk_entry_set_text(GTK_ENTRY(entry_pattern), settings->pattern); frame_help = gtk_frame_new(_("Keywords")); - gtk_widget_set_size_request (frame_help, FRAME_HELP_W, FRAME_HELP_H); label_help = gtk_label_new(g_strconcat( RENAME_KEY_ORIG, " = ", _("Original filename (without extension)"), "\n", @@ -33,7 +31,6 @@ GtkWidget* bimp_rename_gui_new(rename_settings settings, GtkWidget* parent) gtk_container_add(GTK_CONTAINER(frame_help), label_help); label_preview = gtk_label_new(""); - gtk_widget_set_size_request (label_preview, PREVIEW_W, PREVIEW_H); gtk_box_pack_start(GTK_BOX(gui), entry_pattern, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(gui), frame_help, FALSE, FALSE, 0); diff --git a/src/manipulation-gui/gui-rename.h b/src/manipulation-gui/gui-rename.h index 547b7f0..460ff59 100644 --- a/src/manipulation-gui/gui-rename.h +++ b/src/manipulation-gui/gui-rename.h @@ -4,18 +4,6 @@ #include #include "../bimp-manipulations.h" -#define RENAME_WINDOW_W 340 -#define RENAME_WINDOW_H 300 - -#define ENTRY_W RENAME_WINDOW_W - 80 -#define ENTRY_H 30 - -#define PREVIEW_W RENAME_WINDOW_W - 50 -#define PREVIEW_H 40 - -#define FRAME_HELP_W RENAME_WINDOW_W - 80 -#define FRAME_HELP_H RENAME_WINDOW_H - ENTRY_H - PREVIEW_H - 140 - GtkWidget* bimp_rename_gui_new(rename_settings, GtkWidget*); void bimp_rename_save(rename_settings); diff --git a/src/manipulation-gui/gui-resize.c b/src/manipulation-gui/gui-resize.c index f3b3608..8313431 100644 --- a/src/manipulation-gui/gui-resize.c +++ b/src/manipulation-gui/gui-resize.c @@ -5,286 +5,285 @@ #include "../bimp-manipulations.h" #include "../plugin-intl.h" -static void toggle_units_group(GtkToggleButton*, gpointer); +static void aspect_ratio_changed(GtkComboBox*, gpointer); +static void units_changed(GtkComboBox*, gpointer); static void toggle_resolution(GtkToggleButton*, gpointer); +static void update_dimensions(); -GtkWidget *vbox_px, *hbox_res; -GtkWidget *check_resolution; -GtkWidget *radio_size_percent, *radio_size_px, *radio_stretch_allow, *radio_stretch_aspect, *radio_stretch_padded; -GtkWidget *combo_manualsize, *combo_quality; -GtkWidget *chooser_paddingcolor; -GtkWidget *spin_width, *spin_height, *spin_resX, *spin_resY; -GtkWidget *label_unit; +static GtkWidget *table_res; +static GtkWidget *check_resolution; +static GtkWidget *combo_unitW, *combo_unitH, *combo_aspectratio, *combo_quality; +static GtkWidget *chooser_paddingcolor; +static GtkWidget *spin_width, *spin_height, *spin_resX, *spin_resY; -gdouble last_percent_w_value; -gdouble last_percent_h_value; -gint last_pixel_w_value; -gint last_pixel_h_value; - -gboolean previous_was_percent; +static resize_mode previous_resize_w, previous_resize_h; +static gdouble last_percent_w_value; +static gdouble last_percent_h_value; +static gint last_pixel_w_value; +static gint last_pixel_h_value; GtkWidget* bimp_resize_gui_new(resize_settings settings) { - GtkWidget *gui, *vbox_dimensions, *hbox_padding, *vbox_resolution, *hbox_values, *hbox_quality; - GtkWidget *align_manualsize, *align_values, *align_res; - GtkWidget *label_width, *label_height, *label_quality, *label_resX, *label_resY, *label_dpi; - + GtkWidget *gui, *table_dimensions, *hbox_aspectratio, *hbox_pad, *hbox_quality; + GtkWidget *align_res; + GtkWidget *hsep; + GtkWidget *label_width, *label_height, *label_aspectratio, *label_pad, *label_quality; + GtkWidget *label_resX, *label_resY, *label_dpi1, *label_dpi2; + + previous_resize_w = RESIZE_END; + previous_resize_h = RESIZE_END; last_percent_w_value = settings->new_w_pc; last_percent_h_value = settings->new_h_pc; last_pixel_w_value = settings->new_w_px; last_pixel_h_value = settings->new_h_px; - gui = gtk_hbox_new(FALSE, 10); - - // "change dimensions" side - vbox_dimensions = gtk_vbox_new(FALSE, 5); - - radio_size_percent = gtk_radio_button_new_with_label (NULL, _("Set to a percentage of the original")); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(radio_size_percent), (settings->resize_mode == RESIZE_PERCENT)); - radio_size_px = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (radio_size_percent), _("Set exact size in pixel")); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(radio_size_px), (settings->resize_mode != RESIZE_PERCENT)); + gui = gtk_vbox_new(FALSE, 10); - align_manualsize = gtk_alignment_new(0, 0, 0, 0); - gtk_alignment_set_padding(GTK_ALIGNMENT(align_manualsize), 0, 5, 20, 0); + // width/height - combo_manualsize = gtk_combo_box_new_text(); - gtk_combo_box_append_text(GTK_COMBO_BOX(combo_manualsize), _("For both dimensions")); - gtk_combo_box_append_text(GTK_COMBO_BOX(combo_manualsize), _("Width only")); - gtk_combo_box_append_text(GTK_COMBO_BOX(combo_manualsize), _("Height only")); + table_dimensions = gtk_table_new(2, 3, FALSE); + gtk_table_set_row_spacings(GTK_TABLE(table_dimensions), 5); + gtk_table_set_col_spacings(GTK_TABLE(table_dimensions), 5); - if (settings->resize_mode == RESIZE_PIXEL_WIDTH) gtk_combo_box_set_active(GTK_COMBO_BOX(combo_manualsize), 1); - else if (settings->resize_mode == RESIZE_PIXEL_HEIGHT) gtk_combo_box_set_active(GTK_COMBO_BOX(combo_manualsize), 2); - else gtk_combo_box_set_active(GTK_COMBO_BOX(combo_manualsize), 0); - - gtk_container_add(GTK_CONTAINER(align_manualsize), combo_manualsize); - - GtkWidget* separator1 = gtk_hseparator_new(); - - radio_stretch_allow = gtk_radio_button_new_with_label (NULL, _("Allow stretching")); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(radio_stretch_allow), (settings->stretch_mode == STRETCH_ALLOW)); - radio_stretch_aspect = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (radio_stretch_allow), _("Preserve aspect ratio")); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(radio_stretch_aspect), (settings->stretch_mode == STRETCH_ASPECT)); - radio_stretch_padded = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (radio_stretch_allow), _("Fill with padding")); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(radio_stretch_padded), (settings->stretch_mode == STRETCH_PADDED)); + label_width = gtk_label_new(g_strconcat(_("Width"), ":", NULL)); + gtk_misc_set_alignment(GTK_MISC(label_width), 0, .5); + spin_width = gtk_spin_button_new(NULL, 1, 0); + combo_unitW = gtk_combo_box_new_text(); + gtk_combo_box_append_text(GTK_COMBO_BOX(combo_unitW), _("%")); + gtk_combo_box_append_text(GTK_COMBO_BOX(combo_unitW), _("px")); + gtk_combo_box_append_text(GTK_COMBO_BOX(combo_unitW), _("Disable")); + gtk_combo_box_set_active(GTK_COMBO_BOX(combo_unitW), settings->resize_mode_width); + label_height = gtk_label_new(g_strconcat(_("Height"), ":", NULL)); + gtk_misc_set_alignment(GTK_MISC(label_height), 0, .5); + spin_height = gtk_spin_button_new(NULL, 1, 0); + combo_unitH = gtk_combo_box_new_text(); + gtk_combo_box_append_text(GTK_COMBO_BOX(combo_unitH), _("%")); + gtk_combo_box_append_text(GTK_COMBO_BOX(combo_unitH), _("px")); + gtk_combo_box_append_text(GTK_COMBO_BOX(combo_unitH), _("Disable")); + gtk_combo_box_set_active(GTK_COMBO_BOX(combo_unitH), settings->resize_mode_height); + + // aspect ratio + + hbox_aspectratio = gtk_hbox_new(FALSE, 5); + label_aspectratio = gtk_label_new(g_strconcat(_("Aspect ratio"), ":", NULL)); + combo_aspectratio = gtk_combo_box_text_new(); + gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combo_aspectratio), _("Stretch")); + gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combo_aspectratio), _("Preserve")); + gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combo_aspectratio), _("Pad")); + gtk_combo_box_set_active(GTK_COMBO_BOX(combo_aspectratio), settings->stretch_mode); + + // padding color + + hbox_pad = gtk_hbox_new(FALSE, 5); + label_pad = gtk_label_new(g_strconcat(_("Padding color"), ":", NULL)); chooser_paddingcolor = gtk_color_button_new_with_color(&(settings->padding_color)); gtk_color_button_set_use_alpha(GTK_COLOR_BUTTON(chooser_paddingcolor), TRUE); gtk_color_button_set_alpha(GTK_COLOR_BUTTON(chooser_paddingcolor), settings->padding_color_alpha); + gtk_widget_set_sensitive(GTK_WIDGET(chooser_paddingcolor), settings->stretch_mode == STRETCH_PADDED); - hbox_padding = gtk_hbox_new(FALSE, 5); - - GtkWidget* separator2 = gtk_hseparator_new(); - - align_values = gtk_alignment_new(0.5, 0, 0, 0); - gtk_alignment_set_padding(GTK_ALIGNMENT(align_values), 5, 5, 0, 0); - hbox_values = gtk_hbox_new(FALSE, 5); - label_width = gtk_label_new(g_strconcat(_("Width"), ":", NULL)); - spin_width = gtk_spin_button_new(NULL, 1, 0); - gtk_widget_set_size_request (spin_width, SPIN_SIZE_W, SPIN_SIZE_H); - label_height = gtk_label_new(g_strconcat(_("Height"), ":", NULL)); - spin_height = gtk_spin_button_new(NULL, 1, 0); - gtk_widget_set_size_request (spin_height, SPIN_SIZE_W, SPIN_SIZE_H); - label_unit = gtk_label_new(""); - gtk_widget_set_size_request (label_unit, 25, 25); + // interpolation hbox_quality = gtk_hbox_new(FALSE, 5); - label_quality = gtk_label_new(_("Interpolation quality")); + label_quality = gtk_label_new(g_strconcat(_("Interpolation"), ":", NULL)); combo_quality = gimp_enum_combo_box_new((GType)GIMP_TYPE_INTERPOLATION_TYPE); gimp_int_combo_box_set_active((GimpIntComboBox*)combo_quality, settings->interpolation); - GtkWidget* separator3 = gtk_vseparator_new(); + // resolution + + hsep = gtk_hseparator_new(); - // "change resolution" side - vbox_resolution = gtk_vbox_new(FALSE, 5); + table_res = gtk_table_new(2, 3, FALSE); + gtk_table_set_row_spacings(GTK_TABLE(table_res), 5); + gtk_table_set_col_spacings(GTK_TABLE(table_res), 5); check_resolution = gtk_check_button_new_with_label(_("Change resolution")); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_resolution), settings->change_res); - align_res = gtk_alignment_new(0.5, 0, 0, 0); - gtk_alignment_set_padding(GTK_ALIGNMENT(align_res), 5, 5, 0, 0); - hbox_res = gtk_hbox_new(FALSE, 5); + align_res = gtk_alignment_new(0, 0.5, 1, 0); + gtk_alignment_set_padding(GTK_ALIGNMENT(align_res), 0, 0, 10, 0); label_resX = gtk_label_new(g_strconcat(_("X axis"), ":", NULL)); + gtk_misc_set_alignment(GTK_MISC(label_resX), 0, .5); spin_resX = gtk_spin_button_new(NULL, 1, 0); - gtk_widget_set_size_request (spin_resX, SPIN_SIZE_W, SPIN_SIZE_H); - gtk_spin_button_configure (GTK_SPIN_BUTTON(spin_resX), GTK_ADJUSTMENT(gtk_adjustment_new (settings->new_res_x, 0.005, 65536.000, 1.000, 1, 0)), 0, 3); + gtk_spin_button_configure(GTK_SPIN_BUTTON(spin_resX), GTK_ADJUSTMENT(gtk_adjustment_new (settings->new_res_x, 0.005, 65536.000, 1.000, 1, 0)), 0, 3); label_resY = gtk_label_new(g_strconcat(_("Y axis"), ":", NULL)); + gtk_misc_set_alignment(GTK_MISC(label_resY), 0, .5); spin_resY = gtk_spin_button_new(NULL, 1, 0); - gtk_widget_set_size_request (spin_resY, SPIN_SIZE_W, SPIN_SIZE_H); - gtk_spin_button_configure (GTK_SPIN_BUTTON(spin_resY), GTK_ADJUSTMENT(gtk_adjustment_new (settings->new_res_y, 0.005, 65536.000, 1.000, 1, 0)), 0, 3); - label_dpi = gtk_label_new("dpi"); + gtk_spin_button_configure(GTK_SPIN_BUTTON(spin_resY), GTK_ADJUSTMENT(gtk_adjustment_new (settings->new_res_y, 0.005, 65536.000, 1.000, 1, 0)), 0, 3); + label_dpi1 = gtk_label_new("dpi"); + gtk_misc_set_alignment(GTK_MISC(label_dpi1), 0, .5); + label_dpi2 = gtk_label_new("dpi"); + gtk_misc_set_alignment(GTK_MISC(label_dpi2), 0, .5); // pack everything - gtk_box_pack_start(GTK_BOX(vbox_dimensions), radio_size_percent, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_dimensions), radio_size_px, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_dimensions), align_manualsize, FALSE, FALSE, 0); + gtk_table_attach(GTK_TABLE(table_dimensions), label_width, 0, 1, 0, 1, GTK_FILL, 0, 0, 0); + gtk_table_attach(GTK_TABLE(table_dimensions), spin_width, 1, 2, 0, 1, GTK_FILL | GTK_EXPAND, 0, 0, 0); + gtk_table_attach(GTK_TABLE(table_dimensions), combo_unitW, 2, 3, 0, 1, GTK_FILL, 0, 0, 0); - gtk_box_pack_start(GTK_BOX(vbox_dimensions), separator1, FALSE, FALSE, 0); + gtk_table_attach(GTK_TABLE(table_dimensions), label_height, 0, 1, 1, 2, GTK_FILL, 0, 0, 0); + gtk_table_attach(GTK_TABLE(table_dimensions), spin_height, 1, 2, 1, 2, GTK_FILL | GTK_EXPAND, 0, 0, 0); + gtk_table_attach(GTK_TABLE(table_dimensions), combo_unitH, 2, 3, 1, 2, GTK_FILL, 0, 0, 0); - gtk_box_pack_start(GTK_BOX(vbox_dimensions), radio_stretch_allow, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_dimensions), radio_stretch_aspect, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_padding), radio_stretch_padded, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_padding), chooser_paddingcolor, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_dimensions), hbox_padding, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(gui), table_dimensions, TRUE, TRUE, 0); - gtk_box_pack_start(GTK_BOX(vbox_dimensions), separator2, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_aspectratio), label_aspectratio, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_aspectratio), combo_aspectratio, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(gui), hbox_aspectratio, TRUE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_values), label_width, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_values), spin_width, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_values), label_height, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_values), spin_height, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_values), label_unit, FALSE, FALSE, 0); - gtk_container_add(GTK_CONTAINER(align_values), hbox_values); + gtk_box_pack_start(GTK_BOX(hbox_pad), label_pad, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_pad), chooser_paddingcolor, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(gui), hbox_pad, TRUE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox_quality), label_quality, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_quality), combo_quality, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_quality), combo_quality, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(gui), hbox_quality, TRUE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_dimensions), align_values, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_dimensions), hbox_quality, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(gui), hsep, TRUE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(gui), check_resolution, TRUE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_resolution), check_resolution, FALSE, FALSE, 0); + gtk_table_attach(GTK_TABLE(table_res), label_resX, 0, 1, 0, 1, GTK_FILL, 0, 0, 0); + gtk_table_attach(GTK_TABLE(table_res), spin_resX, 1, 2, 0, 1, GTK_FILL | GTK_EXPAND, 0, 0, 0); + gtk_table_attach(GTK_TABLE(table_res), label_dpi1, 2, 3, 0, 1, GTK_FILL, 0, 0, 0); - gtk_box_pack_start(GTK_BOX(hbox_res), label_resX, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_res), spin_resX, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_res), label_resY, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_res), spin_resY, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_res), label_dpi, FALSE, FALSE, 0); - gtk_container_add(GTK_CONTAINER(align_res), hbox_res); - gtk_box_pack_start(GTK_BOX(vbox_resolution), align_res, FALSE, FALSE, 0); + gtk_table_attach(GTK_TABLE(table_res), label_resY, 0, 1, 1, 2, GTK_FILL, 0, 0, 0); + gtk_table_attach(GTK_TABLE(table_res), spin_resY, 1, 2, 1, 2, GTK_FILL | GTK_EXPAND, 0, 0, 0); + gtk_table_attach(GTK_TABLE(table_res), label_dpi2, 2, 3, 1, 2, GTK_FILL, 0, 0, 0); - gtk_box_pack_start(GTK_BOX(gui), vbox_dimensions, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(gui), separator3, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(gui), vbox_resolution, FALSE, FALSE, 0); + gtk_container_add(GTK_CONTAINER(align_res), table_res); + gtk_box_pack_start(GTK_BOX(gui), align_res, TRUE, FALSE, 0); - - previous_was_percent = FALSE; - toggle_units_group(NULL, NULL); + update_dimensions(); toggle_resolution(NULL, NULL); - g_signal_connect(G_OBJECT(radio_size_percent), "toggled", G_CALLBACK(toggle_units_group), NULL); - g_signal_connect(G_OBJECT(radio_size_px), "toggled", G_CALLBACK(toggle_units_group), NULL); - g_signal_connect(G_OBJECT(combo_manualsize), "changed", G_CALLBACK(toggle_units_group), NULL); - g_signal_connect(G_OBJECT(radio_stretch_allow), "toggled", G_CALLBACK(toggle_units_group), NULL); - g_signal_connect(G_OBJECT(radio_stretch_aspect), "toggled", G_CALLBACK(toggle_units_group), NULL); - g_signal_connect(G_OBJECT(radio_stretch_padded), "toggled", G_CALLBACK(toggle_units_group), NULL); + g_signal_connect(G_OBJECT(combo_unitW), "changed", G_CALLBACK(units_changed), NULL); + g_signal_connect(G_OBJECT(combo_unitH), "changed", G_CALLBACK(units_changed), NULL); + g_signal_connect(G_OBJECT(combo_aspectratio), "changed", G_CALLBACK(aspect_ratio_changed), NULL); g_signal_connect(G_OBJECT(check_resolution), "toggled", G_CALLBACK(toggle_resolution), NULL); return gui; } +void aspect_ratio_changed(GtkComboBox *combo, gpointer user_data) { + update_dimensions(); + + gtk_widget_set_sensitive(GTK_WIDGET(chooser_paddingcolor), gtk_combo_box_get_active(GTK_COMBO_BOX(combo_aspectratio)) == STRETCH_PADDED); +} + +void units_changed(GtkComboBox *combo, gpointer user_data) { + update_dimensions(); +} -void toggle_units_group(GtkToggleButton *togglebutton, gpointer user_data) -{ - gboolean percent_active = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radio_size_percent)); - gboolean aspect_active = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radio_stretch_aspect)); - - int combo_manualsize_sel = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_manualsize)); - gboolean both_active = (combo_manualsize_sel == 0); - gboolean width_active = (combo_manualsize_sel == 1); - gboolean height_active = (combo_manualsize_sel == 2); - - if (percent_active) { - // store last pixel values - if (gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_width)) > 0 && gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_height)) > 0) { - last_pixel_w_value = gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_width)); - last_pixel_h_value = gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_height)); +void update_dimensions() { + resize_mode resize_w = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_unitW)); + resize_mode resize_h = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_unitH)); + stretch_mode aspect_ratio = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_aspectratio)); + + // store current values + if (resize_w != previous_resize_w) { + if (previous_resize_w == RESIZE_PERCENT) { + last_percent_w_value = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin_width)); + } + else if (previous_resize_w == RESIZE_PIXEL) { + last_pixel_w_value = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin_width)); } - gtk_widget_set_sensitive(GTK_WIDGET(combo_manualsize), FALSE); - gtk_label_set_text(GTK_LABEL(label_unit), "%"); - - // set adjustments - gtk_spin_button_configure (GTK_SPIN_BUTTON(spin_width), GTK_ADJUSTMENT(gtk_adjustment_new (last_percent_w_value, 1, 40960, 0.01, 1, 0)), 0, 2); - if (aspect_active) { - gtk_spin_button_configure (GTK_SPIN_BUTTON(spin_height), gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(spin_width)), 0, 2); + // configure width spinbox value and range + if (resize_w == RESIZE_PERCENT) { + gtk_spin_button_configure(GTK_SPIN_BUTTON(spin_width), GTK_ADJUSTMENT(gtk_adjustment_new(last_percent_w_value, 1, 40960, 0.01, 1, 0)), 0, 2); + } + else if (resize_w == RESIZE_PIXEL) { + gtk_spin_button_configure(GTK_SPIN_BUTTON(spin_width), GTK_ADJUSTMENT(gtk_adjustment_new(last_pixel_w_value, 1, 262144, 1, 10, 0)), 0, 0); } else { - gtk_spin_button_configure (GTK_SPIN_BUTTON(spin_height), GTK_ADJUSTMENT(gtk_adjustment_new (last_percent_h_value, 1, 40960, 0.01, 1, 0)), 0, 2); + gtk_spin_button_configure(GTK_SPIN_BUTTON(spin_width), GTK_ADJUSTMENT(gtk_adjustment_new(0, 0, 0, 0, 0, 0)), 0, 0); } - - previous_was_percent = TRUE; } - else { - if (gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_width)) > 0 && gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_height)) > 0) { - if (previous_was_percent) { - last_percent_w_value = gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_width)); - last_percent_h_value = gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_height)); - } - else { - last_pixel_w_value = gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_width)); - last_pixel_h_value = gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_height)); - } + if (resize_h != previous_resize_h) { + if (previous_resize_h == RESIZE_PERCENT) { + last_percent_h_value = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin_height)); + } + else if (previous_resize_h == RESIZE_PIXEL) { + last_pixel_h_value = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin_height)); } - gtk_widget_set_sensitive(GTK_WIDGET(combo_manualsize), TRUE); - gtk_label_set_text(GTK_LABEL(label_unit), "px"); - - gtk_spin_button_configure (GTK_SPIN_BUTTON(spin_width), GTK_ADJUSTMENT(gtk_adjustment_new (last_pixel_w_value, 1, 262144, 1, 10, 0)), 0, 0); - gtk_spin_button_configure (GTK_SPIN_BUTTON(spin_height), GTK_ADJUSTMENT(gtk_adjustment_new (last_pixel_h_value, 1, 262144, 1, 10, 0)), 0, 0); - - previous_was_percent = FALSE; + // configure height spinbox value and range + if (resize_h == RESIZE_PERCENT) { + gtk_spin_button_configure(GTK_SPIN_BUTTON(spin_height), GTK_ADJUSTMENT(gtk_adjustment_new(last_percent_h_value, 1, 40960, 0.01, 1, 0)), 0, 2); + } + else if (resize_h == RESIZE_PIXEL) { + gtk_spin_button_configure(GTK_SPIN_BUTTON(spin_height), GTK_ADJUSTMENT(gtk_adjustment_new(last_pixel_h_value, 1, 262144, 1, 10, 0)), 0, 0); + } + else { + gtk_spin_button_configure(GTK_SPIN_BUTTON(spin_height), GTK_ADJUSTMENT(gtk_adjustment_new(0, 0, 0, 0, 0, 0)), 0, 0); + } } - // adjustments for resolution spinners - if (aspect_active) { - gtk_spin_button_configure (GTK_SPIN_BUTTON(spin_resY), gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(spin_resX)), 0, 3); + // disable spinner if unit is disabled + gtk_widget_set_sensitive(GTK_WIDGET(spin_width), resize_w != RESIZE_DISABLE); + gtk_widget_set_sensitive(GTK_WIDGET(spin_height), resize_h != RESIZE_DISABLE); + + // force x and y axis resolution to be the same if aspect ratio is preserve + if (aspect_ratio == STRETCH_ASPECT) { + gtk_spin_button_configure(GTK_SPIN_BUTTON(spin_resY), gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(spin_resX)), 0, 3); } else { - gtk_spin_button_configure (GTK_SPIN_BUTTON(spin_resY), GTK_ADJUSTMENT(gtk_adjustment_new (gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_resY)), 0.005, 65536.000, 1.000, 1, 0)), 0, 3); + gtk_spin_button_configure(GTK_SPIN_BUTTON(spin_resY), GTK_ADJUSTMENT(gtk_adjustment_new(gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin_resY)), 0.005, 65536.000, 1.000, 1, 0)), 0, 3); + } + + // keep width and height values the same if both are expressed in percent + if(aspect_ratio == STRETCH_ASPECT && resize_w == RESIZE_PERCENT && resize_h == RESIZE_PERCENT) { + gtk_spin_button_configure(GTK_SPIN_BUTTON(spin_height), gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(spin_width)), 0, 2); } - gtk_widget_set_sensitive(GTK_WIDGET(spin_width), (percent_active || both_active || width_active)); - gtk_widget_set_sensitive(GTK_WIDGET(spin_height), (percent_active || both_active || height_active)); - gtk_widget_set_sensitive(GTK_WIDGET(chooser_paddingcolor), gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radio_stretch_padded))); + // set resize modes + previous_resize_w = resize_w; + previous_resize_h = resize_h; } void toggle_resolution(GtkToggleButton *togglebutton, gpointer user_data) { - gtk_widget_set_sensitive(GTK_WIDGET(hbox_res), gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(check_resolution))); + gtk_widget_set_sensitive(GTK_WIDGET(table_res), gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(check_resolution))); } void bimp_resize_save(resize_settings orig_settings) -{ - if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radio_size_percent))) { - orig_settings->resize_mode = RESIZE_PERCENT; +{ + orig_settings->resize_mode_width = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_unitW)); + orig_settings->resize_mode_height = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_unitH)); + + if (orig_settings->resize_mode_width == RESIZE_PERCENT) { orig_settings->new_w_pc = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin_width)); - orig_settings->new_h_pc = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin_height)); orig_settings->new_w_px = last_pixel_w_value; - orig_settings->new_h_px = last_pixel_h_value; + } + else if (orig_settings->resize_mode_width == RESIZE_PIXEL) { + orig_settings->new_w_pc = last_percent_w_value; + orig_settings->new_w_px = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin_width)); } else { - int combo_manualsize_sel = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_manualsize)); - if (combo_manualsize_sel == 1) orig_settings->resize_mode = RESIZE_PIXEL_WIDTH; - else if (combo_manualsize_sel == 2) orig_settings->resize_mode = RESIZE_PIXEL_HEIGHT; - else orig_settings->resize_mode = RESIZE_PIXEL_BOTH; - orig_settings->new_w_pc = last_percent_w_value; + orig_settings->new_w_px = last_pixel_w_value; + } + + if (orig_settings->resize_mode_height == RESIZE_PERCENT) { + orig_settings->new_h_pc = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin_height)); + orig_settings->new_h_px = last_pixel_h_value; + } + else if (orig_settings->resize_mode_height == RESIZE_PIXEL) { orig_settings->new_h_pc = last_percent_h_value; - orig_settings->new_w_px = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin_width)); orig_settings->new_h_px = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin_height)); } + else { + orig_settings->new_h_pc = last_percent_h_value; + orig_settings->new_h_px = last_pixel_h_value; + } - if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radio_stretch_aspect))) orig_settings->stretch_mode = STRETCH_ASPECT; - else if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radio_stretch_padded))) orig_settings->stretch_mode = STRETCH_PADDED; - else orig_settings->stretch_mode = STRETCH_ALLOW; + orig_settings->stretch_mode = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_aspectratio)); gtk_color_button_get_color(GTK_COLOR_BUTTON(chooser_paddingcolor), &(orig_settings->padding_color)); orig_settings->padding_color_alpha = gtk_color_button_get_alpha(GTK_COLOR_BUTTON(chooser_paddingcolor)); - int interpolation = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_quality)); - if (interpolation == 1) { - orig_settings->interpolation = GIMP_INTERPOLATION_LINEAR; - } - else if (interpolation == 2) { - orig_settings->interpolation = GIMP_INTERPOLATION_CUBIC; - } - else if (interpolation == 3) { - orig_settings->interpolation = GIMP_INTERPOLATION_LANCZOS; - } - else { - orig_settings->interpolation = GIMP_INTERPOLATION_NONE; - } + orig_settings->interpolation = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_quality)); orig_settings->change_res = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(check_resolution)); orig_settings->new_res_x = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin_resX)); diff --git a/src/manipulation-gui/gui-resize.h b/src/manipulation-gui/gui-resize.h index b3f2622..8f0575d 100644 --- a/src/manipulation-gui/gui-resize.h +++ b/src/manipulation-gui/gui-resize.h @@ -4,9 +4,6 @@ #include #include "../bimp-manipulations.h" -#define SPIN_SIZE_W 70 -#define SPIN_SIZE_H 25 - GtkWidget* bimp_resize_gui_new(resize_settings); void bimp_resize_save(resize_settings); diff --git a/src/manipulation-gui/gui-sharpblur.c b/src/manipulation-gui/gui-sharpblur.c index a173078..0a257e8 100644 --- a/src/manipulation-gui/gui-sharpblur.c +++ b/src/manipulation-gui/gui-sharpblur.c @@ -4,7 +4,7 @@ #include "../bimp-manipulations.h" #include "../plugin-intl.h" -GtkWidget *scale_sharpblur; +static GtkWidget *scale_sharpblur; GtkWidget* bimp_sharpblur_gui_new(sharpblur_settings settings) { @@ -15,17 +15,15 @@ GtkWidget* bimp_sharpblur_gui_new(sharpblur_settings settings) hbox_control = gtk_hbox_new(FALSE, 5); label_sharp = gtk_label_new(_("More sharpen")); - gtk_widget_set_size_request (label_sharp, LABEL_SCALE_W, LABEL_SCALE_H); gtk_misc_set_alignment(GTK_MISC(label_sharp), 0.5, 0.7); scale_sharpblur = gtk_hscale_new_with_range(-100, 100, 1); gtk_range_set_value(GTK_RANGE(scale_sharpblur), settings->amount); - gtk_widget_set_size_request (scale_sharpblur, SCALE_AMOUNT_W, SCALE_AMOUNT_H); + gtk_widget_set_size_request (scale_sharpblur, SCALE_AMOUNT_W, -1); label_blur = gtk_label_new(_("More blurred")); - gtk_widget_set_size_request (label_blur, LABEL_SCALE_W, LABEL_SCALE_H); gtk_misc_set_alignment(GTK_MISC(label_blur), 0.5, 0.7); gtk_box_pack_start(GTK_BOX(hbox_control), label_sharp, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_control), scale_sharpblur, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_control), scale_sharpblur, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(hbox_control), label_blur, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(gui), hbox_control, FALSE, FALSE, 0); diff --git a/src/manipulation-gui/gui-sharpblur.h b/src/manipulation-gui/gui-sharpblur.h index 634a62d..baf9b83 100644 --- a/src/manipulation-gui/gui-sharpblur.h +++ b/src/manipulation-gui/gui-sharpblur.h @@ -4,13 +4,7 @@ #include #include "../bimp-manipulations.h" -#define SHARPBLUR_WINDOW_W 400 - -#define LABEL_SCALE_W 110 -#define LABEL_SCALE_H 60 - -#define SCALE_AMOUNT_W SHARPBLUR_WINDOW_W - (LABEL_SCALE_W*2) - 40 -#define SCALE_AMOUNT_H LABEL_SCALE_H +#define SCALE_AMOUNT_W 220 GtkWidget* bimp_sharpblur_gui_new(sharpblur_settings); void bimp_sharpblur_save(sharpblur_settings); diff --git a/src/manipulation-gui/gui-userdef.c b/src/manipulation-gui/gui-userdef.c index 38f8314..e8198ca 100644 --- a/src/manipulation-gui/gui-userdef.c +++ b/src/manipulation-gui/gui-userdef.c @@ -2,7 +2,6 @@ #include #include #include -#include #include "gui-userdef.h" #include "../bimp.h" #include "../bimp-gui.h" @@ -17,14 +16,14 @@ static gboolean select_procedure (GtkTreeSelection*, GtkTreeModel*, GtkTreePath* static void update_selected_procedure(gchar*); static void update_procedure_box(userdef_settings); -GtkWidget *treeview_procedures; -GtkWidget *scroll_procparam, *vbox_procparam; -GtkWidget *parent_dialog; +static GtkWidget *treeview_procedures; +static GtkWidget *scroll_procparam, *vbox_procparam; +static GtkWidget *parent_dialog; -userdef_settings temp_settings; -GtkWidget **param_widget; /* array of showable widgets for customizing the selected procedure */ +static userdef_settings temp_settings; +static GtkWidget **param_widget; /* array of showable widgets for customizing the selected procedure */ -GtkTreeSelection *treesel_proc; +static GtkTreeSelection *treesel_proc; enum { @@ -34,7 +33,7 @@ enum GtkWidget* bimp_userdef_gui_new(userdef_settings settings, GtkWidget *parent) { - GtkWidget *gui, *hbox_chooser, *vbox_list, *hbox_search; + GtkWidget *gui, *table_chooser; GtkWidget *scroll_procedures; GtkWidget *label_help, *label_search; GtkWidget *entry_search; @@ -44,23 +43,21 @@ GtkWidget* bimp_userdef_gui_new(userdef_settings settings, GtkWidget *parent) gui = gtk_vbox_new(FALSE, 5); label_help = gtk_label_new(NULL); - gtk_widget_set_size_request (label_help, LABEL_HELP_W, LABEL_HELP_H); gtk_label_set_markup (GTK_LABEL(label_help), _("Choose a supported GIMP procedure from the list on the left\nand define its parameters on the right.") ); gtk_label_set_justify(GTK_LABEL(label_help), GTK_JUSTIFY_CENTER); - hbox_chooser = gtk_hbox_new(FALSE, 5); - vbox_list = gtk_vbox_new(FALSE, 5); + table_chooser = gtk_table_new(2, 3, FALSE); + gtk_table_set_row_spacings(GTK_TABLE(table_chooser), 5); + gtk_table_set_col_spacings(GTK_TABLE(table_chooser), 5); scroll_procedures = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll_procedures), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_widget_set_size_request (scroll_procedures, PROCLIST_W, PROCLIST_H); - hbox_search = gtk_hbox_new(FALSE, 5); - label_search = gtk_label_new(g_strconcat(_("Search"), ": ", NULL)); + label_search = gtk_label_new(g_strconcat(_("Search"), ":", NULL)); entry_search = gtk_entry_new(); - gtk_widget_set_size_request (entry_search, SEARCH_W, SEARCH_H); treeview_procedures = gtk_tree_view_new(); gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(treeview_procedures), FALSE); @@ -71,20 +68,17 @@ GtkWidget* bimp_userdef_gui_new(userdef_settings settings, GtkWidget *parent) scroll_procparam = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll_procparam), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); - gtk_widget_set_size_request (scroll_procparam, PROCPARAM_W, PROCPARAM_H); - gtk_box_pack_start(GTK_BOX(hbox_search), label_search, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_search), entry_search, FALSE, FALSE, 0); + gtk_table_attach(GTK_TABLE(table_chooser), label_search, 0, 1, 0, 1, GTK_FILL, GTK_FILL, 0, 0); + gtk_table_attach(GTK_TABLE(table_chooser), entry_search, 1, 2, 0, 1, GTK_FILL, GTK_FILL, 0, 0); - gtk_box_pack_start(GTK_BOX(vbox_list), hbox_search, FALSE, FALSE, 0); - gtk_container_add (GTK_CONTAINER(scroll_procedures), treeview_procedures); - gtk_box_pack_start(GTK_BOX(vbox_list), scroll_procedures, FALSE, FALSE, 0); + gtk_table_attach(GTK_TABLE(table_chooser), scroll_procparam, 2, 3, 0, 2, GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND, 0, 0); - gtk_box_pack_start(GTK_BOX(hbox_chooser), vbox_list, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_chooser), scroll_procparam, FALSE, FALSE, 0); + gtk_container_add(GTK_CONTAINER(scroll_procedures), treeview_procedures); + gtk_table_attach(GTK_TABLE(table_chooser), scroll_procedures, 0, 2, 1, 2, GTK_FILL, GTK_FILL | GTK_EXPAND, 0, 0); gtk_box_pack_start(GTK_BOX(gui), label_help, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(gui), hbox_chooser, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(gui), table_chooser, TRUE, TRUE, 0); if (settings->procedure != NULL) { /* a procedure has been previously selected: copy user settings to temp_settings */ temp_settings = (userdef_settings)g_malloc(sizeof(struct manip_userdef_set)); @@ -107,6 +101,8 @@ GtkWidget* bimp_userdef_gui_new(userdef_settings settings, GtkWidget *parent) gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(treeview_procedures), path, NULL, TRUE, 0.5, 0.0); } + gtk_window_set_default_size(GTK_WINDOW(parent), PROCLIST_W * 3, -1); + update_procedure_box(settings); g_signal_connect(G_OBJECT(entry_search), "changed", G_CALLBACK(search_procedure), NULL); @@ -303,7 +299,6 @@ static void update_procedure_box(userdef_settings settings) GtkWidget *label_noproc; label_noproc = gtk_label_new(_("Can't save because\nno procedure has been selected")); - gtk_widget_set_size_request (label_noproc, PROCLIST_W, PROCLIST_H); gtk_label_set_justify(GTK_LABEL(label_noproc), GTK_JUSTIFY_CENTER); gtk_box_pack_start(GTK_BOX(vbox_procparam), label_noproc, FALSE, FALSE, 0); @@ -369,12 +364,9 @@ static void update_procedure_box(userdef_settings settings) const char *error; int erroffset; - pcre* reg_comp_combobox = pcre_compile("([A-Z\\d-]+)\\s\\((\\d+)\\)", PCRE_DOTALL, &error, &erroffset, 0); + GRegex *reg_comp_combobox = g_regex_new ("([A-Za-z\\d-_]+)\\s\\((\\d+)\\)", 0, 0, NULL); // (0 = aaaa, 1 = bbbbb, ...) => \((?:\s?\d+\s?=\s?([\w\s]+),?)\) under construction.... - pcre* reg_comp_minmax = pcre_compile("(?:(-?[\\d,\\.]+)\\s([<|>]{1}=?)\\s)?([\\w|-]+)\\s([<|>]{1}=?)\\s(-?[\\d,\\.]+)", PCRE_DOTALL, &error, &erroffset, 0); - int ovector[186]; - unsigned int offset = 0; - unsigned int desclen = 0; + GRegex *reg_comp_minmax = g_regex_new ("(?:(-?[\\d,\\.]+)\\s([<|>]{1}=?)\\s)?([\\w|-]+)\\s([<|>]{1}=?)\\s(-?[\\d,\\.]+)", 0, 0, NULL); for (param_i = 0; param_i < num_params; param_i++) { param_info = pdb_proc_get_param_info(settings->procedure, param_i); @@ -391,23 +383,24 @@ static void update_procedure_box(userdef_settings settings) param_widget[param_i] = gtk_check_button_new(); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(param_widget[param_i]), (settings->params[param_i]).data.d_int32 == 1 ? TRUE : FALSE); } else { - offset = 0; - desclen = strlen(param_info.description); - int rc = pcre_exec(reg_comp_combobox, 0, param_info.description, desclen, offset, 0, ovector, 186); - if (rc >= 0) { + + GMatchInfo *match_info; + int rc = g_regex_match (reg_comp_combobox, param_info.description, 0, &match_info); + + if (rc == TRUE) { GtkTreeIter selected; GtkListStore* combo_store = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_INT); - do { + while (g_match_info_matches(match_info)) { GtkTreeIter iter; gtk_list_store_append (combo_store, &iter); const char* name; - pcre_get_substring(param_info.description, ovector, rc, 0, &name); + name = g_match_info_fetch(match_info, 1); int id = 0; const char* id_str; - pcre_get_substring(param_info.description, ovector, rc, 2, &id_str); + id_str = g_match_info_fetch(match_info, 2); if (strlen(id_str) > 0) id = atoi(id_str); gtk_list_store_set (combo_store, &iter, @@ -420,10 +413,10 @@ static void update_procedure_box(userdef_settings settings) selected = iter; } - offset = ovector[1]; + g_match_info_next (match_info, NULL); } - while (offset < desclen && (rc = pcre_exec(reg_comp_combobox, 0, param_info.description, desclen, offset, 0, ovector, 186)) >= 0); - + g_match_info_free (match_info); + param_widget[param_i] = gtk_combo_box_new_with_model(GTK_TREE_MODEL(combo_store)); g_object_unref(G_OBJECT(combo_store)); @@ -437,37 +430,33 @@ static void update_procedure_box(userdef_settings settings) else { param_widget[param_i] = gtk_spin_button_new (NULL, 1, 0); int min = G_MININT, max = G_MAXINT; - offset = 0; - desclen = strlen(param_info.description); - int i = 1, rc = pcre_exec(reg_comp_minmax, 0, param_info.description, desclen, offset, 0, ovector, 186); - if (rc >= 0) { + + GMatchInfo *match_info; + int rc = g_regex_match (reg_comp_minmax, param_info.description, 0, &match_info); + + if (rc == TRUE) { /* intercept regular expressions for forms like: * -127 <= brightness <= 127 * or * opacity > 0 * and so on... */ - do { - i = 1; - gchar* l_value = g_strdup_printf("%.*s", ovector[2*i+1] - ovector[2*i], param_info.description + ovector[2*i]); + while (g_match_info_matches(match_info)) { + gchar* l_value = g_match_info_fetch(match_info, 1); if (strlen(l_value) > 0) { min = atoi(l_value); } - i = 2; - gchar* l_symbol = g_strdup_printf("%.*s", ovector[2*i+1] - ovector[2*i], param_info.description + ovector[2*i]); + gchar* l_symbol = g_match_info_fetch(match_info, 2); if (strlen(l_symbol) > 0) { if (strcmp(l_symbol, "<") == 0) min++; } - i = 3; - gchar* name = g_strdup_printf("%.*s", ovector[2*i+1] - ovector[2*i], param_info.description + ovector[2*i]); - - i = 4; - gchar* r_symbol = g_strdup_printf("%.*s", ovector[2*i+1] - ovector[2*i], param_info.description + ovector[2*i]); - - i = 5; - gchar* r_value = g_strdup_printf("%.*s", ovector[2*i+1] - ovector[2*i], param_info.description + ovector[2*i]); + gchar* name = g_match_info_fetch(match_info, 3); + + gchar* r_symbol = g_match_info_fetch(match_info, 4); + + gchar* r_value = g_match_info_fetch(match_info, 5); if (r_symbol[0] == '>') { min = atoi(r_value); if (strcmp(r_symbol, ">=") != 0) min++; @@ -477,9 +466,9 @@ static void update_procedure_box(userdef_settings settings) if (strcmp(r_symbol, "<=") != 0) max--; } - offset = ovector[1]; + g_match_info_next (match_info, NULL); } - while (offset < desclen && (rc = pcre_exec(reg_comp_minmax, 0, param_info.description, desclen, offset, 0, ovector, 186)) >= 0); + g_match_info_free (match_info); } gtk_spin_button_configure (GTK_SPIN_BUTTON(param_widget[param_i]), GTK_ADJUSTMENT(gtk_adjustment_new ((settings->params[param_i]).data.d_int32, min, max, 1, 1, 0)), 0, 0); @@ -501,31 +490,27 @@ static void update_procedure_box(userdef_settings settings) case GIMP_PDB_FLOAT: param_widget[param_i] = gtk_spin_button_new (NULL, 1, 1); float min = -G_MAXFLOAT, max = G_MAXFLOAT; - offset = 0; - desclen = strlen(param_info.description); - int i = 1, rc = pcre_exec(reg_comp_minmax, 0, param_info.description, desclen, offset, 0, ovector, 186); - if (rc >= 0) { - do { - i = 1; - gchar* l_value = g_strdup_printf("%.*s", ovector[2*i+1] - ovector[2*i], param_info.description + ovector[2*i]); + + GMatchInfo *match_info; + int rc = g_regex_match (reg_comp_minmax, param_info.description, 0, &match_info); + + if (rc == TRUE) { + while (g_match_info_matches(match_info)) { + gchar* l_value = g_match_info_fetch(match_info, 1); if (strlen(l_value) > 0) { min = (float)atof(l_value); } - i = 2; - gchar* l_symbol = g_strdup_printf("%.*s", ovector[2*i+1] - ovector[2*i], param_info.description + ovector[2*i]); + gchar* l_symbol = g_match_info_fetch(match_info, 2); if (strlen(l_symbol) > 0) { if (strcmp(l_symbol, "<") == 0) min = min + 0.1; } - i = 3; - gchar* name = g_strdup_printf("%.*s", ovector[2*i+1] - ovector[2*i], param_info.description + ovector[2*i]); + gchar* name = g_match_info_fetch(match_info, 3); - i = 4; - gchar* r_symbol = g_strdup_printf("%.*s", ovector[2*i+1] - ovector[2*i], param_info.description + ovector[2*i]); + gchar* r_symbol = g_match_info_fetch(match_info, 4); - i = 5; - gchar* r_value = g_strdup_printf("%.*s", ovector[2*i+1] - ovector[2*i], param_info.description + ovector[2*i]); + gchar* r_value = g_match_info_fetch(match_info, 5); if (r_symbol[0] == '>') { min = (float)atof(r_value); if (strcmp(r_symbol, ">=") != 0) min = min + 0.1; @@ -535,9 +520,9 @@ static void update_procedure_box(userdef_settings settings) if (strcmp(r_symbol, "<=") != 0) max = max - 0.1; } - offset = ovector[1]; + g_match_info_next (match_info, NULL); } - while (offset < desclen && (rc = pcre_exec(reg_comp_minmax, 0, param_info.description, desclen, offset, 0, ovector, 186)) >= 0); + g_match_info_free (match_info); } else if ( strcmp(param_info.name, "opacity") == 0 || @@ -582,7 +567,7 @@ static void update_procedure_box(userdef_settings settings) } if (editable) { - gtk_widget_set_size_request (param_widget[param_i], PARAM_WIDGET_W, PARAM_WIDGET_H); + //gtk_widget_set_size_request (param_widget[param_i], PARAM_WIDGET_W, PARAM_WIDGET_H); label_widget_desc = gtk_label_new(param_info.description); gtk_widget_set_tooltip_text (label_widget_desc, param_info.name); gtk_misc_set_alignment(GTK_MISC(label_widget_desc), 0, 0.5); @@ -601,7 +586,8 @@ static void update_procedure_box(userdef_settings settings) if (show_count == 0) { GtkWidget* label_noparams; label_noparams = gtk_label_new(_("This procedure takes no editable params")); - gtk_widget_set_size_request (label_noparams, PROCPARAM_W, 50); + gtk_label_set_justify(GTK_LABEL(label_noparams), GTK_JUSTIFY_LEFT); + //gtk_widget_set_size_request (label_noparams, PROCPARAM_W, 50); gtk_box_pack_start(GTK_BOX(vbox_procparam), label_noparams, FALSE, FALSE, 0); } diff --git a/src/manipulation-gui/gui-userdef.h b/src/manipulation-gui/gui-userdef.h index 11fd121..45b98ec 100644 --- a/src/manipulation-gui/gui-userdef.h +++ b/src/manipulation-gui/gui-userdef.h @@ -4,23 +4,9 @@ #include #include "../bimp-manipulations.h" -#define USERDEF_WINDOW_W 550 - -#define SEARCH_W 120 -#define SEARCH_H 25 - -#define LABEL_HELP_W USERDEF_WINDOW_W - 20 -#define LABEL_HELP_H 50 - #define PROCLIST_W 210 #define PROCLIST_H 205 -#define PROCPARAM_W USERDEF_WINDOW_W - PROCLIST_W - 30 -#define PROCPARAM_H PROCLIST_H + SEARCH_H - -#define PARAM_WIDGET_W 90 -#define PARAM_WIDGET_H 25 - GtkWidget* bimp_userdef_gui_new(userdef_settings, GtkWidget*); void bimp_userdef_save(userdef_settings); diff --git a/src/manipulation-gui/gui-watermark.c b/src/manipulation-gui/gui-watermark.c index dde5b37..65f23b2 100644 --- a/src/manipulation-gui/gui-watermark.c +++ b/src/manipulation-gui/gui-watermark.c @@ -4,27 +4,27 @@ #include "gui-watermark.h" #include "../bimp-manipulations.h" #include "../bimp-manipulations-gui.h" -#include "../bimp-icons.h" +#include "../bimp-utils.h" #include "../plugin-intl.h" static void toggle_group(GtkToggleButton*, gpointer); static void toggle_image_size(GtkToggleButton*, gpointer); -static char* watermark_pos_get_string(watermark_position); +static const char* watermark_pos_get_string(watermark_position); +static const char* watermark_pos_get_abbreviation(watermark_position); +static void file_filters_add_patterns(GtkFileFilter*, GtkFileFilter*, ...); -GtkWidget *vbox_text, *vbox_image, *hbox_image_size; -GtkWidget *radio_text, *radio_image; -GtkWidget *entry_text; -GtkWidget *chooser_font, *chooser_color, *chooser_image; -GtkWidget *check_image_adaptsize, *spin_image_sizepercent, *spin_edge, *combo_image_sizemode; -GtkWidget *scale_opacity; -GtkWidget *button_tl, *button_tc, *button_tr, - *button_cl, *button_cc, *button_cr, - *button_bl, *button_bc, *button_br; +static GtkWidget *table_text, *vbox_image, *hbox_image_size; +static GtkWidget *radio_text, *radio_image; +static GtkWidget *entry_text; +static GtkWidget *chooser_font, *chooser_color, *chooser_image; +static GtkWidget *check_image_adaptsize, *spin_image_sizepercent, *spin_edge, *combo_image_sizemode; +static GtkWidget *scale_opacity; +static GtkWidget *position_buttons[9]; GtkWidget* bimp_watermark_gui_new(watermark_settings settings) { - GtkWidget *gui, *hbox_mode, *vbox_mode_text, *vbox_mode_image, *vbox_position_sx, *hbox_position; - GtkWidget *hbox_text_entry, *hbox_text_font, *hbox_text_color, *hbox_opacity, *hbox_edge; + GtkWidget *gui, *hbox_mode, *vbox_mode_text, *vbox_mode_image, *vbox_position; + GtkWidget *hbox_opacity, *hbox_edge; GtkWidget *frame_position, *table_position; GtkWidget *align_radio_text, *align_radio_image; GtkWidget *label_text, *label_font, *label_color, *label_opacity, *label_percent, *label_edge, *label_percentof, *label_px; @@ -40,32 +40,33 @@ GtkWidget* bimp_watermark_gui_new(watermark_settings settings) gtk_alignment_set_padding(GTK_ALIGNMENT(align_radio_text), 0, 5, 20, 0); radio_text = gtk_radio_button_new_with_label(NULL, _("Text watermark")); - vbox_text = gtk_vbox_new(FALSE, 5); - hbox_text_entry = gtk_hbox_new(FALSE, 5); + align_radio_text = gtk_alignment_new(0, 0, 1, 1); + gtk_alignment_set_padding(GTK_ALIGNMENT(align_radio_text), 0, 0, 20, 0); + table_text = gtk_table_new(3, 2, FALSE); + gtk_table_set_row_spacings(GTK_TABLE(table_text), 5); + gtk_table_set_col_spacings(GTK_TABLE(table_text), 5); + label_text = gtk_label_new(g_strconcat(_("Text"), ":", NULL)); - gtk_widget_set_size_request (label_text, LABEL_W, LABEL_H); + gtk_misc_set_alignment(GTK_MISC(label_text), 0, .5); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(radio_text), settings->mode); entry_text = gtk_entry_new(); gtk_entry_set_max_length(GTK_ENTRY(entry_text), 50); gtk_entry_set_text(GTK_ENTRY(entry_text), settings->text); - gtk_widget_set_size_request (entry_text, INPUT_W, INPUT_H); - hbox_text_font = gtk_hbox_new(FALSE, 5); label_font = gtk_label_new(g_strconcat(_("Font"), ":", NULL)); - gtk_widget_set_size_request (label_font, LABEL_W, LABEL_H); + gtk_misc_set_alignment(GTK_MISC(label_font), 0, .5); chooser_font = gtk_font_button_new_with_font(pango_font_description_to_string(settings->font)); - gtk_widget_set_size_request (chooser_font, INPUT_W, INPUT_H); - hbox_text_color = gtk_hbox_new(FALSE, 5); label_color = gtk_label_new(g_strconcat(_("Color"), ":", NULL)); - gtk_widget_set_size_request (label_color, LABEL_W, LABEL_H); + gtk_misc_set_alignment(GTK_MISC(label_color), 0, .5); chooser_color = gtk_color_button_new_with_color(&(settings->color)); - gtk_widget_set_size_request (chooser_color, INPUT_W, INPUT_H); align_radio_image = gtk_alignment_new(0, 0, 0, 0); gtk_alignment_set_padding(GTK_ALIGNMENT(align_radio_image), 0, 5, 20, 0); radio_image = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(radio_text), _("Image watermark")); + align_radio_image = gtk_alignment_new(0, 0, 1, 1); + gtk_alignment_set_padding(GTK_ALIGNMENT(align_radio_image), 0, 0, 20, 0); vbox_image = gtk_vbox_new(FALSE, 5); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(radio_image), !settings->mode); chooser_image = gtk_file_chooser_button_new(_("Select image"), GTK_FILE_CHOOSER_ACTION_OPEN); @@ -74,7 +75,7 @@ GtkWidget* bimp_watermark_gui_new(watermark_settings settings) gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_image_adaptsize), settings->image_sizemode != WM_IMG_NOSIZE); hbox_image_size = gtk_hbox_new(FALSE, 5); spin_image_sizepercent = gtk_spin_button_new(GTK_ADJUSTMENT(gtk_adjustment_new (settings->image_size_percent, 0.1, 100.0, 0.1, 1, 0)), 1, 1); - label_percentof = gtk_label_new(g_strconcat(_("%% of"), NULL)); + label_percentof = gtk_label_new(g_strconcat(_("% of"), NULL)); combo_image_sizemode = gtk_combo_box_new_text(); gtk_combo_box_append_text(GTK_COMBO_BOX(combo_image_sizemode), _("Width")); @@ -88,46 +89,33 @@ GtkWidget* bimp_watermark_gui_new(watermark_settings settings) supported[0] = gtk_file_filter_new(); gtk_file_filter_set_name(supported[0], "Bitmap (*.bmp)"); - gtk_file_filter_add_pattern (supported[0], "*.bmp"); - gtk_file_filter_add_pattern (filter_all, "*.bmp"); + file_filters_add_patterns(supported[0], filter_all, "*.bmp", NULL); supported[1] = gtk_file_filter_new(); gtk_file_filter_set_name(supported[1], "JPEG (*.jpg, *.jpeg, *jpe)"); - gtk_file_filter_add_pattern (supported[1], "*.jpg"); - gtk_file_filter_add_pattern (supported[1], "*.jpeg"); - gtk_file_filter_add_pattern (supported[1], "*.jpe"); - gtk_file_filter_add_pattern (filter_all, "*.jpg"); - gtk_file_filter_add_pattern (filter_all, "*.jpeg"); - gtk_file_filter_add_pattern (filter_all, "*.jpe"); + file_filters_add_patterns(supported[1], filter_all, "*.jpg", "*.jpeg", "*.jpe", NULL); supported[2] = gtk_file_filter_new(); gtk_file_filter_set_name(supported[2], "GIF (*.gif)"); - gtk_file_filter_add_pattern (supported[2], "*.gif"); - gtk_file_filter_add_pattern (filter_all, "*.gif"); + file_filters_add_patterns(supported[2], filter_all, "*.gif", NULL); supported[3] = gtk_file_filter_new(); gtk_file_filter_set_name(supported[3], "PNG (*.png)"); - gtk_file_filter_add_pattern (supported[3], "*.png"); - gtk_file_filter_add_pattern (filter_all, "*.png"); + file_filters_add_patterns(supported[3], filter_all, "*.png", NULL); supported[4] = gtk_file_filter_new(); gtk_file_filter_set_name(supported[4], "TIFF (*tif, *.tiff)"); - gtk_file_filter_add_pattern (supported[4], "*.tiff"); - gtk_file_filter_add_pattern (supported[4], "*.tif"); - gtk_file_filter_add_pattern (filter_all, "*.tiff"); - gtk_file_filter_add_pattern (filter_all, "*.tif"); + file_filters_add_patterns(supported[4], filter_all, "*.tiff", "*.tif", NULL); gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(chooser_image), filter_all); - int i; - for(i = 0; i < 5; i++) { + for(int i = 0; i < 5; i++) { gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(chooser_image), supported[i]); } if (settings->image_file != NULL) gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(chooser_image), settings->image_file); - gtk_widget_set_size_request (chooser_image, LABEL_W + INPUT_W, INPUT_H); - hbox_position = gtk_hbox_new(FALSE, 10); - vbox_position_sx = gtk_vbox_new(FALSE, 5); + GtkWidget* separator2 = gtk_hseparator_new(); + vbox_position = gtk_vbox_new(FALSE, 5); hbox_opacity = gtk_hbox_new(FALSE, 5); label_opacity = gtk_label_new(g_strconcat(_("Opacity"), ":", NULL)); @@ -147,91 +135,34 @@ GtkWidget* bimp_watermark_gui_new(watermark_settings settings) table_position = gtk_table_new(3, 3, TRUE); gtk_widget_set_size_request (table_position, 250, 120); - button_tl = gtk_radio_button_new (NULL); - gtk_button_set_image(GTK_BUTTON(button_tl), gtk_image_new_from_pixbuf(gdk_pixbuf_from_pixdata(&pixdata_postl, TRUE, NULL))); - gtk_widget_set_tooltip_text (button_tl, watermark_pos_get_string(WM_POS_TL)); - gtk_toggle_button_set_mode(GTK_TOGGLE_BUTTON(button_tl), FALSE); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_tl), settings->position == WM_POS_TL); - gtk_widget_set_size_request (button_tl, BUTTON_POSITION_W, BUTTON_POSITION_H); - gtk_table_attach(GTK_TABLE(table_position), button_tl, 0, 1, 0, 1, GTK_EXPAND, GTK_EXPAND, 0, 0); - button_tc = gtk_radio_button_new_from_widget (GTK_RADIO_BUTTON(button_tl)); - gtk_button_set_image(GTK_BUTTON(button_tc), gtk_image_new_from_pixbuf(gdk_pixbuf_from_pixdata(&pixdata_postc, TRUE, NULL))); - gtk_widget_set_tooltip_text (button_tc, watermark_pos_get_string(WM_POS_TC)); - gtk_toggle_button_set_mode(GTK_TOGGLE_BUTTON(button_tc), FALSE); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_tc), settings->position == WM_POS_TC); - gtk_widget_set_size_request (button_tc, BUTTON_POSITION_W, BUTTON_POSITION_H); - gtk_table_attach(GTK_TABLE(table_position), button_tc, 1, 2, 0, 1, GTK_EXPAND, GTK_EXPAND, 0, 0); - - button_tr = gtk_radio_button_new_from_widget (GTK_RADIO_BUTTON(button_tl)); - gtk_button_set_image(GTK_BUTTON(button_tr), gtk_image_new_from_pixbuf(gdk_pixbuf_from_pixdata(&pixdata_postr, TRUE, NULL))); - gtk_widget_set_tooltip_text (button_tr, watermark_pos_get_string(WM_POS_TR)); - gtk_toggle_button_set_mode(GTK_TOGGLE_BUTTON(button_tr), FALSE); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_tr), settings->position == WM_POS_TR); - gtk_widget_set_size_request (button_tr, BUTTON_POSITION_W, BUTTON_POSITION_H); - gtk_table_attach(GTK_TABLE(table_position), button_tr, 2, 3, 0, 1, GTK_EXPAND, GTK_EXPAND, 0, 0); - button_cl = gtk_radio_button_new_from_widget (GTK_RADIO_BUTTON(button_tl)); - gtk_button_set_image(GTK_BUTTON(button_cl), gtk_image_new_from_pixbuf(gdk_pixbuf_from_pixdata(&pixdata_poscl, TRUE, NULL))); - gtk_widget_set_tooltip_text (button_cl, watermark_pos_get_string(WM_POS_CL)); - gtk_toggle_button_set_mode(GTK_TOGGLE_BUTTON(button_cl), FALSE); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_cl), settings->position == WM_POS_CL); - gtk_widget_set_size_request (button_cl, BUTTON_POSITION_W, BUTTON_POSITION_H); - gtk_table_attach(GTK_TABLE(table_position), button_cl, 0, 1, 1, 2, GTK_EXPAND, GTK_EXPAND, 0, 0); - - button_cc = gtk_radio_button_new_from_widget (GTK_RADIO_BUTTON(button_tl)); - gtk_button_set_image(GTK_BUTTON(button_cc), gtk_image_new_from_pixbuf(gdk_pixbuf_from_pixdata(&pixdata_poscc, TRUE, NULL))); - gtk_widget_set_tooltip_text (button_cc, watermark_pos_get_string(WM_POS_CC)); - gtk_toggle_button_set_mode(GTK_TOGGLE_BUTTON(button_cc), FALSE); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_cc), settings->position == WM_POS_CC); - gtk_widget_set_size_request (button_cc, BUTTON_POSITION_W, BUTTON_POSITION_H); - gtk_table_attach(GTK_TABLE(table_position), button_cc, 1, 2, 1, 2, GTK_EXPAND, GTK_EXPAND, 0, 0); - button_cr = gtk_radio_button_new_from_widget (GTK_RADIO_BUTTON(button_tl)); - gtk_button_set_image(GTK_BUTTON(button_cr), gtk_image_new_from_pixbuf(gdk_pixbuf_from_pixdata(&pixdata_poscr, TRUE, NULL))); - gtk_widget_set_tooltip_text (button_cr, watermark_pos_get_string(WM_POS_CR)); - gtk_toggle_button_set_mode(GTK_TOGGLE_BUTTON(button_cr), FALSE); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_cr), settings->position == WM_POS_CR); - gtk_widget_set_size_request (button_cr, BUTTON_POSITION_W, BUTTON_POSITION_H); - gtk_table_attach(GTK_TABLE(table_position), button_cr, 2, 3, 1, 2, GTK_EXPAND, GTK_EXPAND, 0, 0); - - button_bl = gtk_radio_button_new_from_widget (GTK_RADIO_BUTTON(button_tl)); - gtk_button_set_image(GTK_BUTTON(button_bl), gtk_image_new_from_pixbuf(gdk_pixbuf_from_pixdata(&pixdata_posbl, TRUE, NULL))); - gtk_widget_set_tooltip_text (button_bl, watermark_pos_get_string(WM_POS_BL)); - gtk_toggle_button_set_mode(GTK_TOGGLE_BUTTON(button_bl), FALSE); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_bl), settings->position == WM_POS_BL); - gtk_widget_set_size_request (button_bl, BUTTON_POSITION_W, BUTTON_POSITION_H); - gtk_table_attach(GTK_TABLE(table_position), button_bl, 0, 1, 2, 3, GTK_EXPAND, GTK_EXPAND, 0, 0); - button_bc = gtk_radio_button_new_from_widget (GTK_RADIO_BUTTON(button_tl)); - gtk_button_set_image(GTK_BUTTON(button_bc), gtk_image_new_from_pixbuf(gdk_pixbuf_from_pixdata(&pixdata_posbc, TRUE, NULL))); - gtk_widget_set_tooltip_text (button_bc, watermark_pos_get_string(WM_POS_BC)); - gtk_toggle_button_set_mode(GTK_TOGGLE_BUTTON(button_bc), FALSE); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_bc), settings->position == WM_POS_BC); - gtk_widget_set_size_request (button_bc, BUTTON_POSITION_W, BUTTON_POSITION_H); - gtk_table_attach(GTK_TABLE(table_position), button_bc, 1, 2, 2, 3, GTK_EXPAND, GTK_EXPAND, 0, 0); - - button_br = gtk_radio_button_new_from_widget (GTK_RADIO_BUTTON(button_tl)); - gtk_button_set_image(GTK_BUTTON(button_br), gtk_image_new_from_pixbuf(gdk_pixbuf_from_pixdata(&pixdata_posbr, TRUE, NULL))); - gtk_widget_set_tooltip_text (button_br, watermark_pos_get_string(WM_POS_BR)); - gtk_toggle_button_set_mode(GTK_TOGGLE_BUTTON(button_br), FALSE); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_br), settings->position == WM_POS_BR); - gtk_widget_set_size_request (button_br, BUTTON_POSITION_W, BUTTON_POSITION_H); - gtk_table_attach(GTK_TABLE(table_position), button_br, 2, 3, 2, 3, GTK_EXPAND, GTK_EXPAND, 0, 0); + GtkRadioButton *first_button = NULL; + for(watermark_position current_pos = WM_POS_TL; current_pos < WM_POS_END; current_pos++) { + position_buttons[current_pos] = gtk_radio_button_new_from_widget(first_button); + gtk_button_set_image(GTK_BUTTON(position_buttons[current_pos]), image_new_from_resource(g_strconcat("/gimp/plugin/bimp/icons/pos-", watermark_pos_get_abbreviation(current_pos), "-icon.png", NULL))); + gtk_widget_set_tooltip_text (position_buttons[current_pos], watermark_pos_get_string(current_pos)); + gtk_toggle_button_set_mode(GTK_TOGGLE_BUTTON(position_buttons[current_pos]), FALSE); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(position_buttons[current_pos]), settings->position == current_pos); + gtk_table_attach_defaults(GTK_TABLE(table_position), position_buttons[current_pos], current_pos % 3, (current_pos % 3) + 1, current_pos / 3, (current_pos / 3) + 1); + + if(first_button == NULL) { + first_button = GTK_RADIO_BUTTON(position_buttons[current_pos]); + } + } // left side (text mode) gtk_box_pack_start(GTK_BOX(vbox_mode_text), radio_text, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_text_entry), label_text, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_text_entry), entry_text, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_text_font), label_font, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_text_font), chooser_font, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_text_color), label_color, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_text_color), chooser_color, FALSE, FALSE, 0); + gtk_table_attach(GTK_TABLE(table_text), label_text, 0, 1, 0, 1, GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0); + gtk_table_attach_defaults(GTK_TABLE(table_text), entry_text, 1, 2, 0, 1); + gtk_table_attach(GTK_TABLE(table_text), label_font, 0, 1, 1, 2, GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0); + gtk_table_attach_defaults(GTK_TABLE(table_text), chooser_font, 1, 2, 1, 2); + gtk_table_attach(GTK_TABLE(table_text), label_color, 0, 1, 2, 3, GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0); + gtk_table_attach_defaults(GTK_TABLE(table_text), chooser_color, 1, 2, 2, 3); - gtk_box_pack_start(GTK_BOX(vbox_text), hbox_text_entry, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_text), hbox_text_font, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_text), hbox_text_color, FALSE, FALSE, 0); - gtk_container_add(GTK_CONTAINER(align_radio_text), vbox_text); - gtk_box_pack_start(GTK_BOX(vbox_mode_text), align_radio_text, FALSE, FALSE, 0); + gtk_container_add(GTK_CONTAINER(align_radio_text), table_text); + gtk_box_pack_start(GTK_BOX(vbox_mode_text), align_radio_text, TRUE, TRUE, 0); - gtk_box_pack_start(GTK_BOX(hbox_mode), vbox_mode_text, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_mode), vbox_mode_text, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(hbox_mode), separator1, FALSE, FALSE, 0); @@ -248,31 +179,30 @@ GtkWidget* bimp_watermark_gui_new(watermark_settings settings) gtk_container_add(GTK_CONTAINER(align_radio_image), vbox_image); - gtk_box_pack_start(GTK_BOX(vbox_mode_image), align_radio_image, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(vbox_mode_image), align_radio_image, TRUE, TRUE, 0); - gtk_box_pack_start(GTK_BOX(hbox_mode), vbox_mode_image, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_mode), vbox_mode_image, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(gui), hbox_mode, FALSE, FALSE, 0); // opacity gtk_box_pack_start(GTK_BOX(hbox_opacity), label_opacity, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox_opacity), scale_opacity, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox_opacity), scale_opacity, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(hbox_opacity), label_percent, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_position_sx), hbox_opacity, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(vbox_position), hbox_opacity, TRUE, TRUE, 0); + + // table + gtk_container_add(GTK_CONTAINER(frame_position), table_position); + gtk_box_pack_start(GTK_BOX(vbox_position), frame_position, FALSE, FALSE, 0); // distance to edge gtk_box_pack_start(GTK_BOX(hbox_edge), label_edge, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox_edge), spin_edge, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox_edge), label_px, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(vbox_position_sx), hbox_edge, FALSE, FALSE, 0); - - gtk_box_pack_start(GTK_BOX(hbox_position), vbox_position_sx, FALSE, FALSE, 0); - - // table - gtk_container_add(GTK_CONTAINER(frame_position), table_position); - gtk_box_pack_start(GTK_BOX(hbox_position), frame_position, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(vbox_position), hbox_edge, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(gui), hbox_position, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(gui), separator2, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(gui), vbox_position, FALSE, FALSE, 0); toggle_group(NULL, NULL); toggle_image_size(NULL, NULL); @@ -285,7 +215,7 @@ GtkWidget* bimp_watermark_gui_new(watermark_settings settings) static void toggle_group(GtkToggleButton *togglebutton, gpointer user_data) { - gtk_widget_set_sensitive(GTK_WIDGET(vbox_text), gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radio_text))); + gtk_widget_set_sensitive(GTK_WIDGET(table_text), gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radio_text))); gtk_widget_set_sensitive(GTK_WIDGET(vbox_image), !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radio_text))); } @@ -294,38 +224,36 @@ static void toggle_image_size(GtkToggleButton *togglebutton, gpointer user_data) gtk_widget_set_sensitive(GTK_WIDGET(hbox_image_size), gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(check_image_adaptsize))); } -static char* watermark_pos_get_string(watermark_position wp) { - char* pos_string = ""; - - if (wp == WM_POS_TL) { - pos_string = _("Top-left"); - } - else if (wp == WM_POS_TC) { - pos_string = _("Top-center"); - } - else if (wp == WM_POS_TR) { - pos_string = _("Top-right"); - } - else if (wp == WM_POS_CL) { - pos_string = _("Center-left"); - } - else if (wp == WM_POS_CC) { - pos_string = _("Center"); - } - else if (wp == WM_POS_CR) { - pos_string = _("Center-right"); - } - else if (wp == WM_POS_BL) { - pos_string = _("Bottom-left"); - } - else if (wp == WM_POS_BC) { - pos_string = _("Bottom-center"); - } - else if (wp == WM_POS_BR) { - pos_string = _("Bottom-right"); +static const char* watermark_pos_strings[9] = +{ + "Top-left", "Top-center", "Top-right", + "Center-left", "Center", "Center-right", + "Bottom-left", "Bottom-center", "Bottom-right" +}; +static const char* watermark_pos_get_string(watermark_position wp) { + return _(watermark_pos_strings[wp]); +} + +static const char* watermark_pos_abbreviations[9] = +{ + "tl", "tc", "tr", + "cl", "cc", "cr", + "bl", "bc", "br" +}; +static const char* watermark_pos_get_abbreviation(watermark_position wp) { + return watermark_pos_abbreviations[wp]; +} + +static void file_filters_add_patterns(GtkFileFilter *filter1, GtkFileFilter *filter2, ...) +{ + va_list patterns; + va_start(patterns, filter2); + gchar *pattern = (gchar*)va_arg(patterns, void*); + while (pattern != NULL) { + gtk_file_filter_add_pattern (filter1, pattern); + gtk_file_filter_add_pattern (filter2, pattern); + pattern = (gchar*)va_arg(patterns, void*); } - - return pos_string; } void bimp_watermark_save(watermark_settings orig_settings) @@ -352,31 +280,10 @@ void bimp_watermark_save(watermark_settings orig_settings) orig_settings->opacity = (float)gtk_range_get_value(GTK_RANGE(scale_opacity)); orig_settings->edge_distance = gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_edge)); - if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button_tr))) { - orig_settings->position = WM_POS_TR; - } - else if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button_tc))) { - orig_settings->position = WM_POS_TC; - } - else if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button_tl))) { - orig_settings->position = WM_POS_TL; - } - else if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button_cr))) { - orig_settings->position = WM_POS_CR; - } - else if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button_cc))) { - orig_settings->position = WM_POS_CC; - } - else if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button_cl))) { - orig_settings->position = WM_POS_CL; - } - else if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button_br))) { - orig_settings->position = WM_POS_BR; - } - else if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button_bc))) { - orig_settings->position = WM_POS_BC; - } - else { - orig_settings->position = WM_POS_BL; + for (watermark_position current_pos = WM_POS_TL; current_pos < WM_POS_END; current_pos++) { + if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(position_buttons[current_pos]))) { + orig_settings->position = current_pos; + break; + } } } diff --git a/src/manipulation-gui/gui-watermark.h b/src/manipulation-gui/gui-watermark.h index 8cbe077..83a41a0 100644 --- a/src/manipulation-gui/gui-watermark.h +++ b/src/manipulation-gui/gui-watermark.h @@ -4,21 +4,6 @@ #include #include "../bimp-manipulations.h" -#define INPUT_W 160 -#define INPUT_H 30 - -#define LABEL_W 50 -#define LABEL_H 30 - -#define LABEL_TRANSP_W 80 -#define LABEL_TRANSP_H 40 - -#define LABEL_PERCENT_W 30 -#define LABEL_PERCENT_H 40 - -#define BUTTON_POSITION_W 40 -#define BUTTON_POSITION_H 30 - GtkWidget* bimp_watermark_gui_new(watermark_settings); void bimp_watermark_save(watermark_settings);