1 Star 0 Fork 0

Michael Ji/Temperature Monitor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
res_rc.py 103.74 KB
一键复制 编辑 原始数据 按行查看 历史
Tommy.Hui 提交于 2018-09-20 22:09 . 1, 去掉“heat”chart
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689
# -*- coding: utf-8 -*-
# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.9.4)
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore
qt_resource_data = b"\
\x00\x00\x10\xbe\
\x00\
\x00\x01\x00\x01\x00\x20\x20\x00\x00\x01\x00\x20\x00\xa8\x10\x00\
\x00\x16\x00\x00\x00\x28\x00\x00\x00\x20\x00\x00\x00\x40\x00\x00\
\x00\x01\x00\x20\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x00\
\x00\x00\x65\x00\x06\x09\x7c\x03\x29\x11\x85\x09\x6b\x20\x92\x18\
\xa5\x31\xa0\x2a\xcf\x35\xa1\x2e\xec\x35\xa0\x2e\xfa\x34\x9f\x2d\
\xfa\x33\xa1\x2c\xec\x30\xa0\x29\xcf\x1f\x92\x18\xa5\x11\x85\x09\
\x6b\x09\x7d\x03\x29\x00\x65\x00\x06\x00\x6b\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x02\x70\x00\x00\x00\x66\x00\x05\x0b\x80\x05\
\x37\x1b\x92\x13\x94\x2f\xa6\x28\xdb\x4d\xbf\x45\xf8\x65\xd1\x5f\
\xff\x7e\xe2\x78\xff\x91\xed\x8c\xff\x9c\xf2\x97\xff\x9a\xf2\x95\
\xff\x8d\xec\x88\xff\x7a\xe1\x74\xff\x62\xd1\x5b\xff\x4a\xbe\x42\
\xf8\x2d\xa5\x26\xdb\x1a\x91\x12\x93\x0b\x80\x04\x37\x00\x66\x00\
\x05\x02\x71\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x00\
\x00\x1a\xa8\x09\x00\x06\x78\x00\x1c\x15\x8f\x0d\x86\x2e\xab\x25\
\xe5\x4e\xcd\x46\xff\x6d\xe7\x66\xff\x81\xf3\x7a\xff\x8e\xf8\x87\
\xff\x97\xfa\x91\xff\x9e\xfb\x99\xff\xa2\xfc\x9d\xff\xa0\xfc\x9b\
\xff\x9a\xfb\x95\xff\x91\xf9\x8b\xff\x89\xf7\x82\xff\x7c\xf2\x75\
\xff\x69\xe6\x61\xff\x4b\xcc\x43\xff\x2c\xab\x23\xe5\x14\x8f\x0c\
\x86\x06\x78\x00\x1b\x1a\xa8\x09\x00\x00\x66\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x70\x00\x00\x00\x00\x00\
\x00\x09\x80\x02\x37\x1c\x9b\x13\xbd\x3a\xc3\x31\xfd\x5a\xe5\x51\
\xff\x6b\xf1\x63\xff\x75\xf3\x6e\xff\x7e\xf4\x77\xff\x87\xf6\x80\
\xff\x8f\xf8\x88\xff\x94\xf9\x8e\xff\x97\xf9\x92\xff\x96\xf9\x90\
\xff\x95\xf8\x8f\xff\x96\xf8\x90\xff\x86\xf5\x7f\xff\x79\xf3\x72\
\xff\x70\xf2\x68\xff\x67\xf0\x5e\xff\x55\xe4\x4c\xff\x37\xc3\x2e\
\xfd\x1a\x9b\x11\xbd\x09\x80\x02\x36\x00\x00\x00\x00\x02\x70\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x04\x73\x00\x00\x9f\xff\x58\x00\x0b\x83\x03\
\x42\x1d\xa4\x13\xd3\x3b\xd1\x31\xff\x53\xeb\x49\xff\x5e\xee\x54\
\xff\x66\xef\x5e\xff\x70\xf1\x68\xff\x78\xf3\x71\xff\x80\xf4\x79\
\xff\x86\xf6\x80\xff\x8b\xf7\x85\xff\x8d\xf8\x87\xff\x8b\xf4\x85\
\xff\xbf\xf6\xbc\xff\xed\xfe\xec\xff\xbd\xf9\xb9\xff\x78\xf2\x70\
\xff\x6b\xf0\x63\xff\x62\xee\x59\xff\x59\xed\x4f\xff\x4e\xea\x44\
\xff\x37\xd1\x2d\xff\x1b\xa3\x12\xd3\x0b\x83\x03\x42\x7e\xff\x46\
\x00\x04\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x06\x72\x00\x00\x0f\x93\x06\x00\x09\x80\x01\x37\x18\xa3\x0f\
\xd4\x33\xd4\x28\xff\x46\xe9\x3b\xff\x4f\xeb\x45\xff\x58\xec\x4f\
\xff\x61\xee\x58\xff\x6a\xf0\x61\xff\x72\xf2\x6a\xff\x78\xf3\x71\
\xff\x7e\xf4\x76\xff\x82\xf5\x7b\xff\x84\xf6\x7d\xff\x6e\xdd\x67\
\xff\xe0\xf3\xdf\xff\xff\xff\xff\xff\xeb\xfd\xea\xff\x7c\xf2\x74\
\xff\x65\xef\x5c\xff\x5d\xed\x53\xff\x54\xeb\x4a\xff\x4a\xea\x40\
\xff\x41\xe8\x36\xff\x30\xd4\x25\xff\x17\xa3\x0d\xd3\x09\x80\x01\
\x37\x0e\x93\x05\x00\x08\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x0a\x82\x01\x00\x07\x79\x00\x1d\x11\x9a\x07\xbd\x24\xc8\x19\
\xff\x34\xe0\x29\xff\x3d\xe6\x32\xff\x46\xe9\x3c\xff\x4f\xeb\x45\
\xff\x58\xec\x4e\xff\x60\xee\x56\xff\x67\xf0\x5e\xff\x6d\xf1\x65\
\xff\x74\xf2\x6d\xff\x78\xf3\x70\xff\x7a\xf4\x72\xff\x5c\xd1\x55\
\xff\xe2\xf2\xe1\xff\xff\xff\xff\xff\xef\xfd\xee\xff\x77\xf1\x6f\
\xff\x5e\xee\x55\xff\x57\xec\x4d\xff\x4e\xea\x44\xff\x45\xe9\x3b\
\xff\x3c\xe6\x31\xff\x32\xe2\x26\xff\x21\xca\x16\xff\x0f\x9a\x06\
\xbd\x06\x79\x00\x1d\x09\x82\x01\x00\x00\x00\x00\x00\x08\x7b\x00\
\x00\x01\x5a\x00\x04\x0b\x8e\x02\x86\x16\xb7\x0c\xfd\x23\xd3\x18\
\xff\x3a\xdc\x2f\xff\x83\xed\x7c\xff\xa3\xf4\x9d\xff\xa7\xf5\xa2\
\xff\xab\xf5\xa6\xff\xaf\xf6\xaa\xff\xb2\xf7\xae\xff\xa3\xf6\x9d\
\xff\x72\xf1\x6a\xff\x6d\xf1\x65\xff\x70\xf2\x67\xff\x57\xd0\x4f\
\xff\xe2\xf2\xe1\xff\xff\xff\xff\xff\xee\xfd\xed\xff\x70\xef\x67\
\xff\x57\xec\x4d\xff\x50\xeb\x46\xff\x48\xe9\x3e\xff\x40\xe7\x35\
\xff\x36\xe4\x2b\xff\x2b\xdc\x20\xff\x21\xd5\x15\xff\x14\xb8\x09\
\xfd\x0a\x8e\x01\x86\x03\x58\x00\x04\x08\x7b\x00\x00\x09\x88\x00\
\x00\x08\x81\x00\x39\x0c\xa3\x02\xe5\x16\xc5\x0a\xff\x1a\xca\x0e\
\xff\x71\xd9\x6a\xff\xf7\xfd\xf7\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf9\xfe\xf9\
\xff\xb3\xf7\xae\xff\x68\xef\x60\xff\x65\xf0\x5c\xff\x51\xcf\x4a\
\xff\xe2\xf2\xe1\xff\xff\xff\xff\xff\xed\xfd\xec\xff\x68\xee\x60\
\xff\x4f\xeb\x45\xff\x49\xe9\x3f\xff\x42\xe8\x37\xff\x39\xe6\x2e\
\xff\x2f\xe0\x24\xff\x25\xd7\x19\xff\x1c\xd0\x10\xff\x13\xc6\x07\
\xff\x0b\xa4\x01\xe4\x08\x81\x00\x38\x09\x88\x00\x00\x06\x5e\x00\
\x05\x09\x90\x00\x94\x0c\xb2\x01\xff\x12\xc2\x06\xff\x13\xc2\x08\
\xff\x66\xc6\x61\xff\xf6\xfa\xf5\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xea\xfd\xe9\xff\x6c\xee\x63\xff\x59\xed\x50\xff\x50\xcf\x48\
\xff\xe4\xf3\xe3\xff\xff\xff\xff\xff\xec\xfd\xeb\xff\x61\xec\x58\
\xff\x47\xe9\x3c\xff\x42\xe8\x37\xff\x3b\xe6\x2f\xff\x33\xe3\x27\
\xff\x28\xdb\x1c\xff\x1f\xd3\x13\xff\x16\xcb\x0a\xff\x0f\xc4\x03\
\xff\x0c\xb4\x00\xff\x09\x90\x00\x93\x06\x5a\x00\x05\x08\x7e\x00\
\x2a\x0a\x9b\x00\xdb\x0c\xb6\x00\xff\x0e\xbd\x02\xff\x13\xc3\x07\
\xff\x1e\xb7\x15\xff\x66\xc5\x60\xff\x87\xd3\x82\xff\x88\xd3\x83\
\xff\x89\xd4\x85\xff\x87\xd2\x83\xff\xc2\xe6\xc0\xff\xff\xff\xff\
\xff\xec\xfd\xeb\xff\x64\xed\x5b\xff\x55\xe9\x4b\xff\x9b\xe6\x96\
\xff\xf8\xfb\xf8\xff\xff\xff\xff\xff\xeb\xfd\xea\xff\x59\xeb\x4f\
\xff\x3e\xe7\x33\xff\x3a\xe6\x2e\xff\x33\xe4\x27\xff\x2b\xdf\x1f\
\xff\x22\xd7\x15\xff\x19\xcf\x0d\xff\x11\xc7\x05\xff\x0d\xc0\x01\
\xff\x0c\xb9\x00\xff\x0a\x9d\x00\xda\x08\x7e\x00\x29\x09\x86\x00\
\x6a\x0a\xa4\x00\xf7\x0b\xb4\x00\xff\x0c\xba\x00\xff\x0f\xc1\x03\
\xff\x14\xc7\x08\xff\x1a\xcb\x0e\xff\x25\xd3\x19\xff\x31\xdb\x26\
\xff\x3b\xe0\x30\xff\x34\xd6\x2b\xff\x88\xd3\x86\xff\xff\xff\xff\
\xff\xec\xfd\xeb\xff\x6b\xee\x63\xff\x9e\xed\x99\xff\xf5\xfc\xf5\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd1\xf8\xce\xff\x4a\xe8\x3f\
\xff\x36\xe5\x2a\xff\x31\xe4\x26\xff\x2b\xe2\x1f\xff\x23\xdc\x16\
\xff\x1b\xd3\x0e\xff\x13\xcb\x07\xff\x0d\xc4\x01\xff\x0c\xbd\x00\
\xff\x0c\xb7\x00\xff\x0b\xa7\x00\xf7\x09\x87\x00\x6a\x0a\x8e\x00\
\xa5\x0b\xa7\x00\xff\x0b\xb1\x00\xff\x0c\xb8\x00\xff\x13\xc2\x07\
\xff\x24\xcf\x18\xff\x35\xdb\x2a\xff\x3f\xe3\x34\xff\x46\xe9\x3b\
\xff\x4b\xed\x40\xff\x41\xe2\x36\xff\x8b\xd5\x87\xff\xff\xff\xff\
\xff\xef\xfc\xee\xff\xb2\xf0\xae\xff\xf4\xfc\xf4\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xd8\xf7\xd6\xff\x6d\xeb\x64\xff\x3d\xe8\x32\
\xff\x32\xe5\x26\xff\x29\xe3\x1d\xff\x23\xe0\x16\xff\x1b\xd9\x0f\
\xff\x14\xd1\x07\xff\x0e\xc9\x02\xff\x0c\xc2\x00\xff\x0c\xbb\x00\
\xff\x0b\xb5\x00\xff\x0b\xaa\x00\xff\x09\x8f\x00\xa4\x0a\x95\x00\
\xd0\x0a\xa8\x00\xff\x10\xb2\x05\xff\x23\xc3\x18\xff\x35\xd2\x2a\
\xff\x3b\xda\x30\xff\x3e\xdf\x33\xff\x42\xe3\x38\xff\x48\xe9\x3d\
\xff\x4d\xed\x42\xff\x43\xe1\x38\xff\x8b\xd5\x87\xff\xff\xff\xff\
\xff\xfe\xfe\xfd\xff\xfb\xfd\xfa\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xd8\xf7\xd6\xff\x6e\xeb\x66\xff\x46\xeb\x3b\xff\x44\xea\x38\
\xff\x3c\xe9\x30\xff\x2d\xe5\x21\xff\x1c\xdf\x0f\xff\x12\xd6\x05\
\xff\x0e\xce\x01\xff\x0d\xc7\x00\xff\x0c\xc0\x00\xff\x0c\xba\x00\
\xff\x0b\xb3\x00\xff\x0b\xab\x00\xff\x0a\x96\x00\xcf\x0a\x95\x00\
\xec\x19\xb1\x0e\xff\x33\xc8\x29\xff\x40\xd4\x36\xff\x43\xd8\x39\
\xff\x49\xdd\x3f\xff\x4e\xe2\x44\xff\x52\xe6\x48\xff\x54\xea\x4a\
\xff\x57\xee\x4d\xff\x4a\xe2\x40\xff\x8c\xd5\x88\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe0\xf9\xde\
\xff\x74\xec\x6c\xff\x4f\xed\x45\xff\x58\xed\x4e\xff\x59\xed\x50\
\xff\x54\xec\x4a\xff\x50\xeb\x45\xff\x44\xe7\x38\xff\x2c\xdb\x21\
\xff\x13\xcf\x08\xff\x0c\xc7\x00\xff\x0c\xc0\x00\xff\x0c\xb9\x00\
\xff\x0b\xb2\x00\xff\x0b\xac\x00\xff\x0a\x96\x00\xec\x1e\xa2\x15\
\xfa\x3f\xcc\x36\xff\x48\xd4\x3f\xff\x52\xda\x49\xff\x5e\xdf\x55\
\xff\x62\xe3\x59\xff\x62\xe6\x59\xff\x60\xe9\x57\xff\x60\xec\x56\
\xff\x60\xef\x56\xff\x51\xe3\x48\xff\x89\xd3\x86\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe3\xfb\xe1\
\xff\x7c\xf2\x74\xff\x57\xe4\x4e\xff\xca\xf6\xc7\xff\xed\xfd\xec\
\xff\xea\xfd\xe9\xff\xea\xfd\xe8\xff\xea\xfc\xe8\xff\xe1\xfa\xe0\
\xff\x87\xe6\x81\xff\x14\xc9\x07\xff\x0b\xc0\x00\xff\x0c\xb9\x00\
\xff\x0b\xb3\x00\xff\x0b\xac\x00\xff\x0a\x96\x01\xfa\x30\xad\x28\
\xfa\x55\xd7\x4c\xff\x67\xdd\x5f\xff\x71\xe2\x6a\xff\x72\xe4\x6a\
\xff\x70\xe7\x68\xff\x6f\xe9\x66\xff\x6d\xec\x65\xff\x6b\xee\x62\
\xff\x69\xf0\x60\xff\x5f\xe8\x55\xff\x54\xc2\x4e\xff\xdd\xf0\xdb\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xdf\xfc\xdd\xff\x74\xd5\x6e\xff\xe3\xf3\xe2\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xdc\xf9\xda\xff\x33\xd3\x28\xff\x0c\xc1\x00\xff\x0c\xba\x00\
\xff\x0b\xb3\x00\xff\x0c\xae\x02\xff\x0f\x98\x05\xfa\x3b\xb2\x33\
\xec\x77\xe1\x70\xff\x81\xe5\x7a\xff\x7f\xe7\x78\xff\x7e\xe8\x77\
\xff\x7d\xeb\x75\xff\x7b\xed\x74\xff\x7a\xef\x72\xff\x92\xf2\x8b\
\xff\xb2\xf7\xad\xff\x92\xf4\x8b\xff\x55\xd7\x4c\xff\x6b\xc5\x66\
\xff\xee\xf7\xed\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xe1\xf3\xdf\xff\xf6\xfb\xf6\xff\xff\xff\xff\
\xff\xf0\xf9\xf0\xff\xe1\xf2\xe1\xff\xe2\xf2\xe2\xff\xe0\xf3\xdf\
\xff\x9f\xed\x9a\xff\x40\xdd\x35\xff\x20\xcc\x14\xff\x0c\xbc\x00\
\xff\x0b\xb5\x00\xff\x0e\xb0\x04\xff\x17\x9d\x0e\xec\x43\xb4\x3b\
\xd0\x84\xe4\x7e\xff\x8d\xea\x87\xff\x8b\xeb\x85\xff\x8a\xec\x83\
\xff\x89\xee\x82\xff\x87\xf0\x80\xff\x7c\xe5\x75\xff\xd5\xf3\xd2\
\xff\xff\xff\xff\xff\xe8\xfd\xe7\xff\x93\xf4\x8d\xff\x51\xce\x49\
\xff\x88\xcf\x84\xff\xf9\xfc\xf9\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xac\xe7\xa9\xff\x56\xcf\x4f\xff\x59\xd0\x52\xff\x62\xd8\x5a\
\xff\x68\xe7\x5f\xff\x4f\xe3\x45\xff\x3c\xda\x31\xff\x1c\xc6\x10\
\xff\x0b\xb8\x00\xff\x11\xb3\x06\xff\x23\xa3\x1a\xcf\x3b\xa8\x33\
\xa5\x87\xe2\x81\xff\x99\xee\x93\xff\x97\xee\x91\xff\x96\xf0\x90\
\xff\x95\xf1\x8e\xff\x94\xf3\x8e\xff\x66\xd2\x5f\xff\xc3\xe6\xc1\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd9\xfc\xd6\xff\x8e\xf1\x87\
\xff\x4e\xc6\x47\xff\xa6\xda\xa3\xff\xfe\xff\xfe\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xbf\xf9\xbb\xff\x7b\xf3\x73\xff\x7c\xf3\x74\xff\x7a\xf1\x72\
\xff\x79\xee\x71\xff\x72\xea\x69\xff\x54\xe2\x4a\xff\x39\xd7\x2e\
\xff\x13\xbf\x08\xff\x19\xb6\x0e\xff\x25\x9d\x1d\xa4\x28\x96\x21\
\x6a\x86\xdc\x80\xf7\xa4\xf2\x9f\xff\xa2\xf2\x9c\xff\xa1\xf3\x9b\
\xff\xa0\xf4\x9a\xff\xa0\xf6\x9a\xff\x7e\xe2\x77\xff\x61\xc2\x5c\
\xff\xd9\xef\xd7\xff\xff\xff\xff\xff\xfe\xff\xfe\xff\xd2\xfc\xcf\
\xff\x93\xed\x8d\xff\x63\xc6\x5d\xff\xd4\xed\xd2\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xfe\xfd\xff\xec\xf7\xec\
\xff\xbd\xf8\xb9\xff\x88\xf4\x80\xff\x88\xf4\x81\xff\x87\xf3\x7f\
\xff\x85\xf1\x7e\xff\x84\xef\x7d\xff\x79\xeb\x71\xff\x53\xe2\x49\
\xff\x2d\xd0\x22\xff\x2c\xba\x22\xf7\x22\x92\x1a\x6a\x09\x80\x01\
\x2a\x71\xc7\x6b\xdb\xaf\xf4\xaa\xff\xad\xf5\xa8\xff\xac\xf6\xa6\
\xff\xaa\xf6\xa5\xff\xaa\xf7\xa4\xff\xa9\xf8\xa3\xff\x7b\xdd\x75\
\xff\x66\xc3\x61\xff\xe2\xf3\xe1\xff\xff\xff\xff\xff\xfd\xff\xfc\
\xff\xf5\xfe\xf5\xff\xeb\xf9\xea\xff\xf4\xfa\xf4\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xf5\xfb\xf5\xff\xc5\xee\xc2\xff\x85\xde\x80\
\xff\x94\xf2\x8e\xff\x95\xf6\x8e\xff\x94\xf5\x8d\xff\x93\xf5\x8c\
\xff\x91\xf4\x8a\xff\x90\xf2\x89\xff\x8f\xf0\x88\xff\x77\xea\x6f\
\xff\x51\xe0\x47\xff\x40\xb8\x38\xda\x12\x82\x0a\x29\x00\x2e\x00\
\x05\x4f\xae\x49\x94\xad\xed\xa8\xff\xb8\xf8\xb3\xff\xb6\xf8\xb1\
\xff\xb5\xf9\xb0\xff\xb4\xf9\xaf\xff\xb3\xfa\xae\xff\xb2\xfa\xad\
\xff\x79\xd9\x74\xff\x72\xc7\x6e\xff\xec\xf7\xec\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xe9\xf8\xe8\xff\xb0\xec\xac\xff\xa7\xf2\xa2\xff\xc5\xfa\xc1\
\xff\xcc\xfb\xc9\xff\xb7\xf9\xb2\xff\xa1\xf7\x9b\xff\x9e\xf7\x98\
\xff\x9d\xf6\x97\xff\x9c\xf5\x95\xff\x9b\xf3\x94\xff\x96\xf2\x8f\
\xff\x76\xe2\x6f\xff\x3e\xa9\x37\x93\x00\x32\x00\x05\x37\x9d\x33\
\x00\x1d\x8c\x19\x39\x8e\xd3\x8a\xe5\xc4\xfa\xc0\xff\xbf\xfa\xbb\
\xff\xbe\xfb\xba\xff\xbd\xfb\xb9\xff\xbc\xfb\xb8\xff\xbc\xfb\xb8\
\xff\xb8\xf9\xb4\xff\x75\xd3\x6f\xff\x7f\xcb\x7b\xff\xdc\xf0\xdb\
\xff\xe1\xf2\xe0\xff\xe1\xf2\xe0\xff\xe0\xf2\xdf\xff\xe4\xf3\xe4\
\xff\xce\xf8\xcc\xff\xa8\xf1\xa3\xff\xdf\xf9\xdd\xff\xfe\xff\xfe\
\xff\xff\xff\xff\xff\xf7\xfe\xf7\xff\xc8\xfb\xc5\xff\xa9\xf8\xa4\
\xff\xa8\xf8\xa2\xff\xa7\xf7\xa1\xff\xa6\xf6\xa0\xff\xa5\xf5\x9f\
\xff\x74\xcd\x6e\xe4\x1a\x8a\x15\x38\x2f\x9a\x2a\x00\x00\x77\x00\
\x00\x00\x21\x00\x04\x52\xac\x4e\x86\xba\xec\xb6\xfd\xcb\xfd\xc8\
\xff\xc8\xfc\xc4\xff\xc7\xfc\xc3\xff\xc6\xfc\xc2\xff\xc5\xfc\xc1\
\xff\xc5\xfc\xc1\xff\xbc\xf8\xb9\xff\x85\xda\x80\xff\x7e\xd3\x79\
\xff\x81\xd5\x7b\xff\x80\xd5\x7b\xff\x7f\xd4\x7a\xff\x87\xd9\x82\
\xff\xae\xf2\xaa\xff\xab\xe5\xa7\xff\xf9\xfc\xf9\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xee\xfe\xed\xff\xb9\xfa\xb4\
\xff\xb2\xf9\xad\xff\xb1\xf9\xac\xff\xb2\xfa\xad\xff\x9c\xe7\x97\
\xfd\x42\xa7\x3d\x86\x00\x24\x00\x04\x00\x78\x00\x00\x00\x00\x00\
\x00\x25\x8d\x1f\x00\x06\x79\x01\x1d\x7a\xc1\x75\xbd\xce\xf6\xcb\
\xff\xd2\xfd\xcf\xff\xd0\xfc\xcd\xff\xcf\xfc\xcc\xff\xce\xfc\xcb\
\xff\xcd\xfc\xca\xff\xcc\xfc\xc9\xff\xcd\xfd\xca\xff\xcc\xfd\xc8\
\xff\xcb\xfd\xc7\xff\xca\xfd\xc6\xff\xc9\xfd\xc5\xff\xc9\xfd\xc5\
\xff\xae\xf0\xaa\xff\x95\xd6\x92\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf6\xfe\xf5\xff\xc4\xfb\xc0\
\xff\xbc\xfa\xb8\xff\xbd\xfb\xb9\xff\xb6\xf2\xb2\xff\x65\xbc\x5f\
\xbd\x03\x78\x00\x1c\x1d\x8a\x17\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x58\x00\x00\x64\xc7\x5b\x00\x27\x91\x21\x37\x95\xd1\x91\
\xd3\xd9\xfa\xd7\xff\xda\xfe\xd7\xff\xd8\xfd\xd5\xff\xd7\xfd\xd4\
\xff\xd6\xfd\xd3\xff\xd5\xfd\xd2\xff\xd4\xfd\xd1\xff\xd3\xfc\xd0\
\xff\xd2\xfd\xcf\xff\xd1\xfd\xce\xff\xd0\xfd\xcd\xff\xd0\xfd\xcd\
\xff\xbd\xf4\xba\xff\x6f\xc7\x6b\xff\xe4\xf4\xe3\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe9\xfd\xe7\xff\xc9\xfc\xc6\
\xff\xc8\xfc\xc4\xff\xc4\xf6\xc0\xff\x7a\xc8\x75\xd3\x18\x8a\x11\
\x37\x47\xb8\x3d\x00\x00\x5d\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x63\x00\x00\xff\xff\xff\x00\x38\x99\x32\
\x42\x9a\xd3\x97\xd3\xdd\xf8\xdb\xff\xe2\xff\xe1\xff\xdf\xfe\xdd\
\xff\xde\xfe\xdc\xff\xdd\xfe\xdb\xff\xdd\xfe\xda\xff\xdc\xfd\xda\
\xff\xdb\xfd\xd8\xff\xda\xfd\xd7\xff\xd9\xfd\xd7\xff\xd8\xfd\xd6\
\xff\xd7\xfd\xd4\xff\x8f\xd9\x8b\xff\x76\xc7\x71\xff\xc6\xe7\xc5\
\xff\xdf\xf2\xde\xff\xd4\xf1\xd3\xff\xd3\xfa\xd0\xff\xd4\xfd\xd1\
\xff\xcb\xf5\xc8\xff\x7f\xc9\x7b\xd3\x26\x92\x1f\x42\xff\xff\xff\
\x00\x00\x67\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5d\x00\x00\x00\x00\x00\
\x00\x32\x95\x2c\x36\x8a\xc7\x86\xbd\xd6\xf1\xd4\xfd\xeb\xff\xe9\
\xff\xe7\xff\xe6\xff\xe5\xfe\xe4\xff\xe4\xfe\xe3\xff\xe4\xfe\xe2\
\xff\xe3\xfe\xe1\xff\xe2\xfe\xe0\xff\xe1\xfe\xdf\xff\xe0\xfd\xde\
\xff\xe0\xfe\xde\xff\xdb\xfb\xd8\xff\xab\xe5\xa7\xff\x8d\xd5\x88\
\xff\xa4\xe0\xa0\xff\xce\xf6\xcc\xff\xde\xfd\xdc\xff\xc4\xed\xc2\
\xfd\x74\xbe\x6f\xbd\x1c\x8b\x16\x36\x00\x00\x00\x00\x00\x61\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38\x00\
\x00\x67\xff\x5d\x00\x0e\x7c\x0c\x1c\x6a\xb5\x65\x86\xb4\xde\xb1\
\xe5\xe3\xf7\xe1\xff\xf0\xff\xef\xff\xee\xff\xed\xff\xec\xff\xeb\
\xff\xeb\xfe\xe9\xff\xea\xfe\xe8\xff\xe9\xfe\xe7\xff\xe8\xfe\xe7\
\xff\xe7\xfe\xe6\xff\xe7\xfe\xe6\xff\xe9\xff\xe7\xff\xea\xff\xe9\
\xff\xea\xff\xe9\xff\xd8\xf5\xd6\xff\xa3\xd8\x9f\xe5\x54\xac\x4e\
\x86\x0b\x77\x09\x1b\x54\xf6\x49\x00\x00\x43\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x65\x00\x00\x00\x43\x00\x05\x32\x94\x2d\
\x37\x76\xbc\x71\x94\xab\xd8\xa8\xdb\xd7\xef\xd5\xf8\xe5\xf7\xe4\
\xff\xf2\xfe\xf1\xff\xf5\xff\xf4\xff\xf4\xff\xf4\xff\xf4\xff\xf3\
\xff\xf3\xff\xf2\xff\xee\xfe\xed\xff\xe0\xf6\xdf\xff\xcd\xed\xcb\
\xf7\x9e\xd3\x9a\xdb\x65\xb5\x5f\x93\x26\x8d\x20\x37\x00\x46\x00\
\x05\x00\x62\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x57\x00\
\x00\x00\x43\x00\x06\x28\x8c\x23\x29\x48\xa1\x42\x6b\x7a\xc0\x74\
\xa5\x9e\xd2\x9b\xcf\x9a\xcc\x97\xec\x94\xc8\x90\xfa\x94\xc8\x90\
\xfa\x99\xcc\x96\xec\x99\xd1\x95\xcf\x6d\xbb\x68\xa5\x40\x9e\x3a\
\x6a\x19\x85\x13\x29\x00\x46\x00\x06\x00\x58\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x80\x01\
\xff\xfe\x00\x00\x7f\xfc\x00\x00\x3f\xf0\x00\x00\x0f\xf0\x00\x00\
\x0f\xe0\x00\x00\x07\xc0\x00\x00\x03\x80\x00\x00\x01\x80\x00\x00\
\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x01\x80\x00\x00\
\x01\xc0\x00\x00\x03\xe0\x00\x00\x07\xf0\x00\x00\x0f\xf0\x00\x00\
\x0f\xfc\x00\x00\x3f\xfe\x00\x00\x7f\xff\x80\x01\xff\
\x00\x00\x02\x9e\
\x00\
\x00\x10\xbe\x78\x9c\xcd\x97\xbf\x4f\x53\x51\x14\xc7\xcf\x23\xb1\
\x0c\x26\x5a\x63\x62\x22\x43\x29\xc9\x1b\x9c\x48\xd8\xa5\xad\x6b\
\xf9\x0f\xec\x62\x22\x13\x61\x70\x32\x6e\x90\x30\x98\x34\xe9\x24\
\x5b\x97\xba\x39\xb9\x89\x01\x75\x60\x2d\xe0\xe4\xc2\x02\x05\x5c\
\xdb\x38\x38\x94\x4a\x79\x7e\x4f\xdf\xf7\xfa\xae\xcf\xb6\xf6\xd5\
\xbe\x3e\x5f\xf3\x69\x5e\xee\x3b\xe7\x7c\xcf\xfd\x7d\xaf\x88\x83\
\x5f\x36\x2b\xfa\x2f\x6f\xd2\x22\xf7\x44\xe4\x01\x40\x91\x14\xc4\
\x2f\xef\x3d\xf8\x76\xf7\xa6\xcf\x28\x8f\x3b\xff\xd6\x90\x02\x4b\
\xe0\x39\xd8\x01\x0d\xd0\x06\x1e\x69\xb3\x6c\x87\x36\x4b\xf4\xe9\
\xf9\x8f\xf3\x58\xba\x05\x50\x03\x5f\x41\xd7\xd2\xec\x80\xef\xa4\
\x63\x95\x77\x69\x5b\xa3\x6f\x2a\x4a\x0e\x56\x9d\x17\xc0\x36\x68\
\x59\x7a\x5f\x40\x15\xac\x81\x22\xc8\x91\x22\xcb\xaa\xb4\x31\xf9\
\xb4\x18\x23\x3b\x4a\x5b\x58\xda\x79\x70\xc0\x18\x97\xe0\x13\x78\
\x0c\xee\x83\x99\x7e\x71\xe8\x37\x43\x9b\x12\x7d\x2e\x19\xa3\xce\
\x98\x03\x73\xb0\xb4\x57\xc0\x29\xfd\xce\xc1\x3a\x48\x8f\xda\x97\
\x56\x9c\x34\x7d\xcf\x19\xeb\x94\xed\xf4\x47\x9c\x50\xbd\x4f\x68\
\x7f\x08\x1e\x02\x67\x9c\x31\xc4\x78\x0e\x63\x1c\x32\xe6\x49\xbf\
\x76\xb0\xfa\xbb\x6e\x69\x2f\xfe\xcb\xf8\x0d\xd5\x6b\xd1\xca\xa1\
\x4e\x2d\xdb\xe6\x06\xc7\x89\x7e\x3f\x63\xce\x28\x3f\x06\x4d\x25\
\x03\x56\x41\x19\x54\xfe\x42\x99\xb6\x19\xdf\xf7\xd8\x68\x2c\x5b\
\x7d\xf1\x8a\x9a\xe6\xdb\x23\x8e\xd5\x1f\xec\x33\x94\xed\x19\x6d\
\xcc\xa1\xe6\x67\x80\x79\xd5\xf4\x46\xa4\x4b\x9f\x82\x1f\x63\xcf\
\xe8\xac\x53\xa3\xc5\xb9\x69\xea\x5e\x63\x5e\x1f\xc0\x1d\xbf\xfc\
\x57\xbd\x8f\x22\xe8\x86\x39\x0a\xda\xa1\xa7\xa5\xb1\x3f\x52\xab\
\x46\x6d\x5d\xab\x2e\x98\x57\xc9\xb7\xdb\x35\xfa\xab\x11\xeb\xdd\
\xaf\x1d\x9e\xfa\xb1\xde\x9b\x1c\x4a\xd4\xba\x70\x83\x35\x55\xf3\
\xd1\x75\x63\xce\xaa\xbb\xb0\x2f\xc7\xd5\x36\x94\x83\x78\x3d\xfd\
\x39\x6a\x79\xd4\x7e\xc7\xf7\xaa\x99\x6b\x96\x7e\x65\x02\xfa\x95\
\x90\xbe\x43\x2d\x8f\xda\x0d\xbe\xaf\x05\xe3\x31\x56\x7d\xa1\x96\
\xe7\x06\xfb\x58\xc7\xac\x4d\xfe\x9c\x8c\x47\xdf\x9a\xef\x45\x6a\
\x9a\x3d\x54\xf7\xb0\xdc\x14\xf5\x73\xd4\xf4\xfe\x03\xfd\xa4\xdb\
\x3f\xe9\xf1\x97\xf4\xfc\x4b\x7a\xfd\x19\xb6\xfe\xea\xda\x39\xa1\
\xf5\x77\x77\xd0\xfa\x9b\xf4\xfe\xa3\xe5\xba\x17\x26\xb5\xff\x86\
\xcf\x1f\x7a\x46\x58\x76\xe3\x3d\x7f\x6c\x9b\xba\x27\x7d\xfe\x0a\
\xd9\xe5\xdd\xe0\xec\x3b\xb5\xf3\x67\x28\x87\x38\xcf\xdf\x2b\xc3\
\xe2\x84\xda\xc1\xbe\x7f\xe8\x98\x8d\x72\xff\x50\x5b\xfb\xfe\x71\
\x30\xa8\xde\x43\x72\x98\xe4\xfd\x6b\x21\xea\x58\x72\x7f\xbf\x7f\
\xbe\x76\xa7\x74\xff\x1c\xd0\x16\xb1\xdd\xbf\xbd\x4d\xc7\xbb\x16\
\xd9\xb8\x12\xc9\xb7\x67\x1b\xf3\xdf\xf2\x57\xb7\x1b\x1b\xd7\xb3\
\xfb\x9e\xb7\xb5\xb5\xe9\xec\xbf\x14\x39\x4b\x89\x3c\xb9\x25\xf2\
\xcc\x90\x11\x79\xd1\x0f\xdb\x46\x7d\xd4\x57\x63\x68\x2c\x8d\xa9\
\xb1\x55\x43\xb5\x54\x53\xb5\x7f\x02\x6e\x1e\x89\xb4\
\x00\x00\x07\x3f\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x07\x06\x49\x44\x41\x54\x58\x85\xed\x97\x7f\x4c\x93\xf9\
\x1d\xc7\xdf\xed\xf3\xb4\xf4\xb7\x0f\xc5\xf2\xa3\x94\xd2\x02\x96\
\x43\xa4\x32\x50\x04\xcf\x73\x24\x87\x4e\xa7\x31\xb9\x8b\x51\x56\
\x37\x9c\xe7\x8d\xcd\x23\xd9\x08\xb7\x18\x93\x8d\x38\x20\xc4\x9d\
\xec\x94\xe4\x58\x94\x99\x88\x0c\x17\x33\x65\x77\xf5\x40\x32\x61\
\x89\x90\x83\xe1\xb1\x11\xcf\x8a\x0c\xa9\xe5\xa0\x29\x2d\x85\x52\
\xfa\x83\x52\xfa\xeb\xe9\xfe\x10\x36\x86\x80\x70\xb7\x1f\xff\xec\
\x9d\x3c\xc9\xf3\xeb\xf3\x79\xbf\xbe\x9f\xef\xf7\xf9\x3c\xcf\x03\
\xfc\x8f\xc5\x58\x7e\xe2\xdd\xdf\x17\x0b\x12\x64\xa9\x3f\x16\x47\
\xc6\xa6\xd9\xa6\xac\xb7\x2a\xbe\x59\xd6\xf6\x9f\x04\x60\x2e\x3d\
\x50\xbd\x27\x11\x4c\x58\x47\x7a\x08\x22\x54\x2d\x8d\x8d\xff\xae\
\x54\x2a\xff\xe4\xfd\x7b\xbf\xd8\xf6\x5f\x03\x70\xd9\x9c\x9a\x69\
\xbb\x51\x6d\xb5\x8e\x60\xc6\x31\x01\x82\x41\xb3\xa7\x6d\x43\x4d\
\xa7\x7e\x5b\xc2\xfe\x3a\x26\x67\xce\x9c\xc1\xc3\x87\x0f\x0b\xec\
\x76\xfb\x87\x7e\xbf\xff\xed\x55\x01\x3c\x93\x01\x97\xc5\x38\x0e\
\xbd\xe1\x11\xfe\x36\xd4\x8b\x47\x4f\xb4\xd8\xbe\x7d\x4f\xa6\xd5\
\xda\x5b\xbe\x11\xc3\xab\x57\xaf\x46\x2f\xee\x97\x95\x95\x89\x0a\
\x0b\x0b\xef\xaa\x54\xaa\x0e\x82\x20\xca\x3c\x1e\xcf\xf0\x9d\x3b\
\x77\xaa\x26\x27\x27\x7f\xfe\x12\x80\xdf\x89\x66\x87\xc9\xdb\x6d\
\x19\x1f\xc5\x17\xba\x16\x24\xc4\x7f\x03\xfa\xe7\x0f\x90\x9b\x7b\
\xe8\xdc\xa1\x0f\x72\x77\xac\x17\x80\xa2\xa8\x7e\x87\xc3\xd1\xf3\
\xec\xd9\xb3\xa2\xfc\xfc\xfc\xde\xc4\xc4\xc4\x23\x6e\xb7\x1b\x33\
\x33\x33\x7f\xd4\x68\x34\xa6\x98\x98\x98\x52\x81\x40\xf0\xad\x97\
\x00\x7c\x8f\xc2\x41\xbf\x2b\x7c\x22\x30\x67\x77\xcc\x79\x69\x3c\
\xfa\xe2\x2e\x14\x8a\x1d\x08\x05\x3d\xa4\x42\x29\x6f\x3c\xd5\x78\
\x86\xf3\x2a\xf3\xec\xec\x6c\x4e\x30\x18\x94\xda\xed\xf6\xdd\x11\
\x11\x11\x8d\x19\x19\x19\x5b\x9d\x4e\x27\xfa\xfa\xfa\xa0\xd3\xe9\
\xaa\x95\x4a\x65\x91\x52\xa9\x14\x78\xbd\x5e\xc5\x4b\x00\x00\x30\
\xf7\x30\x6c\x9c\x1e\x0b\xfd\x60\xde\x3d\x05\x9b\xdd\x0c\x8b\x65\
\x04\x74\x78\x0e\xa9\xa9\x79\x5b\xfd\xde\xa7\xd5\xaf\x02\x50\xa9\
\x54\xb1\x71\x71\x71\xcc\x4f\x3f\x6d\xc1\xb5\x6b\xbf\x81\xcd\x66\
\x03\x45\x51\xc8\xca\xca\x82\x5c\x2e\x6f\x2a\x2e\x2e\xfe\xc0\xeb\
\xf5\xc2\x66\xb3\x71\x56\x04\x00\x00\x6b\x1b\xdd\xec\x9e\xf0\x5d\
\xf7\xb8\x3d\xf8\xf2\xcb\x2e\x08\x04\xc9\xb0\x98\x3f\x47\x66\xd6\
\xfe\xd2\xe3\x1f\xed\xdd\xb3\x16\x40\x61\x61\xe1\x61\x2a\x92\xc2\
\xac\xdb\x09\x2e\x9b\x44\xff\x5f\xff\x02\x16\x8b\x05\x8a\xa2\xa0\
\x50\x28\x14\x4a\xa5\x92\x23\x91\x48\x20\x12\x89\x6c\xab\x02\x00\
\x80\x69\x38\xf4\x93\x79\xbb\x73\x78\xc6\x11\xc4\xd0\xe0\x27\x90\
\x26\xbc\x0e\xff\xbc\x85\xa9\x4c\x4a\x69\x3c\x71\xed\x1d\xc1\x4a\
\x31\xc5\xc5\xc5\xcc\xf8\xf8\xf8\x92\xe1\x61\x3d\x1e\x74\x75\x42\
\x3f\x3a\x86\x3d\x6f\xec\x85\xc9\x64\xc2\xf0\xf0\x30\x0c\x06\x03\
\xc6\xc6\xc6\x60\xb1\x58\x60\x32\x99\x1a\x01\x80\x58\x0d\x20\x68\
\x86\xdf\xc3\x09\xfd\x59\x12\x13\x3c\x15\x22\x58\x04\x9b\x60\x82\
\xa2\xa2\xb0\x49\x24\x8d\xb4\x9a\x3f\x27\x1f\xb7\x18\xff\xb4\x3c\
\xa6\xbc\xbc\xfc\x84\x44\x22\x29\x16\x8b\xc5\xb4\x5c\x2e\x0f\xc8\
\x13\x12\x18\xb1\xb1\x71\x0c\x92\x24\xc1\x62\xb1\xe0\x76\xbb\x61\
\x34\x1a\x1d\x3a\x9d\xee\xe2\xc9\x93\x27\x7f\xe9\xf3\xf9\xe8\x55\
\x01\x00\xc0\x6f\x84\x85\x21\xa1\xe7\x85\x14\x63\x3f\x30\x03\x49\
\xec\x2e\xf0\xf9\x11\xf0\xf8\x63\xd2\x7d\x89\xf3\x1f\x4e\x74\x8f\
\xd3\x8b\xf7\x5e\xb9\x72\x65\x77\x7c\x7c\xfc\x6d\x9d\x4e\xc7\x22\
\x08\x82\x91\x9c\x9c\x42\xc4\xc5\x49\x19\xe1\x70\x18\x4e\xa7\x73\
\xd2\x64\x32\xf5\xe8\xf5\xfa\x4b\x97\x2f\x5f\x7e\xef\xc6\x8d\x1b\
\xf7\x7c\x3e\x1f\x0d\x00\xe4\x5a\x00\x00\x60\x1d\x0d\x5d\x12\x0a\
\x1d\xfb\x00\xde\x7e\x2e\xbf\x0f\x09\x89\x79\x30\xdb\x8c\x3c\x22\
\x82\xf9\x0f\xf3\xaa\xaa\xaa\x7c\x99\x4c\x76\xd7\x6c\x36\xf3\xa2\
\xa2\xa2\x00\x00\xd3\xd3\xd3\x03\x83\x83\x83\x4d\x5a\xad\xb6\xb3\
\xa3\xa3\x63\x04\x80\x1d\x00\xbd\x3c\xff\x4b\xef\x82\x95\xc4\x56\
\x13\x94\x3c\x5d\x7c\x87\xb7\x39\xba\x60\x93\x54\x02\x59\x82\xc2\
\x9f\x9d\x96\xf7\x9d\x9f\x66\xff\xf0\xe3\xb3\x67\xcf\xbe\x9d\x93\
\x93\xf3\x3b\x00\x1c\x3e\x9f\x0f\x36\x9b\x1d\xf4\x7a\xbd\x55\x1a\
\x8d\xe6\xa2\xcb\xe5\x9a\x7f\x55\xee\x35\xa7\x60\x51\x21\x6b\x78\
\x3e\x6a\x87\xbc\x89\x1f\xb3\xa9\x61\xf4\xb3\xa1\xed\xf4\x6c\x20\
\x85\xe7\xe7\x12\x6f\xbc\xb6\x5b\x92\x9b\x9b\xdb\x20\x14\x0a\x59\
\x62\xb1\x18\x4c\x26\xd3\x66\x36\x9b\xdf\x3a\x7a\xf4\x68\x83\xcf\
\xe7\x0b\xae\x27\xf7\xba\x2a\xb0\x54\x1c\x15\xa1\xce\x90\x67\x96\
\x9c\x2f\xad\x78\xd7\xe7\xf3\x31\x65\x32\x19\xb8\x5c\x2e\x3c\x1e\
\xcf\x84\xd1\x68\xdc\x77\xfc\xf8\xf1\x81\x8d\xe4\x5b\xf5\x31\x5c\
\x4d\x9a\x3d\x27\x87\xbe\xff\xd6\x3b\x3c\xbd\x5e\xcf\x4c\x48\x48\
\x80\x44\x22\x41\x20\x10\x30\x19\x0c\x86\x37\x37\x6a\x0e\xac\x63\
\x11\x2e\x55\x5d\x5d\x9d\x68\xcb\x96\x2d\x7f\x10\x0a\x85\x05\x91\
\x91\x91\x78\xf2\xe4\x09\x68\x9a\xb6\x3f\x7d\xfa\xf4\xcd\xd3\xa7\
\x4f\x0f\x6f\xd4\x7c\x43\x00\xcd\xcd\xcd\x52\xb9\x5c\x7e\x8f\xcd\
\x66\x67\xaa\x54\x2a\x30\x18\x0c\x0c\x0d\x0d\x4d\xcc\xce\xce\x8a\
\xe5\x72\xb9\x0c\xc0\x57\x02\x58\xd7\x14\xd4\xd6\xd6\x6e\x8d\x8e\
\x8e\xee\x15\x08\x04\x99\x69\x69\x69\x20\x08\x02\x63\x63\x63\x23\
\x46\xa3\xf1\x75\xad\x56\x7b\x91\xa2\xa8\x86\x9b\x37\x6f\x52\x5f\
\x05\x60\x35\x28\x72\x11\xee\xdc\xb9\x73\xf9\xad\xad\xad\x33\x83\
\x83\x83\x61\x97\xcb\x15\x76\x3a\x9d\xe1\x81\x81\x01\x7d\x4d\x4d\
\x4d\x12\x00\x90\x24\xc9\xae\xa9\xa9\x79\xd0\xd7\xd7\xd7\xf4\xef\
\x30\x67\x03\xa0\x00\x6c\x06\x20\x2e\x29\x29\x29\xd6\x6a\xb5\xbe\
\xc7\x8f\x1f\x87\xcd\x66\x73\x78\x7c\x7c\x3c\xdc\xdf\xdf\xaf\xaf\
\xae\xae\x56\x2c\x0d\x52\xab\xd5\xf2\x5b\xb7\x6e\x59\xdb\xdb\xdb\
\x8f\x2d\x80\x2f\x6e\xaf\xd4\xf2\x3e\x10\x06\xc0\x60\xb3\xd9\xac\
\xd2\xd2\xd2\xca\x82\x82\x82\xca\xb8\xb8\x38\x82\xcf\xe7\xc3\xe7\
\xf3\xc1\x6c\x36\x3f\x6f\x6b\x6b\xdb\x77\xfe\xfc\xf9\x51\x00\x3c\
\x00\x11\x00\x38\x56\xab\x95\x69\xb3\xd9\x4c\x7b\xf7\xee\xbd\x94\
\x92\x92\xf2\x71\x67\x67\x27\x17\x80\x10\x80\x1f\xc0\x9a\xfd\x60\
\xf9\x22\xa4\x35\x1a\x0d\x33\x2f\x2f\xaf\x21\x29\x29\xe9\x30\x9f\
\xcf\x07\x00\x38\x9d\x4e\x38\x1c\x8e\xd1\x0b\x17\x2e\x7c\xaf\xb3\
\xb3\xd3\xbc\x10\x47\x2d\x40\x00\x00\xb3\xab\xab\xab\x3b\x35\x35\
\xb5\xed\xd8\xb1\x63\x8d\x24\x49\x9e\x0e\x06\x83\xc1\x85\xeb\x6b\
\x76\xc3\x7f\x69\x44\x55\x55\x55\xb2\x8c\x8c\x8c\x7b\x4c\x26\x53\
\x4d\x92\x24\xd8\x6c\x36\xc2\xe1\x30\x00\x4c\x34\x37\x37\x1f\xac\
\xaf\xaf\x37\x03\x10\x01\x58\xfc\x32\x9a\x5b\x18\xa5\x1f\x00\xcd\
\x62\xb1\xc8\xba\xba\xba\x8e\xe4\xe4\xe4\xee\xfb\xf7\xef\x97\xd7\
\xd4\xd4\xac\xd8\xff\x57\xac\x40\x6d\x6d\xed\xe6\xac\xac\xac\xcf\
\x3c\x1e\x0f\x2d\x16\x8b\x83\x2e\x97\x8b\xf4\x78\x3c\xe0\x72\xb9\
\x73\x3d\x3d\x3d\xa7\xea\xeb\xeb\x47\x17\x46\x44\x2f\x1b\x95\x1f\
\x80\x0b\x80\x3f\x10\x08\xd0\x6e\xb7\x7b\x70\x76\x76\xf6\x47\xbb\
\x76\xed\x92\x03\x38\xb4\x96\x39\xb0\x64\xa1\xec\xdc\xb9\xf3\x7d\
\x81\x40\x30\x72\xf0\xe0\xc1\xed\x06\x83\xe1\x57\x22\x91\x08\x1c\
\x0e\x27\xd8\xdd\xdd\xfd\xb3\x8a\x8a\x8a\xc1\x85\x91\xfb\x01\x4c\
\x00\x18\x01\xf0\x1c\x80\x09\x2f\xe6\x38\x1a\x80\x0c\x80\xb8\xa5\
\xa5\xa5\x71\x6a\x6a\xca\x2f\x95\x4a\xbf\xdd\xda\xda\x7a\x60\xdd\
\x00\xc1\x60\x90\x47\x92\x24\x6f\xdb\xb6\x6d\xcc\x98\x98\x18\x5e\
\x44\x44\x04\xdd\xdb\xdb\x7b\xb1\xb2\xb2\xb2\x19\xc0\xec\x82\xb1\
\x1d\x2f\xca\xbe\x58\x56\xff\xc2\x39\x13\x00\x07\x00\x59\x57\x57\
\x97\xfd\xfa\xf5\xeb\x97\x42\xa1\x10\xad\x56\xab\x2f\xe4\xe4\xe4\
\xac\xaf\xdd\x1f\x38\x70\xe0\xb5\xd6\xd6\x56\x43\x7f\x7f\xff\x74\
\x7b\x7b\xbb\xb3\xa8\xa8\xe8\xd7\x00\x54\xf8\xe7\x7c\xaf\x47\x24\
\x00\x31\x00\xd5\x91\x23\x47\xaa\x6f\xdf\xbe\xdd\x95\x9e\x9e\x1e\
\xbb\x91\xe0\xa4\xa8\xa8\xa8\xc3\x00\x76\xe3\x45\x59\xbf\xce\x1f\
\x11\x89\x25\x0d\xed\xff\x5a\x4d\x7f\x07\x6a\xa1\xe2\xb3\x20\x58\
\x2b\xdf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x07\x6a\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\
\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\xbb\x7f\x00\x00\
\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\
\x9a\x9c\x18\x00\x00\x04\x71\x49\x44\x41\x54\x48\xc7\x95\x54\x5d\
\x68\x53\x67\x18\x7e\xbe\x9f\x93\x93\x93\x36\xe9\x0f\xa4\x69\x15\
\xb7\x62\x68\x19\xb2\xb2\xd5\x6d\x22\x0e\x9c\xe2\x2a\xb8\xc9\x2e\
\xd7\x4b\x11\x36\x27\x43\x90\x81\x82\x20\xba\x8b\x8d\x22\xee\xca\
\x8b\x0d\x2f\x05\xbd\x2d\x63\x50\xbc\xe9\x26\x88\x38\x07\xb9\xb0\
\x0e\xc1\xad\x13\xad\xb3\x2e\xb6\x69\xd2\x64\x39\x39\x7f\xdf\xdf\
\x2e\xb6\x93\xa6\x31\x55\xf7\xc1\xcb\xfb\x7e\x07\xbe\xf7\x39\xcf\
\xf3\xfe\x10\xb4\x9d\xdb\xb7\x6f\x83\x31\x36\x51\x2c\x16\x8f\xad\
\xac\xac\xc0\xb2\x2c\xd8\xb6\x0d\xc6\xd8\x33\x46\x29\x6d\xbe\x33\
\xc6\x34\x63\x21\x04\xd2\xe9\x34\xc9\x66\xb3\xbf\x70\x74\x38\x94\
\xd2\x57\x5c\xd7\xfd\x68\x76\x76\x16\x52\x4a\x50\x4a\x9b\x46\x08\
\x59\xe7\x5b\x4f\x0c\x62\x8c\xc1\xc4\xc4\x04\x72\xb9\x9c\xe9\x08\
\x40\x08\x81\x94\x12\x95\x4a\x05\x61\x18\x36\x13\xc6\xd6\x7e\x8f\
\xad\x15\x28\x0c\x43\x10\x42\xd0\x11\x00\x00\xb4\xd6\x08\xc3\x10\
\x41\x10\xac\x4b\xf8\x3c\xb0\x98\x11\x21\xa4\xc9\x66\x43\x06\xc6\
\x18\x04\x41\x00\xdf\xf7\x9f\x91\x66\xa3\xe4\xad\xb1\x52\x6a\x63\
\x80\x98\xc1\xf3\x00\x3a\xc5\x31\x03\x63\x0c\x84\x10\x2f\x06\xf0\
\x3c\x0f\x9e\xe7\x75\xd4\xbc\xfd\x5b\x9c\x58\x4a\x09\xa5\xd4\x5a\
\x0d\x0a\x85\xc2\x70\xbd\x5e\x4f\xa7\x52\x29\xe3\x38\x0e\x1c\xc7\
\x91\xc6\x98\xcd\x8e\xe3\x20\x9b\xcd\x22\x8a\x22\x58\x96\xb5\x2e\
\x61\x6b\x31\x95\x52\x50\x4a\xa1\x54\x2a\xa1\x56\xab\x35\xbb\x4d\
\x6b\xfd\x2f\x03\xc6\xd8\xd7\xc5\x62\xf1\xc0\xfc\xfc\xbc\xb6\x2c\
\x0b\x9c\x73\x63\x59\x96\x43\x08\xc1\xbe\x7d\xfb\x40\x08\xd9\xb0\
\xe7\xb5\xd6\xa0\x94\x62\x7c\x7c\x1c\x97\x2f\x5f\xc6\xcc\xcc\x4c\
\xf3\x67\x9a\x45\xa6\x94\xa6\xcb\xe5\x72\x7f\xa1\x50\xd8\xb0\x88\
\xb1\x6f\xef\x10\x63\x0c\x1c\xc7\xc1\x8e\x1d\x3b\xc0\x39\x47\x14\
\x45\xf1\x1c\xad\x31\x00\xd0\xd4\xec\x65\xb4\x6e\x05\x8b\xdf\x6a\
\xad\x21\xa5\x5c\x07\xa0\x94\x5a\x9b\x03\xa5\x14\x82\x20\x78\xa9\
\xc4\xed\x31\xe7\x1c\xc6\x18\x64\x32\x19\xe4\x72\x39\x50\x4a\xc1\
\x18\x83\x6d\xdb\x50\x4a\xad\x01\xf8\xbe\xff\xbf\x93\xc7\x77\x6d\
\x0c\x3e\x3d\x72\xc4\xff\x78\x72\x52\x3c\x5c\x58\x40\x4f\x3a\x4d\
\x87\x86\x86\x78\xb9\x5c\x0e\x38\x21\xa4\xc9\x20\xd6\xf8\x45\xb5\
\x88\x25\x92\x4a\xc1\x08\x01\x52\x2e\xa3\xcf\xb6\x7f\xe8\x2d\x97\
\x6f\xa6\xa2\x08\x76\x2e\xf7\x07\xed\xe9\xf1\xdc\x5a\xad\xc2\x01\
\x40\x4a\x89\x46\xa3\x01\xc6\x58\xc7\x1d\x13\x9b\x31\x66\xad\x35\
\xb5\x86\xad\x14\x3e\x88\x22\x90\x13\x27\x70\x5f\x88\x83\x3a\x0c\
\xdf\xa7\x5a\x1b\x95\x4c\x5e\xaa\xbd\xf1\xe6\x57\x49\xaf\x51\xe7\
\x84\x10\x04\x41\x80\xa5\xa5\x25\x30\xc6\xc0\x39\x5f\xb7\x39\x3b\
\xae\x12\x4a\xd1\x45\x08\x3e\xac\xd7\xf1\x6e\x36\x8b\xc8\xb6\xe1\
\x3d\x7e\xdc\x0d\xa0\x9b\x6f\xdd\x0a\x26\xc4\x17\xfc\xf7\xdf\xba\
\xee\x8d\x8e\x9e\xe5\xad\xdb\xaf\x5d\xa2\x56\xdf\x1a\x33\x4a\x71\
\xc0\xf7\xb1\x37\x91\xc0\xf0\xb9\x73\x48\x0e\x0f\xe3\xd7\x63\xc7\
\x20\x09\xc1\xc0\x99\x33\xa8\xdf\xbd\xcb\xc5\xf9\xf3\x9f\x8c\xcc\
\xcd\xa9\x26\x40\x6b\x6f\x1b\x63\x40\x08\x69\x0e\x52\xec\x63\x00\
\x4e\x08\xf2\x42\xc0\x48\x89\xca\xcd\x9b\x78\x7d\xff\x7e\xbc\x7d\
\xe9\x12\xfc\x30\x44\xc8\x39\x9e\x5c\xb9\x02\xbf\x5e\x4f\x50\xad\
\x77\x77\xdc\x45\xad\x80\xf1\x56\x8c\xfb\x9b\x10\x02\x50\x0a\xa9\
\x35\x94\x31\x78\x70\xf1\x22\x92\xf9\x3c\xc6\x8e\x1f\x87\x10\x02\
\x3f\x4f\x4d\x61\x71\x7a\x1a\x29\xad\x41\x01\xf0\x6a\xb5\x8a\x2d\
\x5b\xb6\x60\x72\x72\x12\x9c\xf3\x66\xa1\xdb\xa7\x77\x9d\x4c\x52\
\x62\x70\x66\x06\xfa\xe9\x53\xf4\xee\xdc\x89\xbe\x5d\xbb\x50\x2d\
\x95\xe0\x24\x93\x18\x39\x78\x10\x0b\x57\xaf\xc2\x2d\x14\x90\x00\
\xc0\x2b\x95\xca\xad\x7c\x3e\xaf\xc7\xc6\xc6\x8c\xe3\x38\xb0\x6d\
\xdb\xfc\x07\x64\x28\xa5\x49\xa5\xd4\x6e\xdb\xb6\xd3\x5a\xeb\x28\
\x91\x48\xdc\x60\x8c\x55\x23\xd7\x25\xf7\x6e\xdd\xda\x16\x79\xde\
\x6b\xdb\x4e\x9f\x86\x35\x30\x80\x1b\x27\x4f\xc2\xea\xee\xc6\x9e\
\xa9\x29\xbc\x75\xea\x14\xae\x1d\x3a\x04\xdf\x75\x9f\x70\x00\xdf\
\x00\x20\xfd\xfd\x7d\x64\xf3\xa6\x4d\xc4\x75\x5d\x6e\x0c\x12\x20\
\x84\x55\x2a\x95\xd1\x54\x2a\x35\xde\xd5\xd5\x95\x5e\x5e\x5e\x96\
\xab\xab\xab\xdf\x0d\x0e\x0e\x5e\xef\x1b\x19\x91\x25\x21\x46\x89\
\xe7\x7d\xfb\xf0\xc2\x85\x77\x44\x26\x83\xe2\xf4\x34\x7c\x42\x20\
\x5c\x17\x7f\x17\x8b\xa8\xba\xee\x4f\x21\x70\x92\x1c\x3e\x7c\x18\
\x77\xee\xcc\xd1\xa3\x47\x3f\xdf\x33\xbe\x7d\xfb\x7b\xd9\x6c\x36\
\x2f\x44\x94\xf3\x3d\xaf\x37\x12\x51\xbf\x92\xea\xd5\xa4\xe3\xb0\
\x46\xa3\x61\x12\x89\xc4\xa2\x93\x4c\x96\x40\x48\x8d\x70\xab\xf8\
\x60\xf6\x47\x7b\xf1\xcb\xb3\x3b\x53\x2b\xa5\xcd\x21\x80\x10\x40\
\x00\xa0\x02\x5c\x2b\x01\x9f\x75\x01\xf7\xb9\x31\x06\x3d\x99\x8c\
\x29\xad\xac\xcc\x3d\x7a\xf4\x78\x59\x2a\xb3\xa9\x56\xab\x0e\x3c\
\xfd\x6b\x71\x20\x9d\xc9\x38\xb9\xc1\x21\xde\x6d\x25\xa8\xe3\xc0\
\x54\xab\xab\x72\xe1\xe1\x42\xe0\x7a\x7e\xd9\xb6\x9d\x25\x2f\x3b\
\xf8\xe7\xbc\x6d\x67\xba\x81\xbd\x1a\x60\x12\x40\x04\x88\x55\xe0\
\xfb\x5e\xe0\xfe\x75\x00\xff\x00\x96\xd4\x4a\xb8\xf3\x11\xb2\x7b\
\x00\x00\x00\x25\x74\x45\x58\x74\x63\x72\x65\x61\x74\x65\x2d\x64\
\x61\x74\x65\x00\x32\x30\x30\x39\x2d\x31\x30\x2d\x32\x37\x54\x31\
\x38\x3a\x34\x30\x3a\x33\x34\x2b\x30\x31\x3a\x30\x30\xd5\x51\xba\
\xe6\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\
\x65\x61\x74\x65\x00\x32\x30\x31\x33\x2d\x30\x34\x2d\x30\x33\x54\
\x31\x37\x3a\x31\x38\x3a\x30\x32\x2b\x30\x38\x3a\x30\x30\xe3\xaf\
\x0a\x43\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\
\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x32\x2d\x30\x37\x2d\x32\x37\
\x54\x32\x33\x3a\x31\x38\x3a\x30\x32\x2b\x30\x38\x3a\x30\x30\x9a\
\x59\xc3\x9b\x00\x00\x00\x25\x74\x45\x58\x74\x6d\x6f\x64\x69\x66\
\x79\x2d\x64\x61\x74\x65\x00\x32\x30\x30\x39\x2d\x31\x30\x2d\x32\
\x37\x54\x31\x38\x3a\x34\x30\x3a\x33\x34\x2b\x30\x31\x3a\x30\x30\
\x8a\xe0\xcc\xd2\x00\x00\x00\x4d\x74\x45\x58\x74\x73\x6f\x66\x74\
\x77\x61\x72\x65\x00\x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\
\x20\x36\x2e\x38\x2e\x38\x2d\x37\x20\x51\x31\x36\x20\x78\x38\x36\
\x5f\x36\x34\x20\x32\x30\x31\x34\x2d\x30\x32\x2d\x32\x38\x20\x68\
\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6d\x61\x67\x65\x6d\
\x61\x67\x69\x63\x6b\x2e\x6f\x72\x67\x59\xa4\x5f\x7f\x00\x00\x00\
\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\
\x6d\x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\
\x2f\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\
\x49\x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\x74\x00\x31\x32\
\x38\x43\x7c\x41\x80\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\
\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\
\x00\x31\x32\x38\xd0\x8d\x11\xdd\x00\x00\x00\x19\x74\x45\x58\x74\
\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\
\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\
\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\
\x65\x00\x31\x33\x34\x33\x34\x30\x32\x32\x38\x32\xe9\xf1\x9b\x9c\
\x00\x00\x00\x13\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\
\x69\x7a\x65\x00\x37\x2e\x38\x35\x4b\x42\x42\x10\x1f\x0e\x78\x00\
\x00\x00\x62\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\
\x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x66\
\x74\x70\x2f\x31\x35\x32\x30\x2f\x65\x61\x73\x79\x69\x63\x6f\x6e\
\x2e\x63\x6e\x2f\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\
\x63\x64\x6e\x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\
\x2e\x63\x6e\x2f\x70\x6e\x67\x2f\x31\x30\x37\x38\x34\x2f\x31\x30\
\x37\x38\x34\x36\x39\x2e\x70\x6e\x67\xb4\x9e\xcd\x45\x00\x00\x00\
\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x06\xea\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\
\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\
\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\
\x9a\x9c\x18\x00\x00\x04\x57\x49\x44\x41\x54\x48\xc7\x7d\x55\x3d\
\x6f\x1c\x55\x14\x3d\xf7\xde\x37\x5f\x1b\xef\x3a\xb1\x31\xb6\x13\
\x0b\x23\x45\x0a\xa2\x8a\x12\x3a\x0a\x02\x05\x05\x05\xfc\x05\x14\
\x09\xa1\x08\xf1\x33\xe8\x90\x28\x23\xf1\x2f\x28\xe9\x10\xa2\x20\
\x22\x45\x92\x8a\x02\x8b\xac\x15\x27\xb6\x37\xf6\xee\x7a\xb3\x9f\
\x33\xf3\xee\xa5\x78\xb3\x1f\xb6\x37\x3c\x69\x34\x4f\x6f\x76\xee\
\xd9\x73\xee\xb9\x67\x08\x17\xd6\x93\x27\x4f\x20\xc2\x9f\x1f\x9f\
\x74\xbe\xef\x23\x45\x9c\x66\x48\xe2\x18\xe2\x04\x22\x0c\x11\xa9\
\x2e\x06\x33\xcf\xde\x33\x9b\xd7\x28\x8a\x02\x71\x31\xa0\x6b\xb5\
\xe4\x91\xc3\x92\x45\xb0\xf7\x26\x88\xbe\xfa\x9b\x76\x61\x9a\x42\
\x0a\x02\x7b\x80\x99\x40\x42\x60\x0e\x17\x31\x81\xc2\x0b\xe7\x40\
\xcc\x14\x1f\x5a\x89\x35\x98\xbd\x05\x00\xf0\x46\xe8\x97\x11\x3c\
\x22\xb0\x07\x88\x2b\x80\x4b\xf7\xb0\x27\x9a\x03\xc1\x18\xa5\x86\
\xed\x52\x00\x80\xa0\xaa\x98\x4c\x3c\xbc\x6a\x55\x0c\x20\xa6\x85\
\x3b\x81\xd8\x2a\x36\x00\x09\xc0\x14\xc0\x00\x83\x56\x74\xde\x02\
\x00\x98\x1a\xc6\x13\x85\x57\x03\x11\xc0\x82\x59\xc1\x79\x61\x5a\
\x38\x03\x58\xc2\x1e\x50\xa8\x28\x08\xbc\x1c\x80\x08\x50\x05\xc6\
\x13\x45\xe9\x15\xbc\x58\xa4\x92\x85\xd9\xc0\x32\xdf\x07\x80\x00\
\x68\xa6\x28\x12\x03\xe8\x7f\x18\xa8\x2a\x86\x23\x8f\xd2\x29\x98\
\x11\x8a\xc8\x54\xa2\x29\x83\x70\x46\x0c\x30\x01\xc6\x04\x05\xe0\
\xcd\x23\x67\x05\xe0\xe0\x1e\x3f\x7e\xfc\x7e\xaf\xdb\xa9\xa7\x11\
\x5b\x96\xd5\x90\xb0\x96\x44\x7c\x23\x89\x04\x0d\x29\xa1\xae\x40\
\x24\x04\x96\xb9\xfe\xb3\x86\x12\xa0\x66\x50\x0f\xf4\xbc\xc3\xd0\
\x57\xbf\x83\x42\xaf\x28\x08\x80\x63\xc2\x0f\x67\x74\xe5\x8b\x3d\
\x7a\x57\x23\x1f\xc1\x4d\xc4\x22\xa1\x0c\xeb\xeb\xf8\x78\xcd\x81\
\x85\x21\xc2\x73\x4b\x02\x98\x5a\xde\xcc\x60\x65\x89\xf7\xa8\x87\
\xdf\x8e\x57\xf1\x57\x2b\x46\xe4\x0c\x04\x85\xfa\x4a\x22\x02\xea\
\x7d\x4b\xd6\x9a\xb6\x05\xf6\x0c\x36\x80\xfc\xdc\x31\xac\xa1\x30\
\x1b\x9d\xb7\x62\x05\x14\x71\x81\x9b\xd2\x03\xab\x21\xcf\x15\xe6\
\x09\x4c\x0a\xf5\xc1\xa7\x8e\x08\xf0\xa5\x21\x57\x0d\x56\x63\x2c\
\xf5\xfa\xac\x07\x14\x9e\x13\x07\x24\x35\x83\x1a\x50\x16\x86\x7c\
\x6c\xb0\x08\x20\x18\xbc\x5f\xb0\xa9\xf7\x8a\x51\xae\x10\xb7\xe8\
\x75\xbb\x60\x43\x5a\xda\x68\xa8\xc1\xd8\x90\xd8\x04\x2b\x3a\x01\
\xe7\x0a\x26\x0f\x87\x12\xaa\x3a\x05\x08\x9e\xe7\x92\xc0\x62\xb3\
\xc1\x3a\x57\x78\xd1\xf7\x32\x67\xa8\xe6\xa1\xce\xf0\xe5\x07\x3a\
\xf9\x6c\xd7\x97\xcd\xfd\x26\x1a\xf5\x06\xde\x59\x4d\xa5\xdd\xed\
\x8d\x67\x0c\xc6\x63\x0f\x76\x17\xa5\xb1\x85\xfc\x59\x9c\x85\xc0\
\x54\x89\x20\xaa\xf0\x89\xe1\x5a\xcd\xfd\xb4\x5e\x8f\x7e\x29\xba\
\xce\xad\xad\xa7\x04\x12\xe9\x0f\x26\xa7\x8e\x88\x50\x96\x8a\xe1\
\x48\x21\x6e\x6a\x47\x3a\x2f\x91\x54\x0d\x66\x0a\xd6\x24\xc0\x08\
\x30\x22\x64\xf0\xd0\xab\x06\x23\xda\x52\xc8\xce\xce\xee\xcd\xee\
\xfe\x8b\x83\xd6\x3f\x7b\xff\xee\x25\x71\x1c\x18\x8c\x73\xc5\xeb\
\x6e\x09\x17\x03\x4e\x08\x72\xd1\xf7\x0c\x80\x01\x22\xaa\x8c\x30\
\x7f\xee\x48\x61\x6a\x38\x39\x6d\x7f\xd4\x39\xeb\x47\x79\x9e\x3f\
\x3f\x6d\x77\x9e\x99\xd9\x8b\xa2\x2c\x03\xc0\x34\x77\xb8\x54\x10\
\x13\x44\x30\x63\xc2\xd5\x5e\xaa\x28\xe0\x4a\x2e\x91\x20\x9d\x43\
\x00\x68\xac\xd4\x1e\xde\xbe\x7d\xfb\x67\x22\x3a\x97\x08\x6e\x9a\
\xdf\x66\x21\x7f\xa0\x61\x32\xa7\x59\x13\x40\x0c\xbe\xfa\xc7\x22\
\xe1\xdc\xb3\x81\x85\x51\x90\x87\x99\x21\x8e\x93\xb2\xd9\x6c\x5e\
\x8a\x1c\x47\x14\x26\x52\xd5\x16\x66\x14\x80\x07\xa8\x0c\x49\x4a\
\x8c\x20\xdb\x39\x46\x14\x4c\x01\x0f\xad\x12\x77\xd9\x72\x67\xbd\
\x3e\x36\xb2\x1c\xf7\x36\x0f\x10\x45\x31\x44\x04\x44\x1c\x1a\x4c\
\x1c\x74\x67\x02\x13\xcf\x86\x30\xa4\xad\xc7\x59\xaf\x87\xb5\x7a\
\x82\x9a\x63\xbc\xe9\x0f\xe0\xd5\x2e\x03\xb4\x3b\xdd\x3f\x77\x1a\
\x89\xde\xda\xcc\x2d\xcb\x04\x49\xe2\x4c\x1c\xc3\x89\x33\x62\x4e\
\xbd\xf7\x9f\x24\x69\x5a\x57\xd5\x3c\x8e\xdc\x1f\xcc\xd2\x05\x8c\
\x46\xa3\x31\xf6\xf6\x3a\xb4\xb3\xb3\x03\xaf\x8a\x6e\xef\xcd\x3e\
\x2f\xa1\xe1\x00\xfc\x68\x00\x5d\x5b\x5f\xa7\x1b\xd7\xaf\xd3\x60\
\xd0\x77\x66\x14\x83\x48\xda\xed\xf6\xad\x5a\xad\x76\x67\x65\xa5\
\x5e\x6f\xb5\x5a\x65\xb7\xd3\x7d\xb8\xb5\xbd\xfd\x7b\x1c\x45\xbe\
\xd1\x58\x2d\xb6\xb7\xb7\xca\xf1\x78\xa2\x07\x2f\x5f\x1a\x01\xba\
\xf4\xdb\x72\xff\xfe\x7d\x3c\x7b\xf6\x94\x1f\x3c\xf8\xee\xd3\x3b\
\x77\xef\xde\xdb\xd8\xd8\xb8\x59\x14\xf9\xe6\x68\x38\xbc\x9a\x17\
\xf9\x9a\x2f\xfd\x6e\x9a\x65\x32\x18\x0c\x2c\x8e\xe3\x83\x2c\x4d\
\x5f\x83\xe8\x0c\xa0\x56\xaf\xd7\x7f\xfe\xea\xf0\xe8\xd1\xe1\xd1\
\xf1\xaf\x71\x14\x4d\xbe\xfd\xe6\xeb\xcb\x0c\xcc\x0c\xab\x8d\x86\
\xbd\x3e\x39\x79\xba\xbf\xff\xa2\x55\x7a\xbb\xde\xed\xb4\x37\x8f\
\x8f\x5e\x6d\xd4\x1b\x8d\x6c\x73\x6b\xdb\x65\x2c\x2e\xcd\x6a\xfe\
\xac\xdb\x2d\x9b\xcf\x9b\xe3\xfe\x70\x74\x9a\x24\xd9\xd1\x70\x38\
\x3a\x1c\x8e\x46\x87\x49\x92\x14\xde\xfb\xa5\x4d\xfe\x0f\x06\xd6\
\x24\x4d\xde\x33\xb5\x0b\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\
\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x33\x2d\x30\
\x34\x2d\x30\x33\x54\x31\x37\x3a\x31\x38\x3a\x30\x32\x2b\x30\x38\
\x3a\x30\x30\xe3\xaf\x0a\x43\x00\x00\x00\x25\x74\x45\x58\x74\x64\
\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x31\x2d\
\x30\x35\x2d\x31\x38\x54\x32\x33\x3a\x31\x37\x3a\x30\x30\x2b\x30\
\x38\x3a\x30\x30\x6c\x71\x1e\x30\x00\x00\x00\x4d\x74\x45\x58\x74\
\x73\x6f\x66\x74\x77\x61\x72\x65\x00\x49\x6d\x61\x67\x65\x4d\x61\
\x67\x69\x63\x6b\x20\x36\x2e\x38\x2e\x38\x2d\x37\x20\x51\x31\x36\
\x20\x78\x38\x36\x5f\x36\x34\x20\x32\x30\x31\x34\x2d\x30\x32\x2d\
\x32\x38\x20\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6d\
\x61\x67\x65\x6d\x61\x67\x69\x63\x6b\x2e\x6f\x72\x67\x59\xa4\x5f\
\x7f\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\
\x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\
\x31\xa7\xff\xbb\x2f\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\
\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\
\x74\x00\x31\x32\x38\x43\x7c\x41\x80\x00\x00\x00\x17\x74\x45\x58\
\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x57\
\x69\x64\x74\x68\x00\x31\x32\x38\xd0\x8d\x11\xdd\x00\x00\x00\x19\
\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x69\x6d\x65\x74\
\x79\x70\x65\x00\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x3f\xb2\x56\
\x4e\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\
\x4d\x54\x69\x6d\x65\x00\x31\x33\x30\x35\x37\x33\x31\x38\x32\x30\
\xc4\x9c\x0b\xbc\x00\x00\x00\x13\x74\x45\x58\x74\x54\x68\x75\x6d\
\x62\x3a\x3a\x53\x69\x7a\x65\x00\x31\x30\x2e\x35\x4b\x42\x42\xa5\
\xb3\x3a\x8b\x00\x00\x00\x5e\x74\x45\x58\x74\x54\x68\x75\x6d\x62\
\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\x2f\x68\x6f\
\x6d\x65\x2f\x66\x74\x70\x2f\x31\x35\x32\x30\x2f\x65\x61\x73\x79\
\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x65\x61\x73\x79\x69\x63\x6f\x6e\
\x2e\x63\x6e\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\
\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x70\x6e\x67\x2f\x34\x33\x33\x2f\
\x34\x33\x33\x36\x36\x2e\x70\x6e\x67\xd9\xcb\xc3\x3a\x00\x00\x00\
\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x10\xbe\
\x00\
\x00\x01\x00\x01\x00\x20\x20\x00\x00\x01\x00\x20\x00\xa8\x10\x00\
\x00\x16\x00\x00\x00\x28\x00\x00\x00\x20\x00\x00\x00\x40\x00\x00\
\x00\x01\x00\x20\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x01\x03\x03\x03\x09\x15\x16\x17\x11\x1c\x1d\x1d\x14\x12\x12\x12\
\x12\x01\x01\x01\x0b\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x35\x36\x37\
\x00\x17\x18\x19\x04\x70\x70\x72\x21\x98\x97\x98\x52\xa9\xa9\xaa\
\x82\xb5\xb4\xb5\xa6\xbb\xba\xbb\xb9\xbb\xbb\xbc\xc0\xbc\xbc\xbd\
\xbb\xb6\xb6\xb7\xa9\xa9\xaa\xab\x88\x92\x92\x93\x5a\x56\x57\x57\
\x2a\x03\x03\x03\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x5a\x5a\x5c\x00\x36\x37\x39\x05\x96\x96\x98\
\x35\xb6\xb5\xb7\x8f\xc3\xc0\xc2\xd6\xc5\xbd\xbc\xf7\xc2\xb1\xac\
\xff\xbd\xa2\x9a\xff\xba\x99\x8f\xff\xba\x98\x8e\xff\xbe\x9a\x90\
\xff\xc5\xa5\x9d\xff\xd0\xbc\xb7\xff\xdf\xd9\xd7\xf8\xe0\xe1\xe2\
\xda\xc1\xc3\xc4\x99\x79\x79\x79\x44\x0b\x0b\x0b\x0c\x7c\x7d\x7d\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12\x13\x14\
\x00\xff\xff\xff\x00\x8c\x8c\x8e\x1b\xb9\xb8\xbb\x86\xc7\xc3\xc5\
\xe5\xc1\xb0\xab\xff\xb1\x89\x7a\xff\xa5\x6b\x53\xff\xa4\x5e\x44\
\xff\xa8\x5b\x40\xff\xad\x5b\x41\xff\xb2\x5a\x40\xff\xb7\x58\x3f\
\xff\xba\x56\x3d\xff\xbb\x58\x40\xff\xbe\x67\x52\xff\xca\x92\x85\
\xff\xe0\xcc\xc7\xff\xdf\xdf\xdf\xe8\xb0\xb0\xb1\x94\x50\x4f\x4f\
\x2b\x00\x00\x00\x02\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x45\x45\x00\xff\xff\xff\
\x00\x9d\x9c\x9d\x36\xbf\xbd\xbf\xbe\xc4\xb7\xb4\xfd\xaa\x7e\x6c\
\xff\x96\x52\x35\xff\x96\x4c\x2d\xff\x9c\x52\x35\xff\xa3\x58\x3c\
\xff\xa9\x5c\x41\xff\xaf\x5d\x43\xff\xb4\x5d\x43\xff\xb9\x5b\x42\
\xff\xbd\x58\x3f\xff\xc1\x54\x3b\xff\xc4\x4f\x35\xff\xc3\x49\x30\
\xff\xbf\x52\x3a\xff\xc6\x87\x78\xff\xd6\xc9\xc6\xfd\xbf\xbe\xbf\
\xc9\x70\x6f\x6f\x4b\x00\x00\x00\x05\x0e\x0e\x0e\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x51\x51\x52\x00\xff\xff\xff\x00\xa7\xa5\xa6\
\x41\xbf\xbb\xbc\xd6\xb9\xa2\x99\xff\x96\x56\x3b\xff\x8b\x3d\x1b\
\xff\x90\x45\x24\xff\x96\x4c\x2e\xff\x9b\x53\x35\xff\xa1\x57\x3b\
\xff\xa6\x5a\x3f\xff\xa8\x5e\x46\xff\xab\x5c\x45\xff\xb3\x58\x40\
\xff\xbb\x59\x40\xff\xbf\x56\x3d\xff\xc2\x52\x39\xff\xc4\x4f\x36\
\xff\xc6\x4c\x33\xff\xc3\x49\x2f\xff\xbd\x61\x4b\xff\xca\xae\xa7\
\xff\xc3\xc1\xc2\xde\x7a\x79\x79\x58\x00\x00\x00\x05\x0e\x0e\x0e\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x1d\x1d\x1d\x00\xcb\xc7\xc8\x00\xa7\xa5\xa6\x33\xbf\xbb\xbc\
\xd5\xb5\x98\x8c\xff\x8f\x46\x27\xff\x87\x37\x14\xff\x8b\x3d\x1b\
\xff\x8f\x44\x23\xff\x94\x4b\x2b\xff\x9a\x51\x33\xff\xa1\x5b\x40\
\xff\xb3\x8b\x7e\xff\xbf\xac\xa7\xff\xbe\xaa\xa4\xff\xaf\x7f\x72\
\xff\xb2\x58\x41\xff\xbd\x58\x3f\xff\xc0\x55\x3c\xff\xc2\x53\x3a\
\xff\xc3\x51\x38\xff\xc4\x50\x36\xff\xc3\x4d\x34\xff\xbc\x57\x3f\
\xff\xc6\xa3\x9a\xff\xbf\xbd\xbe\xde\x6e\x6c\x6d\x49\x00\x00\x00\
\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xa9\xa7\xa8\x00\x9f\x9d\x9e\x16\xbc\xba\xbb\xba\xb9\xa1\x98\
\xff\x92\x47\x27\xff\x89\x37\x13\xff\x89\x39\x17\xff\x8a\x3c\x1a\
\xff\x8e\x42\x21\xff\x92\x48\x29\xff\x97\x4e\x2f\xff\xae\x82\x71\
\xff\xc5\xc0\xc0\xff\xc4\xc0\xc0\xff\xc6\xc2\xc3\xff\xc9\xc2\xc1\
\xff\xb0\x72\x61\xff\xb9\x58\x3f\xff\xbd\x58\x3f\xff\xbf\x56\x3d\
\xff\xc0\x55\x3c\xff\xc1\x54\x3b\xff\xc1\x53\x3a\xff\xc1\x51\x38\
\xff\xb9\x5a\x42\xff\xc6\xab\xa4\xff\xb2\xb1\xb1\xc7\x4b\x4a\x4a\
\x29\xcb\xc8\xc8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7b\x7b\x7c\
\x00\x00\x00\x00\x01\xb8\xb6\xb7\x7c\xbe\xb0\xad\xfd\x9b\x57\x3a\
\xff\x8d\x39\x14\xff\x8c\x3a\x16\xff\x8b\x3a\x17\xff\x8b\x3c\x19\
\xff\x8e\x40\x1e\xff\x91\x46\x26\xff\x96\x4c\x2d\xff\xb0\x8f\x83\
\xff\xbb\xb7\xb8\xff\xb8\xb2\xb2\xff\xb9\xb4\xb4\xff\xc4\xc0\xc0\
\xff\xb7\x85\x77\xff\xb5\x59\x40\xff\xb9\x5b\x42\xff\xbc\x59\x40\
\xff\xbd\x58\x3f\xff\xbe\x57\x3e\xff\xbe\x57\x3e\xff\xbe\x56\x3d\
\xff\xbd\x54\x3b\xff\xb7\x67\x52\xff\xc5\xb8\xb4\xfe\x98\x96\x97\
\x91\x00\x00\x00\x0a\x1f\x1f\x1f\x00\x00\x00\x00\x00\xb9\xb7\xb8\
\x00\xaf\xad\xae\x2b\xbf\xbb\xbb\xdf\xac\x7b\x67\xff\x92\x3c\x17\
\xff\x91\x3c\x18\xff\x8f\x3b\x17\xff\x8e\x3b\x17\xff\x8d\x3c\x19\
\xff\x8e\x3f\x1c\xff\x91\x44\x23\xff\x94\x49\x28\xff\xa4\x72\x5d\
\xff\xb4\xac\xaa\xff\xb4\xb0\xb0\xff\xb7\xb3\xb3\xff\xc2\xb4\xb1\
\xff\xb3\x71\x5d\xff\xb2\x5c\x42\xff\xb5\x5d\x43\xff\xb8\x5c\x43\
\xff\xb9\x5b\x42\xff\xba\x5b\x42\xff\xba\x5a\x41\xff\xba\x59\x40\
\xff\xba\x59\x40\xff\xb7\x56\x3c\xff\xb9\x86\x77\xff\xba\xb6\xb6\
\xe6\x67\x66\x66\x40\xff\xff\xff\x00\x00\x00\x00\x00\xff\xff\xff\
\x00\xba\xb8\xba\x81\xbd\xaa\xa4\xff\x9f\x51\x31\xff\x96\x3f\x1a\
\xff\x95\x3e\x1a\xff\x93\x3d\x19\xff\x90\x3c\x18\xff\x8f\x3c\x19\
\xff\x8f\x3e\x1b\xff\x91\x42\x20\xff\x93\x47\x26\xff\x97\x4e\x30\
\xff\xa4\x70\x5b\xff\xae\x8c\x80\xff\xb3\x90\x83\xff\xb0\x75\x60\
\xff\xab\x5d\x42\xff\xae\x5d\x43\xff\xb1\x5e\x44\xff\xb3\x5e\x44\
\xff\xb5\x5d\x44\xff\xb6\x5d\x43\xff\xb6\x5c\x43\xff\xb6\x5c\x42\
\xff\xb6\x5b\x42\xff\xb6\x5a\x40\xff\xb0\x5e\x46\xff\xbf\xac\xa7\
\xff\x99\x97\x98\x95\x00\x00\x00\x07\x12\x11\x12\x00\xac\xab\xab\
\x18\xbf\xbc\xbd\xcb\xb5\x89\x78\xff\xa3\x4e\x2b\xff\x9b\x44\x1f\
\xff\x98\x40\x1b\xff\x96\x3f\x1b\xff\x94\x3e\x1a\xff\x92\x3d\x19\
\xff\x91\x3e\x1a\xff\x91\x40\x1d\xff\x93\x44\x23\xff\x95\x49\x29\
\xff\x95\x4c\x2e\xff\x95\x50\x34\xff\x99\x54\x38\xff\x9e\x56\x3a\
\xff\xa6\x5b\x3f\xff\xa9\x5c\x41\xff\xac\x5d\x43\xff\xae\x5e\x43\
\xff\xb0\x5e\x44\xff\xb1\x5e\x44\xff\xb2\x5d\x43\xff\xb2\x5d\x43\
\xff\xb2\x5c\x42\xff\xb1\x5b\x41\xff\xae\x57\x3c\xff\xb5\x89\x7b\
\xff\xb1\xae\xaf\xd7\x4f\x4d\x4d\x25\x72\x70\x70\x00\xb8\xb6\xb7\
\x4a\xc0\xb6\xb4\xf2\xb0\x6c\x51\xff\xa9\x53\x30\xff\xa3\x4d\x29\
\xff\x9c\x43\x1e\xff\x9a\x41\x1c\xff\x97\x40\x1b\xff\x95\x3f\x1a\
\xff\x94\x3f\x1b\xff\x93\x3f\x1c\xff\x93\x41\x1f\xff\x98\x4f\x30\
\xff\xab\x8d\x81\xff\xad\x99\x92\xff\xb1\x9e\x97\xff\x9e\x73\x62\
\xff\x9f\x55\x39\xff\xa4\x5a\x3e\xff\xa7\x5b\x40\xff\xa9\x5c\x41\
\xff\xab\x5d\x42\xff\xac\x5d\x42\xff\xad\x5d\x42\xff\xad\x5c\x42\
\xff\xad\x5c\x41\xff\xac\x5b\x40\xff\xac\x58\x3d\xff\xab\x6a\x54\
\xff\xba\xb1\xaf\xf7\x7d\x7a\x7b\x54\xff\xff\xff\x00\xbd\xbb\xbd\
\x80\xbe\xaa\xa4\xfe\xb0\x5f\x3e\xff\xad\x57\x34\xff\xaa\x56\x33\
\xff\xa4\x4c\x28\xff\x9e\x44\x1e\xff\x9b\x42\x1d\xff\x99\x41\x1c\
\xff\x97\x40\x1b\xff\x95\x40\x1c\xff\x94\x40\x1c\xff\x9b\x52\x33\
\xff\xc1\xb4\xb0\xff\xc8\xc4\xc5\xff\xcb\xc7\xc8\xff\xaa\x8e\x84\
\xff\x98\x50\x33\xff\xa0\x56\x3a\xff\xa2\x58\x3c\xff\xa4\x59\x3d\
\xff\xa5\x5a\x3e\xff\xa6\x5b\x3f\xff\xa7\x5b\x3f\xff\xa8\x5a\x3f\
\xff\xa8\x5a\x3e\xff\xa8\x59\x3d\xff\xa7\x57\x3b\xff\xa5\x5a\x40\
\xff\xb9\xa6\xa1\xff\x94\x92\x93\x81\x00\x00\x00\x01\xbe\xbd\xbe\
\xa9\xbc\x9d\x92\xff\xb3\x5c\x3a\xff\xb1\x5a\x37\xff\xaf\x59\x36\
\xff\xac\x57\x34\xff\xa5\x4d\x29\xff\x9f\x45\x1f\xff\x9d\x43\x1e\
\xff\x9a\x42\x1d\xff\x98\x41\x1c\xff\x97\x40\x1c\xff\x9a\x4a\x28\
\xff\xbc\xa7\x9f\xff\xc4\xc0\xc0\xff\xc3\xbe\xbe\xff\xb7\xaa\xa7\
\xff\x91\x5a\x43\xff\x9a\x50\x32\xff\x9e\x54\x36\xff\x9f\x55\x38\
\xff\xa0\x56\x39\xff\xa1\x57\x3a\xff\xa2\x57\x3b\xff\xa2\x57\x3b\
\xff\xa3\x56\x3a\xff\xa2\x56\x39\xff\xa2\x55\x38\xff\xa0\x52\x36\
\xff\xb3\x98\x8f\xff\xa1\x9e\x9f\xa2\x00\x00\x00\x07\xbe\xbd\xbe\
\xc1\xb9\x94\x87\xff\xb7\x5e\x3a\xff\xb5\x5d\x3a\xff\xb3\x5b\x39\
\xff\xb1\x5a\x38\xff\xae\x58\x36\xff\xa8\x50\x2c\xff\xa1\x47\x21\
\xff\x9e\x44\x1e\xff\x9c\x43\x1d\xff\x9a\x42\x1d\xff\x99\x42\x1e\
\xff\xac\x81\x70\xff\xb9\xb5\xb5\xff\xb7\xb1\xb1\xff\xb8\xb3\xb3\
\xff\xad\x9a\x94\xff\x93\x5a\x42\xff\x97\x4d\x2e\xff\x9b\x51\x32\
\xff\x9c\x52\x34\xff\x9c\x52\x34\xff\x9d\x52\x35\xff\x9d\x52\x35\
\xff\x9d\x52\x35\xff\x9d\x51\x34\xff\x9d\x51\x33\xff\x9b\x4e\x30\
\xff\xad\x8d\x82\xff\xa6\xa4\xa5\xb5\x11\x12\x12\x0c\xbd\xbb\xbd\
\xc8\xb9\x94\x86\xff\xbb\x60\x3c\xff\xb9\x60\x3c\xff\xb7\x5f\x3b\
\xff\xb5\x5d\x3a\xff\xb2\x5c\x39\xff\xb0\x5a\x38\xff\xab\x54\x31\
\xff\xa4\x4a\x25\xff\xa0\x45\x1f\xff\x9d\x43\x1e\xff\x9b\x42\x1d\
\xff\x9f\x52\x33\xff\xae\x98\x91\xff\xb0\xac\xac\xff\xb0\xaa\xaa\
\xff\xb7\xb2\xb3\xff\xb8\xaa\xa5\xff\x96\x61\x4a\xff\x95\x49\x2a\
\xff\x98\x4d\x2d\xff\x98\x4d\x2e\xff\x98\x4d\x2e\xff\x98\x4d\x2f\
\xff\x98\x4d\x2f\xff\x99\x4d\x2e\xff\x99\x4c\x2e\xff\x97\x4a\x2b\
\xff\xab\x8b\x80\xff\xa6\xa4\xa5\xba\x1e\x1f\x1f\x0e\xc1\xbf\xc1\
\xc1\xbb\x96\x88\xff\xbf\x62\x3e\xff\xbe\x62\x3e\xff\xbb\x61\x3d\
\xff\xb9\x5f\x3c\xff\xb6\x5e\x3b\xff\xb4\x5d\x3a\xff\xb1\x5b\x39\
\xff\xae\x58\x35\xff\xa8\x50\x2d\xff\xa3\x48\x23\xff\x9f\x45\x1f\
\xff\x9d\x43\x1e\xff\xa1\x59\x3c\xff\xad\x96\x8e\xff\xb0\xab\xab\
\xff\xb4\xaf\xaf\xff\xc4\xc0\xc0\xff\xc3\xb5\xb0\xff\x93\x57\x3e\
\xff\x95\x47\x26\xff\x96\x49\x28\xff\x95\x49\x29\xff\x95\x49\x29\
\xff\x95\x49\x29\xff\x95\x49\x29\xff\x95\x49\x2a\xff\x95\x48\x29\
\xff\xab\x8b\x7f\xff\xa7\xa4\xa5\xb3\x15\x16\x16\x0b\xc3\xc2\xc4\
\xa8\xc0\x9f\x94\xff\xc3\x66\x42\xff\xc2\x65\x41\xff\xbf\x64\x40\
\xff\xbd\x62\x3e\xff\xba\x61\x3d\xff\xb8\x5f\x3c\xff\xb6\x5e\x3b\
\xff\xb3\x5d\x3a\xff\xb1\x5b\x39\xff\xad\x57\x35\xff\xa8\x50\x2d\
\xff\xa3\x49\x25\xff\x9f\x44\x1f\xff\xa1\x55\x36\xff\xb0\x98\x90\
\xff\xba\xb6\xb6\xff\xc7\xc2\xc2\xff\xd8\xd5\xd5\xff\xb9\x9e\x93\
\xff\x90\x45\x25\xff\x96\x46\x25\xff\x95\x47\x26\xff\x94\x47\x26\
\xff\x94\x47\x26\xff\x93\x47\x27\xff\x93\x47\x27\xff\x93\x48\x28\
\xff\xaf\x94\x8b\xff\xa3\xa0\xa2\x9e\x00\x00\x00\x04\xc4\xc3\xc5\
\x7e\xc2\xad\xa6\xfe\xc5\x6d\x4b\xff\xc6\x67\x42\xff\xc3\x66\x42\
\xff\xc1\x65\x41\xff\xbf\x63\x3f\xff\xbc\x62\x3e\xff\xba\x60\x3d\
\xff\xb7\x5f\x3c\xff\xb5\x5e\x3a\xff\xb3\x5d\x39\xff\xb0\x5b\x39\
\xff\xad\x58\x36\xff\xa9\x53\x30\xff\xa4\x4c\x28\xff\xab\x6c\x53\
\xff\xc6\xbe\xbd\xff\xd2\xcd\xcd\xff\xdc\xd8\xd8\xff\xda\xd1\xcf\
\xff\x99\x5b\x41\xff\x96\x44\x21\xff\x95\x45\x24\xff\x95\x45\x24\
\xff\x94\x45\x24\xff\x93\x45\x25\xff\x92\x45\x24\xff\x94\x4c\x2e\
\xff\xb4\xa2\x9c\xff\x9c\x9a\x9b\x79\xff\xff\xff\x00\xc4\xc4\xc5\
\x48\xc6\xbc\xba\xf1\xc7\x7b\x5e\xff\xca\x69\x43\xff\xc7\x68\x43\
\xff\xc5\x67\x42\xff\xc3\x66\x41\xff\xc0\x64\x40\xff\xbe\x63\x3f\
\xff\xbb\x61\x3e\xff\xb8\x60\x3d\xff\xb1\x5c\x39\xff\xb3\x5c\x38\
\xff\xb2\x5c\x39\xff\xb0\x5b\x38\xff\xad\x58\x35\xff\xb0\x66\x48\
\xff\xd9\xcc\xc8\xff\xe3\xe1\xe1\xff\xe6\xe2\xe3\xff\xe7\xe3\xe3\
\xff\xaa\x79\x65\xff\x99\x47\x25\xff\x99\x49\x28\xff\x98\x49\x27\
\xff\x97\x49\x28\xff\x96\x49\x28\xff\x94\x48\x27\xff\x9d\x62\x49\
\xff\xb6\xad\xac\xf5\x90\x8d\x8e\x48\xbd\xb8\xb8\x00\xbc\xbc\xbd\
\x16\xca\xc8\xc9\xc9\xc6\x95\x83\xff\xcd\x6c\x46\xff\xcb\x6a\x45\
\xff\xc9\x69\x44\xff\xc6\x68\x43\xff\xc4\x67\x42\xff\xc2\x65\x41\
\xff\xbf\x62\x3e\xff\xc6\x83\x69\xff\xc0\x9d\x8f\xff\xac\x69\x4f\
\xff\xad\x5a\x39\xff\xaf\x59\x36\xff\xad\x58\x36\xff\xbe\x85\x6e\
\xff\xe7\xe1\xdf\xff\xec\xea\xea\xff\xec\xea\xea\xff\xeb\xe9\xe9\
\xff\xb5\x87\x74\xff\xa0\x51\x30\xff\xa1\x54\x33\xff\x9f\x53\x32\
\xff\x9d\x52\x32\xff\x9c\x51\x31\xff\x99\x4e\x2f\xff\xad\x86\x77\
\xff\xb3\xb0\xb0\xd0\x76\x74\x74\x19\x81\x7f\x7f\x00\xff\xff\xff\
\x00\xca\xca\xcb\x7d\xca\xb6\xaf\xff\xcf\x79\x58\xff\xcf\x6d\x47\
\xff\xcd\x6c\x47\xff\xcb\x6b\x45\xff\xc8\x69\x44\xff\xc6\x68\x43\
\xff\xc3\x64\x3f\xff\xd3\x9a\x85\xff\xec\xeb\xeb\xff\xde\xd4\xd1\
\xff\xcb\xb1\xa7\xff\xc3\x9e\x8f\xff\xcb\xab\x9e\xff\xe5\xdb\xd8\
\xff\xef\xee\xee\xff\xee\xec\xec\xff\xec\xea\xea\xff\xe7\xe2\xe1\
\xff\xb1\x77\x5f\xff\xa4\x53\x31\xff\xa3\x54\x33\xff\xa1\x53\x32\
\xff\x9f\x52\x31\xff\x9d\x51\x30\xff\x9e\x59\x3d\xff\xb9\xa8\xa3\
\xff\xaa\xa7\xa8\x85\x00\x00\x00\x00\x35\x35\x35\x00\xc9\xc7\xc7\
\x00\xc3\xc2\xc3\x27\xcf\xcb\xcb\xdd\xce\x9c\x8a\xff\xd3\x71\x4c\
\xff\xd0\x6e\x48\xff\xce\x6d\x48\xff\xcc\x6c\x46\xff\xca\x6a\x45\
\xff\xc6\x66\x41\xff\xd8\x9e\x88\xff\xf3\xf1\xf1\xff\xf3\xf2\xf2\
\xff\xf4\xf3\xf4\xff\xf3\xf3\xf3\xff\xf3\xf3\xf3\xff\xf2\xf1\xf1\
\xff\xf0\xee\xee\xff\xed\xeb\xeb\xff\xeb\xea\xea\xff\xd8\xc2\xba\
\xff\xab\x5e\x3f\xff\xa8\x55\x33\xff\xa6\x54\x33\xff\xa4\x53\x32\
\xff\xa1\x52\x31\xff\x9f\x50\x2e\xff\xaf\x83\x72\xff\xbc\xb8\xb8\
\xe0\x9a\x98\x99\x2d\xad\xaa\xaa\x00\x00\x00\x00\x00\x98\x98\x98\
\x00\xff\xff\xff\x00\xcf\xce\xcf\x77\xd6\xca\xc6\xfc\xd6\x8c\x71\
\xff\xd4\x6f\x49\xff\xd2\x6e\x49\xff\xd0\x6e\x48\xff\xce\x6d\x47\
\xff\xcb\x69\x43\xff\xd8\x97\x7e\xff\xf5\xf1\xf0\xff\xf6\xf7\xf7\
\xff\xf6\xf6\xf6\xff\xf5\xf4\xf5\xff\xf4\xf3\xf3\xff\xf2\xf1\xf1\
\xff\xef\xee\xef\xff\xec\xeb\xeb\xff\xe1\xd1\xcb\xff\xbc\x7a\x5f\
\xff\xad\x57\x35\xff\xab\x58\x35\xff\xa9\x56\x34\xff\xa6\x54\x32\
\xff\xa3\x51\x2f\xff\xa8\x68\x4e\xff\xbf\xb2\xaf\xfd\xb4\xb2\xb3\
\x7d\x00\x00\x00\x01\x63\x62\x63\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xc6\xc4\xc5\x00\xbd\xbb\xbc\x13\xe2\xe2\xe3\xb4\xe7\xd1\xc9\
\xff\xd9\x84\x64\xff\xd5\x6f\x49\xff\xd3\x6f\x4a\xff\xd1\x6e\x49\
\xff\xcf\x6d\x47\xff\xcf\x72\x4e\xff\xdb\x9c\x84\xff\xe9\xc9\xbd\
\xff\xf1\xe1\xdb\xff\xf3\xea\xe7\xff\xf1\xea\xe7\xff\xee\xe3\xdf\
\xff\xe6\xd2\xcb\xff\xd7\xad\x9c\xff\xc0\x74\x56\xff\xb4\x5c\x39\
\xff\xb2\x5b\x39\xff\xaf\x5a\x37\xff\xad\x58\x36\xff\xaa\x55\x32\
\xff\xaa\x5f\x41\xff\xbd\xa5\x9e\xff\xbc\xb9\xba\xb8\x9b\x99\x9a\
\x16\xa6\xa4\xa5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x5b\x5b\x5c\x00\xec\xec\xed\x00\xd9\xd9\xda\x2c\xf4\xf5\xf5\
\xcf\xec\xd0\xc6\xff\xda\x85\x65\xff\xd7\x70\x49\xff\xd5\x70\x4a\
\xff\xd2\x6f\x4a\xff\xd0\x6d\x48\xff\xcd\x6b\x45\xff\xcd\x6e\x49\
\xff\xcf\x78\x57\xff\xd0\x81\x62\xff\xcf\x82\x64\xff\xcb\x7b\x5c\
\xff\xc4\x6e\x4c\xff\xbd\x62\x3e\xff\xba\x60\x3c\xff\xb9\x60\x3c\
\xff\xb6\x5e\x3a\xff\xb4\x5c\x39\xff\xb0\x59\x36\xff\xb0\x63\x44\
\xff\xbd\xa0\x96\xff\xbe\xbb\xbc\xd2\xab\xa9\xa9\x30\xc8\xc4\xc5\
\x00\x22\x22\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x97\x96\x97\x00\xff\xff\xff\x00\xe1\xe2\xe2\
\x38\xf4\xf4\xf4\xd0\xe7\xd2\xca\xff\xd9\x90\x74\xff\xd8\x74\x4e\
\xff\xd6\x70\x49\xff\xd4\x6f\x4a\xff\xd2\x6f\x49\xff\xcf\x6d\x48\
\xff\xcd\x6c\x46\xff\xca\x6a\x44\xff\xc8\x68\x42\xff\xc6\x67\x41\
\xff\xc3\x66\x41\xff\xc1\x65\x41\xff\xbf\x64\x40\xff\xbc\x62\x3e\
\xff\xba\x60\x3b\xff\xb7\x5e\x39\xff\xb8\x72\x56\xff\xc1\xa9\xa1\
\xff\xbf\xbb\xbc\xd2\xb0\xad\xae\x3c\xf4\xee\xee\x00\x6f\x70\x70\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x98\x98\x99\x00\xff\xff\xff\
\x00\xda\xda\xda\x2b\xe6\xe6\xe7\xb4\xdd\xd2\xcf\xfc\xd4\xa4\x93\
\xff\xd7\x82\x61\xff\xd7\x73\x4d\xff\xd6\x70\x49\xff\xd3\x6f\x49\
\xff\xd1\x6e\x49\xff\xcf\x6d\x48\xff\xcd\x6c\x46\xff\xca\x6a\x45\
\xff\xc8\x68\x43\xff\xc5\x67\x42\xff\xc3\x65\x40\xff\xc0\x63\x3f\
\xff\xbf\x6c\x4b\xff\xc1\x8f\x7c\xff\xc3\xb6\xb3\xfc\xbc\xb9\xba\
\xb6\xad\xaa\xab\x2e\xf3\xed\xed\x00\x75\x75\x76\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\x3f\x40\
\x00\xdb\xda\xda\x00\xc3\xc2\xc2\x12\xd3\xd2\xd3\x76\xd2\xcf\xd0\
\xdd\xcf\xbf\xb9\xfe\xd0\xa3\x93\xff\xd3\x8b\x6f\xff\xd4\x7b\x59\
\xff\xd4\x73\x4f\xff\xd2\x70\x4b\xff\xcf\x6e\x49\xff\xce\x6d\x48\
\xff\xcc\x6d\x49\xff\xc9\x71\x4f\xff\xc7\x7d\x61\xff\xc7\x97\x85\
\xff\xc6\xb2\xac\xfe\xc1\xbd\xbd\xde\xb7\xb5\xb6\x77\xa1\x9e\x9e\
\x13\xbc\xb9\xb9\x00\x29\x29\x2a\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x9e\x9d\x9e\x00\x7a\x7a\x7a\x01\xc2\xc1\xc2\
\x26\xcc\xcb\xcd\x7c\xce\xcc\xcd\xc9\xcc\xc4\xc3\xf1\xcb\xb8\xb2\
\xfe\xcb\xac\xa1\xff\xc7\xa2\x95\xff\xc4\x9e\x91\xff\xc6\xa1\x93\
\xff\xca\xaa\x9f\xff\xc9\xb4\xae\xfe\xc6\xbc\xbb\xf1\xc1\xbe\xbf\
\xca\xba\xb8\xb9\x7d\xad\xaa\xab\x27\x6a\x6b\x6b\x01\x8b\x8a\x8b\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x85\x86\x88\
\x00\x57\x59\x5c\x01\xb7\xb6\xb8\x16\xc4\xc3\xc5\x47\xc6\xc6\xc7\
\x7d\xc6\xc5\xc7\xa7\xc5\xc4\xc5\xc0\xc1\xc0\xc1\xc8\xc2\xc1\xc2\
\xc0\xc1\xc0\xc2\xa7\xbd\xbc\xbe\x7d\xb4\xb3\xb4\x47\xa3\xa1\xa2\
\x16\x4f\x51\x53\x01\x77\x78\x79\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xf0\x0f\
\xff\xff\x80\x01\xff\xfe\x00\x00\xff\xfc\x00\x00\x3f\xf8\x00\x00\
\x1f\xf0\x00\x00\x0f\xe0\x00\x00\x07\xc0\x00\x00\x07\x80\x00\x00\
\x03\x80\x00\x00\x03\x80\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\
\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\
\x01\x00\x00\x00\x01\x80\x00\x00\x01\x80\x00\x00\x03\xc0\x00\x00\
\x03\xc0\x00\x00\x07\xe0\x00\x00\x0f\xf0\x00\x00\x1f\xf8\x00\x00\
\x3f\xfc\x00\x00\x7f\xfe\x00\x00\xff\xff\x80\x03\xff\
\x00\x00\x10\xbe\
\x00\
\x00\x01\x00\x01\x00\x20\x20\x00\x00\x01\x00\x20\x00\xa8\x10\x00\
\x00\x16\x00\x00\x00\x28\x00\x00\x00\x20\x00\x00\x00\x40\x00\x00\
\x00\x01\x00\x20\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\xb0\xd5\
\x00\x1c\xaf\xd4\x03\x1b\xb4\xda\x18\x1b\xb5\xdb\x25\x1b\xb5\xdc\
\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\
\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\
\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\
\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\
\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\x26\x1b\xb5\xdc\
\x26\x1b\xb5\xdc\x26\x1b\xb4\xdb\x1c\x1c\xb0\xd6\x03\x1c\xb1\xd7\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\xb5\xd7\
\x03\x1a\xbb\xe3\x6d\x1a\xbe\xe7\xd3\x1a\xbf\xe8\xe0\x1a\xbf\xe8\
\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\
\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\
\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\
\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\
\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\xe1\x1a\xbf\xe8\
\xe1\x1a\xbf\xe8\xe1\x1a\xbe\xe7\xd6\x1a\xbb\xe3\x68\x1c\xa9\xcc\
\x02\x1b\xb5\xdc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19\xb5\xe5\
\x13\x19\xc3\xee\xcc\x19\xc7\xf2\xff\x19\xc7\xf2\xff\x19\xc7\xf2\
\xff\x19\xc7\xf2\xff\x19\xc7\xf2\xff\x19\xc7\xf2\xff\x19\xc7\xf2\
\xff\x19\xc7\xf2\xff\x19\xc7\xf2\xff\x19\xc7\xf2\xff\x19\xc7\xf2\
\xff\x19\xc7\xf2\xff\x19\xc7\xf2\xff\x19\xc7\xf2\xff\x19\xc7\xf2\
\xff\x19\xc7\xf2\xff\x19\xc7\xf2\xff\x19\xc7\xf2\xff\x19\xc7\xf2\
\xff\x19\xc7\xf2\xff\x19\xc7\xf2\xff\x19\xc7\xf2\xff\x19\xc7\xf2\
\xff\x19\xc7\xf2\xff\x19\xc7\xf2\xff\x1a\xc3\xed\xe1\x1b\xbc\xe4\
\x28\x1b\xbd\xe5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x92\xe0\
\x1b\x18\xb6\xed\xd7\x1a\xc8\xf3\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\
\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\
\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\
\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\
\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\
\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\
\xff\x1a\xc8\xf3\xff\x1a\xc8\xf3\xff\x1a\xc7\xf2\xfd\x1b\xc5\xef\
\x5f\x1b\xc5\xef\x00\x1b\xc8\xf3\x00\x00\x00\x00\x00\x13\x8b\xde\
\x27\x1a\xa2\xe6\xe1\x1d\xc6\xf2\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\
\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\
\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\
\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\
\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\
\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\
\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\xff\x1b\xc8\xf3\
\x98\xce\xff\xff\x00\x1c\xc9\xf3\x00\x00\x00\x00\x00\x0e\x8d\xdf\
\x34\x2c\x9e\xe4\xea\x42\xcb\xf3\xff\x1b\xc9\xf4\xff\x1c\xc9\xf4\
\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\
\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\
\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\
\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\
\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\
\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\xff\x1c\xc9\xf4\
\xcb\x1c\xc9\xf4\x11\x1c\xc9\xf4\x00\x00\x00\x00\x00\x10\x8f\xdf\
\x44\x2a\x9a\xe2\xf2\x83\xd7\xf5\xff\x23\xcc\xf5\xff\x1d\xc9\xf4\
\xff\x1d\xca\xf4\xff\x1d\xca\xf4\xff\x1d\xca\xf4\xff\x1d\xca\xf4\
\xff\x1d\xca\xf4\xff\x1d\xca\xf4\xff\x1d\xca\xf4\xff\x1d\xca\xf4\
\xff\x1d\xca\xf4\xff\x1d\xca\xf4\xff\x1d\xca\xf4\xff\x1d\xca\xf4\
\xff\x1d\xca\xf4\xff\x1d\xca\xf4\xff\x1d\xca\xf4\xff\x1d\xca\xf4\
\xff\x1d\xca\xf4\xff\x1d\xca\xf4\xff\x1d\xca\xf4\xff\x1d\xca\xf4\
\xff\x1d\xca\xf4\xff\x1d\xca\xf4\xff\x1d\xca\xf4\xff\x1d\xca\xf4\
\xee\x1d\xca\xf4\x34\x1d\xca\xf4\x00\x00\x00\x00\x00\x13\x90\xe0\
\x55\x1e\x95\xe1\xf8\xaf\xde\xf6\xff\x4e\xd6\xf7\xff\x1b\xc9\xf5\
\xff\x1e\xca\xf5\xff\x1e\xca\xf5\xff\x1e\xca\xf5\xff\x1e\xca\xf5\
\xff\x1e\xca\xf5\xff\x1e\xca\xf5\xff\x1e\xca\xf5\xff\x1e\xca\xf5\
\xff\x1e\xca\xf5\xff\x1e\xca\xf5\xff\x1e\xca\xf5\xff\x1e\xca\xf5\
\xff\x1e\xca\xf5\xff\x1e\xca\xf5\xff\x1e\xca\xf5\xff\x1e\xca\xf5\
\xff\x1e\xca\xf5\xff\x1e\xca\xf5\xff\x1e\xca\xf5\xff\x1e\xca\xf5\
\xff\x1e\xca\xf5\xff\x1e\xca\xf5\xff\x1e\xca\xf5\xff\x1e\xca\xf5\
\xff\x1e\xca\xf5\x66\x1e\xca\xf5\x00\x1f\xcb\xf5\x00\x15\x91\xe0\
\x67\x17\x92\xe0\xfc\xb0\xd9\xf4\xff\x9c\xe9\xfa\xff\x1e\xcb\xf5\
\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\
\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\
\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\
\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\
\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\
\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\xff\x1f\xcb\xf5\
\xff\x1f\xcb\xf5\x9f\x20\xcb\xf6\x01\x1f\xcb\xf5\x00\x16\x92\xe1\
\x7a\x14\x91\xe1\xff\x9a\xcf\xf1\xff\xe3\xf9\xfd\xff\x3e\xd2\xf7\
\xff\x1e\xcb\xf6\xff\x20\xcb\xf6\xff\x20\xcb\xf6\xff\x20\xcb\xf6\
\xff\x20\xcb\xf6\xff\x20\xcb\xf6\xff\x20\xcb\xf6\xff\x20\xcb\xf6\
\xff\x20\xcb\xf6\xff\x20\xcb\xf6\xff\x20\xcb\xf6\xff\x20\xcb\xf6\
\xff\x20\xcb\xf6\xff\x20\xcb\xf6\xff\x20\xcb\xf6\xff\x20\xcb\xf6\
\xff\x20\xcb\xf6\xff\x20\xcb\xf6\xff\x20\xcb\xf6\xff\x20\xcb\xf6\
\xff\x20\xcb\xf6\xff\x20\xcb\xf6\xff\x20\xcb\xf6\xff\x20\xcb\xf6\
\xff\x20\xcb\xf6\xd0\x20\xcb\xf6\x14\x20\xcb\xf6\x00\x19\x95\xe4\
\x8e\x15\x93\xe3\xff\x83\xc5\xf0\xff\xff\xff\xfe\xff\x85\xe3\xfa\
\xff\x1e\xcb\xf6\xff\x21\xcc\xf6\xff\x21\xcc\xf6\xff\x21\xcc\xf6\
\xff\x21\xcc\xf6\xff\x21\xcc\xf6\xff\x21\xcc\xf6\xff\x21\xcc\xf6\
\xff\x21\xcc\xf6\xff\x21\xcc\xf6\xff\x21\xcc\xf6\xff\x21\xcc\xf6\
\xff\x21\xcc\xf6\xff\x21\xcc\xf6\xff\x21\xcc\xf6\xff\x21\xcc\xf6\
\xff\x21\xcc\xf6\xff\x21\xcc\xf6\xff\x21\xcc\xf6\xff\x21\xcc\xf6\
\xff\x21\xcc\xf6\xff\x21\xcc\xf6\xff\x21\xcc\xf6\xff\x21\xcc\xf6\
\xff\x21\xcc\xf6\xf1\x21\xcc\xf6\x39\x21\xcc\xf6\x00\x1b\x97\xe6\
\xa2\x17\x95\xe6\xff\x6e\xbd\xef\xff\xff\xfe\xfe\xff\xd3\xf4\xfd\
\xff\x35\xd1\xf8\xff\x20\xcc\xf7\xff\x22\xcc\xf7\xff\x22\xcc\xf7\
\xff\x22\xcd\xf7\xff\x22\xcc\xf7\xff\x22\xcc\xf7\xff\x22\xcc\xf7\
\xff\x22\xcc\xf7\xff\x22\xcd\xf7\xff\x22\xcc\xf7\xff\x22\xcc\xf7\
\xff\x22\xcc\xf7\xff\x22\xcc\xf7\xff\x22\xcc\xf7\xff\x22\xcc\xf7\
\xff\x22\xcc\xf7\xff\x22\xcc\xf7\xff\x22\xcc\xf7\xff\x22\xcc\xf7\
\xff\x22\xcc\xf7\xff\x22\xcc\xf7\xff\x22\xcc\xf7\xff\x22\xcc\xf7\
\xff\x22\xcd\xf7\xff\x22\xcd\xf7\x6d\x22\xcc\xf7\x00\x1d\x9a\xe9\
\xb5\x1a\x98\xe8\xff\x5b\xb5\xef\xff\xf8\xfb\xfd\xff\xfc\xfe\xfe\
\xff\x8f\xe3\xf4\xff\x2a\xcc\xf0\xff\x25\xcd\xf7\xff\x25\xcd\xf7\
\xff\x25\xcd\xf6\xff\x25\xcd\xf7\xff\x25\xcd\xf7\xff\x25\xcd\xf7\
\xff\x25\xcd\xf7\xff\x24\xcd\xf7\xff\x20\xcd\xf8\xff\x21\xcd\xf8\
\xff\x23\xcd\xf7\xff\x23\xcd\xf7\xff\x23\xcd\xf7\xff\x23\xcd\xf7\
\xff\x23\xcd\xf7\xff\x23\xcd\xf7\xff\x23\xcd\xf7\xff\x23\xcd\xf7\
\xff\x23\xcd\xf7\xff\x23\xcd\xf7\xff\x23\xcd\xf7\xff\x23\xcd\xf7\
\xff\x23\xcd\xf7\xff\x23\xcd\xf7\xa5\x23\xcd\xf8\x03\x20\x9c\xeb\
\xc8\x1d\x9b\xeb\xff\x4b\xaf\xef\xff\xf0\xf8\xfd\xff\xff\xff\xff\
\xff\xf1\xed\xd8\xff\xb6\xba\x77\xff\xab\xd3\xc3\xff\xa7\xda\xe4\
\xff\x93\xc8\xd0\xff\x9c\xce\xd5\xff\xab\xdf\xe9\xff\xb0\xe5\xf1\
\xff\x9c\xcd\xd4\xff\x89\xc2\xc9\xff\x75\xcd\xdf\xff\x3b\xcd\xf0\
\xff\x22\xcd\xf7\xff\x23\xce\xf8\xff\x24\xce\xf8\xff\x24\xce\xf8\
\xff\x24\xce\xf8\xff\x24\xce\xf8\xff\x24\xce\xf8\xff\x24\xce\xf8\
\xff\x24\xce\xf8\xff\x24\xce\xf8\xff\x24\xce\xf8\xff\x24\xce\xf8\
\xff\x24\xce\xf8\xff\x24\xce\xf8\xd4\x24\xce\xf8\x1c\x22\x9f\xee\
\xd9\x20\x9e\xed\xff\x3e\xab\xf0\xff\xe5\xf3\xfc\xff\xff\xff\xff\
\xff\xfc\xf6\xea\xff\xf4\xd6\x9d\xff\xf7\xe9\xcf\xff\xe9\xe0\xd9\
\xff\xce\xc8\xbf\xff\xd6\xcd\xc3\xff\xed\xe5\xdf\xff\xf9\xf5\xf3\
\xff\xdc\xd0\xc6\xff\xcc\xc6\xbc\xff\xd9\xce\xc4\xff\xba\xd1\xd1\
\xff\x5a\xcf\xea\xff\x23\xce\xf8\xff\x24\xce\xf8\xff\x24\xce\xf8\
\xff\x24\xce\xf8\xff\x24\xce\xf8\xff\x24\xce\xf8\xff\x24\xce\xf8\
\xff\x24\xce\xf8\xff\x24\xce\xf8\xff\x24\xce\xf8\xff\x24\xce\xf8\
\xff\x24\xce\xf8\xff\x25\xce\xf8\xf2\x25\xce\xf8\x49\x24\xa1\xf0\
\xe5\x23\xa1\xf0\xff\x35\xa8\xf1\xff\xd7\xed\xfc\xff\xff\xff\xfe\
\xff\xfe\xfe\xfe\xff\xfe\xff\xff\xff\xfd\xfd\xfc\xff\xe6\xde\xd7\
\xff\xe0\xdc\xd5\xff\xdd\xd6\xce\xff\xdf\xd5\xcc\xff\xea\xe4\xdf\
\xff\xd9\xcd\xc2\xff\xe0\xd9\xd1\xff\xdb\xd0\xc6\xff\xe3\xd9\xd0\
\xff\xcb\xda\xda\xff\x4f\xd4\xf5\xff\x23\xcf\xf9\xff\x25\xcf\xf9\
\xff\x25\xcf\xf9\xff\x25\xcf\xf9\xff\x25\xcf\xf9\xff\x25\xcf\xf9\
\xff\x25\xcf\xf9\xff\x25\xcf\xf9\xff\x25\xcf\xf9\xff\x25\xcf\xf9\
\xff\x25\xcf\xf9\xff\x25\xcf\xf9\xff\x26\xcf\xf9\x86\x27\xa3\xf2\
\xb2\x26\xa3\xf3\xff\x2e\xa7\xf3\xff\xc7\xe7\xfb\xff\xff\xff\xfe\
\xff\xfe\xfe\xfe\xff\xfe\xfe\xfe\xff\xfe\xff\xff\xff\xf1\xec\xe8\
\xff\xeb\xe4\xde\xff\xec\xe6\xe1\xff\xec\xe7\xe2\xff\xef\xeb\xe7\
\xff\xef\xec\xe9\xff\xee\xec\xe9\xff\xeb\xe8\xe6\xff\xe8\xe4\xe1\
\xff\xe7\xe0\xdc\xff\xb3\xda\xe1\xff\x3a\xd1\xf6\xff\x25\xd0\xf9\
\xff\x26\xd0\xf9\xff\x26\xd0\xf9\xff\x26\xd0\xf9\xff\x26\xd0\xf9\
\xff\x26\xd0\xf9\xff\x26\xd0\xf9\xff\x26\xd0\xf9\xff\x26\xd0\xf9\
\xff\x26\xd0\xf9\xff\x26\xd0\xf9\xff\x26\xd0\xf9\xc6\x28\xa5\xf4\
\x23\x28\xa5\xf4\x8b\x2a\xa6\xf5\xb2\xc3\xe5\xfb\xd3\xff\xff\xfe\
\xf4\xfd\xfd\xfd\xf3\xfa\xfa\xfa\xff\xf9\xf9\xf9\xff\xf7\xf8\xf8\
\xff\xf5\xf5\xf6\xff\xeb\xe8\xe5\xff\xe8\xe5\xe2\xff\xe1\xdb\xd5\
\xff\xdb\xd4\xcc\xff\xdc\xd5\xcf\xff\xdc\xd5\xcf\xff\xe0\xdb\xd7\
\xfe\xe3\xe0\xdd\xf2\xe7\xe5\xe4\xd8\x80\xdc\xf2\xc2\x26\xd0\xfa\
\xf3\x27\xd0\xfa\xff\x27\xd0\xfa\xff\x27\xd0\xfa\xff\x27\xd0\xfa\
\xff\x27\xd0\xfa\xff\x27\xd0\xfa\xff\x27\xd0\xfa\xff\x27\xd0\xfa\
\xff\x27\xd0\xfa\xff\x27\xd0\xfa\xff\x27\xd0\xfa\xdc\x2b\xa8\xf7\
\x00\x2c\xa8\xf7\x01\x00\x91\xf4\x04\xf0\xf8\xfd\x1e\xff\xff\xff\
\x39\xf5\xf5\xf5\x64\xf1\xf1\xf1\xf7\xf1\xf1\xf1\xff\xf2\xf2\xf2\
\xff\xf3\xf3\xf3\xff\xea\xe7\xe4\xff\xe4\xdf\xd9\xff\xe8\xe4\xe0\
\xf7\xeb\xe8\xe6\xe2\xee\xed\xec\xc0\xef\xef\xef\x94\xf2\xf0\xf3\
\x63\xf0\xf0\xf2\x3a\xf3\xf0\xef\x19\x8c\xe1\xf1\x0c\x28\xd0\xfa\
\x63\x28\xd1\xfa\xd4\x28\xd1\xfa\xfa\x28\xd1\xfa\xff\x28\xd1\xfa\
\xff\x28\xd1\xfa\xff\x28\xd1\xfa\xff\x28\xd1\xfa\xff\x28\xd1\xfa\
\xff\x28\xd1\xfa\xff\x28\xd1\xfa\xee\x28\xd1\xfa\x76\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf5\xf5\xf5\
\x00\xf5\xf5\xf5\x22\xf5\xf5\xf5\xe0\xf5\xf5\xf5\xfd\xf5\xf5\xf5\
\xe9\xf5\xf5\xf5\xcb\xf4\xf5\xf5\xa2\xf4\xf4\xf5\x73\xf4\xf4\xf5\
\x46\xf3\xf4\xf4\x22\xf3\xf2\xf4\x0a\x4b\xd7\x53\x03\x1b\xd0\x25\
\x15\x10\xcc\x18\x04\x0d\xcc\x15\x00\x28\xd2\xfa\x00\x28\xd2\xf9\
\x01\x29\xd1\xfb\x1b\x29\xd1\xfb\x4d\x29\xd1\xfb\x60\x29\xd1\xfb\
\x60\x29\xd1\xfb\x60\x29\xd1\xfb\x60\x29\xd1\xfb\x60\x29\xd1\xfb\
\x60\x29\xd1\xfb\x60\x29\xd1\xfb\x3c\x29\xd1\xfa\x06\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf5\xf5\xf5\
\x00\xf5\xf5\xf5\x04\xf5\xf5\xf5\x4d\xf5\xf5\xf5\x54\xf5\xf5\xf5\
\x2b\xf5\xf5\xf5\x10\xf4\xf4\xf4\x02\xf4\xf4\xf4\x00\xf4\xf4\xf4\
\x00\x00\x00\x00\x00\x37\xd4\x40\x00\x37\xd4\x40\x0c\x37\xd4\x40\
\xad\x37\xd4\x40\x93\x37\xd4\x40\x24\x37\xd4\x40\x00\x37\xd4\x40\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x37\xd4\x40\x00\x37\xd4\x40\x01\x37\xd4\x40\
\x9e\x37\xd4\x40\xff\x37\xd4\x40\xd9\x37\xd4\x40\x6b\x37\xd4\x40\
\x11\x37\xd4\x40\x00\x37\xd4\x40\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x4d\xdf\x57\x00\x4d\xdf\x57\x01\x4d\xdf\x57\x01\x4d\xdf\x57\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x37\xd4\x40\x00\x37\xd4\x40\x00\x37\xd4\x40\
\x66\x37\xd4\x40\xff\x37\xd4\x40\xff\x37\xd4\x40\xfb\x37\xd4\x40\
\xbd\x37\xd4\x40\x49\x37\xd4\x40\x06\x37\xd4\x40\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x4d\xde\x57\x00\x4d\xde\x57\x0d\x4c\xde\x56\x1f\x46\xdd\x4f\
\x00\x4b\xde\x55\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\xd6\x45\
\x00\x40\xd8\x49\x00\x3b\xd6\x44\x0b\x38\xd5\x42\x35\x37\xd4\x40\
\xa1\x37\xd4\x40\xfe\x37\xd4\x40\xff\x37\xd4\x40\xff\x37\xd4\x40\
\xff\x37\xd4\x40\xf1\x37\xd4\x40\x96\x37\xd4\x40\x14\x37\xd4\x40\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x4c\xde\x56\x00\x4d\xde\x58\x03\x4b\xde\x55\x64\x4a\xdd\x54\
\x64\x47\xdc\x51\x35\x45\xdb\x4e\x3b\x42\xd9\x4c\x4d\x40\xd8\x49\
\x68\x3e\xd7\x47\x8f\x3b\xd6\x44\xc0\x39\xd5\x42\xed\x37\xd4\x40\
\xff\x37\xd4\x40\xff\x37\xd4\x40\xff\x37\xd4\x40\xff\x37\xd4\x40\
\xff\x37\xd4\x40\xff\x37\xd4\x40\xf7\x37\xd4\x40\x45\x37\xd4\x40\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x4a\xdd\x54\x00\x4b\xdd\x55\x22\x49\xdd\x53\
\xc7\x47\xdc\x51\xf5\x45\xdb\x4e\xf4\x42\xd9\x4c\xfa\x40\xd8\x49\
\xff\x3e\xd7\x47\xff\x3b\xd6\x44\xff\x39\xd5\x42\xff\x37\xd4\x40\
\xff\x37\xd4\x40\xff\x37\xd4\x40\xff\x37\xd4\x40\xff\x37\xd4\x40\
\xff\x37\xd4\x40\xff\x37\xd4\x40\xc7\x37\xd4\x40\x19\x37\xd4\x40\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x4a\xdd\x54\x00\x47\xdc\x51\x00\x49\xdc\x52\
\x37\x47\xdc\x51\xd0\x45\xdb\x4e\xff\x42\xd9\x4c\xff\x40\xd8\x49\
\xff\x3e\xd7\x47\xff\x3b\xd6\x44\xff\x39\xd5\x42\xff\x37\xd4\x40\
\xff\x37\xd4\x40\xff\x37\xd4\x40\xff\x37\xd4\x40\xff\x37\xd4\x40\
\xff\x37\xd4\x40\xf2\x37\xd4\x40\x4f\x37\xd4\x40\x00\x37\xd4\x40\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x48\xdc\x51\x00\x44\xda\x4e\
\x00\x46\xdb\x50\x27\x45\xda\x4e\x9c\x42\xd9\x4c\xeb\x40\xd8\x49\
\xfe\x3e\xd7\x47\xff\x3b\xd6\x44\xff\x39\xd5\x42\xff\x37\xd4\x40\
\xff\x37\xd4\x40\xfa\x37\xd4\x40\xfd\x37\xd4\x40\xff\x37\xd4\x40\
\xff\x37\xd4\x40\x96\x37\xd4\x40\x05\x37\xd4\x40\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x43\xda\x4d\x00\x44\xda\x4e\x06\x42\xd9\x4b\x31\x40\xd8\x49\
\x6b\x3e\xd7\x47\x91\x3b\xd6\x44\x9d\x39\xd5\x42\x93\x37\xd4\x40\
\x75\x37\xd4\x40\x54\x37\xd4\x40\xce\x37\xd4\x40\xff\x37\xd4\x40\
\xd5\x37\xd4\x40\x24\x37\xd4\x40\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\xd6\x45\
\x00\x3c\xd6\x45\x00\x3b\xd6\x44\x00\x3b\xd6\x44\x00\x37\xd4\x40\
\x00\x37\xd4\x40\x00\x37\xd4\x40\x95\x37\xd4\x40\xfb\x37\xd4\x40\
\x60\x37\xd4\x40\x00\x37\xd4\x40\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x37\xd4\x40\
\x00\x37\xd4\x40\x00\x37\xd4\x40\x54\x37\xd4\x40\x99\x37\xd4\x40\
\x0b\x37\xd4\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x37\xd4\x40\x00\x37\xd4\x40\x08\x37\xd4\x40\x0e\x37\xd4\x40\
\x00\x37\xd4\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\
\x0f\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\x07\x00\x00\x00\
\x03\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\
\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x80\x00\x00\x00\xf8\x00\x30\x00\xf8\x1e\x0f\
\xff\xff\xfe\x07\xff\xfc\xff\x01\xff\xfc\x78\x00\xff\xfc\x00\x00\
\xff\xfe\x00\x00\xff\xff\x00\x01\xff\xff\x80\x01\xff\xff\xc0\x03\
\xff\xff\xf8\xc7\xff\xff\xff\xc7\xff\xff\xff\xcf\xff\
\x00\x00\x06\x4d\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x06\x14\x49\x44\x41\x54\x58\x85\xe5\x97\xdf\x8f\x5d\x55\
\x15\xc7\x3f\xeb\xc7\x3e\xf7\xde\x99\xb9\x33\xd3\x61\xda\xc1\xfe\
\xc0\x04\x2c\x7d\x31\xfe\x2a\x12\x20\xb6\x11\xa1\x95\x10\x7e\x88\
\x21\xd1\x68\x62\x78\x20\xc6\xc4\x47\x8d\x2f\x18\xe2\x83\xe0\x9f\
\xd0\xd8\xd8\x04\xa2\x89\x46\x7d\x10\x43\xd0\xfa\x03\xfc\xd9\x07\
\xe2\x2f\xa0\xb1\x13\xc5\x62\xc1\x86\x54\x68\xe9\x74\xee\xcc\x9d\
\x7b\xcf\xd9\x7b\xfb\x70\xce\x9d\xb9\x53\xda\xe2\x83\xf8\xc2\x4a\
\x76\xce\xd9\xfb\xac\xbd\xd6\x77\x7f\xf7\xda\x7b\xad\x03\xef\x74\
\x11\xc0\x77\x7e\xfd\xe8\xd9\x2a\xe7\xe9\x94\xf3\x95\xb5\x2f\xf3\
\x39\xbf\x95\xc2\xd8\x57\x41\x50\x11\x9c\xf4\xd4\xe9\x87\xef\xbc\
\xd7\x81\xa9\x32\xe5\xe9\x47\xee\xb9\x91\x9c\x33\x2a\x1b\xda\xe3\
\x86\x47\xd8\xf2\x98\x31\xf2\xe6\xf7\xdc\x0c\x8c\xc3\xb8\x78\x1e\
\x40\x30\xe3\xe1\x27\x9f\xbd\x13\x68\x3b\x50\xa4\x9c\x98\x6d\x39\
\xf7\x1f\x79\x01\x0a\x05\x57\x50\x21\x98\x10\x54\x29\x5c\x71\x15\
\x82\x0a\xc5\x68\xcc\x04\x37\xa5\x68\xf4\xdc\x6c\xfd\xbd\x50\xa9\
\xf5\x5d\x28\x54\xd7\xf5\x5c\x85\xc2\x94\x1b\xb6\x07\x62\x4e\x8c\
\x00\x10\x33\x4c\xb7\x9c\xad\x0b\x13\x74\xdc\x30\x15\x54\xc0\xa4\
\x7e\xaa\x08\x26\xa0\x2a\x9b\xc6\x36\x74\x04\xcd\x89\x94\x84\x52\
\x20\x65\x41\x93\xa0\x71\x43\xcf\x45\x10\x04\x04\x6e\xbb\x76\x92\
\x94\x00\xd0\x1a\x40\xca\xb4\xdc\x78\x70\xef\x0e\x26\x0b\x7d\xf3\
\xfe\x5e\x4c\x63\xde\x4c\x75\xbe\x68\xc2\xc5\x91\x90\x1b\x23\x19\
\xe8\x97\x89\xa9\x22\x10\x1b\x1b\x0e\x50\x65\xd8\xbf\xab\x60\xff\
\xae\xad\xfc\xbf\xa4\xaa\x19\xa8\x01\x64\xea\xc8\x9b\x9f\x99\x65\
\x62\x6a\x0a\x55\xab\x47\x45\x31\x55\x54\x15\x33\xc3\xdc\x50\x71\
\x5c\x0d\xc5\xd0\x42\x49\xae\xec\xd5\x44\x57\x84\xdf\x69\x41\xa1\
\x82\x8a\xae\xd3\x2d\x22\x28\x82\x98\x00\xc2\xa0\xbf\xca\x6f\x8e\
\xfd\x9e\x2c\xb2\x01\x40\x9a\xce\x54\xb7\x4b\x77\x66\x96\x10\x02\
\xaa\x5a\x4f\x1e\x39\x37\x43\xd5\xb0\x64\xa4\x3b\xc0\x7a\x46\xf8\
\x83\x53\xb5\x8c\x0f\xe5\x21\xd7\xe7\x92\xe7\x5a\x33\x74\xa8\xe3\
\x42\x9a\x36\x6e\x3f\xc6\xb8\x71\xca\x18\x63\x60\x24\xaa\x8a\xbb\
\x13\x8a\x02\x6d\x56\x3e\x0e\xc0\xc4\xf0\xa1\xd3\x3b\x30\xc4\x4f\
\x38\xed\xbf\xb4\xe9\xb7\x8c\x85\xb2\x64\x5f\x19\xd1\x76\x9b\x22\
\x67\x5c\x04\x44\x6a\x5e\x47\x4f\xa0\x2a\x2b\x54\x37\xc7\x98\x5e\
\x0a\x80\x8d\x3b\x35\xc3\xdd\x6b\x60\xea\x84\x14\x18\xdc\x14\xc9\
\x0b\x19\x17\x47\xdd\xd9\x9d\x22\x15\xc2\xfe\xaa\x04\x0f\xa8\x39\
\x6e\x86\x7a\xfd\x1c\xd9\x11\x53\x54\x2e\x01\x20\xaf\x03\x30\x74\
\x34\x41\x15\x13\xc5\xcd\x71\x75\x5c\x1c\x97\x40\x79\x30\x21\xc0\
\xf0\xfa\x88\x49\xc0\x34\xb0\xa7\x1a\xf2\xeb\xf6\x14\xfb\xaa\x55\
\x08\x8e\x04\x27\x79\x20\xbb\xc3\xfa\xf6\x35\xf1\x64\x76\x79\x06\
\xcc\x6d\x5d\x49\xcd\x30\x71\x2c\x3b\x8e\x61\x6a\x38\x81\xd5\x03\
\x25\x93\x4f\x4f\xb0\xf6\x9e\x0a\x0b\x81\x5d\x92\x39\xe9\x2d\x9e\
\x98\x9e\xe3\x23\x2b\xcb\x64\x0f\x24\x2f\xf8\xd8\x5a\x8f\xdb\xfb\
\x75\x5f\xcc\x90\xb1\x2d\xbd\xe2\x16\xac\xef\x3b\x86\x27\x23\x7e\
\x32\x53\xde\x97\x29\x62\xc0\x53\xe0\xfc\x2d\x6b\xec\xfd\xf6\x04\
\xfe\x4a\x41\xb5\x0b\x76\xa4\xc4\xcb\xa1\xcd\xab\xa1\x4b\x1f\xe7\
\xe6\x7e\x9f\xb2\x08\xdc\xd5\x3b\xcb\xad\x2b\x4b\xe4\xe0\x88\x19\
\xaa\xde\xb0\x7b\x05\x00\xa8\x92\xcd\xc8\xaa\xa0\x8a\x66\x67\xf5\
\xbe\xc8\x85\xcf\x0e\xf0\xb2\xa0\x77\x5b\xc9\xd6\x2a\xf3\xd0\xf3\
\x6f\x60\x2f\x75\x18\x5c\x93\xf9\xe0\x5a\x9f\xb3\xda\x61\xe5\xc0\
\x12\x8f\x7f\xbc\xc3\xcd\xbd\x65\x6e\x5d\xb9\xc0\xc9\x4e\x97\xa7\
\xe7\x16\x38\xb8\x7c\x9e\x1c\x02\x12\x0c\x71\x47\x7c\x53\xdc\x6f\
\x3e\x05\x03\x8c\x7e\x56\x62\x72\x02\x4e\xff\x53\x99\xe2\x87\x13\
\x0c\x3f\x5c\xb2\x7c\xf7\x90\x0b\x37\x0d\x78\xe0\x88\x32\xe3\x25\
\xbb\x4f\xc3\x4b\x7b\x07\x5c\xf7\x8b\x21\x4f\xcd\xce\x73\xee\xae\
\x57\x38\x7a\xc2\xf8\xc2\x8f\x97\x78\xef\x70\x99\xaf\x4c\x6c\xe1\
\x64\xaf\xe2\x70\xef\x0c\xdf\x5a\x5a\x83\xaa\xa2\x1c\x96\xac\x9c\
\x3f\xd7\x78\x1b\xbb\x07\x46\x19\xeb\x45\x05\xca\xaa\xbe\x1a\xab\
\xcc\x03\xf7\x2b\x8f\xdd\x1d\xf9\xfe\x0b\x93\x3c\x72\x68\x89\xaa\
\x48\x6c\x39\xd4\xe5\x67\xf3\xce\x67\xfe\x74\x81\x2f\x7d\x31\xb1\
\x6d\x75\xc8\xb1\x3d\xcb\x54\xdd\x01\x27\x3f\xa0\x3c\x97\xdb\x2c\
\x0c\x87\x9c\x54\xc5\xfa\x25\x4f\x0c\xdb\xfc\x76\xe9\xf5\xda\x61\
\x8a\x30\x58\x65\x3c\xf0\xeb\x8b\xa8\xe9\xed\x38\xae\x74\x30\x0c\
\x45\xc8\x6c\x3b\xd4\xe5\x8e\xed\x5d\xbe\x7b\xe2\x0c\x87\x7b\xf0\
\xbe\x7f\x56\xfc\xb1\xb7\x85\xd7\xa6\x95\xc3\x7f\x3e\x43\x7f\xab\
\x31\xd7\x2b\x39\xfd\xb9\x15\xe6\x7f\xd2\x65\x38\x93\x78\xe6\x60\
\xc5\xc4\x33\xd3\x0c\x3f\xdf\x67\xe9\x13\xcb\x1c\x41\xf8\x26\x46\
\x42\x88\x40\x1f\xe3\xf4\x98\x4f\x1f\x63\x83\x85\xdd\xca\xec\x74\
\x41\xbb\xd5\x26\xb4\x03\x61\xd2\xa1\xad\x7c\x63\xfb\xbb\xf8\xf2\
\xe3\xa7\xf8\x47\x28\xf8\x55\xcb\xc8\xae\x2c\x56\xd3\x74\x26\xfb\
\xfc\x6b\xba\xc5\x85\x1b\x7b\x5c\xf7\xe0\xbb\x29\xa7\x2b\x7e\xf4\
\xe9\x73\x5c\x75\xa6\xc3\xf0\xf6\x7f\xb3\xe7\xa3\x57\x53\x4a\xa4\
\xaa\x2a\xaa\x18\x19\x94\x6b\x2c\x2d\x19\xfc\x6d\xc3\xe7\x26\x00\
\x36\x21\xf8\x8c\x60\xad\xba\x69\x10\xd4\x33\x2f\x46\x61\xdf\xcf\
\x67\x68\x17\x2d\xc2\x0c\x98\x2a\x4f\xce\x6d\xe5\x86\xbf\x9f\xe2\
\xb1\x87\xfa\xcc\x2d\x76\xe9\x2c\xb5\x68\xbd\x11\xc8\x3b\x4b\xce\
\x3c\xfa\x1a\xdb\xbf\x7a\x15\x74\x01\xcd\x48\x04\x8d\x60\x03\x45\
\x2b\x19\x0f\x81\xcd\x41\x28\x2e\x88\xd7\x8e\xcd\x85\x4c\x26\xc6\
\x0a\x37\xe3\x3b\x73\x73\xb8\x39\x85\x19\x26\xc2\x62\x77\x9a\x9d\
\x27\x8c\xef\xdd\x53\xf2\xfe\x47\xb7\xa1\x1d\x25\xa7\xcc\xdc\xd1\
\x59\x06\x0b\x03\x3a\xa7\x5a\x54\xad\x12\xcd\x4a\x96\x44\x12\x41\
\xe2\x28\x29\x5d\xe6\x14\xd4\x09\xa4\x4e\x42\x31\xa6\xba\x00\x31\
\x5d\x2f\x3a\x4c\xa8\x9b\x0b\x01\xe5\x78\x75\x35\x13\xf9\x55\xe6\
\x16\x67\x28\x8b\x21\x92\x84\xf9\x5f\xce\x10\xab\x48\xd5\x2e\xc9\
\x49\x20\xd2\xe4\x03\x41\x64\x23\x31\x5d\x12\x40\x0d\x02\x52\xca\
\x88\x34\x34\x35\x59\x6d\x54\x05\x8d\xb2\x9c\x04\xa1\x7b\x7a\x82\
\x6b\x7f\xb0\x13\xda\x20\x0a\x44\xc8\x05\x64\xcd\xe4\x28\x48\x6e\
\x16\xd5\xa4\xe6\x75\xde\x2f\x07\x20\xa7\x4c\x55\x8d\x65\xac\x66\
\xd2\x06\xe8\x9a\x1d\x49\x4a\xa5\x15\xdd\xbf\x4e\x32\x73\xa2\x4b\
\xa9\x25\x31\x25\x52\x4a\xc4\x98\x88\x29\x12\xe3\xa5\x5b\x6a\x6a\
\xb1\xcd\x00\x9a\x8b\x60\x75\xb5\x87\x9a\x51\xb4\x5a\x98\x19\xc1\
\xbd\x29\x44\x1c\x5b\xcf\x6c\x8e\x05\xab\x8b\x12\x35\x90\xba\xa4\
\x4b\xb1\xaa\x9d\x34\x11\x1f\xab\xaa\xde\x8a\x58\xd6\xfd\x32\x52\
\x96\x03\xd6\x56\x57\x18\xf7\xe9\x00\xa1\x59\xf0\xf1\xc5\xc5\x37\
\x51\xf4\x76\xc9\xc8\xa7\x03\xa9\xb5\x76\xfe\xd8\xec\xd7\x7e\x7a\
\x4b\x99\xea\x5f\x87\x0d\x79\x8b\x1f\x95\xff\x5a\x36\xdb\x0c\x2a\
\xb4\xd6\xce\x1f\x03\x92\x00\x53\xc0\x35\xc0\x3c\x97\x08\xca\xb7\
\x49\x2a\xe0\x75\xe0\x65\x69\x9c\xb6\x9b\xa6\x57\x9a\xf5\x3f\x94\
\x04\xac\x35\xed\x1d\x2e\xff\x01\x02\x70\x4d\xc4\xd6\x8b\x89\x2f\
\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x10\xbe\
\x00\
\x00\x01\x00\x01\x00\x20\x20\x00\x00\x01\x00\x20\x00\xa8\x10\x00\
\x00\x16\x00\x00\x00\x28\x00\x00\x00\x20\x00\x00\x00\x40\x00\x00\
\x00\x01\x00\x20\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xad\x72\x03\
\x00\x92\x60\x00\x00\xad\x71\x03\x10\xa7\x6e\x02\x42\xa7\x6e\x02\
\x83\xa8\x6f\x03\xac\xb4\x77\x04\xe0\xbc\x7d\x04\xf6\xc2\x81\x05\
\xfd\xc8\x85\x05\xff\xce\x8a\x06\xff\xd3\x8d\x07\xfe\xd4\x8d\x07\
\xf9\xd0\x8e\x10\xe6\xc8\x87\x0f\xb4\x65\xa0\xa0\xc8\x1c\xaa\xf8\
\xff\x17\xa1\xf1\xff\x44\xaa\xec\xff\x20\x8d\xdd\x7d\x2e\x98\xe3\
\x00\x00\x80\xdb\x00\x09\x86\xdd\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb3\x77\x04\
\x0d\xa4\x6c\x02\x5b\xa5\x6d\x02\xbc\xad\x73\x03\xec\xbb\x7c\x04\
\xfe\xc9\x86\x06\xff\xd5\x8f\x07\xff\xe0\x96\x09\xff\xea\x9f\x0c\
\xff\xf4\xa7\x11\xff\xfc\xae\x17\xff\xfe\xb0\x1a\xff\xfd\xaf\x1a\
\xff\xed\xb3\x44\xff\xde\xa7\x3f\xff\xa9\xb9\x8a\xff\x60\xcb\xff\
\xff\x2e\xba\xff\xff\x31\xb6\xfb\xff\x28\x99\xe5\xc0\x1f\x91\xe0\
\x6e\x02\x81\xdb\x0c\x08\x89\xe0\x00\x07\x8c\xe3\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa2\x6b\x02\
\xac\xa7\x6e\x02\xf6\xb7\x7a\x04\xff\xc5\x84\x05\xff\xcf\x8a\x06\
\xff\xd7\x91\x09\xff\xdf\x98\x0e\xff\xe7\xa0\x15\xff\xf0\xa8\x1e\
\xff\xf8\xb1\x27\xff\xfd\xb6\x2e\xff\xfd\xb8\x32\xff\xfe\xba\x35\
\xff\xec\xc4\x75\xff\xd4\xab\x5f\xff\xaf\xbf\x93\xff\x7d\xcc\xfc\
\xff\x9a\xd9\xfc\xff\x4e\xc4\xff\xff\x32\xb7\xfc\xff\x42\xac\xee\
\xeb\x00\x7d\xdc\x36\x00\x88\xe2\x0c\x00\x85\xe1\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa7\x70\x08\
\xff\xbf\x84\x13\xff\xc2\x81\x05\xff\xca\x87\x06\xff\xd2\x8e\x0a\
\xff\xdb\x96\x12\xff\xe3\x9f\x1c\xff\xeb\xa8\x27\xff\xf4\xb2\x33\
\xff\xfb\xbb\x3f\xff\xfe\xbf\x46\xff\xfd\xc0\x4a\xff\xfe\xc4\x52\
\xff\xf1\xd9\xac\xff\xcc\xb3\x83\xff\xd8\xc0\x70\xff\x7f\xc4\xd8\
\xff\x83\xc6\xf3\xff\xa9\xdd\xfb\xff\x4e\xc5\xff\xff\x2e\xb1\xf8\
\xfc\x41\xae\xf0\xeb\x1d\x98\xe7\x6f\x2c\xa2\xec\x00\x00\x8e\xe8\
\x00\x06\x93\xea\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xaf\x78\x0f\
\xff\xcd\x94\x26\xff\xc5\x84\x05\xff\xce\x8b\x0a\xff\xd6\x94\x13\
\xff\xdf\x9d\x1e\xff\xe7\xa7\x2b\xff\xef\xb2\x3a\xff\xf9\xbd\x49\
\xff\xfe\xc4\x56\xff\xfe\xc7\x5d\xff\xfe\xc8\x61\xff\xff\xd0\x75\
\xff\xf6\xe8\xcf\xff\xcc\xbd\xa1\xff\xf9\xc5\x62\xff\xdc\xc8\x81\
\xff\x89\xc6\xda\xff\x7f\xc2\xf0\xff\xb6\xe1\xfa\xff\x51\xc6\xff\
\xff\x32\xb8\xfd\xff\x26\xa3\xee\xc1\x1c\x9d\xec\x6f\x00\x90\xe9\
\x0e\x06\x93\xe9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb3\x7c\x12\
\xff\xd4\x9b\x2e\xff\xc9\x87\x08\xff\xd2\x91\x12\xff\xda\x9a\x1e\
\xff\xe3\xa4\x2c\xff\xec\xaf\x3c\xff\xf4\xbb\x4e\xff\xfc\xc6\x60\
\xff\xfe\xcc\x6c\xff\xfe\xcf\x74\xff\xfe\xd0\x79\xff\xff\xdb\x97\
\xff\xf9\xf5\xed\xff\xcc\xc3\xb2\xff\xf5\xcb\x7a\xff\xff\xcf\x71\
\xff\xdf\xcd\x8d\xff\x8e\xc8\xdb\xff\x7e\xc1\xef\xff\xaf\xdf\xfa\
\xff\x59\xc8\xff\xff\x32\xb8\xfd\xff\x42\xb4\xf5\xe7\x00\x8b\xe8\
\x19\x05\x94\xea\x00\x06\x92\xe9\x00\x06\x90\xe7\x00\x07\x8d\xe4\
\x00\x08\x8c\xe2\x00\x00\xac\xff\x00\x04\x95\xeb\x00\xb6\x7e\x14\
\xfe\xd9\xa1\x36\xff\xcd\x8c\x0f\xff\xd6\x96\x1a\xff\xde\xa0\x28\
\xff\xe7\xab\x39\xff\xf0\xb7\x4c\xff\xf8\xc4\x61\xff\xfd\xce\x74\
\xff\xfe\xd3\x80\xff\xfe\xd6\x89\xff\xfe\xd8\x8f\xff\xff\xe7\xba\
\xff\xfc\xfb\xfa\xff\xcd\xc7\xbb\xff\xf2\xd0\x8f\xff\xff\xd7\x89\
\xff\xff\xd3\x7f\xff\xdf\xcf\x93\xff\x8e\xc7\xdb\xff\x82\xc4\xf1\
\xff\xa6\xdd\xfb\xff\x3c\xbf\xff\xff\x19\xae\xfb\xeb\x00\x98\xef\
\x5c\x01\x8d\xe6\x6c\x01\x89\xe3\x7f\x01\x89\xe3\x7c\x00\x89\xe3\
\x51\x00\x87\xe1\x10\x09\x85\xdd\x00\x01\x9b\xef\x00\xb8\x7e\x0f\
\xf3\xdc\xa6\x3e\xff\xd4\x95\x1a\xff\xda\x9b\x22\xff\xe3\xa6\x33\
\xff\xeb\xb2\x46\xff\xf3\xc0\x5c\xff\xfb\xcd\x74\xff\xfe\xd5\x85\
\xff\xfe\xda\x92\xff\xfe\xde\x9f\xff\xfe\xde\xa1\xff\xff\xf2\xdb\
\xff\xfe\xff\xff\xff\xd0\xcc\xc4\xff\xf1\xd6\xa3\xff\xff\xde\x9f\
\xff\xfe\xda\x94\xff\xfd\xd2\x81\xff\xd5\xc5\x86\xff\x83\xc3\xd7\
\xff\x8a\xcc\xf6\xff\x8c\xd6\xfc\xff\x24\xac\xf7\xfe\x0f\xa2\xf4\
\xf3\x35\xb4\xf8\xfe\x53\xc0\xfa\xff\x55\xbe\xf7\xff\x3b\xac\xef\
\xf5\x14\x93\xe5\xb4\x01\x88\xe2\x30\x08\x7e\xda\x00\xb5\x79\x07\
\xbb\xdc\xa7\x40\xff\xdc\xa0\x2c\xff\xde\x9f\x28\xff\xe7\xac\x3c\
\xff\xef\xb9\x51\xff\xf7\xc7\x6a\xff\xfd\xd3\x82\xff\xfe\xd9\x92\
\xff\xfe\xe0\xa6\xff\xfe\xe6\xb5\xff\xff\xe5\xb3\xff\xff\xfb\xf5\
\xff\xff\xff\xff\xff\xd0\xcd\xc8\xff\xf0\xdc\xb6\xff\xff\xe5\xb3\
\xff\xfe\xe0\xa6\xff\xfc\xd8\x92\xff\xf2\xc3\x6a\xff\xc6\xb5\x71\
\xff\x77\xbf\xd6\xfb\x63\xc2\xf8\xfd\x56\xc1\xfa\xff\x75\xd2\xff\
\xff\x9b\xe0\xff\xff\xa9\xe5\xff\xff\xad\xe6\xff\xff\xa5\xe3\xff\
\xff\x73\xc8\xf7\xff\x21\x99\xe6\xc4\x00\x88\xe2\x28\xb3\x75\x03\
\x70\xd5\x9c\x2f\xfa\xe7\xb0\x47\xff\xe1\xa5\x2e\xff\xeb\xb1\x43\
\xff\xf3\xbf\x5a\xff\xfb\xcd\x75\xff\xfe\xd7\x8b\xff\xfe\xdd\x9c\
\xff\xfe\xe6\xb8\xff\xfe\xe7\xb9\xff\xff\xef\xd1\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xd1\xcf\xcc\xff\xf0\xe2\xc7\xff\xff\xeb\xc4\
\xff\xfe\xe5\xb4\xff\xfc\xdc\x9d\xff\xf1\xc6\x73\xff\xe5\xb0\x4a\
\xfd\x8f\xa9\x8a\xc2\x39\xba\xfe\xef\x86\xd8\xff\xff\x94\xdd\xff\
\xff\x92\xdc\xff\xff\x95\xdd\xff\xff\x97\xde\xff\xff\x9c\xe0\xff\
\xff\xa1\xe2\xff\xff\x67\xc1\xf4\xff\x13\x90\xe3\x99\xb5\x75\x01\
\x17\xce\x90\x1a\xb4\xeb\xb7\x51\xff\xea\xb0\x41\xff\xef\xb5\x47\
\xff\xf7\xc4\x61\xff\xfd\xd0\x7a\xff\xfe\xd8\x8d\xff\xfe\xdf\xa2\
\xff\xff\xea\xc1\xff\xff\xe8\xba\xff\xf9\xf6\xef\xff\xf5\xf8\xfc\
\xff\xfb\xfd\xff\xff\xd1\xcf\xcd\xff\xf0\xe5\xd1\xff\xff\xee\xcd\
\xff\xfe\xe7\xbb\xff\xfc\xde\xa3\xff\xf0\xc7\x77\xff\xe8\xb3\x4e\
\xe6\x56\xa6\xb4\x9a\x30\xbb\xff\xf7\x76\xd3\xff\xff\x7a\xd4\xff\
\xff\x7d\xd5\xff\xff\x7f\xd5\xfe\xff\x85\xd7\xfe\xf5\x8b\xda\xff\
\xf4\x8c\xda\xff\xff\x83\xd5\xfd\xff\x2d\xa1\xea\xec\xd4\x94\x17\
\x00\xd0\x8f\x11\x2d\xe7\xad\x3c\xc1\xf3\xc0\x5d\xff\xf3\xbc\x50\
\xff\xfb\xc6\x63\xff\xfe\xd0\x79\xff\xfe\xd7\x8a\xff\xff\xe2\xab\
\xff\xfd\xe6\xb9\xff\xd3\xd0\xc2\xff\xab\xc4\xde\xff\xa6\xc2\xe0\
\xff\xbb\xd1\xea\xff\xc1\xc6\xca\xff\xf1\xe5\xcf\xff\xff\xee\xcb\
\xff\xfe\xe7\xba\xff\xfc\xde\xa2\xff\xf1\xc7\x77\xff\xee\xb7\x54\
\x98\x16\xad\xf3\x81\x3e\xc1\xff\xff\x63\xcc\xff\xff\x66\xcd\xff\
\xff\x64\xca\xfd\xff\x5c\xbe\xf5\xc1\x87\xd2\xf9\x54\xa1\xe2\xff\
\x50\x83\xd7\xff\xbb\x79\xd4\xff\xff\x40\xac\xee\xff\xd1\x93\x15\
\x00\xd9\x99\x26\x00\xe7\xa5\x26\x26\xf3\xbc\x52\xab\xfa\xc7\x67\
\xfb\xfd\xc9\x66\xff\xfe\xce\x72\xff\xfe\xd6\x87\xff\xfd\xe3\xb1\
\xff\xc7\xc2\xaa\xff\x79\x99\xb7\xff\x72\x96\xbb\xff\x7b\x9d\xc1\
\xff\x8d\xae\xd2\xff\xa4\xb6\xc8\xff\xf3\xe4\xc6\xff\xff\xe9\xbf\
\xff\xfe\xe4\xb0\xff\xfc\xdb\x9b\xfe\xf3\xca\x7a\xb0\xff\xbc\x45\
\x1c\x0c\xb0\xff\x6d\x3f\xc2\xff\xff\x4f\xc6\xff\xff\x53\xc7\xff\
\xff\x40\xb3\xf4\xf0\x2f\x9f\xe7\x45\x4f\xb5\xf1\x00\x77\xd3\xff\
\x00\x72\xd2\xff\x3d\x65\xcd\xff\xee\x33\xa9\xef\xfd\xe0\xa1\x1f\
\x00\xdf\x9b\x0e\x00\xea\xae\x38\x00\xf3\xb2\x35\x12\xfc\xc5\x5d\
\x78\xfe\xcc\x6e\xe2\xfe\xce\x71\xff\xff\xd8\x8e\xff\xc9\xbc\x98\
\xff\x5f\x7a\x90\xff\x4b\x71\x97\xff\x4e\x71\x95\xff\x51\x74\x96\
\xff\x5d\x7f\xa2\xff\x8a\xa3\xbb\xff\xf2\xdf\xb7\xff\xff\xe3\xad\
\xff\xfe\xdf\xa2\xee\xfd\xda\x96\x8d\xf7\xcd\x80\x19\x71\xbc\xc6\
\x00\x0e\xaf\xff\x3e\x3d\xc3\xff\xed\x42\xc2\xff\xff\x3e\xc0\xff\
\xff\x2a\xa7\xf0\xef\x0d\x8a\xe0\x3f\x11\x8c\xe0\x00\x2f\xaa\xf1\
\x00\x39\xb6\xf8\x3b\x45\xbe\xfc\xf0\x19\x9e\xed\xcb\x00\x00\x00\
\x00\xf2\xae\x2f\x00\xff\xe5\xa0\x00\xf6\xb9\x43\x00\xff\x9e\x00\
\x01\xfe\xc7\x5c\x38\xff\xcd\x6c\xa9\xee\xc7\x7a\xf2\x58\x66\x6a\
\xff\x2b\x50\x74\xff\x33\x55\x76\xff\x3a\x5c\x7d\xff\x44\x69\x8c\
\xff\x4b\x70\x95\xff\x61\x80\x9d\xff\xd2\xc2\x9c\xef\xff\xdf\x9d\
\xab\xfe\xdb\x98\x49\xfe\xd8\x91\x06\xf8\xd1\x86\x00\x04\xab\xfd\
\x00\x00\xa0\xff\x0a\x31\xbf\xff\xa2\x50\xca\xff\xff\x34\xbd\xff\
\xff\x24\xad\xf8\xff\x12\x92\xe5\xbb\x09\x88\xe0\x3f\x10\x91\xe5\
\x3f\x26\xab\xf5\xb8\x1e\xaa\xf6\xef\x08\x92\xe8\x5e\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xc2\x4f\x00\xff\xbf\x49\
\x00\xfe\xc9\x65\x00\xff\xdd\x52\x0b\xb8\x9b\x59\x5e\x23\x3e\x56\
\xf0\x23\x42\x62\xff\x3e\x62\x84\xff\x49\x71\x98\xff\x49\x73\x9a\
\xff\x4d\x76\x9c\xff\x53\x7a\x9e\xff\x68\x86\x9e\xce\x84\x97\xa0\
\x2f\xbd\xb9\xa2\x00\xfe\xd9\x93\x00\xfe\xde\x9a\x00\xff\xdf\xda\
\x00\x1e\xb5\xff\x00\x0d\xb0\xff\x24\x42\xc6\xff\xb7\x59\xce\xff\
\xfe\x42\xc4\xff\xff\x2c\xb2\xf8\xff\x25\xa7\xf0\xf1\x29\xad\xf3\
\xf3\x1a\xab\xf7\xf0\x07\x9a\xef\x79\x00\x87\xe2\x08\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xc5\x51\
\x00\xff\xb3\x00\x00\x61\x63\x52\x00\x00\x18\x44\x19\x1d\x3b\x58\
\xe3\x44\x67\x89\xff\x4b\x75\x9c\xff\x48\x72\x99\xff\x51\x79\x9e\
\xff\x5a\x80\xa5\xff\x61\x86\xaa\xff\x64\x89\xae\xff\x66\x8b\xaf\
\xa6\x69\x8d\xaf\x0e\x69\x8d\xb0\x00\x79\x9e\xbc\x00\x00\xad\xff\
\x00\x00\x89\xff\x00\x2b\xbc\xff\x00\x05\xac\xff\x1a\x33\xbf\xff\
\x76\x46\xc7\xff\xbf\x45\xc7\xff\xdc\x37\xc0\xfe\xd6\x1b\xaf\xfa\
\xab\x07\x9d\xf1\x50\x00\x8b\xe4\x07\x04\x92\xe9\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x34\x34\x34\x00\x31\x4b\x65\x00\x2a\x4e\x72\x1d\x43\x67\x8a\
\xe4\x4c\x75\x9c\xff\x49\x73\x9a\xff\x54\x7c\xa1\xff\x60\x86\xaa\
\xff\x6a\x8e\xb2\xff\x71\x94\xb8\xff\x73\x96\xba\xff\x72\x96\xba\
\xf5\x73\x96\xb9\x54\x73\x96\xba\x00\x70\x96\xb0\x00\x00\x00\x00\
\x00\x00\xaa\xff\x00\x00\x5c\xff\x00\x14\xb2\xff\x00\xff\xff\xff\
\x00\x00\x9c\xff\x0f\x00\xa1\xfe\x19\x00\x9d\xfa\x17\x00\x8e\xed\
\x09\x0e\xa7\xf6\x00\x03\x93\xea\x00\x05\x96\xec\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x33\x33\x33\
\x00\x34\x33\x33\x00\x22\x0b\x00\x05\x47\x5d\x72\x73\x4f\x76\x9b\
\xf7\x4a\x74\x9b\xff\x56\x7e\xa3\xff\x64\x89\xad\xff\x70\x94\xb7\
\xff\x7a\x9d\xc0\xff\x7f\xa2\xc5\xff\x81\xa4\xc6\xff\x80\xa3\xc6\
\xff\x7e\xa1\xc4\x9e\x7d\xa3\xc3\x05\x7e\xa2\xc4\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa9\xff\x00\x00\xa8\xff\
\x00\x00\xaa\xff\x00\x00\xa9\xfe\x00\x01\xa5\xfb\x00\x03\x9c\xf3\
\x00\x03\x91\xea\x00\x03\x96\xee\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x34\x34\x34\
\x00\x32\x34\x35\x00\x32\x31\x2f\x5e\x42\x52\x62\xf1\x4d\x74\x9a\
\xff\x55\x7d\xa2\xff\x64\x8a\xae\xff\x73\x96\xba\xff\x7f\xa1\xc4\
\xff\x88\xa9\xcc\xff\x8d\xaf\xd1\xff\x8f\xb1\xd3\xff\x8f\xb0\xd2\
\xff\x8c\xad\xcf\xd4\x8a\xac\xce\x18\x8a\xac\xce\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x32\x32\x32\x00\x33\x33\x33\
\x00\x32\x31\x30\x25\x36\x38\x3a\xd4\x52\x6c\x85\xff\x55\x7d\xa2\
\xff\x61\x87\xab\xff\x71\x95\xb8\xff\x7f\xa2\xc5\xff\x8b\xad\xcf\
\xff\x94\xb5\xd7\xff\x9a\xba\xdc\xff\x9c\xbc\xde\xff\x9b\xbb\xdd\
\xff\x97\xb8\xda\xec\x95\xb5\xd8\x35\x95\xb6\xd8\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x30\x30\x30\x00\x36\x36\x36\
\x00\x32\x31\x31\x73\x3b\x3f\x42\xfe\x64\x85\xa3\xff\x5d\x84\xa8\
\xff\x6b\x90\xb3\xff\x7b\x9e\xc1\xff\x88\xaa\xcd\xff\x95\xb6\xd8\
\xff\xa3\xc1\xe1\xff\xac\xc8\xe7\xff\xad\xca\xe8\xff\xa9\xc7\xe7\
\xff\xa2\xc1\xe2\xf5\x9c\xbc\xde\x53\x9d\xbd\xdf\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x34\x34\x34\x00\x34\x34\x34\
\x0b\x33\x32\x32\xb0\x37\x39\x3b\xff\x60\x79\x90\xff\x69\x8b\xab\
\xff\x71\x94\xb7\xff\x81\xa4\xc6\xff\x91\xb2\xd4\xff\xa8\xc4\xe2\
\xff\xb9\xd1\xeb\xff\xba\xd4\xef\xff\xb8\xd3\xf0\xff\xb3\xcf\xee\
\xff\xab\xc9\xe9\xfc\xa5\xc4\xe6\x67\xa6\xc5\xe7\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x33\x33\x33\x00\x34\x34\x34\
\x17\x33\x33\x33\xd5\x33\x33\x33\xff\x39\x3b\x3e\xff\x46\x50\x5a\
\xff\x6b\x8b\xab\xff\x86\xa8\xcb\xff\xa1\xbe\xdc\xff\xbd\xd3\xeb\
\xff\xc1\xd7\xf0\xff\xc1\xd9\xf3\xff\xbf\xd9\xf5\xff\xbb\xd6\xf3\
\xff\xae\xcb\xea\xff\x97\xb6\xd7\x75\x98\xb5\xd4\x00\x40\x40\x40\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x33\x33\x33\x00\x33\x33\x33\
\x1c\x33\x33\x33\xe3\x33\x33\x33\xff\x34\x34\x33\xff\x45\x49\x4e\
\xff\x68\x86\xa5\xff\x8c\xae\xcf\xff\xb6\xcd\xe5\xff\xc4\xd8\xee\
\xff\xc5\xdb\xf2\xff\xc6\xdd\xf6\xff\xc6\xde\xf9\xff\xc2\xdb\xf7\
\xff\xa6\xc3\xe1\xff\x6c\x88\xa3\x8c\xff\xff\xff\x00\x3e\x3e\x3e\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x33\x33\x33\x00\x33\x33\x33\
\x1d\x33\x33\x33\xe3\x33\x33\x33\xff\x3a\x3a\x3a\xff\x57\x59\x5a\
\xff\x60\x78\x8f\xff\x8b\xaa\xc9\xff\xbb\xd0\xe5\xff\xc6\xda\xef\
\xff\xc9\xde\xf4\xff\xca\xe0\xf8\xff\xca\xe0\xfb\xff\xc5\xde\xfa\
\xff\x92\xad\xc8\xff\x53\x5e\x69\xc5\x3e\x38\x33\x12\x45\x45\x45\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x33\x33\x33\x00\x33\x33\x33\
\x18\x33\x33\x33\xd8\x38\x38\x38\xff\x41\x41\x41\xff\x60\x5f\x5f\
\xff\x75\x7d\x85\xff\x6b\x83\x9b\xff\x76\x90\xaa\xff\x8a\xa3\xbd\
\xff\x9d\xb6\xd0\xff\xa9\xc2\xdd\xff\xac\xc4\xdf\xff\x96\xae\xc7\
\xff\x68\x75\x83\xff\x54\x55\x56\xe2\x4d\x4c\x4c\x1c\x4f\x4f\x4f\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x33\x33\x33\x00\x32\x32\x32\
\x0d\x36\x36\x36\xb8\x3e\x3e\x3e\xff\x48\x48\x48\xff\x57\x57\x57\
\xff\x80\x80\x80\xff\x94\x97\x99\xff\x8b\x90\x95\xff\x81\x8b\x96\
\xff\x7d\x8c\x9a\xff\x7f\x8f\x9e\xff\x84\x91\x9d\xff\x89\x8e\x94\
\xff\x93\x93\x94\xff\x7c\x7c\x7c\xcf\x48\x48\x48\x15\x56\x56\x56\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x34\x34\x34\x00\x69\x69\x69\
\x00\x3b\x3b\x3b\x7b\x43\x43\x43\xff\x4e\x4e\x4e\xff\x59\x59\x59\
\xff\x67\x67\x67\xff\x85\x85\x85\xff\xa2\xa2\xa2\xff\xb1\xb1\xb0\
\xff\xb5\xb4\xb3\xff\xb4\xb3\xb3\xff\xb2\xb2\xb1\xff\xb4\xb4\xb3\
\xff\xac\xac\xac\xff\x7f\x7f\x7f\x85\x00\x00\x00\x02\x5c\x5c\x5c\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x34\x34\x34\x00\x40\x40\x40\
\x00\x3f\x3f\x3f\x22\x47\x47\x47\xc0\x52\x52\x52\xff\x5d\x5d\x5d\
\xff\x69\x69\x69\xff\x73\x73\x73\xff\x82\x82\x82\xff\x94\x94\x94\
\xff\xa1\xa1\xa1\xff\xa5\xa5\xa5\xff\xa6\xa6\xa6\xff\xa4\xa4\xa4\
\xff\x8c\x8c\x8c\xb8\x68\x68\x68\x1e\x6e\x6e\x6e\x00\x55\x55\x55\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x48\x48\x48\
\x00\x4b\x4b\x4b\x00\x4b\x4b\x4b\x25\x54\x54\x54\x8d\x5f\x5f\x5f\
\xde\x6a\x6a\x6a\xff\x76\x76\x76\xff\x81\x81\x81\xff\x8f\x8f\x8f\
\xff\x9c\x9c\x9c\xff\x9e\x9e\x9e\xff\x98\x98\x98\xeb\x8b\x8b\x8b\
\x98\x75\x75\x75\x21\x80\x80\x80\x00\x43\x43\x43\x00\x80\x80\x80\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x43\x43\x43\
\x00\x39\x39\x39\x00\x4b\x4b\x4b\x00\x5c\x5c\x5c\x03\x61\x61\x61\
\x37\x6a\x6a\x6a\xa3\x74\x74\x74\xe4\x7d\x7d\x7d\xfc\x86\x86\x86\
\xf4\x8d\x8d\x8d\xd4\x8e\x8e\x8e\x9a\x87\x87\x87\x48\x73\x73\x73\
\x09\x7c\x7c\x7c\x00\x43\x43\x43\x00\x6d\x6d\x6d\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\
\xff\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\x3f\x00\x00\x00\
\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x80\x00\x00\x00\xe0\x00\x00\x00\xf0\x00\x00\
\x00\xf8\x00\x08\x00\xf0\x00\x0e\x01\xf0\x00\x0f\xff\xe0\x00\x0f\
\xff\xe0\x00\x0f\xff\xe0\x00\x0f\xff\xe0\x00\x07\xff\xe0\x00\x07\
\xff\xe0\x00\x07\xff\xe0\x00\x07\xff\xe0\x00\x07\xff\xe0\x00\x07\
\xff\xe0\x00\x07\xff\xf0\x00\x07\xff\xf0\x00\x0f\xff\
"
qt_resource_name = b"\
\x00\x03\
\x00\x00\x70\x37\
\x00\x69\
\x00\x6d\x00\x67\
\x00\x03\
\x00\x00\x79\xbe\
\x00\x72\
\x00\x75\x00\x6e\
\x00\x04\
\x00\x07\xab\x60\
\x00\x73\
\x00\x74\x00\x6f\x00\x70\
\x00\x03\
\x00\x00\x69\xc7\
\x00\x63\
\x00\x66\x00\x67\
\x00\x0a\
\x0a\x68\x2a\x84\
\x00\x64\
\x00\x69\x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\
\x00\x07\
\x0a\x65\x4b\x64\
\x00\x63\
\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\
\x00\x04\
\x00\x06\xec\x30\
\x00\x68\
\x00\x65\x00\x6c\x00\x70\
\x00\x04\
\x00\x07\x66\xbe\
\x00\x6f\
\x00\x70\x00\x65\x00\x6e\
\x00\x03\
\x00\x00\x68\x70\
\x00\x61\
\x00\x70\x00\x70\
\x00\x05\
\x00\x73\x5d\xfe\
\x00\x6c\
\x00\x6f\x00\x67\x00\x69\x00\x6e\
"
qt_resource_struct_v1 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x09\x00\x00\x00\x02\
\x00\x00\x00\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x4a\x87\
\x00\x00\x00\x26\x00\x00\x00\x00\x00\x01\x00\x00\x13\x64\
\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x00\x60\x00\x00\x00\x00\x00\x01\x00\x00\x29\x03\
\x00\x00\x00\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x39\xc5\
\x00\x00\x00\x18\x00\x01\x00\x00\x00\x01\x00\x00\x10\xc2\
\x00\x00\x00\x88\x00\x00\x00\x00\x00\x01\x00\x00\x50\xd8\
\x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x22\x15\
\x00\x00\x00\x32\x00\x00\x00\x00\x00\x01\x00\x00\x1a\xa7\
"
qt_resource_struct_v2 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x09\x00\x00\x00\x02\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x4a\x87\
\x00\x00\x01\x65\xec\xa3\xf3\xf4\
\x00\x00\x00\x26\x00\x00\x00\x00\x00\x01\x00\x00\x13\x64\
\x00\x00\x01\x65\xec\xa3\xf3\xf4\
\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x01\x65\xec\xa3\xf3\xf8\
\x00\x00\x00\x60\x00\x00\x00\x00\x00\x01\x00\x00\x29\x03\
\x00\x00\x01\x65\xec\xa3\xf3\xf6\
\x00\x00\x00\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x39\xc5\
\x00\x00\x01\x65\xec\xa3\xf3\xf6\
\x00\x00\x00\x18\x00\x01\x00\x00\x00\x01\x00\x00\x10\xc2\
\x00\x00\x01\x65\xec\xa3\xf3\xf8\
\x00\x00\x00\x88\x00\x00\x00\x00\x00\x01\x00\x00\x50\xd8\
\x00\x00\x01\x65\xec\xa3\xf3\xf8\
\x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x22\x15\
\x00\x00\x01\x65\xec\xa3\xf3\xf5\
\x00\x00\x00\x32\x00\x00\x00\x00\x00\x01\x00\x00\x1a\xa7\
\x00\x00\x01\x65\xec\xa3\xf3\xf5\
"
qt_version = QtCore.qVersion().split('.')
if qt_version < ['5', '8', '0']:
rcc_version = 1
qt_resource_struct = qt_resource_struct_v1
else:
rcc_version = 2
qt_resource_struct = qt_resource_struct_v2
def qInitResources():
QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
def qCleanupResources():
QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
qInitResources()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/jibintao/Temperature-Monitor.git
git@gitee.com:jibintao/Temperature-Monitor.git
jibintao
Temperature-Monitor
Temperature Monitor
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385