pngphoon-1.1/0000755000175000017500000000000011146265116012154 5ustar meikemeikepngphoon-1.1/image.h0000644000175000017500000000046410357771554013426 0ustar meikemeike #ifndef _IMAGE_H_ #define _IMAGE_H_ 1 #include struct image_s { png_bytep bitmap; png_bytep *rowps; int width; int height; int xbytes; }; typedef struct image_s image_t; image_t *imagecreate( int width, int height ); void imagedestroy( image_t *image ); #endif pngphoon-1.1/stars.h0000644000175000017500000000016610360221523013453 0ustar meikemeike #ifndef _STARS_H_ #define _STARS_H_ 1 #include "image.h" void scarymonster( image_t *image, int density ); #endif pngphoon-1.1/moon.h0000644000175000017500000000053510357771610013304 0ustar meikemeike #ifndef _MOON_H_ #define _MOON_H_ #include #include "image.h" struct moon_s { png_bytep bitmap; int width; int height; int xbytes; }; typedef struct moon_s moon_t; moon_t *mooncreate(); void moondestroy( moon_t *moon ); void mooncopy( image_t *image, moon_t *moondata, int x, int y, int blackflag ); #endif pngphoon-1.1/stars.c0000644000175000017500000000472711146264363013471 0ustar meikemeike #include "stars.h" #include #define NUM_STARS 9 #define NUM_TILES 20 #define TILE_SIZE 128 #define STARS_PER_TILE 40 struct star_s { int width; int height; unsigned char data[5]; }; typedef struct star_s star_t; star_t stars[NUM_STARS] = { {1, 1, { 0x80, 0x00, 0x00, 0x00, 0x00 }}, {2, 2, { 0xc0, 0xc0, 0x00, 0x00, 0x00 }}, {3, 3, { 0x40, 0xe0, 0x40, 0x00, 0x00 }}, {3, 3, { 0x40, 0xa0, 0x40, 0x00, 0x00 }}, {4, 4, { 0x60, 0xf0, 0xf0, 0x60, 0x00 }}, {4, 4, { 0x20, 0xe0, 0x70, 0x40, 0x00 }}, {4, 4, { 0x40, 0x70, 0xe0, 0x20, 0x00 }}, {5, 5, { 0x70, 0xf8, 0xf8, 0xf8, 0x70 }}, {5, 5, { 0x20, 0x70, 0xf8, 0x70, 0x20 }} }; void stardraw( image_t *image, star_t *star, int xpos, int ypos ) { int y; png_bytep p; union { unsigned short u16; unsigned char u8[2]; } shift; for( y = 0; y < star->height; y++ ) { p = image->bitmap + xpos + ( (ypos + y) * image->xbytes ); shift.u16 = star->data[y] << 8; shift.u16 >>= (xpos%8); *p |= shift.u8[1]; if( shift.u8[0] ) { p++; *p |= shift.u8[0]; } } } void scarymonster( image_t *image, int density ) { /* * why is this procedure called scarymonster when it draws a starry sky? * There once was a song in the beginning of the 1980's from Hubert Kah * that's called "Sternenhimmel" (starry sky). There was also an english * language version available by the same artist that was called... * you guessed it: "Scary Monster". * * Maybe this one here will get me listed at the daily wtf. :-) */ int i, k, r, x, y; int total_prob; int num_stars = (image->width * image->height * density) / 50000 ; const int star_prob[NUM_STARS] = { 700, 60, 15, 15, 6, 6, 6, 2, 2 }; /* 1 2 3a 3b 4a 4b 4c 5a 5b */ /* seed the pseudo random generator * this way the stars will always be in the same place which is * quite nice during reloads. */ srand( image->width * image->height ); total_prob = 0; for ( i = 0; i < NUM_STARS; ++i ) { total_prob += star_prob[i]; } for( i = 0; i < num_stars; i++ ) { r = rand() % total_prob; for ( k = 0; k < NUM_STARS; ++k ) { r -= star_prob[k]; if ( r < 0 ) { x = rand() % ( image->width - stars[k].width ); y = rand() % ( image->height - stars[k].height ); stardraw( image, &(stars[k]), x ,y ); break; } } } } pngphoon-1.1/pngwrite.c0000644000175000017500000000316211146225066014161 0ustar meikemeike #include #include #include #include #include #include #include "fail.h" #include "pngwrite.h" void pngwrite( image_t *image, char* filename ) { png_structp png_ptr; png_infop info_ptr; /* create file */ FILE *fp = (FILE*)0; if( !strcmp( filename, "-" ) ) { fp = stdout; } else { /* create file */ fp = fopen(filename, "wb"); } if (!fp) fail("[pngwrite] File %s could not be opened for writing", filename); /* initialize stuff */ png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if (!png_ptr) fail("[pngwrite] png_create_write_struct failed"); info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) fail("[pngwrite] png_create_info_struct failed"); if (setjmp(png_jmpbuf(png_ptr))) fail("[pngwrite] Error during init_io"); png_init_io(png_ptr, fp); /* write header */ if (setjmp(png_jmpbuf(png_ptr))) fail("[pngwrite] Error during writing header"); png_set_IHDR(png_ptr, info_ptr, image->width, image->height, 1, PNG_COLOR_TYPE_GRAY, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE); png_write_info(png_ptr, info_ptr); /* write bytes */ if (setjmp(png_jmpbuf(png_ptr))) fail("[pngwrite] Error during writing bytes"); png_write_image(png_ptr, image->rowps); /* end write */ if (setjmp(png_jmpbuf(png_ptr))) fail("[pngwrite] Error during end of write"); png_write_end(png_ptr, NULL); fclose(fp); } pngphoon-1.1/phase.h0000644000175000017500000000034510357774303013435 0ustar meikemeike #ifndef _PHASE_H_ #define _PHASE_H_ 1 #include "tws.h" double phase( double pdate, double *pphase, double *mage, double *dist, double *angdia, double *sudist, double *suangdia ); double jtime( struct tws *t ); #endif pngphoon-1.1/README0000644000175000017500000000672711146226054013046 0ustar meikemeikepngphoon Written by Sven Oliver Moll Available at: http://svolli.org/software/pngphoon/ This program is intended as a successor to the great xphoon program (X PHase of mOON), which was written by Jef Poskanzer and Craig Leres and is available from: http://www.acme.com/software/xphoon/ It uses some code from this program. For these fragments the following license applys: Copyright (C) 1988,1991 by Jef Poskanzer and Craig Leres . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. The png file writing code was originally written by Guillaume Cottenceau and released under the terms of the GPL. (http://zarb.org/~gc/html/libpng.html) For all other code (which was written by me) the GNU GPL applies which is provided as a separate file ('COPYING') xphoon is a program that displays the actual phase of the moon on the X11 root window. Nowadays all desktop systems like KDE hide the X11 rootwindow with an own background image, so xphoon could paint as much in the root window as it likes to, but nothing was to been seen. KDE has an advanced interface for programs to dynamically provide background images in png format. That's what is program was originally written for. Compiling: - necessary are only a C compiler and - the development files of the png library (png.h and libpng.so or .a) - a simple "make" should create the binary. Setting up pngphoon for KDE: - select configure desktop - bring up the advanced options dialog - check "Use the following program for drawing the background" - click add and fill out the form like this: Name: pngphoon Comment: Phase of moon Command: /usr/local/bin/pngphoon -w %x -h %y -f %f Preview Cmd: /bin/true Executable: /usr/local/bin/pngphoon Refresh Time: 60 min - click "OK" on everything you opened Setting up pngphoon for GNOME: For GNOME it's not so simple. I hacked up a small shell-script that's run via cron on my main system, where I'm constantanly loggin in. On my notebook it's run via the autostart mechanism. ---8<---8<--- #!/bin/sh width=1920 height=1200 file="$HOME/.gnome2/share/images/moon.png" pngphoon -w $width -h $height -f "$file" gconftool-2 --type string --set /desktop/gnome/background/picture_filename "$file" ---8<---8<--- pngphoon-1.1/pngwrite.h0000644000175000017500000000017310357774115014174 0ustar meikemeike #ifndef _PNGWRITE_H_ #define _PNGWRITE_H_ 1 #include "image.h" void pngwrite( image_t *image, char* filename ); #endif pngphoon-1.1/COPYING0000644000175000017500000004313310360042126013202 0ustar meikemeike GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. pngphoon-1.1/main.c0000644000175000017500000000473711146216274013260 0ustar meikemeike #include "image.h" #include "moon.h" #include "pngwrite.h" #include "stars.h" #include #include #include #define VERSION "1.0" static inline void usage( char *name ) { char *base = name; char *c; for( c = name+1; *c; c++) { if( *(c-1) == '/' ) base = c; } printf( "this is pngphoon version " VERSION "\n\n" "usage: %s options (* = mandatory)\n" "\t-w # width*\n" "\t-h # height*\n" "\t-f $ filename*\n" "\t-x # number of moons in x axis (for multihead configurations)\n" "\t-y # number of moons in y axis (for multihead configurations)\n" "\t-s # star density\n" "\t-b black (no earthlight)\n", base ); exit(0); } int main( int argc, char *argv[] ) { int width = 0; int height = 0; int xmoons = 1; int ymoons = 1; int stars = 50; char *filename = NULL; int black = 0; image_t *image = NULL; moon_t *moon = NULL; int c; int x; int y; opterr = 0; if( argc == 1 ) { usage( argv[0] ); } while ((c = getopt (argc, argv, "w:h:x:y:s:f:b")) != EOF) { switch (c) { case 'w': width = strtol( optarg, NULL, 0 ); break; case 'h': height = strtol( optarg, NULL, 0 ); break; case 'x': xmoons = strtol( optarg, NULL, 0 ); break; case 'y': ymoons = strtol( optarg, NULL, 0 ); break; case 's': stars = strtol( optarg, NULL, 0 ); break; case 'f': filename = optarg; break; case 'b': black = 1; break; default: printf("unknown option: '%c'\n", c); } } if( !width || !height || !filename ) { printf( "you need to specify at least width, height and filename\n" ); exit(1); } moon = mooncreate(); image = imagecreate( width, height ); if( (width < (moon->width) * xmoons) || (height < (moon->height) * ymoons) ) { printf("image too small to fit moon%s, creating stars only\n", (xmoons * ymoons > 1) ? "s" : ""); scarymonster( image, stars * 2 ); } else { scarymonster( image, stars ); for( y = (height/ymoons)/2; y < height; y += (height/ymoons) ) { for( x = (width/xmoons)/2; x < width; x += (width/xmoons) ) { mooncopy( image, moon, x, y, black ); } } } pngwrite( image, filename ); imagedestroy( image ); moondestroy( moon ); return 0; } pngphoon-1.1/fail.h0000644000175000017500000000013510357771416013247 0ustar meikemeike #ifndef _FAIL_H_ #define _FAIL_H_ 1 void fail(const char * s, ...); #endif /* _FAIL_H_ */ pngphoon-1.1/fail.c0000644000175000017500000000035710357774675013262 0ustar meikemeike #include "fail.h" #include #include #include void fail(const char * s, ...) { va_list args; va_start(args, s); vfprintf(stderr, s, args); fprintf(stderr, "\n"); va_end(args); exit(1); } pngphoon-1.1/global.h0000644000175000017500000000167110357770122013573 0ustar meikemeike #include #include #include #include #include "tws.h" struct moon_s { png_bytep bitmap; int width; int height; int xbytes; }; typedef struct moon_s moon_t; struct image_s { png_bytep bitmap; png_bytep *rowps; int width; int height; int xbytes; }; typedef struct image_s image_t; struct star_s { int width; int height; unsigned char data[5]; }; void fail(const char * s, ...); double phase( double pdate, double *pphase, double *mage, double *dist, double *angdia, double *sudist, double *suangdia ); double jtime( struct tws* t ); struct tws *dtwstime(); image_t *imagecreate( int width, int height ); void imagedestroy( image_t *image ); moon_t *mooncreate(); void moondestroy( moon_t *moon ); void mooncopy( image_t *image, moon_t *moondata, int x, int y, int blackflag ); void pngwrite( image_t *image, char* filename ); pngphoon-1.1/tws.c0000644000175000017500000000477610357774754013173 0ustar meikemeike/* dtime.c - extracted from the phoon/libtws package ** ** Copyright (C) 1988,1991 by Jef Poskanzer . ** All rights reserved. ** ** Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions ** are met: ** 1. Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** 2. Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in the ** documentation and/or other materials provided with the distribution. ** ** THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ** ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE ** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ** OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ** SUCH DAMAGE. */ #include "tws.h" #include #include #include #ifdef SYS5 extern int daylight; extern long timezone; #else /*SYS5*/ #include #endif /*SYS5*/ extern long time(); struct tm* localtime(); struct tws *dtwstime() { long clock; (void) time( &clock ); return dlocaltime( &clock ); } struct tws* dlocaltime( long* clock ) { register struct tm* tm; #ifndef SYS5 struct timeb tb; #endif /*not SYS5*/ static struct tws tw; if ( clock == (long*) 0 ) return (struct tws*) 0; tw.tw_flags = TW_NULL; tm = localtime( clock ); tw.tw_sec = tm->tm_sec; tw.tw_min = tm->tm_min; tw.tw_hour = tm->tm_hour; tw.tw_mday = tm->tm_mday; tw.tw_mon = tm->tm_mon; tw.tw_year = tm->tm_year; tw.tw_wday = tm->tm_wday; tw.tw_yday = tm->tm_yday; if ( tm->tm_isdst ) tw.tw_flags |= TW_DST; #ifndef SYS5 ftime( &tb ); tw.tw_zone = -tb.timezone; #else /*SYS5*/ tzset(); tw.tw_zone = -( timezone / 60 ); #endif /*SYS5*/ tw.tw_flags &= ~TW_SDAY; tw.tw_flags |= TW_SEXP; tw.tw_clock = *clock; return &tw; } pngphoon-1.1/phase.c0000644000175000017500000001524210357775010013426 0ustar meikemeike/* phase.c - routines to calculate the phase of the moon ** ** Adapted from "moontool.c" by John Walker, Release 2.0. */ #include #include #include #include "tws.h" #include "phase.h" /* Astronomical constants. */ #define epoch 2444238.5 /* 1980 January 0.0 */ /* Constants defining the Sun's apparent orbit. */ #define elonge 278.833540 /* ecliptic longitude of the Sun at epoch 1980.0 */ #define elongp 282.596403 /* ecliptic longitude of the Sun at perigee */ #define eccent 0.016718 /* eccentricity of Earth's orbit */ #define sunsmax 1.495985e8 /* semi-major axis of Earth's orbit, km */ #define sunangsiz 0.533128 /* sun's angular size, degrees, at semi-major axis distance */ /* Elements of the Moon's orbit, epoch 1980.0. */ #define mmlong 64.975464 /* moon's mean lonigitude at the epoch */ #define mmlongp 349.383063 /* mean longitude of the perigee at the epoch */ #define mlnode 151.950429 /* mean longitude of the node at the epoch */ #define minc 5.145396 /* inclination of the Moon's orbit */ #define mecc 0.054900 /* eccentricity of the Moon's orbit */ #define mangsiz 0.5181 /* moon's angular size at distance a from Earth */ #define msmax 384401.0 /* semi-major axis of Moon's orbit in km */ #define mparallax 0.9507 /* parallax at distance a from Earth */ #define synmonth 29.53058868 /* synodic month (new Moon to new Moon) */ #define lunatbase 2423436.0 /* base date for E. W. Brown's numbered series of lunations (1923 January 16) */ /* Properties of the Earth. */ #define earthrad 6378.16 /* radius of Earth in kilometres */ #define PI 3.14159265358979323846 /* assume not near black hole nor in Tennessee */ /* Handy mathematical functions. */ #define sgn(x) (((x) < 0) ? -1 : ((x) > 0 ? 1 : 0)) /* extract sign */ #define abs(x) ((x) < 0 ? (-(x)) : (x)) /* absolute val */ #define fixangle(a) ((a) - 360.0 * (floor((a) / 360.0))) /* fix angle */ #define torad(d) ((d) * (PI / 180.0)) /* deg->rad */ #define todeg(d) ((d) * (180.0 / PI)) /* rad->deg */ #define dsin(x) (sin(torad((x)))) /* sin from deg */ #define dcos(x) (cos(torad((x)))) /* cos from deg */ /* jdate - convert internal GMT date and time to Julian day and fraction */ static long jdate(struct tws *t) { long c, m, y; y = t->tw_year + 1900; m = t->tw_mon + 1; if (m > 2) { m = m - 3; } else { m = m + 9; --y; } c = y / 100L; /* compute century */ y -= 100L * c; return t->tw_mday + (c * 146097L) / 4 + (y * 1461L) / 4 + (m * 153L + 2) / 5 + 1721119L; } /* jtime - convert internal date and time to astronomical Julian ** time (i.e. Julian date plus day fraction, expressed as ** a double) */ double jtime(struct tws *t) { int c; c = - t->tw_zone; if ( t->tw_flags & TW_DST ) { c += 60; } return (jdate(t) - 0.5) + (t->tw_sec + 60 * (t->tw_min + c + 60 * t->tw_hour)) / 86400.0; } /* kepler - solve the equation of Kepler */ static double kepler(double m, double ecc) { double e, delta; #define EPSILON 1E-6 e = m = torad(m); do { delta = e - ecc * sin(e) - m; e -= delta / (1 - ecc * cos(e)); } while (abs(delta) > EPSILON); return e; } /* phase - calculate phase of moon as a fraction: ** ** The argument is the time for which the phase is requested, ** expressed as a Julian date and fraction. Returns the terminator ** phase angle as a percentage of a full circle (i.e., 0 to 1), ** and stores into pointer arguments the illuminated fraction of ** the Moon's disc, the Moon's age in days and fraction, the ** distance of the Moon from the centre of the Earth, and the ** angular diameter subtended by the Moon as seen by an observer ** at the centre of the Earth. */ double phase(double pdate, double *pphase, double *mage, double *dist, double *angdia, double *sudist, double *suangdia) /* pphase: illuminated fraction */ /* mage: age of moon in days */ /* dist: distance in kilometres */ /* angdia: angular diameter in degrees */ /* sudist: distance to Sun */ /* suangdia: sun's angular diameter */ { double Day, N, M, Ec, Lambdasun, ml, MM, Ev, Ae, A3, MmP, mEc, A4, lP, V, lPP, MoonAge, MoonPhase, MoonDist, MoonDFrac, MoonAng, F, SunDist, SunAng; /* Calculation of the Sun's position. */ Day = pdate - epoch; /* date within epoch */ N = fixangle((360 / 365.2422) * Day); /* mean anomaly of the Sun */ M = fixangle(N + elonge - elongp); /* convert from perigee co-ordinates to epoch 1980.0 */ Ec = kepler(M, eccent); /* solve equation of Kepler */ Ec = sqrt((1 + eccent) / (1 - eccent)) * tan(Ec / 2); Ec = 2 * todeg(atan(Ec)); /* true anomaly */ Lambdasun = fixangle(Ec + elongp); /* Sun's geocentric ecliptic longitude */ /* Orbital distance factor. */ F = ((1 + eccent * cos(torad(Ec))) / (1 - eccent * eccent)); SunDist = sunsmax / F; /* distance to Sun in km */ SunAng = F * sunangsiz; /* Sun's angular size in degrees */ /* Calculation of the Moon's position. */ /* Moon's mean longitude. */ ml = fixangle(13.1763966 * Day + mmlong); /* Moon's mean anomaly. */ MM = fixangle(ml - 0.1114041 * Day - mmlongp); /* Evection. */ Ev = 1.2739 * sin(torad(2 * (ml - Lambdasun) - MM)); /* Annual equation. */ Ae = 0.1858 * sin(torad(M)); /* Correction term. */ A3 = 0.37 * sin(torad(M)); /* Corrected anomaly. */ MmP = MM + Ev - Ae - A3; /* Correction for the equation of the centre. */ mEc = 6.2886 * sin(torad(MmP)); /* Another correction term. */ A4 = 0.214 * sin(torad(2 * MmP)); /* Corrected longitude. */ lP = ml + Ev + mEc - Ae + A4; /* Variation. */ V = 0.6583 * sin(torad(2 * (lP - Lambdasun))); /* True longitude. */ lPP = lP + V; /* Calculation of the phase of the Moon. */ /* Age of the Moon in degrees. */ MoonAge = lPP - Lambdasun; /* Phase of the Moon. */ MoonPhase = (1 - cos(torad(MoonAge))) / 2; /* Calculate distance of moon from the centre of the Earth. */ MoonDist = (msmax * (1 - mecc * mecc)) / (1 + mecc * cos(torad(MmP + mEc))); /* Calculate Moon's angular diameter. */ MoonDFrac = MoonDist / msmax; MoonAng = mangsiz / MoonDFrac; *pphase = MoonPhase; *mage = synmonth * (fixangle(MoonAge) / 360.0); *dist = MoonDist; *angdia = MoonAng; *sudist = SunDist; *suangdia = SunAng; return torad(fixangle(MoonAge)); } pngphoon-1.1/tws.h0000644000175000017500000000143710357774235013161 0ustar meikemeike/* tws.h - header file for libtws date/time library */ /* Definition of the tws data structure. */ #ifndef _TWS_H_ #define _TWS_H_ 1 struct tws { int tw_sec; int tw_min; int tw_hour; int tw_mday; int tw_mon; int tw_year; int tw_wday; int tw_yday; int tw_zone; long tw_clock; int tw_flags; #define TW_NULL 0x0000 #define TW_SDAY 0x0007 /* how day-of-week was determined */ #define TW_SEXP 0x0001 /* explicitly given */ #define TW_DST 0x0010 /* daylight savings time */ }; /* Declarations of routines. */ struct tws *dlocaltime( ); /* dlocaltime( &clock ) turns a time(3) clock value into a tws */ struct tws *dtwstime( ); /* dtwstime( ) returns a tws for the current date/time */ #endif pngphoon-1.1/moon.c0000644000175000017500000001013111146264327013267 0ustar meikemeike #include "moon.h" #include "moondata.h" #include "tws.h" #include "phase.h" #include #include static const unsigned char leftmask[8] = { 0xff, 0x7f, 0x3f, 0x1f, 0x0f, 0x07, 0x03, 0x01 }; static const unsigned char rightmask[8] = { 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe }; static const unsigned char shades[16][8] = { { 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff }, { 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff }, { 0x7f,0xff,0xdf,0xff,0xff,0xff,0xff,0xff }, { 0x7f,0xff,0xdf,0xff,0xfe,0xff,0xff,0xff }, { 0x7f,0xff,0xdf,0xff,0xfe,0xff,0xff,0xf7 }, { 0x7f,0xfd,0xdf,0xff,0xfe,0xff,0xff,0xf7 }, { 0x7f,0xfd,0xdf,0xfb,0xfe,0xff,0xff,0xf7 }, { 0x7f,0xfd,0xdf,0xfb,0xfe,0xff,0x7f,0xf7 }, { 0x7f,0xfd,0xdf,0xfb,0xfe,0xfb,0x7f,0xf7 }, { 0x7f,0xfd,0xdf,0xfb,0xbe,0xfb,0x7f,0xf7 }, { 0x7f,0xfd,0xdf,0xfb,0xbe,0xfb,0x5f,0xf7 }, { 0x7f,0xfd,0xdf,0xfb,0xbe,0xfb,0x5f,0xf5 }, { 0x7f,0xfd,0x5f,0xfb,0xbe,0xfb,0x5f,0xf5 }, { 0x7f,0xf5,0x5f,0xfb,0xbe,0xfb,0x5f,0xf5 }, { 0x7f,0xf5,0x5f,0xfb,0xae,0xfb,0x5f,0xf5 }, { 0x5f,0xf5,0x5f,0xfb,0xae,0xfb,0x5f,0xf5 } }; #define PI 3.14159265358979323846 /* assume not near black hole or in Tennessee */ moon_t *mooncreate() { moon_t *moondata; moondata = (moon_t*)malloc(sizeof( moon_t )); moondata->bitmap = (png_bytep)moon_bits; moondata->width = moon_width; moondata->height = moon_height; moondata->xbytes = (moon_width + 7) / 8; return moondata; } void moondestroy( moon_t *moon ) { free( moon ); moon = NULL; } void mooncopy(image_t *image, moon_t *moondata, int cx, int cy, int blackflag) { double jd, angphase, cphase, aom, cdist, cangdia, csund, csuang; struct tws* t; int r = moondata->width/2; int i; register int x, y; int xleft, xright; int txleft, txright; double fxleft, fxright; double fy; int bytexleft, bitxleft, bytexright, bitxright; int bytetxleft, bittxleft, bytetxright, bittxright; int moonoff, imageoff; double cap, ratio; int shadeindex; unsigned char shade; int xoffset, yoffset; t = dtwstime(); xoffset = (cx - moondata->width/2); yoffset = (cy - moondata->height/2); jd = jtime( t ); angphase = phase( jd, &cphase, &aom, &cdist, &cangdia, &csund, &csuang ); cap = cos( angphase ); /* Hack to figure approximate earthlighting. */ if ( cphase < 0.1 ) cphase = 0.1; if ( cphase > 0.9 ) cphase = 0.9; ratio = (1.0 - cphase) / cphase; /* ratio varies from 9.0 to 0.111 */ shadeindex = (int) ( ratio / 9.0 * 15.9999 ); for ( i = 0; i < 2 * r; ++i ) { y = moondata->height/2 - r + i; if ( y < 0 || y >= moondata->height ) continue; fy = i - r; fxright = r * sqrt( 1.0 - ( fy * fy ) / ( r * r ) ); fxleft = - fxright; txleft = fxleft + moondata->width/2 + 0.5; txright = fxright + moondata->width/2 + 0.5; if ( angphase >= 0.0 && angphase < M_PI ) fxright *= cap; else fxleft *= cap; xleft = fxleft + moondata->width/2 + 0.5; xright = fxright + moondata->width/2 + 0.5; bytexleft = xleft / 8; bitxleft = xleft % 8; bytexright = (xright-1) / 8; bitxright = (xright-1) % 8; bytetxleft = txleft / 8; bittxleft = txleft % 8; bytetxright = (txright-1) / 8; bittxright = (txright-1) % 8; moonoff = y * ( moondata->width ) / 8; imageoff = (y + yoffset) * image->xbytes + xoffset / 8; if ( blackflag ) shade = 0xff; else shade = shades[shadeindex][y % 8]; for( x = bytetxleft; x <= bytetxright; x++ ) { if( bytexleft == x ) { image->bitmap[x + imageoff] = moondata->bitmap[x + moonoff] & ~(leftmask[bitxleft] & shade); } else if( bytexright == x ) { image->bitmap[x + imageoff] = moondata->bitmap[x + moonoff] & ~(rightmask[bitxright] & shade); } else if( (bytexleft < x) && (x < bytexright) ) { image->bitmap[x + imageoff] = moondata->bitmap[x + moonoff] & ~shade; } else { image->bitmap[x + imageoff] = moondata->bitmap[x + moonoff]; } } } } pngphoon-1.1/moondata.h0000644000175000017500000132404010357766652014151 0ustar meikemeike#define moon_width 760 #define moon_height 760 static const unsigned char moon_bits[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2d,0xd7,0x76,0xef,0x76, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0xdd, 0x7f,0x7f,0xdb,0x75,0xab,0x7b,0xd8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x36,0xd6,0xeb,0xd5,0xd6,0xff,0xde,0xff,0xad,0x6d,0x6d,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0xfb,0xff,0x7e,0xfe,0xff,0xdd,0x7f,0xdd, 0xff,0xdf,0xb6,0xaa,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x35,0x75,0x5e,0xaa,0xd7, 0xad,0xad,0x7f,0xf7,0xf7,0xb7,0x75,0x6b,0x75,0xb4,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06, 0xd6,0xaf,0xb6,0xf7,0x6d,0xff,0xfb,0xf7,0xde,0xfe,0xff,0xff,0xfd,0xde,0xd5, 0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x01,0x9b,0x5a,0xbd,0xfb,0xad,0xdf,0x76,0xdf,0x5d,0x7f,0xdf, 0xfd,0xda,0xee,0xb5,0x5a,0xea,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1a,0xea,0xd5,0x56,0xae,0xff,0x7d, 0xdf,0xf7,0xff,0xff,0x7f,0xef,0xff,0xbb,0xef,0xae,0xaa,0xaa,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xab,0x5d, 0x55,0x55,0xf5,0xaa,0xff,0x7b,0xbf,0xef,0xff,0xfe,0xff,0x7b,0xfe,0xba,0xb5, 0xad,0x55,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x55,0x6e,0xaa,0xaa,0xba,0x9f,0xff,0xdb,0xef,0xfe,0xfb,0x7b,0xff, 0xff,0xef,0x6b,0xd7,0x56,0xd5,0x6a,0xaa,0x80,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x06,0xed,0xb5,0xb5,0xef,0xd7,0x6a,0xab,0x7f, 0xbf,0xdf,0xbf,0xff,0xbb,0xdb,0xfd,0xfe,0xfa,0xea,0xaa,0xaa,0x92,0x48,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdf,0x5b,0x5a,0xde, 0xaa,0x6d,0xdf,0xff,0xda,0xfb,0x7b,0xed,0xfe,0xff,0x7f,0xb7,0xab,0xad,0xb5, 0xb6,0xaa,0x6a,0xb4,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x0d,0x75,0xad,0xeb,0x6a,0xf5,0xbb,0x75,0x6d,0x7f,0xdf,0xff,0x7f,0xd7,0xef, 0xff,0xff,0xfe,0xfe,0xd6,0xaa,0xab,0x4a,0x92,0xa8,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xeb,0x5e,0xf6,0xad,0xb5,0x4d,0xde,0xde,0xfb,0xeb, 0x75,0x6d,0xda,0xff,0xbd,0xea,0xea,0xb7,0x57,0x5a,0xad,0x75,0x69,0x4a,0xa4, 0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xbd,0xb5,0x56,0xd6,0xd6, 0xb6,0xb5,0xeb,0xb7,0x7f,0xff,0xff,0x77,0xb5,0xff,0xff,0xbf,0xdb,0xb9,0xea, 0xf6,0xad,0xaa,0x28,0x55,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6f, 0xee,0xf7,0xbb,0x5a,0xba,0xd5,0xb7,0x7d,0x5d,0xdb,0x5b,0xab,0xde,0xff,0xef, 0xbb,0xea,0xed,0x6e,0xad,0x55,0xd6,0xb5,0x55,0x25,0x49,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x03,0xfd,0xbb,0x5a,0xd5,0xad,0x4a,0xb6,0xad,0xd5,0x57,0x75, 0xfd,0xbd,0x7b,0xdb,0x7d,0xfe,0xbf,0xb6,0xd5,0x57,0x5b,0x7b,0x55,0x52,0x95, 0x6a,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1d,0x57,0x6d,0xeb,0x6e,0xd6,0xb6, 0xab,0x76,0xaa,0xba,0xde,0xae,0xeb,0xde,0xf7,0xff,0xef,0xea,0xdf,0xfa,0xf4, 0xad,0xaa,0xab,0x4d,0x6a,0x95,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xaf,0xff, 0xf6,0xb5,0xaa,0xb5,0x55,0x5d,0xad,0x5b,0x6d,0xa5,0x75,0xad,0x6b,0x7d,0xdb, 0xfe,0xb7,0x6a,0xad,0x2f,0x52,0xaa,0xad,0x64,0x95,0x55,0xa5,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x07,0x75,0x7a,0xab,0x5a,0xb6,0xaa,0xaa,0xd2,0xb6,0xb5,0xb6,0xaa, 0xda,0xb6,0xbd,0xab,0x7f,0xbb,0xda,0xdd,0xb6,0xa9,0xba,0xb5,0x52,0xaa,0xaa, 0xaa,0x54,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1a,0xdb,0xdf,0xda,0xd5,0x4a,0xaa,0xaa, 0xbd,0xda,0xd6,0xd5,0x55,0xaa,0xad,0xaa,0xf7,0xd6,0xff,0x7f,0x6b,0x55,0x55, 0x6d,0x55,0x55,0x5a,0xaa,0xa9,0x2a,0xa8,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x6d,0xaf,0x75, 0x6d,0x6d,0x55,0x55,0x55,0x4a,0xad,0x5b,0x5a,0x25,0x75,0x56,0xbd,0xbd,0x7d, 0xd5,0xd5,0xd5,0x6d,0x55,0xab,0xad,0x54,0xab,0x55,0x55,0x52,0xa5,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x0b,0xb6,0xf5,0xdf,0xb6,0xb5,0x52,0x2a,0xaa,0xab,0x6b,0x6a,0xe9,0x55, 0xaa,0xda,0xd6,0xd6,0xaf,0xff,0x6e,0xad,0xb5,0x54,0xb5,0x55,0x5b,0x54,0xda, 0xa4,0x95,0x14,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x2c,0xd6,0xaf,0x6a,0xd5,0xaa,0xa9,0xa9,0x55, 0x2d,0x5d,0x57,0x24,0x8a,0x55,0x55,0x55,0x7a,0xf5,0x55,0xa9,0x76,0x55,0x56, 0xad,0x5a,0xaa,0xaa,0xaf,0x55,0x49,0x55,0x52,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xd7,0x6d,0xdb,0xba, 0xb6,0xaa,0x95,0x26,0x4a,0xaa,0xb5,0x5a,0xaa,0x29,0x2f,0x55,0x76,0xd5,0x5f, 0xba,0xaa,0xdb,0x6d,0x52,0xb6,0xea,0xd5,0x55,0x55,0x54,0xaa,0xaa,0xa9,0x40, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x06,0xea,0xdb,0x7d,0x57,0x5a,0xa2,0x4a,0xa9,0x29,0x52,0xd4,0x55,0x51,0x52, 0x93,0xaa,0xad,0x6b,0x4a,0xcf,0x6a,0xad,0x55,0x5d,0x5b,0x2b,0x55,0x6d,0x4a, 0xaa,0x4a,0x49,0x25,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x6b,0x5b,0x7d,0xd5,0xea,0xd7,0x49,0x54,0xa5,0x95, 0x0b,0x69,0x2a,0x94,0x44,0x2a,0xd5,0x57,0x55,0x6d,0x72,0xd5,0x55,0xbd,0x55, 0x56,0xd5,0x55,0x2a,0xaa,0xd2,0xa5,0x54,0xaa,0xad,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x5a,0xae,0xd6,0xb5,0x55, 0x6a,0x82,0x92,0xa8,0x48,0xa5,0x24,0x04,0x41,0x20,0x85,0x5a,0xb5,0x55,0x5b, 0x6d,0x5a,0xa5,0x55,0xa7,0xab,0x55,0x54,0xaa,0xd5,0x54,0x52,0x4a,0xaa,0xa5, 0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02, 0xab,0x75,0xb5,0xdd,0x6a,0xb4,0x54,0x4a,0x12,0x26,0x08,0x11,0x49,0x14,0x8a, 0x2a,0xa5,0x55,0x55,0xad,0x25,0x56,0x55,0x5a,0xa8,0xdd,0xea,0xa2,0xaa,0x52, 0xa5,0x49,0x22,0x55,0x54,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x2a,0xad,0x96,0xad,0x65,0xad,0x57,0x4a,0xa4,0xa1,0x51, 0x20,0xa4,0x00,0x01,0x20,0x91,0x15,0x55,0x54,0x94,0x96,0xab,0x55,0x6e,0xaf, 0x56,0xaa,0xad,0x4a,0xaa,0xd5,0x54,0xa9,0x49,0x5e,0x88,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x55,0xda,0xeb,0x56,0xbc,0xb5, 0xa9,0x21,0x09,0x04,0xa0,0x02,0x01,0x2a,0x54,0x0a,0x4a,0x45,0x6a,0x22,0xa4, 0x49,0x4a,0xd5,0x2b,0x51,0x2b,0x75,0x52,0xaa,0xaa,0x55,0x52,0x44,0xb2,0xaa, 0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xaa, 0xad,0xb5,0x6a,0xd6,0xaa,0xd4,0x94,0xa0,0x22,0x0a,0x90,0x08,0x01,0x01,0x40, 0x44,0x15,0x52,0xa1,0x12,0x25,0x12,0xaa,0xa9,0x55,0x55,0xbe,0xad,0x29,0x4b, 0x45,0x29,0x2a,0xaa,0xd2,0xaa,0xb0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x0a,0xad,0xd6,0xae,0xad,0x55,0x57,0x4a,0x20,0x0a,0x88,0x80, 0x08,0x42,0x54,0x48,0x95,0x20,0x8a,0x89,0x08,0x49,0x54,0x49,0x69,0x4a,0x95, 0x4a,0xa5,0x52,0x95,0x24,0xa8,0x95,0x51,0x4a,0x55,0x52,0x94,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x55,0x56,0xbb,0x53,0xb6,0xaa,0xad, 0x21,0x44,0xa0,0x21,0x10,0xa2,0x10,0x89,0x12,0x00,0x0a,0x21,0x20,0x42,0x02, 0x0a,0xa2,0xaa,0xa5,0x54,0x95,0x55,0x29,0x54,0x92,0xa5,0x54,0x8a,0x29,0x55, 0x55,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xda,0xeb, 0x55,0x6c,0xd5,0x55,0xd4,0x96,0x12,0x55,0x08,0x02,0x00,0x04,0x20,0x04,0xaa, 0x40,0x88,0x84,0x11,0x51,0x51,0x11,0x14,0x92,0x22,0x4a,0xaa,0x95,0x25,0x55, 0x55,0x55,0x6a,0xa5,0x54,0x92,0xaa,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x05,0x6b,0x3d,0x6d,0xa5,0x55,0x6e,0xaa,0x52,0x89,0x40,0x91,0x28, 0x52,0x92,0x8a,0xa2,0x00,0x12,0x22,0x00,0x04,0x08,0x24,0xaa,0x4b,0x49,0x4a, 0x91,0x5a,0xa2,0x94,0xa5,0x55,0x52,0xa9,0x54,0x92,0x4a,0xaf,0x50,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2b,0xad,0xcb,0x55,0x56,0xaa,0x95,0x51, 0x54,0xa1,0x54,0x22,0x01,0x04,0x00,0x20,0x09,0x52,0x88,0x88,0x22,0x80,0x45, 0x09,0x25,0x25,0x24,0xa4,0x44,0xaa,0x94,0xa2,0x52,0x94,0xab,0x6a,0xaa,0xad, 0x54,0xb5,0xda,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xae,0xd5,0x2d, 0x5a,0xa2,0xaa,0xd2,0xaa,0x95,0x14,0x82,0x80,0x48,0x50,0x54,0x84,0x90,0x00, 0x40,0x01,0x08,0x11,0x00,0x52,0x52,0xab,0x52,0x12,0xaa,0x42,0x55,0x55,0x14, 0xaa,0xaa,0xad,0x55,0x55,0x42,0xaf,0x6a,0x80,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x01,0x56,0xaa,0xab,0x54,0xaa,0x95,0x25,0x0a,0x68,0x82,0x28,0x12,0x21, 0x00,0x01,0x10,0x22,0x95,0x12,0x54,0x80,0x04,0x12,0x08,0x24,0x54,0xa4,0xa0, 0x11,0x29,0x52,0x14,0xca,0xaa,0xaa,0xd6,0xd5,0x56,0xb4,0xab,0x55,0x40,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x5b,0x6d,0x54,0xaa,0x12,0x90,0x08,0x51, 0x25,0x56,0x82,0x41,0x90,0x12,0x48,0x02,0x04,0x40,0x00,0x00,0x24,0x90,0x40, 0x82,0x82,0xa9,0x12,0x55,0x4a,0xaa,0x4a,0xa9,0x29,0x24,0x95,0x6a,0xaa,0xb5, 0x6f,0x5d,0xb6,0xa8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0x55,0xaa,0xab, 0x55,0x4a,0x44,0xa1,0x04,0xaa,0x15,0x50,0x94,0xc4,0x80,0x02,0xa8,0x91,0x01, 0x55,0x24,0x00,0x01,0x14,0x54,0x10,0x24,0xa9,0x0a,0x24,0x25,0xa4,0xa4,0xaa, 0x92,0x4a,0xaa,0xaa,0xab,0xbb,0xf7,0x55,0xa8,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x2a,0xaa,0xaa,0xaa,0xa8,0x21,0x10,0x04,0x52,0x81,0x4a,0x88,0x02,0x20, 0x11,0x50,0x40,0x00,0x28,0x00,0x01,0x22,0x44,0x41,0x00,0x45,0x08,0x44,0xd1, 0x12,0x92,0xaa,0x2a,0x54,0xa9,0x6a,0xaa,0xd5,0x55,0x6d,0x5b,0xd6,0xa4,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xaa,0xda,0xaa,0xa9,0x52,0x8a,0x01,0x40,0x00, 0x54,0x24,0x52,0xa8,0x89,0x04,0x04,0x09,0x25,0x02,0x15,0x54,0x08,0x10,0x0a, 0x55,0x00,0x42,0x12,0x2a,0x85,0x44,0xa1,0x41,0x5a,0x55,0x55,0x55,0x55,0x55, 0xab,0xb6,0xb2,0xab,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x55,0x55,0x5a,0xd5, 0x28,0x20,0x44,0x09,0x01,0x01,0x52,0x84,0x42,0x20,0x40,0x91,0x40,0x00,0xa0, 0xa1,0x21,0x21,0x01,0x10,0x00,0x52,0x14,0xa9,0x44,0x50,0x28,0x14,0x2a,0x49, 0x2a,0xaa,0xaa,0xaa,0xaa,0xad,0x6a,0xed,0x69,0x50,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x12,0xaa,0xaa,0xa5,0x24,0x85,0x08,0x00,0x80,0x48,0x54,0x29,0x29,0x28,0x8a, 0x2a,0x40,0x12,0x54,0x0a,0x15,0x54,0x80,0x20,0x45,0x4a,0x01,0x01,0x0a,0x12, 0x02,0x82,0xa2,0x92,0xaa,0xb4,0x4a,0x55,0x52,0xaa,0x55,0xbb,0x5a,0xad,0x48, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x4a,0xab,0x55,0x55,0x55,0x22,0xa2,0x22,0x12,0x02, 0x01,0xa4,0x44,0x80,0x20,0x8b,0x52,0x40,0x01,0x20,0xb5,0x56,0x55,0x09,0x12, 0x10,0x48,0x54,0x52,0x89,0x50,0x12,0x08,0x48,0x94,0x42,0x92,0x95,0x14,0x95, 0x7a,0xdd,0xbd,0x5e,0xa1,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0xaa,0xaa,0x49,0x50, 0x10,0x00,0x08,0x00,0x11,0x24,0xaa,0x50,0x55,0x08,0xa8,0x80,0x0a,0xa4,0x16, 0xaa,0x55,0x48,0x80,0x04,0x82,0x02,0x02,0x08,0x44,0x84,0x41,0x42,0xa4,0x49, 0x14,0x24,0xaa,0xaa,0x52,0x56,0xa6,0xd4,0x25,0x5a,0x40,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x59,0x5a,0x55,0x24,0x89,0x44,0x09,0x41,0x54,0x84,0x8a,0xa9,0x05,0x20,0xa5, 0x12,0x09,0x20,0x09,0xd5,0x55,0x5a,0xa6,0x6a,0x48,0x51,0x24,0xa8,0xa2,0xa9, 0x21,0x08,0x28,0x12,0x24,0x80,0x82,0x41,0x52,0x8a,0xaa,0xbb,0x77,0xaa,0xa4, 0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x02,0x05,0x6a,0xa2,0x92,0x04,0x11,0x20,0x04,0x20,0x01, 0x55,0xaa,0xa0,0x8a,0x08,0xa0,0x80,0x04,0xa2,0x55,0x55,0x6e,0xa9,0xa1,0x02, 0x08,0x40,0x04,0x01,0x04,0xa8,0x22,0x85,0x40,0x82,0x34,0x28,0x94,0x24,0x29, 0x5a,0xab,0xbb,0x55,0x55,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb5,0x55,0x54,0x48,0x50, 0x40,0x04,0xa0,0x8a,0x55,0x55,0xe9,0x15,0x05,0x64,0x05,0x55,0x40,0x0a,0xaa, 0xaa,0xaa,0xd5,0x54,0xa8,0xa5,0x14,0x92,0x94,0x52,0xa5,0x08,0x52,0x92,0x10, 0x8a,0x84,0x09,0x92,0x85,0x4a,0x95,0x5d,0xe5,0x4a,0x90,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a, 0xaa,0xa9,0x12,0x01,0x05,0x0a,0xa0,0x08,0x11,0x4a,0xaa,0xaa,0x52,0x54,0xa2, 0x95,0x54,0x95,0x76,0xba,0xaa,0xaa,0xaa,0xab,0xa5,0x50,0x40,0x40,0x21,0x4a, 0x50,0x42,0x08,0x00,0x04,0x20,0x01,0x24,0x09,0x52,0x25,0x6e,0xab,0x5d,0x55, 0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0x22,0x52,0xa4,0xa8,0xa4,0x50,0x24,0x55,0x45,0x4a,0xb5, 0xb5,0x52,0x89,0x0a,0x98,0x2d,0x6b,0x42,0xd5,0x44,0x95,0x55,0x55,0x54,0xb5, 0x04,0x12,0x0a,0x08,0x25,0x04,0x10,0x82,0x48,0x90,0x82,0x48,0x02,0xa0,0x29, 0x49,0x6a,0xea,0xea,0xb5,0x49,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0xaa,0xa1,0x12,0x00,0x04, 0xaa,0x80,0x20,0x2a,0xad,0x5a,0xa4,0x62,0xa9,0x41,0x56,0xd5,0xb5,0x6a,0x2a, 0x55,0x49,0x55,0x69,0x16,0xa8,0xa0,0x80,0xa2,0x90,0xa2,0x8a,0x10,0x02,0x02, 0x08,0x01,0x24,0x09,0x44,0x24,0x96,0xad,0xbf,0x6a,0xaa,0x20,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x95, 0x4a,0x54,0x40,0x09,0x22,0xaa,0x2a,0x96,0x95,0x56,0xaa,0xa2,0x94,0xa8,0x04, 0x2b,0x6e,0xdb,0xaa,0x91,0x55,0x6a,0xaa,0xaa,0xd5,0x52,0x04,0x29,0x10,0x4a, 0x14,0x20,0x45,0x40,0x48,0x81,0x24,0x00,0x40,0x12,0x91,0x4b,0x5a,0xea,0xb5, 0x54,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x04,0x29,0x25,0x01,0x14,0x40,0x09,0x54,0xa4,0x49,0x6a,0xba, 0xd4,0xa9,0x25,0x42,0x91,0x54,0xb5,0xee,0xea,0x4a,0xaa,0x95,0x52,0xaa,0x5a, 0xa4,0x90,0x84,0x24,0x20,0x82,0x84,0x10,0x92,0x02,0x50,0x00,0x11,0x04,0x89, 0x24,0x2d,0xb5,0xbf,0xad,0x52,0x45,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x12,0x90,0xa8,0x48,0x04,0xa6, 0xd2,0x52,0xab,0xab,0x4a,0xaa,0x54,0x94,0xa8,0x41,0x12,0xaf,0x7f,0xba,0xa5, 0x55,0x62,0x09,0x55,0x56,0x92,0x42,0x10,0x82,0x92,0x54,0x11,0x44,0x40,0xa0, 0x44,0x91,0x00,0x00,0x20,0x92,0x92,0xd5,0xaa,0xd5,0x6d,0x48,0x80,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa4, 0x45,0x02,0x11,0x10,0x05,0x49,0x0a,0xaa,0xd5,0x55,0x55,0x4a,0x4a,0x55,0x14, 0xa9,0x53,0xfb,0x64,0x5a,0xd5,0x94,0xaa,0xaa,0xbd,0x49,0x10,0x44,0x28,0x44, 0x02,0x84,0x12,0x0a,0x02,0x00,0x00,0x48,0x20,0x02,0x49,0x45,0x5a,0xeb,0xea, 0xaa,0xa4,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x0a,0x11,0x10,0x00,0x40,0x02,0x55,0x21,0x45,0x57,0x6d,0x55, 0x52,0x55,0x50,0x20,0xa2,0x44,0xaa,0xad,0xd5,0x44,0x02,0x69,0x52,0x55,0x56, 0xac,0x44,0x02,0x85,0x10,0x91,0x51,0x40,0x90,0x08,0x25,0x08,0x01,0x04,0x88, 0x14,0x92,0xad,0x5d,0x5a,0xaa,0x12,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x4a,0x44,0x48,0x04,0x10,0x82, 0xaa,0x93,0x55,0xb5,0x4a,0xa9,0x54,0xaa,0x8a,0x8b,0x12,0x0a,0xda,0x52,0x90, 0x11,0x2a,0x15,0x2a,0xdd,0x50,0x01,0x28,0x20,0x82,0x04,0x04,0x14,0x01,0x20, 0x80,0x41,0x20,0x10,0x00,0x02,0x49,0x75,0xeb,0xea,0xaa,0xd5,0x04,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00, 0x10,0x00,0x80,0x42,0x29,0x40,0x4d,0xda,0xd5,0x55,0x56,0x8a,0x92,0x22,0x50, 0xa0,0xa4,0x6a,0xaa,0x80,0x80,0x55,0x50,0x96,0xb7,0x54,0x20,0x45,0x4a,0x50, 0x41,0x40,0x01,0x24,0x02,0x04,0x04,0x00,0x80,0x00,0x91,0x24,0x15,0x35,0x55, 0x55,0x2a,0xa1,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x04,0x00,0xaa,0x40,0x00,0x08,0x00,0x84,0x2b,0x2b,0x6b,0x55,0x4a, 0xb5,0x52,0x48,0x89,0x56,0x4a,0x53,0x2b,0x55,0x80,0x00,0x2a,0xae,0xab,0xed, 0xa9,0x04,0x10,0x90,0x09,0x14,0x12,0xa4,0x11,0x40,0x11,0x20,0x04,0x02,0x44, 0x02,0x91,0x55,0xda,0xbb,0x54,0x92,0x90,0x80,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0x24,0x00,0x02,0x02,0x00,0x94,0x2a, 0xaa,0xd5,0x5d,0x55,0x29,0x48,0x95,0x24,0x54,0x91,0x00,0x00,0xd2,0x6f,0x24, 0x02,0x15,0x2a,0xaa,0xbb,0xf4,0x51,0x4d,0x22,0xa0,0x02,0x88,0x00,0x40,0x0a, 0x40,0x01,0x20,0x20,0x00,0x08,0x4a,0x0a,0x55,0x6d,0xab,0x49,0x4a,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x10, 0x00,0x20,0x20,0x02,0x8b,0x76,0x55,0x6b,0x55,0x52,0xa6,0x40,0xf2,0x82,0x48, 0xa4,0x04,0x09,0x29,0x00,0x20,0x29,0x55,0x57,0x6f,0x56,0x84,0x52,0x88,0x05, 0x50,0x42,0x92,0x0a,0x20,0x04,0x10,0x02,0x08,0x24,0x80,0x10,0x29,0x55,0x56, 0xd5,0x58,0x24,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x01,0x02,0x44,0x81,0x00,0x00,0x02,0x48,0x2d,0x5a,0xaa,0xad,0xa9,0x24, 0x12,0xaa,0x48,0x29,0x04,0x00,0x40,0x22,0xab,0x41,0x00,0x2a,0x96,0xaa,0xd6, 0xd9,0x51,0x28,0x21,0x10,0x0a,0x10,0x00,0x20,0x89,0x21,0x04,0x90,0x80,0x80, 0x10,0x05,0x0a,0xaa,0xbb,0x55,0x5d,0x92,0x04,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x08,0x08,0x20,0x08,0x04,0x00,0x00,0x95, 0x6a,0xab,0x5a,0xa5,0x4a,0xd4,0x2a,0x95,0x82,0xa0,0x00,0x02,0x44,0x15,0x08, 0x02,0xa4,0x55,0x65,0xbb,0x6a,0xac,0xa5,0x14,0x42,0xa1,0x45,0x51,0x04,0x00, 0x08,0x40,0x02,0x10,0x01,0x00,0x80,0xa0,0x8a,0xad,0x76,0xa4,0x45,0x50,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x40,0x04, 0x00,0x80,0x49,0x24,0x2a,0xaa,0xaa,0xb6,0xaa,0x28,0x22,0x94,0xa2,0x50,0x12, 0x01,0x00,0x09,0x4a,0x80,0x08,0xa9,0x2a,0xd5,0x55,0x5d,0x55,0x34,0xa1,0x10, 0x54,0x10,0x04,0x22,0x54,0x81,0x09,0x08,0x02,0x10,0x02,0x12,0x0d,0x2a,0xaa, 0x9a,0xd6,0xa9,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x44,0x08,0x02,0x90,0x20,0x00,0x00,0x11,0x5b,0xb6,0xd5,0xde,0x95,0x4a, 0x94,0xaa,0x49,0x25,0x00,0x24,0x08,0x82,0x51,0x62,0x05,0x44,0x95,0x4a,0xad, 0xae,0xd4,0x92,0x44,0x4a,0xd1,0x42,0x40,0x95,0x02,0x10,0x20,0x40,0x20,0x84, 0x48,0x00,0x50,0x55,0x55,0x6d,0x59,0x52,0x54,0x80,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x20,0x90,0x00,0x80,0x11,0x09,0x04,0x55, 0x5a,0xaa,0xad,0x49,0x24,0x52,0x52,0xa4,0x80,0x48,0x00,0x00,0x40,0x22,0x54, 0xb6,0xa8,0x55,0x5b,0x5a,0xfb,0xbb,0x6a,0x90,0x25,0x64,0x08,0x14,0x44,0x50, 0x45,0x09,0x10,0x80,0x00,0x00,0x49,0x05,0x15,0x2a,0xb6,0xab,0x49,0x50,0x20, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x02,0x02,0x40, 0x01,0x00,0x20,0x51,0x2d,0xaa,0xdf,0x76,0xa4,0xa9,0x29,0x2d,0x48,0x10,0x01, 0x00,0x22,0x49,0x08,0x8a,0x42,0x92,0x81,0x4a,0xd7,0x5e,0xaa,0x95,0x41,0x4a, 0x90,0x82,0x82,0x32,0xa9,0x10,0x50,0x42,0x04,0x42,0x01,0x00,0x10,0x45,0x4b, 0x55,0xaa,0xaa,0x12,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x09,0x40,0x90,0x48,0x10,0x00,0x04,0x02,0x05,0x56,0xf6,0xa5,0xaa,0xaa,0x94, 0x94,0xaa,0x80,0x81,0x00,0x20,0x00,0x80,0x82,0x21,0x2a,0xa8,0x2a,0x53,0x75, 0x7f,0xaa,0xaa,0xa8,0x10,0x42,0x20,0x51,0x48,0xa4,0x4a,0x45,0x00,0x00,0x10, 0x48,0x04,0x85,0x2b,0x44,0xae,0xea,0x81,0x48,0x80,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x01,0x42,0x08,0x20,0x88,0x2a,0xaa, 0x95,0x57,0xdd,0x49,0x22,0xaa,0x54,0x22,0x04,0x12,0x02,0x08,0x22,0x20,0x8a, 0x4a,0x96,0x91,0x0a,0xbd,0xe5,0xad,0x55,0x52,0x2a,0x28,0x8a,0x8a,0x95,0x52, 0x24,0x00,0x20,0x91,0x01,0x00,0x20,0x24,0x4a,0xaa,0xaa,0x9b,0x48,0xa5,0x24, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x90,0x00, 0x20,0x80,0x20,0x95,0x5a,0xed,0x96,0xea,0x94,0x54,0x10,0xaa,0x80,0x10,0x40, 0x08,0x27,0x88,0x08,0x20,0x12,0x52,0xa4,0x54,0xb6,0xb6,0xd5,0xaa,0x29,0x09, 0x24,0x10,0x22,0x54,0x4a,0x92,0xa9,0x0a,0x00,0x08,0x12,0x02,0x49,0x2a,0xa5, 0x52,0xa5,0xa2,0x29,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x04,0x08,0x84,0x04,0x00,0x80,0x02,0x0a,0x54,0xad,0x36,0xab,0x56,0xca,0x92, 0xa4,0x24,0x08,0x05,0x0a,0xa0,0x02,0xa0,0x81,0x54,0x89,0x55,0x55,0x2d,0x5f, 0xdb,0x55,0x54,0xd4,0x40,0x92,0x85,0x4a,0xab,0x54,0x49,0x00,0x40,0x12,0x40, 0x40,0x90,0x0a,0x49,0x52,0xab,0x0a,0xc0,0x88,0x94,0x80,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x00,0x21,0x24,0x04,0x91,0x45,0xeb,0x55, 0xd5,0x54,0xa8,0x10,0x02,0xa9,0x48,0x80,0x40,0x40,0x00,0x08,0x02,0x20,0x01, 0x00,0x22,0xaa,0xf5,0x25,0x56,0xaa,0xab,0x2a,0x94,0x48,0x50,0x25,0xd4,0xab, 0x24,0x4a,0x00,0x80,0x05,0x00,0x02,0xa4,0xaa,0xb5,0x2a,0xc5,0x54,0x05,0x28, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x22,0x10,0x12,0x00,0x00, 0x14,0x04,0xab,0xad,0x6e,0xaa,0xea,0xa2,0x00,0x54,0xa5,0x20,0x01,0x08,0x11, 0x01,0x00,0x01,0x45,0x12,0x22,0x48,0x55,0x54,0x95,0xd5,0x57,0xaa,0xa4,0x82, 0x22,0x25,0x52,0xab,0x55,0x92,0x00,0x94,0x04,0x40,0x08,0x40,0x49,0x15,0x5a, 0xad,0x51,0x68,0x22,0x82,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x40,0x89,0x00,0x52,0xaa,0xaa,0xd5,0x5a,0xed,0x28,0x00,0x49,0x02, 0xaa,0xa0,0x24,0x00,0x00,0x08,0x20,0xd5,0x0a,0x80,0x00,0x01,0x01,0xb6,0xb6, 0xad,0x55,0x6a,0xa9,0x20,0x80,0x90,0x09,0x5a,0xa9,0x44,0xa8,0x10,0x21,0x08, 0x22,0x09,0x44,0x4a,0xa4,0x52,0x54,0xaa,0x02,0x54,0x84,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x04,0x08,0x42,0x00,0x00,0x21,0x08,0x4d,0x2a,0xaa,0xf7, 0x55,0x42,0x48,0x00,0x01,0x45,0x44,0x80,0x00,0x80,0x20,0x00,0x2c,0x82,0x10, 0x88,0x00,0x2a,0xbb,0x6a,0xd5,0x5f,0xaa,0x42,0x48,0x14,0x0a,0xa4,0xad,0x55, 0x22,0x02,0x44,0x84,0x21,0x09,0x02,0x2a,0x2a,0x95,0x8a,0xaa,0xb5,0x11,0x52, 0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x08,0x12,0x22,0x40, 0x25,0x2c,0xb5,0x55,0x5a,0xd4,0x80,0x01,0x22,0x08,0x2a,0x10,0x00,0x02,0x08, 0x80,0x02,0x8a,0x20,0x42,0x00,0x8a,0x00,0x55,0x55,0x55,0x52,0xa9,0x29,0x22, 0x41,0x40,0x12,0x5b,0x55,0x11,0x50,0x10,0x08,0x84,0xa4,0x41,0x41,0x51,0x2a, 0xea,0x95,0x1a,0x80,0x59,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10, 0x01,0x00,0x80,0x08,0x84,0x55,0x55,0x5a,0xaa,0xaf,0x52,0x11,0x00,0x00,0x20, 0x11,0x40,0x00,0x40,0x00,0x00,0x08,0x0d,0x84,0x00,0x22,0x00,0x95,0x2d,0x6f, 0x1b,0x55,0x56,0xd4,0x88,0x84,0x2a,0xa5,0x56,0xa8,0xa9,0x0a,0x85,0x40,0x29, 0x42,0x10,0x2c,0x48,0xaa,0x95,0x45,0x4a,0xa5,0x24,0x88,0x80,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x41,0x00,0x20,0x01,0x00,0x01,0x34,0xa2,0xaa,0xad,0x75, 0xa8,0x00,0x24,0x24,0x02,0x48,0x00,0x22,0x08,0x00,0x01,0x20,0x20,0x90,0x90, 0x80,0x20,0x00,0x9f,0xbd,0xeb,0x57,0xed,0x6a,0xa2,0x11,0x14,0x49,0x55,0x4a, 0x48,0xa0,0x20,0x24,0x84,0xa9,0x44,0x92,0xad,0x55,0x55,0x55,0x55,0x50,0x5a, 0x4a,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x02,0x24,0x55,0x2a, 0x95,0x15,0x52,0xb2,0x9e,0xa0,0x44,0x01,0x00,0x80,0x22,0x00,0x00,0x00,0x24, 0x20,0x00,0x04,0x40,0x04,0x08,0x05,0x54,0x2a,0xcb,0x55,0x41,0x75,0x55,0x11, 0x4a,0x42,0x92,0x48,0x21,0x24,0x12,0x15,0x48,0x22,0x84,0x10,0x25,0x24,0xac, 0xaa,0xaa,0xc2,0xad,0x55,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x04, 0x21,0x08,0x00,0x00,0x02,0x51,0x55,0x49,0x49,0x65,0x42,0x00,0x00,0x10,0x08, 0x00,0x02,0x00,0x00,0x80,0x84,0x41,0x11,0x01,0x00,0x41,0x00,0x01,0x05,0x2f, 0xd5,0xad,0x5a,0xa8,0x4a,0x20,0x94,0x48,0x92,0x8a,0x49,0x40,0x82,0x22,0x14, 0xa1,0x21,0x12,0x56,0xab,0x55,0x52,0x91,0x53,0x54,0x88,0xa4,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x04,0x00,0x00,0x20,0x80,0x94,0x08,0x8a,0xaa,0xaa,0xb5,0x2f, 0x08,0x01,0x24,0x82,0x01,0x10,0x20,0x00,0x20,0x00,0x00,0x00,0x40,0x28,0x2a, 0x00,0x52,0x0a,0xa8,0x54,0xaa,0xaa,0xe5,0xaa,0x91,0x14,0x52,0x95,0x24,0x21, 0x24,0x14,0x29,0x48,0xa2,0x48,0x08,0x89,0x52,0x56,0x94,0xa9,0x44,0xac,0xaa, 0x4a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x04,0x00,0x12,0x12,0x42, 0x55,0x55,0x55,0x52,0xb5,0x40,0x48,0x00,0x00,0x20,0x00,0x00,0x08,0x82,0x04, 0x00,0x08,0x04,0x00,0x80,0x52,0x00,0xa1,0x00,0x0a,0x55,0x55,0x96,0xaa,0x44, 0x4a,0x94,0x82,0x41,0x14,0x92,0xa1,0x44,0x92,0x15,0x01,0x40,0x55,0x55,0x55, 0x53,0x55,0x28,0x25,0x2a,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x01, 0x10,0x04,0x00,0x00,0x09,0x2a,0x4a,0xa9,0x4a,0xac,0x80,0x00,0x01,0x10,0x80, 0x01,0x00,0x20,0x00,0x00,0x00,0x81,0x01,0x02,0x3e,0x00,0x08,0x00,0x42,0x45, 0x28,0xaa,0xaa,0xaa,0x91,0x22,0x52,0x55,0x14,0xaa,0x49,0x15,0x51,0x48,0x88, 0x48,0x45,0x0a,0x4a,0xaa,0xad,0x28,0xa2,0x92,0x4a,0x54,0x55,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x80,0x00,0x90,0x81,0x00,0x04,0x85,0x29,0x6a,0x54,0xf6, 0x09,0x01,0x10,0x04,0x04,0x88,0x00,0x80,0x00,0x20,0x92,0x10,0x24,0x48,0x0a, 0x89,0x41,0x04,0x08,0x2a,0xa5,0x4a,0x56,0xaa,0x54,0x89,0x55,0x00,0xa4,0x41, 0x24,0x94,0x88,0x25,0x24,0x02,0x40,0xa5,0x51,0x55,0x52,0xae,0x59,0x59,0x15, 0x29,0x02,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x08,0x00,0x40,0x00,0x08,0x20,0x10, 0x55,0x55,0xaa,0x4b,0x5a,0x40,0x10,0x02,0x40,0x00,0x00,0x02,0x00,0x00,0x80, 0x00,0x00,0x80,0x00,0x44,0x00,0x08,0x11,0x20,0x92,0x29,0x55,0xad,0x51,0x22, 0x24,0xa9,0x55,0x11,0x15,0x49,0x4b,0x25,0x52,0x52,0xa8,0x92,0x12,0x89,0x4a, 0xaa,0x91,0x44,0xa4,0x81,0x44,0x28,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09, 0x00,0x22,0x00,0x02,0x05,0x0a,0x4a,0x55,0x25,0xac,0x00,0x00,0x40,0x00,0x10, 0x00,0x00,0x00,0x04,0x02,0x00,0x02,0x01,0x01,0x00,0x49,0x00,0x80,0x00,0x4a, 0xa5,0x2a,0xaa,0xaa,0xd8,0x92,0x5c,0x00,0xa4,0xa2,0x22,0x21,0x49,0x49,0x28, 0x00,0x04,0xaa,0x64,0x55,0x25,0x4a,0xb2,0x8a,0x54,0xa9,0x04,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x10,0x02,0x20,0x04,0x80,0x40,0x00,0x22,0xaa,0xa5,0xa4,0xaa,0xba, 0x40,0x44,0x09,0x04,0x80,0x00,0x00,0x00,0x10,0x00,0x00,0x48,0x08,0x20,0x11, 0x00,0x22,0x12,0x89,0x32,0xa0,0xa9,0x56,0xaa,0xa6,0x89,0x53,0xb4,0x81,0x11, 0x55,0x55,0x25,0x24,0x85,0x52,0x40,0x45,0x12,0xaa,0x95,0x55,0x15,0x22,0x42, 0x20,0x52,0xa9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x80,0x08, 0x11,0x14,0x52,0x15,0xa8,0x09,0x00,0x00,0x00,0x00,0x90,0x40,0x00,0x00,0x10, 0x49,0x00,0x00,0x04,0x04,0x04,0x00,0x40,0x20,0x0a,0xaa,0xa5,0xfd,0x52,0xaa, 0x45,0x2a,0xa2,0x2a,0x48,0x92,0xa9,0x48,0x92,0x50,0x08,0x15,0x12,0xc8,0x55, 0x69,0x51,0x4a,0x91,0x34,0x55,0x04,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x00, 0x00,0x49,0x04,0x04,0x12,0xa4,0xd2,0x89,0x4a,0x59,0x00,0x00,0x84,0x40,0x04, 0x01,0x00,0x00,0x00,0x40,0x00,0x00,0x22,0x40,0x40,0x21,0x09,0x04,0x80,0xa3, 0x49,0x55,0x6a,0xaa,0xa9,0x21,0x54,0xa0,0x84,0x25,0x59,0x45,0x25,0x40,0x24, 0xa1,0x40,0xaa,0x96,0x92,0x2d,0x6a,0xa4,0xd4,0x89,0x28,0x11,0x24,0x80,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x01,0x00,0x00,0x44,0x24,0x00,0x00,0x00,0x42,0x09,0x0a,0xaa,0xa5,0xa0, 0x20,0x02,0x01,0x04,0x40,0x00,0x02,0x00,0x00,0x02,0x40,0x00,0x80,0x00,0x10, 0x80,0x20,0x10,0x08,0x2c,0xa2,0x13,0xf7,0xab,0x6c,0x95,0x15,0x55,0x22,0x90, 0x4c,0xb2,0x90,0x29,0x40,0x08,0x05,0x2a,0x8a,0x5b,0x52,0x95,0x52,0x52,0x50, 0x8a,0x42,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x81,0x00,0x00,0x00,0x00, 0xa2,0x64,0x90,0x15,0x54,0x80,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x80,0x00, 0x08,0x10,0x01,0x01,0x00,0x04,0x80,0x82,0x42,0x0a,0x88,0xac,0xda,0xd5,0x25, 0x55,0x55,0xa4,0xaa,0xca,0xa6,0x8a,0x56,0x80,0x09,0x22,0x40,0x95,0x65,0x2a, 0xd5,0x6a,0x4a,0xa9,0x0a,0x21,0x00,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0x00, 0x04,0x40,0x00,0x10,0x0a,0x14,0x8a,0x4b,0x55,0x60,0x04,0x20,0x00,0x20,0x10, 0x00,0x00,0x02,0x02,0x08,0x01,0x02,0x08,0x24,0x04,0x00,0x04,0x08,0x00,0x8b, 0x52,0x53,0x6a,0xba,0xd5,0x5a,0x96,0xd6,0xaa,0xa8,0x29,0xd5,0x40,0x14,0x80, 0x00,0x15,0x65,0x12,0x95,0x51,0x55,0xaa,0xd4,0xa1,0x0a,0x49,0x20,0x90,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x02,0x00,0x00,0x10,0x04,0x22,0x40,0x01,0x42,0x21,0x24,0x56,0x90, 0x00,0x80,0x01,0x02,0x00,0x00,0x00,0x08,0x00,0x20,0x40,0x00,0x00,0x00,0x20, 0x22,0x10,0x40,0x92,0x23,0x48,0x94,0xa6,0x6a,0x4a,0xa5,0x2a,0xaa,0x2d,0xea, 0xaa,0xa2,0x2a,0x80,0x29,0x24,0x80,0xb5,0x48,0x54,0x55,0x2a,0x69,0x55,0x2a, 0x21,0x20,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x12,0x00,0x00,0x00,0x01,0x54, 0x29,0x4a,0x49,0x55,0x42,0x40,0x00,0x24,0x00,0x00,0x42,0x08,0x00,0x00,0x00, 0x04,0x20,0x22,0x00,0x8b,0x00,0x40,0x02,0x00,0x00,0x7e,0x4b,0x79,0x5a,0xaa, 0x95,0x45,0x52,0xdf,0x6a,0x15,0x5a,0xa4,0x22,0x82,0x10,0x12,0x0a,0x52,0x95, 0x16,0xab,0x96,0xaa,0x90,0x80,0x4a,0xa2,0xa0,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x80, 0x40,0x10,0x80,0x01,0x01,0x04,0x21,0x22,0xaa,0x80,0x08,0x00,0x80,0x08,0x41, 0x00,0x00,0x40,0x00,0x80,0x10,0x04,0x00,0x94,0x08,0x88,0x01,0x20,0x49,0x11, 0x64,0x54,0xa5,0x55,0x55,0x52,0x22,0xaa,0xb5,0xb5,0x4a,0xaa,0x92,0x88,0x10, 0xa5,0x21,0x55,0x08,0x50,0xa5,0x24,0x4a,0x94,0x4a,0x09,0x00,0x10,0x02,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x01,0x00,0x80,0x20,0x00,0x00,0x40,0x04,0x00,0xa8,0xd2,0x8a,0x14,0xb6,0xc8, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x40,0x82,0x00,0x02, 0x01,0x10,0x08,0x00,0x40,0x59,0x4a,0x9a,0xaa,0xaa,0x49,0x4a,0xa5,0x7e,0xab, 0x69,0x55,0x49,0x01,0x05,0x48,0x84,0x52,0x52,0x96,0xf5,0x29,0xa5,0x57,0x55, 0x20,0x2a,0x4a,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x08,0x08,0x00,0x00,0x04,0x22, 0x28,0x54,0x8a,0x92,0x81,0x22,0x48,0x00,0x20,0x00,0x00,0x40,0x00,0x00,0x08, 0x00,0x00,0x10,0x20,0x90,0x10,0x04,0x02,0x84,0x05,0x75,0x32,0x55,0x55,0xb5, 0x28,0x91,0x5a,0xaa,0xab,0x4d,0x4a,0x54,0xa4,0x42,0x24,0x09,0x49,0x20,0x52, 0xb5,0x4a,0x5a,0xd2,0xd0,0x80,0x09,0x00,0x41,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x10,0x00,0x00,0x01, 0x00,0x00,0x10,0x42,0x81,0x85,0x42,0x52,0xcb,0x40,0x00,0x00,0x00,0x80,0x04, 0x04,0x00,0x00,0x40,0x00,0x02,0x08,0x00,0x02,0x00,0x42,0x40,0x88,0x20,0x40, 0x2a,0xab,0x55,0x56,0xd5,0x54,0x4a,0xaa,0xbd,0xb5,0xa9,0x55,0x22,0x01,0x11, 0x55,0x44,0xa5,0x0a,0xaa,0x97,0x29,0x29,0x4b,0xba,0x04,0xa0,0xaa,0x10,0x20, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x20,0x21,0x02,0x00,0x08,0x55,0x20,0x28,0x09,0x28,0xa0, 0x00,0x00,0x04,0x01,0x00,0x10,0x02,0x04,0x00,0x00,0x20,0x41,0x22,0x10,0x01, 0x00,0x02,0x00,0x01,0x10,0x99,0x60,0x2a,0xaa,0x55,0x43,0x55,0x55,0x56,0xd6, 0x8a,0x49,0x54,0xa4,0x04,0x52,0x22,0x10,0x81,0x45,0x6a,0x8a,0xaa,0x64,0xf4, 0x90,0x05,0x01,0x44,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x90,0x00,0x00,0x08,0x00,0x42,0x85, 0x55,0x95,0x55,0x54,0x15,0x22,0x00,0x80,0x00,0x00,0x00,0x00,0x10,0x00,0x10, 0x80,0x00,0x00,0x40,0x24,0x00,0x10,0x22,0x48,0x42,0x2e,0xb5,0x4f,0x55,0xab, 0x58,0xeb,0x5a,0xbd,0x55,0xa4,0xa5,0x21,0x00,0x91,0x15,0x44,0xa5,0x2a,0x22, 0x2a,0xa4,0x91,0x52,0xba,0x42,0x02,0x14,0x20,0x08,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x02,0x12, 0x00,0x20,0x00,0x09,0x22,0x82,0x40,0x2a,0x49,0x28,0x00,0x00,0x00,0x00,0x10, 0x80,0x00,0x00,0x04,0x00,0x00,0x10,0x08,0x01,0x00,0x09,0x04,0x88,0x00,0x00, 0x4a,0xa8,0x8b,0x56,0xd5,0x56,0x6a,0xaa,0xd7,0xb7,0x52,0x14,0x94,0x24,0x04, 0x49,0x11,0x50,0x80,0x94,0xa0,0x2a,0xa9,0x69,0x5a,0x90,0x48,0x41,0x15,0x42, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x40,0x80,0x40,0x00,0x40,0x08,0x00,0x44,0x04,0x88,0x29,0x2a,0xa9,0x28,0x25, 0x00,0x04,0x00,0x00,0x00,0x00,0x10,0x00,0x10,0x00,0x04,0x82,0x40,0x04,0x00, 0x20,0x20,0x08,0x92,0xa9,0x17,0xb4,0x4d,0x2a,0xa5,0x23,0x55,0xad,0x29,0xfd, 0x15,0x55,0x41,0x02,0x50,0x04,0x42,0x94,0x49,0x02,0xaa,0x95,0x14,0xa4,0xac, 0x45,0x01,0x28,0xa0,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x20,0x80,0x00,0x52,0x62, 0x85,0x40,0x54,0x94,0x80,0x10,0x20,0x00,0x00,0x40,0x00,0x40,0x00,0x00,0x02, 0x10,0x00,0x01,0x00,0x08,0x00,0x82,0x44,0x00,0x00,0x4a,0x92,0xa4,0x95,0x54, 0xac,0x7d,0xbd,0x55,0x54,0xa2,0xaa,0x2a,0x50,0x02,0xa1,0x09,0x51,0x10,0x28, 0x40,0x22,0x48,0xd2,0xaa,0x90,0x24,0x02,0x15,0x20,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x02,0x01, 0x00,0x02,0x00,0x01,0x08,0x51,0x12,0xa2,0x00,0x28,0x40,0x80,0x11,0x09,0x00, 0x08,0x00,0x80,0x00,0x20,0x00,0x08,0x90,0x10,0x40,0x84,0x00,0x11,0x29,0x12, 0x02,0x48,0x15,0x4b,0x56,0x92,0xb6,0xcd,0xaa,0xb5,0x55,0x4a,0x90,0x84,0x90, 0x04,0x51,0x52,0x08,0x85,0x2a,0x89,0x26,0xb4,0xaa,0x4a,0x80,0x28,0x88,0x84, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02, 0x20,0x08,0x00,0x20,0x04,0x02,0x00,0x00,0x94,0xaa,0x94,0xa0,0x11,0x52,0x01, 0x00,0x00,0x00,0x00,0x02,0x40,0x00,0x04,0x40,0x00,0x40,0x40,0x00,0x00,0x00, 0x10,0x12,0x42,0x02,0x40,0x48,0x92,0xc5,0x25,0xba,0xc8,0x5a,0x32,0xaa,0x94, 0x0a,0x24,0xaa,0x28,0x02,0x10,0x04,0x48,0xa2,0x20,0x90,0x4a,0x48,0x49,0x55, 0x81,0x12,0x82,0x25,0x11,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x04,0x80,0x40,0x00,0x08,0x08,0x02,0x48, 0x42,0x44,0xc8,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x01, 0x01,0x02,0x02,0x01,0x08,0x01,0x00,0x08,0x40,0x14,0x02,0x25,0x2a,0x94,0xfb, 0x62,0x29,0x4a,0xaa,0xaa,0xd1,0xaa,0x44,0xaa,0xa0,0x81,0x49,0x54,0x14,0x8a, 0x09,0x11,0x02,0xa4,0x55,0x54,0x24,0x00,0x90,0x40,0x80,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x02,0x00, 0x10,0x00,0x20,0x51,0x12,0x95,0x01,0x02,0x08,0x84,0x00,0x00,0x80,0x10,0x00, 0x02,0x00,0x00,0x00,0x88,0x00,0x00,0x48,0x20,0x21,0x00,0x01,0x21,0x0b,0xa1, 0x24,0x89,0x25,0x52,0xb5,0x55,0x9a,0x2d,0x54,0x51,0x24,0x91,0x11,0x2a,0x0a, 0x24,0x25,0x29,0x49,0x20,0xa4,0x44,0xa8,0x52,0x2a,0xa2,0x81,0x48,0x25,0x14, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10, 0x00,0x00,0x80,0x00,0x00,0x00,0x20,0x00,0x84,0xa4,0x4a,0xa8,0x50,0x40,0x00, 0x02,0x00,0x02,0x00,0x00,0x00,0x10,0x20,0x00,0x00,0x04,0x08,0x00,0x00,0x00, 0x48,0x48,0x00,0x00,0x40,0x81,0x22,0x92,0x8a,0x55,0x55,0x6d,0xaa,0xaa,0xaa, 0x95,0x48,0x44,0x14,0xa0,0x52,0xb5,0x44,0x04,0x82,0x09,0x12,0x12,0x89,0x2a, 0x91,0x10,0x01,0x02,0x82,0xa8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x42,0x00,0x22,0x00,0x08,0x04,0x40,0x80,0x80,0x14,0x42, 0x25,0x05,0x04,0x00,0x00,0x20,0x04,0x08,0x00,0x00,0x10,0x00,0x02,0x04,0x00, 0x00,0x21,0x00,0x84,0x80,0x01,0x00,0x94,0xa2,0xaa,0x28,0x15,0x4a,0xa2,0xad, 0x5b,0x56,0xb5,0x52,0xa9,0x52,0x55,0x12,0x82,0x09,0x18,0x56,0x35,0x54,0x28, 0x50,0x41,0x49,0x25,0x5d,0xa4,0x85,0x40,0x28,0x64,0x02,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x02,0x00,0x00,0x00,0x20, 0x02,0x00,0x01,0x42,0x91,0x52,0x52,0x40,0x80,0x00,0x80,0x00,0x00,0x00,0x04, 0x00,0x00,0x80,0x10,0x00,0x20,0x82,0x10,0x00,0x08,0x10,0x08,0x00,0x01,0x40, 0x82,0xa0,0x3d,0x54,0xaa,0xad,0x7a,0xaa,0xd4,0xaa,0x94,0xa5,0x40,0x51,0x40, 0x44,0x15,0x45,0x23,0x40,0x8a,0x94,0x92,0x55,0x4a,0x92,0x20,0x24,0x02,0x91, 0x50,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x20, 0x10,0x00,0x01,0x20,0x80,0x00,0x02,0x01,0x28,0x44,0x09,0x29,0x08,0x01,0x08, 0x00,0x10,0x20,0x01,0x10,0x00,0x40,0x00,0x00,0x08,0x82,0x00,0x42,0x00,0x01, 0x00,0x41,0x12,0x94,0x14,0x20,0x15,0x55,0x51,0x2a,0xb6,0xca,0xb5,0x52,0x95, 0x55,0x50,0x92,0x84,0x29,0x29,0x4d,0x0a,0x95,0x8a,0x20,0x22,0x01,0x4a,0xad, 0x08,0x08,0x80,0x80,0x44,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x10,0x08,0x04,0x12,0x82, 0xa0,0xdc,0x80,0x08,0x00,0x04,0x40,0x80,0x08,0x00,0x01,0x02,0x00,0x00,0x00, 0x00,0x04,0x00,0x22,0x40,0x04,0x10,0x40,0x02,0x82,0x8a,0xa0,0x9e,0xe8,0x49, 0x57,0x35,0xba,0xaa,0x6a,0xaa,0x4a,0x40,0x51,0x00,0x40,0x24,0x91,0x48,0x54, 0x8a,0x88,0xa8,0x22,0x55,0x52,0xa0,0x2a,0x0a,0x91,0x41,0x20,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x80,0x80,0x10,0x00,0x00,0x02, 0x40,0x80,0x02,0xa4,0x28,0x12,0x64,0x11,0x00,0x22,0x10,0x00,0x00,0x20,0x00, 0x20,0x00,0x00,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0x41,0x09,0x09,0x50,0x20, 0x20,0x0a,0x55,0x55,0x12,0x55,0xab,0x54,0x45,0x55,0x51,0x2a,0x82,0x00,0x49, 0x15,0x15,0x44,0x85,0x15,0x20,0x22,0x05,0x55,0x52,0x88,0x05,0x00,0x00,0x28, 0x28,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08, 0x01,0x01,0x20,0x20,0x00,0x02,0x00,0x28,0x08,0x80,0xa1,0x52,0x40,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x08,0x20,0x08,0x00,0x09, 0x08,0x44,0x20,0x0a,0x8a,0x4a,0xa1,0x16,0xd0,0x49,0x2a,0x4b,0xea,0x32,0xa9, 0x55,0x4a,0x08,0x49,0x00,0x40,0xab,0xb2,0x22,0x42,0x4b,0x10,0x80,0x08,0x8a, 0x52,0xa0,0x44,0x02,0x05,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x00,0x00,0x20,0x02,0xa0,0x02, 0x04,0xaa,0x00,0x22,0x08,0x40,0x84,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04, 0x01,0x04,0x41,0x08,0x40,0x11,0x10,0x85,0x41,0x21,0x00,0x54,0x49,0x6a,0x90, 0xda,0xb5,0xa1,0x8a,0xad,0x54,0x55,0xa0,0x00,0x04,0x14,0x55,0x54,0x90,0xa8, 0x91,0x4a,0x25,0x25,0x25,0x24,0x4a,0x21,0x48,0xa4,0x48,0x90,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x08,0x00,0x02,0x00,0x88, 0x00,0x84,0x88,0x02,0x40,0x92,0x51,0x04,0x00,0x40,0x02,0x00,0x02,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x04,0x01,0x00,0x20,0x00,0x00,0x02,0x00,0x2a,0x18, 0x55,0x01,0x25,0x44,0x4a,0x6b,0x4e,0xd4,0x55,0xaa,0x95,0x09,0x40,0x50,0x20, 0x82,0x28,0xaa,0x4a,0x0a,0x54,0x91,0x00,0x82,0x50,0x92,0x83,0x10,0x00,0x08, 0x02,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x20,0x11,0x08,0x00,0x00,0x92,0x00,0x15,0x48,0x12,0x01,0x0a,0x10,0x00,0x01, 0x00,0x00,0x10,0x00,0x21,0x05,0x08,0x10,0x10,0x00,0x20,0x10,0x04,0x00,0x88, 0xa1,0x20,0x54,0x90,0xa2,0x00,0xa8,0x92,0x29,0x20,0x9d,0xb5,0xea,0x04,0xaa, 0xaa,0x52,0x85,0x05,0x02,0x11,0x44,0x41,0x21,0x41,0x09,0x24,0x54,0x28,0x8a, 0x48,0x48,0xa5,0x42,0x42,0x90,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x04,0x80,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x20, 0x88,0x20,0x00,0x22,0x04,0x08,0x10,0x40,0x20,0x00,0x10,0x00,0x00,0x00,0x00, 0x00,0x02,0x10,0x00,0x00,0x04,0x09,0x01,0x0a,0x49,0x54,0x42,0x08,0x82,0x4a, 0xb6,0x7d,0x54,0xa2,0x55,0x55,0x4a,0x50,0x00,0x10,0x04,0x29,0x14,0x88,0x28, 0xa2,0x08,0x02,0x85,0x21,0x2a,0x92,0x49,0x10,0x14,0x02,0x80,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x10,0x00,0x00,0x00,0x44,0x08, 0x04,0x08,0x2a,0x08,0x85,0x02,0x00,0x80,0x80,0x40,0x20,0x00,0x00,0x01,0x00, 0x00,0x00,0x80,0x40,0x01,0x01,0x00,0x00,0x44,0x02,0x10,0x82,0x48,0x65,0x24, 0x81,0x10,0x42,0x29,0x05,0xfb,0xde,0xb5,0x08,0x2d,0x6a,0xa5,0x0a,0x90,0x42, 0x21,0x10,0x00,0x45,0x04,0x08,0xa2,0xa8,0x50,0x4a,0x52,0x41,0x11,0x44,0x81, 0x00,0x24,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00, 0x00,0x00,0x41,0x00,0x41,0x20,0x20,0x80,0x84,0x10,0x20,0x48,0x02,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x10,0x20,0x81,0x00,0x48, 0x40,0x10,0x92,0x90,0x92,0x28,0x85,0x14,0x84,0xaa,0xd5,0x6a,0xd5,0x52,0xa5, 0x94,0x90,0xa4,0x01,0x00,0x00,0x81,0x29,0x28,0xa2,0x42,0x08,0x02,0x25,0x10, 0xa4,0x29,0x48,0xa2,0x24,0x90,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x80,0x00,0x02,0x08,0x08,0x00,0x00,0x00,0x00,0x0a,0x11,0x2c, 0x80,0x00,0x10,0x02,0x08,0x00,0x41,0x00,0x80,0x02,0x00,0x04,0x02,0x01,0x00, 0x00,0x04,0x08,0x01,0x00,0x04,0x42,0x00,0x56,0xa1,0x45,0x20,0x40,0x21,0x15, 0xed,0xad,0x56,0xaa,0x5a,0x6a,0xaa,0x48,0x04,0x04,0x12,0x28,0x00,0x43,0x50, 0x90,0xa5,0x51,0x10,0xa5,0x12,0x80,0x25,0x10,0x02,0x00,0x15,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x40,0x08,0x01,0x00,0x01,0x00, 0x09,0x02,0x20,0x44,0x46,0x0a,0x42,0x40,0x08,0x20,0x82,0x00,0x00,0x00,0x08, 0x00,0x10,0x00,0x00,0x00,0x04,0x80,0x40,0x08,0x00,0x11,0x00,0x55,0x11,0x14, 0x08,0x84,0x15,0x14,0x55,0x72,0xe5,0x56,0xd5,0x55,0xa5,0x52,0x22,0x40,0x20, 0x80,0x81,0x25,0x11,0x64,0x04,0x00,0x4c,0xca,0x12,0x55,0x55,0x48,0x4a,0x10, 0xa2,0x40,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x20,0x00,0x00,0x10,0x09,0x20,0x00,0x02,0x11,0x14,0x40,0x88,0x00,0x00,0x00, 0x08,0x00,0x00,0x08,0x80,0x00,0x80,0x10,0x00,0x00,0x20,0x12,0x00,0x20,0x02, 0x40,0x14,0x28,0x88,0x40,0xa5,0x11,0x02,0x42,0x4a,0xaa,0xbd,0x55,0x54,0xaa, 0x94,0xa5,0x40,0x00,0x02,0x08,0x54,0x00,0x44,0x12,0xa2,0x92,0x25,0x34,0xa9, 0x28,0x40,0x25,0x04,0x82,0x00,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x02,0x00,0x20,0x12,0x40,0x00,0x00,0x20,0x48,0x84,0x41, 0x23,0x00,0x00,0x80,0x00,0x00,0x00,0x08,0x40,0x00,0x10,0x00,0x00,0x44,0x00, 0x80,0x00,0x12,0x00,0x20,0x04,0x81,0x04,0x55,0x14,0x02,0x40,0x54,0x94,0x11, 0x69,0x25,0x6b,0x55,0x5a,0x52,0x92,0xaa,0x52,0x10,0x41,0x00,0x4a,0x11,0x50, 0x09,0x01,0x52,0xa9,0x05,0x4b,0x55,0x00,0xa2,0x10,0x50,0x40,0x90,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x42,0x00,0x00,0x02,0x00,0x00,0x10, 0x40,0x82,0x00,0x41,0x09,0x44,0x00,0x04,0x01,0x04,0x00,0x08,0x00,0x00,0x00, 0x00,0x00,0x41,0x00,0x04,0x04,0x80,0x40,0x00,0x80,0x00,0x04,0x52,0x00,0xa2, 0xa8,0x04,0x02,0x49,0x4e,0xea,0x9a,0x58,0xaa,0xaa,0xac,0xa9,0x24,0x00,0x80, 0x00,0x21,0x00,0x84,0x24,0xa0,0xa0,0x95,0x52,0x52,0xb4,0x90,0xaa,0xa9,0x40, 0x00,0x2a,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x10, 0x01,0x00,0x00,0x00,0x81,0x04,0x00,0x22,0x14,0x02,0x00,0x40,0x10,0x08,0x10, 0x40,0x20,0x80,0x00,0x00,0x01,0x00,0x04,0x00,0x10,0x00,0x11,0x00,0x84,0x04, 0x89,0x20,0x09,0x4a,0x08,0x05,0x21,0x49,0x50,0x2a,0xa4,0xa5,0x6b,0x21,0x2a, 0xa2,0x44,0x92,0xaa,0x04,0x24,0x04,0x00,0x51,0x22,0x05,0x14,0x92,0xa4,0x09, 0x32,0x4a,0x11,0x69,0x05,0x52,0x00,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x80,0x00,0x48,0x08,0x00,0x02,0x00,0x00,0x08,0x80,0x80,0x20, 0xb1,0x04,0x80,0x00,0x00,0x04,0x80,0x01,0x02,0x20,0x00,0x10,0x00,0x00,0x40, 0x00,0x00,0x04,0x00,0x00,0x02,0x02,0x44,0x20,0xa2,0x80,0x80,0xa4,0xaa,0x96, 0xda,0x9b,0xa4,0x94,0x95,0x55,0x35,0x5a,0x40,0x10,0x80,0x90,0x49,0x10,0x88, 0x00,0xaa,0x49,0x52,0xa4,0xa9,0x50,0x04,0xa4,0xa0,0x08,0x2a,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x22,0x10,0x04, 0x00,0x00,0x00,0x00,0x84,0x04,0x00,0x00,0x40,0x81,0x10,0x00,0x08,0x08,0x01, 0x04,0x00,0x80,0x01,0x00,0x11,0x04,0x10,0x10,0x00,0x48,0x10,0x11,0x48,0x00, 0x29,0x04,0x12,0x5e,0x5e,0xaa,0xad,0x28,0x40,0x05,0x49,0x4a,0x25,0x24,0x40, 0x08,0x02,0x00,0x4a,0x20,0x90,0x01,0x04,0xa9,0x52,0x54,0x95,0x42,0x12,0xa9, 0x51,0x00,0xa5,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x42, 0x02,0x00,0x00,0x40,0x20,0x24,0x80,0x12,0x22,0x01,0x00,0x00,0x02,0x02,0x04, 0x00,0x00,0x80,0x20,0x00,0x10,0x02,0x00,0x04,0x00,0x40,0x10,0x40,0x00,0x92, 0x00,0x41,0x00,0x02,0x48,0x00,0x00,0x44,0xa4,0x2a,0xb5,0x4b,0x40,0x02,0x12, 0x54,0xa1,0x48,0x90,0x01,0x01,0x20,0x25,0x25,0x08,0x02,0x54,0x22,0x85,0x54, 0xaa,0x48,0x20,0x55,0x44,0x08,0x08,0x08,0x40,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x40,0x00,0x00,0x48,0x00,0x00,0x00,0x00,0x80,0x12,0x80,0x00,0x10, 0x40,0x00,0x10,0x00,0x10,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x40,0x00,0x02,0x04,0x0a,0x48,0x02,0x44,0x91,0x10,0x15,0x14, 0x95,0x55,0x50,0x40,0x01,0x0a,0x14,0x84,0x00,0x04,0x24,0x09,0x00,0x52,0x51, 0x10,0x00,0x09,0x54,0x91,0x29,0x55,0x09,0x09,0x50,0x55,0x42,0x60,0x80,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x10,0x00,0x00,0x01,0x10,0x01,0x04, 0x00,0x00,0x00,0x88,0x09,0x00,0x24,0x40,0x04,0x00,0x00,0x44,0x11,0x00,0x22, 0x00,0x00,0x08,0x40,0x00,0x04,0x00,0x00,0x04,0x00,0x20,0x90,0x40,0x82,0x20, 0x10,0x00,0x45,0x08,0xaa,0xad,0x2a,0x82,0x00,0x80,0x21,0x52,0x52,0xa9,0x10, 0x00,0x20,0x49,0x09,0x04,0x40,0x08,0x05,0x12,0x48,0x84,0x52,0x40,0x25,0x65, 0x00,0x10,0x8a,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x20,0x01,0x04,0x10,0x02,0x40,0x10,0x00,0x20,0x08,0x00,0x00,0x20,0x80, 0x02,0x00,0x40,0x00,0x00,0x00,0x08,0x00,0x00,0x04,0x00,0x44,0x04,0x00,0x00, 0x84,0x00,0x12,0x11,0x09,0x42,0x04,0x00,0x45,0x25,0x25,0x55,0x48,0x08,0x04, 0x0a,0x4a,0x88,0x80,0x00,0x01,0x02,0x04,0x54,0x21,0x00,0x20,0x42,0xc8,0x25, 0x2a,0xa9,0x14,0x84,0xa2,0x2a,0x42,0x20,0x80,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x12,0x41,0x00,0x00,0x00,0x00,0x20,0x04,0x40,0x00,0x88, 0x20,0x00,0x02,0x00,0x24,0x40,0x00,0x00,0x01,0x00,0x00,0x40,0x00,0x04,0x20, 0x90,0x00,0x90,0x10,0x80,0x00,0xa2,0x40,0x44,0x40,0x08,0x41,0x29,0x10,0xaa, 0x5a,0x88,0x80,0x40,0x00,0x04,0x91,0x44,0x54,0x20,0x90,0x00,0x21,0x01,0x0a, 0x04,0x00,0x12,0x22,0x88,0x92,0x55,0x42,0x12,0x29,0x01,0x08,0x0a,0x24,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x01,0x00,0x04,0x02,0x20,0x00,0x01, 0x00,0x01,0x02,0x22,0x01,0x00,0x80,0x00,0x44,0x80,0x00,0x00,0x00,0x20,0x00, 0x41,0x00,0x41,0x00,0x80,0x00,0x10,0x00,0x80,0x08,0x01,0x40,0x0a,0x11,0x0a, 0x50,0x04,0x40,0x0a,0x15,0x45,0x52,0x21,0x00,0x00,0x40,0x04,0x52,0x00,0x80, 0x04,0x54,0x04,0x28,0x52,0x90,0x81,0x05,0xa8,0x15,0x4a,0xa4,0x84,0xa5,0x42, 0xa4,0x41,0x44,0x88,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0x00, 0x00,0x00,0x00,0x20,0x90,0x08,0x80,0x00,0x00,0x10,0x00,0x02,0x40,0x00,0x01, 0x08,0x04,0x02,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x01,0x02,0x00,0x00,0x00, 0x24,0x81,0x20,0x84,0x01,0x24,0x91,0x02,0x41,0x4a,0xb0,0xa4,0x80,0x00,0x22, 0x00,0x52,0x81,0x54,0x02,0x01,0x00,0x90,0x00,0x88,0x40,0x04,0x08,0x8a,0x82, 0x24,0x12,0x50,0x40,0x98,0x01,0x08,0x10,0x40,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x20,0x00,0x08,0x00,0x00,0x01,0x00,0x04,0x20,0x08,0x00,0x00,0x00, 0x40,0x08,0x08,0x10,0x10,0x00,0x40,0x20,0x00,0x10,0x00,0x00,0x00,0x10,0x00, 0x00,0x00,0x22,0x00,0x01,0x01,0x04,0x04,0x21,0x4a,0x90,0x02,0x10,0x14,0x25, 0xda,0x90,0x04,0x00,0x00,0x08,0x04,0x54,0x02,0x40,0x0a,0x29,0x00,0xa0,0x22, 0x00,0x00,0x22,0xa0,0xa8,0x89,0x49,0x22,0x95,0x25,0x50,0x42,0x85,0x28,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x80,0x00,0x01,0x10,0x24,0x44,0x02,0x00, 0x80,0x00,0x11,0x12,0x42,0x04,0x00,0x01,0x04,0x80,0x01,0x00,0x00,0x11,0x00, 0x08,0x00,0x00,0x00,0x00,0x80,0x20,0x00,0x00,0x04,0x04,0x80,0x10,0x90,0x01, 0x4a,0x10,0x41,0x42,0x95,0x7c,0x41,0x00,0x02,0x00,0x01,0x00,0x80,0xa9,0x10, 0x21,0x00,0x00,0x08,0x80,0x91,0x10,0x04,0x56,0x52,0x54,0xa0,0x90,0x40,0x92, 0x25,0x28,0x20,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80, 0x00,0x00,0x00,0x00,0x42,0x00,0x41,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x04, 0x44,0x00,0x80,0x40,0x00,0x00,0x01,0x20,0x01,0x02,0x04,0x01,0x00,0x11,0x10, 0x12,0x00,0x82,0x44,0x92,0x50,0x40,0x04,0x10,0x5d,0xb5,0x20,0x00,0x40,0x00, 0x00,0x10,0x12,0x00,0x44,0x80,0x95,0x24,0x22,0x14,0x00,0x00,0x81,0x29,0x49, 0x22,0x14,0x4a,0xaa,0x09,0x10,0x42,0x94,0xa4,0x40,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x02,0x00,0x88,0x10,0x01,0x00,0x00,0x08,0x10,0x02,0x04,0x00,0x40,0x08, 0x00,0x00,0x90,0x01,0x20,0x00,0x02,0x01,0x00,0x00,0x40,0x10,0x01,0x08,0x00, 0x00,0x00,0x08,0x80,0x00,0x05,0x12,0x10,0x11,0x0a,0xb6,0x09,0x00,0x05,0x0a, 0xae,0x84,0x00,0x00,0x24,0x20,0x00,0x00,0x2a,0x92,0x04,0x00,0x00,0x88,0x00, 0x20,0x02,0x14,0x91,0x2a,0x89,0x42,0x24,0x14,0xaa,0xa5,0x2a,0x02,0x0a,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x20,0x00, 0x00,0x00,0x09,0x02,0x01,0x10,0x82,0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x40,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x01,0x00,0x05,0x04,0x44, 0x49,0x20,0x24,0xa0,0x2a,0xa5,0xa0,0x10,0x04,0x00,0x00,0x02,0x50,0x00,0x49, 0x40,0x80,0x40,0x20,0x41,0x04,0x40,0x02,0x54,0xa8,0x44,0x28,0x92,0xa0,0x28, 0x48,0x29,0x48,0x84,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x10, 0x10,0x11,0x10,0x81,0x10,0x10,0x20,0x00,0x08,0x48,0x00,0x00,0x00,0x42,0x02, 0x10,0x00,0x04,0x00,0x02,0x02,0x00,0x04,0x00,0x00,0x00,0x80,0x40,0x00,0x00, 0x12,0x40,0x48,0x52,0x96,0xaa,0x00,0x80,0x08,0xa5,0xba,0xa8,0x00,0x10,0x00, 0x02,0x08,0x04,0x84,0x84,0x90,0x22,0x02,0x02,0x04,0x00,0x00,0x00,0xba,0x97, 0x22,0x82,0x40,0x8a,0x92,0x92,0x12,0x02,0x22,0x40,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x04,0x08,0x20,0x11,0x00,0x00,0x80,0x00,0x00,0x01,0x01,0x00,0x40,0x00,0x00, 0x00,0x00,0x11,0x00,0x10,0x00,0x00,0x00,0x04,0x40,0x00,0x00,0x20,0x20,0x40, 0x08,0x01,0x02,0x10,0x00,0x41,0x04,0x10,0x08,0x28,0x12,0x92,0x12,0x42,0x28, 0xab,0x40,0x01,0x00,0x00,0x00,0x40,0x00,0x00,0x22,0x02,0x00,0x08,0x10,0x40, 0x00,0x08,0x4a,0x14,0xa9,0x10,0x51,0x2a,0x50,0x4a,0x44,0xa1,0x50,0x08,0x08, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x02,0x00,0x02,0x04,0x40, 0x00,0x02,0x02,0x20,0x00,0x02,0x10,0x80,0x48,0x00,0x40,0x20,0x10,0x00,0x00, 0x20,0x00,0x00,0x01,0x00,0x20,0x00,0x00,0x01,0x11,0x00,0x00,0x42,0xa2,0x85, 0xa5,0x00,0x40,0x00,0x45,0x55,0x50,0x80,0x00,0x42,0x20,0x00,0x49,0x2a,0x90, 0x80,0x00,0x00,0x41,0x10,0x24,0x40,0x00,0xaa,0x05,0x45,0x14,0x85,0x0a,0xa5, 0x29,0x14,0x84,0x82,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x00,0x20, 0x80,0x00,0x40,0x00,0x08,0x44,0x20,0x08,0x01,0x22,0x40,0x02,0x04,0x80,0x80, 0x00,0x82,0x00,0x20,0x00,0x80,0x01,0x00,0x24,0x00,0x00,0x10,0x08,0x40,0x00, 0x00,0x04,0x00,0x00,0x28,0x52,0xa8,0x02,0x08,0x90,0x94,0x82,0x00,0x20,0x00, 0x00,0x01,0x00,0x00,0x05,0x24,0x40,0x80,0x04,0x00,0x80,0x01,0x12,0x29,0xa8, 0x10,0x81,0x28,0xa1,0x12,0x82,0x4a,0x28,0x20,0x88,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x02,0x10,0x00,0x00,0x08,0x08,0x00,0x90,0x80,0x00,0x80,0x00,0x04,0x00, 0x00,0x40,0x10,0x20,0x02,0x02,0x00,0x00,0x80,0x08,0x00,0x04,0x01,0x00,0x00, 0x80,0x40,0x20,0x00,0x00,0x00,0x21,0x12,0x15,0x05,0x0a,0x42,0x08,0x40,0x02, 0xb5,0x20,0x08,0x82,0x08,0x00,0x88,0x02,0x4a,0x40,0x80,0x04,0x02,0x50,0xa4, 0x00,0x04,0x01,0x52,0x45,0x40,0x52,0x52,0x5a,0x59,0x54,0xa9,0x02,0x8a,0x40, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x02,0x00,0x02,0x00,0x00,0x04,0x00,0x02, 0x10,0x00,0x80,0x90,0x20,0x08,0x00,0x00,0x82,0x08,0x00,0x00,0x10,0x01,0x00, 0x02,0x10,0x08,0x00,0x02,0x00,0x01,0x00,0x08,0x00,0x01,0x00,0x00,0x80,0xa2, 0x51,0x00,0x40,0x12,0x49,0x4a,0x00,0x00,0x00,0x20,0x04,0x00,0x08,0x00,0x10, 0x00,0x00,0x08,0x00,0x50,0x12,0x20,0x00,0x29,0x50,0x89,0x01,0x0a,0x84,0xa5, 0x25,0x24,0xa4,0x00,0x2a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x90,0x02,0x00, 0x00,0x80,0x10,0x02,0x20,0x40,0x04,0x22,0x00,0x84,0x20,0x09,0x02,0x08,0x20, 0x08,0x00,0x40,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x90, 0x04,0x00,0x48,0x44,0x12,0x94,0x48,0x00,0x80,0xa0,0x31,0x00,0x00,0x10,0x00, 0x40,0x00,0x20,0x4a,0x42,0x22,0x00,0x20,0x09,0x02,0x40,0x00,0x48,0x91,0x16, 0x40,0x35,0x69,0x32,0x94,0x92,0x9a,0x48,0x92,0x91,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x11,0x04,0x00,0x00,0x20,0x22,0x02,0x04,0x20,0x04,0x02,0x40,0x00,0x02,0x00, 0x81,0x00,0x20,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20, 0x02,0x08,0x01,0x00,0x01,0x10,0x09,0x05,0x10,0x89,0x4a,0x00,0x02,0x01,0x09, 0x4c,0x84,0x04,0x80,0x80,0x00,0x00,0x80,0x00,0x80,0x00,0x20,0x80,0x80,0x48, 0x01,0x00,0x00,0x0a,0x52,0x95,0x80,0x85,0x49,0x52,0xa9,0x55,0x02,0x00,0x0a, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x01,0x00,0x08,0x40,0x80,0x80, 0x08,0x00,0x88,0x48,0x10,0x00,0x10,0x00,0x00,0x80,0x00,0x04,0x01,0x04,0x08, 0x80,0x00,0x00,0x48,0x80,0x00,0x41,0x00,0x00,0x00,0x00,0x00,0x10,0x02,0x20, 0x20,0xa2,0x40,0x24,0x20,0x50,0x10,0x20,0x02,0x02,0x00,0x88,0x00,0x10,0x00, 0x40,0x00,0x00,0x12,0x02,0x04,0x02,0x02,0x20,0x8a,0x40,0x55,0x55,0x50,0xa9, 0x14,0xaa,0x50,0xaa,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x08,0x04, 0x00,0x20,0x08,0x04,0x10,0xa0,0x08,0x01,0x00,0x40,0x00,0x01,0x09,0x24,0x01, 0x00,0x10,0x00,0x00,0x20,0x00,0x40,0x08,0x00,0x02,0x10,0x00,0x10,0x00,0x80, 0x00,0x20,0x41,0x20,0x05,0x4a,0x00,0x09,0x01,0x15,0x20,0x00,0x00,0x00,0x00, 0x12,0x00,0x02,0x40,0x01,0x08,0x02,0x00,0x01,0x28,0x40,0x10,0x20,0x04,0x55, 0x9a,0xd4,0x02,0x8a,0x15,0xa2,0x4b,0x88,0x00,0x14,0x20,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x02,0x00,0x20,0x00,0x12,0x00,0x00,0x00,0x02,0x00,0x40,0x24,0x04,0x02, 0x09,0x00,0x00,0x00,0x04,0x00,0x40,0x00,0x00,0x00,0x04,0x02,0x20,0x00,0x00, 0x00,0x04,0x00,0x04,0x04,0x00,0x02,0x04,0x09,0x20,0x90,0x48,0x80,0x2a,0x40, 0x2a,0x80,0x00,0x10,0x08,0x00,0x00,0x08,0x00,0x04,0x00,0x80,0x02,0x4a,0x40, 0x08,0x40,0x08,0x12,0x04,0xa2,0xf6,0xb5,0x50,0xa2,0x95,0x2a,0xa2,0xa4,0x81, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x00,0x80,0x90,0x40,0x01,0x20,0x00,0x40, 0x04,0x02,0x00,0x50,0x90,0x20,0x24,0x40,0x00,0x40,0x01,0x00,0x00,0x20,0x00, 0x10,0x00,0x00,0x81,0x00,0x01,0x00,0x02,0x40,0x00,0x48,0x82,0x10,0x40,0x8a, 0x22,0x00,0x24,0x80,0x2a,0x80,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x01,0x10, 0x02,0x00,0x08,0x01,0x00,0x20,0x00,0x81,0x40,0x52,0x55,0x59,0x49,0x4a,0x14, 0x64,0x95,0x94,0x10,0x28,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x04,0x00,0x00, 0x00,0x84,0x02,0x48,0x10,0x10,0x08,0x01,0x00,0x08,0x00,0x00,0x09,0x12,0x10, 0x10,0x00,0x24,0x00,0x81,0x00,0x10,0x00,0x00,0x08,0x84,0x10,0x40,0x00,0x00, 0x00,0x08,0x40,0x0a,0x20,0x89,0x24,0x81,0x0a,0x54,0x2a,0x41,0x04,0x00,0x01, 0x00,0x02,0x00,0x00,0x00,0x08,0x00,0x40,0x08,0xa4,0x82,0x02,0x04,0x02,0x05, 0x54,0xaa,0x14,0x90,0xa2,0xa2,0x55,0x40,0x82,0x02,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x01,0x08,0x20,0x00,0x01,0x25,0x00,0x80,0x48,0x01,0x41, 0x01,0x01,0x00,0x00,0x00,0x40,0x00,0x00,0x02,0x04,0x00,0x40,0x00,0x08,0x00, 0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x02,0x41,0x4a,0x24,0x48,0x10,0x20,0xae, 0x21,0x04,0x00,0x01,0x10,0x00,0x08,0x20,0x08,0x00,0x40,0x08,0x00,0x02,0x10, 0x10,0x08,0x29,0x10,0x11,0x6a,0xb5,0x55,0x0a,0x95,0x54,0x95,0x54,0x28,0x90, 0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x09,0x00,0x00, 0x40,0x00,0x00,0x04,0x10,0x08,0x48,0x00,0x40,0x02,0x00,0x00,0x00,0x40,0x00, 0x00,0x00,0x90,0x00,0x20,0x00,0x02,0x00,0x04,0x81,0x11,0x01,0x20,0x28,0x21, 0x11,0x11,0x04,0x80,0x2a,0x84,0x00,0x00,0x20,0x00,0x04,0x20,0x01,0x20,0x00, 0x00,0x01,0x14,0x48,0xa8,0x00,0x80,0x08,0x82,0x42,0xa4,0x95,0x4a,0x52,0x22, 0x89,0x2a,0x89,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x80,0x02,0x12, 0x21,0x01,0x00,0x24,0x48,0x04,0x22,0x04,0x90,0x00,0x22,0x00,0x22,0x02,0x48, 0x02,0x42,0x00,0x04,0x10,0x10,0x00,0x02,0x00,0x80,0x48,0x40,0x08,0x80,0x00, 0x00,0x54,0x12,0x05,0x4a,0x48,0x44,0x40,0x09,0x54,0x01,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x21,0x20,0x00,0x00,0x00,0x42,0x24,0x00,0x21,0x28,0x04, 0x55,0x4a,0x92,0x88,0x95,0x52,0x52,0xa4,0x51,0x21,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x08,0x10,0x00,0x40,0x00,0x00,0x08,0x11,0x00,0x00,0x80,0x00,0x40,0x00,0x84, 0x00,0x80,0x80,0x08,0x00,0x10,0x00,0x10,0x00,0x00,0x41,0x02,0x00,0x20,0x01, 0x00,0x04,0x20,0x00,0x00,0x4a,0x82,0xa0,0xa0,0x91,0x52,0x91,0x12,0x20,0xa2, 0x28,0x20,0x08,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x09,0x20,0x04,0x25,0x18, 0x80,0x48,0x90,0x40,0x01,0x24,0xa9,0x24,0xa4,0x25,0x54,0xaa,0xaa,0x08,0x08, 0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x08,0x00,0x40,0x00,0x00,0x00,0x04,0x20,0x40,0x25,0x08, 0x11,0x09,0x08,0x02,0x10,0x84,0x08,0x00,0x20,0x00,0x40,0x08,0x01,0x10,0x00, 0x00,0x00,0x10,0x00,0x00,0x01,0x00,0x00,0x10,0x09,0x00,0x14,0x8a,0x15,0x25, 0x54,0x44,0x08,0x02,0x80,0x04,0x00,0x20,0x01,0x00,0x01,0x00,0x84,0x00,0x04, 0x00,0x00,0x20,0x88,0x4a,0x29,0x00,0x04,0x31,0x10,0x95,0x2a,0x91,0x52,0x8a, 0x51,0x55,0xa5,0x52,0x80,0x02,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x02,0x01,0x00,0x80, 0x00,0x89,0x05,0x00,0x21,0x00,0x20,0x00,0x80,0x00,0x01,0x20,0x09,0x00,0x24, 0x00,0x80,0x40,0x00,0x88,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x02,0x80, 0x15,0x00,0x20,0x88,0x8a,0x85,0x25,0x20,0x88,0x68,0x00,0x01,0x00,0x40,0x04, 0x00,0x00,0x00,0x00,0x80,0x00,0x01,0x00,0x01,0x2a,0x40,0x00,0x10,0x84,0x02, 0x54,0xa5,0x49,0x11,0x05,0x4a,0x55,0x52,0x04,0x22,0x20,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x20,0x00,0x08,0x08,0x08,0x92,0x20,0x00,0x29,0x00,0x20,0x00,0x00,0x08,0x00, 0x40,0x02,0x40,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x80,0x08,0x00,0x04,0x10, 0x08,0x11,0x01,0x00,0x00,0x00,0x22,0x8a,0x52,0x42,0x52,0x90,0x42,0x00,0x20, 0x80,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x80,0x04,0x00,0x48,0x8d, 0x14,0x91,0x00,0x20,0x40,0x55,0x55,0x24,0xd4,0x29,0x54,0xaa,0xa9,0x51,0x08, 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x81,0x00,0x20,0x00,0x00,0x00,0x00,0x01,0x04,0x0a, 0x84,0x82,0x24,0x20,0x08,0x08,0x00,0x80,0x02,0x00,0x00,0x01,0x04,0x44,0x40, 0x02,0x00,0x81,0x10,0x41,0x00,0x00,0x08,0x00,0x48,0xa8,0x80,0x21,0x24,0x95, 0x0a,0x4a,0x88,0x02,0x80,0x02,0x20,0x00,0x00,0x00,0x20,0x10,0x00,0x40,0x02, 0x08,0x80,0x00,0x02,0x51,0x40,0x04,0x2a,0x52,0x11,0x15,0xd5,0x55,0xa9,0x44, 0xa2,0x2a,0xd4,0x0a,0x20,0x88,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0x00,0x00, 0x04,0x00,0x24,0x50,0x40,0x00,0x08,0x00,0x00,0x81,0x02,0x48,0x12,0x48,0x04, 0x04,0x10,0x00,0x00,0x00,0x08,0x00,0x20,0x00,0x00,0x02,0x00,0x00,0x11,0x00, 0x20,0x14,0x94,0x92,0x4a,0xa4,0xa1,0x00,0x90,0x90,0x90,0x00,0x00,0x00,0x20, 0x82,0x40,0x10,0x00,0x08,0x00,0x00,0x04,0x89,0x25,0x52,0x08,0x91,0x29,0x44, 0xa5,0x62,0xaa,0xa0,0x52,0x95,0x57,0x4a,0xa0,0x88,0x20,0x80,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x04, 0x00,0x02,0x00,0x00,0x88,0x90,0x80,0x00,0x02,0x3a,0x48,0x40,0x01,0x00,0x04, 0x10,0x02,0x40,0x00,0x00,0x20,0x42,0x10,0x00,0x08,0x20,0x22,0x80,0x00,0x00, 0x20,0x20,0x40,0x00,0x02,0x92,0x00,0x42,0x49,0x21,0x51,0x14,0x20,0x00,0x04, 0x40,0x00,0x00,0x01,0x00,0x00,0x00,0x80,0x00,0x00,0x20,0x00,0x10,0x02,0x49, 0x48,0x42,0x54,0x94,0xa8,0x12,0xb5,0x4a,0x9d,0x4a,0x48,0x55,0x68,0x12,0x22, 0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x20,0x84,0x80,0x00,0x42,0x00,0x00,0x04,0x01,0x48,0x80, 0x01,0x00,0x44,0x04,0x10,0x02,0x80,0x00,0x00,0x40,0x80,0x00,0x00,0x08,0x80, 0x80,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x40,0x00,0x40,0x92,0x19,0x25,0x48, 0xa4,0x41,0x09,0x12,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20, 0x00,0x10,0x00,0x49,0x24,0xa9,0x01,0x0b,0x49,0x22,0xaa,0xca,0x25,0x44,0xa9, 0x52,0x95,0xa6,0xa0,0x88,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x10,0x00,0x00,0x00,0x00, 0x21,0x10,0x80,0x20,0x15,0x10,0x02,0x00,0x10,0x40,0x48,0x11,0x00,0x01,0x08, 0x00,0x00,0x42,0x20,0x00,0x00,0x81,0x00,0x42,0x00,0x04,0x00,0x00,0x00,0x48, 0x28,0x00,0xa4,0x94,0x24,0x11,0x28,0x80,0x40,0x20,0x00,0x12,0x00,0x00,0x04, 0x00,0x00,0x01,0x02,0x00,0x80,0x80,0x00,0x04,0x92,0xa4,0x28,0xad,0x88,0x9a, 0x85,0x55,0x54,0xaa,0x55,0x21,0x2a,0xda,0x15,0x21,0x09,0x04,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02, 0x00,0x11,0x00,0x00,0x02,0x00,0x40,0x09,0x84,0x80,0x02,0x14,0x00,0x40,0x01, 0x02,0x00,0x22,0x48,0x00,0x82,0x02,0x04,0x00,0x10,0x00,0x00,0x40,0x00,0x10, 0x80,0x40,0x04,0x04,0x00,0x91,0x28,0x12,0x22,0x92,0xa4,0x92,0x20,0x04,0x02, 0x22,0x00,0x08,0x44,0x40,0x00,0x00,0x00,0x08,0x02,0x00,0x00,0x80,0x93,0xca, 0xb2,0x00,0x04,0xaa,0x54,0x55,0x6a,0x53,0x45,0x22,0x94,0x8b,0x6a,0xc8,0x04, 0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x08,0x40,0x40,0x02,0x00,0x00,0x01,0x00,0x20,0x20,0x40, 0x88,0x00,0x24,0x00,0x00,0x08,0x44,0x80,0x00,0x04,0x10,0x08,0x00,0x00,0x82, 0x04,0x08,0x08,0x00,0x00,0x08,0x00,0x80,0x10,0x02,0x00,0x02,0x40,0x88,0x42, 0x49,0x24,0x84,0x80,0x08,0x00,0x10,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x08, 0x00,0x00,0x00,0x44,0x91,0x54,0x84,0x53,0xa5,0x25,0x2a,0xa9,0x14,0xaa,0xa8, 0x4a,0x25,0x56,0xa2,0xa0,0xa9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x01,0x02,0x00,0x08,0x10,0x21, 0x08,0x02,0x82,0x52,0x14,0x00,0x89,0x00,0x01,0x24,0x40,0x00,0x00,0x00,0x20, 0x00,0x40,0x10,0x02,0x00,0x10,0x01,0x00,0x88,0x80,0x00,0x08,0x00,0x40,0x90, 0x54,0x80,0x28,0x22,0x95,0x24,0x48,0x00,0x20,0x80,0x00,0x00,0x00,0x00,0x00, 0x00,0x42,0x00,0x00,0x00,0x08,0x00,0x00,0x11,0x25,0x50,0x51,0x14,0x52,0xaa, 0xa1,0x54,0xab,0x52,0x25,0x25,0x4a,0xda,0xa8,0x0a,0x00,0x44,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x24, 0x00,0x00,0x00,0x01,0x04,0x40,0x00,0x08,0x40,0x80,0x50,0x00,0x00,0x04,0x01, 0x1c,0x10,0x12,0x20,0x00,0x80,0x00,0x40,0x40,0x00,0x40,0x00,0x20,0x00,0x02, 0x21,0x00,0x11,0x00,0x01,0x00,0x12,0x82,0x00,0x09,0x51,0x24,0xa2,0x12,0x00, 0x80,0x81,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x20,0x00,0x04,0x04,0x04,0x49, 0x55,0x08,0x01,0x2a,0xa2,0xaa,0xa4,0x05,0x2a,0xaa,0xaa,0x92,0xb7,0x2a,0xa0, 0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x04,0x08,0x08,0x04,0x40,0x00,0x00,0x00,0x08,0x80,0x12,0x01, 0x02,0x24,0x22,0x40,0x44,0x10,0x82,0x40,0x01,0x04,0x09,0x50,0x01,0x00,0x40, 0x00,0x20,0x00,0x00,0x08,0x00,0x21,0x00,0x02,0x48,0x15,0x48,0x08,0x55,0x52, 0xaa,0x14,0x10,0x40,0x08,0x08,0x00,0x04,0x00,0x20,0x00,0x00,0x00,0x40,0x00, 0x80,0x80,0x00,0x41,0x64,0xb2,0x45,0x42,0xaa,0xa9,0x54,0xd2,0xb2,0xd4,0x92, 0x4a,0x55,0x5a,0xa4,0x09,0x22,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x02,0x40,0x80,0x00,0x00,0x00, 0x14,0x22,0x2a,0x80,0x48,0x40,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x04,0x00, 0x00,0xa1,0x00,0x04,0x09,0x00,0x04,0x44,0x04,0x20,0x04,0x00,0x00,0x08,0x12, 0x40,0x12,0xa0,0x02,0x48,0x91,0x52,0x41,0x10,0x20,0x00,0x10,0x10,0x44,0x02, 0x00,0x00,0x20,0x01,0x02,0x02,0x00,0x00,0x08,0x2a,0xb4,0x20,0x90,0xb2,0x94, 0xaa,0x51,0x09,0x54,0x49,0x25,0x52,0xb5,0x29,0x44,0x84,0x04,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x50, 0x00,0x00,0x00,0x49,0x24,0x80,0x80,0x90,0x24,0x00,0x09,0x41,0x10,0x24,0x92, 0x40,0x48,0x00,0x80,0x10,0x40,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x40,0x00, 0x40,0x04,0x00,0x21,0x58,0x02,0x40,0x02,0x51,0x2a,0x4a,0x09,0x08,0x04,0x00, 0x00,0x40,0x40,0x00,0x00,0x11,0x08,0x00,0x00,0x00,0x00,0x00,0x20,0x02,0x4a, 0xa2,0x95,0x45,0x15,0x65,0x55,0xaa,0xa5,0xab,0x55,0x54,0xaa,0x5a,0xa5,0x20, 0x11,0x20,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x51,0x04,0x02,0x10,0x81,0x00,0x00,0x00,0x02,0xc8,0x09,0x01, 0x20,0x54,0x01,0x00,0x00,0x00,0x01,0x04,0x00,0x01,0x04,0x00,0x00,0x20,0x80, 0x01,0x00,0x00,0x00,0x02,0x11,0x20,0x25,0x08,0x22,0xa8,0x12,0x88,0x04,0x4a, 0xa9,0xa0,0x02,0x40,0x80,0x44,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x10, 0x08,0x10,0x80,0x08,0x25,0x95,0xa0,0x22,0xd5,0x9a,0x54,0xaa,0x55,0x5d,0x4a, 0xaa,0x55,0x4a,0x90,0x15,0x44,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x02,0x04,0x00,0x10, 0x00,0x10,0x52,0xa0,0x48,0x09,0x10,0x00,0x00,0x00,0x12,0x00,0x10,0x10,0x40, 0x10,0x00,0x42,0x02,0x08,0x00,0x02,0x20,0x08,0x90,0x80,0x00,0x00,0x42,0x88, 0x41,0x00,0x41,0x20,0x12,0xaa,0xaa,0x09,0x24,0x24,0x00,0x00,0x00,0x00,0x80, 0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x40,0x93,0x40,0x45,0x49,0x2a,0x55, 0x2b,0x52,0x4a,0xb5,0x54,0x49,0x2c,0xa5,0x55,0x40,0x28,0x20,0x40,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x08, 0x00,0x00,0x00,0x00,0x00,0x09,0x04,0x94,0x12,0x00,0x82,0x41,0x24,0x24,0x92, 0x40,0x12,0x00,0x40,0x00,0x00,0x44,0x00,0x00,0x00,0x10,0x10,0x01,0x00,0x0a, 0x24,0x41,0x41,0x08,0x22,0x94,0x4a,0x80,0x02,0x40,0x2a,0x90,0x81,0x41,0x00, 0x00,0x10,0x00,0x10,0x00,0x00,0x01,0x00,0x80,0x02,0x00,0x02,0x01,0x00,0x04, 0x95,0x10,0xaa,0x95,0x4a,0x55,0x4a,0x95,0x55,0x55,0x2a,0xb2,0xaa,0x4a,0x12, 0x02,0x82,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x01,0x00,0x80,0x00,0x00,0x00,0x02,0x01,0x00,0x10,0x51,0x40,0x44, 0x28,0x14,0x00,0x00,0x00,0x00,0x40,0x40,0x00,0x04,0x40,0x00,0x08,0x48,0x01, 0x00,0x80,0x04,0x00,0x51,0x01,0x04,0x14,0x02,0x84,0x82,0x80,0x12,0x48,0x05, 0x14,0xa4,0x17,0x28,0x02,0x00,0x80,0x00,0x40,0x08,0x40,0x88,0x10,0x00,0x08, 0x00,0x10,0x00,0x00,0x20,0x40,0x89,0x2a,0x86,0xaa,0xa9,0x69,0x25,0x6e,0xd9, 0x54,0xaa,0x2a,0xa1,0x41,0x50,0x08,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x29,0x20,0x08,0x00,0x08,0x24, 0x10,0x42,0x5c,0x94,0x12,0x42,0x20,0x00,0x81,0x00,0x04,0x00,0x01,0x02,0x00, 0x09,0x00,0x40,0x00,0x20,0x02,0x01,0x20,0x11,0x24,0x50,0x00,0x14,0x20,0x10, 0x54,0x2a,0x80,0x21,0x10,0x42,0x41,0x49,0x40,0x00,0x20,0x01,0x02,0x00,0x00, 0x04,0x00,0x00,0x08,0x80,0x00,0x00,0x00,0x00,0x81,0x14,0x54,0x92,0xb2,0xaa, 0xaa,0xa4,0x95,0x55,0x54,0x8a,0x95,0x55,0x54,0x94,0x05,0x21,0x08,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x40, 0x00,0x20,0x44,0x20,0x00,0x01,0x04,0xb4,0x41,0x01,0x08,0x80,0x88,0x10,0x12, 0x10,0x02,0x04,0x00,0x00,0x10,0x11,0x01,0x00,0x00,0x04,0x00,0x00,0x00,0x49, 0x04,0x40,0x08,0x8a,0x85,0x29,0x00,0x09,0x00,0x01,0x08,0x94,0x2a,0x04,0x90, 0x00,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04, 0x4a,0x8a,0x4a,0xa5,0x6b,0x55,0x5a,0x55,0x57,0x55,0x51,0x55,0x55,0x2a,0x40, 0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x04,0x20,0x10,0x02,0x00,0x00,0x00,0x00,0x04,0x00,0xba,0x88,0x54, 0x22,0x04,0x00,0x80,0x40,0x40,0x00,0x20,0x00,0x21,0x00,0x00,0x00,0x01,0x04, 0x10,0x04,0x00,0x02,0x00,0xa1,0x08,0x20,0x20,0x54,0x44,0xa4,0xa0,0x04,0x44, 0x01,0x02,0xa9,0x42,0x41,0x02,0x20,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00, 0x84,0x00,0x00,0x00,0x00,0x04,0x55,0x55,0x51,0x55,0x4d,0x4a,0xa4,0xab,0x48, 0x0a,0xa9,0x2d,0x41,0x12,0x24,0x24,0x84,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x00,0x00,0x00,0x00, 0x90,0x49,0x68,0x20,0x02,0x90,0x40,0x02,0x04,0x00,0x00,0x40,0x80,0x20,0x00, 0x12,0x40,0x00,0x10,0x10,0x40,0x10,0x80,0x88,0xaa,0x88,0x00,0x05,0x15,0x12, 0x92,0x09,0x08,0x90,0x10,0x24,0x55,0x0e,0x11,0x10,0x00,0x00,0x40,0x00,0x00, 0x00,0x20,0x82,0x20,0x12,0x00,0x08,0x00,0x00,0x01,0x51,0x24,0xaa,0xac,0xaa, 0xaa,0x55,0x55,0x55,0xaa,0xa4,0xaa,0xaa,0xa8,0xa0,0x02,0x81,0x10,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49, 0x10,0x01,0x01,0x00,0x48,0x00,0x04,0xb5,0x49,0x24,0x25,0x10,0x48,0x00,0x00, 0x00,0x04,0x00,0x02,0x04,0x00,0x02,0x04,0x00,0x00,0x00,0x00,0x08,0x00,0x24, 0x22,0x20,0x80,0x88,0xa8,0x4d,0x42,0x22,0x01,0x00,0x80,0x20,0xa1,0x44,0x40, 0x08,0x01,0x04,0x08,0x02,0x20,0x02,0x00,0x00,0x80,0x00,0x00,0x02,0x11,0x24, 0x04,0x82,0x25,0x52,0x55,0x55,0x54,0xb2,0x97,0xd9,0x29,0x55,0x55,0x25,0x0a, 0x90,0x48,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x08,0x44,0x80,0x00,0x20,0x10,0x02,0x01,0x21,0x22,0xaa,0x10,0x00, 0x80,0x41,0x00,0x21,0x08,0x80,0x00,0x12,0x00,0x10,0x09,0x10,0x00,0x05,0x00, 0x00,0x02,0x00,0x00,0x00,0x84,0x00,0x24,0x22,0x25,0x25,0x28,0x88,0x44,0x40, 0x08,0x94,0x5a,0x92,0x22,0x20,0x00,0x00,0x80,0x00,0x02,0x00,0x00,0x02,0x00, 0x00,0x00,0x08,0x00,0x00,0x11,0x51,0x55,0x59,0xb5,0x52,0x92,0xdd,0x55,0x6c, 0x4a,0xa9,0x4a,0xd0,0xa0,0x09,0x12,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x10,0x04, 0x04,0x12,0xa4,0x84,0x95,0x12,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x40,0x40, 0x00,0x00,0x00,0x40,0x21,0x00,0x48,0x20,0x21,0x24,0x00,0x84,0x01,0x52,0x89, 0x52,0x84,0x51,0x10,0x04,0x00,0x21,0x6d,0x49,0x08,0x00,0x10,0x00,0x00,0x00, 0x00,0x08,0x00,0x00,0x00,0x10,0x00,0x20,0x00,0x01,0x02,0x08,0x95,0xa5,0x55, 0x55,0x5a,0xaa,0x96,0xe2,0x24,0x55,0x2a,0x94,0x15,0x20,0x44,0x21,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x20, 0x00,0x02,0x00,0x00,0x10,0x00,0x24,0x48,0x50,0x00,0x44,0x90,0x01,0x08,0x20, 0x08,0x11,0x00,0x08,0x00,0x40,0x00,0x21,0x00,0x04,0x00,0x01,0x01,0x00,0x00, 0x20,0x10,0x40,0x08,0x44,0x45,0x52,0x08,0x42,0x40,0x20,0x00,0xd5,0x04,0x20, 0x80,0x00,0x08,0x00,0x40,0x00,0x20,0x00,0x80,0x00,0x40,0x42,0x00,0x00,0x00, 0x40,0xa5,0x2a,0xba,0xd5,0x5a,0x4a,0xb6,0x55,0x95,0x2a,0xaa,0xaa,0xa2,0xa0, 0x02,0x11,0x04,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x12,0x00,0x42,0x00,0x01,0x00,0x80,0x25,0x51,0x01,0x04,0x91, 0x10,0x00,0x08,0x20,0x82,0x00,0x00,0x48,0x00,0x00,0x08,0x44,0x00,0x02,0x20, 0x02,0x04,0x00,0x00,0x01,0x04,0x00,0x0a,0xa5,0x11,0x0c,0x91,0x52,0x08,0x10, 0x00,0x44,0x92,0x20,0x80,0x00,0x00,0x20,0x21,0x00,0x80,0x00,0x04,0x08,0x02, 0x00,0x00,0x00,0x00,0x00,0x14,0x10,0x45,0x4a,0xa9,0x55,0x55,0x55,0x56,0xa0, 0xa4,0xa8,0x49,0x54,0x8a,0x88,0x45,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x25,0x00,0x01,0x00,0x08,0x04,0x08,0x01, 0x00,0x4a,0x50,0x52,0x04,0x02,0x00,0x40,0x02,0x00,0x80,0x00,0x01,0x21,0x00, 0x01,0x00,0x08,0x08,0x00,0x08,0x10,0x08,0x04,0x88,0x00,0x80,0x00,0x12,0x44, 0x43,0x4a,0x04,0xa0,0x80,0x81,0x00,0x28,0x8a,0x04,0x00,0x41,0x00,0x00,0x02, 0x08,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x41,0x4a,0xaa,0xf5,0x55, 0x25,0x2a,0xaa,0xaa,0xaa,0xaa,0xa5,0x25,0x55,0x20,0x20,0x10,0x82,0x40,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40, 0x00,0x00,0x10,0x20,0x08,0x22,0x74,0x42,0x08,0x40,0xa8,0x49,0x01,0x00,0x00, 0x00,0x84,0x00,0x00,0x02,0x20,0x00,0x40,0x40,0x80,0x00,0x01,0x00,0x10,0x00, 0x00,0x00,0x20,0xa4,0xa1,0x14,0x28,0xa2,0x02,0x04,0x00,0x04,0x92,0x20,0x00, 0x80,0x00,0x00,0x00,0x00,0x00,0x04,0x80,0x20,0x40,0x01,0x00,0x00,0x04,0x00, 0x09,0x22,0x15,0x15,0x6a,0xd4,0xa5,0xae,0x95,0x52,0x55,0x52,0xaa,0xb1,0x4a, 0x02,0x8a,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x0c,0x08,0x04,0x00,0x20,0x40,0x00,0x80,0x89,0x53,0xa0,0x91,0x12, 0x01,0x00,0x00,0x24,0x01,0x08,0x00,0x44,0x00,0x10,0x00,0x11,0x01,0x00,0x24, 0x40,0x24,0x00,0x00,0x00,0x44,0x21,0x02,0x08,0x4a,0x25,0x94,0x94,0xa0,0x50, 0x04,0x02,0x20,0x80,0x90,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04, 0x84,0x00,0x00,0x00,0x10,0x04,0x94,0xaa,0xea,0xaa,0xaa,0x95,0x55,0x55,0xa9, 0x55,0x55,0x2a,0xaa,0xa1,0x50,0x10,0x81,0x20,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x40,0x00,0x09,0x00,0x00,0x02,0x00, 0x00,0xad,0xe2,0x04,0x40,0x28,0x20,0x04,0x80,0x04,0x00,0x01,0x00,0x88,0x80, 0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x80,0x10,0x00,0x00,0x00,0xa5,0x04, 0x88,0x56,0x29,0x08,0x00,0x00,0x15,0x49,0x02,0x00,0x04,0x00,0x01,0x04,0x00, 0x01,0x00,0x00,0x00,0x00,0x10,0x04,0x00,0x00,0x00,0xa0,0x52,0x2b,0x56,0x55, 0x29,0x55,0xae,0x24,0xaa,0xaa,0x90,0xaa,0xa8,0x88,0x08,0x42,0x24,0x08,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x01,0x20, 0x00,0x00,0x00,0x00,0x12,0x25,0x27,0xe8,0xa8,0x0a,0x80,0x84,0x20,0x00,0x10, 0x00,0x48,0x00,0x00,0x00,0x80,0x80,0x00,0x24,0x80,0x00,0x80,0x82,0x00,0x41, 0x00,0x84,0x10,0x04,0xa9,0x45,0x55,0x44,0x81,0x21,0x10,0x42,0x84,0x28,0x04, 0x20,0x02,0x00,0x00,0x10,0x00,0x00,0x00,0x84,0x00,0x00,0x00,0x40,0x20,0x00, 0x05,0x24,0xac,0xb5,0x2a,0xa6,0x8a,0x52,0xaa,0xaa,0xb4,0xaa,0x92,0x55,0x42, 0x89,0x00,0x91,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x01,0x20,0x00,0x00,0x02,0x00,0x20,0x00,0x01,0x2f,0xd0,0x02,0xa0, 0x2a,0x00,0x00,0x08,0x40,0x22,0x00,0x12,0x42,0x00,0x00,0x04,0x40,0x00,0x08, 0x04,0x0a,0x00,0x04,0x00,0x04,0x00,0x02,0x48,0x01,0x2a,0x92,0x82,0x20,0x08, 0x04,0x08,0x50,0x82,0x40,0x00,0x00,0x10,0x10,0x00,0x00,0x10,0x02,0x00,0x10, 0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x2b,0x6a,0x55,0x55,0x55,0x55,0x55,0x54, 0xaa,0x85,0x4d,0x54,0xa8,0x24,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x80,0x00,0x42,0x08,0x00,0x81,0x02, 0x4a,0x9f,0xe9,0x50,0x00,0x80,0x20,0x80,0x20,0x00,0x00,0x00,0x00,0x80,0x04, 0x08,0x10,0x08,0x80,0x41,0x20,0x00,0x00,0x00,0x00,0x10,0x00,0x80,0x12,0xaa, 0x44,0x48,0x51,0x0a,0x00,0x40,0x25,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00, 0x44,0x00,0x00,0x00,0x81,0x00,0x00,0x01,0x00,0x00,0x12,0x94,0xb6,0xdd,0x5a, 0xaa,0x92,0x4a,0xd5,0x55,0x55,0x68,0xaa,0xaa,0x05,0x00,0x80,0x54,0x50,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x01,0x02, 0x00,0x20,0x04,0x04,0x08,0x0d,0x3f,0xf0,0x05,0x4a,0x12,0x82,0x02,0x00,0x00, 0x08,0x02,0x0a,0x48,0x20,0x20,0x40,0x80,0x12,0x00,0x00,0x90,0x00,0x00,0x00, 0x40,0x10,0x01,0x40,0x01,0x12,0x92,0x84,0x41,0x0a,0x10,0x10,0xa8,0x29,0x10, 0x80,0x00,0x00,0x00,0x01,0x00,0x01,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x81, 0x00,0x02,0xad,0xea,0xd5,0x55,0x4a,0xaa,0xa5,0x56,0xda,0x92,0x95,0x51,0x2a, 0x4a,0x25,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x14,0x04,0x20,0x08,0x00,0x10,0x00,0x01,0x20,0x6f,0xe5,0x20,0x00, 0x04,0x08,0x08,0x02,0x00,0x00,0x90,0x41,0x00,0x80,0x01,0x00,0x00,0x00,0x44, 0x00,0x01,0x08,0x22,0x12,0x00,0x42,0x04,0x09,0x54,0xa9,0x08,0x21,0x14,0x00, 0x85,0x54,0x42,0x85,0x40,0x00,0x08,0x41,0x00,0x40,0x00,0x04,0x00,0x10,0x00, 0x00,0x20,0x08,0x00,0x04,0x01,0x55,0x56,0xad,0x6a,0xaa,0xa9,0x52,0x92,0xaa, 0xb5,0x44,0xab,0x4a,0x28,0x80,0x80,0x50,0x10,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x05,0x00,0x00,0x00,0x00,0x40,0x00,0x20, 0x13,0xff,0x40,0x90,0x21,0x20,0x00,0x00,0x10,0x22,0x42,0x00,0x1a,0xa0,0x00, 0x04,0x02,0x24,0x40,0x00,0x84,0x10,0x00,0x00,0x00,0x01,0x00,0x10,0x20,0x02, 0x44,0xa2,0x94,0x45,0x41,0x20,0xd2,0xa8,0x21,0x04,0x00,0x20,0x00,0x01,0x00, 0x00,0x20,0x00,0x40,0x00,0x22,0x01,0x00,0x00,0x00,0x00,0x09,0x2b,0xb7,0xad, 0x55,0x25,0x4a,0x75,0x55,0xd6,0xaa,0x0b,0xa5,0x45,0x02,0x25,0x04,0x85,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x54,0x20,0x00, 0x40,0x84,0x00,0x10,0x09,0x25,0x55,0x4a,0x4a,0x04,0x00,0x20,0x00,0x40,0x00, 0x00,0x00,0x2a,0x00,0x00,0x00,0x00,0x00,0x02,0x12,0x10,0x44,0x00,0x00,0x40, 0x04,0x00,0x00,0x02,0x51,0x14,0x10,0x42,0x52,0x04,0x0a,0x55,0x14,0x84,0x40, 0x00,0x80,0x00,0x08,0x00,0x00,0x80,0x00,0x00,0x88,0x80,0x00,0x00,0x00,0x00, 0x00,0xa5,0x56,0xd5,0x6a,0xaa,0x95,0x29,0x29,0x56,0xe9,0x01,0x65,0xa1,0x10, 0xa8,0x88,0x50,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x22,0x00,0x89,0x00,0x00,0x00,0x41,0x00,0x17,0x5b,0x10,0x90,0x80, 0x84,0x80,0x00,0x01,0x00,0x00,0x02,0x16,0xa4,0x80,0x84,0x48,0x00,0x08,0x00, 0x00,0x00,0x21,0x11,0x04,0x40,0x00,0x00,0x00,0x0a,0x52,0xa5,0x15,0x28,0xa1, 0x41,0x6a,0x62,0x20,0x10,0x04,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x02,0x00, 0x00,0x00,0x10,0x00,0x00,0x00,0x0a,0xab,0x56,0xb7,0x55,0x52,0xa4,0xa5,0x4b, 0xb6,0xb4,0x95,0xd4,0xa5,0x02,0x21,0x0a,0x88,0x80,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x04,0x00,0x04,0x00,0x01,0x00,0x08, 0xaa,0x84,0x42,0x24,0x20,0x10,0x00,0x80,0x04,0x08,0x10,0x20,0x42,0x80,0x08, 0x11,0x01,0x22,0x00,0x28,0x81,0x02,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x51, 0x54,0x08,0xa2,0x45,0x08,0x1a,0x54,0x99,0x02,0x80,0x10,0x00,0x00,0x00,0x02, 0x10,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x25,0xbb,0xda, 0xaa,0x94,0xaa,0x90,0xae,0xd9,0x42,0x4a,0x42,0x48,0xa8,0x84,0x48,0x22,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x45,0x00,0x04, 0x10,0x08,0x08,0x00,0x42,0x5c,0x20,0x08,0x88,0x04,0x40,0x00,0x08,0x80,0x20, 0x84,0x80,0x15,0x24,0x20,0x00,0x04,0x00,0x20,0x02,0x10,0x28,0x08,0x00,0x01, 0x08,0x40,0x20,0x09,0x05,0x51,0x52,0x49,0x50,0xa0,0xe9,0x2a,0xb5,0x48,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x40,0x00,0x00,0x00,0x40,0x88,0x40, 0x11,0x08,0x96,0xad,0x6d,0x54,0x4a,0x55,0x4a,0x2f,0x6a,0x29,0x29,0xb1,0x22, 0x55,0x22,0x95,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x28,0x88,0x20,0x40,0x00,0x20,0x80,0x09,0x00,0xa8,0x84,0x82,0x22,0x80, 0x02,0x02,0x00,0x00,0x00,0x08,0x04,0x45,0x00,0x00,0x02,0x40,0x40,0x00,0x28, 0x04,0x00,0x40,0x02,0x10,0x00,0x00,0x01,0x20,0x22,0x4a,0x49,0x0d,0x2a,0x0b, 0x5a,0x91,0x5d,0x10,0x20,0x80,0x00,0x08,0x20,0x00,0x00,0x00,0x40,0x00,0x08, 0x00,0x44,0x00,0x00,0x02,0x00,0x22,0x5a,0xb6,0xb7,0xa9,0x29,0xaa,0x52,0xaf, 0xb5,0x94,0xaa,0x48,0xa9,0x24,0x91,0x00,0xa2,0x40,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x02,0x00,0x08,0x40,0x00,0x02,0x00,0x12, 0x40,0x10,0x20,0x88,0x10,0x00,0x10,0x00,0x10,0x80,0x50,0x00,0x29,0x50,0x81, 0x00,0x11,0x04,0x84,0x04,0x80,0x90,0x00,0x88,0x00,0x02,0x00,0x00,0x00,0x11, 0x25,0x2a,0xd2,0x91,0x55,0xa4,0x4a,0x74,0x80,0x82,0x00,0x00,0x20,0x00,0x10, 0x00,0x01,0x00,0x04,0x40,0x81,0x00,0x00,0x00,0x00,0x01,0x01,0x4d,0x5b,0xda, 0xa5,0x4a,0x51,0x09,0x2a,0xd0,0x4a,0xb4,0x91,0x15,0x12,0x08,0xaa,0x08,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x24,0x04,0x00, 0x00,0x80,0x00,0x40,0x04,0x52,0x42,0x0a,0x22,0x42,0x20,0x80,0x22,0x00,0x02, 0x00,0x21,0x04,0x82,0x00,0x12,0x40,0x00,0x10,0x20,0x12,0x00,0x04,0x00,0x00, 0x88,0x00,0x00,0x00,0x84,0x08,0x44,0x29,0x2c,0x2a,0x52,0xa4,0xaa,0x22,0x08, 0x00,0x00,0x00,0x01,0x00,0x40,0x04,0x00,0x80,0x00,0x04,0x00,0x00,0x00,0x00, 0x24,0x12,0x35,0x6d,0x77,0xaa,0x29,0x4a,0x52,0x56,0xad,0x29,0x49,0x24,0x48, 0xa5,0x42,0x04,0x42,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x20,0x00,0x00,0x91,0x02,0x00,0x00,0x08,0x91,0x00,0x00,0xa0,0x08,0x08, 0x04,0x00,0x00,0x42,0x08,0x01,0x04,0x11,0x50,0x08,0x00,0x04,0x90,0x40,0x15, 0x00,0x48,0x90,0x00,0x44,0x00,0x11,0x08,0x02,0x00,0xa1,0x0a,0xa4,0xa2,0xaf, 0x56,0x92,0x2a,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00, 0x00,0x00,0x44,0x00,0x00,0x81,0x44,0xaa,0xb7,0xfd,0x55,0xad,0x61,0x51,0x29, 0x50,0x5c,0x94,0x40,0x25,0x14,0x29,0x51,0x28,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x02,0x0a,0x00,0x00,0x00,0x08,0x00,0x11,0x00,0x00, 0xa5,0x29,0x01,0x21,0x00,0x80,0x12,0x00,0x00,0x00,0x44,0x10,0x40,0x20,0x01, 0x01,0x00,0x01,0x00,0x80,0x04,0x00,0x00,0x21,0x00,0x00,0x40,0x00,0x88,0x00, 0x04,0x01,0x52,0x5c,0x1d,0xaa,0x49,0x45,0x10,0x80,0x00,0x21,0x00,0x00,0x00, 0x02,0x00,0x02,0x00,0x08,0x00,0x00,0x00,0x20,0x02,0x00,0x82,0x2a,0xab,0xd6, 0xa8,0x92,0xac,0x14,0x95,0xd5,0x22,0x49,0x15,0x54,0xa5,0x40,0x84,0x42,0x40, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x44,0x21,0x20, 0x00,0x02,0x40,0x02,0xa4,0x00,0x00,0x10,0x00,0x90,0x11,0x00,0x48,0x10,0x41, 0x00,0x85,0x0a,0x8a,0x80,0x10,0x10,0x00,0x00,0x14,0x90,0x52,0x00,0x00,0x00, 0x21,0x00,0x00,0x00,0x24,0x20,0x04,0x0a,0xa6,0xd6,0xba,0xa4,0x90,0x84,0x00, 0x00,0x80,0x00,0x00,0x02,0x08,0x00,0x00,0x08,0x80,0x40,0x01,0x00,0x01,0x10, 0x09,0x29,0x2a,0xd5,0xfb,0xa6,0xaa,0x55,0x49,0x4a,0x54,0x8a,0xa4,0x40,0x02, 0x55,0x14,0x20,0x89,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x04,0x40,0x00,0x08,0x00,0x20,0x00,0x00,0x10,0x01,0x24,0x24,0x42,0x88,0x02, 0x00,0x01,0x01,0x02,0x08,0x10,0x20,0x80,0x40,0x24,0x40,0x02,0x44,0x00,0x02, 0x00,0x00,0x00,0x84,0x10,0x84,0x00,0x08,0x00,0x00,0x00,0x51,0x55,0x5a,0xad, 0x56,0x94,0x2a,0x50,0x00,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0x08,0x00,0x00, 0x00,0x04,0x00,0x80,0x00,0x20,0x04,0xaa,0x56,0xad,0x5a,0xaa,0xa8,0x25,0x25, 0x22,0x34,0x95,0x0a,0x95,0x29,0x42,0x89,0x10,0x80,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x51,0x02,0x00,0x08,0x00,0x00,0x10, 0x00,0x80,0x00,0x22,0x48,0x00,0x24,0x30,0x08,0x40,0x00,0x84,0x25,0x11,0x11, 0x02,0x00,0x00,0x89,0x28,0x00,0x88,0x44,0x00,0x02,0x00,0x00,0x20,0x42,0x00, 0x05,0x05,0x55,0x6a,0xbe,0xba,0xa9,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00, 0x00,0x04,0x00,0x40,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x20,0x17,0x55,0xf6, 0xaa,0xd5,0x54,0x92,0xa8,0x94,0x82,0x54,0x82,0x09,0x54,0xa9,0x20,0x05,0x10, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x44,0x44,0x00, 0x00,0x20,0x01,0x02,0x42,0x44,0x04,0x09,0x00,0x80,0x88,0x80,0x48,0x21,0x02, 0x44,0x01,0x00,0x40,0x40,0x08,0x40,0x00,0x20,0x00,0x48,0x02,0x00,0x00,0x80, 0x00,0x01,0x00,0x08,0x00,0x80,0x10,0x95,0x56,0xdb,0x55,0x14,0xaa,0x92,0x08, 0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x04,0x00,0x00, 0x00,0x4a,0x8a,0xaa,0xad,0x75,0x55,0x52,0x29,0x45,0x22,0x55,0x12,0x20,0x52, 0x0a,0x84,0x92,0xa0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x12,0x21,0x00,0x90,0x08,0x00,0x80,0x00,0x20,0x00,0x00,0x41,0x20,0x24,0x04, 0x00,0x00,0x60,0x01,0x08,0x10,0x14,0xa4,0x89,0x14,0x80,0x08,0x01,0x48,0x11, 0x00,0x28,0x00,0x22,0x00,0x40,0x10,0x00,0x00,0x10,0x00,0x4a,0xaa,0xba,0xad, 0x69,0x4a,0x24,0x20,0x00,0x04,0x00,0x04,0x00,0x40,0x40,0x00,0x48,0x00,0x20, 0x02,0x00,0x00,0x00,0x00,0x09,0x00,0x27,0xaa,0xf5,0x9b,0x55,0x4a,0x84,0xa8, 0x14,0x28,0xad,0x44,0x04,0xd5,0x62,0xa8,0x14,0x24,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x84,0x00,0x44,0x40,0x00,0x00,0x20,0x00,0x00, 0x42,0x10,0x02,0x01,0x20,0x00,0x02,0x00,0x01,0x00,0x08,0x02,0x80,0x20,0x40, 0x12,0x00,0x10,0xb0,0x08,0x02,0x00,0x48,0x80,0x09,0x09,0x00,0x01,0x00,0x40, 0x12,0x11,0x55,0xca,0xd6,0xb5,0x21,0x11,0x00,0x20,0x00,0x00,0x40,0x00,0x00, 0x00,0x00,0x00,0x02,0x00,0x08,0x00,0x10,0x04,0x00,0x40,0x24,0x0b,0x45,0x5a, 0xaa,0xad,0x68,0x55,0x20,0xa2,0x92,0x90,0x01,0x22,0x15,0x10,0x42,0x82,0x80, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x90,0x00, 0x42,0x00,0x82,0x04,0x09,0x08,0x04,0x00,0x90,0x08,0x91,0x08,0x08,0x84,0x20, 0x41,0x28,0x4a,0x49,0x00,0x00,0x00,0x81,0x6a,0x20,0x48,0x04,0x00,0x00,0x00, 0x00,0x01,0x04,0x20,0x02,0x00,0x05,0x25,0xaf,0x77,0xd5,0x54,0x4c,0x44,0x80, 0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x00,0x10,0x08, 0x08,0x01,0x05,0x2b,0xd5,0x55,0x52,0xab,0x22,0x54,0x14,0x4a,0x4d,0x48,0x0a, 0xaa,0xc5,0x29,0x28,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x20,0x40,0x10,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0x00,0x80,0x92,0x05,0x42, 0x00,0x00,0xa0,0x00,0x00,0x08,0x02,0x01,0x00,0x01,0x22,0x24,0x01,0xa0,0x09, 0x00,0x41,0x00,0x00,0x40,0x00,0x44,0x10,0x01,0x00,0x00,0x20,0x92,0x2d,0x2a, 0xec,0x8a,0x21,0x00,0x00,0x20,0x00,0x00,0x02,0x00,0x00,0x84,0x48,0x00,0x04, 0x00,0x00,0x40,0x40,0x00,0x01,0x48,0x53,0x84,0xaa,0xaa,0x94,0xaa,0x8a,0xa8, 0x42,0x24,0xaa,0x20,0x50,0x04,0x50,0x54,0x41,0x20,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x04,0x80,0x42,0xa8,0x00,0x00,0x04,0x00,0x80,0x00, 0x22,0x10,0x00,0x40,0x10,0x00,0x20,0x00,0x10,0x04,0x20,0x59,0x48,0x02,0x48, 0x08,0x00,0x04,0xa8,0x10,0x00,0x08,0x04,0x09,0x01,0x21,0x00,0x00,0x00,0x00, 0x20,0x04,0x48,0x16,0xdb,0x7a,0xa1,0x44,0x10,0x01,0x00,0x10,0x00,0x00,0x00, 0x04,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x25,0x6a, 0xaa,0xaa,0x95,0x52,0x45,0x14,0x92,0x55,0x49,0x0a,0xa5,0x01,0x11,0x14,0x05, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x02,0x00,0x41,0x22, 0x10,0x40,0x10,0x02,0x24,0x80,0x00,0x04,0x04,0x84,0x44,0x02,0x0a,0x00,0x82, 0x02,0x04,0x02,0x20,0x00,0x22,0x80,0x00,0x00,0x40,0x22,0x01,0x00,0x40,0x08, 0x04,0x04,0x80,0x84,0x00,0x84,0x91,0x25,0x5d,0xae,0xf5,0x14,0x10,0x41,0x00, 0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x20,0x00,0x00,0x00,0x00,0x00, 0x24,0x24,0x30,0x8a,0xaa,0x95,0x44,0x48,0x89,0x12,0x08,0x49,0x48,0x94,0x20, 0x08,0xa8,0x44,0x40,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x11,0x08,0x02,0x80,0x00,0x01,0x00,0x82,0x00,0x00,0x08,0x49,0x40,0x80,0x51, 0x00,0x80,0x20,0x40,0x10,0x00,0x52,0xa8,0x88,0x81,0x00,0x00,0x80,0x41,0x09, 0x00,0x10,0x11,0x00,0x00,0x00,0x00,0x22,0x00,0x10,0x00,0x00,0x92,0xad,0x53, 0x5d,0x51,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x00, 0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x8a,0x21,0x54,0xaa,0xb2,0xa2,0xa4,0x08, 0xa5,0x15,0x25,0x02,0x95,0x22,0x02,0x12,0x94,0x08,0x80,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x24,0x00,0x00,0x02,0x00,0x10,0x00, 0x21,0x00,0x08,0x11,0x00,0x00,0x08,0x01,0x02,0x00,0x42,0x00,0x04,0x00,0x10, 0x16,0x48,0x10,0x00,0x20,0x08,0x04,0x00,0x12,0x42,0x90,0x10,0x00,0x00,0x00, 0x01,0x04,0x6a,0xf3,0x55,0x56,0xa4,0x90,0x82,0x08,0x00,0x00,0x00,0x20,0x00, 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x08,0x00,0x21,0x21,0x15,0x2a, 0x95,0x2a,0xa9,0x51,0x22,0x48,0x02,0x12,0x54,0x80,0x08,0xa8,0x89,0x01,0x52, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x80,0x21,0x00,0x00, 0x80,0x08,0x08,0x00,0x92,0x00,0x08,0x00,0x40,0x4a,0x48,0x20,0x00,0x00,0x01, 0x00,0x14,0x52,0x44,0x00,0x41,0x00,0x02,0x08,0x10,0x20,0x90,0x40,0x00,0x08, 0x00,0x02,0x08,0x10,0x42,0x04,0x22,0xdd,0x55,0x6d,0x75,0x52,0x04,0x08,0x00, 0x02,0x00,0x00,0x80,0x80,0x40,0x04,0x00,0x80,0x00,0x40,0x10,0x00,0x00,0x00, 0x02,0x04,0x08,0xa9,0x44,0x4a,0xb5,0x44,0x80,0x80,0x82,0x91,0x41,0x01,0x55, 0x22,0x00,0x04,0xa8,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02, 0x02,0x00,0x80,0x00,0x08,0x04,0x00,0x00,0x82,0x00,0x44,0x02,0x42,0x04,0x01, 0x02,0x00,0x80,0x24,0x10,0x08,0x80,0x04,0x10,0x92,0x00,0x51,0x00,0x00,0x81, 0x00,0x00,0x04,0x84,0x00,0x00,0x80,0x20,0x01,0x00,0x20,0x0a,0x42,0xaa,0xaa, 0xad,0x08,0x90,0x80,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x20,0x20,0x02,0x00, 0x00,0x40,0x00,0x00,0x40,0x00,0x10,0x85,0x02,0x32,0xa5,0x52,0x2a,0x54,0x00, 0x28,0x04,0x28,0x54,0x00,0x54,0xa4,0xa2,0x24,0xa4,0x20,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x04,0x10,0x40,0x00,0x00,0x20,0x00,0x00, 0x00,0x40,0x08,0x10,0xa8,0x20,0x00,0x08,0x00,0x00,0x00,0x22,0x10,0x02,0x00, 0x11,0x00,0x20,0x00,0x24,0x08,0x42,0x00,0x20,0x40,0x08,0x10,0x40,0x00,0x00, 0x00,0x15,0x55,0x4d,0xaa,0xaa,0xa2,0x22,0x20,0x40,0x80,0x01,0x00,0x00,0x08, 0x01,0x00,0x02,0x10,0x22,0x01,0x00,0x20,0x11,0x00,0x08,0x4a,0x20,0x50,0x88, 0x12,0xa9,0x55,0x50,0x92,0x91,0x40,0xa5,0x02,0xaa,0x88,0x40,0x14,0x80,0x02, 0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x00,0x40,0x00, 0x10,0x40,0x00,0x08,0x22,0x20,0x08,0x00,0x00,0x05,0x08,0x92,0x00,0x80,0x82, 0x04,0x00,0x84,0x80,0x08,0x84,0x11,0x00,0x41,0x00,0x21,0x10,0x40,0x00,0x80, 0x80,0x01,0x02,0x04,0x04,0x41,0x2a,0xa8,0xa6,0xa8,0xa9,0x08,0x88,0x40,0x08, 0x00,0x04,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x20,0x11,0x4a,0x8a,0x55,0x4a,0xac,0x25,0x0a,0x00,0x24,0x0a,0x34,0x14,0x4a, 0x21,0x15,0x08,0x22,0x50,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x40,0x80,0x09,0x01,0x20,0x42,0x68, 0x40,0x00,0x20,0x08,0x10,0x11,0x20,0x02,0x11,0x20,0x00,0x40,0x08,0x08,0x20, 0x04,0x02,0x12,0x02,0x04,0x22,0x48,0x08,0x20,0x10,0x04,0x0a,0xa5,0x12,0x2b, 0x54,0x8a,0x00,0x09,0x00,0x10,0x00,0x00,0x04,0x00,0x80,0x00,0x88,0x00,0x00, 0x00,0x00,0x01,0x00,0x00,0x20,0x14,0x20,0x41,0x44,0x22,0xa2,0x92,0xa8,0x49, 0x10,0x80,0x4a,0x92,0x94,0x04,0x42,0x24,0x88,0x05,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x89,0x01,0x04,0x40,0x04,0x00,0x02,0x00, 0x00,0x00,0x00,0x00,0x01,0x02,0x44,0x00,0x00,0x00,0x40,0x04,0x20,0x00,0x04, 0x88,0x08,0x81,0x00,0x89,0x20,0x20,0x00,0x48,0x00,0x00,0x02,0x40,0x00,0x00, 0x01,0x56,0x2a,0xd5,0x8a,0xa5,0x24,0xa4,0x80,0x20,0x08,0x00,0x02,0x00,0x40, 0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x00,0x00,0x09,0x2a,0x85,0x28,0xa9, 0x15,0x18,0x4a,0x45,0x00,0x8a,0x15,0x15,0x09,0x21,0x20,0x24,0x80,0x20,0xa0, 0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x02,0x00,0x00,0x00, 0x01,0x00,0x08,0x00,0x01,0x40,0x08,0x02,0x09,0x24,0x08,0x10,0x84,0x00,0x44, 0x02,0x41,0x02,0x88,0x90,0x21,0x22,0x20,0x00,0x20,0x00,0x89,0x20,0x00,0x21, 0x08,0xa8,0x00,0x00,0x91,0x14,0x1d,0x45,0x2a,0x52,0xa9,0x00,0x00,0x02,0x02, 0x10,0x20,0x10,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x80,0x04,0x00, 0x20,0x15,0x08,0xa2,0x40,0x05,0x25,0x29,0x02,0x0a,0x20,0x42,0x44,0x12,0x48, 0x0a,0x40,0x12,0x80,0x24,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09, 0x01,0x00,0x00,0x08,0x00,0x00,0x00,0x20,0x10,0x10,0x08,0x80,0x10,0x00,0x10, 0x00,0x00,0x20,0x41,0x01,0x00,0x10,0x10,0x20,0x21,0x00,0x00,0x00,0x11,0x01, 0x48,0x20,0x00,0x00,0x80,0x22,0x00,0x00,0x08,0x24,0x01,0x44,0x24,0xaa,0x89, 0x54,0xa9,0x54,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x88,0x20, 0x00,0x00,0x00,0x00,0x00,0x00,0x4a,0x10,0x90,0x2a,0x50,0x8a,0xa6,0x90,0x85, 0x15,0x08,0x10,0x09,0x02,0xa0,0x14,0x40,0x12,0x48,0xa0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x12,0x20,0x10,0x00,0x00,0x80,0x40,0x00, 0x00,0x01,0x00,0x44,0x80,0x80,0x45,0x00,0x00,0x00,0x49,0x00,0x01,0x01,0x08, 0x0a,0x41,0x21,0x00,0x44,0x00,0x84,0x82,0x48,0x04,0x00,0x94,0x80,0x40,0x00, 0x44,0x35,0x52,0x92,0x52,0x22,0x80,0x42,0x40,0x40,0x00,0x00,0x00,0x10,0x02, 0x00,0x08,0x00,0x00,0x02,0x20,0x00,0x00,0x00,0x02,0x08,0x00,0x44,0x49,0x00, 0x05,0x28,0x51,0x00,0x10,0xa0,0x41,0x40,0x11,0x50,0x02,0x41,0x04,0x40,0x90, 0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x00, 0x10,0x24,0x00,0x01,0x04,0x02,0x10,0x00,0x00,0x28,0x11,0x00,0x12,0x08,0x01, 0x00,0x42,0x00,0x00,0x52,0x40,0x10,0x04,0x22,0x00,0x92,0x10,0x08,0x01,0x00, 0x02,0x20,0x02,0x00,0x80,0x11,0x48,0x15,0x2a,0x88,0x95,0x24,0x28,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x10,0x80,0x80,0x00,0x00,0x00,0x08,0x10,0x00,0x08, 0x01,0x21,0x13,0x20,0x51,0x02,0x05,0x54,0xa2,0x0a,0x14,0x28,0x24,0x8a,0x8a, 0x50,0x00,0x00,0x0a,0x02,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x29, 0x04,0x20,0x00,0x00,0x00,0x81,0x00,0x01,0x00,0x10,0x40,0x00,0x24,0x02,0x02, 0x40,0x00,0x40,0x40,0x08,0x22,0x08,0x24,0x49,0x08,0x94,0x41,0x40,0x00,0x90, 0x40,0x41,0x00,0x10,0x20,0x90,0x00,0x08,0x02,0x08,0x95,0x25,0x48,0x95,0x64, 0x24,0x80,0x81,0x20,0x00,0x40,0x00,0x12,0x00,0x80,0x00,0x00,0x04,0x00,0x00, 0x00,0x20,0x40,0x20,0x20,0x00,0x04,0x48,0xaa,0x04,0x20,0x4a,0x55,0x40,0x21, 0x41,0x00,0x40,0x41,0x51,0x14,0x48,0x14,0x20,0xa8,0x12,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x42,0x00,0x00,0x00,0x08,0x00, 0x00,0x01,0x00,0x48,0x50,0x80,0x20,0x00,0x00,0x80,0x08,0xa0,0x00,0x22,0x44, 0x21,0x04,0x10,0x90,0x02,0x01,0x04,0x21,0x04,0x02,0x02,0x48,0x20,0x00,0x00, 0x41,0xa8,0x25,0x54,0x92,0x49,0x20,0x28,0x08,0x00,0x08,0x80,0x40,0x00,0x00, 0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x10,0x25,0x14,0xa1, 0x04,0x11,0x29,0x10,0x08,0x14,0x8a,0x50,0x54,0x84,0x10,0x01,0x02,0x8a,0x11, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x08,0x00,0x00,0x09,0x20,0x00,0x00,0x04,0x04,0x84,0x02,0x22,0x00, 0x81,0x05,0x42,0x04,0x22,0x88,0x20,0x00,0x02,0x00,0x14,0x10,0x04,0x40,0x08, 0x08,0x01,0x00,0x50,0x22,0xac,0x45,0x55,0x12,0x48,0x02,0x54,0x01,0x41,0x08, 0x00,0x01,0x02,0x00,0x00,0x80,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00, 0x00,0x21,0x00,0x82,0x08,0x00,0x45,0x54,0x4a,0x12,0xa0,0x20,0x89,0x42,0xb1, 0x00,0x10,0x22,0x80,0x84,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10, 0x00,0x80,0x80,0x40,0x00,0x02,0x0a,0x40,0x40,0x81,0x00,0x04,0x04,0x82,0x42, 0xa0,0x01,0x10,0x08,0x22,0x10,0x50,0x10,0x92,0x88,0x54,0x00,0x80,0x00,0x90, 0x40,0x40,0x41,0x09,0x20,0x22,0x90,0x01,0x05,0x09,0x2a,0xaa,0x15,0x5a,0xa0, 0x28,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x10,0x20,0x01,0x04, 0x08,0x00,0x00,0x00,0x00,0x00,0x80,0x29,0x24,0xa0,0x81,0x09,0x52,0x04,0x44, 0x55,0x4a,0x50,0x32,0x48,0x28,0x00,0x09,0x86,0x21,0x02,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x80,0x48,0x02,0x10,0x01,0x00,0x08,0x00,0x00,0x00,0x08, 0x00,0x00,0x40,0x28,0x08,0x08,0x10,0x00,0x40,0x80,0x02,0x0a,0x8a,0x01,0x11, 0x22,0x48,0x12,0x24,0x04,0x00,0x81,0x14,0x40,0x00,0x80,0x00,0x00,0x22,0x22, 0xa1,0x12,0xaa,0x8a,0x4a,0x00,0x50,0x00,0x00,0x01,0x02,0x10,0x00,0x00,0x00, 0x00,0x00,0x00,0x04,0x00,0x40,0x00,0x00,0x00,0x00,0x04,0x24,0x90,0x91,0x0a, 0x04,0x05,0x54,0xa8,0x12,0x88,0x08,0x01,0x48,0x24,0x00,0x48,0x02,0xc0,0x8a, 0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x51,0x00,0x00,0x00,0x00,0x08, 0x00,0x20,0x00,0x04,0x00,0x20,0x40,0x01,0x00,0x85,0x41,0x40,0x00,0x12,0x02, 0x08,0xa1,0x54,0x4a,0x40,0x88,0x00,0x00,0x01,0x41,0x02,0x24,0x02,0x02,0x42, 0x04,0x88,0x90,0x15,0x45,0x54,0xa8,0x95,0x25,0x20,0x82,0x2a,0x80,0x20,0x48, 0x20,0x00,0x04,0x08,0x20,0x00,0x00,0x01,0x10,0x00,0x00,0x00,0x82,0x00,0x00, 0x00,0x50,0x0a,0x42,0x40,0x00,0x22,0xaa,0x05,0x05,0x25,0x22,0xd0,0x20,0xa8, 0x00,0x01,0x21,0x24,0x20,0x82,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, 0x00,0x08,0x81,0x00,0x00,0x00,0x00,0x04,0x80,0x00,0x04,0x08,0x04,0x14,0x20, 0x28,0x08,0x40,0x00,0x10,0x20,0x14,0x00,0x04,0x14,0x51,0x40,0x80,0x08,0x00, 0x48,0x40,0x51,0x20,0x08,0x00,0x20,0x02,0x4d,0x2a,0xa9,0x05,0x54,0x91,0x54, 0x08,0x84,0x08,0x81,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x02,0x00,0x01,0x00,0x08,0x29,0x45,0x08,0x10,0x90,0x09,0x74,0x92,0x12, 0x12,0x10,0x09,0x14,0x20,0x01,0x00,0x00,0x82,0x84,0x88,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x48,0x10,0x40,0x08,0x04,0x00,0x40,0x81,0x00,0x00,0x42, 0x40,0x01,0x20,0x41,0x0a,0x85,0x41,0x01,0x00,0x00,0x81,0x40,0xaa,0xa9,0x41, 0x24,0x28,0x09,0x22,0x88,0x01,0x11,0x08,0x08,0x20,0x2a,0x02,0x00,0x16,0xd5, 0x44,0xb2,0x52,0x4a,0xa2,0x20,0x10,0x80,0x00,0x04,0x80,0x08,0x01,0x00,0x00, 0x01,0x04,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x84,0x12,0x22,0x84, 0x00,0x45,0x5e,0x24,0x09,0x48,0x8a,0xd0,0x50,0x81,0x20,0x00,0x04,0xa0,0x00, 0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x20,0x41,0x02,0x00,0x00,0x01, 0x04,0x04,0x00,0x12,0x08,0x00,0x80,0x01,0x08,0x21,0x20,0x10,0x00,0x02,0x4a, 0x02,0x12,0x20,0x04,0x94,0x11,0x01,0x00,0x00,0x21,0x24,0x40,0x91,0x21,0x02, 0x80,0x88,0x00,0xa5,0xaa,0xa9,0x2a,0x95,0x24,0x94,0x01,0x45,0x00,0x90,0x20, 0x10,0x81,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x08,0x00,0x08,0x10,0x08,0x02, 0x00,0x82,0x44,0x82,0x28,0x02,0x01,0xad,0x42,0xa5,0x05,0x21,0x04,0x00,0x10, 0x00,0x00,0x80,0x02,0x12,0x04,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41, 0x00,0x00,0x20,0x00,0x40,0x00,0x00,0x10,0x40,0x00,0x24,0x10,0x00,0x00,0x88, 0x95,0x40,0x08,0x00,0x00,0x00,0x08,0x95,0x4a,0x44,0xa4,0x40,0x22,0x0a,0x84, 0x41,0x14,0x04,0x00,0x08,0x04,0x20,0x92,0x12,0x55,0x10,0x8a,0xa8,0x92,0x48, 0x80,0x10,0xa4,0x40,0x80,0x00,0x00,0x21,0x20,0x00,0x00,0x00,0x02,0x00,0x00, 0x02,0x00,0x00,0x00,0x00,0x00,0x22,0x21,0x08,0x41,0x00,0x0a,0xfe,0x15,0x14, 0x51,0x04,0xa0,0xd4,0x00,0x00,0x02,0x02,0x48,0x40,0xa1,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x01,0x10,0x08,0x00,0x00,0x10,0x04,0x00,0x10,0x01,0x00,0x00, 0x40,0x00,0x44,0x48,0x02,0x08,0x00,0x00,0x08,0x00,0xa5,0x24,0xa5,0x25,0x50, 0x11,0x14,0x00,0x40,0x01,0x0a,0x42,0x40,0x88,0x40,0x21,0x02,0x00,0x49,0x52, 0xa5,0x52,0xd5,0x29,0x20,0x08,0x45,0x01,0x08,0x48,0x02,0x10,0x00,0x08,0x40, 0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x80,0x00,0x00,0x84,0x94,0x21,0x14, 0x20,0x41,0x2a,0x40,0x25,0x04,0x42,0x55,0x00,0x04,0x04,0x10,0x04,0x20,0x02, 0x08,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x40,0x80,0x10,0x00,0x00,0x00, 0x00,0x40,0x00,0x00,0x40,0x00,0x82,0x02,0x01,0x21,0x44,0x92,0x40,0x20,0x10, 0x08,0x12,0x54,0xb4,0x8a,0xac,0x41,0x2a,0x15,0x24,0x21,0x11,0x12,0x02,0x14, 0x88,0x10,0x09,0x34,0x68,0x14,0x0a,0xec,0x84,0x8a,0x21,0x10,0x08,0x41,0x00, 0x00,0x04,0x01,0x41,0x01,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x80,0x00,0x00, 0x02,0x02,0x41,0x00,0x40,0x84,0x0a,0xac,0x0a,0x93,0x51,0x12,0x82,0x20,0x40, 0x00,0x40,0x01,0x00,0x88,0x22,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04, 0x20,0x01,0x00,0x00,0x00,0x09,0x00,0x44,0x04,0x08,0x00,0x00,0x10,0xa0,0x08, 0x29,0x00,0x00,0x80,0x82,0x05,0x4d,0xb5,0x54,0x50,0x51,0x12,0x04,0x80,0x01, 0x0a,0x48,0x20,0x48,0xa0,0x00,0x82,0x44,0xaa,0xa5,0x41,0x55,0x52,0x22,0x20, 0x80,0x4a,0xa1,0x04,0x00,0x02,0x00,0x84,0x04,0x00,0x00,0x40,0x10,0x02,0x00, 0x00,0x20,0x04,0x00,0x09,0x20,0x08,0x04,0x94,0x08,0x00,0x24,0x55,0x40,0x14, 0x84,0x89,0x29,0x08,0x00,0x00,0x00,0x00,0x44,0x01,0x00,0x80,0x00,0x00,0x00, 0x00,0x00,0x00,0x01,0x41,0x00,0x40,0x04,0x80,0x10,0x00,0x00,0x00,0x00,0x00, 0x84,0x10,0x40,0x0a,0x42,0x80,0x50,0x10,0x00,0x00,0x50,0x9b,0xd5,0x49,0x25, 0x4a,0x88,0xaa,0x29,0x48,0xa0,0xa2,0x09,0x02,0x09,0x56,0x54,0xb0,0x91,0x12, 0x28,0x08,0xa9,0x40,0x88,0x04,0x20,0x04,0x20,0x10,0x88,0x20,0x00,0x10,0x00, 0x02,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x50,0x00,0x21, 0x01,0x12,0x2a,0x2a,0x42,0xa9,0x22,0x40,0x80,0x04,0x40,0x00,0x09,0x00,0x10, 0x49,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0x00,0x04,0x40, 0x00,0x00,0x01,0x00,0x20,0x10,0x41,0x02,0x20,0x08,0x2a,0x82,0x42,0x00,0x11, 0x0a,0xae,0xd4,0x94,0x94,0x2a,0xd2,0x04,0x80,0x22,0x15,0x10,0xa0,0xa8,0x80, 0x00,0x92,0x44,0x4c,0x52,0x85,0x52,0x44,0x08,0x21,0x20,0x05,0x10,0x00,0x00, 0x00,0x00,0x00,0x02,0x20,0x08,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x04,0x80,0x02,0x20,0x00,0x40,0x44,0xaa,0xa9,0x29,0x22,0x08,0x54,0x01,0x00, 0x00,0x00,0x00,0x20,0x01,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x82, 0x42,0x08,0x10,0x10,0x00,0x80,0x02,0x24,0x11,0x04,0x00,0x00,0x00,0x00,0x91, 0x02,0xa0,0x00,0x04,0x84,0x42,0xab,0xea,0x44,0x95,0x55,0xa5,0x52,0x55,0x41, 0x42,0xa5,0x05,0x24,0x24,0xb5,0x4d,0x11,0x02,0x90,0x50,0x01,0x2a,0xa2,0x08, 0x00,0x80,0x40,0x08,0x80,0x00,0x00,0x24,0x80,0x08,0x00,0x02,0x01,0x00,0x00, 0x11,0x00,0x00,0x00,0x80,0x09,0x09,0x50,0x04,0x04,0x08,0x09,0x3d,0x44,0xa4, 0xa9,0x55,0x52,0xa0,0x00,0x02,0x00,0x80,0x02,0x08,0x14,0x80,0x00,0x00,0x00, 0x00,0x00,0x00,0x08,0x08,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x80,0x04,0x08,0x94,0x00,0x49,0x44,0x00,0x40,0x00,0x29,0xdb,0x75,0x52,0xa5, 0x2a,0xca,0x48,0x92,0x14,0x94,0x92,0x29,0x55,0x10,0x84,0x24,0x88,0x50,0x4a, 0x89,0x54,0x81,0x11,0x40,0x82,0x08,0x00,0x80,0x00,0x00,0x04,0x00,0x10,0x20, 0x00,0x00,0x04,0x08,0x00,0x00,0x01,0x00,0x02,0x00,0x04,0x00,0x04,0x90,0x01, 0x01,0x04,0x56,0x2a,0x51,0x44,0x08,0x48,0x00,0x10,0x08,0x44,0x00,0x00,0x20, 0x81,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x41,0x00,0x00,0x41,0x00,0x04, 0x04,0x40,0x00,0x00,0x02,0x02,0x10,0x20,0x00,0x95,0x07,0x80,0x12,0x0a,0x4a, 0x00,0x6d,0xd5,0x2a,0x52,0x4b,0x42,0x92,0x54,0xa5,0x02,0x48,0x44,0xa8,0x81, 0x09,0x10,0x45,0x0a,0x11,0x50,0x92,0x54,0x84,0x02,0x08,0x02,0x00,0x12,0x22, 0x00,0x10,0x82,0x00,0x80,0x40,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x10,0x00, 0x20,0x04,0x40,0x00,0x84,0x10,0x11,0x15,0x49,0x12,0xa9,0x53,0x55,0x08,0x02, 0x20,0x00,0x00,0x21,0x02,0x24,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00, 0x10,0x80,0x04,0x00,0x40,0x00,0x01,0x10,0x40,0x48,0x00,0x40,0x80,0x24,0x00, 0x12,0xa0,0x80,0x00,0xa0,0x25,0x15,0x52,0x95,0x0a,0x95,0xa9,0x44,0x49,0x12, 0x51,0x25,0x15,0x2a,0x28,0x04,0x45,0x28,0x00,0x8a,0xa2,0x24,0x80,0x40,0x90, 0x20,0x00,0x44,0x00,0x08,0x20,0x00,0x00,0x00,0x02,0x00,0x10,0x00,0x00,0x00, 0x00,0x00,0x08,0x80,0x00,0x80,0x10,0x12,0x48,0x10,0x00,0x00,0x0a,0x25,0x48, 0xa4,0x08,0x81,0x20,0x00,0x00,0x00,0x00,0x80,0x08,0x00,0x44,0x00,0x00,0x00, 0x00,0x00,0x00,0x21,0x00,0x00,0x01,0x00,0x20,0x00,0x00,0x04,0x01,0x04,0x00, 0x10,0x00,0x01,0x01,0x44,0x47,0x12,0x00,0x25,0x24,0x80,0x55,0xd2,0x50,0x60, 0x2a,0xa4,0x51,0x28,0x44,0x88,0x54,0x50,0x90,0x25,0x20,0x00,0x00,0x49,0x22, 0xc8,0x82,0x35,0x20,0x00,0x00,0x11,0x00,0x44,0x40,0x04,0x00,0x00,0x04,0x00, 0x00,0x80,0x00,0x00,0x40,0x80,0x08,0x00,0x00,0x02,0x00,0x01,0x40,0x00,0x00, 0x40,0x40,0x40,0x55,0x52,0x52,0xa5,0x34,0x00,0x40,0x00,0x00,0x04,0x00,0x00, 0x52,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x02,0x04,0x00,0x04,0x00, 0x20,0x00,0x00,0x00,0x00,0x40,0x04,0x08,0x04,0x11,0x0a,0x40,0x00,0x02,0xa9, 0x09,0x2a,0xa9,0x2a,0x12,0xab,0x5a,0x88,0xaa,0x92,0x45,0x12,0x4a,0x6a,0xb4, 0x00,0x80,0x00,0x00,0x09,0x52,0x29,0x48,0x84,0x01,0x00,0x00,0x00,0x00,0x00, 0x00,0x02,0x20,0x00,0x05,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x84,0x22,0x01,0x00,0x04,0x04,0x14,0x89,0x12,0x50,0x8a,0x80,0x00, 0x00,0x88,0x20,0x01,0x01,0x08,0x8a,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x80, 0x08,0x00,0x20,0x00,0x01,0x02,0x00,0x00,0x00,0x20,0x02,0x20,0x40,0x20,0x00, 0x25,0x00,0x08,0x09,0x20,0x02,0x2a,0xa2,0x91,0x41,0x5a,0xd4,0xa2,0x92,0x09, 0x24,0xaa,0x92,0x92,0x8a,0x44,0x12,0x22,0x02,0x84,0x40,0x84,0x42,0x40,0x20, 0x00,0x00,0x00,0x00,0x10,0x10,0x40,0x00,0x21,0x00,0x28,0x00,0x00,0x04,0x00, 0x00,0x00,0x00,0x00,0x00,0x02,0x05,0x20,0x80,0x00,0x02,0x10,0x10,0x8a,0x64, 0xc9,0x15,0x41,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x00,0x10,0x00,0x00,0x00, 0x00,0x00,0x00,0x0a,0x00,0x40,0x10,0x01,0x00,0x44,0x00,0x10,0x44,0x00,0x81, 0x00,0x00,0x01,0x09,0x49,0x12,0x48,0x81,0x04,0x48,0x88,0x95,0x50,0x54,0x14, 0xaa,0xa9,0x52,0x59,0x50,0x90,0x04,0x4a,0x54,0x12,0x00,0x00,0x00,0x40,0x29, 0x15,0x12,0x94,0x80,0x04,0x00,0x80,0x02,0x24,0x82,0x41,0x00,0x84,0x00,0x21, 0x50,0xd0,0x00,0x20,0x00,0x00,0x80,0x01,0x00,0x00,0x00,0x00,0x40,0x10,0x10, 0x08,0x00,0x80,0x2a,0x92,0x52,0xa8,0x28,0x81,0x09,0x10,0x00,0x00,0x00,0x40, 0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x08,0x00,0x00,0x04,0x10,0x00, 0x00,0x00,0x00,0x10,0x04,0x08,0x88,0x08,0x00,0x00,0x48,0x80,0x00,0x21,0x02, 0x00,0x42,0xaa,0x2a,0x91,0x2b,0x55,0x2a,0xa5,0x4a,0x45,0x52,0xa1,0x51,0x48, 0xa9,0x40,0x88,0x09,0x40,0x50,0x41,0x00,0x22,0x00,0x24,0x04,0x10,0x00,0x08, 0x04,0x00,0x00,0x04,0x00,0x56,0xa4,0x08,0x00,0x00,0x02,0x00,0x08,0x08,0x10, 0x00,0x08,0x02,0x08,0x00,0x80,0x00,0x00,0x15,0x55,0x48,0xca,0x94,0x08,0x00, 0x00,0x00,0x00,0x01,0x00,0x20,0xa1,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x20, 0x00,0x00,0x80,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x80,0x55,0x24, 0x92,0x10,0x20,0x04,0x48,0x02,0x29,0x54,0x8a,0x04,0x95,0xb5,0x4a,0x5b,0x51, 0x28,0x80,0x1a,0xa8,0x2a,0x40,0x08,0x00,0x00,0x15,0x0d,0x09,0x52,0x00,0x20, 0x80,0x00,0x80,0x00,0x00,0x10,0x08,0x29,0x00,0x11,0x0f,0x69,0x40,0x80,0x00, 0x00,0x00,0x20,0x00,0x00,0x00,0x02,0x00,0x22,0x00,0x00,0x00,0x01,0x05,0x6a, 0xaa,0x54,0x42,0x40,0x00,0x00,0x01,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00, 0x00,0x00,0x00,0x28,0x01,0x00,0x82,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x20, 0x00,0x00,0x02,0x00,0x02,0x00,0x42,0x00,0x40,0x20,0x29,0x2a,0xa9,0x25,0x52, 0x8a,0xad,0xaa,0xd6,0xaa,0xa5,0x2a,0xa4,0x55,0x45,0x00,0x01,0x01,0x02,0x40, 0xa0,0x41,0x00,0x80,0x00,0x00,0x10,0x00,0x00,0x41,0x04,0xa2,0x00,0x20,0x00, 0x55,0xe4,0x00,0x08,0x02,0x40,0x00,0x00,0x02,0x00,0x00,0x00,0x40,0x84,0x20, 0x20,0x04,0x44,0x10,0xa9,0x29,0x52,0xa8,0x00,0x10,0x00,0x10,0x00,0x08,0x20, 0x82,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x00,0x12,0x00,0x11,0x04,0x00, 0x02,0x04,0x10,0x80,0x04,0x84,0x42,0x10,0x04,0xa8,0xa9,0x00,0x09,0x09,0x01, 0x04,0xa9,0x54,0x94,0x89,0x25,0x6e,0xaa,0x55,0x29,0x48,0x40,0x92,0xa0,0x15, 0x52,0x20,0x20,0x20,0x2a,0x0a,0x10,0xa4,0x09,0x04,0x00,0x80,0x00,0x00,0x04, 0x52,0x08,0x50,0x80,0x42,0x13,0x68,0x44,0x00,0xa8,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x04,0x00,0x02,0x04,0x00,0x00,0x01,0x56,0xaa,0xa9,0x52,0x80,0x40, 0x20,0x80,0x08,0x00,0x00,0x21,0x51,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x08, 0x00,0x08,0x00,0x10,0x08,0x40,0x20,0x00,0x00,0x00,0x00,0x08,0x01,0x20,0x01, 0x00,0x51,0x00,0x02,0x00,0xb2,0xaa,0xba,0xa5,0x20,0x85,0xb5,0x6d,0x56,0xaa, 0x25,0x15,0x54,0x94,0x44,0x88,0x04,0x08,0x04,0x80,0x00,0x44,0x00,0x20,0x00, 0x02,0x00,0x02,0x10,0x00,0x8a,0xa1,0x04,0x00,0x00,0x4d,0xaa,0x10,0x01,0x00, 0x00,0x01,0x00,0x00,0x00,0x01,0x08,0x80,0x00,0x00,0x10,0x20,0x00,0x08,0xaa, 0xaa,0xea,0xa8,0x51,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x40,0x00,0x00, 0x00,0x00,0x00,0x02,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x80, 0x11,0x00,0x44,0x05,0x24,0x04,0x88,0x20,0x50,0x24,0x56,0xa4,0x55,0x54,0x94, 0x92,0xd5,0xb6,0xab,0x15,0x52,0xa4,0x55,0x50,0x12,0x40,0x90,0x81,0x00,0x2a, 0x02,0x00,0x51,0x00,0x00,0x88,0x02,0x10,0x01,0x20,0x5a,0x94,0x00,0x02,0x00, 0x12,0xa9,0x00,0x90,0x01,0x00,0x00,0x00,0x10,0x10,0x84,0x00,0x01,0x10,0x88, 0x00,0x00,0x00,0x40,0x2a,0xaa,0xa2,0x45,0x00,0x00,0x80,0x00,0x00,0x00,0x00, 0x21,0x0a,0x00,0x00,0x00,0x00,0x00,0x01,0x50,0x00,0x80,0x00,0x08,0x80,0x00, 0x00,0x00,0x00,0x00,0x12,0x40,0x00,0x10,0x10,0x08,0x90,0x24,0x04,0x04,0x01, 0x4a,0xa9,0x2d,0x56,0xa2,0x4a,0xbd,0x7a,0xaa,0xd4,0x89,0x23,0x52,0x49,0x09, 0x10,0x00,0x10,0x40,0x14,0x48,0x12,0x00,0x22,0x22,0x00,0x08,0x00,0x00,0x05, 0x2f,0x40,0x20,0x48,0x10,0x0a,0xa5,0x10,0x02,0xa8,0x00,0x24,0x00,0x00,0x40, 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x89,0x55,0x6b,0x59,0xb2,0xa0,0x00, 0x00,0x00,0x00,0x40,0x04,0x44,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x14, 0x04,0x20,0x80,0x00,0x20,0x08,0x00,0x08,0x80,0x00,0x04,0x40,0x00,0x82,0x42, 0x02,0x8a,0x48,0x90,0x82,0x2a,0xb5,0x55,0x29,0x54,0xa5,0x66,0xde,0xad,0x25, 0x55,0x54,0xaa,0x28,0x50,0xa5,0x52,0x42,0x00,0x48,0x00,0x80,0x48,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xb5,0xb5,0x00,0x00,0x00,0x92,0x12,0x42,0x40,0x00, 0x81,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0x00,0x40,0x00,0x08,0x40,0x15, 0x56,0xa5,0x48,0x02,0x00,0x02,0x02,0x00,0x00,0x10,0x00,0x04,0x80,0x00,0x00, 0x00,0x00,0x00,0xa0,0x28,0x10,0x02,0x00,0x00,0x01,0x00,0x80,0x80,0x04,0x80, 0x20,0x04,0x84,0x04,0x00,0xa0,0x24,0x02,0x00,0x11,0x05,0x6a,0x26,0xd5,0x09, 0x49,0x5a,0xf6,0xaa,0xaa,0x45,0x2a,0xa9,0x55,0x0a,0x10,0x00,0x00,0x12,0x00, 0x00,0x00,0x01,0x00,0x00,0x10,0x40,0x40,0x84,0x12,0x5a,0xc8,0x80,0x00,0x00, 0x09,0x44,0x48,0x09,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x01, 0x01,0x00,0x01,0x12,0x8b,0x5b,0x55,0x55,0x50,0x04,0x00,0x00,0x10,0x00,0x00, 0x92,0x40,0x20,0x00,0x00,0x00,0x00,0x02,0x08,0x20,0x40,0x00,0x09,0x01,0x00, 0x00,0x10,0x00,0x00,0x02,0x41,0x00,0x20,0x50,0x92,0x09,0x09,0x00,0x20,0x04, 0x52,0xad,0x55,0x55,0x65,0x54,0xaa,0xad,0x55,0x55,0x52,0x11,0x55,0x08,0x50, 0x82,0x92,0x08,0x40,0x01,0x04,0x02,0x54,0x12,0x04,0x41,0x00,0x00,0x00,0x00, 0x55,0x52,0x00,0x01,0x00,0x20,0x92,0x20,0x00,0x10,0x00,0x10,0x00,0x02,0x00, 0x00,0x01,0x00,0x00,0x24,0x00,0x00,0x00,0x40,0x25,0x55,0xa9,0x54,0x00,0x20, 0x00,0x00,0x00,0x00,0x80,0x00,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x12, 0x00,0x80,0x20,0x10,0x00,0x08,0x00,0x04,0x10,0x08,0x48,0x10,0x82,0x02,0x00, 0x40,0x54,0xa4,0x04,0x91,0x02,0x95,0x2d,0xb6,0x92,0xaa,0xd5,0x5a,0xaa,0xaa, 0x95,0x4a,0xaa,0x52,0x8a,0x50,0x00,0x81,0x00,0x20,0x21,0x48,0x00,0x00,0x40, 0x00,0x00,0x00,0x00,0x00,0x55,0x54,0x00,0x00,0x00,0x85,0x28,0x01,0x10,0x40, 0x00,0x0a,0x41,0x08,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x15,0x05,0x09, 0x7b,0x6a,0xa9,0x24,0x00,0x00,0x10,0x00,0x00,0x00,0x10,0x80,0x80,0x00,0x00, 0x00,0x00,0x02,0x24,0x28,0x02,0x08,0x00,0x00,0x00,0x20,0x02,0x20,0x40,0x00, 0x22,0x02,0x08,0x20,0x4a,0x15,0x12,0x80,0x00,0x00,0x52,0x55,0x5a,0xd5,0x54, 0xa5,0x54,0x3e,0x96,0xd2,0xa4,0x52,0x49,0x24,0x21,0x05,0x48,0x20,0x01,0x00, 0x00,0x00,0x84,0x80,0x01,0x00,0x24,0x04,0x10,0x84,0x2a,0x51,0x11,0x00,0x08, 0x00,0x02,0x90,0x01,0x02,0x00,0x44,0x00,0x00,0x00,0x40,0x00,0x00,0x22,0x00, 0x00,0x00,0x40,0x10,0x90,0xad,0xaa,0xd2,0x40,0x00,0x10,0x00,0x00,0x00,0x00, 0x00,0x24,0x20,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x08,0x01,0x00,0x00,0x08, 0x80,0x08,0x00,0x00,0x40,0x80,0x40,0x20,0x05,0x01,0x40,0xa4,0x08,0xa0,0x02, 0x09,0x28,0xae,0xfa,0xd5,0x52,0x55,0xa2,0xd5,0x55,0x52,0x8a,0xaa,0x90,0x94, 0xa0,0x02,0x04,0x08,0x00,0x00,0x00,0x10,0x11,0x10,0x12,0x00,0x10,0x00,0x00, 0x09,0x08,0x40,0x00,0x40,0x00,0x08,0x00,0x40,0x10,0x00,0x00,0x00,0x00,0x04, 0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x01,0x44,0x25,0x16,0xd5,0x55,0x10,0x00, 0x00,0x00,0x00,0x00,0x00,0x48,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x20,0x20, 0x20,0x00,0x00,0x42,0x20,0x00,0x80,0x00,0x01,0x04,0x00,0x00,0x00,0x80,0xa4, 0x0a,0x4a,0x22,0x02,0x20,0x44,0x95,0x2b,0x56,0xaa,0xa9,0x4a,0xdd,0x6e,0xaa, 0x88,0x55,0x21,0x52,0x48,0x14,0xa0,0x80,0x20,0x02,0x00,0x00,0x01,0x00,0x00, 0x40,0x00,0x00,0x40,0x00,0x12,0x52,0x00,0x04,0x02,0x48,0x22,0x4a,0x04,0x00, 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x08,0x04,0x04,0x21,0x00, 0x4b,0x6b,0x6a,0x81,0x00,0x00,0x80,0x00,0x80,0x00,0x01,0x24,0x10,0x00,0x00, 0x00,0x00,0x01,0x48,0x91,0x00,0x10,0x08,0x00,0x00,0x00,0x00,0x92,0x04,0x00, 0x09,0x09,0x00,0x12,0x11,0x40,0xa1,0x10,0x08,0x08,0x12,0x55,0x55,0x7b,0x52, 0xd4,0xaf,0xb7,0x55,0x5b,0x55,0x48,0x8a,0xa9,0x52,0x80,0x08,0x20,0x80,0x20, 0x00,0x02,0x02,0x00,0x84,0x00,0x00,0x40,0x00,0x00,0x80,0x01,0x24,0x00,0x08, 0x00,0x80,0x00,0x20,0x00,0x04,0x08,0x08,0x00,0x00,0x00,0x40,0x00,0x08,0x80, 0x00,0x40,0x01,0x08,0x92,0x23,0xb5,0xbd,0x44,0x01,0x00,0x00,0x20,0x04,0x00, 0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x0a,0x20,0x40,0x00,0x40,0x20,0x00,0x00, 0x00,0x12,0x00,0x40,0x01,0x00,0x20,0x24,0x40,0xa4,0x2a,0x15,0x44,0x20,0x01, 0x4a,0xaa,0x2b,0x5d,0x56,0xa9,0x25,0xad,0xf5,0x55,0x45,0x25,0x24,0x54,0x84, 0x22,0x45,0x04,0x00,0x80,0x02,0x20,0x20,0x44,0x00,0x00,0x82,0x00,0x00,0x82, 0x04,0x94,0x00,0x00,0x80,0x00,0x00,0x91,0x00,0x50,0x00,0x00,0x00,0x00,0x00, 0x01,0x00,0x00,0x00,0x04,0x40,0x00,0x02,0x22,0x08,0x89,0x6d,0x6a,0xa0,0x08, 0x04,0x00,0x80,0x00,0x00,0x01,0x12,0x20,0x00,0x00,0x00,0x00,0x04,0x81,0x04, 0x00,0x00,0x80,0x88,0x00,0x02,0x00,0x00,0x00,0x08,0x00,0x00,0x80,0x02,0xa9, 0x04,0xaa,0x20,0x00,0x44,0x14,0xad,0x5b,0x6f,0xaa,0xa4,0x9e,0xda,0xae,0xad, 0x54,0x92,0x55,0x52,0x21,0x08,0x10,0x00,0x02,0x00,0x08,0x00,0x01,0x00,0x10, 0x02,0x08,0x00,0x00,0x00,0x00,0x00,0x90,0x12,0x05,0x02,0x04,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xa2, 0x25,0xbf,0xde,0x88,0x00,0x00,0x00,0x00,0x00,0x02,0x08,0x00,0x00,0x00,0x00, 0x00,0x00,0x12,0x48,0x20,0x49,0x00,0x00,0x00,0x41,0x10,0x00,0x24,0x10,0x00, 0x28,0x08,0x01,0x08,0x52,0xa9,0x08,0x91,0x01,0x10,0x25,0x2a,0x25,0xba,0xb5, 0x55,0x55,0xb7,0xb2,0x95,0x4a,0xa9,0x15,0x55,0x54,0x41,0x00,0x40,0x00,0x04, 0x00,0x00,0x08,0x00,0x40,0x88,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x20, 0x40,0x02,0x02,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x00, 0x00,0x00,0x08,0x80,0x08,0x8a,0xef,0x6a,0xa2,0x20,0x00,0x00,0x00,0x00,0x00, 0x00,0x2a,0x50,0x00,0x00,0x00,0x00,0x05,0x10,0x82,0x00,0x02,0x02,0x00,0x00, 0x00,0x44,0x00,0x40,0x88,0x80,0x02,0x24,0x21,0x55,0x20,0xaa,0x48,0x10,0x00, 0x08,0xa9,0x56,0xdd,0x56,0xd2,0xae,0xdf,0x6a,0x55,0x52,0x54,0xaa,0xa4,0x09, 0x10,0x45,0x08,0x90,0x00,0x00,0x01,0x20,0x01,0x00,0x00,0x00,0x00,0x08,0x10, 0x00,0x80,0x88,0x00,0x85,0x10,0x01,0x21,0x08,0x00,0x00,0x00,0x00,0x08,0x22, 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x2a,0x92,0x20,0xbf,0xba,0xa8,0x00, 0x10,0x04,0x00,0x00,0x00,0x12,0x80,0x00,0x00,0x00,0x00,0x00,0x10,0x42,0x08, 0x20,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x80,0x00,0x00,0x49, 0x95,0x15,0x22,0x00,0x01,0x02,0xb6,0xaa,0xad,0x52,0x95,0x55,0xb5,0xf5,0x52, 0x14,0x95,0x04,0x92,0xa0,0x04,0x00,0x20,0x00,0x20,0x00,0x00,0x01,0x10,0x00, 0x00,0x00,0x00,0x80,0x40,0x08,0x12,0x00,0x42,0x00,0x84,0xa4,0x00,0x00,0x00, 0x00,0x08,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x40, 0x95,0x5b,0xda,0x12,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x0a,0x40,0x00,0x00, 0x00,0x00,0x05,0x28,0x20,0x88,0x00,0x48,0x10,0x04,0x20,0x01,0x01,0x00,0x00, 0x00,0x01,0x20,0x0a,0x54,0x80,0xa8,0x88,0x44,0x00,0x29,0x5a,0x95,0xb5,0x55, 0x55,0x5e,0xff,0xda,0x8a,0xa2,0x48,0xaa,0x50,0x15,0x41,0x20,0x00,0x00,0x80, 0x40,0x00,0x00,0x00,0x02,0x00,0x00,0x42,0x00,0x00,0x20,0x00,0x20,0x00,0x42, 0x20,0x48,0x04,0x00,0x00,0x10,0x40,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x10, 0x00,0x00,0x40,0x49,0x0a,0x20,0x5f,0x75,0x49,0x01,0x00,0x00,0x00,0x40,0x00, 0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x81,0x00,0x21,0x20,0x00,0x40,0x00, 0x00,0x04,0x10,0x00,0x22,0x02,0x10,0x01,0x20,0xa9,0x56,0x05,0x20,0x00,0x48, 0x80,0xbd,0x6a,0xda,0xaa,0xaa,0xbb,0xdf,0xfa,0xa9,0x15,0x26,0x49,0x55,0x40, 0x24,0x09,0x09,0x02,0x00,0x00,0x00,0x08,0x40,0x08,0x20,0x22,0x00,0x00,0x01, 0x01,0x00,0x02,0x08,0x08,0x02,0xa1,0x40,0x40,0x00,0x40,0x00,0x00,0x80,0x00, 0x00,0x00,0x00,0x00,0x00,0x02,0x21,0x00,0x00,0x40,0x8a,0x4d,0xaa,0x2a,0x10, 0x00,0x00,0x01,0x00,0x08,0x01,0x12,0x42,0x00,0x00,0x00,0x00,0x09,0x54,0x04, 0x20,0x00,0x00,0x00,0x00,0x41,0x10,0x00,0x10,0x80,0x08,0x00,0x84,0x00,0x52, 0x91,0x68,0x44,0x01,0x00,0x15,0x4b,0x55,0x55,0x55,0x6a,0xdf,0x7f,0xee,0x94, 0xaa,0xa9,0x54,0x94,0x14,0x80,0x00,0x20,0x10,0x01,0x00,0x04,0x80,0x00,0x20, 0x02,0x00,0x00,0x00,0x00,0x00,0x28,0x00,0x00,0x81,0x28,0x88,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x80,0x40,0x00,0x00,0x00,0x25,0x0a, 0x21,0x27,0x6a,0x08,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0x00,0x00, 0x00,0x00,0x20,0x90,0xa1,0x00,0x00,0x02,0x00,0x10,0x00,0x00,0x00,0x00,0x00, 0x20,0x02,0x20,0x05,0x54,0x4c,0x95,0x20,0x90,0x05,0x40,0xbd,0x5a,0xaa,0x92, 0xab,0xff,0xef,0xbb,0x4a,0x45,0x45,0x42,0x55,0x40,0x09,0x24,0x82,0x00,0x00, 0x00,0x10,0x22,0x44,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x88,0x22,0x24, 0x04,0x52,0x00,0x81,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x40,0x00,0x00,0x80,0x20,0x88,0x8c,0xb5,0x4c,0x80,0x01,0x00,0x00,0x00,0x00, 0x24,0x05,0x10,0x00,0x00,0x00,0x00,0x0a,0xa0,0x08,0x44,0x02,0x48,0x04,0x41, 0x00,0x00,0x02,0x42,0x00,0x80,0x20,0x11,0x21,0x55,0x51,0x24,0x02,0x00,0x51, 0x0a,0x05,0x56,0xa5,0x6d,0x5d,0x77,0xfb,0xfe,0xa9,0x5a,0xa9,0x2a,0xaa,0xaa, 0xa0,0x00,0x08,0x00,0x08,0x00,0x80,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x02,0x00,0x00,0x01,0x50,0x00,0x00,0x04,0x02,0x00,0x00,0x00,0x00,0x00, 0x40,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x94,0x22,0x27,0x6a,0x02,0x00, 0x08,0x00,0x00,0x00,0x00,0x00,0x22,0x02,0x00,0x00,0x00,0x00,0x45,0x41,0x40, 0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x20,0x00,0x04,0x00,0x00,0x24,0x04,0xb4, 0xa4,0x95,0x50,0x05,0x05,0xa1,0x75,0x4a,0xaa,0xaa,0xb7,0xdf,0x6f,0x7b,0x52, 0xa4,0x94,0x95,0x12,0x42,0x09,0x52,0x20,0x49,0x00,0x00,0x00,0x80,0x00,0x00, 0x40,0x00,0x88,0x00,0x04,0x40,0x00,0x00,0x80,0x10,0x09,0x02,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x44,0x00,0x80,0x00,0x02,0x00,0x00,0x00,0x01,0x14,0x11, 0x08,0x4b,0xb5,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x40,0x00,0x00, 0x00,0x00,0x11,0x84,0x92,0x10,0x80,0x00,0x20,0x00,0x10,0x10,0x80,0x08,0x00, 0x00,0x02,0x01,0x42,0xd5,0x52,0xa2,0x88,0x90,0x13,0x44,0x8a,0x5a,0xd2,0xb5, 0xad,0x7f,0xff,0xee,0xaa,0x92,0x4a,0x48,0xa9,0x28,0xa2,0x00,0x80,0x00,0x00, 0x00,0x00,0x01,0x20,0x02,0x00,0x42,0x00,0x00,0x20,0x08,0x10,0x00,0x02,0x05, 0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x40,0x4c,0x41,0x14,0xaa,0x02,0x08,0x00,0x00,0x00,0x00,0x00, 0x00,0x0a,0x08,0x00,0x00,0x00,0x00,0x44,0x42,0x40,0x80,0x00,0x00,0x80,0x02, 0x00,0x40,0x00,0x00,0x10,0x00,0x88,0x48,0x12,0xba,0xad,0x15,0x51,0x00,0x45, 0x4a,0x25,0x55,0x55,0xde,0xf7,0xff,0xdf,0xff,0xd2,0x89,0x22,0xa5,0x04,0x44, 0x10,0x88,0x00,0x00,0x00,0x08,0x00,0x24,0x01,0x10,0x02,0x00,0x00,0x08,0x00, 0x00,0x40,0x00,0x10,0x40,0x0a,0x80,0x10,0x00,0x00,0x00,0x00,0x08,0x00,0x00, 0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x11,0x12,0x43,0x55,0x48,0x80, 0x40,0x00,0x20,0x00,0x00,0x00,0xa0,0x80,0x80,0x00,0x00,0x00,0x13,0x49,0x12, 0x00,0x01,0x08,0x02,0x08,0x00,0x00,0x02,0x20,0x40,0x08,0x00,0x02,0xa5,0x6a, 0xd4,0xa4,0x80,0x04,0x01,0x21,0x2a,0xab,0x4a,0x65,0x5f,0xfd,0xfb,0xbf,0x54, 0xa4,0x19,0x52,0x52,0x89,0x44,0x20,0x04,0x90,0x40,0x40,0x08,0x80,0x84,0x00, 0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x05,0x25,0x00,0x00,0x00,0x00, 0x00,0x04,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x50,0x04, 0x40,0x09,0xaa,0x82,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x04,0x02,0x00,0x00, 0x00,0x00,0x49,0x04,0x82,0x84,0x44,0x20,0x00,0x20,0x40,0x01,0x00,0x01,0x00, 0x80,0x20,0x40,0x12,0xb5,0x75,0x0a,0x48,0x91,0x14,0x40,0x91,0x0a,0xab,0xb7, 0x7f,0x6f,0xff,0xfd,0xc2,0x12,0xa5,0x49,0x29,0x22,0x21,0x02,0x40,0x01,0x00, 0x00,0x80,0x08,0x20,0x40,0x80,0x00,0x00,0x00,0x00,0x04,0x00,0x08,0x80,0x80, 0x90,0x40,0x00,0x40,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x04,0x00,0x00,0x0a,0x48,0x14,0xa5,0x55,0x20,0x00,0x00,0x08,0x01,0x00,0x00, 0x00,0x11,0x20,0x00,0x00,0x00,0x00,0x05,0x51,0x21,0x40,0x00,0x00,0x00,0x00, 0x01,0x00,0x08,0x00,0x00,0x00,0x84,0x09,0xa9,0x5a,0x54,0x55,0x00,0x0c,0x01, 0x02,0x04,0xaa,0xd5,0x55,0xaf,0xff,0xff,0xff,0x6a,0xd5,0x04,0xaa,0x45,0x49, 0x14,0x40,0x00,0x00,0x04,0x00,0x02,0x01,0x08,0x12,0x00,0x00,0x00,0x40,0x00, 0x20,0x00,0x20,0x10,0x42,0x45,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x00,0x20,0x00,0x01,0x00,0x00,0x00,0x20,0x01,0x40,0x15,0x6a,0x82,0x20, 0x00,0x00,0x00,0x00,0x80,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x52,0x8a,0x0a, 0x00,0x00,0x00,0x48,0x80,0x04,0x08,0x00,0x80,0x00,0x08,0x01,0x20,0x45,0x55, 0x51,0x24,0xa2,0x54,0x48,0x48,0x22,0x15,0x5a,0xaa,0xfb,0xff,0x76,0xb5,0xaa, 0x29,0x52,0xa4,0x92,0x04,0xa0,0x08,0x08,0x84,0x00,0x04,0x08,0x24,0x22,0x80, 0x00,0x00,0x10,0x00,0x00,0x80,0x00,0x00,0x02,0x10,0x80,0x10,0x00,0x00,0x00, 0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x48, 0x0d,0x52,0xd4,0x60,0x01,0x00,0x00,0x00,0x02,0x02,0x00,0x25,0x09,0x00,0x00, 0x00,0x00,0x25,0x50,0xa4,0x82,0x00,0x01,0x00,0x00,0x80,0x00,0x20,0x08,0x02, 0x20,0x20,0x89,0x29,0x54,0xad,0x5a,0x00,0x02,0x02,0x02,0x89,0x4a,0xaa,0xab, 0x57,0x6f,0xff,0xff,0xda,0xa5,0x25,0x52,0xa9,0x52,0x89,0x20,0x80,0x00,0x00, 0x40,0x80,0x00,0x90,0x54,0xa0,0x04,0x80,0x00,0x00,0x00,0x00,0x04,0x80,0x40, 0xb5,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00, 0x00,0x00,0x08,0x09,0x05,0x42,0x01,0x52,0xa4,0x80,0x00,0x00,0x00,0x00,0x00, 0x04,0x00,0x20,0x00,0x00,0x00,0x01,0x0a,0x8a,0x48,0x20,0x11,0x04,0x00,0x08, 0x10,0x00,0x80,0x00,0x08,0x00,0x84,0x24,0xaa,0x55,0x5a,0xad,0x94,0x88,0x28, 0x42,0x00,0x29,0x54,0xb6,0xdd,0xff,0xdd,0x55,0x55,0x54,0x88,0xaa,0xa4,0x08, 0x20,0x00,0x00,0x00,0x02,0x08,0x25,0x22,0x0d,0x01,0x08,0x00,0x00,0x00,0x00, 0x00,0x00,0x40,0x11,0x02,0x50,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x08,0x00,0x00,0x04,0x10,0x00,0x01,0x00,0x00,0x24,0x28,0xa8,0xea,0x50,0x00, 0x08,0x40,0x00,0x00,0x00,0x00,0x94,0x80,0x00,0x00,0x00,0x00,0x45,0x68,0x92, 0x80,0x00,0x20,0x02,0x20,0x80,0x20,0x02,0x01,0x20,0x00,0x00,0x8a,0x54,0xaa, 0xb5,0xa5,0x00,0x21,0x01,0x11,0x26,0xa4,0xaa,0xd7,0x76,0xfd,0xff,0xee,0xaa, 0xa5,0x52,0x4a,0xaa,0xa2,0x85,0x02,0x04,0x48,0x48,0x80,0x90,0x41,0x52,0xa8, 0x42,0x40,0x00,0x00,0x10,0x00,0x84,0x02,0x40,0x20,0xaa,0x20,0x00,0x00,0x80, 0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x41, 0x00,0x02,0xaa,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00, 0x00,0x00,0x2a,0x8b,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x02,0x00,0x44,0x00, 0x00,0x00,0x00,0xa5,0x5f,0x56,0x6a,0x92,0x00,0x20,0x85,0x51,0x12,0xb5,0x5a, 0x95,0xaf,0x7d,0xaa,0xa5,0x5a,0x24,0xaa,0x50,0x00,0x10,0x20,0x10,0x02,0x00, 0x22,0x02,0x14,0x04,0x25,0x10,0x00,0x01,0x00,0x00,0x00,0x00,0x11,0x04,0x94, 0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x40,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x08,0x14,0x52,0x92,0xd5,0x55,0x10,0x00,0x00,0x00,0x00,0x00, 0x00,0x40,0x40,0x40,0x00,0x00,0x01,0x05,0x64,0xaa,0x12,0x04,0x00,0x10,0x00, 0x04,0x00,0x10,0x00,0x00,0x02,0x22,0x24,0xb5,0x75,0xaa,0xaa,0x00,0x84,0x85, 0x54,0x8a,0xaa,0xab,0xab,0x6b,0x5b,0xdf,0xc5,0x54,0xa5,0xa9,0x12,0x95,0x54, 0x82,0x04,0x40,0x48,0x00,0x04,0x28,0x49,0x52,0x88,0x42,0x04,0x40,0x00,0x00, 0x08,0x00,0x04,0x40,0x12,0x91,0x02,0x00,0x00,0x00,0x10,0x80,0x00,0x00,0x00, 0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x44,0x08,0x75,0x54,0x00, 0x00,0x00,0x00,0x00,0x00,0x10,0x15,0x08,0x00,0x00,0x00,0x00,0xaa,0x95,0x11, 0x00,0x00,0x88,0x42,0x22,0x20,0x88,0x00,0x00,0x00,0x10,0x00,0x02,0x4a,0xbe, 0xb5,0x55,0x54,0x20,0x10,0x22,0x00,0x09,0x54,0xaa,0xab,0xbe,0xf7,0xd2,0x12, 0x88,0x44,0xa4,0xaa,0x00,0x20,0x90,0x01,0x00,0x40,0x20,0x89,0x24,0x8a,0x42, 0x08,0x00,0x00,0x00,0x80,0x00,0x10,0x80,0x14,0x89,0x44,0x50,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x24, 0x40,0x42,0xaa,0xa9,0x01,0x00,0x00,0x10,0x08,0x00,0x00,0x00,0x20,0x80,0x00, 0x00,0x00,0x82,0xaa,0xc4,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00, 0x40,0x88,0x11,0x34,0xed,0xaa,0xad,0x01,0x09,0x02,0x10,0x25,0x56,0x8b,0x6a, 0x55,0x53,0x5a,0xa8,0xa9,0x52,0xaa,0x88,0x85,0x52,0x84,0x00,0x00,0x12,0x04, 0x8a,0x22,0x52,0x2a,0x94,0xa0,0x80,0x04,0x04,0x00,0x40,0x42,0x05,0x00,0x24, 0x88,0x80,0x80,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00, 0x08,0x20,0x00,0x01,0x10,0x12,0x28,0xf5,0x32,0x00,0x01,0x02,0x00,0x20,0x00, 0x80,0x92,0x80,0x00,0x00,0x00,0x01,0x2a,0xd5,0x28,0x14,0x22,0x01,0x08,0x80, 0x92,0x00,0x88,0x10,0x11,0x00,0x00,0x84,0xca,0xdf,0x55,0x74,0xaa,0x50,0x48, 0x84,0x80,0x08,0x24,0xa9,0x55,0x55,0xff,0xa4,0x0a,0x24,0x91,0x22,0x52,0x84, 0x10,0x41,0x08,0x40,0x10,0x0a,0x91,0x75,0x44,0x50,0x08,0x20,0x00,0x40,0x00, 0x02,0x00,0x00,0xa4,0x92,0x00,0x04,0x02,0x00,0x04,0x00,0x02,0x00,0x00,0x40, 0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x02,0x40,0x82,0xad,0xb1,0x48, 0x04,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x95,0x52,0x55, 0x42,0x00,0x10,0x02,0x00,0x00,0x10,0x00,0x00,0x40,0x02,0x02,0x22,0x35,0x75, 0xbd,0x56,0x84,0x80,0x00,0x20,0x05,0x52,0x92,0xaa,0x95,0x56,0x94,0xaa,0xa4, 0x92,0x04,0x08,0x29,0x51,0x22,0x00,0x00,0x25,0x42,0x25,0x24,0x52,0x2a,0x8a, 0xa2,0x01,0x10,0x00,0x01,0x00,0x00,0x04,0x00,0x04,0x00,0x90,0x20,0x01,0x00, 0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x40, 0x08,0x15,0x75,0x54,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0x02,0x40,0x00, 0x00,0x02,0x4a,0xa9,0x28,0x08,0x00,0x40,0x90,0x08,0x00,0x40,0x00,0x01,0x00, 0x00,0x51,0x15,0xaa,0xad,0x56,0xb4,0x32,0x24,0x00,0x88,0x20,0x01,0x55,0x54, 0x52,0xa9,0x4a,0x92,0x15,0x48,0xa0,0x82,0x84,0x20,0x80,0x08,0x02,0x10,0x08, 0x96,0x92,0xa4,0x85,0x28,0x00,0x90,0x00,0x00,0x00,0x08,0x08,0x02,0xaa,0xa8, 0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x80,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x09,0x22,0x41,0x2a,0x5a,0x00,0x00,0x00,0x00,0x00,0x04, 0x80,0x00,0x40,0x00,0x00,0x00,0x01,0x55,0x4a,0xd1,0x20,0x80,0x02,0x28,0x21, 0x22,0x02,0x42,0x44,0x00,0x04,0x04,0x89,0x55,0x36,0xeb,0xaa,0x88,0x01,0x24, 0x20,0x82,0x2a,0x0a,0x49,0x48,0x4a,0xa4,0x49,0x52,0x12,0x08,0x20,0xaa,0x8a, 0x10,0x40,0x20,0x42,0x24,0x41,0x44,0x89,0x54,0x55,0x4a,0x00,0x02,0x10,0x10, 0x00,0x20,0x81,0x40,0x00,0x00,0xa1,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x55,0x54,0xa0, 0x00,0x00,0x00,0x00,0x00,0x08,0x51,0x10,0x00,0x00,0x00,0x01,0x47,0x55,0x24, 0x08,0x04,0x01,0x44,0x80,0x00,0x08,0x08,0x00,0x02,0x11,0x41,0x25,0x55,0x5b, 0x5e,0xd5,0x50,0x88,0x00,0x00,0x10,0x00,0xa5,0x35,0x52,0xaa,0x12,0x24,0x49, 0x41,0x21,0x0a,0x51,0x20,0xa2,0x00,0x01,0x04,0x01,0x15,0x29,0x24,0x25,0x58, 0x10,0x89,0x28,0x40,0x00,0x00,0x82,0x14,0x94,0xb4,0x82,0x10,0x00,0x00,0x00, 0x08,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00, 0x15,0x24,0x2a,0xaa,0x04,0x40,0x00,0x00,0x80,0x00,0x20,0x04,0x00,0x80,0x00, 0x00,0x04,0x51,0x2a,0x80,0x40,0x00,0x08,0xa0,0x00,0x00,0x80,0x00,0x00,0x08, 0x40,0x28,0x12,0xaa,0xad,0x7d,0xaa,0x24,0x00,0x89,0x02,0x89,0x54,0xa9,0x55, 0x40,0x48,0xa5,0x49,0x24,0x94,0x40,0x00,0x84,0x94,0x00,0x00,0x84,0x00,0x90, 0x42,0x90,0x91,0x12,0xaa,0x82,0x20,0x00,0x00,0x82,0x08,0x00,0xa2,0x41,0x08, 0x08,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x04,0x00,0x02, 0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x95,0x29,0x50,0x00,0x02,0x02,0x00,0x00, 0x82,0x10,0x80,0x00,0x00,0x00,0x01,0xda,0xad,0x4a,0x00,0x20,0x82,0x48,0x04, 0x24,0x10,0x20,0x80,0x00,0x00,0x82,0xa4,0xaa,0xab,0x5f,0x74,0xaa,0x49,0x00, 0x22,0x50,0x0a,0x55,0xea,0xaa,0xa5,0x10,0x22,0x15,0x42,0x14,0x82,0x10,0x00, 0x48,0x10,0x00,0x00,0x02,0x14,0x4a,0x24,0xa9,0x54,0x48,0x80,0x04,0x02,0x00, 0x20,0x00,0x29,0x28,0x51,0x00,0x40,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x04,0x82,0x2a,0x94,0x80, 0x00,0x00,0x08,0x00,0x00,0x00,0x42,0x24,0x20,0x00,0x00,0x04,0xaa,0xb2,0x90, 0x44,0x00,0x09,0x01,0x08,0x80,0x40,0x82,0x10,0x82,0x04,0x20,0x0a,0xaa,0xbd, 0xea,0xd2,0x91,0x00,0x2a,0x02,0xaa,0x42,0xa6,0xb5,0x52,0x54,0xa6,0x88,0xa2, 0x28,0x80,0x28,0x49,0x56,0x02,0x42,0x00,0x08,0x20,0x92,0xa9,0x09,0x14,0xfa, 0x24,0x09,0x22,0x88,0x08,0x00,0x08,0x85,0x45,0x24,0x40,0x08,0x40,0x00,0x00, 0x00,0x00,0x04,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x00, 0x90,0x20,0x8a,0x4a,0x51,0x00,0x00,0x00,0x00,0x00,0x90,0x00,0x80,0x00,0x00, 0x00,0x02,0xea,0xca,0x48,0x11,0x02,0x05,0x00,0x00,0x00,0x00,0x00,0x02,0x08, 0x40,0x08,0x40,0xaa,0x95,0x5d,0x59,0x48,0x50,0x89,0x25,0x61,0x2d,0x5a,0xda, 0x95,0x52,0x11,0x40,0x94,0x82,0x09,0x02,0xa0,0x29,0x20,0x00,0x00,0x21,0x09, 0x29,0x52,0x52,0xaa,0x95,0x51,0x20,0x48,0x00,0x00,0x81,0x00,0x2a,0x90,0x48, 0x14,0x41,0x00,0x00,0x00,0x80,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00, 0x04,0x00,0x00,0x00,0x00,0x02,0x08,0x25,0x2a,0x80,0x22,0x10,0x00,0x00,0x10, 0x04,0x0a,0x20,0x00,0x00,0x00,0x09,0x29,0x52,0x94,0x88,0x00,0x00,0x24,0x10, 0x04,0x00,0x00,0x00,0x00,0x01,0x21,0x12,0x55,0x56,0xe7,0x40,0x55,0x55,0x54, 0x81,0xd4,0x54,0x4b,0x6a,0x52,0x89,0x4a,0x24,0x42,0x28,0xa0,0x48,0x12,0x80, 0x04,0x00,0x10,0x80,0x02,0x04,0xa4,0x80,0x49,0x6c,0xa4,0x04,0x11,0x20,0x90, 0x00,0x11,0x09,0x22,0x02,0x81,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x10,0x8d,0x49, 0x00,0x00,0x00,0x00,0x00,0x40,0x81,0x11,0x10,0x00,0x00,0x02,0xea,0x94,0x50, 0x00,0x10,0x20,0x80,0x44,0x10,0x44,0x48,0x80,0x00,0x10,0x00,0x04,0xaa,0xab, 0x34,0xb2,0x02,0xa2,0x6a,0x92,0xd2,0x8a,0xb5,0x55,0x4a,0xb4,0xa0,0x81,0x11, 0x00,0x04,0x05,0x44,0x08,0x80,0x04,0x80,0x00,0x50,0x56,0x92,0x55,0x25,0xd5, 0x52,0x91,0x04,0x04,0x00,0x08,0x00,0x25,0x48,0xa8,0x28,0x00,0x00,0x00,0x08, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x08,0x00,0x00,0x00, 0x00,0x20,0x85,0x65,0x40,0x00,0x00,0x00,0x00,0x00,0x12,0x12,0x44,0x00,0x00, 0x00,0x09,0x55,0x55,0x51,0x12,0x00,0x02,0x00,0x00,0x80,0x00,0x00,0x10,0x20, 0x80,0x00,0x41,0x25,0x55,0xaa,0x89,0x50,0x11,0x25,0x4a,0xac,0x25,0x55,0x6a, 0x29,0x55,0x14,0x28,0x88,0x52,0xa9,0x50,0x10,0x92,0x00,0x40,0x00,0x00,0x04, 0x8a,0xb5,0x92,0x54,0x7a,0x88,0x40,0x50,0x90,0x82,0x40,0x40,0x14,0x24,0x49, 0x02,0x10,0x00,0x42,0x00,0x00,0x00,0x20,0x00,0x00,0x02,0x08,0x00,0x00,0x00, 0x00,0x00,0x04,0x00,0x00,0x02,0x04,0x22,0x15,0x28,0x20,0x00,0x00,0x00,0x80, 0x40,0x00,0x10,0x00,0x00,0x00,0x04,0xb5,0x50,0xa8,0x00,0x01,0x08,0x09,0x00, 0x00,0x80,0x00,0x02,0x02,0x01,0x12,0x14,0xa9,0x55,0x6d,0x60,0x0a,0x88,0x92, 0x6a,0xb2,0x94,0xaa,0x95,0x4b,0x52,0xa2,0x8a,0x52,0x00,0x02,0x05,0x42,0x00, 0x01,0x00,0x02,0x01,0x11,0x2a,0xda,0xa9,0x15,0x94,0x52,0x95,0x12,0x00,0x10, 0x00,0x04,0x85,0x89,0x04,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02, 0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x89,0x48,0x82, 0x80,0x00,0x20,0x00,0x00,0x24,0x4a,0x80,0x00,0x00,0x00,0x05,0x56,0xaa,0xa9, 0x24,0x40,0x00,0x00,0x08,0x02,0x09,0x00,0x80,0x00,0x04,0x00,0x00,0x45,0x56, 0xb6,0x94,0x80,0x24,0x44,0xa5,0x48,0x42,0xa5,0x50,0x24,0xa8,0x94,0x24,0x00, 0x80,0x10,0xa4,0x08,0x48,0x08,0x00,0x00,0x04,0x20,0x0a,0xed,0x54,0xab,0x55, 0x2a,0x54,0x48,0x04,0x81,0x49,0x10,0x12,0x20,0x52,0x80,0x84,0x02,0x00,0x00, 0x00,0x41,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, 0x00,0x02,0x02,0x52,0x50,0x08,0x00,0x00,0x00,0x00,0x80,0x00,0x24,0x40,0x00, 0x00,0x14,0xd6,0x48,0xa8,0x00,0x04,0x00,0x20,0x00,0x48,0x00,0x12,0x08,0x20, 0x10,0x25,0x48,0x91,0x52,0xd5,0x50,0x24,0x82,0x92,0x55,0x22,0x5a,0x49,0x4a, 0x95,0x53,0x42,0x82,0xa4,0x10,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x05, 0x55,0xbe,0xa2,0x5d,0x14,0x8a,0xa2,0xa0,0x90,0x28,0x00,0x40,0x44,0x8a,0x29, 0x2a,0x10,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x29,0x4a,0x84,0xa1,0x00,0x00,0x02,0x00, 0x11,0x24,0x81,0x00,0x00,0x00,0x05,0x55,0xa5,0x55,0x10,0x00,0x20,0x00,0x21, 0x00,0x20,0x00,0x00,0x82,0x00,0x00,0x00,0x25,0x2b,0x6a,0x22,0x80,0x48,0x04, 0x8a,0x94,0x21,0x15,0x50,0xaa,0x0a,0x94,0x20,0x81,0x01,0x04,0xa4,0x24,0x92, 0x00,0x00,0x10,0x00,0x00,0x2a,0xf5,0x14,0xa5,0x55,0x29,0x28,0x08,0x01,0x05, 0x24,0x01,0x09,0x20,0x85,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80, 0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x20,0x20,0x00,0x00,0x08,0x82,0x51,0x22, 0x04,0x01,0x00,0x00,0x00,0x04,0x01,0x14,0x00,0x00,0x00,0x15,0xad,0x51,0x50, 0x80,0x20,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x91,0x12,0x89,0x0a, 0xab,0x48,0x11,0x01,0x29,0x24,0x49,0x48,0xab,0x4a,0x55,0x65,0x51,0x0a,0x24, 0x00,0x00,0x02,0x80,0x00,0x00,0x00,0x40,0x81,0x29,0x55,0xf5,0x52,0x12,0xa1, 0x52,0x46,0xa2,0x44,0x52,0x01,0x10,0x00,0x4a,0x55,0x49,0x21,0x00,0x00,0x00, 0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x20, 0x00,0x20,0x09,0x4a,0x50,0xa0,0x04,0x00,0x40,0x02,0x50,0x04,0x40,0x04,0x00, 0x00,0x04,0xaa,0xaa,0xad,0x22,0x02,0x00,0x48,0x04,0x00,0x04,0x40,0x10,0x00, 0x40,0x04,0x40,0x24,0xa5,0x54,0xa0,0x44,0x48,0x00,0x89,0x25,0x25,0x55,0x45, 0x2a,0x12,0xa4,0x81,0x40,0x20,0x08,0x10,0x02,0x50,0x40,0x00,0x00,0x04,0x02, 0xb5,0x5a,0x88,0xa9,0x4a,0xa8,0x92,0x00,0x10,0x00,0x54,0x44,0xa5,0x00,0x25, 0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x08,0x00,0x00,0x00,0x00, 0x00,0x00,0x20,0x00,0x00,0x11,0x00,0x22,0x29,0x15,0x08,0x00,0x00,0x00,0x00, 0x08,0x81,0x01,0x10,0x00,0x00,0x16,0xaa,0x95,0x54,0x80,0x00,0x00,0x00,0x00, 0x24,0x40,0x00,0x41,0x04,0x08,0x40,0x11,0x0a,0x8a,0xb5,0x04,0x00,0x22,0xa5, 0x24,0x95,0x5a,0x95,0xaa,0xda,0xa9,0x11,0x28,0x54,0x84,0x01,0x00,0x50,0x04, 0x00,0x00,0x00,0x00,0x48,0x4a,0xad,0x52,0x95,0x29,0x25,0x55,0x55,0x04,0x88, 0x81,0x20,0x00,0xaa,0x92,0x8a,0x48,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00, 0x00,0x00,0x08,0x00,0x20,0x00,0x00,0x00,0x00,0x04,0x00,0x02,0x09,0x54,0xa0, 0x20,0x00,0x00,0x00,0x00,0x0a,0x20,0x48,0x00,0x00,0x00,0x02,0xaa,0xa5,0xba, 0x24,0x88,0x88,0x00,0x10,0x80,0x00,0x08,0x00,0x00,0x21,0x01,0x04,0x25,0x25, 0xd6,0x51,0x2a,0x88,0x90,0x92,0x4a,0x55,0x56,0xaa,0xa9,0x04,0xa4,0x82,0xa2, 0x00,0x40,0x41,0x05,0x22,0x00,0x04,0x01,0x10,0x01,0x25,0x75,0x2a,0x4a,0xaa, 0x88,0x94,0x80,0x40,0x00,0x24,0x45,0x55,0x11,0x29,0x20,0x01,0x00,0x00,0x00, 0x01,0x00,0x04,0x00,0x00,0x00,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x02, 0x81,0x20,0x45,0x55,0x0a,0x81,0x00,0x01,0x00,0x04,0x48,0x81,0x02,0x00,0x00, 0x00,0x2a,0x52,0xaa,0xaa,0x90,0x00,0x01,0x20,0x80,0x01,0x22,0x20,0x00,0x10, 0x80,0x2a,0x20,0x85,0x17,0x5a,0x00,0x00,0x02,0x04,0x15,0x2a,0xa8,0xbb,0xd5, 0x54,0x52,0x81,0x24,0x14,0x81,0x02,0x08,0x00,0x08,0x01,0x00,0x00,0x02,0x50, 0x12,0xd2,0x91,0x25,0x20,0x45,0x4a,0xad,0x09,0x00,0x89,0x20,0x04,0xc5,0x44, 0x08,0x90,0x20,0x00,0x08,0x20,0x04,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00, 0x40,0x00,0x00,0x00,0x00,0x04,0x00,0x2a,0xa8,0xd0,0x14,0x40,0x04,0x00,0x10, 0x09,0x00,0x20,0x80,0x00,0x00,0x05,0x2a,0xb5,0x7a,0x84,0x42,0x00,0x02,0x00, 0x00,0x00,0x01,0x12,0x40,0x00,0x00,0x88,0x10,0x85,0xed,0x44,0x4a,0x48,0xa1, 0x40,0x89,0x25,0x4f,0xa5,0x55,0x0a,0x48,0x88,0x2a,0x20,0x00,0x00,0x12,0xa0, 0x04,0x00,0x08,0x00,0x21,0x4a,0x55,0x24,0xaa,0x95,0x29,0x35,0x04,0x80,0x20, 0x44,0x94,0xa9,0x28,0x95,0x42,0x02,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x12,0x10,0x20,0x04,0xaa,0x4a, 0x80,0x80,0x00,0x00,0x00,0x84,0x02,0x88,0x04,0x00,0x00,0x2a,0x54,0xaa,0xaa, 0x51,0x08,0x00,0x00,0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x05,0x02,0x04,0x27, 0xa9,0x00,0x00,0x05,0x48,0x2a,0x26,0xa8,0xb5,0x55,0x6a,0x51,0x22,0x55,0x01, 0x00,0x04,0x20,0x40,0x00,0x40,0x00,0x00,0x12,0x04,0x25,0x4a,0xa0,0x29,0x50, 0x54,0xdb,0xaa,0x54,0x82,0x28,0x42,0x45,0x52,0x54,0x20,0x08,0x00,0x82,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x08,0x01, 0x00,0x04,0x55,0x25,0x24,0x54,0x00,0x00,0x02,0x00,0x29,0x80,0x01,0x20,0x00, 0x00,0x25,0x55,0x6a,0xb9,0x24,0x00,0x20,0x00,0x10,0x02,0x12,0x00,0x40,0x02, 0x04,0x00,0x11,0x40,0x8a,0xd4,0x11,0x25,0x21,0xa1,0x00,0x91,0x25,0x57,0xaa, 0xa9,0x24,0x81,0x48,0x14,0x40,0x00,0x82,0x05,0x52,0x00,0x00,0x41,0x00,0x41, 0x12,0xaa,0x4a,0x96,0x41,0x25,0x2d,0x2a,0x01,0x09,0x45,0x59,0x12,0xa9,0x59, 0x4a,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x81,0x00,0x00,0x01,0x11,0x02,0x95,0x52,0x8a,0xa0,0x00,0x00,0x12, 0x04,0x20,0x90,0x00,0x00,0x00,0x14,0xaa,0xad,0x54,0x90,0x00,0x82,0x10,0x00, 0x00,0x40,0x49,0x02,0x00,0x40,0x28,0x40,0x02,0x03,0x51,0x44,0x00,0x4a,0x84, 0x52,0x24,0x52,0xa5,0x49,0xd4,0xa5,0x54,0x24,0x82,0x09,0x22,0x00,0x00,0x00, 0x00,0x01,0x00,0x00,0x10,0xa8,0x51,0x24,0x2a,0x90,0xaa,0xd6,0xd5,0x50,0x14, 0x14,0x8a,0xa0,0x64,0x48,0x20,0x80,0x88,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x10,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x05,0x40,0x00,0x28,0x51,0x08, 0x21,0x04,0x40,0x00,0x40,0x10,0x04,0x00,0x80,0x00,0x00,0x46,0x94,0xaa,0xb5, 0x40,0x82,0x00,0x00,0x80,0x44,0x00,0x00,0x10,0x20,0x00,0x01,0x15,0x48,0x29, 0x92,0x00,0x2a,0x00,0x40,0x00,0x02,0x89,0x36,0x53,0x52,0xa8,0x02,0x82,0x20, 0xa0,0x08,0x10,0x4a,0x92,0x00,0x04,0x08,0x44,0x84,0x05,0x54,0x90,0x8a,0x0a, 0x55,0x7b,0x69,0x0a,0x4a,0xaa,0x68,0x4a,0xb1,0x2a,0x8a,0x02,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x02, 0x04,0x40,0x02,0x8a,0xa2,0x92,0x60,0x02,0x21,0x14,0x44,0x91,0x24,0x14,0x00, 0x00,0x2a,0x55,0x6d,0xaa,0x24,0x08,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x00, 0x01,0x20,0x20,0x00,0x82,0x48,0x44,0x81,0x2a,0x12,0x11,0x51,0x24,0xaa,0xa5, 0xd8,0xa5,0x4a,0x28,0x88,0x00,0x00,0x42,0x00,0x00,0x20,0x00,0x01,0x00,0x00, 0x92,0x52,0x54,0x2a,0x80,0x0a,0xad,0xaa,0xa0,0x2a,0x95,0x16,0xaa,0xa8,0x52, 0x50,0x88,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, 0x00,0x20,0x00,0x00,0x08,0x40,0x09,0x28,0x51,0x28,0x08,0x10,0x00,0x80,0x00, 0x80,0x00,0x00,0x40,0x00,0x00,0x16,0xab,0x56,0xb4,0x41,0x00,0x00,0x42,0x10, 0x00,0x00,0x00,0x02,0x04,0x10,0x00,0x0a,0x40,0x01,0x61,0x00,0x08,0x42,0x80, 0x44,0x04,0x0a,0x4a,0x92,0x55,0xa8,0x05,0x02,0x02,0x40,0x21,0x00,0x04,0x80, 0x00,0x00,0x00,0x10,0x24,0x29,0x5a,0xa2,0x95,0x25,0x45,0x6a,0xda,0x4a,0xaa, 0xaa,0xa2,0xa9,0x52,0x94,0x02,0x00,0x00,0x00,0x00,0x42,0x20,0x41,0x00,0x00, 0x00,0x00,0x00,0x00,0x10,0x80,0x00,0x00,0x00,0x81,0x10,0x80,0x02,0x94,0x81, 0x41,0x22,0x00,0x00,0x42,0x09,0x0a,0x91,0x00,0x00,0x00,0x4a,0x55,0x55,0xaa, 0xa8,0x00,0x02,0x00,0x00,0x08,0x92,0x24,0x40,0x10,0x40,0x04,0xa1,0x04,0x51, 0x54,0x22,0x45,0x08,0x20,0x00,0x21,0x21,0x56,0x29,0x6a,0xb3,0x40,0x88,0x40, 0x04,0x80,0x00,0x90,0x24,0x80,0x10,0x08,0x04,0x81,0x04,0xa5,0x2a,0x4a,0x88, 0x2a,0xd7,0x6a,0x91,0x4a,0xaa,0x5a,0xa4,0xa0,0x42,0xa8,0x40,0x21,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x20,0x40,0x00,0x00,0x00,0x00,0x08, 0x80,0x00,0x21,0x52,0x54,0x24,0x04,0x22,0x0a,0x08,0x40,0x40,0x00,0x14,0x00, 0x00,0x29,0x55,0xae,0xba,0x42,0x41,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x00, 0x00,0x10,0x08,0x00,0x04,0x50,0x00,0x04,0x25,0x05,0x11,0x08,0x08,0xa4,0x8a, 0xaa,0xa9,0x16,0x42,0x10,0x20,0x08,0x12,0x02,0x80,0x04,0x00,0x20,0x80,0x08, 0x55,0x12,0xa0,0x95,0x22,0x85,0x7e,0xed,0x4a,0x95,0x55,0x25,0x55,0x0a,0xaa, 0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x80,0x00, 0x01,0x00,0x00,0x12,0x00,0x20,0x11,0x00,0x2a,0x8a,0x91,0x49,0x00,0x40,0x40, 0x04,0x12,0x48,0x00,0x00,0x00,0x24,0xb6,0xb7,0xd5,0x28,0x08,0x08,0x08,0x42, 0x20,0x00,0x00,0x00,0x00,0x00,0x80,0xa2,0x91,0x41,0x50,0x12,0x22,0x80,0x20, 0x00,0x04,0xa2,0xaa,0x2b,0x2b,0x55,0x41,0x29,0x44,0x80,0x25,0x44,0x50,0x10, 0x00,0x01,0x00,0x10,0x40,0x00,0x4a,0xba,0x2a,0xa9,0x6b,0xd7,0xb5,0x69,0x52, 0xaa,0x9a,0xaa,0xd1,0x21,0x50,0x41,0x04,0x01,0x02,0x08,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x24,0x80,0x00,0x02,0x10,0x25, 0x04,0x00,0x14,0x15,0x01,0x41,0x08,0x01,0x50,0x00,0x00,0x8a,0xaa,0xb5,0x56, 0x82,0x00,0x00,0x20,0x00,0x01,0x21,0x00,0x00,0x40,0x02,0x00,0x40,0x80,0x10, 0xa4,0x80,0x89,0x14,0x89,0x20,0xa0,0x0a,0x92,0x95,0x55,0x5a,0x94,0x85,0x20, 0x05,0x00,0x09,0x04,0x84,0x20,0x20,0x02,0x04,0x02,0xaa,0xa5,0x4a,0x9b,0xa4, 0x95,0xfd,0x55,0xaa,0xad,0x7a,0xad,0x55,0x25,0x54,0x09,0x04,0x10,0x04,0x00, 0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x00,0x00,0x0a,0x90,0xb2,0x42,0x90,0x80,0x50,0x10,0x42,0x24,0x04,0x40, 0x00,0x54,0xba,0xdb,0xea,0x28,0x90,0x00,0x80,0x08,0x00,0x00,0x12,0x00,0x02, 0x10,0x01,0x28,0x10,0x05,0x90,0x00,0x15,0x00,0x42,0x04,0x05,0x25,0x55,0x25, 0x2a,0xaa,0xa9,0x54,0x80,0x00,0x4a,0xa0,0x50,0x21,0x00,0x00,0x00,0x10,0x08, 0x09,0x08,0xa5,0x4a,0xd2,0x4b,0x56,0xd6,0x52,0xd5,0x55,0x56,0xd2,0x94,0x82, 0xa2,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x04,0x00,0x00, 0x00,0x00,0x00,0x00,0x90,0x08,0x40,0x00,0x88,0x4a,0x41,0x10,0x20,0x2a,0x80, 0x84,0x21,0x00,0x00,0x00,0x00,0x88,0xed,0x57,0xb6,0x80,0x02,0x02,0x00,0x00, 0x04,0x04,0x00,0x20,0x00,0x00,0x00,0x42,0x42,0x52,0xa0,0x24,0x02,0x52,0x20, 0x00,0x90,0x04,0xa9,0x52,0xad,0x54,0x48,0x05,0x28,0x91,0x00,0x04,0x91,0x08, 0x09,0x00,0x00,0x40,0x40,0x24,0x40,0x51,0x2b,0xd5,0x26,0xeb,0x51,0x48,0xba, 0xbb,0xfb,0x6a,0x4a,0xa8,0x10,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x04, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x80,0x00,0x10,0x02,0x91, 0x14,0x44,0x05,0x00,0x04,0x21,0x08,0x15,0x29,0x00,0x00,0x54,0x35,0x5d,0xdb, 0x05,0x00,0x20,0x00,0x80,0x10,0x20,0x00,0x02,0x00,0x00,0x01,0x01,0x00,0x0b, 0x42,0x01,0x48,0x01,0x09,0x22,0x05,0x52,0x95,0x29,0x2a,0xeb,0x52,0x50,0x80, 0x00,0x24,0x91,0x20,0x02,0x40,0x04,0x88,0x00,0x00,0x81,0x05,0x0a,0x47,0xd4, 0x93,0x7a,0xac,0xa5,0x6d,0xd5,0x57,0xaa,0x24,0x42,0x45,0x24,0x00,0x00,0x00, 0x00,0x00,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x04,0x80,0x10,0x44,0xa5,0x01,0x20,0x12,0x40,0x14,0x42,0x00,0x00,0x00, 0x01,0x09,0xaa,0xab,0x65,0x20,0x48,0x00,0x00,0x00,0x80,0x80,0x40,0x00,0x08, 0x80,0x04,0x48,0x21,0x2a,0x80,0x40,0x02,0xa8,0x80,0x00,0x48,0x2a,0x4a,0x92, 0x55,0x34,0x48,0x0a,0x89,0x04,0x80,0x00,0x02,0x20,0x01,0x10,0x00,0x81,0x04, 0x0a,0x40,0xa1,0x29,0x52,0x56,0xd5,0x52,0x91,0x75,0x6d,0xda,0xd5,0xaa,0x90, 0x20,0x00,0x20,0x00,0x04,0x00,0x00,0x80,0x00,0x40,0x00,0x00,0x20,0x00,0x00, 0x00,0x00,0x00,0x08,0x00,0x12,0x40,0x01,0x01,0x12,0x42,0x14,0x09,0x04,0x08, 0x80,0x28,0x22,0x94,0x00,0x00,0xa8,0x5b,0x77,0xba,0x81,0x00,0x80,0x00,0x08, 0x00,0x00,0x04,0x88,0x00,0x00,0x00,0x04,0x90,0x17,0x51,0x08,0xa0,0x0a,0x15, 0x08,0x00,0x92,0xaa,0x44,0x9d,0xd5,0x51,0x44,0x40,0x20,0x12,0x04,0xa0,0x04, 0x24,0x00,0x00,0x10,0x00,0x00,0x8a,0x0a,0x55,0x55,0x49,0xad,0x54,0x4d,0x5a, 0xba,0xed,0xaa,0x89,0x25,0x0a,0x89,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00, 0x02,0x00,0x00,0x00,0x40,0x21,0x00,0x00,0x00,0x20,0x40,0x00,0x00,0x00,0x48, 0x90,0x80,0x90,0x51,0x20,0x24,0x81,0x00,0x00,0x00,0x00,0x4b,0x6a,0xaf,0xd7, 0x08,0x00,0x02,0x02,0x00,0x00,0x04,0x10,0x00,0x40,0x08,0x80,0x91,0x04,0x4c, 0x40,0x02,0x08,0xa0,0x40,0x21,0x2a,0x24,0x29,0x20,0x57,0x6d,0x44,0x25,0x20, 0x80,0x08,0x40,0x48,0x10,0x80,0x00,0x12,0x00,0x08,0x92,0x20,0xa1,0x25,0x4a, 0xa6,0xaa,0xab,0x22,0xad,0xd7,0x7f,0xca,0xaa,0xa8,0xa0,0x20,0x80,0x80,0x00, 0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00, 0x00,0x00,0x00,0x49,0x24,0x44,0x24,0x42,0x04,0x04,0x10,0x00,0x09,0x24,0x40, 0x01,0x11,0x5a,0xd5,0xaa,0xa0,0x22,0x00,0x08,0x00,0x04,0x40,0x80,0x00,0x00, 0x00,0x00,0x08,0xa0,0x12,0x04,0x21,0x22,0x05,0x04,0x80,0x41,0x11,0xa8,0x95, 0x2b,0x55,0x51,0x00,0x88,0x00,0xa1,0x04,0x00,0x80,0x00,0x82,0x40,0x40,0x00, 0x00,0x82,0x0a,0x92,0x92,0x95,0x55,0x52,0xa9,0x55,0x5d,0xd5,0x52,0xaa,0xa4, 0x05,0x01,0x44,0x00,0x80,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x02,0x04,0x00,0x00,0x44,0x04,0x00,0x42,0x12,0x89,0x04,0x50,0x81, 0x41,0x21,0x00,0x00,0x00,0x00,0x55,0x3b,0x77,0x75,0x00,0x80,0x10,0x20,0x00, 0x20,0x00,0x00,0x00,0x00,0x40,0x08,0x92,0x14,0x81,0x00,0x04,0x00,0x10,0x20, 0x09,0x0a,0x4a,0x55,0x22,0xbd,0xaa,0xa4,0x54,0x44,0x28,0x04,0x11,0x10,0x02, 0x24,0x08,0x00,0x08,0x80,0x24,0x00,0xa4,0x49,0x0a,0xd2,0xad,0x55,0x4a,0xab, 0x6e,0xf6,0xd4,0xaa,0xa9,0x50,0x00,0x80,0x04,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x80,0x10,0x00,0x00,0x01,0x08,0x00,0x00,0x01,0x00,0x10,0x03,0x11, 0x44,0xa0,0x10,0x82,0x10,0x04,0x00,0x04,0x92,0x00,0x01,0x35,0x5a,0x9d,0xea, 0x84,0x00,0x00,0x00,0x22,0x00,0x11,0x00,0x89,0x04,0x00,0x00,0x10,0x82,0x14, 0x21,0x10,0x94,0x42,0x88,0x20,0x40,0x21,0x28,0x59,0x4b,0x55,0x41,0x05,0x20, 0x80,0x01,0x00,0x42,0x08,0x00,0x00,0x04,0x80,0x02,0x02,0x94,0x88,0x20,0x52, 0x8a,0xaa,0x95,0x54,0xad,0x5b,0xdd,0xb5,0x74,0x50,0x40,0x92,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0x00,0x00,0x04,0x00,0x00,0x00,0x80,0x08,0x00,0x00,0x01, 0x10,0x00,0x80,0x01,0x24,0x22,0x14,0x82,0x14,0x41,0x10,0x00,0x40,0x08,0x00, 0x00,0x29,0x6d,0x6a,0xb5,0x50,0x09,0x00,0x00,0x00,0x01,0x00,0x04,0x00,0x10, 0x02,0x00,0x08,0x11,0x40,0x14,0x82,0x01,0x00,0x03,0x44,0x14,0x88,0xa5,0x25, 0x35,0xa9,0x3d,0x51,0x12,0x01,0x10,0x44,0x94,0x20,0x08,0x82,0x90,0x00,0x10, 0x12,0x00,0x21,0x09,0x09,0x54,0xad,0x6a,0xaa,0xaa,0xee,0xf7,0x6a,0xa9,0x05, 0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x01,0x01,0x00, 0x00,0x40,0x00,0x00,0x04,0x00,0x02,0x00,0x44,0x01,0x49,0x40,0x20,0x40,0x00, 0x00,0x42,0x05,0x20,0x40,0x02,0x35,0x75,0xaf,0x75,0x00,0x20,0x01,0x00,0x00, 0x00,0x00,0x10,0x00,0x00,0x08,0x02,0x20,0x04,0x12,0x4a,0x20,0x24,0x02,0x51, 0x11,0x20,0x22,0x20,0x94,0xae,0xaa,0xa5,0x68,0x88,0x08,0x00,0x00,0x48,0x08, 0x80,0x00,0x41,0x11,0x00,0x44,0x42,0x80,0x40,0x44,0xaa,0xb5,0x2a,0xb4,0xaf, 0x5b,0x7d,0xad,0x50,0xa0,0x00,0x28,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x40,0x00,0x10,0x10,0x00,0x24, 0x12,0x49,0x09,0x09,0x02,0x49,0x00,0x00,0x84,0x00,0x00,0x8a,0xaa,0xda,0xd6, 0x82,0x00,0x00,0x10,0x00,0x20,0x48,0x00,0x00,0x00,0x40,0x20,0x01,0x20,0x40, 0x01,0x04,0x80,0x08,0x8a,0xa2,0x49,0x00,0xaa,0x2a,0xa9,0x49,0x5b,0x92,0x44, 0x82,0x04,0x20,0x22,0x40,0x22,0x09,0x00,0x00,0x00,0x09,0x00,0x04,0x24,0x12, 0x55,0x4a,0xd5,0x55,0x35,0xb7,0xd7,0x76,0xca,0x09,0x49,0x00,0x11,0x00,0x00, 0x00,0x00,0x00,0x00,0x08,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x41,0x01,0x00,0x91,0x44,0x80,0x40,0x00,0x00,0x00,0x00,0x44,0x11,0x00, 0x00,0x2a,0xad,0x55,0xe8,0x48,0x00,0x20,0x01,0x11,0x04,0x00,0x80,0x21,0x22, 0x00,0x00,0x08,0x02,0x0a,0x24,0x41,0x00,0x20,0x21,0x01,0x04,0x49,0x21,0x11, 0x56,0x95,0x6d,0x49,0x20,0x00,0x41,0x01,0x08,0x04,0x80,0x20,0x0a,0x00,0x42, 0x40,0x11,0x21,0x01,0x49,0x5a,0x5a,0xaa,0xaa,0xae,0xdd,0xfd,0xdb,0x69,0x44, 0x20,0x09,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x04,0x00,0x00,0x21,0x00,0x08,0x00,0x44,0x00,0x04,0x11,0x29,0x12,0x49,0x00, 0x24,0x10,0x20,0x80,0x10,0x02,0x52,0xb5,0xae,0xad,0x00,0x42,0x00,0x00,0x00, 0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x20,0x00,0x20,0x81,0x04,0x09,0x02,0x94, 0xa8,0xa8,0x02,0x54,0xa5,0x5a,0x22,0xad,0xd4,0x95,0x24,0x00,0x04,0x40,0x00, 0x08,0x82,0x40,0x89,0x00,0x14,0x04,0x00,0x54,0x12,0xaa,0xaa,0xaa,0xad,0x55, 0xb7,0x57,0x6d,0x54,0x51,0x44,0x80,0x00,0x00,0x00,0x04,0x00,0x00,0x08,0x00, 0x00,0x00,0x00,0x80,0x04,0x20,0x00,0x00,0x00,0x00,0x00,0x24,0x10,0x04,0x01, 0x40,0x20,0x00,0x02,0x10,0x02,0x80,0x80,0x24,0x40,0x00,0x0b,0xaa,0xaa,0xb2, 0x20,0x00,0x02,0x04,0x00,0x00,0x88,0x08,0x00,0x00,0x20,0x04,0x00,0x08,0x82, 0x08,0x10,0x40,0x00,0x02,0xa2,0x01,0x20,0xa1,0x2a,0x55,0x88,0xbf,0x45,0x48, 0x00,0x90,0x40,0x11,0x20,0x02,0x00,0x02,0x20,0x04,0x40,0x90,0x12,0x00,0x42, 0x55,0x6a,0xaa,0xab,0x56,0xdf,0xfd,0xde,0xeb,0x54,0x10,0x2a,0x81,0x20,0x10, 0x00,0x00,0x10,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x80,0x00,0x00,0x00,0x00, 0x40,0x88,0x00,0x00,0x10,0x15,0x12,0xaa,0xa0,0x40,0x11,0x00,0x50,0x80,0x00, 0x02,0xa9,0x5a,0xbd,0xcc,0x80,0x00,0x00,0x20,0x00,0x04,0x00,0x40,0x04,0x00, 0x82,0x20,0x00,0x80,0x01,0x20,0x41,0x10,0x48,0x90,0x49,0x50,0x84,0x14,0x52, 0xaa,0x52,0x56,0xa9,0x22,0x92,0x02,0x11,0x00,0x01,0x00,0x00,0x90,0x40,0x01, 0x08,0x00,0x40,0x52,0x12,0x95,0x5a,0xab,0x6a,0xd7,0x76,0xaf,0x77,0xb5,0x49, 0x44,0x85,0x48,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x80,0x08,0x00,0x00, 0x00,0x00,0x80,0x00,0x02,0x10,0x00,0x54,0x10,0x44,0x80,0x40,0x00,0x14,0x04, 0x04,0x00,0x20,0x11,0x00,0x00,0x55,0xab,0x56,0xb4,0x01,0x11,0x10,0x00,0x44, 0x10,0x01,0x00,0x10,0x48,0x00,0x00,0x10,0x01,0x09,0x02,0x00,0x41,0x00,0x02, 0x04,0x0a,0x01,0x41,0x25,0x6b,0x05,0x57,0x52,0x50,0x20,0x00,0x04,0x09,0x10, 0x10,0x24,0x01,0x04,0x10,0x22,0x01,0x01,0x00,0x41,0x5d,0x6a,0xad,0x56,0xaa, 0xdb,0xfb,0xdd,0x5a,0x52,0x10,0x0b,0xc0,0x00,0x00,0x00,0x04,0x00,0x00,0x00, 0x00,0x00,0x40,0x00,0x10,0x00,0x02,0x02,0x00,0x00,0x02,0x48,0x00,0x40,0x01, 0x2a,0x15,0x55,0x21,0x20,0x11,0x00,0x81,0x04,0x00,0x02,0x2a,0xec,0xaa,0xd4, 0x10,0x00,0x00,0x00,0x00,0x40,0x44,0x00,0x40,0x00,0x00,0x00,0x10,0x20,0x20, 0x40,0x12,0x00,0x2a,0x41,0x22,0x81,0x24,0x54,0x94,0xa9,0x51,0x5a,0xc4,0x8a, 0x02,0x48,0x40,0x40,0x00,0x42,0x00,0x02,0x21,0x02,0x80,0x24,0x08,0x49,0x0a, 0x2b,0x55,0x6b,0x5b,0x55,0xee,0xfe,0xf5,0xa9,0x4a,0x84,0x17,0xa0,0x40,0x00, 0x00,0x10,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x10,0x00, 0x08,0x05,0x14,0x01,0x00,0x01,0x42,0x20,0x94,0x88,0x04,0x00,0x00,0x50,0x00, 0x00,0xa5,0xb2,0xdd,0x68,0x80,0x04,0x00,0x02,0x00,0x00,0x00,0x04,0x00,0x00, 0x00,0x00,0x42,0x02,0x00,0x01,0x40,0x88,0x90,0x08,0x00,0x54,0x01,0x00,0x4a, 0xaa,0x44,0xa6,0xd0,0x20,0x10,0x01,0x05,0x00,0x84,0x00,0x81,0x08,0x90,0x04, 0x10,0x00,0x20,0x02,0x11,0x55,0xbd,0xd6,0xbd,0x56,0xbf,0xaf,0xb6,0xb5,0x28, 0x51,0x0b,0x40,0x04,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00, 0x00,0x00,0x00,0x00,0x40,0x20,0x10,0x00,0x00,0x00,0xaa,0x14,0x8a,0x40,0x20, 0x22,0x01,0x04,0x00,0x20,0x04,0x15,0x56,0xab,0xac,0x00,0x40,0x01,0x10,0x11, 0x00,0x00,0x00,0x00,0x80,0x44,0x81,0x00,0x00,0x02,0x10,0x00,0x00,0x39,0x00, 0x15,0x2a,0xa4,0x55,0x24,0xa4,0x91,0x1a,0xaa,0x94,0x84,0x48,0x00,0x12,0x20, 0x80,0x14,0x20,0x4a,0x91,0x42,0x00,0x81,0x50,0x44,0x9e,0xa6,0xba,0xdf,0x5b, 0xf7,0xdd,0xdb,0x55,0x4a,0x80,0xa6,0xd1,0x00,0x00,0x00,0x00,0x00,0x00,0x40, 0x00,0x01,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x14,0x00,0x04, 0x00,0x90,0x41,0x12,0x92,0x08,0x04,0x11,0x22,0x00,0x01,0x55,0xe9,0x6d,0x70, 0xa4,0x00,0x10,0x00,0x00,0x00,0x88,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x80, 0x44,0x09,0x44,0x00,0x02,0x40,0xa9,0x11,0x00,0x52,0xaa,0x40,0x4a,0xa9,0x50, 0x40,0x00,0x10,0x80,0x08,0x08,0x01,0x06,0x80,0x04,0x20,0x48,0x04,0x45,0x22, 0x4a,0xfa,0xab,0x7b,0x6d,0x5a,0xf6,0xed,0xea,0xd1,0x4a,0x09,0x00,0x20,0x20, 0x01,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x02,0x40,0x40,0x00,0x00,0x02, 0x02,0x00,0x88,0x08,0x00,0x15,0x4a,0x88,0x40,0x48,0x20,0x00,0x00,0x08,0x80, 0x00,0x26,0xb5,0xab,0xac,0x00,0x00,0x80,0x00,0x40,0x04,0x00,0x42,0x22,0x08, 0x00,0x00,0x08,0x80,0x10,0x00,0x80,0x00,0x88,0x28,0x02,0x24,0x44,0x49,0x05, 0x29,0x0a,0x25,0x54,0x4a,0x82,0x44,0x82,0x01,0x00,0x02,0x44,0xa0,0x2a,0x92, 0x80,0x00,0x00,0x50,0x49,0x2a,0xab,0x55,0x6e,0xb6,0xd7,0x5f,0x6e,0xae,0xac, 0x90,0x80,0x40,0x84,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x08,0x00,0x00,0x10, 0x00,0x00,0x00,0x80,0x00,0x20,0x12,0x20,0x80,0x20,0x00,0x10,0x22,0x8a,0x21, 0x00,0x20,0x00,0x40,0x00,0x04,0x95,0x6a,0xb5,0x72,0x42,0x08,0x00,0x82,0x00, 0x00,0x11,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x02,0x00,0x10,0x48,0x00,0x80, 0x00,0xaa,0xa2,0x02,0x54,0xaa,0xa0,0x95,0x45,0x51,0x20,0x10,0x20,0x24,0x42, 0x20,0x10,0x95,0x04,0x01,0x28,0x02,0x49,0x02,0x82,0x4a,0xad,0x56,0xfd,0xd5, 0xbb,0xf7,0xbb,0x55,0xa6,0xa4,0xa4,0x08,0x00,0x00,0x00,0x00,0x00,0x80,0x00, 0x00,0x00,0x04,0x00,0x00,0x02,0x00,0x00,0x08,0x08,0x00,0x00,0x80,0x00,0x00, 0x4a,0x95,0x09,0x10,0x94,0x40,0x00,0x04,0x12,0x10,0x01,0x16,0xf5,0x5a,0xd4, 0x10,0x40,0x02,0x08,0x02,0x20,0x00,0x08,0x00,0x20,0x08,0x00,0x40,0x02,0x00, 0x22,0x02,0x00,0x02,0x00,0x94,0x24,0x14,0x24,0x8a,0x55,0x04,0x42,0xa9,0x48, 0x89,0x00,0x88,0x00,0x10,0x85,0x42,0x40,0x91,0x4a,0x41,0x20,0x00,0x28,0x11, 0x25,0x7d,0xbb,0x57,0x6d,0xd5,0xbd,0xed,0xed,0x55,0x12,0x09,0x40,0x08,0x00, 0x10,0x00,0x02,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x40, 0x04,0x88,0x08,0x01,0x00,0x00,0x00,0xa0,0x4a,0x20,0x10,0x00,0x00,0x00,0x40, 0x02,0x4a,0xaa,0xeb,0x54,0x40,0x01,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00, 0x00,0x80,0x04,0x10,0x20,0x00,0x40,0x10,0x20,0x0a,0x01,0x29,0x42,0x08,0x49, 0x29,0x51,0x15,0x2a,0x84,0x24,0x48,0x11,0x10,0x84,0x00,0x09,0x54,0x04,0x21, 0x10,0x04,0x01,0x01,0x4a,0x4a,0xd6,0xed,0xfd,0xb6,0xee,0xd7,0x7d,0xb5,0x54, 0xa0,0x90,0x20,0x40,0x81,0x00,0x00,0x08,0x02,0x00,0x00,0x00,0x00,0x20,0x00, 0x00,0x00,0x00,0x01,0x00,0x90,0x01,0x20,0x00,0x00,0x0a,0x54,0x4a,0x8a,0x8a, 0x40,0x00,0x80,0x52,0x00,0x00,0x15,0x6b,0x2a,0xa8,0x04,0x00,0x08,0x00,0x00, 0x02,0x04,0x00,0x44,0x00,0x00,0x01,0x10,0x40,0x00,0x80,0x08,0x82,0x00,0x20, 0x02,0x12,0x52,0x42,0x94,0x54,0xc2,0x24,0xa9,0x52,0x90,0x02,0x40,0x04,0x20, 0x02,0x44,0x4a,0xa2,0x8a,0x40,0x00,0x90,0x24,0x2a,0xa1,0x6b,0x77,0x57,0x5d, 0x5b,0xbd,0xf7,0x56,0xaa,0x0a,0x02,0x89,0x00,0x10,0x00,0x00,0x20,0x00,0x02, 0x00,0x00,0x40,0x00,0x00,0x10,0x00,0x04,0x08,0x00,0x00,0x00,0x01,0x08,0x00, 0x00,0x02,0x01,0x0a,0x20,0x04,0x00,0x02,0x00,0x80,0x04,0x8b,0x55,0xd5,0xb2, 0x45,0x08,0x20,0x00,0x08,0x08,0x00,0x21,0x00,0x00,0x40,0x00,0x00,0x00,0x84, 0x09,0x00,0x00,0x09,0x00,0x24,0x89,0x08,0x08,0x48,0x22,0x88,0x12,0xaa,0x24, 0x89,0x20,0x04,0x50,0x89,0x10,0x92,0xa9,0x14,0x20,0x92,0x40,0x02,0x01,0x2a, 0x55,0xb7,0x7b,0xda,0xee,0xf7,0xef,0x5d,0xaa,0xaa,0xa0,0xa0,0x40,0x08,0x40, 0x00,0x10,0x80,0x00,0x08,0x00,0x24,0x00,0x01,0x04,0x00,0x08,0x00,0x00,0x01, 0x00,0x00,0x00,0x00,0x00,0x09,0x28,0x94,0x40,0x84,0x80,0x00,0x00,0x12,0x20, 0x02,0x2a,0xb6,0xfb,0x48,0x04,0x00,0x00,0x80,0x20,0x80,0x00,0x00,0x00,0x20, 0x00,0x00,0x00,0x02,0x00,0x00,0x12,0x48,0x40,0x02,0x00,0x22,0xa5,0x22,0x22, 0x88,0x80,0x49,0x55,0x52,0x50,0x11,0x10,0x04,0x00,0x04,0x09,0x5c,0xc9,0x15, 0x00,0x08,0x00,0x48,0xad,0x69,0x5a,0xad,0x6f,0xb2,0xae,0xf5,0xee,0xd5,0x59, 0x55,0x15,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x08,0x00, 0x00,0x20,0x00,0x00,0x00,0x08,0x88,0x80,0x00,0x00,0x00,0x82,0x09,0x12,0x10, 0x40,0x10,0x40,0x80,0x80,0x08,0x4a,0xaa,0xad,0xa0,0x16,0x20,0x80,0x08,0x80, 0x00,0x22,0x00,0x00,0x82,0x02,0x10,0x48,0x08,0x00,0x20,0x40,0x00,0x00,0x08, 0x92,0x08,0x08,0x08,0x90,0x22,0x51,0x05,0x51,0x29,0x02,0x44,0x02,0x01,0x20, 0x90,0x85,0x53,0x52,0xa8,0x04,0x21,0x20,0x02,0x55,0x5d,0xeb,0xb6,0xb5,0x6e, 0xdb,0xbe,0xb3,0x2a,0xaa,0x94,0x40,0x89,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x10,0x00,0x02, 0x02,0x10,0x42,0x41,0x45,0x14,0x40,0x00,0x09,0x00,0x01,0x0a,0xb5,0xf6,0xa1, 0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x04,0x00,0x20,0x01,0x00,0x80,0x00, 0x81,0x04,0x82,0x02,0x40,0x00,0x0a,0xa2,0xa0,0x88,0x89,0x00,0x29,0x2a,0x45, 0x48,0x00,0x00,0xa8,0x08,0x02,0x24,0xaa,0xaa,0x4a,0x51,0x00,0x04,0x91,0x2a, 0xed,0xb5,0x76,0xd7,0xf5,0x6f,0x6b,0x6d,0xb5,0x55,0x6a,0x04,0x40,0x82,0x20, 0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x04, 0x00,0x00,0x00,0x80,0x08,0x00,0x44,0x14,0x84,0x10,0x00,0x01,0x02,0x04,0x20, 0x04,0x55,0x56,0xd5,0xa8,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x10,0x00, 0x00,0x00,0x00,0x00,0x08,0x04,0x00,0x50,0x08,0x0a,0x88,0x80,0x14,0x04,0x42, 0x02,0x92,0x04,0x94,0x91,0x02,0x51,0x48,0x00,0x42,0x40,0x92,0xa5,0x64,0x92, 0x00,0x00,0x00,0x24,0xca,0xb5,0x7a,0xbb,0x5a,0xad,0xb5,0xdf,0xba,0xaa,0xd4, 0x94,0xa1,0x22,0x00,0x02,0x08,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x10,0x10, 0x41,0x00,0x10,0x00,0x20,0x22,0x00,0x00,0x00,0x20,0x00,0x01,0x21,0x12,0x85, 0x00,0x00,0x00,0x91,0x00,0x01,0x15,0xab,0x7a,0xa4,0x24,0x04,0x40,0x10,0x00, 0x44,0x40,0x80,0x00,0x00,0x08,0x00,0x22,0x10,0x20,0x00,0x12,0x00,0x81,0xa0, 0x00,0x22,0x82,0xa0,0x20,0x50,0x00,0x41,0x48,0x4a,0x51,0x0a,0x82,0x02,0x10, 0x15,0x49,0x52,0x92,0x29,0xa0,0x89,0x22,0x4a,0x5a,0xfe,0xd5,0xad,0x6d,0xb6, 0xde,0xba,0xaa,0xaa,0xba,0xb5,0x14,0x08,0x80,0x80,0x00,0x00,0x04,0x10,0x00, 0x04,0x10,0x08,0x04,0x40,0x00,0x00,0x00,0x00,0x80,0x00,0x02,0x40,0x08,0x00, 0x02,0x40,0x88,0x80,0x10,0xa4,0x24,0x22,0x04,0x40,0x04,0x25,0x57,0xb6,0xa1, 0x00,0x40,0x00,0x40,0x02,0x00,0x04,0x00,0x00,0x24,0x00,0x08,0x00,0x01,0x00, 0x20,0x00,0x0a,0x12,0x82,0x24,0x80,0x28,0x12,0x08,0x01,0x40,0x14,0x65,0x21, 0x04,0xe9,0xa8,0x90,0x01,0x00,0x25,0x2a,0x4a,0x84,0x54,0x00,0x08,0x22,0xa5, 0x55,0xae,0xb6,0xb7,0xd5,0x53,0x6f,0x6a,0x95,0x6d,0x55,0x41,0x40,0x02,0x00, 0x00,0x01,0x00,0x00,0x10,0x10,0x00,0x20,0x50,0x00,0x00,0x00,0x00,0x02,0x00, 0x48,0x20,0x00,0x00,0x00,0x00,0x0a,0x22,0x9a,0x0a,0x20,0x00,0x01,0x41,0x10, 0x02,0x12,0xaa,0xed,0x54,0x40,0x00,0x08,0x00,0x00,0x00,0x10,0x04,0x80,0x80, 0x40,0x41,0x20,0x80,0x01,0x02,0x42,0x80,0x04,0x00,0x80,0x09,0x4a,0x80,0xa1, 0x10,0x12,0x41,0x10,0x94,0xa1,0x30,0x82,0x00,0x84,0x25,0x10,0x95,0x52,0x55, 0x41,0x20,0x82,0x94,0xaa,0xee,0xf5,0x5a,0xda,0xf7,0x6e,0xf5,0xaa,0x52,0xb5, 0xaa,0x94,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x01, 0x00,0x00,0x00,0x80,0x02,0x00,0x80,0x00,0x00,0x00,0x00,0x20,0x40,0x00,0x20, 0x84,0x08,0x42,0x14,0x00,0x00,0x8a,0x57,0x3b,0x48,0x24,0x02,0x00,0x00,0x80, 0x01,0x00,0x00,0x04,0x00,0x01,0x00,0x82,0x04,0x00,0x00,0x08,0x10,0x95,0x48, 0x0a,0x80,0x20,0x14,0x04,0x05,0x40,0x12,0x4a,0x44,0x88,0x4a,0x20,0xa4,0x10, 0x80,0x8a,0x49,0x25,0x2a,0x54,0x82,0x20,0x4a,0xaa,0xb5,0xad,0xb7,0x5d,0x5a, 0xd7,0x7e,0xed,0x4a,0xd5,0x57,0x49,0x48,0x88,0x00,0x40,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x24,0x40,0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x01,0x00,0x00, 0x00,0x01,0x09,0x52,0x08,0x20,0x20,0x00,0x80,0xa0,0x04,0x2a,0xaa,0xf5,0x51, 0x80,0x80,0x20,0x00,0x08,0x24,0x20,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00, 0x08,0x00,0x82,0x08,0x00,0x29,0x10,0x95,0x40,0x90,0x50,0x00,0xa0,0x51,0x28, 0xa2,0xa0,0x09,0x10,0x00,0x2a,0x41,0x04,0x92,0x85,0x55,0x08,0x0a,0xa2,0x25, 0x57,0xd6,0xad,0xd7,0xed,0xb5,0xb7,0x55,0x52,0xaa,0xa8,0xa2,0x50,0x00,0x08, 0x01,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x12,0x0a,0x84,0x00,0x40,0x00,0x09, 0x02,0x02,0x00,0x00,0x00,0x00,0x02,0x20,0x04,0x44,0x80,0x00,0x22,0x49,0x08, 0x02,0x45,0x2d,0xad,0x54,0x12,0x10,0x00,0x42,0x00,0x80,0x04,0x80,0x10,0x80, 0x00,0x04,0x80,0x00,0x12,0x20,0x82,0x00,0x22,0x42,0x1c,0x44,0x08,0x04,0x00, 0x02,0x94,0x09,0x24,0xaa,0x40,0x09,0x44,0x41,0x45,0x00,0x48,0x52,0x48,0xaa, 0xb4,0xa0,0x80,0x54,0x95,0x6a,0xf5,0xb5,0x6a,0xb6,0xda,0xda,0xf5,0x4a,0x95, 0x55,0x14,0xa0,0x00,0x40,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x40, 0x00,0x00,0x00,0x00,0x20,0x50,0x00,0x00,0x00,0x00,0x00,0x08,0x89,0x50,0x20, 0x08,0x02,0x04,0x80,0x80,0x00,0x2a,0x2a,0xda,0xa9,0x48,0x40,0x01,0x00,0x00, 0x00,0xa0,0x01,0x00,0x04,0x04,0x00,0x00,0x10,0x40,0x00,0x20,0x11,0x09,0x00, 0x4d,0x11,0x22,0x90,0x42,0x10,0x00,0xa2,0x29,0x29,0x55,0x20,0x22,0x88,0x11, 0x55,0x45,0x04,0xaa,0x95,0x6a,0x82,0x15,0x2a,0xaa,0xb7,0x5a,0xea,0xbd,0xdb, 0x55,0x6d,0x5a,0xb5,0x55,0x55,0xc8,0x44,0x12,0x00,0x00,0x00,0x00,0x00,0x41, 0x00,0x10,0x00,0x24,0x2a,0x00,0x08,0x00,0x42,0x01,0x00,0x00,0x40,0x02,0x00, 0x01,0x01,0x04,0x05,0x11,0x40,0x10,0x11,0x14,0xa0,0x05,0x14,0x17,0x75,0x54, 0x21,0x01,0x04,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x41,0x20,0x40,0x00, 0x00,0x00,0x80,0x06,0x10,0x14,0x24,0x08,0x01,0x10,0x85,0x24,0x11,0x84,0x8a, 0x40,0x94,0xaa,0x45,0x04,0x40,0x10,0x21,0x51,0x49,0x55,0x28,0x42,0xa5,0x49, 0x55,0xf6,0xb6,0xd6,0xad,0xba,0xb7,0x6e,0xaa,0xca,0xf5,0x22,0xa1,0x00,0x00, 0x04,0x00,0x00,0x04,0x00,0x08,0x00,0x22,0x12,0x81,0x80,0x00,0x01,0x00,0x04, 0x08,0x02,0x00,0x00,0x00,0x04,0x00,0x28,0x48,0x40,0x12,0x01,0x14,0x01,0x44, 0x00,0x52,0x55,0xaa,0xba,0x8a,0xc8,0x10,0x04,0x24,0x02,0x42,0x08,0x04,0x20, 0x20,0x04,0x04,0x00,0x00,0x02,0x08,0x04,0x56,0x81,0x09,0x02,0x42,0xa8,0x00, 0x00,0x00,0x84,0x52,0x54,0x54,0x40,0x44,0x90,0x91,0x29,0x22,0x12,0xaa,0xa5, 0x5d,0x42,0x11,0x24,0x55,0x55,0x5b,0x6d,0xbb,0x77,0x55,0xda,0xaa,0xd5,0x55, 0xba,0x94,0x94,0x29,0x64,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x48,0x2a, 0x20,0x40,0x00,0x00,0x40,0x20,0x08,0x00,0x08,0x00,0x00,0x04,0x81,0x01,0x09, 0x00,0x08,0x01,0x48,0x90,0x04,0x88,0x12,0xda,0x49,0x50,0x80,0x00,0x00,0x00, 0x48,0x00,0x20,0x10,0x80,0x00,0x00,0x02,0x01,0x01,0x10,0x40,0x10,0x0b,0x00, 0x54,0x54,0x0a,0x00,0x88,0x92,0x42,0x21,0x25,0x15,0x21,0x25,0x2a,0x42,0x04, 0x14,0x80,0x85,0x49,0x14,0xa6,0xa9,0x0a,0x92,0x8a,0xab,0xad,0xb6,0xd5,0xaa, 0xaa,0x5d,0x76,0xad,0x55,0x6d,0x50,0x21,0x04,0x08,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x12,0x81,0x01,0x00,0x40,0x00,0x00,0x00,0x00,0x02,0x00,0x00, 0x00,0x00,0x10,0x14,0x20,0xa8,0x80,0x28,0x02,0x40,0x08,0x2a,0x2f,0x6a,0xbc, 0x0a,0xa0,0x00,0x00,0x00,0x11,0x40,0x80,0x00,0x00,0x81,0x11,0x10,0x00,0x04, 0x00,0x02,0x41,0x26,0x08,0x01,0x21,0x40,0xa2,0x20,0x00,0x08,0x48,0x91,0x50, 0x84,0xa8,0x25,0x20,0xa2,0xc2,0x15,0x21,0x56,0xd2,0x5a,0x4a,0xa4,0x55,0x2a, 0xaa,0xfa,0xdb,0x7d,0x6f,0x6a,0xd5,0xab,0x55,0x7a,0xf5,0x25,0x54,0x49,0x62, 0x40,0x88,0x44,0x20,0x04,0x00,0x84,0x00,0x48,0xac,0x00,0x00,0x00,0x81,0x40, 0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x02,0x40,0x04,0x40,0x04,0x12,0x90,0x10, 0x01,0x48,0x12,0xb4,0x5a,0xc9,0x00,0x80,0x10,0x80,0x20,0x12,0x00,0x80,0x02, 0x00,0x00,0x40,0x10,0x10,0x01,0x08,0x00,0x10,0x40,0x14,0x88,0x02,0x00,0x02, 0x09,0x20,0x02,0x4a,0x0a,0x42,0x11,0x11,0x52,0x10,0x59,0x4a,0x4d,0x6d,0x55, 0x4a,0xaa,0xaa,0xa2,0xaa,0xeb,0x57,0x6d,0xab,0xb2,0xb5,0x36,0x56,0xeb,0x4d, 0x95,0x52,0x92,0x92,0x29,0x04,0x01,0x00,0x00,0x00,0x10,0x00,0x03,0x25,0x69, 0x08,0x00,0x00,0x20,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x01, 0x00,0x80,0x88,0x02,0x80,0x04,0x04,0x4f,0xaa,0xb4,0x24,0xa2,0x00,0x00,0x00, 0x09,0x10,0x00,0x00,0x08,0x00,0x02,0x01,0x00,0x00,0x04,0x20,0x04,0x42,0x02, 0x44,0x22,0x90,0x80,0x00,0x80,0x02,0x49,0x51,0xa4,0xa8,0x88,0x45,0x28,0xab, 0x4a,0xa9,0x22,0xb6,0xea,0xaa,0x55,0x29,0x2a,0xad,0x6d,0x6d,0xaa,0xde,0xed, 0x56,0xd5,0xaa,0xad,0x5a,0xa9,0x54,0x49,0x25,0x54,0x80,0x00,0x80,0x00,0x00, 0x00,0x00,0x08,0xaa,0xa4,0x20,0x22,0x00,0x02,0x04,0x40,0x80,0x00,0x00,0x00, 0x00,0x00,0x00,0x09,0x20,0x10,0x20,0x42,0x48,0x44,0x01,0x50,0x2d,0xe9,0x3b, 0x54,0x40,0x04,0x40,0x04,0x80,0x20,0x02,0x02,0x00,0x01,0x00,0x04,0x00,0x80, 0x20,0x01,0x10,0x00,0x00,0x11,0x09,0x02,0x12,0x89,0x12,0x88,0x04,0x8a,0x52, 0x25,0x25,0x12,0x92,0x45,0x75,0x54,0xad,0x5f,0xad,0x4a,0x8a,0xa5,0x54,0xa5, 0xab,0x7b,0x6f,0x7f,0x5a,0xdb,0x2a,0xaa,0xaa,0xaf,0x55,0x53,0x6a,0x54,0x95, 0x10,0x50,0x00,0x00,0x80,0x00,0x00,0x00,0xd5,0x15,0x02,0x80,0x44,0x00,0x10, 0x02,0x04,0x20,0x00,0x00,0x00,0x00,0x10,0x00,0x04,0x80,0x08,0x28,0x00,0x10, 0x08,0x4a,0x57,0x54,0x5a,0x92,0x00,0x00,0x00,0x00,0x10,0x02,0x08,0x08,0x00, 0x00,0x10,0x00,0x08,0x00,0x00,0x00,0x01,0x12,0x48,0x44,0x20,0x08,0x80,0x00, 0x00,0x41,0x22,0xa4,0x89,0x5a,0x04,0x11,0x25,0xb5,0xba,0xaa,0xab,0xba,0xb5, 0x29,0x54,0xda,0x4a,0x95,0x55,0x57,0xb5,0xd7,0xab,0x55,0x56,0xaa,0xab,0x5a, 0xb5,0x54,0xa9,0x22,0x28,0x01,0x00,0x01,0x02,0x00,0x44,0x00,0x02,0xf5,0x54, 0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x10,0x00,0x00,0x01,0x00, 0x04,0x42,0x02,0x2a,0x80,0x01,0x24,0xad,0x62,0x2d,0x49,0x50,0x00,0x01,0x10, 0x00,0x90,0x40,0x00,0x20,0x00,0x00,0x40,0x20,0x01,0x00,0x44,0x20,0x00,0x01, 0x00,0x81,0x20,0x50,0x04,0x55,0x24,0x08,0x52,0x55,0x54,0x92,0x94,0x94,0xaa, 0xd5,0x4a,0x94,0xff,0xaa,0xa5,0x22,0xd2,0xa2,0x55,0xaa,0xdd,0x6d,0x5d,0xed, 0x2a,0xaa,0xaa,0xdd,0x55,0x55,0x4a,0xaa,0xa9,0x05,0x44,0x50,0x04,0x00,0x00, 0x00,0x04,0x01,0xba,0x09,0x0a,0x41,0x00,0x12,0x00,0x00,0x00,0x00,0x81,0x00, 0x00,0x00,0x00,0x10,0x01,0x40,0x00,0x88,0x88,0x20,0x00,0x92,0x4e,0xa8,0xbb, 0x52,0x00,0x00,0x04,0x00,0x40,0x00,0x00,0x20,0x00,0x08,0x01,0x00,0x80,0x08, 0x09,0x00,0x04,0x80,0x00,0x24,0x04,0x05,0x20,0x90,0x22,0x10,0x55,0x49,0x42, 0xaa,0x40,0x25,0x53,0x76,0xb7,0x6d,0x56,0xbe,0xaa,0x9a,0xaa,0xaa,0x95,0xaa, 0xda,0xaf,0xdd,0xbf,0x75,0x55,0x7b,0x55,0x55,0x56,0xd5,0x55,0x54,0x94,0xa8, 0x90,0x24,0x10,0x08,0x00,0x00,0x10,0x4a,0xf5,0x64,0xa1,0x10,0x90,0x00,0x50, 0x10,0x00,0x00,0x00,0x08,0x00,0x00,0x80,0x00,0x90,0x80,0x10,0x02,0x08,0x80, 0x05,0x29,0x37,0x81,0x1b,0x48,0xa4,0x44,0x20,0x00,0x04,0x24,0x80,0x00,0x0a, 0x01,0x04,0x08,0x00,0x40,0x20,0x01,0x00,0x12,0x48,0x80,0x40,0x00,0x82,0x01, 0x35,0xa1,0x08,0x94,0x95,0x55,0x05,0x12,0x29,0xad,0x5a,0xb4,0x2b,0xfb,0xb4, 0xa9,0x55,0x55,0x4a,0x55,0x55,0xea,0xb6,0xfd,0xaa,0xaa,0xad,0x4b,0xba,0xaa, 0xad,0x5b,0x55,0x56,0x85,0x21,0x48,0x40,0x00,0x04,0x00,0x00,0x02,0xfa,0xaa, 0x84,0x44,0x42,0x04,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x10,0x00,0x00,0x01, 0x50,0x82,0x10,0x12,0x10,0x00,0x95,0x4d,0x54,0x2d,0x53,0x20,0x00,0x00,0x01, 0x00,0x00,0x20,0x00,0x80,0x20,0x10,0x00,0x01,0x00,0x00,0x14,0x20,0x00,0x00, 0x01,0x00,0x22,0x28,0x00,0x0a,0x84,0x52,0xa2,0xa2,0xea,0x20,0x89,0x56,0xdb, 0xb7,0x5b,0x95,0x56,0xd2,0x56,0xaa,0xaa,0xa9,0x6b,0x6a,0xb7,0x6f,0xff,0x6a, 0xaa,0xb6,0xaa,0xb5,0x55,0x5d,0x64,0xba,0x89,0x55,0x40,0x92,0x14,0x00,0x00, 0x00,0x00,0x55,0x55,0x51,0x50,0x00,0x10,0x01,0x00,0x00,0x01,0x10,0x00,0x00, 0x00,0x00,0x00,0x04,0x00,0x80,0x00,0x84,0x08,0x40,0x08,0x29,0x56,0x80,0x2b, 0x08,0x90,0x00,0x00,0x00,0x00,0x91,0x02,0x02,0x08,0x80,0x00,0x00,0x00,0x01, 0x00,0x40,0x04,0x88,0x05,0x48,0x12,0x00,0x80,0x48,0x85,0xa8,0x89,0x4a,0x4a, 0xd2,0x82,0x40,0x4a,0xb5,0x7a,0xd4,0x4a,0xbf,0x4a,0xab,0x55,0x55,0x55,0x55, 0xad,0xde,0xaa,0xbd,0xb6,0xaa,0xd2,0xaa,0xae,0xad,0xbe,0x9a,0x96,0xa4,0xa9, 0x2a,0x41,0x20,0x10,0x00,0x40,0x81,0x05,0x56,0x8a,0xa2,0x94,0xa8,0x10,0x20, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x02,0x80,0x44,0x02,0x04,0x08, 0x01,0x2a,0xad,0xa4,0x1d,0x52,0x48,0x81,0x00,0x10,0x10,0x04,0x00,0x48,0x02, 0x02,0x24,0x02,0x08,0x00,0x04,0x00,0x80,0x01,0x20,0x00,0x00,0x08,0x10,0x00, 0x25,0x52,0x25,0x25,0x25,0x55,0x48,0x84,0x82,0xaf,0xad,0x55,0x55,0xd5,0x6a, 0x95,0x6a,0xa5,0xaa,0xba,0xb6,0xbd,0xdb,0xfb,0x5a,0xa9,0x5a,0xf5,0x55,0x52, 0xb6,0x55,0x55,0x55,0x25,0x45,0x54,0x48,0x41,0x00,0x02,0x00,0x25,0x28,0xa5, 0x48,0x02,0x11,0x04,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88, 0x80,0x20,0x24,0x50,0x40,0x04,0x91,0x56,0x81,0x46,0xa9,0x52,0x04,0x10,0x81, 0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x04,0x20,0x04,0x10,0x10,0x0a, 0xc2,0x52,0x40,0x02,0x40,0x05,0x25,0x54,0xa8,0x92,0xaa,0x82,0x10,0x29,0x7a, 0xfe,0xaa,0x2a,0xbf,0xa9,0x6a,0xad,0x55,0x54,0xa6,0xaa,0xd7,0x6f,0x6e,0xea, 0xaa,0xa5,0x2d,0x55,0xad,0x5d,0xaa,0xa5,0x2a,0x92,0x51,0x25,0x11,0x00,0x00, 0x00,0x04,0x89,0x54,0x00,0x85,0x54,0x80,0x42,0x00,0x00,0x00,0x00,0x00,0x02, 0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x02,0x20,0x00,0x5a,0x4a,0x84,0x15, 0x04,0x81,0x10,0x00,0x00,0x04,0x00,0x20,0x00,0x00,0x00,0x00,0x20,0x00,0x10, 0x01,0x11,0x02,0x00,0x42,0xa8,0x09,0x04,0xa8,0x09,0x10,0x90,0x8a,0xaa,0xa9, 0x52,0xa1,0x40,0x04,0xaf,0x5b,0x4d,0x95,0x49,0xaa,0xad,0xb2,0xaa,0x52,0xab, 0x55,0x5d,0x75,0xab,0x2a,0xaa,0xb6,0xf6,0xaa,0xaa,0xaa,0xba,0xa9,0x4a,0xaa, 0x89,0x48,0xa0,0x00,0x08,0x00,0x00,0x04,0xa2,0xaa,0x50,0x00,0x49,0x10,0x00, 0x41,0x10,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x01,0x20,0x40,0x40,0x08,0x08, 0x02,0x89,0x6f,0x20,0x0a,0xa9,0x54,0x00,0x00,0x00,0x00,0x94,0x02,0x20,0x10, 0x44,0x08,0x00,0x11,0x00,0x08,0x04,0x00,0x45,0x09,0x60,0x24,0x90,0x00,0x20, 0x05,0x45,0x25,0x55,0x04,0xa8,0x09,0x02,0xaa,0xdb,0xff,0x55,0x6a,0xf6,0xb5, 0x6b,0x4d,0xad,0xeb,0x5d,0x6b,0x6f,0xde,0xdd,0xda,0xd6,0xd5,0x57,0xde,0xad, 0x2a,0xab,0x55,0x6f,0xaa,0xaa,0xa6,0x90,0x00,0x20,0x80,0x02,0xa9,0x54,0x01, 0x25,0x11,0x00,0x04,0x01,0x00,0x00,0x80,0x00,0x00,0x08,0x00,0x00,0x02,0x20, 0x80,0x04,0x92,0x40,0x40,0x08,0x25,0x34,0x82,0x44,0xa4,0x80,0x28,0x04,0x04, 0x20,0x00,0x00,0x0c,0x01,0x00,0x40,0x00,0x80,0x00,0x80,0x92,0x48,0x00,0x12, 0xb4,0xb2,0x40,0x28,0x80,0xa0,0xa4,0x12,0x54,0xaa,0xa2,0x82,0x08,0x02,0xab, 0x57,0xba,0xca,0x2a,0xdb,0x6d,0xb5,0x55,0x55,0x55,0xb5,0xba,0xf5,0x6a,0xaa, 0xa9,0x57,0x55,0x6b,0x56,0xa9,0x5a,0xa5,0x5b,0xda,0xa5,0x49,0x48,0x04,0x00, 0x00,0x11,0x12,0x29,0x2a,0x90,0x84,0x14,0xa9,0x20,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x08,0x00,0x04,0x00,0x01,0x00,0x09,0x00,0x02,0x94,0x9b,0x00,0x0a, 0x52,0x54,0x90,0x10,0x10,0x00,0x51,0x00,0x48,0x80,0x01,0x00,0x02,0x28,0x00, 0x00,0x01,0x00,0x11,0x08,0x88,0xa8,0x22,0x84,0x04,0x0b,0x51,0x49,0x52,0x05, 0x54,0x48,0x80,0x2a,0x55,0xdc,0xee,0x55,0xaa,0xad,0xb6,0xd5,0x55,0xb5,0x5e, 0xaa,0xd7,0xb7,0x5f,0x75,0x6f,0xea,0xdf,0xaa,0xb5,0x55,0x6a,0x9b,0x76,0xea, 0xaa,0xb5,0x50,0x40,0x00,0x00,0x42,0x49,0x84,0x02,0x4a,0x50,0x40,0x00,0x00, 0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x80,0x00,0x42,0x08,0x00,0x10, 0x08,0x4a,0x6d,0x08,0x05,0x95,0x02,0x00,0x40,0x40,0x01,0x04,0x12,0x04,0x00, 0x00,0x00,0x10,0x80,0x22,0x10,0x24,0x00,0x80,0x42,0x29,0x45,0x10,0x28,0x10, 0xa5,0x84,0x2a,0xaa,0xa8,0x91,0x01,0x08,0x8a,0xab,0x6b,0x3b,0xaa,0x59,0x56, 0xd5,0x5a,0xbd,0xd6,0xb5,0x56,0xbd,0x7d,0x57,0xaa,0xaa,0xb5,0x75,0x5a,0xd5, 0x45,0xad,0x6a,0xaf,0xad,0x55,0x55,0x41,0x00,0x00,0x08,0x00,0xa4,0xa9,0x54, 0x91,0x01,0x09,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x01,0x20,0x08,0x40,0x02,0x2a,0xaa,0x21,0x15,0x48,0xa8,0x10,0x00,0x00, 0x40,0x00,0x00,0x10,0x04,0x88,0x00,0x88,0x14,0x80,0x02,0x01,0x24,0x04,0x11, 0x02,0xa8,0x42,0x00,0x80,0x02,0x51,0x04,0x51,0x22,0x40,0x40,0x20,0x02,0x4a, 0xdc,0xec,0xaa,0xa5,0x6b,0xeb,0x6b,0x56,0x56,0xb5,0x5a,0xef,0xd6,0xda,0xaa, 0xb7,0xf5,0xbd,0x55,0x7a,0xb5,0x6a,0x95,0xb5,0xdb,0xb4,0xaa,0xb0,0x20,0x00, 0x00,0x06,0x12,0xa0,0x02,0x40,0x68,0x00,0x00,0x00,0x02,0x00,0x08,0x20,0x00, 0x00,0x00,0x80,0x20,0x01,0x00,0x24,0x00,0x42,0x00,0x08,0x8a,0xaa,0x00,0x04, 0xb5,0x04,0x42,0x00,0x00,0x04,0x10,0x40,0x40,0x00,0x01,0x02,0x02,0x00,0x00, 0x80,0x48,0x00,0x11,0x04,0x21,0x45,0x00,0xa2,0x09,0x15,0x44,0xaa,0xaa,0x95, 0x54,0x09,0x00,0x25,0x2b,0xb7,0xb6,0xaa,0x2a,0xb7,0x5a,0xd5,0xea,0xaa,0xde, 0xab,0x75,0x75,0x6d,0xaa,0xbd,0xda,0xae,0xa9,0x5a,0xaa,0xd5,0x6e,0xae,0xea, 0x96,0x95,0x48,0x82,0x21,0x00,0x01,0x45,0x0a,0x90,0x54,0x88,0x92,0xa2,0x02, 0x00,0x02,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x14,0x00,0x40, 0x02,0x55,0x5a,0x80,0x46,0xaa,0xa1,0x00,0x00,0x00,0x00,0x05,0x01,0x00,0x80, 0x80,0x00,0x08,0x02,0x12,0x08,0x05,0x10,0x40,0xa8,0x89,0x10,0x92,0x08,0x20, 0x00,0x22,0x25,0x24,0xa2,0x51,0x00,0x82,0x00,0x95,0x7a,0xda,0xab,0x95,0x5d, 0xef,0xdd,0x5b,0xad,0x6a,0xaa,0xdb,0xad,0xab,0x6a,0xae,0xb5,0x5a,0xad,0xbb, 0x55,0xba,0xab,0xf7,0x7d,0x6a,0xd5,0xb2,0x00,0x00,0x00,0x49,0x55,0x40,0x05, 0x41,0x24,0x00,0x88,0x08,0x00,0x10,0x00,0x00,0x20,0x00,0x00,0x00,0x01,0x00, 0x02,0x00,0x80,0x11,0x24,0x08,0x85,0x75,0x01,0x0a,0xd8,0x88,0x20,0x01,0x00, 0x10,0x20,0x04,0x02,0x00,0x08,0x08,0x00,0x40,0x00,0x00,0x80,0x01,0x04,0x42, 0x52,0x84,0x00,0x40,0x84,0x55,0x08,0x92,0x52,0x99,0x24,0x22,0x28,0x42,0x45, 0x57,0xb5,0xa5,0x55,0x56,0xba,0xb5,0x6a,0xaa,0xbe,0xab,0x7e,0xd6,0xb6,0xaa, 0xf5,0x56,0xad,0x56,0xac,0xad,0xd5,0x5d,0x5b,0xb5,0xaa,0x6d,0x48,0x10,0x00, 0x01,0x05,0x0a,0xa5,0x50,0x10,0x48,0x4a,0x20,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x08,0x52,0x24,0x40,0x00,0x02,0x52,0x9a,0x08,0x06, 0xaa,0x44,0x84,0x08,0x02,0x00,0x02,0x00,0x00,0x08,0x00,0x00,0x00,0x0a,0x00, 0x20,0x09,0x04,0x01,0x14,0xa2,0xa2,0xa4,0x02,0x00,0x08,0xa2,0x49,0x55,0x44, 0xa8,0x08,0x80,0x08,0x2b,0x55,0xf7,0x8a,0xaa,0xdb,0x6f,0xfb,0xd5,0x5a,0xca, 0xad,0x6b,0x75,0x6d,0xab,0x56,0xda,0xd5,0x55,0x5a,0xaa,0xae,0xeb,0xb5,0xda, 0xad,0x55,0x56,0x01,0x00,0x20,0x0a,0xd5,0x10,0x02,0x45,0x55,0x00,0x80,0x00, 0x08,0x00,0x00,0x00,0x00,0x20,0x02,0x00,0x08,0x24,0x00,0x00,0x00,0x04,0x40, 0x10,0x94,0x6a,0x00,0x17,0xd5,0x20,0x00,0x80,0x10,0x00,0x81,0x20,0x00,0x00, 0x40,0x80,0x11,0x00,0x20,0x02,0x20,0x24,0x04,0x42,0xaa,0xa8,0x80,0x20,0x12, 0xa2,0x01,0x2a,0xa2,0x35,0x42,0xa0,0x02,0x22,0xaa,0xaa,0xad,0x65,0xca,0xaa, 0xba,0xad,0x6a,0xb5,0x6a,0xb5,0xaa,0xad,0xbe,0xd5,0x52,0xb5,0x56,0xae,0xad, 0x5b,0x55,0x55,0xda,0xb6,0xd5,0x74,0xa8,0x04,0x01,0x00,0x01,0x12,0x42,0xa0, 0x12,0x88,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x80,0x80, 0x00,0x20,0xa4,0x00,0x10,0x04,0x49,0xb5,0x20,0x0b,0x7a,0x92,0xa0,0x00,0x00, 0x00,0x0a,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x01,0x04,0x02,0x00,0x10,0xaa, 0xab,0x45,0x09,0x04,0x40,0x15,0x12,0x12,0x54,0x88,0x5a,0x05,0x48,0x00,0x4a, 0x8b,0x54,0xaa,0xb5,0x7b,0x5f,0x76,0xed,0x5a,0xb6,0xaa,0xff,0x6b,0x5f,0x5a, 0xae,0xdd,0x4b,0x55,0xd6,0xaa,0xb7,0xbe,0xef,0xdb,0x7b,0x5a,0x15,0x20,0x04, 0x00,0x14,0x55,0x11,0x24,0x89,0x50,0xa0,0x20,0x00,0x00,0x00,0x00,0x01,0x00, 0x00,0x80,0x02,0x02,0x01,0x00,0x4a,0x00,0x92,0x80,0x05,0x24,0xaa,0x80,0x8f, 0xb6,0x48,0x04,0x01,0x00,0x40,0x00,0x82,0x22,0x20,0x00,0x08,0x00,0x48,0x04, 0x00,0x40,0xa0,0x42,0x2a,0xa2,0xb4,0x20,0x00,0x04,0x40,0x80,0xa9,0x25,0x55, 0x24,0x90,0x00,0x85,0x29,0x6d,0x7b,0x55,0xaa,0xd5,0x6d,0xbb,0x6a,0xb5,0xaa, 0xab,0x55,0x5a,0xd5,0xad,0xb2,0xa6,0xb5,0xaa,0xbb,0xb5,0xda,0xf5,0xb2,0xad, 0x4a,0xe4,0xa8,0x00,0x10,0x00,0x00,0x04,0x84,0x91,0x22,0x44,0x04,0x04,0x20, 0x00,0x40,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x24,0x00,0x00, 0x10,0x95,0x56,0x00,0x0e,0xdb,0x51,0x20,0x20,0x00,0x04,0x00,0x00,0x00,0x00, 0x02,0x00,0x05,0x02,0x20,0x10,0x00,0x04,0x00,0xaa,0xaa,0xd0,0x80,0x10,0x10, 0x2a,0x14,0x4a,0x51,0x48,0x94,0x20,0x20,0x10,0xad,0x25,0xaa,0xaa,0xad,0x7b, 0x5e,0xea,0xd5,0xd6,0xb5,0x55,0xfe,0xef,0x5e,0xea,0xd5,0x5a,0xaa,0xd5,0x4f, 0x56,0xab,0xdf,0xad,0xf5,0xab,0x50,0x0d,0x00,0x00,0x04,0x85,0x49,0x29,0x24, 0x11,0x10,0x40,0x80,0x00,0x21,0x00,0x48,0x00,0x00,0x00,0x00,0x00,0x08,0x04, 0x01,0x40,0x01,0x11,0x10,0x05,0x51,0x6d,0x00,0x2b,0xf5,0x20,0x09,0x00,0x12, 0x00,0x20,0x10,0x00,0x04,0x00,0x01,0x20,0x08,0x00,0x00,0x88,0x40,0x09,0x5d, 0xab,0x54,0x02,0x42,0x40,0x91,0x41,0x29,0x2a,0x56,0xa5,0x44,0x89,0x04,0x16, 0xaa,0xaa,0xaa,0xb6,0xdd,0x6f,0xdb,0x6a,0xb5,0x6a,0xaa,0xdb,0x55,0xb7,0xbf, 0x77,0xb5,0x7e,0xaa,0xf6,0xeb,0x5d,0x7a,0xdb,0x6a,0xd5,0xaa,0x50,0x24,0x40, 0x00,0x10,0x10,0x94,0x89,0x48,0xa2,0x08,0x00,0x80,0x00,0x01,0x00,0x20,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x10,0x40,0x00,0x10,0x2a,0xb6,0x82,0x0f, 0x5d,0x4a,0x40,0x04,0x40,0x00,0x02,0x01,0x00,0x00,0x08,0x20,0x00,0x04,0x80, 0x40,0x01,0x21,0x22,0x7f,0x5a,0xe1,0x10,0x00,0x04,0x2a,0x02,0xa5,0x44,0x25, 0x55,0x10,0x00,0x11,0x5c,0x14,0xd5,0x55,0x5b,0x6b,0x5a,0xf5,0xb5,0x5a,0xd6, 0xb7,0x77,0xb6,0xfd,0xd5,0xac,0xfa,0x97,0x55,0x55,0xbd,0x6b,0xff,0xb7,0xbd, 0x6a,0xa0,0x04,0x00,0x00,0x90,0x05,0x45,0x2a,0xa4,0x22,0x40,0xa2,0x04,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x48,0x00,0x22,0x01,0x20, 0x05,0x15,0x5a,0x00,0x17,0xea,0x20,0x91,0x00,0x00,0x01,0x00,0x20,0x10,0x90, 0x20,0x02,0x00,0x2a,0x01,0x02,0x00,0x54,0x01,0x1b,0xab,0x50,0x00,0x04,0x00, 0x90,0x90,0x28,0x32,0xb5,0xaa,0x44,0x00,0x01,0x26,0xa2,0x55,0xa5,0x55,0xdd, 0x57,0x5a,0xd5,0x6a,0xab,0x55,0xdd,0x6a,0xb6,0xdd,0x77,0x56,0xad,0x52,0xdb, 0x65,0xad,0x6d,0xae,0xeb,0x55,0x4a,0x81,0x00,0x04,0x02,0x41,0x50,0x80,0x49, 0x11,0x12,0x00,0x40,0x00,0x80,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x04, 0x00,0x04,0x80,0x04,0x00,0x00,0x59,0xd5,0x80,0x1d,0x55,0x4a,0x04,0x10,0x00, 0x10,0x00,0x00,0x00,0x00,0x80,0x00,0x01,0x04,0x08,0x00,0x24,0x80,0x89,0x7d, 0x6a,0xc4,0x89,0x20,0x48,0x4a,0x15,0xa5,0x94,0x9a,0xa9,0x11,0x11,0x24,0x91, 0x15,0xac,0x95,0x75,0x65,0x6a,0xb7,0x55,0x57,0x5a,0xda,0xb7,0xb5,0xff,0x76, 0xda,0xda,0xd6,0xaa,0xaa,0xfe,0xb6,0xff,0x7b,0xb5,0x6a,0x90,0x10,0x12,0x00, 0x00,0x14,0xaa,0x54,0xa0,0xa4,0x44,0x44,0x08,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x08,0x00,0x10,0x00,0x80,0x05,0x20,0x00,0x12,0x95,0x6c,0x40,0x47, 0xba,0xa0,0x50,0x00,0x82,0x00,0x08,0x84,0x40,0x00,0x04,0x40,0x10,0x00,0x00, 0x08,0x00,0x28,0x82,0x97,0x55,0x80,0x00,0x01,0x02,0x28,0x80,0x12,0x55,0xeb, 0x54,0x88,0x00,0x02,0x4a,0x44,0xaa,0xaa,0xad,0x5b,0x5d,0xdd,0xaa,0xad,0xad, 0x6f,0xed,0xdd,0x57,0xdb,0xed,0xb6,0xba,0xd5,0x6a,0xab,0x77,0xbf,0xdf,0xed, 0x55,0x04,0x04,0x00,0x21,0x09,0x02,0x52,0x82,0x12,0x41,0x01,0x11,0x01,0x00, 0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x20,0x00,0x20,0x02,0x10,0x02,0x40, 0x00,0x2a,0xab,0x04,0x1e,0xd5,0x15,0x22,0x20,0x08,0x00,0x00,0x00,0x02,0x00, 0x00,0x01,0x00,0x10,0x40,0x20,0x82,0x86,0x20,0x59,0xa5,0x52,0x20,0x08,0x10, 0x22,0x29,0x49,0x2a,0xb5,0x2a,0x44,0x00,0x11,0x24,0xa5,0x55,0x52,0xd7,0x6d, 0x6a,0xae,0xd5,0x56,0xd7,0xb5,0x7e,0xeb,0x7e,0xfe,0xb6,0xdb,0xed,0x56,0xab, 0x76,0xda,0xf6,0xd5,0x75,0x6a,0x20,0x80,0x40,0x00,0x21,0x09,0x08,0x52,0x84, 0x10,0x28,0x48,0x10,0x00,0x02,0x04,0x00,0x00,0x40,0x00,0x08,0x00,0x00,0x20, 0x04,0x00,0x00,0x20,0x08,0x05,0x1b,0xad,0x40,0x4b,0x6d,0x50,0x50,0x00,0x00, 0x04,0x40,0x10,0x10,0x08,0x08,0x08,0x00,0x81,0x00,0x00,0x08,0x49,0x0a,0xa4, 0xab,0x00,0x00,0x20,0x01,0x00,0x00,0x44,0x91,0x5a,0x94,0x10,0x84,0x81,0x50, 0x91,0x55,0x2a,0xaa,0xb6,0xbd,0x6a,0xaa,0xab,0x6a,0xbf,0x53,0x7d,0xfb,0xab, 0xf7,0x6d,0x6b,0x5b,0x59,0x5d,0xef,0xff,0xff,0x9a,0x94,0x02,0x01,0x00,0x82, 0x01,0x22,0x52,0x0b,0x21,0x44,0x81,0x20,0x42,0x04,0x00,0x10,0x02,0x00,0x00, 0x00,0x00,0x40,0x00,0x02,0x01,0x12,0x22,0x84,0x40,0x10,0xaa,0xaa,0x80,0x2f, 0xb5,0x2a,0x12,0x04,0x40,0x20,0x00,0x41,0x00,0x00,0x80,0x40,0x04,0x00,0x04, 0x81,0x01,0x28,0x00,0x55,0x12,0xa0,0x84,0x00,0x90,0x08,0x95,0x29,0x2a,0xe5, 0x55,0x04,0x00,0x08,0x05,0x25,0x15,0x55,0x5b,0x5b,0xd7,0xb7,0xbb,0x5a,0xfa, 0xd5,0x7e,0xd6,0xdf,0xff,0x6d,0xaa,0xfd,0xab,0xab,0x57,0x3e,0xff,0xb4,0xd5, 0x41,0x10,0x20,0x04,0x00,0x80,0x04,0x89,0x53,0x88,0x10,0x24,0x12,0x08,0x00, 0x00,0x00,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x40,0x10,0x00,0x00,0x01,0x00, 0x04,0x16,0xaa,0xa2,0xaa,0xd6,0xa4,0xa4,0x41,0x00,0x00,0x02,0x00,0x00,0x40, 0x01,0x00,0x20,0x00,0x00,0x04,0x00,0x04,0x92,0x84,0xac,0x04,0x00,0x02,0x04, 0x40,0x00,0x84,0x24,0xb6,0x92,0x21,0x00,0x01,0x20,0x8a,0xaa,0xaa,0xd5,0x7d, 0x5a,0xad,0xd6,0xad,0xbd,0x5a,0xd5,0xfb,0xff,0xfd,0xf6,0xd7,0xaa,0xed,0x54, 0xb5,0xdb,0xdb,0xeb,0x55,0x50,0x40,0x00,0x10,0x09,0x09,0x12,0x44,0x89,0x24, 0x42,0x41,0x40,0x40,0x80,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x04, 0x04,0x90,0x94,0x10,0x00,0x02,0xd5,0x55,0x94,0xaf,0xa9,0x52,0x40,0x04,0x09, 0x00,0x00,0x00,0x24,0x00,0x00,0x01,0x00,0x12,0x10,0x20,0x24,0x90,0x49,0x29, 0x54,0xa0,0x10,0x88,0x10,0x09,0x24,0x22,0x95,0x5b,0x48,0x00,0x10,0x44,0x14, 0x21,0x55,0x6a,0xaa,0xca,0xaa,0xaa,0x6d,0x56,0xe5,0xb7,0xb7,0x56,0xdb,0x6f, 0xbd,0xfa,0xf7,0x77,0xab,0x5a,0xff,0xff,0x7e,0xd5,0x4a,0x84,0x82,0x00,0x00, 0x40,0x41,0x52,0x60,0x11,0x08,0x10,0x10,0x14,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x04,0x11,0x00,0x42,0x04,0x01,0x04,0x00,0x04,0x2a,0x96,0xca,0xa9, 0xaa,0xa9,0x2a,0x10,0x20,0x00,0x40,0x04,0x80,0x04,0x00,0x00,0x01,0x04,0x01, 0x00,0x00,0x00,0x12,0x15,0x0a,0x02,0x00,0x00,0x40,0xa0,0x00,0x09,0x4a,0xae, 0xa8,0x88,0x01,0x00,0x01,0x15,0x4a,0x52,0xab,0x75,0x55,0x55,0x35,0xab,0x5d, 0xda,0xda,0xff,0x7f,0xff,0xee,0xad,0x5d,0x5a,0xb5,0x6e,0xab,0x7d,0xd5,0x55, 0x21,0x50,0x00,0x40,0x40,0x02,0x09,0x49,0x4a,0x94,0x22,0x84,0xa4,0x81,0x20, 0x00,0x00,0x20,0x00,0x00,0x80,0x00,0x80,0x00,0x01,0x01,0x00,0x08,0x50,0x00, 0x02,0x5e,0x52,0xaa,0xae,0xd5,0x48,0x90,0x00,0x02,0x04,0x04,0x20,0x02,0x10, 0x22,0x10,0x44,0x20,0x00,0x00,0x00,0x02,0x84,0x80,0xb6,0x90,0x42,0x01,0x02, 0x00,0x10,0x82,0x2a,0x7f,0xa8,0x00,0x80,0x10,0x40,0x02,0xaa,0xab,0xa4,0xaa, 0x55,0x56,0xaa,0xb5,0xf5,0x6b,0x5b,0xab,0xf7,0xf7,0xfb,0xf5,0x56,0xad,0x55, 0xab,0xfd,0xf7,0xef,0xea,0x89,0x00,0x08,0x08,0x04,0x40,0x24,0xa5,0x20,0x28, 0x80,0x20,0x40,0x54,0x00,0x00,0x40,0x00,0x00,0x20,0x00,0x10,0x00,0x00,0x08, 0x04,0x4a,0x41,0x01,0x20,0x09,0x25,0x2b,0x54,0xd5,0x52,0xaa,0x44,0x80,0x40, 0x40,0x00,0x00,0x08,0x00,0x00,0x01,0x00,0x08,0x08,0x01,0x05,0x10,0x22,0xaa, 0x5c,0x01,0x00,0x10,0x08,0x09,0x04,0x11,0x15,0x56,0xa4,0x88,0x00,0x00,0x09, 0x2b,0x2a,0x4a,0xab,0xa9,0x4a,0xa9,0xa5,0x5e,0xdb,0xb5,0x6e,0xfa,0xfe,0xfe, 0xde,0xad,0x6b,0x6a,0xea,0xbd,0xb7,0xdf,0xba,0xaa,0xc4,0x8a,0x20,0x01,0x10, 0x08,0x02,0x15,0x09,0x05,0x08,0x8a,0x22,0x01,0x00,0x80,0x00,0x00,0x00,0x00, 0x00,0x40,0x10,0x00,0x21,0x40,0x00,0x00,0x00,0x00,0x00,0x9a,0xaa,0xa5,0x7a, 0xad,0xa9,0x2a,0x04,0x09,0x00,0x10,0x82,0x22,0x80,0x00,0x00,0x08,0x20,0x40, 0x90,0x20,0x01,0x09,0x44,0xaa,0x44,0x08,0x04,0x20,0x00,0x40,0x01,0x4a,0xbf, 0x50,0x40,0x00,0x22,0x20,0x04,0xaa,0xaa,0xbd,0x54,0xa9,0x56,0xaa,0xab,0xfd, 0x6d,0x5b,0xd7,0xbf,0xff,0xfb,0xf5,0xbd,0x7f,0x56,0xd7,0xee,0xff,0xd7,0xeb, 0x52,0x20,0x00,0x50,0x00,0x00,0x90,0xc7,0x52,0x54,0x22,0x11,0x10,0x48,0x42, 0x02,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x24,0x12,0x00, 0x04,0x6a,0xaa,0xaa,0xaf,0x55,0x54,0x91,0x20,0x40,0x00,0x40,0x08,0x02,0x00, 0x80,0x20,0x00,0x01,0x00,0x00,0x00,0x84,0x02,0x91,0x74,0x00,0x00,0x40,0x80, 0x48,0x12,0x44,0xaa,0x52,0xa9,0x04,0x24,0x80,0x01,0x42,0x4b,0x15,0xa5,0xa2, 0x55,0x55,0x55,0x2d,0x6b,0xb5,0x6f,0x6d,0xf7,0xf7,0xbd,0x5e,0xb6,0xab,0xb6, 0xbb,0x7b,0xbe,0xf4,0xb5,0x24,0x88,0x00,0x00,0x80,0x82,0x0a,0x2a,0x48,0x92, 0x40,0x40,0x81,0x12,0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x40,0x41,0x04, 0x90,0x11,0x01,0x00,0x80,0x02,0x95,0x4a,0xab,0x52,0xab,0xaa,0x42,0x00,0x04, 0x08,0x00,0x20,0x00,0x08,0x08,0x82,0x00,0x88,0x02,0x00,0x84,0x10,0x29,0x45, 0x58,0x10,0x90,0x00,0x01,0x01,0x00,0x00,0x0d,0x4a,0xa4,0xa0,0x80,0x01,0x04, 0x01,0x2a,0xd5,0x5a,0x94,0xa5,0x55,0x52,0xb6,0xf5,0x76,0xbf,0xbf,0xfd,0xde, 0xef,0xea,0xdf,0xf5,0x6b,0x6f,0xde,0xfb,0xbb,0x5a,0x80,0x24,0x82,0x0a,0x20, 0x10,0x21,0x11,0x22,0x49,0x0a,0x12,0x24,0x41,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x01,0x00,0x10,0x25,0x40,0x48,0x44,0x00,0x00,0x6a,0xa9,0x55,0x5f, 0x56,0xa5,0x30,0xa2,0x00,0x80,0x00,0x80,0x00,0x80,0x00,0x00,0x20,0x00,0x00, 0x02,0x00,0x00,0x80,0xa9,0x6c,0x42,0x01,0x09,0x10,0x04,0x00,0x22,0xa5,0x52, 0x50,0x80,0x00,0x08,0x10,0x10,0xab,0x2b,0xea,0xa2,0x55,0x2a,0x95,0x5b,0xaa, 0xea,0xea,0xd5,0xbf,0xff,0xb5,0x55,0x55,0x5e,0xd5,0xaa,0xf7,0x6f,0x6d,0x6a, 0x55,0x00,0x10,0x40,0x84,0x00,0x14,0x88,0x08,0x52,0x40,0x80,0x00,0x04,0x48, 0x00,0x00,0x10,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x05,0x01,0x01,0x00, 0x05,0x2a,0xaa,0xaa,0xa5,0x6b,0x54,0x8a,0x10,0x20,0x02,0x10,0x01,0x10,0x02, 0x00,0x00,0x00,0x24,0x20,0x20,0x11,0x42,0x02,0x42,0xa8,0x00,0x00,0x00,0x04, 0x10,0x52,0x08,0x55,0x2a,0xaa,0x68,0x00,0x20,0x40,0x45,0x24,0xd5,0x5b,0x59, 0x52,0xae,0xab,0x5a,0xab,0xb6,0xdf,0x7e,0xff,0x7b,0xf7,0xff,0xef,0xeb,0xb4, 0xb5,0x5b,0xfe,0xfa,0xa9,0x02,0xaa,0x00,0x0a,0x00,0x00,0x82,0x55,0x42,0x09, 0xaa,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x01,0x04,0x00,0x02, 0x68,0xa0,0x24,0x10,0x00,0x02,0x55,0x52,0xa5,0x55,0xb5,0x55,0x68,0x40,0x02, 0x08,0x40,0x00,0x00,0x08,0x40,0x08,0x82,0x00,0x05,0x00,0x00,0x00,0x10,0x0a, 0xaa,0x08,0x24,0x20,0x48,0x41,0x00,0x00,0x12,0x92,0x94,0x01,0x09,0x00,0x00, 0x10,0x95,0xaa,0xe4,0xa5,0x29,0x52,0x95,0x6d,0x55,0x5a,0xaf,0xd5,0xff,0xef, 0x5a,0xaa,0xb5,0xb4,0xd6,0xdb,0xbd,0x6b,0xad,0x74,0xa9,0x00,0x91,0x00,0x10, 0x92,0x28,0x40,0x25,0x52,0x91,0x00,0x4a,0x40,0x12,0x04,0x00,0x00,0x00,0x41, 0x00,0x00,0x00,0x04,0x20,0x12,0x05,0x00,0x44,0x40,0x01,0x2a,0xaa,0xb4,0xaa, 0xd5,0x55,0x14,0x84,0x00,0x41,0x04,0x04,0x41,0x00,0x01,0x00,0x00,0x08,0x80, 0x00,0x00,0x08,0x40,0x41,0x50,0x80,0x00,0x02,0x00,0x00,0x84,0x44,0x89,0x2a, 0x52,0x40,0x00,0x01,0x02,0x08,0x52,0xaa,0xb7,0x49,0x4a,0x4a,0x4a,0xbd,0xaa, 0xeb,0x75,0xff,0xbb,0xff,0xef,0x6d,0xfb,0x6f,0x6a,0xad,0x6b,0xbd,0xda,0xaa, 0x44,0xa4,0x00,0x24,0x80,0x00,0x05,0x15,0x90,0x8a,0xa4,0x92,0x00,0x01,0x00, 0x00,0x08,0x00,0x01,0x00,0x00,0x08,0x00,0x10,0x02,0x48,0x20,0x12,0x01,0x00, 0x00,0x55,0x55,0x55,0x55,0x6d,0x52,0xc2,0x00,0x08,0x00,0x50,0x40,0x00,0x04, 0x04,0x00,0x11,0x20,0x00,0x09,0x12,0x20,0x04,0x14,0x6c,0x11,0x01,0x00,0x22, 0x08,0x00,0x00,0x24,0x81,0x55,0x24,0x00,0x04,0x10,0x42,0x4a,0x95,0x59,0x25, 0x2a,0xa9,0x25,0x55,0x57,0xad,0x9b,0x55,0xff,0x7b,0x5a,0xbb,0x5d,0xb5,0x55, 0xb6,0xfa,0xeb,0x7d,0xd2,0x11,0x01,0x24,0x00,0x02,0x00,0xa8,0xa2,0x25,0x24, 0x92,0x40,0x20,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x20,0x00,0x00, 0x20,0x81,0x00,0x28,0x00,0x05,0x14,0x55,0xaa,0xab,0x55,0x55,0x20,0x40,0x80, 0x42,0xa4,0x00,0x84,0x10,0x00,0x11,0x20,0x02,0x00,0x00,0x00,0x01,0x10,0x80, 0xb0,0x00,0x10,0x10,0x80,0x41,0x11,0x22,0x90,0x55,0x52,0x20,0x24,0x90,0x00, 0x08,0x32,0x4a,0xf6,0xd4,0x92,0x54,0xa9,0x7a,0xa9,0xbb,0x6f,0xbf,0x7f,0xde, 0xeb,0x6e,0xa5,0x6a,0xab,0x6d,0xad,0xb7,0xd6,0x49,0x44,0x48,0x01,0x49,0x20, 0x42,0x05,0x10,0x89,0x52,0xa5,0x12,0x02,0x04,0x10,0x20,0x00,0x00,0x00,0x00, 0x00,0x20,0x00,0x80,0x24,0x92,0x08,0x49,0x00,0x00,0x10,0x55,0x5a,0xb5,0x54, 0xf5,0x55,0x55,0x08,0x00,0x10,0x80,0x02,0x10,0x00,0x00,0x00,0x04,0x88,0x12, 0x40,0x44,0x80,0x00,0x12,0x1a,0x00,0x00,0x02,0x04,0x04,0x00,0x00,0x14,0x94, 0xa9,0x80,0x04,0x00,0x41,0x25,0xab,0x69,0xd5,0xa2,0x49,0x2a,0x95,0xad,0xd7, 0x6d,0x75,0x6b,0xda,0xbb,0x5a,0xa2,0xb5,0xf5,0xda,0xb6,0xeb,0x5d,0xbb,0xa9, 0x11,0x02,0x90,0x00,0x00,0x08,0x22,0x4a,0x44,0x89,0x52,0xa1,0x20,0x20,0x04, 0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x29,0x10, 0x01,0x12,0xaa,0xd5,0x4b,0x2a,0xaa,0x90,0x80,0x42,0x02,0x41,0x08,0x00,0x00, 0x80,0x84,0x28,0x00,0x00,0x02,0x00,0x08,0x00,0x40,0x50,0x44,0x89,0x00,0x00, 0x10,0x24,0x08,0x40,0x22,0x45,0x52,0x00,0x00,0x04,0x02,0x09,0x26,0xba,0xaa, 0x2a,0xa9,0x55,0x76,0xab,0x5a,0xad,0xb6,0xf7,0x6d,0xad,0xaa,0x96,0xaa,0x6b, 0xab,0x56,0xeb,0xd6,0x92,0x84,0xa8,0x02,0x24,0x88,0x20,0x88,0x24,0x92,0xa4, 0x8a,0x84,0x04,0x80,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x40, 0x48,0x48,0x24,0x00,0x00,0x00,0x8a,0x55,0x52,0x55,0x6a,0x55,0x55,0x01,0x00, 0x21,0x04,0x00,0x80,0x40,0x00,0x00,0x24,0x00,0x00,0x00,0x24,0x00,0x44,0x05, 0x08,0x00,0x00,0x20,0x21,0x00,0x00,0x81,0x12,0x14,0x1a,0x90,0x41,0x00,0x00, 0x14,0xaa,0xd2,0xd6,0xa9,0x4a,0x44,0x92,0xab,0x55,0x6b,0x56,0xaf,0xba,0xb6, 0xb6,0xaa,0xaa,0xed,0xaa,0xda,0xeb,0x5a,0xfa,0xc8,0x52,0x00,0x00,0x80,0x01, 0x00,0x02,0x92,0x4a,0x2a,0x55,0xa1,0x10,0x00,0x00,0x00,0x00,0x80,0x00,0x00, 0x04,0x00,0x00,0x00,0x02,0x04,0x02,0x80,0xa4,0x00,0x00,0x5a,0x4b,0xad,0x52, 0xb9,0x55,0x54,0x48,0x08,0x8a,0x50,0x01,0x29,0x02,0x08,0x22,0x92,0x24,0x42, 0x10,0x12,0x82,0x01,0x10,0x21,0x04,0x00,0x04,0x84,0x20,0x80,0x00,0x08,0x8a, 0xaa,0xc9,0x08,0x01,0x10,0x8a,0x0a,0x5b,0xbb,0xa6,0x52,0xaa,0x4a,0xb5,0xbf, 0x5a,0xbb,0xed,0xed,0xdd,0x7b,0x55,0x6f,0x55,0x5f,0x6d,0xdd,0xef,0x5f,0x65, 0x49,0x49,0x24,0x04,0x40,0x09,0x50,0x29,0x20,0xaa,0xb6,0xd0,0x44,0x00,0x00, 0x08,0x00,0x00,0x00,0x00,0x20,0x04,0x10,0x02,0x08,0x10,0x88,0x12,0x00,0x80, 0x02,0x0a,0x55,0x54,0xab,0xad,0x55,0x93,0x00,0x00,0x10,0x81,0x00,0x00,0x00, 0x00,0x84,0x20,0x00,0x00,0x40,0x00,0x10,0x10,0x01,0x08,0x00,0x44,0x00,0x00, 0x02,0x12,0x24,0x40,0x25,0x55,0x54,0x00,0x08,0x02,0x55,0x25,0x55,0xfd,0xa9, 0x29,0x25,0x29,0x6b,0x45,0x55,0xae,0xaf,0x76,0xab,0x4d,0xaa,0xba,0xd5,0xab, 0xb6,0xed,0x5a,0xea,0xaa,0x4a,0x00,0x00,0x21,0x08,0x80,0x0a,0x84,0xca,0x55, 0x55,0x25,0x10,0x02,0x20,0x00,0x00,0x00,0x00,0x00,0x80,0x10,0x00,0x08,0x00, 0x82,0x00,0x40,0x24,0x00,0x00,0xaa,0x55,0xaa,0xaa,0xb5,0x55,0x54,0x40,0x00, 0x29,0x54,0x10,0x84,0x01,0x20,0x02,0x9a,0x40,0x08,0x00,0x11,0x00,0x00,0x44, 0x20,0x10,0x00,0x82,0x00,0x40,0x00,0x00,0x12,0x15,0x6a,0xa2,0x22,0x20,0x40, 0x55,0x14,0xaa,0xea,0xaa,0x85,0x50,0x92,0xad,0x6d,0x5a,0xb5,0xbb,0xba,0xad, 0xb6,0xb5,0x5d,0xaa,0xde,0xdb,0x56,0xf7,0x7f,0xe9,0x24,0x54,0x12,0x88,0x00, 0x25,0x24,0x52,0x21,0x2a,0xd5,0x40,0x0a,0x88,0x02,0x00,0x01,0x00,0x00,0x00, 0x00,0x00,0x80,0x40,0x00,0x08,0x15,0x14,0x00,0x00,0x01,0x05,0x55,0x5a,0xaa, 0xde,0xb5,0x49,0x09,0x22,0x10,0xa0,0x02,0x21,0x04,0x00,0x04,0xa4,0x02,0x01, 0x00,0x80,0x00,0x45,0x00,0x80,0x41,0x40,0x10,0x12,0x08,0x88,0x81,0x08,0x49, 0x58,0x54,0x08,0x00,0x09,0x54,0x92,0xad,0xbb,0xa9,0x54,0xaa,0x49,0x65,0x55, 0x56,0xaa,0xde,0xed,0x6b,0x6a,0xd5,0x6b,0xad,0x6b,0x6b,0xd5,0x9a,0xaa,0xaa, 0xd2,0x81,0x40,0x00,0x41,0x00,0x02,0x88,0x88,0xa5,0x55,0x95,0x40,0x00,0x00, 0x00,0x40,0x00,0x80,0x04,0x00,0x00,0x00,0x00,0x24,0x40,0x40,0x41,0x28,0x00, 0x00,0xaa,0x54,0xaa,0xad,0xaa,0xaa,0xaa,0x40,0x00,0x55,0x08,0x40,0x08,0x20, 0x00,0x10,0x93,0x10,0x20,0x00,0x02,0x42,0x00,0x12,0x04,0x08,0x84,0x00,0x40, 0x00,0x20,0x08,0x24,0x25,0x6e,0x92,0x20,0x80,0x00,0xca,0x4a,0x95,0x55,0x54, 0xaa,0xa9,0x55,0x56,0xb5,0x59,0x5e,0xd7,0x6f,0x56,0xd7,0x56,0xbd,0x6b,0xaf, 0xaa,0xb5,0x6d,0xdf,0x6d,0x49,0x10,0x0a,0x44,0x08,0x21,0x55,0x2a,0x45,0x55, 0x5d,0x42,0x12,0x40,0x40,0x00,0x00,0x00,0x00,0x10,0x00,0x40,0x00,0x00,0x01, 0x00,0x00,0x08,0x01,0x20,0x00,0x54,0x56,0xb5,0x56,0xbd,0x55,0xa9,0x10,0x00, 0x2a,0xa0,0x00,0x21,0x01,0x42,0x02,0x2a,0x80,0x00,0x04,0x00,0x00,0x01,0x40, 0x00,0x00,0x40,0x02,0x00,0x82,0x01,0x00,0x80,0x92,0xb2,0x54,0x00,0x05,0x20, 0x51,0x12,0x6a,0xb6,0xaa,0x49,0x55,0x55,0xab,0xac,0xaa,0x8b,0x6d,0xb2,0xbb, 0x5a,0xeb,0xd7,0xaa,0x55,0xdf,0xd5,0xab,0x75,0xf5,0x6a,0x45,0x02,0x10,0x80, 0x08,0x00,0x8b,0x28,0x29,0x6e,0xd4,0x41,0x00,0x00,0x20,0x00,0x00,0x00,0x40, 0x00,0x02,0x01,0x00,0x00,0x12,0x0a,0x42,0x94,0x00,0x01,0x05,0x15,0x55,0x6a, 0xae,0xea,0xac,0xa2,0x11,0x14,0x82,0x04,0x04,0x08,0x08,0x00,0x8a,0xa0,0x04, 0x90,0x00,0x00,0x01,0x09,0x20,0x04,0x00,0x88,0x04,0x10,0x40,0x22,0x12,0x0a, 0xad,0x48,0x45,0x50,0x02,0x25,0x49,0x55,0x4b,0xb2,0xa5,0x4a,0xad,0x2a,0xaa, 0x55,0x6b,0xbe,0xd7,0xd6,0xd7,0xb6,0xbd,0xd3,0x6f,0x6b,0x6a,0x5d,0xdf,0x6a, 0xa4,0x00,0x29,0x40,0x02,0x41,0x24,0x25,0x02,0x95,0x3d,0xa1,0x14,0x52,0x00, 0x00,0x00,0x04,0x02,0x00,0x00,0x00,0x20,0x01,0x24,0x00,0xa0,0x00,0x00,0x00, 0x00,0xb2,0xaa,0xdb,0x55,0xd5,0xb7,0x55,0x40,0x40,0x15,0x25,0x10,0x90,0xa1, 0x50,0x4a,0x2a,0xe9,0x00,0x00,0x10,0x10,0x48,0x40,0x82,0x11,0x22,0x00,0x00, 0x01,0x04,0x00,0x00,0x45,0x55,0x52,0x00,0xc0,0x00,0x9a,0x96,0xaa,0xb4,0xad, 0x52,0xa9,0x55,0x56,0xa5,0x48,0x95,0x55,0xaa,0x5f,0xba,0xdb,0x76,0xba,0xab, 0xfb,0xaa,0xab,0x75,0xfd,0x55,0x55,0x44,0x14,0x20,0x04,0x02,0x94,0xa8,0x54, 0xd6,0x54,0xa2,0x80,0x02,0x01,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x01, 0x20,0x00,0x4a,0x50,0x00,0x00,0x48,0x5a,0x6d,0x7a,0xb7,0x7b,0xaa,0x90,0x04, 0x4d,0x46,0x02,0x02,0x04,0x09,0x00,0x97,0xa0,0x22,0x40,0x80,0x41,0x00,0x0a, 0x28,0x02,0x00,0x00,0x42,0x44,0x00,0x14,0x24,0x92,0xb6,0xaa,0x92,0xa0,0x90, 0x24,0xa9,0x4d,0x57,0x7a,0xaa,0xad,0x5d,0x5a,0xb5,0x55,0x55,0xb6,0xdd,0xeb, 0x57,0x7d,0x5d,0xee,0xff,0xdd,0x77,0xf7,0xef,0x77,0x55,0x21,0x32,0xa1,0x09, 0x01,0x48,0x55,0x4a,0x8b,0x7b,0x4a,0x14,0x14,0x08,0x40,0x01,0x00,0x00,0x00, 0x01,0x08,0x00,0x00,0x04,0x04,0x02,0x01,0x04,0x00,0x00,0x56,0x8b,0x55,0x56, 0xd5,0xae,0xd5,0x4a,0x00,0x25,0x05,0x00,0x24,0x41,0x44,0x28,0x4a,0xd0,0x00, 0x08,0x01,0x00,0x00,0x00,0x80,0x40,0x10,0x21,0x08,0x00,0x21,0x00,0x80,0x41, 0x2d,0x44,0x00,0x02,0x04,0x91,0x05,0x52,0xa9,0x4b,0xb5,0x55,0xaa,0xad,0xaa, 0x94,0x55,0x6e,0xab,0xb6,0xa9,0x96,0xef,0xb7,0xaf,0x77,0xda,0xad,0xbb,0xbe, 0xb5,0x4a,0x48,0x08,0x00,0x50,0x11,0x12,0x50,0x20,0x4d,0x51,0x44,0x41,0x00, 0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x80,0x44,0x40,0x40,0x88,0x24,0x90,0x80, 0x00,0x29,0x54,0xb5,0x6b,0x4a,0xf7,0x52,0xa0,0x91,0x14,0x15,0x09,0x01,0x14, 0x12,0x82,0x2b,0x44,0x04,0x80,0x00,0x00,0x02,0x48,0x44,0x00,0x41,0x00,0x00, 0x11,0x00,0x28,0x12,0x0a,0x16,0xb4,0x40,0x40,0x00,0x2a,0x54,0xaa,0xaa,0xad, 0xda,0xaa,0xaa,0xaa,0xdb,0x55,0x55,0xb5,0xdd,0x6d,0xaa,0xfb,0x75,0x5b,0x7f, 0xfa,0xee,0xb7,0xde,0xd7,0x54,0xa9,0x25,0x51,0x48,0x05,0x00,0x49,0x05,0x55, 0x6a,0x44,0xa9,0x04,0x20,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x04,0x00,0x08, 0x02,0x00,0x88,0x00,0x00,0x01,0x2a,0x55,0x5a,0xbd,0x6e,0xaf,0x5d,0xaa,0x00, 0x25,0x42,0x20,0x88,0x80,0x88,0x10,0x8a,0xa0,0x90,0x12,0x10,0x00,0x00,0x01, 0x11,0x00,0x08,0x04,0x21,0x00,0x08,0x00,0x00,0xa0,0xaa,0xa9,0x09,0x08,0x91, 0x28,0x55,0x55,0x2d,0x56,0xaa,0xd5,0x55,0x57,0x6a,0xda,0xaa,0xf7,0x6a,0xde, 0xab,0x56,0xdf,0xff,0xaf,0xef,0xb5,0xed,0x77,0x7d,0x55,0x26,0x90,0x84,0x02, 0x00,0x49,0x16,0xa9,0x0a,0xad,0x29,0x24,0x00,0x00,0x40,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x20,0x40,0x01,0x2a,0x00,0x00,0x29,0x4a,0xb5,0xd6, 0x95,0x7b,0xa5,0xa8,0x44,0x16,0x00,0x02,0x05,0x28,0x41,0x42,0x16,0x0a,0x01, 0x00,0x40,0x09,0x08,0x10,0x20,0x44,0x00,0x20,0x84,0x22,0x40,0x84,0x90,0x02, 0x1d,0xa8,0x00,0x00,0x00,0x22,0xaa,0xa8,0xa5,0xaf,0xff,0x6a,0xb5,0x56,0xab, 0x74,0x57,0x5f,0xb7,0x76,0xd5,0x7d,0xb5,0x57,0xfd,0xfb,0xf6,0xb7,0xfd,0xab, 0xd4,0x95,0x55,0x51,0x20,0xa9,0x00,0x49,0x44,0x51,0x52,0xa5,0x68,0x00,0x00, 0x04,0x10,0x00,0x00,0x00,0x40,0x04,0x00,0x24,0x91,0x08,0x12,0x24,0x00,0x00, 0x00,0x15,0x2a,0x5b,0x34,0xb7,0xae,0xf6,0xd4,0x10,0x09,0x4a,0x08,0x11,0x01, 0x10,0x08,0x4a,0xa0,0x00,0x40,0x02,0x40,0x00,0x42,0x05,0x00,0x42,0x00,0x00, 0x00,0x04,0x00,0x14,0x48,0xab,0xb4,0x00,0x01,0x22,0x29,0xca,0x92,0x5a,0xaa, 0xaa,0xaf,0x55,0x5b,0x55,0x55,0x51,0xb6,0xdd,0xaa,0xaa,0xa7,0xd5,0xb5,0x57, 0xfe,0xdb,0xdf,0xfe,0xde,0xb5,0x55,0x55,0x28,0x88,0x00,0x25,0x24,0x92,0xaa, 0xaa,0x92,0xb0,0x08,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x00,0x00, 0x01,0x00,0x81,0x44,0x20,0x00,0x4a,0xaa,0xaa,0xd5,0x54,0xeb,0xb5,0xa5,0x20, 0xa5,0x11,0x20,0x40,0xa4,0x0a,0x21,0x2a,0x08,0x44,0x08,0x08,0x00,0x00,0x08, 0x90,0x80,0x08,0x12,0x22,0x08,0x10,0x11,0x41,0x00,0x56,0xd0,0x80,0x20,0x00, 0x8a,0xaa,0xa1,0x56,0xab,0x77,0xb5,0x69,0x4e,0xaa,0xaa,0xad,0x5f,0x6b,0x5b, 0x5b,0x59,0x2d,0x5d,0xff,0xf7,0xfd,0x6b,0x6d,0x65,0x6a,0xa6,0xd4,0xa4,0x02, 0x11,0x00,0x12,0x49,0x25,0x55,0x4a,0xd4,0x80,0x02,0x00,0x00,0x40,0x00,0x00, 0x00,0x10,0x08,0x24,0x04,0x48,0x40,0x04,0x10,0x00,0x00,0x09,0x55,0x57,0x6a, 0xab,0x37,0xdb,0x54,0x82,0x12,0x44,0x01,0x02,0x11,0x20,0x8c,0x55,0x54,0x00, 0x00,0x00,0x00,0x41,0x20,0x00,0x10,0x00,0x80,0x88,0x42,0x81,0x04,0x94,0x12, 0x0a,0xaa,0x12,0x00,0x92,0x00,0x94,0x8a,0x5a,0xad,0xaa,0xad,0x4a,0xb5,0x55, 0x55,0x2a,0xed,0x5a,0xd5,0xea,0xd6,0xd5,0x77,0x5f,0xfb,0x6b,0xbf,0xff,0x57, 0x7a,0xaa,0xaa,0x52,0x40,0x44,0x25,0x49,0x24,0xaa,0x00,0x2a,0x68,0x02,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x20,0x00,0x09,0x10,0x00,0x00, 0x00,0x05,0x55,0xaa,0xa5,0x55,0x6a,0xfe,0xaa,0x40,0x09,0x28,0x90,0x00,0x80, 0x04,0x02,0x15,0x54,0x00,0x01,0x28,0x20,0x04,0x02,0x42,0x41,0x22,0x09,0x21, 0x00,0x04,0x21,0x22,0x04,0x95,0xa4,0x00,0x04,0x00,0x15,0x52,0x41,0x6d,0xb5, 0x75,0x55,0x55,0x56,0xa2,0xaa,0xd7,0x7b,0x55,0x5a,0x55,0x55,0xbb,0x6d,0xef, 0xdf,0xfd,0x6a,0xed,0x5a,0xcd,0x57,0xea,0xa9,0x11,0x00,0x00,0x12,0x42,0x5e, 0xaa,0xa5,0xf0,0x08,0x00,0x20,0x00,0x00,0x08,0x21,0x24,0x40,0x02,0x14,0x01, 0x09,0x00,0x42,0x42,0x00,0x00,0x24,0xaa,0xad,0xda,0xaa,0xbb,0xf5,0x6d,0x2a, 0xa5,0x28,0x04,0x0a,0x55,0x42,0x55,0x4a,0x49,0x00,0x48,0x00,0x82,0x00,0x20, 0x00,0x00,0x08,0x42,0x28,0x0a,0x80,0x0a,0x89,0x20,0x16,0xaa,0x40,0x80,0x04, 0x40,0x29,0x11,0x6a,0x95,0x92,0xda,0xaa,0xab,0x5b,0x55,0x2a,0xdd,0x55,0x2d, 0xae,0xd7,0x55,0x5e,0xdf,0x76,0xab,0xff,0xbf,0xab,0xb7,0x55,0x55,0x54,0x44, 0x0a,0x49,0x44,0x29,0x2a,0x82,0xaa,0xa8,0xa2,0x91,0x01,0x00,0x00,0x80,0x00, 0x00,0x02,0x21,0x41,0x04,0x20,0x40,0x00,0x08,0x00,0x00,0x05,0x2a,0xb5,0xab, 0x55,0xae,0xfd,0xaa,0xa4,0x92,0x88,0x20,0xa0,0x20,0x11,0x08,0xaa,0xb4,0x91, 0x00,0x02,0x00,0x00,0x09,0x0a,0x08,0x42,0x25,0xaa,0x21,0x10,0x50,0xaa,0x04, 0x4a,0x41,0x0a,0x08,0x90,0x05,0x10,0x04,0xaa,0xaa,0xd4,0x6f,0x52,0xad,0xea, 0xaa,0xb7,0x75,0xaa,0xf7,0x73,0x5a,0xd5,0x75,0xff,0xfb,0xf7,0xea,0xea,0xdd, 0x7b,0x5f,0xda,0x4a,0x08,0x24,0x00,0x00,0x90,0x95,0x28,0x4a,0xd2,0x0a,0x20, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xac,0x50,0x04,0x24,0x94,0x80,0x00, 0x01,0x12,0x95,0x55,0xea,0xd5,0x5b,0xde,0xad,0x55,0x54,0x50,0x0a,0x2a,0x89, 0x4a,0x52,0x55,0x55,0x24,0x01,0x08,0x00,0x20,0x00,0x20,0x80,0x11,0x12,0xe8, 0x80,0x02,0x4a,0xa2,0x40,0x2e,0x08,0x00,0x00,0x01,0x10,0x44,0x82,0x55,0x56, 0x54,0xbd,0x54,0xab,0x5d,0x55,0xad,0xbb,0x6b,0x2b,0xdd,0x6b,0x55,0x9f,0x6d, 0xdd,0x5d,0xb5,0x5b,0x65,0xad,0xaa,0xd5,0x52,0x80,0x95,0x00,0x22,0x02,0x55, 0x45,0x12,0xa8,0x49,0x02,0xa0,0x08,0x00,0x00,0x00,0x00,0x08,0x02,0x42,0x80, 0x41,0x00,0x00,0x20,0x40,0x00,0x05,0x4a,0xd2,0xab,0x55,0x5d,0xfb,0xa5,0x55, 0x51,0x08,0x24,0x85,0x22,0x14,0x25,0x16,0xa8,0x88,0x10,0x20,0x04,0x81,0x00, 0x02,0x01,0x6a,0xa5,0x28,0x05,0x48,0xa4,0x99,0x02,0x15,0x22,0x40,0x00,0x44, 0x00,0x00,0x11,0x5a,0x55,0xaa,0xaa,0xaa,0x56,0xea,0x55,0x56,0xea,0x94,0xf5, 0x6a,0xad,0xaa,0xb5,0xff,0x6f,0xf6,0xee,0xb5,0xaa,0xd6,0xdb,0x75,0x09,0x10, 0x5a,0x24,0x80,0x04,0x0a,0x02,0x4a,0xd5,0x24,0x89,0x02,0x00,0x20,0x00,0x00, 0x01,0x01,0x21,0x34,0x92,0x14,0x22,0x49,0x04,0x00,0x00,0x42,0xaa,0xa8,0xd5, 0x52,0xab,0x7e,0xd5,0x42,0xa8,0x28,0x8a,0x50,0x94,0xa3,0x15,0xaa,0xad,0x54, 0x42,0x00,0x20,0x00,0x02,0x08,0x24,0xd4,0x56,0xd2,0xa0,0xa2,0x12,0x48,0x08, 0x90,0x88,0x20,0x04,0x00,0x41,0x10,0x04,0xad,0x52,0xd5,0x6f,0x69,0x5b,0x5d, 0x55,0x7b,0xbb,0x6b,0x57,0xb6,0xaa,0xaf,0x77,0xfb,0xe9,0x6d,0xbd,0x6e,0xd6, 0xb7,0x6d,0x5d,0x54,0x42,0x6c,0x80,0x08,0x10,0x91,0x51,0x15,0x52,0xa8,0x44, 0xa8,0x00,0x00,0x00,0x04,0x44,0x04,0x04,0x92,0x88,0x41,0x08,0x00,0x00,0x00, 0x00,0x05,0x4a,0xb1,0x6a,0xa9,0x7f,0xf6,0xb2,0xa9,0x55,0x04,0x25,0x15,0xa2, 0x94,0x4a,0xb6,0xa8,0x95,0x00,0x01,0x00,0x00,0x08,0x22,0x80,0x6a,0x8b,0x40, 0x09,0x48,0x49,0x29,0x00,0x15,0x20,0x40,0x90,0x12,0x08,0x02,0x40,0x54,0x55, 0xaa,0xb5,0x2a,0x55,0xea,0xab,0xd5,0x6d,0x55,0x6a,0xdb,0x57,0xd2,0xdd,0xbe, 0xb6,0xbd,0x56,0xb3,0x35,0x6a,0xaa,0xf6,0x92,0x01,0x35,0x00,0x01,0x00,0x0a, 0x0a,0x4a,0x54,0xa2,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x02,0x6a,0x61, 0x14,0x21,0x52,0x24,0x00,0x00,0x92,0x52,0x94,0xab,0x44,0x92,0xdd,0x54,0xa4, 0x50,0x11,0x10,0xa2,0x12,0xc9,0x29,0x55,0x55,0x54,0x01,0x00,0x00,0x00,0x20, 0x00,0x10,0xaa,0x5a,0xa4,0x20,0xa1,0x10,0x88,0x20,0x48,0x00,0x02,0x00,0x80, 0x40,0x40,0x11,0x54,0x56,0xaa,0xaa,0xa5,0x56,0xb7,0x6d,0x5e,0xd5,0x25,0x5b, 0x6d,0xb5,0x7d,0xab,0xf7,0xdb,0x6a,0xda,0xd5,0xaa,0xfa,0xd5,0x2f,0x49,0x11, 0x5a,0x84,0x44,0x04,0x40,0x20,0x25,0x4a,0xa9,0x10,0x14,0x00,0x01,0x00,0x40, 0x00,0x00,0x51,0x49,0x04,0x00,0x84,0x00,0x00,0x00,0x00,0x01,0x57,0x70,0xd5, 0x6a,0x6f,0xf6,0xab,0x52,0xb5,0x02,0x8a,0x91,0x49,0x24,0x85,0x54,0xaa,0x34, 0x55,0x50,0x00,0x01,0x00,0x08,0x80,0x51,0x57,0xd0,0x8a,0x04,0x0a,0x41,0x04, 0x84,0x89,0x00,0x00,0x0b,0x15,0x08,0x00,0xaa,0x55,0x55,0x56,0xb2,0x6b,0x5a, 0xaf,0x69,0x75,0xaa,0xad,0xb6,0xd7,0xae,0xdd,0x7d,0x6a,0xdb,0x6d,0x6e,0xd6, 0xab,0x7a,0xff,0x52,0x05,0x75,0x20,0x00,0x41,0x15,0x15,0x12,0x21,0x44,0x80, 0x00,0x00,0x80,0x00,0x00,0x10,0x01,0x05,0x25,0x60,0xa8,0x00,0x11,0x24,0x00, 0x00,0x05,0x69,0xd6,0xaa,0x85,0x55,0xaf,0x34,0xa9,0x58,0x40,0x41,0xaa,0x24, 0x95,0x55,0x4a,0xa9,0x10,0x42,0x82,0x44,0x04,0x00,0x02,0x24,0x2a,0x57,0xa2, 0x00,0xa0,0xa1,0x10,0x10,0x68,0x20,0x08,0x04,0x20,0xa0,0x00,0x84,0x54,0xaa, 0xaa,0xb5,0x4a,0xbb,0xed,0xb2,0xd7,0x5a,0xaa,0xeb,0x6b,0x5a,0xfb,0x67,0xef, 0xad,0xad,0x75,0xab,0xbb,0xf6,0xd5,0x4d,0xa4,0x41,0xf1,0x40,0x08,0x00,0x00, 0x02,0x49,0xaa,0x5a,0x00,0x84,0x08,0x00,0x02,0x00,0x80,0x44,0x11,0x55,0x08, 0x02,0x2a,0x40,0x00,0x00,0x00,0x42,0x93,0x5a,0xce,0xd5,0x6d,0x7a,0x95,0x52, 0x46,0x09,0x14,0x89,0x02,0xa9,0x25,0x36,0xa5,0x01,0x5a,0x50,0x00,0x20,0x00, 0x80,0x11,0x40,0x9b,0x90,0x00,0x14,0x14,0x44,0x41,0x91,0x02,0x20,0x21,0x05, 0x4a,0x42,0x10,0x9a,0xd5,0x55,0xae,0xaa,0xca,0xab,0xaf,0xb9,0xa5,0x55,0x37, 0xed,0xaf,0x5d,0x5a,0xfa,0xb5,0x75,0x56,0xda,0xd5,0x5d,0x5b,0x76,0x92,0x2a, 0xac,0x82,0x20,0x08,0x44,0x51,0x2a,0x49,0x50,0x10,0x00,0x00,0x00,0x00,0x02, 0x01,0x00,0x04,0xaa,0xa2,0x50,0x81,0x04,0x90,0x00,0x00,0x11,0x69,0xea,0xa5, 0xa2,0x95,0xad,0x55,0x69,0x59,0x40,0x42,0xaa,0x96,0x12,0x94,0x97,0x55,0x44, 0x09,0x08,0x00,0x00,0x00,0x10,0x80,0x14,0x55,0x68,0x12,0x40,0xa1,0x01,0x08, 0xa4,0x08,0x00,0x02,0x41,0x01,0x10,0x00,0xa5,0x2b,0x52,0xb7,0x55,0xb5,0xed, 0x7d,0x56,0xb5,0x55,0xb9,0x56,0xa9,0xeb,0x6f,0xae,0xd7,0xaa,0xaa,0xb7,0x7d, 0xf6,0xea,0xaf,0x2a,0x82,0xa2,0x68,0x00,0x01,0x00,0x0a,0x44,0xa5,0xaa,0x02, 0x00,0x00,0x04,0x00,0x00,0x00,0x09,0x2a,0xa5,0x04,0x24,0x08,0x10,0x04,0x00, 0x00,0x02,0x95,0x5a,0x97,0x54,0xb4,0xb7,0x2a,0xa5,0x55,0x00,0x14,0x90,0x21, 0x48,0x4b,0x4b,0xea,0x10,0x50,0xa0,0x12,0x00,0x04,0x00,0x6a,0x43,0x55,0xa4, 0x80,0x08,0x02,0x20,0x00,0xa0,0x40,0x80,0x0b,0x0b,0x54,0x84,0x02,0xaa,0xd5, 0xa5,0x5a,0xaa,0xaa,0xab,0xdb,0xea,0x57,0xb5,0x57,0xaa,0xab,0x35,0x35,0xfb, 0x5a,0xda,0xdb,0xaf,0xab,0x5d,0x5b,0xaa,0xa8,0x59,0x54,0x88,0x80,0x00,0x02, 0xa4,0x29,0xaa,0xa8,0x08,0x12,0x00,0x10,0x00,0x08,0x00,0x00,0x00,0xd2,0xa0, 0x80,0x21,0x02,0x40,0x00,0x00,0x41,0x6a,0xba,0xca,0xa9,0x4a,0x95,0x9a,0xa9, 0x4e,0x52,0x02,0x45,0x48,0xa5,0x24,0xa6,0xb5,0x40,0x87,0xd0,0x80,0x00,0x00, 0x02,0x90,0x2a,0xb6,0xd2,0x00,0x12,0x94,0x04,0x48,0x02,0x08,0x01,0x20,0x01, 0x80,0x28,0x91,0x2a,0xba,0xd2,0xeb,0x55,0xaa,0xba,0xbd,0x55,0x4a,0xd6,0xdd, 0x55,0x56,0xd4,0xd7,0x2a,0xb7,0x55,0x55,0x55,0x7f,0xf7,0x6d,0x55,0x55,0x55, 0x02,0x22,0x20,0x88,0x10,0x11,0x52,0x55,0xae,0x82,0x40,0x20,0x00,0x10,0x20, 0x24,0x21,0x55,0x0a,0x88,0x29,0x04,0x48,0x28,0x00,0x00,0x14,0xa9,0x55,0x66, 0xa5,0x5a,0x6a,0xad,0xd5,0x53,0x00,0x50,0x28,0x25,0x12,0xaa,0x95,0x6a,0x08, 0x08,0x50,0x00,0x28,0x20,0x40,0x19,0x02,0xdb,0x48,0x09,0x40,0x08,0x90,0x00, 0x08,0x20,0x00,0x00,0x2a,0x91,0x12,0x04,0xaa,0xee,0xab,0x35,0x56,0xaa,0xcb, 0xeb,0xab,0x5a,0xb5,0xb6,0xda,0xba,0xaa,0xad,0xdd,0x5b,0x6b,0x5b,0xbf,0xbb, 0x7a,0xa6,0xec,0x92,0xa2,0xa9,0x11,0x10,0x00,0x40,0x44,0x11,0x52,0xa9,0x00, 0x08,0x80,0x00,0x00,0x80,0x80,0x04,0x08,0xad,0x21,0x40,0x41,0x01,0x00,0x00, 0x00,0x01,0x2a,0xda,0xaa,0x96,0x4a,0x97,0xaa,0x42,0x55,0x42,0x0a,0x82,0x88, 0x54,0xa4,0xa6,0xe9,0x40,0x05,0xa8,0x00,0x01,0x00,0x08,0x0a,0xaa,0xd5,0x50, 0x20,0x08,0x22,0x01,0x21,0x20,0x84,0x88,0x01,0x02,0x40,0xac,0x82,0xa5,0x5a, 0xd5,0xde,0xa9,0x55,0x34,0x56,0xb5,0x4e,0xd5,0x6b,0x6a,0xaa,0xaa,0xb7,0x6b, 0x6d,0x55,0x4a,0xd5,0x5d,0xfd,0xdb,0x55,0x6a,0x54,0x04,0x44,0x42,0x00,0x01, 0x15,0x48,0xaa,0x94,0x02,0xa2,0x00,0x40,0x00,0x00,0x00,0x80,0x52,0x4a,0x82, 0x08,0x08,0x24,0x24,0x00,0x00,0x41,0x55,0x2a,0xa5,0x55,0x34,0xa5,0x55,0xaa, 0xa8,0x10,0x41,0x28,0x55,0x22,0x52,0x93,0x54,0x00,0x93,0x60,0x89,0x00,0x02, 0x00,0xa8,0xab,0x6e,0xa4,0x80,0x40,0x88,0x90,0x00,0x02,0x00,0x00,0x44,0x09, 0x08,0x4e,0x22,0x95,0xbf,0x4a,0xa2,0xd6,0xd5,0xab,0x6d,0x55,0xb5,0x5a,0xf5, 0x2a,0xd4,0xaa,0xd5,0xad,0xfb,0x6a,0xb5,0xbd,0xf7,0xef,0x57,0xab,0xa5,0xa9, 0x52,0x11,0x00,0x20,0x00,0x00,0x25,0x2a,0xae,0x08,0x00,0x00,0x00,0x00,0x00, 0x00,0x09,0x01,0x2a,0x10,0xa2,0x42,0x90,0x90,0x00,0x00,0x08,0x89,0xad,0xd5, 0x6a,0xd2,0xab,0x55,0x2a,0xb6,0x84,0x8a,0x41,0x22,0x95,0x29,0x68,0xad,0x22, 0x04,0xa8,0x00,0x14,0x40,0x00,0x15,0x29,0xd5,0x48,0x02,0x02,0x05,0x04,0x40, 0x00,0x22,0x21,0x00,0x42,0x42,0x04,0x82,0xaa,0xfd,0x57,0x7b,0x29,0x6a,0x95, 0xb6,0xb5,0xd6,0xd5,0xaf,0xf7,0x56,0xb7,0x57,0x5b,0xaa,0xb5,0xaa,0xd7,0x5f, 0xfa,0xda,0xd4,0x95,0x52,0xa0,0x84,0x20,0x02,0x20,0x55,0x12,0xaa,0x90,0x80, 0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x54,0x95,0x42,0x08,0x08,0x00,0x00,0x00, 0x00,0x22,0xaa,0xb7,0x52,0xaa,0x6d,0x55,0xaa,0xa9,0xa9,0x10,0x04,0x80,0xa9, 0x22,0xa4,0x44,0x29,0x00,0x12,0x80,0x01,0x09,0x00,0x45,0x28,0x84,0xb5,0x40, 0x00,0x48,0x40,0x21,0x09,0x12,0x08,0x00,0x00,0x00,0x10,0x51,0x09,0x55,0x56, 0xd5,0xad,0xaa,0xae,0xd5,0x55,0xae,0xd5,0x56,0xba,0xad,0x55,0x55,0x6d,0xb6, 0xeb,0x56,0xae,0xbb,0xee,0xff,0xaa,0xbe,0xaa,0xa4,0x54,0x20,0x81,0x00,0x04, 0x08,0xaa,0xaa,0x48,0x20,0x00,0x82,0x10,0x04,0x04,0x88,0x22,0x12,0x2a,0x08, 0xa1,0x22,0x49,0x28,0x00,0x00,0x01,0x4a,0x59,0x44,0xa9,0x55,0x56,0x55,0x2a, 0xaa,0x41,0x48,0x04,0x24,0x94,0xe9,0x52,0xa4,0x90,0x01,0x00,0x08,0xa4,0x08, 0x00,0x06,0x52,0x56,0xa2,0x49,0x00,0x12,0x00,0x00,0x00,0x00,0x80,0x12,0x11, 0x04,0x04,0x22,0xb6,0xfb,0x4e,0xee,0xab,0xba,0xaa,0xb5,0x55,0xb6,0xaa,0xdd, 0xea,0xa9,0x5b,0x5a,0xdb,0x5a,0xaa,0xba,0xad,0x5f,0xdb,0x75,0xc5,0x2a,0xa9, 0x41,0x08,0x04,0x10,0x00,0x20,0x04,0x49,0x52,0x80,0x02,0x00,0x00,0x40,0x00, 0x00,0x80,0xa9,0x48,0x82,0x08,0x01,0x10,0x00,0x00,0x00,0x08,0x55,0x66,0xb2, 0xaa,0xb5,0x5a,0xaa,0xa5,0x55,0x04,0x22,0xa1,0x55,0x2a,0xe9,0x50,0x2a,0x40, 0x52,0x20,0x20,0x55,0x20,0x08,0x89,0x01,0x1b,0x40,0x00,0x22,0x00,0x84,0x20, 0x48,0x90,0x04,0x00,0x04,0x22,0xa0,0x45,0x55,0xad,0x53,0x5a,0xaa,0xab,0x55, 0x5a,0xb6,0xda,0xd5,0x6e,0xee,0xd6,0xb5,0xd7,0x6f,0xd5,0x55,0x4b,0xee,0xff, 0xff,0xaa,0x5a,0x95,0x52,0x90,0x42,0x10,0x00,0x20,0x80,0x55,0x6a,0x80,0x10, 0x00,0x00,0x00,0x00,0x20,0x00,0x0a,0x04,0x2a,0x21,0x42,0xa4,0x21,0x14,0x00, 0x00,0x22,0xa5,0x35,0x45,0x4a,0x75,0x55,0x69,0x55,0x6c,0xa2,0x84,0x92,0x08, 0xa1,0x55,0xaa,0x89,0x41,0x00,0x82,0x01,0x40,0x80,0x42,0x24,0x45,0xad,0x92, 0x24,0x80,0x84,0x10,0x81,0x02,0x04,0x10,0x40,0x00,0x08,0x89,0x02,0xaa,0xf5, 0x55,0xb6,0xda,0xd4,0xa5,0xb6,0xaa,0xd5,0x6f,0x77,0x75,0x5a,0xae,0xba,0xbe, 0xd5,0xab,0x6d,0x75,0xb6,0xf6,0xd5,0x6a,0x55,0x49,0x0a,0x08,0x40,0x02,0x04, 0x08,0x04,0xaa,0x55,0x08,0x00,0x00,0x02,0x00,0x00,0x20,0x00,0xaa,0xa4,0x8b, 0x50,0x00,0x84,0x00,0x00,0x00,0x00,0x49,0xaa,0xea,0x29,0x5a,0xaa,0x95,0x22, 0x96,0x14,0x4a,0x40,0xaa,0x54,0x94,0xa1,0x25,0x48,0x04,0x08,0x00,0xaa,0x00, 0x02,0x05,0x52,0x55,0x40,0x80,0x12,0x10,0x80,0x04,0x08,0x41,0x00,0x00,0x90, 0x02,0x20,0x29,0x55,0x55,0x56,0xde,0xb5,0x76,0xa9,0x6d,0x55,0xab,0x55,0xb5, 0x5f,0x55,0x55,0xd5,0x6e,0xf5,0x49,0x55,0xad,0xdf,0xfd,0xbb,0x5d,0x55,0x28, 0xa0,0x40,0x00,0x00,0x00,0x00,0x0a,0x5a,0x80,0x00,0x40,0x10,0x40,0x00,0x02, 0x02,0x20,0x11,0x54,0x01,0x04,0xa4,0x50,0x94,0x00,0x00,0x12,0x24,0xaa,0xa5, 0x16,0x6b,0x55,0x74,0xaa,0xd5,0x49,0x22,0xb5,0x55,0x0a,0x53,0xa8,0x94,0xa0, 0x02,0x00,0x88,0x49,0x00,0x01,0x15,0x4a,0x9a,0x90,0x04,0x40,0x00,0x08,0x90, 0x20,0x08,0x42,0x00,0x00,0x88,0x80,0x15,0xad,0x6d,0xaa,0xab,0x6a,0xd9,0x56, 0xf5,0xb6,0xd5,0x6e,0xda,0xa9,0xad,0xb7,0x7b,0xb7,0xbd,0x56,0xd5,0xd6,0xff, 0xdf,0x55,0xb4,0xa8,0xa5,0x14,0x11,0x00,0x40,0x40,0x02,0x02,0x95,0x2a,0x88, 0x02,0x00,0x00,0x01,0x00,0x00,0x04,0xaa,0x92,0x4b,0x40,0x00,0xa0,0x00,0x00, 0x00,0x01,0x55,0x55,0x5a,0x05,0x5d,0xaa,0x95,0x45,0x54,0x0a,0x54,0x48,0x54, 0xa5,0x55,0xd6,0xe2,0xa8,0x12,0xe2,0x01,0x2a,0x01,0x00,0x2a,0xea,0xaa,0x42, 0x12,0x08,0x45,0x51,0x00,0x85,0x00,0x10,0x84,0x00,0x00,0x14,0x92,0xa5,0x6a, 0xdb,0x5d,0x56,0xad,0x5b,0x5a,0xd5,0x5b,0x5b,0x6d,0x76,0xf6,0xad,0xad,0x54, 0xd2,0xa9,0x6a,0xb5,0xb6,0xfa,0xfe,0xd7,0x56,0x20,0x41,0x00,0x00,0x04,0x04, 0x80,0x4a,0x55,0x41,0x16,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x04,0x48,0x10, 0x15,0x2a,0x44,0xa0,0x00,0x00,0x10,0x24,0x95,0x44,0x15,0xab,0x55,0x55,0x2a, 0xed,0x09,0x11,0x2a,0xb5,0x12,0x4a,0xe9,0x5a,0x48,0x80,0x88,0x00,0x08,0x10, 0x08,0x25,0x55,0x4a,0x80,0x40,0x41,0x00,0xc4,0x24,0x10,0x25,0x44,0x00,0x00, 0x00,0x40,0x2a,0xaa,0xee,0xaa,0xaf,0x55,0xb5,0x4a,0xed,0x55,0x6d,0x6d,0xb5, 0xad,0xda,0xb5,0x76,0xaa,0xaa,0x95,0xb6,0xd5,0x7f,0xef,0x55,0x5a,0xa2,0x92, 0x88,0x40,0x04,0x10,0x00,0x08,0x05,0x22,0x14,0x42,0x88,0x90,0x20,0x00,0x10, 0x80,0x42,0x92,0x21,0x04,0x40,0x00,0xa0,0x08,0x00,0x00,0x05,0x42,0x56,0xb5, 0x06,0xd5,0xaa,0xaa,0xaa,0x54,0x05,0x2c,0x42,0xac,0xa5,0x55,0xa5,0x6b,0x42, 0x04,0x2a,0x08,0x40,0x00,0x00,0x89,0x55,0x28,0x50,0x02,0x04,0x12,0x51,0x00, 0x81,0x00,0x01,0x00,0x44,0x21,0x09,0x25,0x57,0x55,0xeb,0x6a,0xda,0xaa,0x57, 0x55,0x56,0xad,0x56,0xda,0xd6,0xeb,0x6d,0xba,0xa5,0x55,0x55,0x5b,0x5b,0xdb, 0xbb,0xfd,0xaf,0x59,0x20,0x02,0x08,0x10,0x00,0x80,0x00,0xa4,0x89,0x41,0x11, 0x02,0x21,0x00,0x20,0x02,0x09,0x08,0x09,0x04,0x51,0x24,0xa2,0x4a,0x40,0x00, 0x00,0x00,0x54,0xad,0x2a,0x49,0xea,0x55,0xaa,0x55,0x55,0x15,0x4a,0xaa,0x75, 0x52,0xaa,0xe9,0x34,0xa8,0x02,0x9a,0x80,0x01,0x01,0x00,0x05,0x52,0x51,0x24, 0x10,0x20,0x40,0xa0,0x48,0x04,0x12,0x48,0x21,0x00,0x00,0x04,0xaa,0xaa,0xf6, 0xb6,0xf6,0xab,0x75,0x6b,0xed,0xbb,0xf5,0xbf,0x77,0x75,0xb5,0xd7,0xaa,0xd5, 0x55,0x2a,0xd5,0x6d,0x76,0xfd,0x56,0xf5,0xd5,0x4a,0x50,0x01,0x00,0x40,0x08, 0x40,0x0a,0x50,0x90,0x8a,0x00,0x08,0x02,0x00,0x40,0x00,0x00,0x40,0xa0,0x04, 0x10,0x08,0x80,0x90,0x00,0x00,0x00,0x92,0x52,0xa5,0x07,0xbd,0x55,0x55,0x25, 0x54,0x8a,0x95,0x22,0x95,0x29,0x55,0x54,0xad,0x50,0x00,0x29,0x11,0x04,0x24, 0x40,0x12,0xa8,0xa4,0x40,0x81,0x01,0x09,0x44,0x02,0x50,0x00,0x00,0x00,0x00, 0x80,0x21,0x54,0x9a,0xab,0xdb,0xad,0x56,0xdb,0x5e,0xd6,0xdd,0x56,0xed,0xfb, 0xde,0xdb,0x75,0x7a,0xb6,0xaa,0xa5,0x5b,0x5b,0xaf,0xd7,0xfd,0xae,0xaa,0xa0, 0x02,0x80,0x00,0x02,0x21,0x04,0x24,0xa4,0x02,0x24,0x08,0xa8,0x08,0x00,0x00, 0x00,0x01,0x14,0x09,0x20,0xa2,0x82,0x28,0x20,0x00,0x00,0x04,0x52,0x9b,0x52, 0x15,0xca,0xaa,0xaa,0xa9,0x55,0x52,0x4a,0x89,0x6d,0x44,0xaa,0xc2,0xb5,0x54, 0x11,0x2a,0x00,0x00,0x00,0x12,0x48,0x95,0x31,0x12,0x04,0x08,0x04,0x10,0x20, 0x01,0x24,0x24,0x80,0x00,0x04,0x85,0x55,0x55,0xbe,0xee,0xdb,0x6b,0x6d,0x57, 0xb5,0x57,0xfb,0x76,0xae,0xeb,0x56,0xda,0xaa,0xc9,0x5a,0x95,0xb5,0xf6,0xfe, 0xff,0xb7,0x7b,0x75,0x10,0x90,0x20,0x00,0x00,0x00,0x00,0x92,0x91,0x10,0x92, 0x22,0x10,0x00,0x08,0x00,0x00,0x40,0x02,0x40,0x08,0x44,0x28,0x82,0x80,0x00, 0x00,0x00,0x29,0x2b,0x49,0x4a,0xb6,0xba,0x94,0x95,0x55,0x29,0x54,0x52,0xaa, 0xb5,0xd3,0x69,0x5d,0x50,0x00,0x10,0x00,0x00,0x25,0x40,0x02,0x5a,0x20,0x20, 0x10,0x20,0xa1,0x40,0x80,0x04,0x01,0x00,0x04,0x08,0x00,0x12,0xaa,0x2b,0x5b, 0xb5,0xf5,0x5a,0xfd,0xad,0xee,0xda,0xb5,0xdb,0x7b,0xbd,0x7b,0x76,0xd5,0x54, 0xaa,0xaa,0xd7,0x5f,0x5b,0xd5,0xda,0xdd,0xaa,0x44,0x02,0x04,0x40,0x00,0x00, 0x20,0x05,0x44,0x41,0x48,0x00,0x88,0x40,0x41,0x08,0x88,0x04,0x48,0x10,0xa2, 0x10,0x80,0x10,0x10,0x00,0x00,0x02,0x0a,0x95,0x5a,0x89,0xaa,0xd5,0x7a,0xaa, 0x52,0x80,0xaa,0x85,0x55,0x45,0x6a,0xaa,0xac,0x52,0x00,0x40,0x08,0x22,0x42, 0x44,0x20,0xa8,0x15,0x04,0x40,0x82,0x08,0x82,0x04,0x90,0x10,0x11,0x20,0x00, 0x01,0x0a,0xad,0x56,0xfd,0xdf,0xaa,0xab,0x57,0xf7,0x5a,0xab,0xf7,0x76,0xaf, 0xfb,0xbd,0xfa,0xb6,0xda,0xab,0x5f,0x5b,0x75,0xee,0xee,0xaf,0xfe,0xb5,0x20, 0x20,0x10,0x01,0x04,0x84,0x84,0x22,0xa9,0x04,0xa1,0x0a,0x20,0x01,0x04,0x00, 0x00,0x10,0x01,0x04,0x01,0x02,0x24,0x8a,0x40,0x00,0x00,0x00,0xa4,0x55,0x54, 0x46,0xaf,0x75,0x55,0x55,0x48,0xb5,0x29,0x2a,0xa5,0x56,0xd5,0x54,0xa5,0x48, 0x11,0x00,0x80,0x80,0x90,0xa1,0x54,0x3d,0x20,0x20,0x02,0x00,0x14,0x20,0x10, 0x00,0x84,0x88,0x00,0x20,0x90,0x55,0xa5,0x57,0x96,0xb2,0xdb,0x55,0xff,0xde, 0xed,0x55,0x5a,0xdb,0xdf,0xfe,0xad,0xf5,0x55,0x56,0xaa,0xaa,0xd5,0xaa,0xb7, 0x5b,0xea,0xeb,0x5a,0x92,0x04,0x00,0x08,0x10,0x10,0x00,0x91,0x12,0x02,0x44, 0x20,0x81,0x10,0x00,0x00,0x01,0x40,0x24,0x40,0x94,0x50,0x80,0x20,0x80,0x00, 0x00,0x00,0x12,0xaa,0xa5,0x95,0x6a,0xb5,0x5a,0x95,0x55,0x49,0x6a,0x49,0x56, 0xab,0xea,0xa5,0x52,0x20,0x40,0x00,0x04,0x02,0x42,0x14,0x82,0x94,0x09,0x02, 0x50,0x08,0x81,0x08,0x02,0x22,0x00,0x00,0x08,0x80,0x02,0xb6,0xb5,0x55,0x6f, 0xdf,0x6d,0xaa,0xad,0xfb,0xb7,0xbb,0x6f,0xee,0x7f,0xb6,0xb5,0xb6,0xa9,0x5a, 0xaa,0xb6,0xbe,0xda,0xad,0xfd,0x5f,0xff,0xa9,0x20,0x90,0x41,0x00,0x00,0x00, 0x22,0x0a,0xa0,0x91,0x20,0x02,0x54,0x04,0x02,0x22,0x04,0x00,0x08,0x08,0x41, 0x04,0x55,0x44,0x20,0x00,0x00,0x02,0x2a,0x54,0xad,0x4a,0xb7,0xda,0xaa,0xa8, 0xa5,0x54,0xa9,0x2a,0xd9,0x5d,0xd4,0x55,0x0a,0x88,0x00,0x02,0x10,0x08,0xa8, 0xa5,0x50,0x57,0xa4,0x48,0x00,0x42,0x08,0x40,0x88,0x00,0x00,0x24,0xa0,0x02, 0x08,0x5b,0x55,0x55,0x9a,0x6b,0xba,0xaf,0x7f,0xbe,0xfd,0x55,0xb5,0xb7,0x56, 0xfb,0xdd,0x6b,0x54,0xb5,0x52,0xda,0xe5,0x6b,0xb6,0xa7,0xeb,0xfd,0x6a,0x4a, 0x00,0x04,0x20,0x80,0x00,0x88,0x51,0x4a,0x24,0x29,0x49,0x00,0x20,0x10,0x00, 0x20,0x00,0x80,0x82,0x00,0x42,0x00,0x11,0x00,0x00,0x00,0x00,0x89,0x2a,0xaa, 0xa5,0xba,0xaa,0xd7,0x55,0x6a,0xaa,0xac,0xab,0x6e,0xaa,0xa8,0x08,0x81,0x00, 0x00,0x08,0x00,0x02,0x40,0x12,0xab,0x4a,0x81,0x00,0x52,0x08,0x51,0x10,0x00, 0x80,0x11,0x00,0x01,0x00,0x22,0xad,0xb5,0x5a,0xbd,0xdd,0xef,0x69,0xd6,0xff, 0xdf,0xfe,0xd7,0xbd,0xff,0xf6,0xaa,0xdd,0x6a,0x95,0x55,0x55,0xb6,0xad,0x5b, 0xfa,0xbf,0x5b,0xaa,0x80,0x02,0x10,0x04,0x02,0x44,0x01,0x62,0xac,0x8a,0x04, 0x20,0x90,0x90,0x80,0x80,0x00,0x02,0x10,0x11,0x49,0x10,0x94,0x44,0x40,0x00, 0x00,0x00,0x0a,0x92,0x52,0xd6,0xd5,0xd6,0xa9,0x54,0xb4,0x95,0x15,0x56,0xfa, 0xad,0x61,0x24,0x15,0x21,0x02,0xa0,0x01,0x4a,0x82,0xaa,0x52,0xaa,0xa4,0x11, 0x00,0x20,0x00,0x42,0x22,0x08,0x80,0x02,0x04,0x40,0x04,0xaa,0xda,0xad,0xee, 0xbf,0x5a,0xae,0xad,0xf6,0xfd,0x6b,0x5a,0xd7,0x2b,0xfb,0x6a,0xb5,0x55,0x55, 0xa8,0xaf,0x55,0xb5,0xee,0xaf,0xfb,0xfd,0x24,0x28,0x90,0x00,0x00,0x20,0x00, 0x00,0xd1,0x2a,0x54,0x50,0x82,0x04,0x02,0x02,0x00,0x01,0x20,0x04,0x40,0x80, 0x0a,0x21,0x01,0x00,0x00,0x00,0x01,0x4a,0x4a,0xaa,0xab,0x6d,0x5a,0xb6,0xaa, 0xb5,0x56,0xca,0xab,0xaf,0xb5,0x50,0x02,0x00,0x00,0x00,0x00,0x22,0x22,0x50, 0x49,0x12,0x94,0x00,0x04,0x08,0x81,0x10,0x00,0x08,0x00,0x00,0x08,0x40,0x08, 0x92,0xb7,0x75,0x76,0xbb,0xf6,0xf7,0xd5,0x77,0x7f,0xbf,0xdd,0xaa,0xba,0xf6, 0xd5,0xaa,0xda,0xdc,0xaa,0xd6,0xb5,0xea,0xae,0xbb,0x55,0x5f,0xee,0xd2,0x80, 0x00,0x40,0x48,0x84,0x12,0x4a,0xaa,0x49,0x08,0x20,0x20,0xa2,0xa0,0x08,0x00, 0x40,0x00,0x41,0x05,0x24,0xa0,0x84,0x28,0x00,0x00,0x00,0x00,0x09,0x51,0x35, 0xb5,0xb6,0xd6,0xad,0x6a,0xd5,0x12,0xaa,0x5a,0xfa,0xd5,0x04,0x00,0x48,0x00, 0x00,0x10,0x81,0xd9,0x2a,0xaa,0xa5,0x54,0x92,0x40,0x80,0x08,0x42,0x50,0x80, 0x20,0x00,0x00,0x10,0x20,0x05,0x5a,0xdd,0x4a,0xda,0xdd,0xdd,0x5b,0xba,0xfe, 0xfb,0x75,0x6d,0x6b,0x9b,0xf6,0xd6,0xad,0x55,0x55,0x2a,0xdb,0x55,0xb2,0xed, 0xbf,0xfa,0xbb,0x4a,0xa5,0x24,0x00,0x00,0x00,0x80,0x00,0xa1,0x2a,0x52,0xa1, 0x04,0x09,0x14,0x20,0x04,0x04,0x02,0x10,0x02,0x80,0x04,0x00,0x84,0xa0,0x00, 0x00,0x00,0x85,0x2a,0xaa,0xd7,0xdb,0xad,0xb6,0xd5,0x55,0x48,0x55,0xad,0xef, 0xba,0x60,0x20,0x00,0x00,0x00,0x00,0x00,0x44,0x15,0x22,0x12,0xa0,0x40,0x12, 0x24,0x21,0x08,0x22,0x00,0x84,0x00,0x41,0x04,0x80,0x11,0x6d,0x55,0x55,0x6f, 0x7f,0x77,0x55,0x5d,0xb7,0xee,0xd6,0xb2,0xbb,0x65,0x5a,0xab,0x76,0xaa,0xaa, 0xae,0xb5,0xaa,0xdb,0x57,0x6a,0xef,0xf6,0xaa,0x20,0x00,0x10,0x00,0x10,0x01, 0x04,0x4a,0x95,0x09,0x44,0x11,0x42,0x49,0x00,0x00,0x00,0x88,0x44,0x52,0x2a, 0x91,0x48,0x12,0x00,0x00,0x00,0x00,0x05,0xa4,0xab,0x55,0x7d,0xda,0xeb,0x6a, 0xd5,0x55,0x56,0x4a,0xbf,0xca,0x82,0x00,0x00,0x08,0x10,0x88,0x09,0x52,0x90, 0x88,0xa4,0x9d,0x02,0x44,0x81,0x04,0x01,0x00,0x24,0x00,0x04,0x00,0x10,0x00, 0x4a,0xb6,0xfe,0xd5,0xb5,0xd5,0xdd,0xbe,0xeb,0x7f,0xbf,0xb5,0xda,0xd5,0x55, 0x6a,0xaa,0xdb,0x5d,0x55,0x56,0xdb,0xb7,0x55,0x7a,0xaf,0xbf,0xde,0xd4,0x89, 0x02,0x42,0x42,0x40,0x24,0x21,0x21,0x28,0xa4,0xa0,0x22,0x00,0x80,0x24,0x80, 0x02,0x01,0x00,0x01,0x10,0x04,0x01,0x08,0x80,0x00,0x00,0x00,0x92,0x92,0x55, 0x57,0x95,0x6d,0xb6,0xb5,0x55,0x24,0xb2,0xaa,0xf6,0xe9,0x08,0x02,0x00,0x80, 0x80,0x00,0x21,0x54,0x4a,0x00,0x09,0x42,0x28,0x12,0x10,0x10,0xa4,0xb0,0x00, 0x10,0x80,0x08,0x81,0x01,0x0a,0xfd,0xb5,0x56,0xfa,0xff,0xbe,0xd5,0xb5,0xdb, 0x75,0xeb,0x55,0x2e,0xd5,0xb6,0xaa,0xd5,0x67,0x55,0x56,0xb6,0xd5,0x6a,0xaf, 0xf5,0xfa,0xfb,0x6a,0x50,0x50,0x00,0x00,0x01,0x00,0x04,0x4a,0x56,0x55,0x00, 0x09,0x48,0x50,0x80,0x08,0x40,0x00,0x22,0x44,0x41,0x20,0x90,0x52,0x40,0x00, 0x00,0x00,0x01,0x54,0xbd,0x56,0xed,0xb6,0xda,0xab,0x4a,0xaa,0x5a,0x5b,0x5f, 0xa4,0xa0,0x80,0x00,0x00,0x00,0x01,0x08,0xaa,0x95,0x44,0xa4,0x2a,0x01,0x4a, 0x84,0x80,0x01,0x02,0x22,0x00,0x00,0x40,0x10,0x04,0x0a,0xa6,0xde,0xbb,0x5d, 0xae,0xeb,0x6e,0xdb,0x6f,0xff,0x5e,0xf4,0xd5,0x55,0x5a,0xad,0xba,0xaa,0xaa, 0x5b,0x5f,0x4d,0x55,0xb5,0x5e,0xef,0xee,0xa9,0x02,0x00,0x20,0x08,0x04,0x20, 0x21,0x20,0x95,0xa0,0xa0,0x40,0x22,0x04,0x52,0x00,0x08,0x24,0x88,0x10,0x28, 0x04,0x04,0x84,0x00,0x00,0x00,0x00,0xa5,0x52,0x55,0xaf,0x36,0xbb,0xb5,0x5a, 0xa1,0x55,0x55,0xaa,0xdb,0xd5,0x00,0x08,0x04,0x00,0x00,0x00,0xa2,0xba,0x44, 0x10,0x2a,0xa4,0x90,0x93,0x61,0x09,0x50,0x48,0x00,0x02,0x08,0x02,0x44,0x40, 0x25,0x5b,0x77,0xd6,0xeb,0xf7,0xbd,0xbb,0x6d,0xba,0xd5,0xf5,0xaa,0xaa,0xaa, 0xeb,0x56,0xd6,0xad,0x4a,0xad,0xb6,0xb6,0xaa,0xab,0x6f,0xbf,0xbf,0xd4,0x88, 0x42,0x04,0x80,0x00,0x04,0x04,0x95,0x29,0x6a,0x04,0x15,0x00,0x52,0x00,0x00, 0x00,0x00,0x00,0x02,0x82,0x42,0x40,0x11,0x40,0x00,0x00,0x00,0x01,0x4a,0xb6, 0xd5,0xdb,0x57,0xde,0xdd,0x5d,0x52,0xb5,0x5d,0x6f,0x72,0x44,0x00,0x10,0x00, 0x01,0x02,0x08,0x5d,0x2a,0x81,0x2a,0xa9,0x0a,0x55,0x2c,0x20,0x0a,0x00,0x88, 0x48,0x21,0x10,0x01,0x00,0x49,0x6d,0xda,0xbb,0x7e,0xbd,0xef,0x4b,0xb6,0xef, 0xab,0xbf,0x75,0x2a,0xa5,0x35,0x6d,0x5a,0xab,0xa5,0x55,0x5f,0x6a,0xab,0x5d, 0xda,0xff,0xf6,0xaa,0x41,0x08,0x40,0x01,0x20,0x80,0x11,0x68,0x95,0x49,0x20, 0x82,0x80,0x88,0xa4,0x01,0x01,0x12,0x42,0x90,0x28,0x14,0x11,0x04,0x00,0x00, 0x00,0x00,0x29,0x52,0x9a,0xab,0xed,0xba,0xeb,0x6a,0xa2,0x4a,0xd5,0x57,0xb7, 0xa9,0x00,0x20,0x00,0x04,0x00,0x00,0x41,0x54,0x94,0x84,0x2a,0xa4,0x41,0x2d, 0x51,0x02,0xa0,0x20,0x01,0x00,0x00,0x40,0x90,0x01,0x12,0xb5,0x7f,0x55,0xad, 0xd7,0x5a,0xbd,0x5b,0x5d,0x6d,0xf6,0xd2,0x95,0x55,0xad,0x57,0xaa,0xb4,0xa9, 0x56,0xed,0x55,0x54,0xb6,0xff,0x77,0x7d,0xeb,0x24,0x00,0x08,0x04,0x00,0x00, 0x85,0x95,0x14,0x52,0x08,0x2a,0x28,0xa2,0x00,0x04,0x08,0x01,0x10,0x05,0x00, 0x80,0x80,0x22,0x00,0x00,0x00,0x00,0x09,0x54,0xaa,0xdb,0x5a,0xd7,0x55,0x5a, 0x95,0x2b,0x6a,0xaa,0xaa,0xd4,0x12,0x00,0x00,0x10,0x10,0x10,0x10,0x2a,0xaa, 0x50,0x4a,0xb1,0x54,0x56,0xa5,0x48,0x04,0x84,0x20,0x00,0x09,0x02,0x02,0x08, 0x14,0xae,0xaa,0xdf,0x77,0x7d,0xf5,0x5b,0xad,0xee,0xab,0x7f,0xd4,0x55,0x5a, 0xb5,0xb5,0x6a,0xab,0x55,0x55,0x5f,0x55,0x55,0x55,0xaa,0xdf,0xef,0x59,0x08, 0x42,0x21,0x10,0x04,0x10,0x0a,0xd2,0x49,0x08,0x82,0x21,0x02,0x94,0x90,0x10, 0x00,0x48,0x84,0x40,0x44,0x10,0x08,0x88,0x00,0x00,0x00,0x00,0x24,0xaa,0xad, 0x55,0xf7,0x5d,0x7a,0xaa,0xaa,0x95,0x15,0x15,0xdb,0x52,0x80,0x09,0x00,0x00, 0x40,0x00,0x02,0xa5,0x55,0x80,0xaa,0x8a,0x21,0x2d,0xf4,0x01,0x10,0x00,0x80, 0x00,0x04,0x20,0x50,0x00,0x42,0xbb,0xf7,0x6b,0xad,0xd6,0x96,0xaa,0xfb,0x75, 0xd6,0xdb,0x6f,0x2a,0xae,0xb5,0x57,0xb5,0x5f,0xd4,0xbb,0x6a,0xaf,0x55,0x7b, 0xdf,0xfe,0xf5,0xad,0x42,0x10,0x00,0x00,0x00,0x00,0x04,0xa9,0x42,0x22,0x29, 0x4c,0x29,0x42,0x40,0x40,0x01,0x05,0x01,0x12,0x91,0x04,0x82,0x04,0x80,0x00, 0x00,0x00,0x00,0x55,0x5e,0xbe,0xae,0xed,0xd5,0x75,0x55,0x4a,0xd5,0x6d,0x25, 0x2a,0x00,0x40,0x00,0x10,0x00,0x00,0x41,0x54,0xaa,0x82,0x2a,0xa9,0x54,0x1b, 0xd3,0x48,0x42,0x22,0x04,0x42,0x48,0x91,0x00,0x41,0x09,0x6d,0x2a,0xbe,0xde, 0xfa,0xd5,0x56,0xaf,0xde,0x7b,0xfd,0xb4,0x95,0x55,0x5a,0xad,0xd5,0x55,0x55, 0xdd,0xb5,0xb5,0x56,0x96,0xaa,0xbb,0xbf,0xd3,0x51,0x44,0x00,0x40,0x20,0x02, 0x22,0x54,0xa8,0x01,0x04,0xa0,0x84,0x29,0x02,0x00,0x10,0x22,0x10,0x00,0x00, 0x50,0x20,0x50,0x00,0x00,0x00,0x00,0x15,0x55,0x57,0xd3,0xb7,0x5f,0x7d,0x9a, 0xac,0xaa,0xaa,0x56,0xdb,0x92,0x91,0x00,0x10,0x00,0x00,0x82,0x00,0x52,0x95, 0x20,0x95,0x52,0x48,0x96,0xe9,0x02,0x08,0x08,0x00,0x08,0x00,0x00,0x09,0x04, 0x22,0xb6,0xdb,0x6b,0xb5,0xd6,0xaa,0xab,0x5a,0xfd,0xad,0x6e,0xaa,0x54,0xaa, 0xed,0x77,0x55,0x5e,0xab,0x6a,0xad,0x55,0x55,0x6b,0x6d,0xff,0xea,0x54,0x84, 0x40,0x92,0x00,0x80,0x80,0x05,0x56,0x10,0x80,0xd2,0x4a,0x22,0x94,0x48,0x00, 0x00,0x08,0x02,0x49,0x48,0x02,0x09,0x05,0x00,0x00,0x00,0x00,0x00,0x4b,0x55, 0x6e,0xda,0xb6,0xd6,0xd5,0x55,0x15,0x56,0xaa,0xac,0xaa,0x00,0x00,0x40,0x80, 0x00,0x00,0x85,0x2d,0x4a,0x10,0x4a,0x4a,0x24,0x2b,0x55,0x51,0x21,0x20,0x21, 0x00,0x02,0x20,0xa0,0x00,0x08,0xbb,0x6a,0xde,0xdb,0xfa,0xad,0xaa,0xba,0xbb, 0xf7,0xf5,0x49,0xaa,0x9b,0x5b,0x95,0xaa,0xaa,0xdd,0xad,0x55,0x54,0x95,0x2d, 0xab,0x6d,0x57,0x52,0x40,0x90,0x00,0x08,0x04,0x00,0x12,0xa9,0x40,0x12,0x55, 0x24,0x08,0x42,0x80,0x00,0x44,0x90,0x40,0x00,0x02,0x24,0x42,0x10,0x00,0x00, 0x00,0x00,0x14,0xaa,0xaf,0x5a,0xef,0xaf,0xf6,0xaa,0x4a,0xd5,0xd5,0x2b,0x6b, 0x45,0x40,0x04,0x00,0x00,0x40,0x00,0x00,0x55,0x20,0xaa,0x24,0x92,0x89,0x05, 0xaa,0x04,0x00,0x14,0x84,0x00,0x10,0x04,0x00,0x00,0x42,0x4a,0xad,0x6b,0xbf, 0x6d,0x6a,0xaa,0xaf,0xdd,0x5a,0xbb,0x54,0x4a,0xad,0x6d,0x6b,0xa5,0x55,0x66, 0xab,0xda,0xaa,0x6a,0xd6,0xd6,0xff,0xba,0xca,0x12,0x02,0x00,0x20,0x00,0x08, 0x85,0x54,0x88,0x41,0x48,0x88,0x81,0x10,0x00,0x00,0x00,0x42,0x00,0x92,0x00, 0x80,0x08,0x44,0x00,0x00,0x00,0x00,0x02,0x25,0xb7,0xad,0x55,0x5e,0xaf,0x5a, 0xb5,0x12,0x55,0x55,0x55,0x30,0x04,0x00,0x00,0x01,0x00,0x04,0x01,0x17,0x55, 0x00,0x88,0x08,0x54,0x45,0x54,0xa1,0x24,0x80,0x00,0x01,0x00,0x80,0x00,0x01, 0x09,0x6b,0x75,0xbe,0xd5,0xf5,0x56,0xd5,0x55,0x76,0xad,0xad,0x2b,0x55,0x52, 0xa6,0xb6,0xaa,0xb5,0xb7,0x55,0x56,0xaa,0x95,0x3a,0xbf,0x55,0xed,0x52,0x80, 0x48,0x01,0x01,0x10,0x00,0x0a,0xaa,0x50,0x00,0x4a,0x44,0x00,0x04,0x20,0x04, 0x01,0x08,0x12,0x00,0xa4,0x11,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x95,0x6d, 0xeb,0xfb,0xaf,0xda,0xb5,0x54,0xaa,0xaa,0xad,0x6a,0x8a,0x90,0x20,0x00,0x04, 0x22,0x10,0x00,0x2a,0x88,0xb4,0x22,0xa2,0xa1,0x02,0xaa,0x08,0x02,0x25,0x10, 0x10,0x02,0x00,0x22,0x10,0x00,0x9d,0x96,0xeb,0x7f,0x5d,0xaa,0x6b,0x75,0x5a, 0xd6,0xf6,0xa4,0xa5,0xad,0x53,0xad,0x6a,0xd5,0x55,0xae,0xaa,0xa5,0x6c,0xed, 0x52,0xef,0x57,0x4a,0xa9,0x00,0x48,0x08,0x00,0x00,0x25,0xd5,0x40,0x05,0x25, 0x10,0x49,0x21,0x00,0x20,0x84,0x01,0x00,0x0a,0x01,0x40,0x48,0x28,0x00,0x00, 0x00,0x00,0x0a,0x52,0xb7,0xad,0x5f,0xdb,0x7d,0x75,0x55,0x55,0x56,0xab,0x94, 0x50,0x00,0x00,0x01,0x00,0x00,0x00,0x10,0x8b,0x54,0x41,0x08,0x08,0x14,0x28, 0xd1,0x22,0x90,0x40,0x40,0x00,0x20,0x12,0x00,0x04,0x4a,0x55,0xd5,0x5d,0xaf, 0xea,0xab,0x5d,0xab,0x56,0xfb,0x7a,0xaa,0x55,0x55,0x55,0x57,0x55,0x5a,0xaa, 0xd7,0x55,0x54,0x96,0xf5,0x5d,0xb7,0xfa,0xa9,0x00,0x21,0x00,0x28,0x00,0x20, 0x0b,0x56,0xa9,0x00,0x84,0x44,0x00,0x04,0x02,0x00,0x00,0x50,0x44,0x80,0x10, 0x05,0x02,0x40,0x00,0x00,0x00,0x00,0x01,0x14,0x9d,0x6b,0xed,0x5e,0xd7,0xad, 0xaa,0x72,0xaa,0xad,0x55,0x02,0x00,0x82,0x20,0x00,0x00,0x00,0x00,0x4a,0x81, 0x10,0x44,0x42,0xa9,0x01,0x28,0x88,0x01,0x09,0x00,0x41,0x00,0x40,0x00,0x20, 0x81,0x26,0x55,0xf7,0x75,0x5d,0x55,0x52,0xb6,0xaa,0x95,0xdd,0x52,0xa9,0x2a, 0xad,0x52,0x95,0xaa,0xbb,0x6a,0xad,0x55,0x55,0x5a,0xaa,0xaa,0xae,0xaa,0x54, 0x88,0x00,0x88,0x40,0x81,0x05,0x52,0xc0,0x12,0x52,0x01,0x00,0x80,0x10,0x00, 0x11,0x01,0x00,0x12,0x84,0x90,0x28,0x10,0x00,0x00,0x00,0x00,0x08,0x2a,0xb7, 0xb5,0x7f,0xd7,0xaa,0xd6,0xaa,0x95,0x55,0x55,0x54,0xa8,0x20,0x00,0x00,0x10, 0x00,0x04,0x81,0x55,0x54,0x52,0x21,0x08,0x04,0x84,0x8a,0x22,0x48,0x24,0x04, 0x04,0x04,0x00,0x90,0x82,0x2a,0x55,0xd7,0x7f,0xaf,0xeb,0x6a,0xaf,0xd6,0xad, 0x5b,0xea,0xaa,0x95,0x6d,0x55,0xb5,0xeb,0x55,0x56,0xaa,0xb5,0x56,0xab,0xea, 0xad,0x77,0xdb,0x55,0x10,0x02,0x12,0x01,0x04,0x00,0x2a,0xaa,0xa8,0x42,0x24, 0xa4,0x04,0x10,0x00,0x08,0x40,0x08,0x08,0x04,0x00,0x00,0x82,0x80,0x00,0x00, 0x00,0x00,0x02,0x8a,0x5b,0xdd,0xb5,0x5b,0xf6,0xbb,0x6a,0x4a,0xa5,0xb5,0x6a, 0x00,0x84,0x08,0x00,0x00,0x01,0x00,0x00,0x68,0x80,0x20,0x94,0x01,0x52,0x20, 0x24,0x88,0x00,0x01,0x40,0x00,0x00,0x94,0x00,0x00,0x05,0x2b,0x75,0xdd,0x75, 0x36,0xb5,0x55,0x5a,0xa5,0xae,0xb6,0xa9,0x4a,0xb5,0xae,0xd6,0x36,0xaa,0xab, 0x55,0x55,0x4a,0x95,0x75,0x55,0xad,0x55,0xea,0xa5,0x10,0x40,0x00,0x00,0x00, 0x01,0x25,0x40,0x00,0x8a,0x00,0x40,0x40,0x00,0x41,0x04,0x80,0x20,0x90,0x52, 0x52,0x10,0x54,0x00,0x00,0x00,0x00,0x00,0xa5,0x55,0x6a,0xfe,0xfe,0xae,0xd7, 0xda,0xa9,0x55,0x5a,0xaa,0xa8,0x00,0x00,0x04,0x00,0x08,0x10,0x00,0x22,0x2a, 0x00,0x00,0x48,0x14,0x84,0x90,0x22,0x49,0x2a,0x12,0x20,0x20,0x20,0x00,0x09, 0x68,0x95,0x5b,0xf6,0xdb,0xda,0xca,0xad,0xab,0x76,0xf7,0xaa,0x55,0x55,0xde, 0xf5,0xb5,0xdb,0x55,0xfd,0xaa,0xab,0xaa,0x55,0xd6,0xd4,0xb7,0x6d,0x2d,0x48, 0x04,0x00,0x04,0x00,0x00,0x14,0x92,0x20,0x12,0x20,0x11,0x09,0x02,0x10,0x00, 0x00,0x20,0x00,0x02,0x00,0x00,0x89,0x00,0x00,0x00,0x00,0x00,0x02,0x0a,0x53, 0xb7,0xd7,0xd7,0xff,0xfb,0x6b,0x55,0x55,0x6f,0x55,0x61,0x00,0x40,0x40,0x00, 0x80,0x00,0x02,0x54,0x04,0x84,0x49,0x01,0x48,0x10,0x89,0x08,0x00,0x00,0x28, 0x08,0x82,0x01,0x04,0x82,0x25,0x4b,0xab,0xdd,0xb6,0xeb,0x6d,0x56,0xf5,0xaa, 0x9a,0xdd,0x4a,0xaa,0xbb,0x36,0xae,0xad,0x55,0x56,0xaa,0xed,0x5a,0xae,0xaa, 0xab,0xea,0xda,0xd5,0x51,0x2a,0x00,0x00,0x10,0x02,0x0a,0x49,0x42,0x00,0x8a, 0x40,0x00,0x08,0x00,0x00,0x4a,0x04,0x82,0x48,0x84,0x49,0x40,0x20,0x00,0x00, 0x00,0x00,0x00,0xa5,0x2d,0x7a,0xfd,0xfd,0xee,0xad,0xfa,0xaa,0x95,0x7a,0xd5, 0x08,0x01,0x00,0x00,0x44,0x00,0x00,0x00,0x01,0x42,0x20,0x00,0x04,0x05,0x40, 0x42,0x42,0x12,0x08,0x25,0x00,0x00,0x48,0x20,0x10,0xea,0xad,0x56,0xfb,0xfb, 0x55,0x55,0x56,0xae,0xad,0x6f,0x65,0x55,0x55,0x7d,0xaa,0xd5,0x6a,0xb5,0xba, 0xaa,0xb7,0xa5,0x55,0x6a,0xda,0xb5,0x6d,0x6d,0x4a,0x04,0x88,0x20,0x40,0x08, 0x21,0x24,0x08,0x2a,0x20,0x04,0x20,0x20,0x04,0x10,0x00,0x80,0x08,0x04,0x20, 0x02,0x12,0x88,0x00,0x00,0x00,0x00,0x00,0x8a,0xa5,0xae,0xef,0x6f,0x7e,0xda, 0xad,0x55,0x52,0xaf,0x54,0xa0,0x24,0x01,0x00,0x00,0x00,0x00,0x20,0xa4,0x08, 0x12,0xa8,0x40,0x50,0x84,0x50,0x10,0x80,0x41,0x44,0x42,0x08,0x00,0x00,0x40, 0xd5,0x55,0xd5,0x5d,0x56,0xfe,0xad,0x6b,0xfa,0xd5,0x7b,0xb5,0xaa,0xad,0xa5, 0x77,0x7b,0xb7,0x5b,0x6e,0xca,0xaa,0xa9,0x56,0xab,0x6a,0xad,0xab,0xb6,0xa8, 0xb5,0x20,0x80,0x00,0x40,0x0a,0x51,0x60,0x04,0x84,0x50,0x04,0x40,0x40,0x41, 0x24,0x10,0x00,0x95,0x01,0x28,0x88,0x00,0x00,0x00,0x00,0x00,0x02,0x25,0x55, 0x57,0x7d,0xfb,0xff,0x7e,0xf7,0xad,0x55,0xb1,0x56,0x8a,0x00,0x00,0x02,0x00, 0x00,0x40,0x80,0x41,0x50,0x41,0x42,0x11,0x0a,0x51,0x49,0x04,0x12,0x00,0x0a, 0x00,0x20,0x08,0x80,0x05,0x71,0x2a,0xaa,0xb6,0xff,0x55,0xd6,0xad,0x6d,0xaa, 0xdd,0x4a,0x55,0x56,0xb6,0x95,0xbd,0x5a,0xeb,0xb3,0x35,0xad,0x54,0x9b,0x6c, 0xaa,0xb5,0x54,0xad,0x56,0x92,0x00,0x00,0x00,0x00,0x20,0x90,0x90,0xb2,0x51, 0x00,0x80,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x02,0x20,0x40,0x00,0x00, 0x00,0x00,0x00,0x49,0x4a,0xaa,0xef,0x6f,0x77,0xd5,0xbd,0x6a,0xaa,0xad,0x55, 0x20,0x80,0x08,0x10,0x10,0x08,0x00,0x01,0x14,0x22,0x01,0xa0,0x00,0x45,0x00, 0x30,0x52,0x40,0x09,0x05,0x08,0x00,0x80,0x04,0x00,0xba,0x16,0xaa,0xbb,0x5b, 0xb6,0xb5,0xb7,0xb7,0x5d,0x6b,0xb5,0x55,0x2a,0xcd,0x76,0xae,0xd7,0x5a,0xed, 0xaa,0xd5,0x52,0x4a,0xb5,0x55,0x55,0x4b,0x5a,0xaa,0xa8,0x92,0x02,0x00,0x00, 0x0a,0x44,0x80,0x22,0x04,0x00,0x10,0x11,0x04,0x00,0x48,0x00,0x44,0x4a,0x80, 0x88,0x85,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0xaa,0xd5,0x7f,0xff,0xfd,0x76, 0xef,0xdb,0x55,0x73,0xa8,0x94,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x91, 0x25,0x52,0x09,0x28,0xa4,0x55,0x00,0x00,0x00,0x55,0x42,0x00,0x04,0x10,0x2a, 0x40,0xaa,0xda,0xed,0xfe,0xdd,0xdb,0x5a,0xfb,0x65,0xbd,0x4b,0x56,0xd5,0xb5, 0xad,0xf5,0x5b,0x6a,0xb5,0x57,0x5a,0x55,0x5a,0xaa,0xaa,0xea,0xb5,0xaa,0x95, 0x4a,0x20,0x00,0x08,0x00,0x40,0xa2,0x44,0x89,0x00,0x25,0x00,0x40,0x01,0x21, 0x11,0x22,0x00,0x00,0x12,0x22,0x10,0x40,0x00,0x00,0x00,0x00,0x01,0x12,0xa5, 0x5e,0xfb,0xdf,0xaf,0xfd,0xf5,0x76,0xaa,0x15,0x77,0x42,0x01,0x00,0x00,0x04, 0x40,0x08,0x00,0x00,0x4a,0x40,0xc0,0x40,0x05,0x01,0x28,0x49,0x00,0x80,0x04, 0x00,0x82,0x10,0x80,0x01,0x12,0x0b,0x55,0x76,0xee,0xb6,0xaa,0xfd,0xed,0xba, 0xa5,0x55,0x6d,0x5d,0x5e,0xaf,0xdf,0x6a,0xeb,0x55,0xad,0x51,0x52,0xad,0x55, 0x55,0x2b,0x5a,0xde,0xbd,0x20,0x88,0x80,0x40,0x00,0x12,0x08,0x10,0x40,0x54, 0x00,0x00,0x04,0x08,0x00,0x04,0x00,0x00,0xa4,0x40,0x08,0x42,0x00,0x00,0x00, 0x00,0x00,0x00,0x12,0xb5,0x52,0xaf,0x7a,0xfd,0xd7,0x7f,0xfb,0xd5,0xed,0xda, 0xb4,0x04,0x21,0x24,0x00,0x01,0x00,0x00,0x50,0x11,0x22,0x28,0x01,0x24,0xa8, 0x21,0x20,0x48,0x04,0xa9,0x28,0x08,0x00,0x00,0x84,0x48,0x25,0x6a,0xbf,0x7f, 0x6b,0x7d,0xb7,0x6a,0xd7,0x5a,0xed,0xb5,0x6a,0xeb,0x6a,0xb5,0x5b,0xb5,0x6a, 0xdf,0x54,0x94,0xaa,0xb5,0x5a,0xd5,0x4f,0x6a,0xde,0x84,0xa4,0x10,0x02,0x00, 0x40,0x91,0x21,0x0a,0x02,0x44,0x02,0x00,0x02,0x84,0x20,0x00,0x24,0x01,0x01, 0x12,0x08,0x80,0x00,0x00,0x00,0x00,0x00,0x42,0xad,0xda,0xff,0xff,0xf7,0xfd, 0xd7,0xae,0xab,0x16,0x6d,0xa0,0x90,0x04,0x00,0x40,0x00,0x00,0x02,0x22,0x44, 0x88,0x80,0x88,0x17,0x00,0x94,0x44,0x00,0x10,0x81,0x02,0x00,0x42,0x02,0x01, 0x01,0x15,0xab,0x55,0xad,0xbd,0x57,0x77,0xde,0xed,0xe6,0xaa,0xab,0x55,0xaf, 0xaa,0xdb,0x6d,0xd5,0xba,0xaa,0xaa,0x4a,0xd7,0x5a,0xab,0x55,0x7a,0xb6,0xb4, 0x48,0x0a,0x41,0x04,0x11,0x04,0x44,0x04,0x44,0x91,0x00,0x10,0x20,0x40,0x00, 0x0a,0x22,0x00,0x48,0x10,0x10,0xa0,0x40,0x00,0x00,0x00,0x00,0x01,0x19,0x53, 0x6a,0xbb,0x7f,0xff,0xfb,0xfd,0x7d,0xdd,0x53,0xfa,0xaa,0x00,0x00,0x08,0x00, 0x00,0x01,0x08,0x00,0x12,0x90,0x02,0x01,0x45,0x54,0x08,0x21,0x22,0x00,0x28, 0x00,0x20,0x00,0x48,0x10,0x54,0x4a,0x55,0xef,0xbe,0xed,0x7d,0xda,0xeb,0x75, 0x5a,0xb6,0xb5,0x6a,0xaa,0xd7,0x6d,0x37,0x6d,0x4a,0xad,0x41,0x22,0xf5,0xab, 0x5a,0xaa,0x96,0xd5,0x5a,0x01,0x09,0x00,0x10,0x04,0x11,0x21,0x50,0x10,0x0a, 0x00,0x00,0x01,0x04,0x90,0x20,0x80,0x01,0x02,0x42,0x54,0x0a,0x00,0x00,0x00, 0x00,0x00,0x00,0x20,0x95,0x56,0xaf,0xdf,0xda,0xbe,0xd5,0xdf,0x6b,0x6c,0xaf, 0xd4,0x40,0x80,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x40,0x48,0x00,0x15,0xa9, 0x01,0x04,0x08,0x00,0x00,0x20,0x00,0x08,0x00,0x05,0x00,0x29,0x5d,0x38,0xeb, 0x76,0xaf,0x6f,0x7d,0xde,0xeb,0xaa,0xd5,0xad,0xbd,0x7a,0xd6,0xdb,0xb6,0xb5, 0x5a,0xbc,0xda,0x96,0xd5,0x6d,0x55,0x6b,0x5b,0xe9,0x24,0x20,0x88,0x00,0x40, 0x04,0x08,0x05,0x00,0x40,0xa8,0x00,0x80,0x00,0x00,0x82,0x08,0x48,0x48,0x00, 0x09,0x41,0x40,0x00,0x00,0x00,0x00,0x00,0x0d,0x28,0xb5,0xbb,0xff,0xff,0xff, 0x7e,0xb7,0x6d,0x56,0xfe,0xb2,0x02,0x10,0x24,0x08,0x22,0x20,0x00,0x08,0x21, 0x0a,0x00,0x92,0x4a,0xd2,0x24,0x40,0x80,0x42,0x01,0x02,0x02,0x20,0x00,0x40, 0x15,0x00,0x95,0xd7,0x5e,0xd5,0x55,0xab,0xaf,0xab,0x5d,0x55,0x6b,0x6a,0xb6, 0x97,0x5b,0xad,0x5b,0xaa,0xea,0x85,0x25,0x53,0x6a,0xb5,0x6a,0xaa,0xb6,0xaa, 0x00,0x8a,0x40,0x94,0x00,0x40,0x82,0x50,0x01,0x04,0x00,0x20,0x00,0x12,0x00, 0x08,0x20,0x00,0x00,0x11,0x20,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0xaa, 0x9d,0x5f,0xb7,0xf6,0xaa,0xeb,0x7d,0xb5,0x52,0xab,0xda,0x90,0x00,0x80,0x40, 0x00,0x00,0x00,0x01,0x04,0x24,0x85,0x00,0x29,0x68,0x01,0x08,0x02,0x00,0x40, 0x00,0x40,0x00,0x80,0x08,0x40,0x2a,0x95,0x7d,0xbb,0x6a,0xfb,0x7d,0x7a,0xed, 0xa6,0xd5,0xb6,0xdb,0x7f,0x6d,0xed,0xfb,0xf5,0x55,0xb5,0x5a,0x55,0x2a,0xad, 0x55,0x5b,0x55,0x6f,0xb4,0x40,0x01,0x20,0x01,0x02,0x08,0x28,0x0a,0x00,0x22, 0x80,0x82,0x08,0x00,0x80,0x00,0x81,0x02,0x42,0x44,0x24,0x88,0x80,0x00,0x00, 0x00,0x00,0x00,0x05,0x35,0x56,0xfb,0xff,0xbe,0xdf,0xba,0xef,0xdb,0xad,0x5d, 0xab,0x20,0x04,0x01,0x00,0x00,0x02,0x20,0x20,0x00,0x90,0x10,0x00,0x82,0xaa, 0xaa,0x21,0x20,0x08,0x08,0x08,0x00,0x00,0x12,0x01,0x04,0x21,0x4a,0xb6,0xfe, 0xdb,0x56,0xaf,0xef,0xba,0xfb,0x56,0xba,0xad,0xab,0x5f,0x56,0xad,0x5e,0xb6, 0xaa,0xb5,0x28,0xaa,0xb5,0x2a,0xba,0xba,0xb5,0x50,0x08,0x49,0x40,0xa8,0x90, 0x02,0x02,0xa4,0x10,0x0a,0x40,0x00,0x00,0x84,0x09,0x24,0x00,0x20,0x08,0x00, 0x90,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0x52,0x5a,0x9f,0xff,0xfb,0x6a, 0xf7,0xba,0xb4,0xb0,0xab,0xd4,0x44,0x90,0x00,0x00,0x20,0x00,0x00,0x00,0x20, 0x44,0x00,0x24,0x10,0x50,0x00,0x80,0x00,0x40,0x00,0x01,0x08,0x82,0x00,0x24, 0x10,0x94,0x27,0xab,0x6b,0x6d,0x6d,0xba,0xba,0xef,0x49,0x52,0xaa,0xd6,0xfe, 0xaa,0xfd,0xf7,0xb2,0xaa,0xaa,0xd2,0x95,0x15,0x55,0x6f,0x55,0xab,0x5d,0xa5, 0x21,0x01,0x44,0x16,0x42,0x20,0xa4,0x02,0x80,0x95,0x08,0x00,0x00,0x02,0x80, 0x40,0x92,0x04,0x80,0x08,0x02,0x85,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x2b, 0x2b,0x7d,0xdf,0xff,0xb7,0x5a,0xad,0x5e,0xac,0x9e,0xe9,0x10,0x00,0x10,0x00, 0x00,0x10,0x01,0x02,0x04,0x82,0x22,0x00,0x02,0x95,0x4a,0x12,0x09,0x00,0x80, 0x80,0x20,0x08,0x00,0x00,0x02,0x21,0x15,0x7d,0x7a,0xb5,0xba,0xdd,0x7f,0xf9, 0x55,0x4d,0x55,0x3a,0xaa,0xbf,0x5b,0xbd,0x7d,0x6a,0x55,0x25,0x54,0xca,0xad, 0x55,0xee,0xad,0x76,0xd4,0x84,0x09,0xa1,0x49,0x00,0x80,0x10,0x94,0x02,0x08, 0x20,0x02,0x22,0x09,0x05,0x14,0x00,0x10,0x11,0x21,0x50,0x10,0x00,0x00,0x00, 0x00,0x00,0x00,0x15,0x14,0x9d,0xaf,0xff,0xbd,0xdd,0xff,0xb6,0xeb,0x68,0x4b, 0xf4,0x02,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0xa8,0x84,0x80,0x84,0x54, 0x81,0x40,0x40,0x00,0x02,0x08,0x00,0x00,0x40,0x88,0x88,0x14,0x4b,0xaf,0xd5, 0xca,0xef,0x77,0xfb,0x6e,0xaa,0xb5,0xba,0xde,0xf5,0x55,0xb7,0xd7,0xb6,0xd5, 0x55,0x52,0x15,0x2a,0xb5,0xae,0xb5,0x76,0xdb,0x52,0x20,0x22,0x92,0x2a,0xd2, 0x04,0x82,0x0a,0x48,0x22,0x0a,0x10,0x00,0x04,0x90,0xa0,0xa4,0x82,0x04,0x00, 0x05,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa5,0x4a,0xb7,0x6d,0xf7,0xff, 0x55,0x5b,0x5a,0xf5,0x06,0xb2,0x40,0x48,0x22,0x00,0x00,0x00,0x08,0x10,0x48, 0x85,0x12,0x24,0x10,0x15,0x24,0x09,0x00,0x12,0x08,0x00,0x02,0x40,0x08,0x20, 0x21,0x28,0x95,0x6a,0xf6,0x5b,0xb5,0xda,0xdf,0xfa,0xb6,0xd6,0xb5,0x6b,0x57, 0xbd,0x5e,0xfd,0x7f,0xaa,0xa4,0x8b,0x52,0xca,0xa5,0x53,0x56,0xdb,0xaa,0xb4, 0x95,0x09,0x49,0x55,0x49,0x00,0x28,0x45,0x00,0x08,0x80,0x00,0x00,0x25,0x4e, 0x44,0x00,0x08,0x40,0x02,0x50,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0x52, 0xa6,0xdb,0xff,0xfe,0xb5,0xbf,0xee,0xed,0x54,0x12,0xd9,0x08,0x00,0x80,0x10, 0x00,0x01,0x00,0x01,0x00,0x52,0x48,0x00,0x01,0x4a,0x41,0x50,0x12,0x00,0x00, 0x01,0x10,0x01,0x00,0x01,0x04,0x14,0x4f,0xbb,0x5b,0x4a,0xbe,0xef,0xf6,0xd5, 0xab,0x2a,0xdb,0x5d,0xf5,0x6a,0xb7,0xab,0x5a,0xd4,0xaa,0x54,0x94,0x2a,0xaa, 0xad,0xab,0x76,0xf6,0xa2,0x00,0x45,0x52,0xaa,0xb2,0x49,0x01,0x11,0x00,0x82, 0x24,0x00,0x00,0x84,0xa1,0x10,0x88,0x40,0x00,0x90,0x84,0xa2,0x00,0x00,0x00, 0x00,0x00,0x00,0x20,0x8a,0x95,0x57,0xff,0xf7,0xda,0xfa,0xb7,0x77,0x6b,0x45, 0x6a,0x01,0x12,0x00,0x01,0x10,0x28,0x00,0x80,0x00,0x09,0x54,0x50,0x42,0x02, 0x00,0x01,0x00,0x40,0x40,0x20,0x00,0x08,0x20,0x80,0x00,0x4a,0x15,0x6d,0xed, 0x6a,0xd7,0xbf,0xdf,0xfe,0xbd,0xd6,0xbd,0xf6,0xae,0xdb,0x5d,0xfa,0xef,0x52, 0xa9,0x15,0x52,0x95,0x55,0x75,0x5d,0xdf,0xab,0x54,0xaa,0x2a,0x89,0x6b,0x49, 0x00,0x54,0x05,0x48,0x10,0x40,0x40,0x10,0x02,0xd4,0xa2,0x01,0x12,0x48,0x02, 0x52,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x52,0xa5,0x6e,0xde,0xdf,0x77, 0x7f,0xd5,0xba,0xed,0x22,0xb1,0x00,0x00,0x24,0x40,0x00,0x00,0x10,0x04,0x12, 0x52,0xd2,0x02,0x08,0x29,0x54,0xa8,0x20,0x04,0x00,0x00,0x41,0x00,0x04,0x02, 0x52,0x25,0xde,0xf6,0xb5,0x57,0x7e,0xff,0x7b,0xab,0xab,0xb5,0xee,0xed,0xdb, 0xb5,0xbf,0xad,0xd5,0xaa,0xb6,0xda,0xa9,0x4a,0xab,0xab,0xab,0x7a,0xa9,0x52, 0x01,0x22,0xd4,0xb5,0x4a,0x11,0x00,0x2a,0x00,0x41,0x00,0x04,0x40,0x15,0x51, 0x10,0x20,0x40,0x02,0x08,0x01,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x49, 0x12,0xb7,0x7f,0xfe,0xdd,0xd5,0x5f,0x6d,0xb6,0xc8,0x4c,0x20,0x50,0x80,0x02, 0x01,0x00,0x02,0x10,0x00,0x03,0x75,0x50,0x00,0x85,0x02,0x02,0x04,0x00,0x00, 0x04,0x04,0x21,0x10,0x08,0x00,0x91,0x6b,0xff,0x5b,0x5b,0xab,0xef,0xff,0xfd, 0x6d,0x6e,0xb7,0xfe,0xbd,0x6d,0x7a,0xf7,0xbf,0xaa,0xa9,0x25,0x4c,0x29,0xac, 0xdd,0x77,0xff,0x55,0x54,0x51,0x14,0x52,0x58,0xa0,0x84,0x2a,0x85,0x44,0x04, 0x4a,0x00,0x02,0x45,0xa4,0xa4,0x85,0x05,0x28,0x42,0xaa,0x10,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0x44,0xa5,0x5d,0xf7,0xff,0xeb,0xbb,0x6a,0xf6,0xef,0xaa, 0x35,0x01,0x02,0x00,0x00,0x00,0x02,0x00,0x40,0x80,0x12,0xea,0x81,0x02,0x12, 0x90,0x50,0x80,0x20,0x92,0x20,0x00,0x00,0x00,0x00,0x88,0x26,0xdd,0x56,0xd5, 0x55,0x7f,0x7b,0xfa,0xd6,0xb5,0xb3,0xbe,0xf5,0xd7,0xbb,0xaf,0x55,0xd5,0x69, 0x54,0x95,0x25,0xa5,0x57,0x76,0xaf,0xea,0xa4,0xa1,0x24,0xaa,0xa9,0x65,0x12, 0x40,0x10,0x24,0x11,0x01,0x20,0x00,0x00,0x0b,0x52,0x40,0x00,0x10,0x00,0x14, 0x01,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x29,0x15,0x5a,0xbf,0xf7,0xbf, 0xed,0xbb,0xbb,0xba,0xf4,0xaa,0xa4,0x08,0x24,0x08,0x20,0x00,0x20,0x20,0x24, 0x82,0xb5,0x40,0x20,0x42,0x42,0x0a,0x11,0x02,0x00,0x00,0x90,0x02,0x01,0x20, 0x22,0x89,0xeb,0xff,0x6e,0xaf,0xd7,0xdf,0xdf,0xed,0xb6,0xdd,0x6f,0xde,0xbd, 0x6e,0xfd,0xab,0x6f,0xa6,0xaa,0xaa,0xf6,0x95,0x7d,0x6b,0x7f,0xfd,0x55,0x2a, 0x49,0x24,0x95,0xb4,0x88,0x02,0x4a,0x12,0x40,0x10,0x08,0x10,0x00,0x25,0x49, 0x2a,0x90,0x02,0x49,0x10,0x94,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x42, 0xa5,0x6e,0xbe,0xde,0xea,0xb6,0xab,0xad,0xf7,0xb0,0x2a,0x40,0x00,0x00,0x40, 0x00,0x10,0x04,0x89,0x10,0x11,0x50,0x04,0x04,0x0a,0x88,0x84,0x00,0x00,0x00, 0x00,0x00,0x08,0x44,0x02,0x00,0x25,0x57,0x5a,0xd3,0x5a,0x7e,0xff,0x7d,0x56, 0xd5,0x56,0xdb,0xeb,0x6b,0xbb,0x57,0x5e,0xb4,0xd1,0x54,0x2a,0x53,0x69,0x56, 0xb5,0xee,0xd5,0x49,0x54,0x92,0xaa,0xaa,0xaa,0x20,0x20,0x24,0xc8,0x00,0x42, 0xa0,0x00,0x09,0x0b,0x24,0x90,0x04,0x90,0x00,0x4a,0x02,0x88,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x29,0x55,0x55,0xd7,0xff,0xdf,0xdb,0x55,0x77,0x6d,0xfc, 0x53,0x20,0x11,0x10,0x01,0x04,0x80,0x00,0x28,0x2a,0x04,0xad,0x10,0x80,0x21, 0x20,0x21,0x04,0x00,0x40,0x02,0x04,0x80,0x00,0x00,0x4a,0x82,0xbd,0xd7,0xbc, 0xad,0xaf,0xdf,0xfb,0xba,0xae,0xeb,0x7e,0xbb,0xfd,0xfd,0x6f,0x55,0xda,0xad, 0x52,0x92,0xd4,0xa5,0x7b,0xaf,0x77,0xed,0x55,0x44,0x48,0xa9,0x4a,0xf2,0x91, 0x04,0x89,0x32,0x44,0x00,0x00,0x82,0x40,0x24,0x92,0x45,0x40,0x0a,0x49,0x00, 0x50,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x45,0x05,0xb6,0xbf,0x7d,0x74, 0xf7,0x6b,0x55,0xf6,0xd5,0x25,0xa0,0x00,0x00,0x08,0x00,0x01,0x00,0x84,0x10, 0x41,0x3a,0x00,0x10,0x85,0x52,0x8a,0x20,0x10,0x01,0x20,0x20,0x00,0x00,0x22, 0x00,0x2a,0xd7,0x7a,0xd7,0x6b,0xfb,0x7f,0xee,0xab,0x5b,0x5d,0xdb,0xd6,0xa6, 0xae,0xb5,0xea,0xa5,0x55,0x4a,0x4a,0xaa,0xb5,0x6e,0xf5,0xdd,0x56,0xaa,0xaa, 0x55,0x54,0xae,0xa9,0x20,0x00,0x2a,0xa4,0x10,0x85,0x48,0x08,0x02,0x52,0x49, 0x10,0x12,0x40,0x10,0x15,0x0a,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11, 0x6a,0xaa,0xed,0xff,0xfb,0x5d,0xad,0xdf,0x57,0xea,0x52,0x90,0x00,0x42,0x20, 0x00,0x00,0x10,0x28,0x85,0x10,0x8a,0x82,0x84,0x11,0x88,0x00,0x80,0x01,0x04, 0x00,0x80,0x11,0x20,0x80,0x24,0x95,0x55,0xbf,0x7a,0xad,0x5f,0xfe,0xfa,0xea, 0xdb,0xbe,0xff,0x6f,0xfd,0xdb,0xee,0xbe,0xd9,0x2a,0x95,0x2a,0x55,0x55,0xfa, 0xbf,0x77,0xba,0xb2,0x95,0x0a,0xa5,0x15,0x6a,0x90,0x12,0x92,0x40,0x82,0x10, 0x20,0x00,0x08,0x14,0x24,0x89,0x00,0x09,0x04,0x40,0x49,0x20,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x49,0x51,0xab,0x5f,0xdb,0xdd,0xab,0xb5,0x6b,0xf5,0x5d, 0x2a,0xa2,0x49,0x00,0x00,0x20,0x00,0x42,0x12,0x20,0x04,0x6d,0x10,0x42,0x00, 0xd4,0x4a,0x04,0x00,0x00,0x08,0x08,0x80,0x04,0x04,0x80,0x4b,0x6d,0x6b,0xad, 0xd5,0xeb,0xff,0xf6,0xab,0x6d,0x6b,0xed,0xdd,0x57,0x76,0xb5,0xd5,0x4a,0xd5, 0x40,0xa1,0x55,0x55,0x36,0xeb,0xdd,0x55,0x49,0x29,0x65,0x52,0x4b,0xd1,0x44, 0x80,0x49,0x52,0x10,0x85,0x00,0x80,0x01,0x55,0x42,0x50,0x20,0x42,0x51,0x14, 0x24,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xaa,0xb5,0x6a,0xee,0xee, 0xad,0x6a,0xbf,0xf6,0xf5,0x14,0x48,0x00,0x10,0x00,0x02,0x22,0x00,0x54,0xaa, 0x41,0x12,0xc0,0x10,0x94,0xa2,0x00,0xa0,0x84,0x10,0x00,0x00,0x00,0x80,0x00, 0x12,0x24,0xd5,0xff,0x7e,0xb7,0x7f,0x7b,0xdd,0xd5,0xb6,0xfe,0xff,0xfb,0xfd, 0xdd,0xfa,0xb7,0x6b,0x55,0x2d,0x15,0x56,0xad,0xf5,0x7d,0xf6,0xb5,0x54,0x94, 0x96,0xa9,0x24,0x9a,0x10,0x02,0x92,0x50,0x44,0x50,0x80,0x10,0x88,0x22,0x29, 0x0a,0x04,0x10,0x00,0x01,0x12,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14, 0xaa,0xaa,0xaf,0xf7,0xb5,0xd5,0xb6,0xd7,0xbb,0x5a,0x95,0x24,0x04,0x41,0x00, 0x80,0x00,0x00,0x20,0x94,0xa8,0x4a,0x91,0x22,0x00,0xa9,0x22,0x00,0x00,0x80, 0x42,0x40,0x08,0x00,0x48,0x80,0x93,0x7b,0x5d,0xea,0xdd,0xdf,0xef,0xf7,0x5b, 0x57,0xaf,0xb7,0xbf,0x7f,0x76,0xad,0x6e,0xaa,0xd4,0xa9,0x55,0x55,0x54,0xbb, 0xd7,0x5d,0xb6,0xa5,0x4a,0x53,0x54,0x95,0x52,0x80,0x29,0x20,0x24,0x21,0x0a, 0x08,0x02,0x02,0xa8,0x94,0x90,0x81,0x04,0x24,0xa8,0x99,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x08,0x54,0xa5,0xbb,0x5d,0xde,0xaa,0xdd,0xae,0xf5,0x6e, 0x46,0x90,0x00,0x08,0x10,0x00,0x80,0x04,0x8a,0xa8,0x12,0x24,0xa4,0x00,0x22, 0x34,0x08,0x90,0x10,0x00,0x08,0x04,0x40,0x11,0x00,0x09,0x0a,0xaa,0xf7,0xeb, 0x77,0xf7,0xff,0x6d,0xad,0xb5,0x7d,0xfe,0xf7,0xdb,0xdb,0xf5,0xb5,0x55,0x6a, 0xaa,0xa4,0xb5,0xab,0x6d,0x7d,0xbe,0xaa,0x92,0x51,0x2a,0xa9,0x25,0x4a,0xa4, 0x82,0x15,0x10,0x94,0xa8,0x82,0x48,0x28,0x25,0x45,0x04,0x10,0x40,0x82,0x02, 0x24,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x85,0x2a,0xd5,0x5d,0xeb,0xb5, 0x55,0x6b,0x7b,0xd9,0xbb,0x13,0x25,0x11,0x20,0x00,0x12,0x04,0x20,0x01,0x55, 0x48,0x94,0x10,0x21,0x00,0x92,0x82,0x04,0x81,0x09,0x00,0x00,0x02,0x40,0x0a, 0x84,0x25,0x6f,0x7f,0x6d,0xbf,0x7e,0xbf,0xf6,0xd6,0xdb,0xbf,0xbf,0xff,0x7e, 0xff,0xda,0xde,0xaa,0xaa,0x54,0xab,0x5a,0x95,0xbf,0xde,0xeb,0x55,0x49,0x0a, 0xad,0x50,0x94,0xa5,0x00,0x10,0xc8,0x82,0x40,0x15,0x28,0x01,0x04,0x92,0x28, 0x50,0x04,0x12,0x10,0x90,0x92,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12, 0x6a,0xaa,0xa6,0xf7,0xdd,0xdb,0xad,0xdf,0x7e,0xd6,0xd1,0x52,0x84,0xa0,0x00, 0x40,0x10,0x00,0x12,0xaa,0x35,0x11,0x08,0x08,0x10,0x6c,0x48,0xa0,0x00,0x00, 0x10,0x91,0x08,0x00,0x22,0xa0,0xb7,0xa9,0x6f,0xb7,0xed,0xff,0xff,0xbd,0xfd, 0xad,0x7d,0xef,0xdd,0xeb,0xeb,0xef,0x55,0xab,0x51,0x4a,0x95,0x55,0x6d,0x76, 0xf7,0x6a,0xaa,0xa5,0x65,0x55,0x46,0xa5,0x52,0x49,0x05,0x25,0x51,0x2b,0x40, 0xa4,0x48,0x20,0x29,0x52,0x81,0x21,0x40,0x22,0x15,0x24,0x80,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x05,0x15,0x55,0x55,0x5d,0x6a,0xad,0x56,0xb5,0xfc,0x5b, 0x6e,0x94,0x02,0x49,0x01,0x00,0x40,0x04,0x42,0x10,0x48,0x4c,0x44,0x80,0x42, 0x3a,0x20,0x52,0x04,0x24,0x44,0x00,0x01,0x55,0x19,0x08,0xaa,0xeb,0x7a,0xdd, 0xbf,0xde,0xfb,0xef,0x57,0x77,0xef,0x7f,0xf7,0xbf,0x76,0xba,0xb4,0xad,0x55, 0x51,0x5a,0xaa,0xb5,0xff,0x5b,0xb5,0x55,0x2a,0x92,0x2a,0x28,0x92,0x89,0x04, 0xa0,0x29,0x04,0x91,0x15,0x58,0x02,0x4a,0x84,0x89,0x08,0x08,0x08,0x80,0x40, 0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x92,0xaa,0xab,0x77,0xad, 0x6a,0xbb,0xef,0xb7,0x55,0xa1,0x4a,0xa1,0x54,0x00,0x04,0x80,0x90,0x08,0xca, 0xaa,0x92,0x10,0x12,0x08,0xad,0x44,0x08,0x40,0x00,0x08,0x50,0x44,0x40,0x25, 0x42,0x57,0x55,0xff,0x6f,0xf7,0x77,0xbf,0xbf,0xfa,0xdc,0xbb,0xdb,0x7d,0xfd, 0xdb,0xeb,0x15,0x36,0xaa,0x4a,0x4d,0x56,0xaf,0xeb,0xed,0x55,0x55,0x52,0x54, 0xd5,0xa5,0x48,0xaa,0x51,0x15,0x50,0xa1,0x2a,0x40,0x94,0x90,0x80,0x22,0xaa, 0x21,0x02,0x82,0x09,0x14,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44, 0x95,0x55,0xad,0xaa,0xf5,0x5d,0xd5,0x72,0xff,0x5a,0xf0,0xa5,0x48,0x48,0x00, 0x00,0x00,0x00,0x04,0x25,0x29,0x2a,0x19,0x08,0x02,0x7a,0x21,0x21,0x00,0x91, 0x02,0x49,0x11,0x34,0x95,0x10,0x6e,0xdd,0x6f,0xf5,0x7f,0xfd,0xf6,0xff,0xfd, 0xeb,0xed,0x7f,0xd7,0xdb,0xd5,0xac,0xd2,0xba,0xa9,0x51,0x6a,0xad,0x75,0xbf, 0xbe,0xea,0xaa,0x4a,0x8a,0x55,0x52,0xa5,0x50,0x05,0x68,0x25,0x0a,0x49,0x25, 0x28,0x04,0x15,0x0a,0xa4,0x04,0x50,0x28,0x00,0x51,0x28,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x02,0xa5,0x2a,0x52,0x2f,0xdd,0xd7,0x7d,0xfd,0xbd,0xf7, 0xa9,0x55,0x51,0x24,0x10,0x10,0x08,0x01,0x22,0x92,0xa4,0x85,0x44,0x52,0x48, 0x7d,0xa4,0x14,0x12,0x04,0x11,0x24,0x44,0xa8,0x54,0x85,0x57,0xb7,0xfe,0xbf, 0xfe,0xdb,0xff,0xf6,0xdf,0x7d,0xff,0xed,0xff,0xff,0x6b,0xd3,0x2a,0xa6,0xb6, 0x4a,0xab,0x57,0xdf,0xfb,0xeb,0xab,0x6a,0xb5,0x65,0x55,0x4b,0x50,0x2a,0x91, 0x56,0xa8,0xa4,0xa4,0x92,0x41,0x42,0xa1,0x55,0x55,0x50,0x05,0x00,0xa5,0x24, 0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x4a,0xd2,0xa5,0x52,0xf6, 0xaa,0xd7,0x6f,0xff,0x5a,0xe4,0xab,0x54,0x92,0x81,0x02,0x21,0x24,0x08,0x54, 0x92,0x28,0xb0,0x05,0x01,0x3a,0x41,0x28,0x40,0x51,0x22,0x55,0x35,0x22,0x25, 0x11,0x5b,0x7a,0xfb,0xf7,0xf7,0xfd,0xfb,0xff,0xff,0xab,0xb5,0x7f,0xdf,0x7d, 0xb5,0xa9,0x55,0x54,0xa9,0x55,0x2d,0x52,0xf7,0xef,0x7a,0xd5,0x55,0x55,0x2a, 0xd6,0xa1,0x8a,0x80,0x25,0x55,0x52,0x12,0x4a,0xa1,0x10,0x90,0x14,0x09,0x54, 0x21,0x50,0x4a,0x00,0x82,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11, 0x52,0x4d,0x52,0x5d,0xbd,0xb7,0x72,0xd9,0x5e,0xef,0x78,0xed,0x68,0x49,0x00, 0x04,0x00,0x00,0x41,0x42,0xaa,0x81,0x04,0x44,0xa4,0xfd,0xd4,0x05,0x00,0x88, 0x82,0x88,0x92,0x98,0x15,0x26,0xd7,0xef,0xef,0xed,0xff,0xff,0xee,0xef,0xf7, 0xee,0xff,0xad,0xfd,0xf6,0xd6,0xd6,0x94,0xaa,0xaa,0xa8,0xd5,0xad,0x5d,0x5f, 0xab,0x7d,0x55,0x55,0xab,0x53,0x54,0xa9,0x29,0x16,0xa4,0xa8,0xa2,0xaa,0x48, 0xa4,0x0a,0xa2,0xa4,0xaa,0x84,0x05,0x04,0x4a,0x51,0x24,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x01,0xa9,0x52,0xa9,0x56,0xee,0xab,0xda,0xee,0xf7,0xb5, 0x56,0xb6,0xd2,0x24,0x88,0x41,0x02,0x50,0x94,0xb5,0x50,0x04,0x12,0x05,0x00, 0x2b,0x60,0xa8,0x12,0x24,0x2a,0x40,0x55,0x09,0x54,0x92,0xbf,0xbb,0x7f,0xbf, 0xbf,0xee,0xf5,0xfe,0xfe,0xd5,0xda,0xff,0xf7,0xfb,0x55,0x5a,0xa5,0x55,0xaa, 0xd6,0xaa,0xab,0xfb,0xf5,0x55,0xda,0xaa,0xaa,0x55,0x5a,0x82,0x52,0x44,0x49, 0x56,0x54,0x14,0x4a,0xa2,0x41,0xa0,0x45,0x15,0x11,0x10,0x90,0x50,0x01,0x0c, 0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x95,0x55,0x51,0x2b,0x76, 0xda,0xb5,0xb5,0x5f,0xdd,0xfd,0x5b,0x78,0x88,0x40,0x08,0x88,0x24,0x2a,0x5a, 0xa9,0x20,0x01,0x13,0x6a,0xad,0x5a,0x05,0x00,0x52,0x85,0x22,0x0a,0xaa,0x5b, 0x5a,0xd5,0xff,0xf5,0xf7,0xf7,0xbf,0xff,0xdf,0xdf,0xff,0x77,0xab,0xfd,0xdd, 0xad,0x6a,0x52,0xba,0xa5,0x6b,0x75,0x55,0x6e,0xbf,0xed,0x7d,0x5e,0xda,0xad, 0xaa,0xa9,0x94,0x11,0x25,0xa9,0x55,0x52,0xaa,0x89,0x48,0x0a,0x12,0x22,0x54, 0x42,0x04,0x02,0x94,0x52,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xaa,0x95,0x6c,0xa9,0xaf,0x6d,0x74,0xd5,0x5b,0x6a,0xdb,0x4a,0xd4,0x26,0x92, 0x01,0x20,0x80,0x8a,0x2a,0xac,0x00,0x04,0x45,0x40,0x2b,0xa4,0x14,0x52,0x10, 0x52,0x88,0x45,0x55,0x55,0xaa,0xbf,0xb6,0xdf,0xbd,0x7f,0xfb,0xd7,0xff,0xfd, 0xab,0xde,0xef,0xae,0xee,0xaa,0xba,0xa5,0x6a,0x55,0xba,0xda,0xad,0xfe,0xdd, 0x55,0xd6,0xaa,0xab,0x56,0xd6,0x55,0x6a,0x88,0x83,0xab,0x10,0x89,0x2a,0x41, 0x25,0x40,0xa4,0x89,0x22,0x80,0x51,0x10,0x25,0x21,0x40,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x54,0xaa,0xb5,0x56,0xb5,0xaa,0xba,0xae,0xdf,0xf5, 0x7d,0x85,0xb4,0x82,0xa0,0x44,0x82,0x11,0x68,0xb6,0xa1,0x01,0x22,0x06,0xad, 0x15,0x5a,0x42,0x00,0xa4,0x28,0x41,0x12,0xaa,0xda,0xdb,0x6d,0xff,0xf6,0xef, 0xbd,0xfe,0xff,0x7f,0xf7,0xb6,0xbb,0xbe,0xf7,0xb5,0x5f,0xd5,0x49,0x55,0x4a, 0xae,0xaa,0xb5,0x55,0xb7,0x56,0x7a,0xd5,0xad,0x5a,0xb5,0x4a,0xb4,0x42,0x2a, 0xaa,0xaa,0x52,0xa9,0x2a,0x90,0x2a,0x40,0x24,0x94,0x25,0x04,0x45,0x10,0x48, 0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x92,0x55,0x56,0xb4,0xdb, 0x6d,0x4a,0xa3,0x6a,0xdf,0xae,0xba,0xd5,0x10,0x88,0x10,0x68,0x04,0xa9,0x55, 0x54,0x10,0x09,0xd1,0x55,0x4a,0xea,0x81,0x54,0x12,0x82,0x28,0x45,0x5b,0x55, 0xb6,0xff,0xb6,0xdd,0xfd,0xf7,0xbf,0xf7,0xfb,0x7e,0xea,0xfe,0xf7,0xae,0xef, 0xb5,0x6a,0xb5,0x2a,0xaf,0x7d,0xd5,0x56,0xbb,0x7d,0x6b,0xaa,0xad,0x55,0xab, 0xd5,0x5a,0x4a,0x90,0x95,0x54,0x49,0x2a,0xaa,0x84,0xa5,0x01,0x15,0x45,0x02, 0x80,0x42,0x00,0x42,0x12,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x55,0x55,0x55,0x5a,0x6d,0xb5,0x5d,0x55,0xbb,0xe9,0x35,0xed,0xa8,0x0a,0x21, 0x00,0x46,0x90,0xb5,0x57,0xa0,0x04,0x52,0xad,0x22,0x56,0xb5,0x28,0x82,0xa8, 0x50,0x85,0x11,0x55,0x6e,0xff,0xaf,0xff,0xf7,0xf6,0xff,0xfb,0xbe,0xff,0xef, 0xbf,0x5b,0xdd,0x7b,0xd5,0xdf,0xa9,0x75,0x4a,0xd5,0xaf,0x6a,0xfa,0xd5,0xd5, 0x2a,0x55,0xaa,0xae,0xb5,0xb5,0x2a,0xa5,0x0a,0x4b,0x55,0x54,0x85,0xaa,0x52, 0xa8,0xa8,0x40,0xa8,0x49,0x12,0x10,0x2a,0x09,0x44,0x80,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x24,0xaa,0xaa,0xad,0x56,0xb7,0x4a,0xaa,0xed,0x76, 0x16,0xb5,0x69,0x20,0x94,0x08,0x5a,0x44,0x94,0xb7,0xd0,0x00,0x15,0x52,0xa9, 0x4a,0xfb,0x42,0xa8,0x55,0x2a,0x14,0x05,0xf6,0xf5,0xaa,0xfd,0xb7,0xbf,0xdf, 0xbe,0xfe,0xff,0xef,0xfe,0xeb,0xfe,0xf7,0xb7,0x7e,0xbb,0x55,0xb4,0xaa,0xab, 0x75,0xb7,0x56,0xae,0xaa,0xd5,0x56,0xd7,0x55,0xdf,0xaa,0xee,0x92,0x50,0x2a, 0xaa,0xaa,0x55,0x52,0x94,0xa5,0x05,0x12,0x05,0x02,0x84,0x84,0x81,0x40,0x29, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x52,0x5a,0xaa,0xba,0x5a, 0xba,0xad,0x55,0xb7,0x75,0x4a,0xd5,0xa8,0x04,0x48,0x41,0x07,0x10,0x52,0x57, 0x40,0x81,0x21,0x54,0x54,0xab,0x5d,0x49,0x52,0x6d,0xa0,0x44,0x90,0x5b,0x5b, 0x77,0x5f,0xde,0xef,0x7d,0xdb,0xbf,0xbf,0xbd,0xbd,0xb5,0x6b,0x55,0x6d,0xd2, 0xee,0xaa,0xea,0x56,0x55,0xaa,0xda,0xed,0xb6,0xfb,0x55,0x6b,0x5a,0xab,0x68, 0xaa,0x44,0x50,0x24,0xaa,0x92,0x49,0x55,0x8a,0x45,0xa8,0x20,0x41,0x52,0xa2, 0x20,0x21,0x10,0x15,0x44,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x15,0x54,0xaa,0xad,0x55,0x6d,0x55,0xaa,0xd5,0xd5,0x9f,0x6a,0xaa,0x81,0x20, 0x14,0x54,0x85,0x49,0x5b,0xa2,0x08,0x4e,0x95,0x4a,0x15,0x7a,0xd5,0xe9,0x3b, 0xba,0x08,0x05,0x6d,0xed,0xbe,0xfe,0xfb,0xfd,0xfe,0xff,0xf6,0xff,0xff,0xff, 0xff,0xff,0xff,0xdb,0x6f,0x5a,0xa5,0x35,0x2b,0x56,0xed,0xef,0xfa,0xab,0x0d, 0xaa,0x55,0x55,0xad,0xb6,0xaa,0xaa,0xaa,0x92,0x25,0x55,0x2a,0xaa,0xaa,0xaa, 0xa2,0x95,0x2a,0x08,0x89,0x12,0x08,0x05,0x22,0x11,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x21,0x2b,0x2a,0xd7,0x2b,0x5b,0x56,0xb7,0x75,0x7f, 0xd5,0xf6,0xea,0x08,0x94,0x40,0x42,0x91,0x2a,0xd5,0xa0,0x00,0xb7,0xd5,0x6a, 0xaa,0xbf,0x74,0xb4,0x2d,0x55,0x22,0xa1,0x6b,0x76,0xd7,0xef,0xff,0x7f,0xf7, 0xfe,0xff,0xfb,0xff,0xf7,0x6d,0xbe,0xaa,0xed,0xf5,0xaa,0xda,0xaa,0xad,0x5a, 0xab,0x7d,0xaf,0x5d,0x6a,0xd6,0xb5,0x6e,0xb7,0xd9,0x52,0xa4,0x44,0x49,0x15, 0x51,0x55,0x2b,0x29,0x55,0xd9,0x20,0x94,0xa5,0x24,0x89,0x42,0x50,0x08,0x84, 0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x94,0xb5,0x2a,0x8d, 0x7d,0xa9,0x5a,0xdd,0xaa,0xff,0x5b,0x29,0x45,0x29,0x12,0x29,0x04,0x54,0x2d, 0x48,0x02,0x7a,0xaa,0xaa,0xaa,0xdd,0xed,0x75,0x24,0xae,0x10,0x09,0x6b,0xab, 0x7e,0xbb,0xef,0xf5,0x2d,0x57,0xfd,0xff,0x6d,0xbd,0xff,0xf7,0xfe,0xb5,0xae, 0xd5,0x4d,0x5a,0x56,0xa5,0x57,0xef,0xfd,0x65,0x15,0x55,0x55,0x55,0x55,0xd5, 0x4d,0x59,0x29,0x34,0xa5,0x4a,0x26,0xaa,0x95,0x53,0x62,0x14,0x49,0x10,0x4a, 0x44,0x20,0x02,0x44,0x52,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x12,0xa6,0x95,0x55,0xa5,0x96,0xd5,0xae,0xba,0xff,0xf5,0x6d,0xd5,0x94,0x94, 0x44,0x12,0x49,0x17,0xaa,0x81,0x20,0x2e,0xd6,0xd4,0xaa,0xbf,0xf6,0xdc,0x95, 0x5b,0x24,0x92,0xab,0x7d,0xbb,0xff,0xfd,0xde,0xbb,0xfd,0xff,0xfd,0xff,0xff, 0xf7,0xfe,0xb5,0xdb,0xfb,0x5a,0xa4,0xab,0x5a,0xaa,0xdd,0xfd,0x5d,0xb4,0xd6, 0xaa,0x55,0x5b,0x57,0x55,0x6a,0xaa,0x54,0xaa,0x15,0x54,0x95,0xad,0x4a,0x95, 0x50,0x41,0x24,0x8a,0x91,0x20,0x89,0x10,0xa2,0x09,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x08,0x51,0x4a,0xb5,0x55,0x6d,0xba,0xfd,0xdf,0xb7, 0x7f,0xdb,0x6a,0x45,0x4b,0x28,0x95,0x02,0xa1,0x4a,0xa2,0x09,0x2a,0x5a,0xd5, 0x55,0x77,0x7d,0x7b,0x45,0x6d,0x10,0x09,0xd7,0xed,0xef,0xef,0xff,0xf5,0x5e, 0xdf,0xff,0xef,0xba,0xfb,0xdf,0x6e,0xef,0x6b,0x6d,0x69,0x55,0x6a,0xaa,0xaa, 0xbf,0xbe,0xf5,0x55,0x51,0x6a,0x52,0xb5,0x5a,0xd5,0x55,0x55,0x12,0x50,0xa5, 0x52,0xad,0x42,0x55,0x4a,0xca,0xaa,0xa8,0x45,0x24,0x94,0x04,0x45,0x14,0xa4, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x94,0xaa,0xaa,0xaa, 0x96,0xea,0x46,0xab,0x7b,0xfa,0xf5,0x7d,0x1a,0xaa,0x82,0x40,0x49,0x15,0x4a, 0x80,0x08,0x01,0x2a,0xaa,0xaa,0xdf,0xef,0xde,0x92,0xae,0x89,0x2d,0x7a,0xfb, 0x7f,0xdf,0x6e,0xff,0x4b,0x7f,0xbb,0xf6,0xf7,0xbf,0xff,0xf7,0x7f,0xb6,0xd5, 0xaa,0xaa,0xb7,0x55,0x55,0xf6,0xf7,0x55,0x55,0x55,0x75,0x4b,0x6d,0xdd,0x55, 0x55,0x56,0xaa,0xaa,0x55,0xa9,0x56,0xb5,0x95,0x55,0x64,0x10,0x22,0x92,0x4a, 0x42,0x50,0x20,0x40,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x48,0x4a,0x52,0x56,0xab,0x5b,0xba,0xb5,0xd6,0xee,0xff,0xbf,0xab,0xd5,0x2a, 0x50,0x24,0x22,0xaa,0xa2,0xa4,0x02,0x24,0x95,0x11,0x55,0x7e,0xfa,0x76,0xa4, 0x56,0xc0,0x53,0xad,0xd7,0xb6,0xfd,0xff,0xdb,0xf6,0xee,0xff,0x5f,0xff,0xff, 0xed,0xbb,0xd5,0xdb,0x74,0xaa,0xaa,0x9a,0xd6,0xb7,0xbf,0xdd,0xb5,0x25,0xaa, 0x9e,0xaa,0xba,0xb7,0x55,0x52,0xa2,0x35,0x04,0x2a,0x95,0x2a,0x89,0x52,0x95, 0xd2,0xa3,0x48,0x25,0x92,0x94,0x02,0x95,0x2a,0xa5,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x02,0x91,0x55,0x5a,0xaa,0xaa,0xcd,0x4a,0x7b,0x5f, 0xd5,0xd5,0xd5,0x54,0xa5,0x0a,0x92,0x89,0xd5,0x41,0x00,0x40,0x00,0x04,0x48, 0x0a,0xab,0xd7,0xad,0xd7,0xba,0xbe,0xbe,0xdf,0xfd,0xff,0xdf,0xff,0xff,0x5b, 0xfb,0xef,0xff,0xb7,0xb6,0xff,0xd5,0x77,0x6a,0x96,0xaa,0xab,0xf7,0x55,0x56, 0xf7,0x6a,0xba,0xab,0x55,0x52,0xaa,0xaa,0xfa,0xaa,0xad,0x29,0x44,0xb1,0x45, 0x52,0xd5,0x52,0xaa,0xa5,0x55,0x08,0x12,0x9a,0x49,0x21,0x54,0x40,0x80,0x10, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x29,0x4a,0xaa,0xaa, 0x2d,0x6a,0xab,0xaa,0xed,0xfe,0xfe,0x6a,0xd2,0x51,0x50,0x04,0x24,0xba,0xa8, 0x41,0x00,0x88,0x41,0x21,0x44,0xbf,0xfd,0x57,0xd9,0x2b,0x6a,0xdb,0x75,0x6b, 0xed,0xff,0x6b,0x7f,0xfd,0xff,0xbf,0x6d,0xfe,0xff,0xfe,0xef,0xad,0xad,0xd2, 0xaa,0xac,0xb9,0x56,0xaf,0x5d,0xb5,0x55,0x5d,0xea,0x55,0x2b,0x55,0x55,0x55, 0x52,0x4a,0x95,0x4a,0x34,0xaa,0x29,0x48,0x95,0x55,0xa1,0x52,0x49,0x55,0x2a, 0x94,0x02,0x2a,0x25,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x14,0x51,0x55,0x55,0xa6,0xd5,0x2d,0x5b,0x5f,0xab,0xd7,0xbd,0x55,0x15, 0x4b,0x6b,0x0a,0x94,0xb1,0x08,0x08,0x02,0x28,0x2a,0x21,0x5d,0xd7,0x6f,0x6e, 0xcd,0xbf,0x7e,0xdf,0xbe,0xff,0xf7,0xff,0xf7,0xef,0x7e,0xfd,0xff,0xff,0xef, 0x6f,0xba,0xef,0x76,0xad,0x5b,0x56,0xee,0xaa,0xda,0xef,0x5a,0xf4,0xaa,0xaa, 0xaa,0xda,0xeb,0xb6,0xd5,0x54,0xa4,0x52,0xa4,0x92,0xaa,0xd5,0x55,0x6a,0xaa, 0xaa,0x24,0x24,0x5a,0x90,0x41,0x54,0x82,0x80,0x10,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x08,0xa5,0x28,0xad,0x55,0x52,0xac,0xd5,0x5a,0xde, 0xff,0xfd,0xd5,0x29,0x4a,0x45,0x20,0xa5,0x4a,0x90,0x00,0x00,0x24,0x82,0x90, 0x14,0xaf,0x7d,0xb5,0xf5,0x56,0xd2,0xd7,0x77,0xf7,0xdf,0x7d,0xff,0xdd,0xbb, 0xff,0xdf,0xbf,0xbb,0xfd,0xfb,0x6f,0x7b,0xab,0x56,0xdd,0x52,0xb9,0x55,0xbf, 0x75,0xab,0x4a,0x4b,0xaa,0x95,0x4a,0xad,0x55,0x5a,0xaa,0x55,0x4a,0xa9,0x4a, 0x55,0x55,0x55,0x55,0xaa,0xd4,0x92,0x95,0x4a,0xab,0x28,0x0a,0x24,0x29,0x40, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4a,0xaa,0x2a,0xaa, 0xa5,0x5b,0x55,0xad,0x57,0xae,0xf6,0xaa,0xd5,0x69,0x54,0xca,0x13,0x5a,0xa4, 0x10,0x02,0x40,0x00,0x02,0xa2,0xba,0xff,0xef,0xaf,0x6b,0x6d,0x7d,0xbd,0x7f, 0xff,0xff,0xf7,0x7f,0xff,0xfd,0x7f,0xff,0xff,0xdf,0xaf,0xf5,0xdd,0x6d,0x53, 0x55,0x2d,0x5d,0x6b,0x6a,0xaf,0x57,0xb2,0xab,0xd5,0x55,0x6b,0x56,0xda,0xa5, 0x52,0xa9,0x54,0xa2,0x29,0x56,0xaa,0xda,0xaa,0xab,0x55,0x50,0xaa,0xaa,0x48, 0x85,0x50,0x82,0x02,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x2a,0x55,0x55,0x55,0x52,0xad,0x55,0x55,0x5a,0xf5,0xdd,0xed,0x4a,0xea, 0x22,0x29,0x49,0x2a,0xa0,0x82,0x48,0x04,0xa8,0x90,0x11,0x4d,0xfd,0xb5,0xf5, 0xb7,0xb7,0x56,0xef,0xef,0x7b,0xdf,0x7f,0xdf,0xff,0xef,0xfd,0xfe,0xdf,0x76, 0xfd,0xff,0x76,0xd5,0x5a,0xaa,0xd3,0x75,0x57,0xff,0xed,0xae,0xaa,0x55,0x75, 0x55,0x2a,0xab,0x6a,0xaa,0x4a,0x8a,0x42,0xa8,0x94,0x2a,0xaa,0xaa,0xab,0x55, 0xaa,0x8a,0x44,0x95,0x55,0x20,0x4a,0x08,0xa4,0xa0,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x25,0x2a,0x8a,0xd4,0xa9,0x5e,0xca,0xb6,0xae, 0xdf,0x7e,0x54,0xa2,0xd5,0x94,0x84,0x0a,0xa5,0xc2,0x68,0x00,0x20,0x02,0x05, 0x4c,0xb7,0x7e,0xef,0x5e,0xef,0xda,0xbf,0xbb,0xff,0xff,0xff,0xfd,0xff,0xbf, 0xff,0xf7,0xd7,0xff,0xff,0xb7,0xad,0xfb,0x55,0x55,0x55,0x6d,0x55,0x55,0xea, 0xb6,0xab,0x49,0x4a,0xd5,0x55,0x6d,0x6d,0x55,0x55,0x55,0x51,0x55,0x6a,0xa5, 0x45,0x55,0xd5,0x55,0x56,0xd5,0x52,0xb5,0x4a,0xa4,0x8a,0x28,0x22,0x08,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x92,0x94,0x55,0x2a, 0xc5,0x55,0xab,0x5a,0xd5,0xb5,0xfb,0xbd,0x0b,0x72,0x49,0x28,0x0a,0x9a,0xa8, 0xca,0x00,0x9a,0xa0,0x40,0x25,0x5a,0xff,0xf5,0xb7,0xbb,0x7b,0x6d,0x6f,0xff, 0xff,0xfd,0xef,0xbe,0xff,0xbf,0xff,0xff,0xff,0xed,0xfe,0xff,0xba,0xaa,0xd5, 0x5b,0xa5,0x6a,0xaf,0xbf,0xdb,0xbd,0x2a,0xaa,0xad,0x2a,0xb5,0xaa,0xaa,0xa9, 0x55,0x25,0x49,0x2a,0x59,0x29,0x2a,0xab,0x5b,0x57,0x55,0x29,0x4a,0x2a,0x55, 0x01,0xa4,0x89,0x22,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x22,0x95,0x56,0xaa,0xb5,0x2b,0x6d,0xaa,0xba,0xde,0xee,0xd4,0x21,0x56, 0xa4,0x93,0x45,0x4a,0xd0,0x64,0x42,0x55,0x49,0x15,0x15,0xeb,0xaf,0xfe,0xfb, 0xaf,0xdd,0xbf,0xff,0xbe,0xfb,0x6f,0xff,0xff,0xfd,0xfe,0xfe,0xfd,0xbb,0xbf, 0x6f,0xab,0xed,0xab,0x7a,0xb6,0xb5,0x5a,0xaa,0xf5,0x6d,0x6d,0x4a,0x56,0xfa, 0xaa,0xd5,0x5b,0x52,0xa5,0x2a,0x95,0x51,0x52,0xa5,0x45,0x55,0x7d,0x6d,0x55, 0xaa,0x94,0xb4,0x95,0x52,0x54,0x20,0x00,0x88,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x15,0x4a,0x95,0x55,0x54,0xad,0x55,0x6a,0xcf, 0x6b,0x5b,0x5e,0x15,0xa9,0x52,0xcc,0x92,0xb5,0x60,0x88,0x08,0x88,0xaa,0x00, 0xa5,0x5e,0xff,0x7b,0xfb,0x5b,0xf6,0xda,0xdb,0xff,0xef,0xff,0xfe,0xff,0xff, 0xff,0xee,0xaf,0xef,0xff,0xfa,0xff,0x7e,0xdd,0x56,0xbd,0x4a,0xed,0x55,0xff, 0xbb,0x75,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xd5,0x52,0xaa,0x55,0x4a,0xa5,0x5a, 0x28,0xaa,0xaa,0xaa,0x96,0xba,0xaa,0xaa,0xaa,0x49,0x0a,0x91,0x2a,0x22,0x80, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x4a,0x46,0xaa, 0xaa,0x85,0x44,0xaa,0xb5,0x9d,0xba,0xb2,0xa2,0x52,0xad,0x53,0x41,0x55,0xb8, 0x54,0xa0,0x52,0x54,0x49,0x15,0xad,0xdf,0xff,0xdd,0x57,0xaf,0x7f,0xee,0xf7, 0xbf,0x7f,0xdb,0xff,0xff,0xff,0x7d,0xfd,0xff,0xfd,0xff,0xb7,0xd7,0x75,0xaa, 0xaa,0xab,0x6a,0xab,0x6a,0xed,0xde,0xa5,0x55,0x5e,0xaa,0xad,0x55,0xd5,0x54, 0xa5,0x2b,0x64,0x54,0xa5,0x45,0x55,0xb6,0xda,0x5b,0x56,0xa5,0x72,0x29,0xaa, 0x61,0x44,0x10,0x80,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x0a,0xa2,0xa9,0xaa,0xaa,0xab,0x52,0x55,0x4a,0xa5,0x55,0x4b,0xd0,0x08, 0xd2,0xaa,0xb2,0xaa,0xa8,0x00,0x01,0x09,0x00,0x00,0x55,0xf7,0x77,0xfe,0xbe, 0xaa,0xda,0xd5,0x7f,0xde,0xff,0xff,0xff,0xff,0xfb,0xbd,0xf5,0x6f,0x7f,0xf7, 0xd5,0xfd,0x6a,0xda,0xd5,0x55,0x55,0xaa,0xbd,0xbd,0xb6,0xa9,0x55,0x75,0x52, 0xd5,0x52,0xaa,0x55,0x52,0x92,0x55,0x93,0x0a,0xaa,0xaa,0x5e,0xab,0x57,0xae, 0xea,0xaa,0x95,0x8a,0x51,0x15,0x50,0x82,0x15,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x55,0x54,0xaa,0xab,0x55,0xa0,0x2b,0x2a, 0xb5,0x69,0x55,0x49,0xa5,0x25,0x55,0x52,0xb5,0xaa,0x04,0x40,0x25,0x42,0xaa, 0xaa,0x9f,0xdd,0xd7,0xf7,0x5b,0x7f,0xbf,0xaf,0xfb,0xfd,0xdb,0x7f,0xff,0xdf, 0xff,0xdf,0xff,0xfd,0xbf,0x7f,0x5f,0xbf,0xef,0x6a,0xa9,0x2a,0xaa,0xd6,0xd6, 0xdd,0xab,0x55,0xaa,0xab,0x75,0x2b,0x55,0x52,0x8a,0xa9,0x54,0xa8,0xaa,0xea, 0x22,0xa5,0x5d,0xd5,0x55,0x55,0x95,0x6a,0x55,0x4a,0x4a,0x84,0x48,0x40,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x8a,0xa2,0xaa, 0xa9,0x4a,0x80,0x4a,0xaa,0xa9,0xa5,0x55,0x52,0x49,0xa9,0x6a,0xd2,0xd6,0xa9, 0x10,0x09,0x95,0x10,0x01,0x2a,0xff,0x77,0xff,0x7d,0xec,0xde,0xd5,0xdd,0xff, 0xdf,0xff,0xff,0xff,0xff,0xf7,0x75,0xbd,0xff,0xed,0xfd,0xfa,0xd5,0x75,0xd5, 0xaa,0xb5,0xd7,0xfb,0x7b,0xae,0xad,0x55,0x55,0x56,0xaa,0x8c,0xa5,0x5a,0xaa, 0xaa,0x55,0x55,0x53,0x51,0xaa,0x5d,0x77,0x5a,0xde,0xda,0xd5,0x95,0x55,0xa4, 0x92,0xa1,0x01,0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x08,0x52,0x95,0x55,0xd6,0xaa,0xc2,0x55,0xaa,0xaa,0x69,0x6a,0xa8,0xa5, 0x55,0xd5,0x55,0x5a,0xd4,0x80,0x40,0xdb,0x40,0xaa,0xaa,0x9b,0xbb,0xfd,0xef, 0x2a,0xb7,0xff,0x6f,0xed,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdb,0x7f, 0xff,0xbf,0x6f,0xde,0xea,0xdb,0x56,0xad,0x6d,0xaf,0xf3,0x55,0xd5,0x6b,0x6d, 0x58,0xb3,0x55,0x4b,0x55,0x2a,0xaa,0xa2,0xaa,0xaa,0x55,0x2a,0xae,0xab,0x75, 0x55,0x54,0x55,0xaa,0x92,0xa5,0x14,0x4a,0x40,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x25,0x54,0xaa,0x92,0x52,0xa8,0x2a,0xda, 0xa9,0xa5,0x15,0x45,0x51,0x5b,0x6b,0x6a,0xab,0x2e,0xa2,0x04,0x6d,0x84,0x10, 0xd9,0x6d,0x6d,0xb7,0xf7,0xda,0xff,0xab,0xbf,0x7f,0x7f,0xef,0xf7,0xfe,0xff, 0xff,0xfb,0xf7,0xff,0xeb,0xdb,0xeb,0xba,0xb5,0xb5,0x6d,0xea,0xef,0xff,0xff, 0x6d,0x56,0x76,0xaa,0xf5,0x65,0x4a,0x54,0xb5,0x49,0x55,0x56,0x99,0x4d,0x49, 0x40,0xad,0xdd,0xd5,0x9a,0xdb,0xb5,0x5a,0xb5,0x55,0x12,0x41,0x00,0x24,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x42,0x55,0x6a, 0xd5,0xaa,0xab,0x56,0xad,0x2c,0x92,0xab,0x50,0x05,0xce,0xbb,0x55,0x55,0x75, 0x48,0x21,0x57,0x50,0x8a,0x55,0x36,0xd7,0xff,0x7d,0xed,0xb7,0x7e,0xed,0xfb, 0xff,0x7f,0xff,0xff,0xfd,0xfe,0xf6,0xff,0x6e,0xff,0x7f,0x7d,0xdf,0xdf,0xda, 0xb7,0x5b,0x35,0x6a,0xfd,0xfa,0xdb,0xaa,0xb7,0x55,0x2a,0xb5,0x55,0x56,0x25, 0x55,0x5a,0xc5,0x55,0x55,0x9d,0x4b,0x6f,0x6a,0xef,0x76,0xa9,0x2d,0x4a,0xaa, 0xa9,0x28,0x29,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x10,0x35,0x2a,0xaa,0xaa,0xa5,0x68,0x55,0x75,0x4e,0x89,0x26,0xc9,0x32, 0xea,0xc9,0x6b,0x6e,0x96,0xa0,0x88,0x95,0xe0,0x69,0x2a,0xd5,0x69,0xdf,0xf7, 0xb6,0xdd,0xdb,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xef,0xbd,0xdf,0xff,0xdd, 0xff,0xf7,0x6e,0xaa,0xaa,0xdd,0xa9,0x5f,0xdf,0xdf,0xb5,0x68,0xdb,0xed,0xae, 0xd2,0xa8,0x55,0x29,0xaa,0xea,0xab,0x2a,0xb5,0x2a,0xa2,0x2b,0xb5,0xad,0x5a, 0xd2,0xd4,0xb5,0x5a,0x92,0x45,0x04,0x80,0x94,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x81,0x55,0x2d,0x2b,0xa9,0x35,0x55,0x55, 0x52,0xa5,0x4b,0xa4,0x40,0x54,0x54,0xb5,0xb5,0x55,0x08,0x22,0x0a,0xd2,0x75, 0x49,0x57,0xad,0xfb,0x7f,0xfe,0xb7,0xff,0xdf,0xfe,0xef,0xff,0xff,0xfb,0xf7, 0xfb,0xeb,0xff,0xff,0xfb,0xeb,0x6d,0xff,0x77,0xf7,0x7e,0xb6,0xab,0x7e,0xfa, 0xdb,0xb7,0x6f,0x75,0x75,0xaa,0xaa,0xaa,0x94,0x15,0xd5,0x6a,0xaa,0xd6,0x97, 0x55,0x55,0xae,0xdb,0xb5,0xad,0x50,0x55,0x55,0x49,0x14,0xa0,0x14,0x40,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4a,0xaa,0xb5, 0x54,0xaa,0x95,0x55,0x5b,0x5a,0xa9,0x2a,0xd1,0x0a,0x4a,0x51,0x4a,0x55,0x6a, 0xd1,0x08,0xa5,0x69,0x5a,0x55,0x55,0x53,0x7f,0xed,0xb5,0xfd,0xad,0x6f,0xdb, 0xff,0xdf,0xef,0xef,0xff,0xfd,0xbf,0xfe,0xff,0xef,0x7f,0xdf,0x55,0xec,0xad, 0xeb,0x5a,0xad,0xf7,0xb7,0x6a,0xba,0xb5,0xdd,0xd6,0xd5,0x55,0x55,0x55,0x52, 0xaa,0xb5,0x4a,0xa5,0x48,0x91,0x4a,0xfa,0xac,0xdb,0xab,0x4a,0xaa,0x54,0x24, 0xa2,0x15,0x01,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x04,0x01,0x12,0x55,0x2a,0xa9,0x2a,0xae,0xaa,0xa5,0x55,0x55,0x44,0x21, 0x28,0x88,0xaa,0x95,0xaa,0xa2,0x52,0x82,0xbd,0x7d,0x2a,0xee,0xb5,0xb6,0xff, 0xff,0xb7,0xdf,0xfb,0xff,0x7d,0xfb,0x7f,0xbf,0xff,0xef,0xdf,0xff,0xbf,0x7e, 0xdf,0xf5,0xbb,0x77,0x5b,0x7d,0x6b,0xd7,0xbf,0xfa,0xab,0x4d,0xff,0x76,0xd5, 0x55,0x29,0x2a,0xaa,0x95,0x55,0xda,0xb5,0x55,0x25,0x55,0x5f,0x4e,0xeb,0x6e, 0xb6,0xa4,0xa9,0x52,0xaa,0x55,0x08,0x52,0x90,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x54,0xad,0x4a,0x95,0x54,0xaa,0xb2,0xab, 0x5d,0x56,0xb5,0x51,0x08,0x12,0x25,0x55,0x4a,0x56,0xa9,0x25,0x41,0x6e,0xaa, 0xdb,0x77,0x5a,0xdf,0xf6,0xef,0xfe,0xff,0x6f,0xff,0xf7,0x7f,0xff,0xff,0xff, 0xbe,0xef,0x77,0xed,0xfd,0xfd,0xdb,0xed,0xba,0xde,0xf6,0xb6,0xba,0xfe,0xed, 0xd5,0x6b,0xd5,0xdb,0x74,0xa8,0xd2,0xa4,0x8a,0xaa,0xb6,0xaa,0xd5,0x54,0xa5, 0x55,0x51,0x75,0x5d,0xb7,0x5b,0x52,0x6a,0xd1,0x51,0x11,0x44,0x02,0x40,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x55,0x55, 0x54,0xab,0x55,0xcd,0x76,0xe7,0x5a,0xab,0x42,0x41,0x00,0x94,0xa4,0xa5,0x95, 0xb7,0xb6,0x50,0xa5,0xdd,0x6d,0x4a,0xd5,0x6f,0xbf,0x7b,0xdb,0xbb,0xfe,0xdf, 0xff,0xff,0xff,0xff,0xfb,0xfb,0xbb,0xfe,0xff,0xff,0xab,0x6e,0xdd,0x5d,0x6b, 0x9f,0xdb,0xfd,0xd5,0xbb,0x6a,0xad,0xb7,0x5d,0xaa,0xeb,0x2a,0x99,0x51,0x24, 0xab,0xf5,0x4b,0x55,0x2b,0x55,0x55,0xb7,0xea,0xdd,0xaa,0xa9,0xaa,0x8a,0x0a, 0x54,0x11,0x54,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x2a,0x8a,0x52,0x4a,0x95,0x5a,0xaa,0xb5,0xb4,0xba,0xba,0xa0,0x24, 0x54,0x6a,0x92,0x4a,0x4d,0x6a,0xab,0x52,0x2b,0xf7,0xb5,0xb5,0x6b,0x5b,0xf5, 0xde,0xfe,0xf7,0xfb,0xfb,0xff,0xf7,0xfe,0xff,0xbf,0x7f,0xfd,0xbf,0xff,0xee, 0xf7,0xbb,0x77,0x6f,0xbe,0xf5,0x6d,0x57,0x76,0xae,0xd5,0x57,0x6a,0xea,0xaa, 0x94,0xa8,0xa4,0x95,0x4a,0xbf,0xda,0xad,0x56,0xae,0xaa,0xaa,0xda,0xbf,0xf6, 0xea,0x95,0x56,0x54,0xa1,0x4a,0x84,0x22,0x80,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x20,0x2b,0x4d,0x2a,0xaa,0xaf,0x6b,0xaa, 0xae,0xdf,0x55,0x55,0x40,0x01,0x32,0x55,0x51,0x25,0xbd,0xb9,0xa8,0x16,0xba, 0xdd,0xdb,0x55,0xad,0xff,0xff,0xef,0xde,0xef,0xff,0xdd,0xff,0xbf,0xff,0xfb, 0xed,0xaf,0xf6,0xde,0xff,0x5e,0xef,0xda,0xf5,0x75,0xbf,0xbf,0xfd,0xab,0x6b, 0xf6,0xdb,0xad,0x5e,0xad,0x62,0xa5,0x52,0xaa,0x24,0xaa,0xf5,0x55,0xaa,0xbb, 0x55,0xaa,0xab,0xea,0xdb,0x55,0x55,0x59,0x82,0x55,0x51,0x22,0x89,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x16,0x85,0xb2, 0x85,0x54,0xa9,0xea,0xa9,0x52,0xbd,0xd7,0x52,0x89,0x10,0xca,0x29,0x42,0x8a, 0xae,0xcd,0x5a,0x4b,0xdd,0xe7,0x5b,0x5a,0xb7,0x6e,0xb7,0xfd,0x6f,0xff,0xdf, 0x7f,0xdb,0xff,0xff,0xff,0xbf,0xfa,0xbf,0xf7,0xfb,0xfd,0xf6,0xeb,0x5f,0xde, 0xd5,0xf5,0x6f,0xfa,0xad,0x56,0xec,0xb7,0xf5,0x55,0x1a,0x92,0xaa,0xaa,0x92, 0xdb,0x5a,0xaa,0x55,0x55,0x55,0x55,0xdb,0x7f,0xed,0xaa,0xaa,0xaa,0x55,0x25, 0x2a,0x08,0x2c,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x02,0x26,0xca,0xd2,0xaa,0xb6,0xab,0x56,0xd6,0xaf,0x6d,0x69,0x00, 0x44,0x6d,0xa5,0x70,0x54,0x55,0x75,0x54,0x15,0x56,0xbb,0xd6,0xa5,0x5b,0xfb, 0xff,0xbf,0xba,0xff,0xff,0xff,0xff,0xff,0xed,0xde,0xee,0xff,0x6d,0xbf,0xbf, 0x6b,0x6e,0xb7,0xf6,0xb6,0xda,0xaf,0xbf,0xad,0xbb,0xaa,0xaa,0x9d,0xaa,0xaa, 0xc5,0x55,0x95,0x55,0x4a,0xab,0xea,0x93,0x55,0x5a,0xaa,0x96,0xaf,0xaa,0xda, 0xd5,0x69,0x68,0x88,0x95,0x44,0x82,0x84,0x80,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x29,0x11,0x55,0x48,0x91,0x7a,0xb5,0x55, 0x55,0x55,0xb5,0x44,0xa9,0x01,0x24,0xb5,0x55,0x25,0x5e,0xad,0x55,0x0a,0xbe, 0xca,0xed,0xca,0xd5,0x6e,0xaf,0xed,0xd7,0xbf,0xff,0xff,0x75,0xed,0xff,0xfb, 0xfb,0xed,0xf7,0xfb,0xed,0xfd,0xfb,0x5a,0xdf,0x7d,0x67,0xfa,0xfe,0xd5,0x55, 0x6a,0xf5,0x56,0xd5,0xd5,0x58,0x4a,0x4a,0x92,0x55,0x6d,0x2a,0xa9,0x4a,0xab, 0x4a,0x55,0xd5,0xff,0xb7,0x6a,0xaa,0xaa,0x45,0x55,0x28,0x28,0x29,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x45,0x6d, 0x45,0x48,0x15,0x5b,0x7b,0x6a,0xbe,0xdd,0xb6,0x12,0x10,0x36,0x95,0xaa,0x0b, 0xaa,0xed,0xea,0xa5,0xd5,0xb7,0x7e,0xab,0x57,0xff,0xf7,0xff,0x7f,0xff,0xfd, 0xff,0xff,0xff,0xff,0xff,0xbf,0xff,0x7e,0xef,0xff,0xd7,0xad,0xef,0xfb,0x97, 0xb5,0x5d,0xf7,0xd5,0xef,0xaa,0xaa,0xab,0x56,0xea,0xa5,0x55,0x55,0x55,0x55, 0x52,0xd6,0xcb,0x52,0xa9,0x25,0x56,0x7f,0xbe,0xda,0xab,0x65,0xa9,0x28,0xaa, 0x92,0x82,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x09,0x10,0xa5,0x90,0x55,0x5b,0xad,0x4d,0xaa,0xd7,0x56,0xa3,0xa0, 0x45,0x0a,0xda,0xba,0x95,0x55,0x5a,0xbd,0xaa,0xbb,0xdd,0xd7,0x55,0xe9,0x7d, 0x5f,0xbd,0xeb,0x7b,0x7f,0xff,0xdb,0xff,0xff,0xff,0xff,0xf7,0xd7,0xbb,0xff, 0x75,0xf6,0xbd,0x6f,0x6c,0x95,0xf7,0xfd,0x56,0xb1,0x75,0x55,0x5a,0xaa,0xb2, 0xaa,0xd5,0x29,0x55,0x52,0xb7,0x55,0x55,0x55,0x45,0x55,0x5b,0xab,0xfb,0x57, 0xda,0xb6,0xa4,0x53,0x6d,0x20,0x21,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xa5,0x34,0xa5,0x40,0x4d,0x55,0x65, 0x75,0x5e,0xa9,0x52,0x44,0x00,0xaa,0xb4,0xea,0x4a,0xea,0xae,0xd5,0x55,0x6d, 0xa7,0x7a,0xce,0xb6,0xdf,0xe9,0xef,0xfd,0xef,0xf7,0xfe,0xff,0xff,0xef,0x77, 0xf7,0xbe,0xff,0xdf,0x5f,0xde,0xb7,0xef,0xdd,0xb7,0x6f,0x6d,0x5a,0xb5,0xdd, 0x5b,0x55,0x6a,0xaa,0xaa,0xa9,0x32,0xa5,0x29,0x55,0x59,0x55,0x5a,0x88,0x15, 0x29,0x55,0xff,0xdd,0x6a,0xb7,0xdb,0x51,0x49,0x52,0x12,0x88,0x24,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x40,0x95, 0x90,0x2a,0xa6,0xd5,0x36,0xab,0xab,0x56,0xa3,0x22,0x90,0x16,0xab,0x35,0x05, 0x55,0x5b,0x75,0x5a,0xb6,0xd5,0xbd,0xb7,0xed,0x7f,0xb7,0xff,0x5f,0xff,0xff, 0xff,0xff,0xfb,0xbf,0xff,0xbf,0xff,0xf6,0x6d,0xfd,0xeb,0x5a,0xbe,0xf6,0xaa, 0xb5,0xf6,0xf6,0xad,0x62,0xd5,0x55,0x15,0x52,0x92,0x54,0xaa,0x9a,0x95,0x4a, 0xea,0xab,0x6a,0xa5,0xa4,0xa5,0x6e,0xad,0xf7,0x57,0x7a,0xad,0x4a,0x4b,0xb4, 0xa0,0x22,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x04,0x55,0x2a,0x55,0x10,0x53,0xb5,0xd6,0xaa,0xad,0xa9,0x48,0xd4, 0x02,0x53,0x54,0x96,0xab,0x75,0x4d,0x5b,0x6d,0xd5,0xbd,0x6f,0xdb,0xbb,0x7b, 0xea,0xf7,0xfa,0xfe,0xef,0x7f,0xff,0xdf,0xff,0xff,0xfd,0xfb,0x7f,0xbf,0xf7, 0xbd,0xef,0xfb,0xb5,0x7d,0xf7,0xb5,0xaa,0xb6,0xda,0xae,0xd2,0xd5,0x2a,0x4a, 0xa5,0x52,0xa5,0x55,0x55,0x2a,0xa9,0xaa,0x52,0x52,0xaa,0xb7,0xff,0x7a,0xad, 0xad,0xb6,0xa1,0x2d,0x52,0x45,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xa0,0x94,0xd2,0x4a,0x4d,0xd4,0x53, 0x4a,0xd6,0xaa,0x03,0x22,0x90,0x29,0xd6,0xab,0xaa,0x9a,0xb6,0xfd,0x57,0x56, 0xd6,0xbe,0xf6,0xda,0xdf,0xbd,0xbf,0x7f,0xbb,0xff,0xf7,0xfe,0xff,0xfd,0xff, 0x77,0xdf,0xfd,0x7e,0xff,0xf7,0x7d,0xaf,0xd7,0xdf,0x7e,0xd6,0xda,0xda,0xed, 0xaa,0xaa,0xaa,0x95,0x6a,0xb5,0x4a,0xaa,0xa9,0x54,0xb5,0x55,0x55,0x4a,0x95, 0x54,0xae,0xbf,0xee,0xdb,0xf6,0xda,0x8a,0xaa,0xa8,0x80,0x49,0x50,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x54,0x52, 0x2d,0x24,0x66,0xeb,0xb4,0x0a,0x69,0x54,0xa9,0x50,0x05,0x04,0x2a,0xd5,0x5d, 0x6d,0xd5,0xab,0xb9,0x75,0x7a,0xd5,0xb7,0x6f,0x6f,0xfb,0xef,0xee,0xff,0xff, 0xff,0xf7,0xff,0xff,0xed,0xff,0xfd,0xef,0xeb,0xaf,0xbf,0xdf,0xfe,0xba,0xbd, 0xd5,0x52,0xa6,0xab,0x56,0x5a,0xe9,0x6a,0xaa,0xb5,0x52,0x2a,0xaa,0x94,0x95, 0x55,0x55,0x5a,0xa8,0x49,0x2b,0x5b,0xee,0xfb,0x7d,0x5f,0xea,0xa5,0x56,0xaa, 0x24,0x10,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x01,0x12,0x2b,0xb5,0x52,0x55,0xed,0x55,0x4b,0x50,0x5d,0x15,0x55, 0x50,0x51,0x55,0xdd,0xab,0xd7,0x55,0x55,0x56,0xb7,0x57,0x5b,0x6b,0xb7,0xdb, 0xfd,0x7f,0xbb,0xff,0xff,0xbf,0x7f,0xfe,0xff,0xbf,0xfe,0xf7,0xfd,0xb7,0xfd, 0xfb,0x75,0xfb,0xef,0x77,0xea,0x4a,0xd2,0xb5,0xa9,0x52,0xea,0xba,0xaa,0xba, 0xa9,0x4b,0x55,0x2a,0x55,0x4a,0xaa,0xd7,0x55,0x55,0x55,0x6e,0xff,0xad,0xd7, 0xea,0xaa,0x4a,0x5a,0xa4,0x81,0x42,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x20,0x95,0x49,0x2b,0x6b,0x53, 0x04,0xa9,0x2a,0x55,0x55,0x2a,0x15,0x55,0xe6,0xed,0x5b,0xb5,0xad,0x6f,0x6a, 0xdd,0xaf,0xdd,0xbd,0x6f,0x6f,0xd6,0xff,0xef,0xf6,0xfd,0xef,0xff,0xee,0xf7, 0xdb,0xbd,0xbf,0xfe,0xbf,0xbd,0xdf,0x7e,0xfd,0xfe,0xea,0xab,0x4a,0xd6,0xaa, 0xaa,0xa5,0x55,0x4a,0xd5,0x54,0xb5,0x4a,0xa9,0x55,0x56,0xaa,0xab,0x52,0x49, 0x25,0x57,0x7d,0xf4,0xba,0xbf,0x69,0x25,0xaa,0x12,0x28,0x11,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x95, 0x6a,0xa4,0x97,0xb9,0x54,0xea,0x54,0x1d,0x35,0x55,0x90,0xaa,0xaa,0xdb,0xbd, 0x7a,0xae,0xab,0x55,0xbd,0x5f,0xf5,0x6a,0xd7,0xb7,0xfa,0xbf,0xff,0xbf,0x7f, 0xff,0xfe,0xfb,0xff,0xff,0x7f,0xef,0xf7,0xb7,0xef,0xeb,0xb7,0xf7,0xae,0xab, 0x55,0x2a,0xad,0x55,0x55,0x55,0x55,0xb5,0x2a,0xa9,0x22,0x4a,0x54,0xaa,0xaa, 0xb5,0x6a,0xd5,0x59,0x2a,0xaa,0xaa,0xdf,0x7a,0xdf,0xd5,0x55,0x09,0x55,0x59, 0x02,0x44,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x85,0x15,0x2d,0x55,0x0a,0xd6,0xa4,0x12,0xa8,0x0a,0x4a,0x4a, 0xaa,0x15,0x25,0x55,0x56,0x96,0xa9,0x55,0x6a,0xee,0xbe,0xad,0xaa,0xf5,0x55, 0xff,0xfb,0xed,0xff,0xff,0xef,0xff,0xef,0xfb,0xff,0xf7,0x7d,0x5e,0xdd,0xfa, 0xde,0xea,0xdd,0xfb,0xdd,0x6a,0xaa,0x93,0x4a,0x4a,0xa9,0x55,0x5a,0xaa,0x4a, 0x55,0x29,0x4a,0xa1,0x25,0x55,0x55,0x55,0x6a,0xa5,0xaa,0xd7,0xf5,0xd5,0x55, 0x7a,0xa4,0xa5,0x54,0xa4,0x50,0x12,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0x08,0xa5,0x14,0x45,0xba,0x92, 0xa5,0x20,0xaa,0x95,0x2a,0xaa,0x8e,0x95,0xeb,0xbd,0xda,0xb6,0xab,0x5b,0x5b, 0xd7,0xb6,0xb5,0x5a,0xee,0xbb,0x5e,0xff,0xfb,0xfb,0xff,0x7b,0xff,0xdf,0xfd, 0xbd,0xff,0xff,0x7f,0x6f,0xf3,0xb7,0xff,0x56,0xb5,0x52,0x52,0xad,0x55,0x29, 0x5d,0xb5,0x75,0x69,0xa4,0xa8,0xaa,0xa2,0x54,0xa9,0x55,0x55,0x55,0x2a,0xb6, 0xad,0x6d,0xbf,0xbb,0xbb,0xee,0xaa,0x5a,0xca,0x2a,0x84,0xa9,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x86, 0x5a,0xc8,0x12,0xaf,0x4a,0x50,0xaa,0x09,0x08,0xaa,0x95,0x2b,0x56,0xad,0xd6, 0xea,0xad,0x44,0xad,0x7d,0x6d,0x7e,0xab,0x57,0x5b,0xff,0xef,0xfe,0xff,0xef, 0xfd,0xff,0xff,0xff,0xf7,0xff,0xff,0xfb,0xff,0xfd,0x5d,0x5d,0xff,0xda,0xeb, 0x6a,0xab,0x55,0x55,0x54,0x56,0xaa,0xbd,0x54,0xaa,0x52,0xb5,0x95,0x25,0x55, 0x55,0x6a,0xad,0xd5,0x55,0xb5,0xb7,0xed,0x76,0xde,0xba,0x91,0x55,0xa9,0x51, 0x22,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x09,0x51,0xa5,0x22,0x89,0x55,0xaa,0x8a,0xa4,0xa4,0xa6,0xab, 0x44,0x95,0x49,0xa5,0x6b,0x55,0x5a,0xa1,0x58,0xae,0xfe,0xd5,0xaa,0xaa,0xbd, 0x7d,0x5d,0xbf,0xef,0xff,0xbf,0xff,0xbe,0xff,0xdf,0xdf,0x77,0x7f,0xed,0xb7, 0xab,0xaf,0xdd,0x6d,0xda,0xa5,0xa5,0xda,0xd2,0xaa,0xba,0xaa,0xaa,0xab,0x24, 0xa4,0xa8,0x54,0x92,0x92,0xd5,0x55,0x55,0x55,0x2a,0xad,0x5e,0xd7,0xdf,0x6b, 0xfd,0x55,0x6b,0x54,0x4a,0x10,0xaa,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x04,0x95,0xb0,0x44,0x57,0x6a, 0x55,0x52,0x2a,0x51,0x15,0x55,0x55,0xab,0x55,0xe5,0x55,0x4a,0x50,0x54,0xab, 0xad,0x5f,0x55,0xba,0xd7,0xdf,0x7f,0x7b,0xff,0xbf,0xf7,0xf7,0xff,0xdd,0xff, 0x7b,0xff,0xed,0xbf,0xfd,0x7d,0x7d,0x77,0xb5,0x6d,0x2a,0xab,0x4a,0xaa,0xb5, 0x4d,0x4a,0xaa,0xa4,0x92,0x52,0xaa,0xa2,0x48,0xaa,0xaa,0xa9,0x53,0x69,0x56, 0xd6,0xd7,0xba,0x6a,0xbf,0xd5,0x4a,0xad,0x45,0x22,0x8a,0x04,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x62, 0x52,0x95,0x21,0x5a,0xda,0xa8,0x89,0x6a,0xac,0xcb,0xa9,0x25,0x55,0x6e,0xf5, 0xaa,0xaa,0x85,0x12,0xb4,0xff,0xa5,0xef,0xd6,0xbd,0xed,0xfb,0xff,0xbe,0xff, 0xff,0xff,0xfb,0xff,0xff,0xff,0xfd,0xbf,0xf6,0xdf,0xea,0xdf,0xfe,0xd5,0xde, 0xad,0x74,0xab,0xf6,0xaa,0xb5,0x6a,0xaa,0xab,0x4d,0x4c,0xaa,0x15,0x2a,0xab, 0xad,0x55,0x55,0xaa,0xaa,0xbb,0x6e,0xef,0xb5,0xf6,0xfd,0x55,0x56,0xb1,0x28, 0x20,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x11,0x2a,0xac,0x94,0xab,0xac,0x92,0xaa,0x55,0x45,0x2d, 0xd4,0x95,0x69,0x5b,0x2d,0x55,0x52,0x50,0x4a,0x57,0xf5,0x76,0xf5,0x6a,0xef, 0x7f,0xbe,0xfe,0xfb,0xf6,0xde,0xff,0xff,0x7f,0xfd,0xdf,0xef,0xff,0xff,0xb6, 0xb7,0x75,0xab,0xfb,0x76,0xab,0x5a,0xad,0xda,0xad,0x55,0x55,0x55,0x55,0x54, 0xa5,0x45,0x52,0xa5,0x2a,0xb5,0x52,0xaa,0xd5,0x55,0x5d,0xb7,0x54,0xda,0xbb, 0xaa,0xaa,0xa1,0x4a,0x96,0x0a,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x4c,0x8a,0xab,0x50,0x14,0xaa, 0x55,0x52,0xa4,0xb5,0x52,0xab,0x55,0x95,0x6a,0xd5,0x7e,0xad,0xa5,0x54,0x80, 0x5f,0xab,0x5f,0xff,0xb7,0xef,0xef,0xb7,0xff,0xff,0xff,0xdf,0x77,0xfb,0xef, 0xfb,0xfe,0xbd,0xb5,0xff,0xfd,0xde,0xfd,0xdf,0xad,0x55,0x55,0x77,0x55,0xd2, 0xa5,0x59,0x49,0x55,0x2a,0x52,0x90,0x4d,0x52,0xaa,0xd6,0xaa,0xaa,0x4b,0x5e, 0xe6,0xda,0xd7,0x6b,0xef,0xf6,0xd5,0x54,0xaa,0x48,0xa0,0xa0,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x12, 0x55,0xaa,0xaa,0xaa,0xd5,0xa2,0x4a,0x92,0x94,0xaa,0x95,0x55,0x6d,0x55,0x5b, 0x55,0x55,0xd0,0xb4,0x25,0xb0,0x9d,0xeb,0xf5,0x7b,0xbf,0x7d,0xff,0xff,0xff, 0x77,0xff,0xff,0xef,0xbf,0xff,0x7f,0xff,0x7f,0x7b,0xde,0xaf,0xd7,0x6d,0x55, 0x6a,0xd6,0xdd,0xed,0x6c,0xaa,0x55,0x25,0x29,0x92,0x88,0x4d,0x52,0x8a,0xad, 0x6a,0xaa,0xb5,0xac,0xb5,0xbb,0x6d,0x59,0xaf,0x7b,0xbb,0x55,0x42,0x54,0xa0, 0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x0a,0x22,0xaa,0x94,0x45,0x54,0xd4,0x55,0x6a,0xaa,0xea, 0xca,0xda,0xaa,0xb6,0xb5,0x76,0xd6,0xbd,0xb5,0x09,0x5a,0x57,0x5d,0x5f,0xdf, 0xf7,0xef,0xbd,0xef,0xdb,0xfd,0xff,0xff,0x7e,0xff,0x77,0xf6,0xf7,0xef,0xfe, 0xf5,0xdb,0xea,0xba,0xaa,0xaa,0xb5,0xb6,0xab,0x55,0x51,0x54,0x94,0x94,0x48, 0x2b,0x22,0x4a,0xaa,0xab,0x55,0x55,0x56,0xab,0x6e,0xdd,0xb5,0xa5,0x76,0xdf, 0xd5,0x55,0x55,0x22,0x15,0x41,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x45,0x4a,0xd4,0xd5,0x32,0xaa, 0xd2,0xaa,0xa5,0x55,0x2a,0xb5,0x55,0x55,0xd5,0xdd,0xbb,0x5a,0xd5,0x6e,0xa2, 0x4a,0x54,0xab,0xfe,0xeb,0xfd,0xfe,0xf7,0xfb,0xff,0xdf,0xbf,0xff,0xff,0xff, 0xdf,0xff,0xff,0xbf,0xff,0xff,0x7e,0xbd,0xd6,0xa5,0x55,0xda,0xfb,0xb5,0x6a, 0xad,0x52,0xaa,0xa5,0x25,0xaa,0xaa,0xa9,0x6d,0x55,0x69,0x25,0x55,0x55,0xb5, 0xb6,0xfb,0x57,0xbf,0xfe,0xfa,0xab,0x24,0xa8,0xa4,0x28,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02, 0x92,0x92,0x55,0x4a,0xaa,0xa8,0xa9,0x54,0xaa,0xb6,0xaa,0xb5,0xaa,0x57,0x6a, 0xee,0xab,0x55,0xb5,0x88,0xb5,0x17,0x7e,0xeb,0xbe,0xdf,0xfb,0xff,0xbf,0x5e, 0xf6,0xf7,0x77,0x77,0xfe,0xff,0x7b,0xde,0xfe,0xef,0xd5,0xeb,0xd6,0xaa,0x95, 0x56,0xeb,0x56,0xcd,0x5a,0xa5,0x2a,0x95,0x12,0x90,0x4a,0x95,0x25,0x55,0xaa, 0xa5,0x55,0xaa,0xaa,0xab,0x7b,0xad,0x54,0xd6,0xf7,0xaa,0x9d,0xa5,0x45,0x52, 0xd2,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x11,0x29,0x59,0x5a,0xa9,0x55,0x56,0x16,0xab,0x55,0x55, 0xb5,0xaa,0xd5,0x55,0xdd,0x7b,0xf5,0xaa,0xaf,0x51,0x4a,0x6a,0xd7,0x7e,0xeb, 0xf7,0x7f,0x7b,0xf7,0xf7,0xbf,0xff,0xff,0xfe,0xff,0xff,0xdf,0xfb,0xff,0xfb, 0x7f,0xbd,0x75,0x54,0xab,0xba,0xbf,0xfb,0x6a,0xaa,0xad,0x75,0x52,0xa8,0x4a, 0xa5,0x52,0xaa,0xb5,0x56,0xb5,0x55,0x55,0x55,0xad,0x55,0xf7,0x5b,0x7b,0xda, 0xd5,0x56,0x92,0x10,0x94,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0xa2,0xa5,0x57,0x4e,0xb4, 0x94,0xa2,0x96,0xab,0x56,0xea,0xd5,0x5a,0xda,0xeb,0xd6,0xae,0xdd,0x5b,0xaa, 0x85,0x9b,0x7b,0xd7,0xff,0xbd,0xff,0xdf,0xdd,0x7d,0xef,0xdf,0xfd,0xfb,0xff, 0xfd,0xfe,0xef,0xfd,0xff,0xee,0xeb,0xda,0xb5,0x55,0xd5,0x75,0xbd,0xa9,0x6a, 0xaa,0x94,0x94,0xaa,0xa5,0x2a,0x55,0x55,0x6a,0xb5,0xaa,0xd6,0xaa,0xab,0x6a, 0xeb,0x5a,0xb7,0xab,0x7f,0x55,0x2b,0x54,0xa5,0x21,0xa1,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x98,0x4a,0x15,0x52,0xaa,0x4a,0x94,0x69,0x56,0xad,0x7d,0x55,0x76,0xad,0x7e, 0x7d,0xb5,0x6b,0xb6,0xd4,0x2d,0x6d,0xae,0xde,0xae,0xff,0xf6,0xf6,0xff,0xaf, 0xbd,0xfb,0x6f,0xdf,0xed,0x7f,0xfb,0xff,0xff,0xae,0xb7,0xde,0xea,0xa5,0x6e, 0xa5,0x5e,0xd7,0x4a,0xaa,0x55,0x6a,0xaa,0xaa,0x52,0xab,0x5b,0x6a,0xaa,0xad, 0x55,0x59,0x52,0x55,0xaa,0xad,0xad,0xfd,0x7f,0xea,0xaa,0xad,0x49,0x12,0x4a, 0x94,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x21,0x25,0x25,0x57,0xaa,0xaa,0xa4,0x92,0x95,0x5d,0x56, 0xb5,0x6a,0xad,0xf5,0xeb,0xbf,0xdb,0xb6,0xdb,0x6e,0x96,0xd6,0xff,0xfb,0xff, 0xdf,0xbf,0xdf,0xb5,0xfe,0xf7,0xff,0xff,0xff,0xff,0xf6,0xef,0xfd,0xef,0xfb, 0xfe,0xf7,0xb5,0x5a,0xdb,0x52,0xeb,0x6a,0xeb,0xb5,0x4a,0xaa,0xad,0x55,0x5a, 0xad,0x6d,0xbb,0x55,0x55,0x55,0x4a,0xab,0x5a,0x55,0x5a,0xef,0x56,0xd6,0xba, 0x40,0x55,0x54,0x49,0x11,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x8a,0x52,0xaa,0xaa,0xda, 0xaa,0x49,0x55,0x55,0x5b,0xad,0x2d,0x5a,0xaa,0xbe,0xd5,0x6d,0x6f,0x6d,0xb2, 0xd5,0xbd,0xad,0xbe,0xb6,0xf5,0xff,0xfa,0xfa,0xbb,0xdf,0x5b,0xff,0xff,0xff, 0xff,0xff,0xf7,0xff,0x77,0xdb,0xfa,0xa8,0xad,0x55,0x4a,0xb5,0xab,0x5a,0xdb, 0x6a,0x49,0x5a,0xa9,0x2d,0x6d,0xb6,0xaa,0xaa,0xaa,0xaa,0x55,0x49,0x45,0x4a, 0xb7,0x3b,0xdb,0x5d,0xd5,0x2a,0xaa,0x52,0x84,0x45,0x08,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x41,0x2a,0x95,0x52,0xad,0x55,0x24,0x25,0x56,0xd4,0xb6,0xd5,0x6b,0x55,0xeb, 0xbe,0xd5,0xda,0xdb,0xae,0xdf,0x77,0x7e,0xef,0xff,0xdf,0xfe,0xdf,0xd7,0xde, 0xff,0xff,0xdd,0xdd,0xff,0x77,0xbf,0x7f,0x7b,0xde,0xee,0xae,0xd6,0xb5,0xaa, 0xa5,0x55,0x56,0xef,0x6d,0x25,0x55,0x2a,0xf5,0x57,0x56,0xd5,0x55,0x52,0x4a, 0xd5,0x52,0xaa,0x91,0x51,0x5a,0xd5,0x76,0xee,0xb9,0x11,0x55,0x0a,0x29,0x14, 0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x0a,0x24,0x89,0x6a,0xad,0x55,0x62,0x85,0xa9,0x53,0x55, 0x55,0x55,0xad,0xf6,0xbe,0xe3,0x7e,0xb7,0x7e,0xf5,0xab,0xdb,0xd6,0xb5,0xab, 0x7e,0xdb,0xfa,0xfa,0xb7,0x75,0xee,0xff,0xff,0xdd,0xde,0xff,0xef,0xdf,0x7f, 0xbf,0xfb,0x75,0xf6,0xda,0x55,0x6d,0x5b,0x5b,0xb5,0xda,0xaa,0xd6,0x96,0xaa, 0xf5,0x5a,0xaa,0x49,0x55,0x2a,0xaa,0x52,0x4a,0xaa,0xb5,0x6e,0xdb,0x55,0xd4, 0xa5,0x08,0xa9,0x22,0x52,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0xd5,0x29,0x55,0x6a, 0x94,0x50,0x54,0x95,0x4a,0xad,0x55,0x56,0xaa,0xab,0xfe,0x97,0xea,0xf7,0x59, 0x7a,0xbd,0x7f,0xdf,0xfe,0xf7,0xff,0xdf,0xaf,0xea,0xdf,0x7f,0xff,0x77,0xff, 0xff,0xee,0xff,0xf5,0xfd,0xed,0xd6,0xbe,0xae,0xad,0xaa,0xb7,0xee,0xfd,0x6a, 0xad,0xb5,0x5a,0xeb,0x5f,0x2b,0x68,0x95,0x56,0xaa,0xa4,0xa9,0x49,0x25,0x2a, 0x5b,0xbb,0x6d,0x7a,0xa5,0x2a,0xa5,0x44,0x89,0x24,0x80,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05, 0x01,0x22,0xa4,0xaa,0xaa,0x51,0x02,0x92,0xaa,0x55,0x4a,0xaa,0xaa,0xfd,0xdf, 0x53,0x6a,0x5b,0xbf,0xed,0xad,0xd7,0xd5,0x76,0xdb,0xdf,0xee,0xf5,0x76,0xbd, 0xfb,0xff,0xed,0xff,0x7f,0xff,0xff,0xbe,0xdf,0xd7,0x7f,0x7d,0xd7,0x55,0xd6, 0xad,0xda,0xbb,0x4b,0xbf,0xf6,0xdb,0x57,0x5d,0x65,0xba,0x95,0x55,0x55,0x69, 0x55,0x55,0x24,0x92,0xa5,0xad,0x56,0xdb,0xaa,0x92,0x92,0x12,0x52,0x44,0x94, 0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x28,0x54,0x95,0x55,0x2a,0x8a,0x00,0x49,0x55,0x49, 0x55,0x25,0x55,0x47,0x6b,0xef,0xb5,0xad,0x5a,0xb5,0x76,0xb5,0x76,0xab,0xff, 0xbd,0xbb,0xbb,0xaf,0xee,0xb6,0xad,0xbf,0xfb,0xff,0xb7,0xbb,0xfb,0xf5,0x7d, 0xab,0xd7,0x7d,0xae,0xba,0xd6,0xad,0xd5,0xb5,0x55,0x55,0x6d,0x7a,0xd5,0x5a, 0xaa,0x55,0x29,0x55,0x56,0xaa,0x88,0xa8,0x08,0xa8,0xd5,0x75,0x6d,0x55,0x64, 0xa8,0xa8,0x89,0x2a,0x42,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x09,0x29,0x52,0x69,0x49, 0x51,0x20,0x24,0x55,0x25,0x2a,0x92,0xab,0x7a,0xfe,0xba,0xda,0xd7,0xbf,0x56, 0xdb,0x6d,0xaf,0x77,0x6f,0xff,0xff,0xdd,0x7f,0xff,0xdf,0xff,0xff,0xef,0xfb, 0xff,0xfe,0xef,0xdf,0xeb,0x7f,0xfb,0xb6,0xd5,0xd7,0xba,0xeb,0x7e,0xef,0x77, 0xdb,0xbb,0xaf,0x55,0x6a,0xe9,0x52,0xa5,0x6a,0xbb,0xa9,0x26,0xa5,0xaa,0xa7, 0x6b,0xdd,0xaa,0xd5,0x22,0xaa,0x42,0x24,0x85,0x28,0x80,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x84,0x94,0xaa,0x95,0x55,0x2a,0x85,0x02,0xaa,0xaa,0xa4,0xa5,0x2a,0xab,0x5b, 0x6b,0x6d,0x75,0x6a,0xfb,0x2a,0xf6,0xf5,0x5d,0xbb,0x6e,0xed,0x6a,0xdf,0xba, 0xf6,0xff,0xf7,0xbf,0xbf,0xfe,0xef,0x5e,0xf6,0xbd,0xdf,0xad,0xfa,0xab,0x6a, 0xeb,0x5d,0xa5,0xba,0xda,0xba,0xed,0x75,0xaa,0xaa,0x95,0x2a,0xaa,0xaa,0x54, 0x95,0x29,0x54,0x4a,0x4a,0xba,0xf5,0x55,0x55,0x4a,0xa9,0x09,0x55,0x28,0x82, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x40,0x4a,0x52,0x6a,0xaa,0x92,0x00,0x09,0x2a,0x90, 0x52,0x10,0xab,0xaa,0xfd,0x55,0xb5,0x9b,0xdf,0x55,0xdb,0xab,0xda,0xef,0xff, 0xff,0xff,0xff,0xff,0xff,0xbb,0xb7,0xbf,0xff,0xfe,0xfb,0xfe,0xff,0xbb,0x77, 0x7b,0xff,0x4b,0x56,0xdb,0x7d,0xeb,0x7e,0xed,0x6d,0xdf,0x77,0xda,0xda,0xd5, 0x55,0x55,0x55,0x55,0x6a,0xaa,0x95,0xaa,0xa9,0x2f,0xad,0xaa,0xab,0x52,0x29, 0x48,0xa4,0x08,0x92,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x4a,0xa9,0x2a,0x49, 0x55,0x40,0x10,0x95,0x4a,0x89,0x65,0x55,0x57,0x57,0x5e,0xda,0xed,0x6a,0xee, 0xaf,0xde,0xf5,0x76,0xbe,0xfb,0xdf,0x55,0xbd,0xff,0xde,0xfe,0xfd,0xfd,0xff, 0xde,0xb5,0xfb,0xed,0xdd,0xae,0xd7,0xf6,0xfd,0xed,0xef,0x5d,0xca,0xbb,0xb6, 0xab,0xbd,0x6d,0x6d,0x54,0xaa,0xaa,0xaa,0xaa,0x95,0x29,0x69,0xd1,0x2a,0xaa, 0xd7,0xdb,0xb5,0x49,0x55,0x55,0x11,0x54,0x49,0x04,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x21,0x25,0x15,0x49,0x55,0x24,0xa4,0x42,0x4a,0xa4,0x54,0x80,0x8a,0xda,0xba, 0xaa,0xed,0x35,0xab,0x5a,0xf2,0xeb,0x5f,0xaf,0xd7,0xee,0xfb,0xbb,0xff,0xee, 0xf7,0xfb,0xff,0xf7,0xfb,0x7f,0xff,0x5f,0x7e,0xfe,0xfb,0xfd,0xaf,0xae,0xb6, 0xbb,0xee,0xaa,0xd6,0xab,0x76,0xd7,0xf6,0xd6,0xab,0x77,0x55,0x55,0x54,0x4a, 0x94,0x55,0x54,0x95,0x5a,0xba,0xb6,0xda,0xa4,0x0a,0xa4,0x44,0xa2,0x94,0x40, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x54,0xca,0xaa,0xb4,0xb2,0x80,0x01,0x2a,0xaa, 0xa2,0x2a,0x25,0x55,0xae,0xf5,0x76,0xda,0xbd,0xea,0x9b,0xb6,0xf4,0xda,0xfd, 0xbf,0xee,0xed,0xef,0xbf,0xfa,0xbf,0xbf,0xdf,0xbf,0xf5,0xef,0xfd,0xeb,0xb7, 0xdf,0xff,0xfd,0xf5,0xdd,0xfe,0xb5,0xb5,0x7a,0xad,0x5f,0x6d,0xd5,0x5a,0xb5, 0x55,0x6a,0xa5,0x53,0x2a,0x52,0xab,0x55,0x54,0xb7,0x6f,0xdd,0xaa,0x52,0x22, 0x91,0x12,0x14,0x44,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x51,0x24,0xa5,0x55, 0x54,0xa1,0x08,0x53,0x51,0x1a,0x80,0x94,0xaa,0xbb,0xd7,0xaf,0x55,0x5a,0x55, 0x6a,0xed,0x5d,0x6f,0x6f,0xfd,0xbb,0xab,0x7e,0xff,0xae,0xf7,0xed,0x7f,0xef, 0xff,0x7d,0xbf,0xbe,0xff,0x7d,0xab,0x57,0x5f,0x77,0x5b,0xdb,0x55,0x56,0xd6, 0xea,0xd7,0x6e,0xea,0xaa,0xaa,0x94,0xb5,0x54,0xaa,0xa9,0x4a,0xaa,0xd2,0xad, 0xb5,0x6a,0xd5,0x48,0x94,0x48,0x88,0xa2,0xa8,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x01,0x0a,0x52,0x55,0x4a,0x95,0x50,0x22,0x8a,0xad,0x45,0x54,0x42,0xad,0x6a, 0x6a,0xbf,0xb5,0xad,0xaa,0xad,0x5b,0xb6,0xaa,0xde,0xf7,0xfe,0xdb,0xff,0xfd, 0xf7,0xdf,0x7f,0xfd,0x7b,0xed,0xf7,0xf6,0xff,0xab,0xff,0xfe,0xb5,0xb5,0xaf, 0xef,0x7d,0x55,0x6d,0xff,0x5d,0xa9,0xb2,0xaa,0x25,0x55,0x53,0x56,0xaa,0xad, 0x54,0xaa,0xab,0x2a,0xfa,0xee,0xaa,0xaa,0xaa,0x4a,0x85,0x45,0x11,0x12,0x40, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x15,0x24,0xaa,0xd2,0xa8,0x80,0x55,0xaa, 0xb2,0x52,0x94,0xb5,0xd5,0xaf,0x76,0xee,0xb6,0xed,0x55,0xbe,0xfd,0xdb,0x77, 0xdf,0xf7,0x6d,0xf7,0xff,0xda,0xfd,0xf7,0xdf,0xef,0x7f,0xff,0xdf,0xea,0xfe, 0xed,0x6b,0xdb,0x7e,0xfa,0xbe,0xd6,0xdb,0xbb,0x5a,0xaa,0xb5,0x4a,0xa4,0x88, 0xaa,0x55,0xaa,0x92,0xa5,0x55,0x52,0x69,0x4b,0x5f,0x59,0xaa,0x55,0x51,0x20, 0x52,0x28,0x8a,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x21,0x4a,0xb2,0x95, 0x6a,0xb2,0x0a,0x95,0x5d,0x09,0xa8,0x52,0xd5,0x5b,0x69,0xbb,0xb5,0xab,0x5e, 0xaa,0xd5,0x2f,0xf7,0xad,0xfe,0xde,0xf7,0xff,0xff,0x77,0x57,0xfd,0xfe,0xff, 0xdb,0xf7,0xff,0xbf,0xdb,0xff,0xde,0xad,0xab,0xad,0xff,0xeb,0x6d,0x6e,0xed, 0xb5,0x5a,0xaa,0xd5,0x52,0x55,0xaa,0xda,0xaa,0x95,0x55,0x49,0x55,0x55,0xea, 0xd4,0xa5,0x56,0x94,0x95,0x2a,0xaa,0x51,0x55,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x48,0xa2,0xa9,0x55,0x69,0x50,0x25,0x22,0xa5,0x55,0x4b,0x15,0x55,0xa5, 0xb6,0xdd,0xd5,0x55,0x6b,0x56,0xbf,0xf5,0xdd,0xf7,0xbb,0xfb,0x9d,0xbf,0xdb, 0xed,0xbe,0xef,0x77,0xbb,0x7f,0xbe,0xfd,0xff,0xff,0xfb,0x75,0xf6,0x7e,0xf6, 0xaa,0xb5,0x35,0xbb,0x2a,0xd5,0x69,0x55,0x28,0x09,0x54,0x97,0x6d,0x55,0x55, 0x55,0x35,0xea,0xae,0xad,0x55,0x49,0x5a,0xa0,0x50,0x83,0x21,0x04,0x80,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x54,0x94,0x2a,0xaa,0xaa,0x10,0x89,0x2a, 0xa2,0xa8,0xaa,0x6d,0x5a,0xda,0xd7,0x6e,0xeb,0x5d,0xaa,0xea,0x5e,0xfb,0x5e, 0xff,0xef,0xf5,0xfe,0xff,0xfa,0xf7,0xff,0xff,0xdf,0xf7,0xfb,0xdf,0xff,0x6f, 0xbf,0xaf,0x5b,0x95,0xba,0x9f,0xad,0x4a,0xdd,0xdb,0x55,0x4a,0xaa,0xaa,0xa5, 0x56,0xda,0xb6,0xaa,0xaa,0xaa,0xd7,0x55,0x55,0x77,0xa4,0xa5,0x6b,0x2a,0x95, 0x2a,0xaa,0x53,0x52,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa2,0x92,0xab,0x55, 0x55,0x54,0x8a,0xaa,0x95,0x54,0x92,0x45,0x55,0x6f,0x75,0x75,0xb5,0x5d,0xee, 0xdb,0x6f,0xab,0xae,0xfb,0xed,0xbf,0xbb,0x7b,0xff,0xdf,0x5d,0xdb,0xde,0xfd, 0xfd,0x5f,0xfb,0xbd,0xff,0xde,0xf5,0xad,0x6b,0xd6,0xda,0xea,0xaa,0xaa,0x6d, 0xb5,0xaa,0xa5,0x25,0x55,0x6a,0xaf,0xd7,0x55,0x55,0x55,0x2b,0xd6,0xed,0xaa, 0xaa,0x55,0x75,0x49,0x48,0x92,0x21,0x0a,0x80,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x49,0x09,0x24,0x89,0x55,0x54,0x24,0x92,0x15,0xaa,0x49,0x12,0xae,0xa9, 0xad,0x5e,0xdb,0xaa,0xb7,0xa9,0xb5,0x77,0xff,0xaf,0x7b,0xfd,0xdd,0xff,0xdf, 0x6d,0xf7,0xff,0x7f,0xdf,0xff,0xff,0x7f,0xef,0xf6,0xf7,0xde,0xd7,0x5d,0x6b, 0x6f,0x5a,0xb5,0x77,0xb6,0xda,0xd5,0x52,0x92,0x25,0x2a,0xa9,0x75,0x6a,0xaa, 0xaa,0xdd,0x55,0x5a,0xd5,0x51,0x2a,0xb6,0xa5,0x22,0x4a,0x94,0x49,0x2a,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x56,0x52,0x55,0x5a,0x95,0x55,0x4a,0x85, 0x51,0x50,0x49,0x55,0xb6,0xad,0xa6,0xd6,0x6b,0x55,0x55,0xdf,0xad,0xb7,0xfb, 0xdf,0x6f,0x76,0xbf,0x7f,0xb6,0xae,0xdd,0xff,0x7f,0xdf,0xab,0xda,0xff,0xdf, 0xff,0xf7,0x6a,0xa5,0xbd,0xfa,0xf6,0xaa,0xaa,0xdb,0x6b,0x4a,0x48,0x8a,0xd5, 0xdb,0x6e,0xad,0xb5,0xb6,0xd5,0x76,0xab,0xad,0x76,0x8a,0xa5,0xda,0x92,0xa9, 0x29,0x41,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0x25,0x29,0x05, 0x55,0x56,0x89,0x35,0x52,0x94,0x8a,0x24,0xaa,0xad,0x55,0x7b,0x75,0xdd,0xd6, 0xb5,0x6a,0xab,0xfa,0xde,0xfb,0xfd,0xed,0xdf,0xfe,0xef,0xfb,0xf7,0xf5,0xf7, 0x7b,0xff,0xff,0xfb,0xfe,0xfb,0x5d,0xbd,0xaa,0xab,0x6f,0xbb,0x7d,0x5e,0xb6, 0xac,0xa9,0x56,0x56,0x2a,0x6a,0xb3,0x75,0x5e,0xdb,0x2b,0xba,0xb6,0xb6,0x9b, 0xaa,0x95,0x6a,0xaa,0x45,0x54,0x94,0x54,0x88,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x08,0x95,0x8a,0xaa,0x54,0xaa,0x54,0x92,0x01,0x55,0x51,0x49,0x55,0x55, 0x3d,0x4a,0xda,0xab,0x6d,0x55,0xb7,0xbd,0xef,0xf7,0xff,0xff,0xbb,0x76,0xff, 0xf5,0x7e,0xff,0xff,0xff,0xef,0xfb,0x5e,0xdf,0xb7,0xdf,0xfb,0x65,0x6a,0xad, 0xfd,0xea,0x56,0xf7,0xdf,0xea,0xaa,0x49,0x5a,0x95,0xb6,0xda,0xad,0xea,0xac, 0xb5,0xd5,0x5b,0x55,0xe8,0xa4,0x4a,0xba,0xa5,0x2a,0xaa,0x42,0x80,0x20,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x2a,0xa4,0x85,0x25,0x55,0xa2,0x4d,0x41, 0x28,0x08,0x12,0x55,0x52,0xa6,0xab,0x6e,0xad,0xb7,0x52,0x95,0xd6,0xb5,0x5f, 0xde,0xf7,0xee,0xdd,0xed,0xaf,0xb7,0xde,0xaf,0xef,0xbd,0xbf,0xfb,0xf7,0xff, 0x7e,0xfd,0xbb,0xb4,0xd5,0xbf,0x55,0x7a,0xba,0xbe,0xb5,0x55,0x54,0xa5,0x4a, 0x59,0x25,0xb5,0x55,0x55,0xad,0x76,0xad,0xd6,0xaa,0x52,0x95,0x49,0x12,0x48, 0x82,0x94,0x2a,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0xaa,0x65, 0x55,0x55,0x55,0x52,0x24,0xaa,0xa5,0x48,0xd5,0x29,0x5a,0xb5,0xba,0xd6,0x56, 0xaa,0x55,0x55,0xdb,0x75,0x7b,0xfd,0xbf,0xb7,0x77,0xf5,0xdf,0x7b,0xfd,0xbe, 0xee,0xf6,0xef,0x7f,0xfd,0xeb,0xb6,0xce,0xda,0xc6,0xed,0xb5,0x2a,0xad,0xd6, 0xd4,0xaa,0x55,0x55,0x52,0xa6,0xd4,0xca,0xba,0xaa,0xb6,0xd5,0x55,0x6b,0x69, 0x09,0x25,0x2a,0xa9,0x25,0x2a,0x22,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x02,0x20,0x84,0x90,0x8a,0x55,0x52,0x49,0x41,0x55,0x28,0xa2,0x4a,0xaa, 0x25,0x5e,0xdb,0x6b,0xed,0x55,0x5e,0xfb,0xff,0xdf,0xff,0xdf,0xf5,0xfa,0xbd, 0x5f,0x7d,0xff,0xff,0xfb,0xb5,0xff,0xbb,0xda,0xd6,0xbf,0xfb,0x55,0xae,0xb5, 0xb6,0xda,0x95,0x77,0x7b,0x5b,0x55,0x5d,0x52,0x55,0x52,0xab,0x35,0x57,0x75, 0x5a,0xa9,0x6b,0x5d,0xa5,0x54,0x48,0x54,0x44,0xa8,0x54,0x94,0x12,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x52,0x56,0x69,0x2e,0xaa,0x55,0x20, 0xa8,0x94,0x15,0x2a,0xa1,0x52,0xa5,0x6d,0xaa,0xbb,0x6a,0xea,0xaf,0x6d,0x7f, 0xee,0xfe,0xff,0x5d,0xdb,0xf7,0xff,0xed,0xb7,0x6e,0xde,0xaf,0xff,0xff,0xfd, 0xed,0x55,0x55,0x75,0x56,0xdb,0x5d,0x49,0x5a,0xd7,0xea,0xa9,0x6a,0x95,0xaa, 0xd5,0x6a,0x97,0xbd,0xaa,0xab,0x56,0xad,0x6a,0x92,0x42,0x92,0x52,0x92,0x85, 0x29,0x41,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa9,0x29,0x2a, 0x95,0x52,0xb5,0x55,0x42,0x56,0x52,0xa0,0xd2,0xd4,0x09,0x5b,0x5d,0x76,0xf6, 0xad,0x5b,0x55,0xdf,0xf6,0xff,0xff,0xbd,0xf7,0xef,0x5a,0xef,0x7f,0xff,0xff, 0xeb,0xbf,0xff,0xf7,0x7b,0xbb,0xf7,0x5f,0xaa,0xab,0x6a,0xad,0x25,0x57,0x55, 0x2a,0xaa,0xaa,0x55,0x4b,0x6b,0x55,0xda,0xd6,0xdd,0xb6,0xa9,0x55,0xb6,0xa5, 0x28,0x51,0x59,0x24,0x55,0x42,0x28,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x02,0x00,0x52,0xa5,0x40,0x95,0x55,0x2a,0x90,0x52,0x88,0x95,0x14,0x62, 0xd4,0x55,0xb5,0xad,0xff,0x55,0x55,0xbb,0x7b,0x7f,0xbf,0xff,0xf7,0xfa,0xbb, 0xef,0x7d,0xef,0xff,0xff,0x7e,0xff,0xf6,0xbd,0xee,0xee,0xdd,0x6a,0xd5,0x5d, 0x2a,0xaa,0x52,0xba,0xb6,0xd5,0x4a,0xaa,0xaa,0x55,0xaa,0xa6,0xad,0x5a,0x6a, 0xaa,0xb7,0x76,0xd9,0x12,0x85,0x4a,0x44,0x91,0x0a,0xa9,0x42,0x80,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x08,0x29,0x2a,0x55,0xad,0x54,0x48, 0x55,0x55,0x24,0x4b,0x69,0x2b,0x5a,0xdf,0x77,0x6a,0xaa,0xaa,0xd7,0xed,0xaa, 0xfb,0x7d,0x7f,0x6f,0xdd,0x5b,0xaf,0xfe,0xed,0xed,0xff,0xf7,0xbd,0xdf,0xff, 0x77,0x6d,0xad,0x54,0xa5,0x55,0x55,0x0d,0x6d,0x55,0x54,0xa4,0x94,0x95,0x2a, 0xaa,0xaf,0xf7,0x6a,0xae,0xb5,0x6a,0xad,0x6a,0x45,0x51,0x21,0x2a,0x04,0xa8, 0x04,0x28,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x55,0x45, 0x55,0x25,0x22,0xab,0x52,0xa9,0x24,0x49,0x24,0xa8,0xac,0xab,0x76,0xdb,0xba, 0xaa,0xb6,0xb5,0x76,0xff,0xf7,0xef,0xdb,0xfa,0xb5,0x7d,0xfe,0xf7,0xdf,0xff, 0xdf,0xbf,0xf7,0x76,0xbb,0xbd,0xb6,0xae,0xa5,0x5a,0xa5,0x2c,0xea,0xd7,0x6a, 0xaa,0x52,0xa2,0x51,0x52,0xaa,0x55,0x5d,0x55,0xaa,0xae,0xd6,0xfb,0xa9,0x28, 0x0a,0x94,0x89,0x52,0x45,0x52,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x08,0x05,0x14,0x94,0x92,0xca,0xb4,0x91,0x54,0x91,0x10,0xaa,0xaa, 0x93,0x55,0x6d,0xae,0xea,0xaa,0xab,0x6e,0xdb,0x55,0xbe,0xff,0xfd,0x7f,0xfb, 0xd7,0x7f,0xbd,0xfe,0xb7,0xf7,0xfb,0xbd,0xdb,0xde,0xf6,0xd5,0x55,0x55,0x25, 0x54,0xa5,0x2b,0x6a,0xaa,0xa9,0x15,0x29,0x24,0xab,0x75,0x6a,0xba,0xaa,0xb5, 0x55,0x6a,0x95,0x54,0xa5,0x51,0x09,0x12,0x49,0x28,0x88,0x04,0x40,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0xa2,0xaa,0x89,0x29,0x29,0x5e,0x55, 0x2a,0xa4,0xa5,0x24,0xd6,0x6d,0xd5,0xb6,0xf7,0x55,0x55,0x5d,0xb5,0x6d,0xfb, 0xfb,0xfe,0xef,0xd5,0x5e,0xfd,0xd7,0xef,0x7f,0xfe,0xde,0xde,0xff,0xfd,0xab, 0xbb,0x7a,0xaa,0xaa,0xa9,0x2a,0x94,0xaa,0xbd,0xda,0xaa,0xd5,0x55,0x4a,0xaa, 0xd5,0x35,0x6f,0x4b,0x5d,0x5b,0xbb,0x6d,0x26,0x90,0x24,0x52,0x08,0x90,0x92, 0x42,0x40,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x46, 0xa4,0x8a,0xac,0xab,0xaa,0x55,0x12,0x14,0x52,0xa9,0x95,0xa4,0xaf,0x5b,0xb5, 0x52,0xea,0xd7,0xb7,0x5e,0xaf,0xbb,0xf5,0xff,0xf7,0xae,0xff,0x7b,0xd7,0xdf, 0xfb,0xf7,0xfe,0xee,0xfe,0xed,0xaf,0x55,0x55,0x55,0x45,0x52,0xaa,0xd6,0xbb, 0x55,0x2a,0xa9,0x2a,0xab,0x5a,0xab,0x52,0xb6,0xaa,0xed,0x4d,0xb5,0x55,0x45, 0x42,0x08,0x22,0x4a,0x24,0x94,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x02,0x89,0x2a,0xaa,0x52,0xa6,0x54,0xa5,0x54,0x49,0x42,0x95,0x52, 0x56,0xb5,0x5b,0xee,0xaa,0xab,0x75,0x5a,0xda,0xeb,0xff,0xff,0xdf,0xbf,0xde, 0xfb,0xdb,0xff,0xfe,0xfb,0xdf,0xff,0xf7,0xff,0xaf,0xf6,0xd5,0xaa,0x55,0x4a, 0xea,0xad,0x55,0x5a,0xad,0x6b,0x55,0x55,0xaa,0xad,0x55,0x5d,0x5b,0x55,0x59, 0x55,0xb5,0x5a,0xa9,0x22,0x29,0x62,0x51,0x51,0x11,0x29,0x20,0x40,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xaa,0xa1,0x48,0xab,0x2e,0xaa, 0x55,0x24,0x90,0x4a,0xa9,0x49,0x55,0x6d,0xbb,0x57,0x56,0xaa,0xd5,0x6d,0xb5, 0x26,0xf6,0xff,0xf7,0x7f,0xff,0xbf,0xff,0x7f,0xff,0x7b,0xfe,0xdf,0x7b,0xfb, 0xbf,0xfe,0xd5,0x4a,0xaa,0xab,0x75,0x6b,0x6a,0xaa,0xba,0xd5,0x54,0xd5,0x55, 0x6a,0xb5,0xaa,0xd6,0xeb,0x7a,0xae,0xe9,0x24,0x95,0x4a,0x14,0x09,0x04,0x84, 0x50,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa2,0x15, 0x5a,0x2a,0x94,0xa5,0x55,0x56,0x92,0x12,0x25,0x45,0x25,0x54,0xab,0x6a,0xab, 0x6a,0xdb,0x56,0xd6,0xdd,0xdf,0xfd,0xed,0x7d,0xfb,0x5e,0xfd,0xad,0xea,0xed, 0xff,0xaf,0xff,0xde,0xaf,0x6a,0xaa,0x6a,0xa5,0x52,0xad,0xaa,0x9a,0xb5,0x55, 0x4d,0x55,0x57,0x5b,0x55,0xa9,0x54,0xab,0x5b,0xb7,0x57,0x6a,0xa4,0x92,0x48, 0xa1,0x42,0xa4,0x50,0x21,0x05,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x21,0x4a,0xa5,0x52,0xa5,0x36,0xd3,0x59,0x40,0x80,0x90,0xb4, 0xa9,0x55,0x5d,0xd5,0x55,0xb5,0xaa,0xab,0x7b,0x6a,0x6d,0xeb,0x5f,0xd7,0xef, 0xf7,0xef,0xff,0xff,0xbe,0xee,0xfd,0xf7,0xff,0x5b,0xda,0xb5,0x95,0x32,0x5a, 0xaa,0xaa,0xaa,0xae,0xaa,0xaa,0xab,0x6a,0xad,0xac,0xaa,0xab,0x55,0x56,0xdd, 0xb5,0x55,0x52,0xa4,0x92,0x8a,0x55,0x12,0x0a,0x88,0x52,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x84,0x74,0x0a,0x49,0x59,0x49, 0x55,0x2a,0xd5,0x05,0x02,0x12,0xa5,0x55,0x6d,0xb6,0xdb,0x6b,0x7a,0xaa,0xab, 0xb7,0xff,0xfd,0x7f,0xbe,0xff,0xbe,0xdf,0x7e,0xfb,0xff,0xff,0x5d,0xf5,0xb6, 0xee,0xca,0x55,0x49,0x4a,0xaa,0xbb,0x56,0xaa,0xd4,0x96,0xbc,0xad,0xfa,0xb5, 0x55,0x55,0x55,0x5d,0xaa,0xdd,0x5b,0x4a,0x88,0x2a,0x25,0x48,0x48,0xa0,0x05, 0x08,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x55, 0x15,0x54,0xa4,0x96,0xaa,0x55,0x51,0x20,0x22,0x54,0xa5,0x2a,0xb6,0xb5,0x5a, 0xb6,0xb5,0xae,0xd5,0xad,0x6f,0xde,0xf7,0xfd,0xfb,0xdd,0xfb,0xf7,0xfb,0xff, 0xda,0xb7,0xff,0x5e,0xbf,0xbb,0x55,0x55,0x55,0x2a,0xb5,0x6d,0x5a,0xaa,0xab, 0x55,0x6b,0x6b,0x3b,0x55,0xaa,0xad,0x55,0xb7,0x77,0x6a,0xd5,0x54,0xa5,0x51, 0x15,0x25,0x02,0x14,0x50,0x42,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x08,0x22,0x95,0x4a,0x2a,0x52,0xa5,0x4a,0x24,0x92,0x89,0x42, 0x12,0x94,0xa9,0xad,0x55,0x5b,0x5a,0xb3,0x6b,0x56,0xbf,0xf7,0x7d,0x57,0xdf, 0x7f,0xde,0xde,0xef,0xaf,0xff,0xfd,0x6a,0xfb,0x55,0xdd,0xaa,0xad,0x55,0x55, 0x4a,0xaa,0xaa,0xaa,0xb5,0x55,0x6d,0x5d,0xad,0x6a,0x55,0x56,0xaa,0x9e,0xd5, 0x5b,0x5a,0xaa,0x11,0x08,0xa9,0x50,0x54,0xa1,0x05,0x10,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x95,0x22,0x91,0x4a,0x54, 0xa4,0x92,0x48,0x04,0x54,0x89,0x53,0x55,0x75,0x55,0x56,0xd5,0x6d,0xda,0xb5, 0xee,0xdd,0xef,0xfe,0xf7,0xdb,0x7b,0xfb,0xff,0xff,0xde,0xf7,0xf7,0xee,0xff, 0xef,0xff,0xf5,0x55,0xaa,0xaa,0x95,0x55,0xda,0xaa,0xa5,0xd7,0xea,0xdf,0xaa, 0xaa,0x93,0x6d,0x6b,0x56,0xea,0xad,0x49,0x49,0x52,0x04,0x05,0x00,0x08,0x02, 0x42,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x8a, 0xa5,0x4a,0x4a,0xa9,0x5a,0x92,0x85,0x22,0xa2,0x92,0x55,0x55,0x55,0xab,0xb5, 0xab,0x55,0x5b,0x6b,0x5e,0xbf,0xf7,0xfe,0xff,0xfe,0xff,0xef,0xbf,0xff,0xff, 0xff,0xff,0xdd,0x7f,0xad,0x75,0x56,0xaa,0xb5,0x54,0xa9,0x52,0xaa,0x55,0x56, 0x95,0x7a,0xaf,0x75,0x75,0x55,0x5a,0xa6,0xfb,0xb5,0xaa,0xb5,0x2a,0xa4,0x89, 0x55,0x68,0x55,0x50,0x94,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0x02,0x8a,0xaa,0x51,0x12,0x4b,0x49,0x50,0x94,0x14,0x4a, 0x92,0x35,0x56,0xb6,0xdb,0x6a,0xa9,0x6d,0xed,0x6b,0x6f,0x5e,0xbf,0xff,0xdf, 0xf7,0xff,0xf7,0x7b,0x7b,0x77,0xbf,0x7e,0xdb,0xff,0xdf,0xff,0xf7,0x6d,0x56, 0xaa,0x2a,0xba,0xaa,0xaa,0xda,0xab,0x7b,0xbf,0x9b,0x55,0x55,0xdb,0xad,0x56, 0xaa,0xd2,0xaa,0x52,0x54,0x54,0xa2,0x44,0x82,0x01,0x20,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x81,0x61,0x55,0x24,0xc9,0x24, 0xa4,0x85,0x02,0x82,0xa4,0x4a,0xaa,0xa9,0x5d,0xad,0xac,0xaa,0xbe,0x95,0xad, 0xfb,0xf5,0xf7,0xb6,0xf5,0xbd,0xdd,0xdf,0xef,0xdf,0xff,0xf7,0xd7,0xbe,0xf7, 0xe9,0x55,0x5a,0xb5,0x55,0x55,0x55,0x4a,0xaa,0x9a,0xab,0x5d,0xad,0x6a,0xed, 0x55,0x56,0xaa,0xf6,0xda,0xb5,0x5a,0xaa,0x89,0x21,0x09,0x11,0x28,0x20,0x54, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88, 0x94,0xaa,0x92,0x24,0x92,0x95,0x68,0x54,0xb4,0x8a,0xab,0x54,0x6d,0xea,0xd6, 0xaa,0xab,0x5b,0x6a,0xd6,0xbf,0xef,0xfe,0xff,0xff,0xef,0xff,0xff,0xfe,0xff, 0xff,0xdd,0xfd,0xff,0xdd,0xbd,0x57,0xef,0x55,0x52,0xb5,0x4a,0xaa,0xd5,0x65, 0x55,0xf5,0x77,0xb7,0x6b,0x55,0x6b,0xf7,0xad,0x6e,0xaa,0xab,0x54,0x4a,0x94, 0xa4,0xc8,0xa2,0x8a,0x09,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x60,0x55,0x4a,0xa5,0x54,0x4a,0x28,0x25,0x0a,0x4a,0x22, 0x41,0x52,0xaa,0xaf,0x5b,0x55,0x55,0xed,0xb6,0xaf,0xfd,0xba,0xbf,0xfe,0xbf, 0xff,0x7f,0x7b,0x7f,0xff,0xfd,0x7f,0xff,0xf6,0xff,0x6b,0x5a,0xbb,0x6d,0xad, 0x55,0x54,0x55,0x2a,0x9a,0xb6,0x57,0x5d,0x6d,0xbd,0xdb,0x5a,0xad,0x77,0xb2, 0xb5,0x55,0xa2,0x91,0x42,0x52,0x25,0x08,0x21,0x20,0x20,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x14,0xaa,0x48,0x09,0x29, 0x07,0x95,0x51,0x24,0x95,0xad,0x2b,0x15,0x5a,0xd5,0x54,0xaa,0x36,0xdb,0x73, 0x6b,0x6f,0x7b,0xfb,0xfd,0xb7,0xdb,0xdf,0xff,0xda,0xf7,0xfa,0xb7,0x7f,0xbb, 0xf6,0xef,0xd5,0xb7,0x52,0xaa,0xa9,0x4a,0xd2,0xd5,0x4d,0xb5,0xeb,0x5b,0xea, 0xaa,0xad,0x5f,0xdd,0x5d,0x4a,0x96,0xa9,0x4a,0x29,0x0a,0x90,0xa2,0x94,0x88, 0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18, 0x16,0xd5,0x55,0x44,0x8a,0x50,0xaa,0xa4,0x95,0x4a,0x6a,0x95,0x64,0xab,0x55, 0x55,0x2d,0xd5,0xae,0xdd,0xff,0xdb,0xff,0xbf,0xf7,0xfd,0x7f,0x7f,0xfb,0x7f, 0xff,0xef,0xff,0xfd,0xef,0xff,0xb5,0x7a,0xdd,0xad,0x5d,0xa5,0x6a,0xad,0x6a, 0x5a,0xaa,0x55,0xfd,0x5f,0x77,0x76,0xb6,0xfb,0xeb,0x75,0x6b,0x15,0x29,0x08, 0x55,0x25,0x49,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x08,0x45,0x68,0xa2,0xa9,0x25,0x4a,0x49,0x44,0xa2,0x21, 0x54,0x4a,0x95,0x55,0x5b,0x55,0x56,0xab,0xf6,0xab,0xfa,0xed,0x6e,0xef,0x5f, 0xdf,0xd7,0xfd,0xbf,0xff,0x5f,0xfd,0xbf,0xf7,0x7d,0x56,0xef,0xaf,0xa6,0xd5, 0x6a,0xaa,0xad,0x55,0x91,0x55,0x57,0xb5,0x2b,0x69,0x99,0xab,0xdf,0xaf,0x5d, 0xab,0x4a,0xa4,0x94,0xa2,0xa8,0x94,0x14,0x28,0x22,0x20,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x05,0x55,0x08,0x20,0x15, 0x29,0x24,0x92,0x29,0x4a,0xb5,0x25,0x55,0x4b,0x55,0x54,0xaa,0xb7,0x5b,0x5e, 0xdf,0xab,0xff,0xfb,0xff,0xf6,0xfa,0xb7,0xf7,0xed,0xef,0xbf,0xff,0xff,0xf7, 0xff,0xba,0xfa,0xfb,0x6a,0xb7,0x55,0x54,0x94,0x56,0xaa,0xa9,0x5a,0xd5,0xae, 0x76,0xfd,0x7d,0xfa,0xb6,0xad,0x54,0x12,0xa1,0x14,0x0a,0x49,0x41,0x04,0x08, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x04,0xaa,0x52,0x95,0x4a,0xaa,0x52,0x69,0x54,0x01,0x2c,0x95,0x55,0x6a,0xd5, 0x75,0x5a,0xdb,0xed,0xf7,0xfe,0xed,0xbb,0xdf,0xbb,0x7f,0xaf,0xff,0x7d,0xbf, 0x7b,0xf6,0xee,0xdb,0xbf,0x57,0xf7,0xd7,0x4d,0x7d,0xda,0xaa,0xb6,0xa5,0xa9, 0x55,0x5d,0x55,0x55,0x75,0xaf,0x57,0xae,0xad,0xed,0x57,0x2a,0xa4,0x8a,0x42, 0xa5,0x12,0x14,0xa0,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xa2,0x55,0x24,0x64,0xaa,0xb6,0x9a,0xb2,0x15,0x44, 0xa6,0xaa,0x2a,0xaa,0xab,0x56,0xab,0x56,0xb7,0x5d,0xfb,0xb7,0xdf,0x7f,0xff, 0xfb,0xfa,0xad,0xd7,0xeb,0xaf,0xff,0xff,0xfe,0xfd,0xfd,0xfe,0xfb,0xbb,0xab, 0x75,0x55,0x5b,0x55,0x55,0x54,0xed,0xab,0x55,0xad,0x79,0xfd,0xfb,0xda,0xb6, 0xaa,0x91,0x4a,0x50,0xa8,0x51,0x4a,0xa2,0x08,0x04,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x29,0x45,0x55,0x0b, 0x5d,0x4a,0x5a,0xa2,0x20,0x56,0x92,0x94,0xaa,0xda,0xba,0xad,0xab,0xdd,0xf7, 0xef,0x6d,0x77,0xfe,0xdd,0xef,0x5d,0xff,0x7e,0xfd,0xaa,0xfb,0x5b,0xb7,0xeb, 0x6f,0x5f,0xde,0xfd,0x6d,0xee,0xaa,0xae,0xb6,0xaa,0xb5,0x56,0xdd,0xae,0xdf, 0xd6,0xab,0x6d,0x6f,0x6a,0x54,0x4a,0x21,0x25,0x25,0x0a,0x14,0x48,0x80,0x90, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x20,0x45,0x2a,0x28,0xa9,0xb6,0xaa,0xa5,0x18,0x89,0x29,0xaa,0xcb,0x5d,0x6d, 0x4a,0xa5,0x5a,0xef,0x5f,0xbf,0xbb,0xff,0xf7,0xf7,0xff,0xee,0xb7,0xdf,0x6f, 0x75,0xbf,0xfe,0xee,0xbd,0xbb,0xfe,0xf5,0xae,0xf7,0xbb,0x75,0xb5,0xdd,0xab, 0x6b,0x7b,0x6a,0xda,0xb5,0x6d,0xdf,0xf7,0xba,0xb4,0x92,0xa8,0xac,0x82,0x50, 0xa5,0x42,0x24,0x40,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x9a,0xa2,0x4a,0x52,0xaa,0xaa,0xaa,0xa5,0x20, 0x15,0x52,0x2c,0xa5,0x55,0x55,0x5a,0xeb,0x55,0xfd,0xf5,0x6f,0xad,0x5f,0xbe, 0xad,0x7b,0xdb,0x7b,0xf5,0xd6,0xef,0xfb,0xbb,0xd6,0xed,0x77,0xde,0xeb,0x5a, 0xea,0xae,0xad,0x56,0xad,0x5a,0xa9,0x56,0xab,0x6e,0xab,0x6a,0xdd,0x55,0x49, 0x54,0x45,0x51,0x34,0xaa,0x55,0x34,0x91,0x01,0x08,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa9,0x21,0x24, 0x55,0x55,0x52,0x2a,0x42,0x44,0xaa,0xa5,0x5a,0xab,0x55,0x4a,0xad,0xbe,0xd7, 0xdf,0xb5,0xff,0xfe,0xfb,0xfb,0xdd,0x6f,0xdf,0x5e,0xb5,0x5f,0x6f,0xef,0x6b, 0x7f,0xbf,0x6b,0x55,0xae,0xaf,0x75,0x55,0x6a,0xaa,0xaa,0xaa,0xaa,0xad,0xd5, 0x5b,0xbf,0x6a,0xea,0xa4,0xaa,0xb2,0x88,0x82,0xc5,0x0a,0xa2,0x50,0x04,0x20, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x0a,0xa5,0x54,0x92,0xaa,0xa9,0x55,0x41,0x10,0x12,0x6a,0x95,0xad,0xa5, 0x55,0x55,0x55,0x6b,0x7e,0xfa,0xdb,0xaf,0x77,0xff,0xdf,0xeb,0x75,0x6b,0xed, 0xee,0xd7,0xff,0x6b,0xfd,0x52,0xd5,0xb5,0x77,0x75,0xd5,0x9a,0xaa,0xab,0x6a, 0xad,0x55,0x56,0xd6,0x5a,0xad,0x52,0xb5,0x55,0x2a,0xa1,0x08,0x52,0x55,0x24, 0xa9,0x51,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x29,0x02,0x49,0x55,0x55,0x29,0x28,0x49, 0x45,0x15,0x54,0x54,0x94,0xaa,0xaa,0xad,0xbd,0xab,0xdf,0xae,0xfd,0xff,0xbe, 0xb5,0xff,0xaf,0xff,0x76,0xbb,0x7f,0x7d,0xfd,0x6e,0xda,0xee,0xed,0xad,0x95, 0x2a,0xd7,0x55,0x55,0x55,0x56,0xea,0xaa,0xb5,0xab,0x75,0x5e,0xdb,0x55,0x51, 0x15,0x45,0x24,0x88,0x89,0x14,0x8a,0x80,0x24,0x80,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x94,0xa8,0x84, 0x29,0x2a,0xac,0xa2,0x10,0x10,0xaa,0xaa,0xaa,0xab,0x75,0x55,0x76,0xb6,0xbf, 0x75,0xb5,0xaf,0xbb,0x77,0xff,0xb6,0xf6,0xbf,0xdf,0x6a,0xff,0xdf,0xef,0xfb, 0x6d,0xb5,0xb7,0x6a,0xed,0x55,0x55,0x6b,0x56,0xaa,0xaa,0xb5,0x2a,0xab,0x55, 0xad,0x53,0x6a,0x94,0x88,0x42,0x28,0x92,0x52,0x25,0x42,0x52,0xa4,0x80,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x80,0x4a,0x54,0x22,0xaa,0xaa,0x96,0x94,0x8a,0x42,0x95,0x52,0x55,0x55, 0x5c,0xad,0x55,0xaf,0xdf,0xdf,0xdb,0x7f,0xef,0xff,0x7f,0xff,0xdf,0xd6,0xeb, 0xdb,0x2e,0xf7,0xbb,0xdd,0xd7,0x5a,0xad,0xf7,0x55,0x55,0x6b,0x55,0x55,0x55, 0x55,0x5a,0xd5,0x5a,0xd6,0xda,0xad,0xaa,0x56,0x55,0x15,0x45,0x2d,0x09,0x52, 0x29,0x49,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x2a,0x82,0x88,0x16,0xa9,0x52,0xa0,0x51, 0x09,0x4a,0xbb,0x56,0xae,0xab,0x55,0x5b,0x76,0xf7,0xb5,0x6e,0xee,0xff,0xdb, 0xfb,0xbb,0x6d,0xff,0xff,0xfd,0xbf,0xfe,0xfe,0xf7,0x7d,0xef,0x76,0xad,0x7b, 0x6d,0xb6,0xad,0x56,0xaa,0xdb,0x55,0x2a,0xaa,0xaa,0xbd,0x75,0x55,0x49,0x20, 0xa2,0x2a,0x10,0x54,0x95,0x4a,0x54,0x04,0x21,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x11,0x54,0x22, 0xaa,0xa5,0x2a,0x8a,0x04,0x22,0xaa,0xd5,0x55,0x53,0x55,0x6b,0xd6,0xab,0x5f, 0x6b,0xbb,0xbb,0xde,0xff,0xae,0xef,0xff,0xeb,0x5a,0xee,0xd7,0xbf,0xf7,0xdd, 0xb7,0x75,0x5a,0xdf,0x8a,0xaa,0xab,0xb5,0x55,0x55,0xab,0x6a,0xaa,0xd5,0x5a, 0xd5,0x9a,0xad,0x2e,0x96,0x49,0x49,0x56,0xa4,0xa4,0x91,0x09,0x11,0x10,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x08,0x91,0x40,0x05,0x55,0x4a,0x69,0x50,0x82,0x8a,0xab,0x6a,0xac, 0xd5,0x54,0xab,0x55,0xbd,0xfe,0xd6,0xff,0xf7,0xd6,0xff,0xfb,0xb5,0xbf,0xff, 0xfe,0xdd,0xf7,0x7d,0xfe,0xed,0x9a,0xea,0xb4,0xea,0xaa,0xad,0x4a,0xaa,0xd6, 0xd5,0x54,0xaa,0xaa,0xb5,0x55,0x6a,0xb4,0xaa,0x48,0x24,0x24,0x29,0x12,0x52, 0x4a,0xa4,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x4a,0x6a,0x2a,0xa2,0xaa,0x95,0x24,0x04, 0x10,0x53,0x55,0x7d,0x56,0xea,0xab,0x6d,0x6e,0xff,0x2b,0xbb,0x57,0xef,0x7d, 0xab,0xae,0xff,0x7a,0xd5,0xf7,0xef,0xfd,0xd7,0x57,0x7b,0xed,0x55,0x6b,0x55, 0x55,0x55,0xb5,0x55,0x55,0x56,0xab,0x55,0x52,0x56,0xaa,0xaa,0xca,0x94,0xa2, 0x89,0x92,0xa4,0xca,0x95,0x2a,0x10,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x11,0x44, 0x54,0xd5,0x4a,0xaa,0xa9,0x45,0x04,0xd5,0x55,0x17,0x56,0xaa,0xab,0xb5,0x76, 0xd6,0xed,0xff,0xbe,0xef,0xfe,0xff,0xdb,0xef,0xff,0xbe,0xb7,0xff,0xfd,0xfb, 0xad,0xb7,0xad,0x55,0xbb,0x6a,0xaa,0xab,0x6b,0x56,0xab,0x5a,0x56,0xaa,0xd5, 0x55,0xda,0xa4,0xa9,0x14,0x52,0x49,0x2b,0x2a,0x5a,0x91,0x48,0x00,0x80,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x10,0x4c,0x29,0x22,0x32,0xa7,0x44,0x80,0x00,0xa1,0x55,0xd4,0xca, 0xaa,0xd5,0x55,0x5f,0xbf,0x7f,0x57,0x7d,0xdf,0xb5,0xd7,0xf5,0xbd,0xfe,0xb6, 0xf7,0xdf,0xee,0xb7,0x56,0xf6,0xde,0xd5,0x5a,0xad,0xb5,0x5d,0x55,0xaa,0xaa, 0xda,0xd5,0x55,0x4b,0x2a,0xae,0xaa,0xb5,0x55,0xc1,0x09,0x2a,0x95,0xaa,0xa5, 0x4a,0x20,0x88,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x03,0x84,0xb9,0x4a,0x92,0xaa,0xad, 0x24,0x14,0x2c,0xaa,0xab,0x55,0x6a,0xda,0xe9,0x7b,0xc9,0xda,0xef,0x7a,0xdf, 0x7b,0xff,0xee,0xdf,0xff,0x5e,0xfd,0xff,0xed,0xff,0x5f,0x77,0x6a,0xaa,0xd6, 0xfd,0x53,0xee,0xbb,0x56,0xad,0x69,0x2a,0xb4,0xd5,0x55,0x55,0x45,0x42,0x2a, 0xa4,0x95,0x6d,0x69,0x54,0x51,0x40,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa4,0xa2, 0x85,0x15,0x4b,0x54,0xa2,0x82,0xa1,0x2a,0xaa,0xb5,0x5a,0xab,0x57,0x5e,0xfd, 0x76,0xad,0xbb,0xdf,0xbb,0xd6,0xb6,0xdf,0x7a,0xda,0xd7,0xf7,0xdb,0x76,0xd5, 0xea,0xda,0xad,0xaa,0xbb,0x56,0xd6,0xb5,0x6d,0xdb,0x75,0x57,0xad,0xaa,0xab, 0x7a,0xaa,0xaa,0x55,0x90,0x56,0x54,0x25,0xaa,0x93,0x44,0x80,0x42,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x12,0x09,0x14,0x52,0x52,0xa8,0xea,0xb8,0x28,0x15,0x15,0x54,0xa5, 0x55,0xaa,0xda,0xeb,0xab,0xba,0xb7,0xff,0x7e,0xed,0x7b,0xfb,0xb5,0xff,0x7f, 0x5a,0xbe,0xf7,0xdf,0x7f,0x5d,0xb6,0xd6,0xad,0x55,0xb5,0x7b,0xdb,0xb6,0x55, 0xd5,0x55,0x6b,0xab,0xb5,0xaa,0xaa,0xd5,0xaa,0x55,0x2b,0x52,0xdb,0x54,0x54, 0x12,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x49,0x25,0x0d,0x55,0x55,0x4a, 0x92,0xa4,0xa5,0xd5,0x54,0xba,0xd5,0x76,0xaf,0xf5,0x6d,0xdd,0xb5,0xdb,0xdb, 0xf6,0xdd,0xdf,0xb5,0xea,0xaa,0xd7,0xbd,0x6b,0xd6,0xf6,0xeb,0x7a,0xd5,0x56, 0xda,0xae,0xad,0x55,0xaa,0xbb,0x5b,0x5d,0x7d,0xad,0x6a,0x55,0x55,0x54,0x92, 0xdd,0x55,0x57,0xd3,0x52,0x80,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0x12, 0x48,0xa4,0x92,0xaa,0xac,0x84,0x0a,0x8a,0x52,0x95,0x56,0xab,0x55,0xb5,0x56, 0xeb,0x6b,0x7f,0x7f,0xb6,0xbb,0x7a,0xaa,0xff,0x5e,0xdd,0x6a,0xef,0xed,0x6b, 0x57,0x5d,0x4f,0x6a,0xad,0xb6,0xab,0x76,0xae,0xdb,0xd5,0xed,0x66,0xa5,0x5b, 0x55,0x52,0x55,0xaa,0x55,0x75,0x56,0xac,0x89,0x10,0x00,0x15,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x04,0x89,0x24,0x53,0x54,0xad,0x56,0xa1,0x42,0x52,0xaa,0x6a, 0xb5,0x55,0xee,0xdb,0xeb,0x5d,0x77,0xed,0xee,0xed,0xed,0xbf,0x6f,0x6f,0xea, 0xeb,0xbb,0x7e,0xb7,0xdd,0x6a,0xf5,0xb5,0x55,0xb7,0x7b,0x6a,0xab,0x7b,0x6d, 0x5b,0x55,0xbb,0x5a,0xed,0xaa,0xaa,0xaa,0xa5,0x55,0x9a,0xaa,0xdf,0x54,0x8a, 0x10,0x40,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x42,0x92,0x09,0x4a,0xaa,0xaa, 0xd8,0xa9,0x44,0xa9,0xaa,0xd2,0xaa,0x5b,0x6f,0xba,0xb6,0xbf,0xbf,0xbf,0xf7, 0xfb,0x6a,0xb7,0xba,0xb5,0x56,0xae,0xef,0xfa,0xeb,0x5b,0x5a,0xda,0xee,0xdb, 0xd5,0xbd,0xb5,0x55,0xaa,0xaf,0xba,0xd5,0x6b,0x36,0xaa,0xd4,0x95,0x55,0x56, 0xaa,0xad,0x74,0x89,0x20,0x81,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x20, 0xa4,0xa5,0x69,0x5b,0x55,0x4a,0x25,0x29,0x54,0xaa,0xaa,0xad,0xb5,0xfd,0xeb, 0x55,0xee,0xfa,0xfe,0xaa,0xae,0xfd,0x2d,0xef,0xdb,0xbb,0xbb,0xba,0xaf,0x5a, 0xad,0xaf,0x55,0xb5,0xb6,0xba,0x8a,0xad,0xbe,0xb7,0x55,0x57,0x5b,0x5d,0xd4, 0xb5,0x52,0x44,0x92,0xaa,0xb5,0x55,0x5a,0x50,0x14,0x00,0x20,0x20,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x04,0x94,0x14,0x12,0x15,0x55,0x55,0x61,0x49,0x52,0x6a,0xda, 0x55,0x55,0x5b,0x57,0xb5,0x6e,0xbf,0xdf,0xb7,0xfa,0xfb,0xaf,0xb7,0xbb,0x77, 0x6d,0xef,0xee,0xd5,0xef,0x76,0xb5,0xae,0xde,0xdd,0x6d,0x76,0xaa,0x5a,0xda, 0xd5,0xba,0xad,0x55,0x6a,0xd6,0xaa,0x2a,0x48,0x57,0xaa,0x55,0x50,0x8a,0x41, 0x11,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0xa5,0xa9,0x54,0xab,0x55, 0x5a,0xa5,0x48,0x96,0x6d,0xaa,0xad,0x55,0x7f,0xd6,0xab,0xee,0xf5,0xfe,0xd5, 0xae,0xd4,0xaf,0x5f,0xdb,0xda,0xbe,0xbb,0xbb,0x5a,0xdb,0x5e,0xd3,0x75,0xd6, 0xdb,0xdb,0x55,0xb5,0x55,0x6a,0xd5,0xaa,0xd7,0xab,0x59,0x54,0x91,0x25,0x5d, 0x55,0xaa,0x94,0x40,0x84,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x92, 0x28,0xa4,0xaa,0x95,0xad,0x54,0x91,0x26,0x69,0x2b,0x5a,0xaa,0xa5,0x56,0xda, 0xb5,0x7b,0xbb,0x6f,0xfa,0xfb,0x6f,0xbd,0xea,0xed,0x7e,0xab,0xf6,0xd5,0xb7, 0xba,0xd5,0x5d,0xae,0xab,0x6d,0xed,0x6a,0x55,0xb6,0xaa,0xba,0xab,0x75,0x55, 0xaa,0xa9,0x44,0x92,0xa5,0x55,0x52,0x49,0x84,0x12,0x24,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x04,0x92,0x92,0xa5,0x55,0x75,0xad,0x4a,0xa9,0xae,0xd5, 0x55,0x55,0x55,0x7b,0x6d,0xad,0xbe,0xef,0xfb,0xdd,0xb7,0xb5,0x77,0xfd,0xbe, 0xf6,0xde,0xbd,0xde,0xed,0x5b,0x6b,0x65,0x55,0x7a,0xd7,0x76,0xb5,0xad,0x5a, 0xad,0xae,0xae,0x96,0xb6,0xd5,0x54,0x29,0x49,0x2d,0x4a,0xa8,0xa5,0x22,0x08, 0x01,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x4a,0x54,0xa4,0xaa,0x9a, 0xd6,0xb5,0x2a,0xaa,0xad,0x55,0x55,0x5a,0xde,0xd6,0xba,0xd7,0xbd,0xbe,0xf6, 0xdd,0xde,0xdf,0x57,0xf7,0xbf,0x6b,0xdf,0x75,0xdf,0xef,0x55,0xba,0xdf,0x8d, 0xbb,0xad,0xda,0xd5,0x65,0x55,0x7b,0x75,0xeb,0xab,0x75,0x6b,0x45,0x25,0x5e, 0xaa,0xa4,0x08,0x94,0x20,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08, 0x22,0x89,0x52,0xa5,0xaf,0x7a,0xd6,0xab,0x57,0xf5,0x5a,0xaa,0xab,0x77,0x76, 0xd7,0x7f,0xef,0xff,0xbb,0x6e,0xeb,0xbf,0xfb,0xba,0xf5,0xb7,0x7b,0xdb,0x75, 0x5b,0xbe,0xab,0x6a,0xf6,0xce,0xf6,0xab,0x6a,0xaa,0xab,0xb5,0x5e,0xb6,0xdc, 0x96,0x90,0x28,0xaa,0xa5,0x54,0x91,0x52,0x20,0x40,0x02,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x02,0x91,0x52,0x29,0x55,0x6a,0xab,0x6a,0xad,0xbd,0x5b, 0x24,0x95,0xaa,0xdd,0xab,0x6a,0xda,0xba,0xef,0xed,0xbf,0xbd,0x7e,0xd6,0xef, 0x5e,0xed,0xdd,0xf6,0xbe,0xad,0x52,0xad,0x2b,0x5b,0x75,0x55,0x75,0x52,0xaa, 0xf5,0x5b,0x52,0x9a,0xaa,0xd5,0x4a,0x95,0x49,0x28,0xaa,0x48,0x00,0xa9,0x04, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x4a,0x95,0x2a,0xb7, 0xdd,0xdb,0x55,0xdd,0xed,0x95,0x55,0x55,0xb6,0xfd,0xbb,0xf6,0xff,0xbe,0xde, 0xd6,0xf7,0xdf,0xfb,0xbe,0xeb,0xbf,0xef,0x7b,0x6b,0x5a,0xed,0x55,0xdb,0xed, 0xaf,0x5a,0xdb,0xaa,0xad,0x5a,0xed,0xd5,0x6a,0xab,0x55,0x52,0x42,0x52,0x4b, 0x49,0x20,0x45,0x44,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01, 0x12,0x29,0x49,0x51,0x5a,0x6a,0xb7,0x6d,0x6e,0xba,0xd5,0x55,0x5d,0xff,0x56, 0xca,0xdd,0xb5,0xfb,0xeb,0x7b,0x5f,0x7d,0xad,0xdb,0xb6,0xd5,0x75,0xdd,0xdd, 0xa7,0x55,0xba,0xb5,0x6a,0xf2,0xab,0x7a,0xaa,0xb2,0xd7,0x55,0x5a,0x95,0x55, 0x2a,0xa9,0x15,0x25,0x24,0x24,0x84,0x08,0x91,0x02,0x80,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x08,0x0a,0x86,0xaa,0x55,0xb7,0xdb,0xb7,0x77,0x57, 0x6a,0xaa,0xab,0xb5,0xdb,0x6d,0xf7,0xef,0x7f,0x5d,0xaf,0xff,0xf7,0xfb,0x7e, 0xad,0xbf,0xfe,0xef,0x75,0x59,0x55,0x6f,0x6e,0xff,0x5d,0xdd,0xea,0xda,0xad, 0x6d,0x5b,0xaa,0xd2,0x6a,0xa5,0x54,0x82,0x80,0xaa,0x92,0x41,0x25,0x24,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x4a,0x51,0x15,0x2a, 0xdd,0x5c,0xaa,0xdb,0xd9,0xaa,0xa4,0x95,0xff,0x6d,0xab,0xbd,0x7a,0xef,0xef, 0x7b,0x7b,0xbf,0xee,0xd7,0xdb,0x6b,0x53,0x7b,0xee,0xd7,0x6a,0xf5,0xd5,0xa9, 0x65,0x26,0x2d,0x55,0x56,0xb6,0xee,0xed,0x4a,0x95,0x55,0x42,0x54,0x2a,0xa9, 0x49,0x10,0x10,0x80,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x25,0x07,0x28,0xa4,0xb5,0x6b,0x6b,0xaf,0x6d,0x6d,0x55,0x55,0x56,0xd5,0xb6, 0xaa,0xd7,0xd7,0xff,0xb7,0xdf,0xde,0xfd,0x77,0x7b,0x7d,0xff,0xfd,0xdf,0x7f, 0xad,0xb7,0x5e,0xab,0x7e,0xb6,0xab,0xf6,0xab,0x7b,0x5b,0x5e,0xaa,0xa9,0x35, 0x5a,0x29,0x12,0xa4,0x92,0xaa,0x4a,0xca,0x04,0x40,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x91,0x55,0x53,0x55,0xb6,0xb5,0x69,0xb6,0xea, 0xaa,0xab,0x55,0xfe,0xdb,0x77,0x7a,0xed,0xbe,0xed,0xeb,0x6f,0xd7,0xfd,0xd7, 0xb6,0xad,0x57,0x7f,0xda,0xf6,0xdd,0xab,0x6e,0xd7,0xd5,0x5a,0x4a,0xaa,0x95, 0x6d,0xfd,0x54,0xa4,0x8a,0xa9,0x44,0x4a,0x52,0xa5,0x44,0x00,0xa0,0x00,0x02, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x44,0xa4,0x49,0x4e, 0x55,0xd5,0x57,0x6b,0xab,0x55,0x2a,0xab,0x55,0x6d,0xad,0xaf,0x77,0x77,0xdb, 0x7f,0xfd,0xfd,0xae,0xba,0xdf,0xdb,0xfa,0xd5,0xff,0xfa,0xb7,0xf5,0xb5,0xfa, 0xab,0x6b,0x6a,0xab,0x6a,0xab,0xd5,0xaa,0x54,0x55,0xaa,0x28,0xa9,0x49,0x15, 0x22,0x2a,0x40,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x28,0xb2,0xaa,0xa9,0xaa,0xab,0xba,0xda,0xba,0xaa,0xd4,0xb7,0xdb,0xb4, 0xd6,0xd5,0xda,0xff,0xbe,0xaa,0xaf,0xd7,0x77,0xd5,0xba,0xee,0xad,0xdf,0x6d, 0xde,0xed,0x5e,0x97,0x56,0xd5,0x5d,0x55,0x5a,0xb5,0xb5,0x5a,0xaa,0x92,0x97, 0x55,0x42,0x54,0x94,0xa5,0x94,0x02,0x80,0x02,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x92,0x29,0x4a,0x55,0x56,0xaa,0xad,0x5b,0xd5, 0xaa,0xaa,0xa9,0x6d,0x56,0xbb,0x6f,0xef,0xff,0xeb,0x7f,0xff,0xfd,0xda,0xee, 0xdf,0x7b,0xf7,0x6b,0xff,0x6b,0x5b,0xf7,0x7b,0xaf,0x5a,0xaa,0xaa,0xd5,0xd6, 0xdd,0xae,0xb5,0x2a,0x49,0x5a,0x9a,0xa9,0x44,0x4e,0x00,0x94,0x04,0x20,0x80, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x5a,0x2b,0x44, 0xbb,0x57,0x6b,0x6d,0x5a,0xd5,0xb5,0x57,0xb2,0xfa,0xad,0xb5,0xbb,0xdb,0x7d, 0x95,0x6b,0xab,0x77,0x55,0x6a,0xd5,0x2d,0xb6,0xd5,0xbd,0xbd,0x7b,0xd5,0x72, 0xb5,0x56,0xeb,0x56,0x55,0x6a,0xba,0xd2,0xa5,0x55,0x56,0x49,0xa4,0x2a,0xa9, 0x54,0x4a,0x80,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x01,0x2d,0x51,0x55,0x2a,0xeb,0xf5,0xad,0xad,0x76,0x57,0xda,0xdd,0xd7, 0xb7,0x7e,0xf6,0xff,0xd6,0xff,0xff,0xff,0xda,0xed,0x5b,0x7b,0xfa,0xdf,0xbf, 0xee,0xeb,0xde,0xbb,0x9d,0xd5,0x6b,0x55,0x5b,0xd6,0xae,0xca,0xa5,0x54,0x95, 0x5b,0x2a,0x13,0x52,0x94,0x81,0x20,0x01,0x52,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x8a,0xae,0xa9,0x4b,0x55,0x5a,0xb6,0xd7, 0x5a,0xaa,0xed,0x6b,0x7d,0xdd,0xab,0xaf,0xef,0x6f,0xf7,0xdd,0x6a,0xff,0x5b, 0x55,0x5a,0xaf,0x75,0x76,0xb7,0xb6,0xeb,0xd6,0xea,0xab,0xba,0xaa,0xa8,0x7a, 0xd3,0x75,0x15,0x55,0x55,0x55,0xd4,0xa8,0x8a,0x49,0x28,0x08,0x14,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x22,0x92,0xaa, 0xaa,0xaa,0xfe,0xdb,0x7a,0xd5,0xaa,0xb6,0xad,0xaf,0x6b,0x6a,0xed,0x7f,0xbb, 0xbf,0xff,0xbe,0xb5,0xbd,0xb5,0x77,0xb5,0xaf,0xdf,0xfb,0x5b,0x7f,0x7d,0x57, 0x6a,0xd6,0xdd,0xaf,0xaa,0xae,0x94,0xa5,0xd5,0x2b,0x5a,0x49,0x45,0x52,0xa4, 0x02,0xa0,0x00,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x15,0x4a,0xaa,0xb5,0xdc,0xd7,0x2b,0xad,0x6a,0xd5,0x6d,0xb6,0xfb, 0xb7,0xad,0x5b,0xb5,0xef,0xff,0x6d,0xdb,0xde,0xd6,0xda,0xfa,0xda,0xda,0xf6, 0xdd,0xf5,0xab,0xd6,0xed,0xaa,0xab,0x66,0xd0,0xd5,0x55,0x52,0x96,0xaa,0x95, 0x55,0x52,0x2a,0x29,0x21,0x52,0x01,0x20,0x80,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x2a,0xaa,0xad,0x6a,0x7a,0xda,0xd7, 0xad,0x55,0xb6,0xd5,0x5e,0xdd,0x55,0xad,0xff,0xbb,0x6d,0xfe,0xb5,0x77,0x6d, 0x56,0xaf,0x6e,0xb7,0x5b,0xb7,0xae,0xbd,0x75,0x5a,0xfd,0x6d,0x59,0x7e,0xbe, 0xaa,0xaa,0xab,0x4a,0xaa,0xa9,0x44,0xa2,0x84,0xa8,0x08,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x2a,0x5a, 0xb5,0x57,0x3d,0x4b,0x7a,0xd7,0x5a,0xab,0x55,0x53,0xf6,0xaa,0xde,0xbf,0xfd, 0xff,0xef,0xdb,0xaa,0xb6,0xeb,0x59,0xbb,0x55,0xee,0xfa,0xf5,0x67,0xaf,0x56, 0xab,0x55,0x56,0xd5,0x6a,0xaa,0xaa,0x4a,0xab,0x55,0x44,0x92,0x55,0x6a,0x8a, 0xa0,0x09,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x12,0x8b,0x0b,0x55,0xbb,0x97,0xa5,0xad,0x6a,0xd6,0xdd,0xb6,0xbe, 0xad,0xef,0x6b,0x76,0xef,0xff,0xfd,0xee,0xef,0xb7,0x5a,0xee,0xdd,0xee,0xbb, 0xd7,0xdd,0xda,0xf5,0xab,0x6d,0x5a,0xad,0xbb,0x75,0x55,0x55,0x5d,0x55,0x55, 0xaa,0x55,0x2a,0xa4,0x51,0x0a,0x40,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x65,0x55,0x5a,0xd5,0x6a,0x96,0xf6, 0xb5,0x5a,0xaa,0xda,0xcf,0xf7,0x35,0xb5,0xdf,0xfe,0xb6,0xf7,0xb5,0xda,0xda, 0xee,0xb5,0x7f,0x75,0xd6,0xbf,0xf6,0xb6,0xad,0x75,0xaa,0xd6,0xb6,0xbd,0xad, 0xaa,0xad,0x6a,0x95,0xaa,0x91,0x24,0xaa,0xaa,0xa5,0x50,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x29,0x4a, 0xad,0x6f,0xab,0x55,0x5b,0x4b,0x57,0x77,0x57,0x75,0x5a,0xee,0xde,0xbb,0xff, 0xff,0xff,0xff,0x76,0xef,0xb5,0xdf,0xaf,0xdb,0x6f,0xd5,0x5d,0xdf,0x77,0xae, 0xf6,0xa9,0x55,0x6a,0xb5,0x55,0x75,0x2d,0x4a,0xb5,0x54,0xaa,0xd6,0xa4,0x92, 0xaa,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x8a,0x52,0xa5,0xb4,0xf5,0x55,0x7d,0xad,0xbb,0x6d,0x6a,0xad, 0xef,0xf7,0x76,0xff,0xf7,0xaf,0xff,0x6a,0xdb,0x5a,0xd6,0xb5,0x7d,0xad,0xba, 0xfd,0xf6,0x6d,0xac,0xd5,0x9a,0xa5,0xaa,0xb5,0x56,0xed,0x95,0xb5,0x6a,0x95, 0x4a,0xaa,0xaa,0xaa,0x48,0x40,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x25,0x2a,0xda,0xdb,0x5b,0x55,0x56, 0xd2,0xd7,0xda,0xad,0xb5,0x55,0xaa,0xdd,0x5e,0xde,0xff,0xbd,0xff,0x6a,0xed, 0xed,0xff,0xaf,0xf6,0xd7,0xd7,0xab,0xba,0xf7,0x5a,0xaa,0xaa,0xd5,0x4d,0xaa, 0xab,0x55,0x55,0x55,0x55,0x69,0x55,0x55,0x52,0xa5,0x74,0x21,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa5, 0x2a,0xa5,0xad,0x55,0xab,0x6d,0x6d,0xb7,0xb5,0x55,0x7f,0xff,0x6f,0xb7,0xff, 0xfa,0xf7,0xbb,0xbd,0xb7,0x5b,0x55,0x7a,0xab,0x7f,0x7a,0xdb,0x56,0x95,0x6d, 0x56,0xaa,0xb4,0xba,0xaa,0xd4,0xaa,0xaa,0xd5,0x55,0x2a,0xaa,0x5a,0xa9,0x52, 0x80,0x84,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x22,0x92,0xaa,0xb4,0xab,0x55,0x55,0x55,0xaa,0xda,0xd5,0xab, 0xaa,0xab,0x5a,0xff,0xfb,0x6f,0xff,0xed,0xd6,0xdb,0xbe,0xdb,0xde,0xf6,0xa5, 0xd7,0x56,0xed,0x55,0x55,0xba,0xaa,0xd5,0x57,0x55,0x6a,0xaa,0xab,0x2a,0x95, 0x56,0x95,0xad,0x15,0x28,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x55,0x56,0xaa,0xaa,0xab, 0xbb,0x6d,0xaa,0xaa,0xfa,0xdb,0xfd,0xbf,0xaf,0x5f,0xbb,0xaf,0xbe,0xbd,0xbe, 0xeb,0x6d,0x6b,0x5b,0xdf,0x6a,0xbb,0x5b,0x5a,0xfa,0xca,0x95,0x52,0xad,0xb6, 0xae,0xa4,0xd4,0xd4,0xaa,0xaa,0xaa,0xb5,0x52,0xa5,0x12,0x80,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2a, 0x95,0x6a,0xad,0xaa,0xad,0x4d,0xd5,0x6d,0x6a,0x95,0xb5,0x57,0x76,0xfd,0xff, 0xee,0xfd,0xf7,0x77,0x6b,0x7d,0xde,0xda,0xd5,0x6a,0xda,0xad,0xaa,0xab,0x55, 0x75,0x6a,0xaa,0xb6,0x55,0x52,0xab,0x2b,0x25,0x55,0x5b,0x55,0x42,0x6a,0xa0, 0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x10,0x92,0xb5,0x55,0x6a,0xdb,0x75,0x7b,0xab,0x55,0xd6, 0xde,0xdd,0xdb,0xdf,0xfd,0x5b,0xff,0xdd,0xdd,0xbd,0xd6,0xb5,0x6d,0x7d,0xbf, 0x6b,0x75,0x6d,0x55,0x77,0x5b,0xb5,0x56,0x95,0x6b,0xad,0x54,0xb5,0x52,0x55, 0x6a,0x55,0x2a,0x89,0x10,0xa9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x21,0x55,0x4a,0xd5,0x55, 0xab,0x55,0x6d,0x5a,0xaa,0xab,0x6b,0x7f,0xf7,0x6f,0xef,0x6d,0xfe,0xf6,0xd7, 0x7b,0x7e,0xf7,0xab,0x6a,0xaa,0xda,0xaa,0xdb,0x55,0x56,0xd5,0x5a,0xb5,0x54, 0xaa,0xd3,0x4a,0xa9,0x55,0x55,0x54,0xa9,0x56,0x82,0x10,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x8a,0x4a,0xb2,0xb5,0x6a,0xd6,0xee,0xd5,0x56,0xb5,0xd5,0xbd,0xeb,0xbd,0xfd, 0xfd,0xff,0xb7,0xbb,0x7f,0xd6,0xeb,0x5a,0xf6,0xdf,0xf7,0x6d,0xab,0x6d,0xab, 0xea,0xaa,0xaa,0xd5,0xab,0x55,0x5a,0xb5,0x4d,0x4a,0xaa,0xd5,0x4a,0xa8,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x42,0x22,0xab,0x4a,0xaa,0x6b,0xbb,0x7b,0x5b,0x5a, 0xbe,0xed,0x7f,0xef,0xf7,0xbb,0xab,0xfe,0xdd,0xd5,0x7d,0xbd,0xf7,0x5b,0xb5, 0x5b,0xb6,0xb5,0x56,0xfa,0x55,0x56,0xb5,0x55,0x55,0xb6,0xaa,0xd5,0xa5,0xaa, 0xa5,0x54,0xab,0x26,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x51,0x28,0xa9,0x56,0xab, 0x5d,0xa5,0xad,0x6a,0xee,0xd5,0x56,0xaa,0xbd,0xbf,0xfe,0xfe,0xdb,0xb7,0x77, 0xd7,0x6e,0xbb,0xee,0xee,0xd5,0xd5,0x5f,0xfb,0x57,0xaa,0xaa,0xd5,0x5a,0xda, 0xd5,0xb6,0x55,0x55,0x6a,0xaa,0xaa,0x54,0xa8,0x01,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x08,0x96,0x55,0x53,0x6d,0x67,0xfa,0xf7,0xad,0x5b,0x55,0xbb,0xff,0x6f,0xef, 0x77,0xdb,0xfe,0xdb,0xad,0x7a,0xf5,0xd5,0x5b,0xbb,0xbb,0x56,0xaa,0x96,0xda, 0xb7,0x69,0x57,0x6e,0xae,0xba,0xd9,0xaa,0xea,0xad,0x55,0xa5,0x4a,0xaa,0xa8, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x04,0x49,0x2a,0xaa,0xd5,0x72,0xad,0x15,0x77,0x55, 0x56,0xd6,0x95,0xb6,0xfd,0xff,0x7d,0x77,0xad,0x77,0xb7,0x5b,0x7b,0x75,0xdd, 0xdd,0xdb,0x6d,0xdb,0x55,0xaa,0xaa,0xb5,0x55,0xa5,0xd6,0xa6,0xbd,0xaa,0xb5, 0x2a,0x55,0x29,0x51,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x81,0x2a,0x15, 0x5d,0x76,0xcb,0xaa,0xaa,0xd5,0x6b,0x7b,0x5f,0xdf,0xbb,0xf7,0xbe,0xef,0xd9, 0x6d,0xef,0xd5,0xae,0xef,0x6f,0x6a,0xb6,0x6a,0xee,0xad,0xd7,0x55,0x5a,0xde, 0xbb,0x54,0xa6,0xad,0x55,0x44,0xa8,0xaf,0x4a,0x20,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0xa2,0x54,0xab,0xcb,0x56,0x9d,0xed,0x5a,0xd5,0x5b,0xb6,0xd6,0xee,0xf6, 0xff,0xdd,0xdf,0xb5,0x6e,0xdd,0xba,0xae,0xdb,0x5b,0xf5,0xaa,0xd5,0x95,0xba, 0xd6,0xb5,0x55,0x6b,0x77,0x55,0x55,0xaa,0xad,0x54,0xa9,0x12,0xf5,0x50,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x05,0x24,0x74,0xdb,0xef,0x55,0xad,0xb5, 0x55,0x5b,0xfb,0xb7,0xaf,0xdd,0xfe,0xea,0xef,0xd5,0xb6,0xdf,0xfb,0x6d,0xee, 0xaf,0xd7,0x6b,0x6e,0xd5,0x6b,0x5a,0xaa,0xad,0xad,0xea,0xad,0x55,0x55,0x4a, 0x94,0xa5,0x4a,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x92,0x97,0x1a, 0xad,0xa9,0xf6,0xd5,0xd5,0x6d,0xed,0x56,0xf5,0xfd,0xef,0x77,0x5f,0xba,0xfb, 0xfb,0xb6,0xad,0xf7,0x7f,0xfb,0x75,0xad,0x55,0xb7,0xb6,0xd6,0xaa,0xda,0xde, 0xae,0xda,0xab,0x56,0xa9,0x52,0x4a,0xaa,0x20,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x01,0x09,0x55,0xa6,0xb7,0x76,0x56,0xaa,0xb6,0xaa,0xb6,0xda,0xdf,0xbf, 0x7d,0xfd,0xf6,0xef,0xae,0xd7,0xfb,0xf7,0x6d,0xbb,0x6f,0xda,0xab,0x6e,0xfd, 0xdb,0x5b,0x6d,0x6e,0xab,0x55,0xbb,0x5a,0xda,0x54,0xa9,0x25,0x49,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x0b,0x63,0x6d,0xdb,0x57,0x6b,0xd9, 0xad,0xbb,0x6a,0xab,0xed,0xd7,0xdf,0x5b,0xb7,0xf5,0xba,0xdd,0x5a,0xf7,0x6f, 0xbd,0xee,0xb6,0xb5,0xae,0xad,0x6d,0xb6,0xab,0xf6,0xf7,0x6d,0x6d,0x6a,0x8b, 0x54,0xa9,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x51,0xf8, 0xbe,0xad,0xb2,0xbc,0x6a,0xb6,0xdd,0xad,0x6e,0xb7,0xbf,0x75,0xed,0xda,0xb7, 0x6f,0x6b,0xb7,0x5b,0xfd,0xeb,0x75,0x5b,0xde,0xf6,0xf5,0xaa,0xd5,0xb6,0x9b, 0xad,0xb6,0xb7,0xaa,0xa9,0x4a,0x94,0x88,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x02,0x04,0x3e,0x87,0xfe,0xdb,0xd7,0x55,0x5a,0xb5,0x57,0xbb,0xff, 0x77,0xff,0x77,0x6f,0xdd,0xfa,0xf6,0xda,0xd6,0xd7,0xbd,0xae,0xda,0x6b,0x5f, 0x4d,0x6f,0x5b,0x5a,0xee,0xf6,0xdb,0xda,0xb5,0x44,0xaa,0xa2,0x20,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x21,0x4a,0xf2,0xdb,0x6d,0x69,0x3a, 0xea,0xad,0xa9,0x56,0xbb,0xdb,0xbf,0xad,0xb5,0x6b,0x5f,0xaf,0x6f,0x7f,0xfe, 0xee,0xf5,0x6d,0xb5,0xd4,0xb5,0xda,0xad,0xae,0xb5,0xad,0xb5,0x6d,0xd4,0x2a, 0x55,0x54,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x12, 0x3b,0xfd,0xfe,0xae,0xcd,0x57,0x76,0xbe,0xdb,0xee,0xee,0xeb,0xfe,0xfe,0xdd, 0xb5,0xfa,0xdb,0xab,0xf7,0x5b,0xbd,0xb6,0xfb,0x6b,0x55,0x6d,0x56,0xbb,0x5f, 0x77,0x6d,0x75,0x55,0x52,0xaa,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0x89,0xad,0xd7,0x4b,0xdb,0x57,0xd9,0xaa,0xd3,0x6a,0xb7, 0xbb,0xbe,0xd7,0xab,0x76,0xdf,0x5d,0xb6,0xde,0xbd,0xf5,0x6d,0x5b,0xad,0xb5, 0xd7,0x55,0x5b,0x6a,0xf5,0xdd,0xb7,0xaa,0xd2,0x8a,0x95,0x54,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4a,0x45,0x7d,0xb5,0x6d,0x5a, 0x6d,0x7b,0x55,0x5a,0xda,0xee,0xef,0xfa,0xf5,0xad,0x55,0xe6,0xdb,0x6b,0xee, 0xad,0xf7,0x6d,0xb6,0xda,0x7a,0xb6,0xea,0xb7,0xae,0xaa,0xdd,0x5b,0x54,0xab, 0x49,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20, 0x25,0x56,0xde,0xb7,0xf5,0xaa,0xad,0x55,0x6a,0xb7,0xb7,0x5a,0xdd,0xbe,0xdb, 0xb5,0x5b,0x6f,0xbf,0xbb,0xdb,0x5d,0xbf,0x6b,0x6f,0xad,0xdb,0x57,0xda,0xfa, 0xd6,0xb5,0xed,0x55,0x54,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x16,0x82,0x6b,0x75,0xa9,0x56,0xaa,0xdb,0x49,0x5b,0x55, 0xea,0xb7,0xef,0x6f,0x75,0x5e,0xbd,0xb5,0x6a,0xed,0x6d,0xfb,0xea,0xdd,0x5a, 0xd6,0xae,0xba,0xad,0x55,0x6d,0xd6,0xb5,0x55,0x51,0x50,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x54,0xb7,0x5e,0xaa,0xcb, 0x6d,0x6d,0x75,0x2d,0xdb,0x7d,0xee,0xf5,0xbd,0xdb,0x6b,0xd6,0xdf,0xff,0xde, 0xb6,0xb7,0x6f,0x77,0x6d,0x75,0x75,0xad,0xf7,0xab,0xbd,0x6b,0x55,0x5a,0x8a, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x21,0x15,0xb5,0x69,0x75,0xb6,0xab,0x5a,0x95,0x6d,0xaa,0xb5,0xbb,0x6f,0xed, 0xb6,0xb7,0x6b,0x56,0xf7,0xdb,0xdd,0xba,0xd5,0xb7,0xda,0xd6,0xb6,0xad,0x76, 0xeb,0x5d,0x55,0x6a,0x55,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x14,0xaa,0x77,0xad,0x2e,0xab,0xad,0x44,0xa5,0xf6, 0xef,0xbb,0x6e,0xda,0xbe,0xdb,0xda,0xf7,0x7b,0xba,0xbe,0xb6,0xef,0x5d,0x6d, 0x6b,0x5a,0xdf,0x77,0x5b,0xda,0xd5,0xa9,0x2b,0x48,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x15,0x5a,0xd5,0x9a, 0xad,0x76,0xd6,0xaa,0xaf,0x7a,0xd6,0xb5,0xb7,0x6b,0x6d,0x7f,0xbd,0xae,0xed, 0xd5,0xfb,0x55,0xee,0xdf,0xb6,0xeb,0x55,0xda,0xae,0xad,0x55,0x55,0x50,0x20, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x45,0x0f,0x55,0x6a,0xb7,0xff,0x69,0x52,0xda,0xdb,0xfb,0xef,0x6d,0xdd, 0xb6,0xd6,0xef,0xfb,0xb7,0x7e,0xd5,0xfa,0xb7,0x75,0x5a,0xbd,0xba,0xad,0xf5, 0xf6,0xaa,0xa4,0x8a,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xa1,0x55,0x55,0x55,0x5a,0xf5,0xa9,0x6b, 0x6d,0x5d,0x5a,0xb6,0xb6,0xfb,0x7b,0xdd,0x6d,0xdd,0x55,0xbe,0xab,0xda,0xdf, 0xed,0x4a,0xd6,0xee,0xae,0xa9,0x25,0x55,0x61,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0x52,0xaa, 0xd5,0x5d,0x9e,0x4b,0x5d,0xb6,0xf7,0xba,0xab,0xfb,0x5d,0xaf,0x77,0xfe,0xf7, 0xef,0x75,0xad,0x6f,0x6a,0xab,0x6b,0x6d,0x53,0xb5,0x54,0xb6,0xaa,0x90,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x05,0x48,0xb6,0xab,0x67,0xd7,0xad,0x6a,0xdf,0xba,0xee,0xac,0xad, 0xeb,0xfb,0xfe,0xb7,0x5d,0x7b,0xdb,0x77,0xfb,0xff,0x5d,0xb6,0xd5,0x6e,0xed, 0x55,0x5a,0x92,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xa2,0x59,0x6a,0xb8,0xd4,0xb3,0x7f, 0x6a,0xed,0xb5,0xd5,0xf7,0x5d,0x56,0xab,0xfd,0xff,0xad,0xfd,0xaa,0xad,0x55, 0x6a,0xdb,0x56,0xbb,0x29,0x52,0xe9,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x05, 0xaa,0xab,0x6b,0xd8,0x95,0x7f,0xab,0x7f,0x7b,0x5d,0xef,0xff,0xfd,0xaf,0xb5, 0xff,0x6e,0xff,0xf7,0x7a,0xdb,0x55,0x5b,0x6d,0xa5,0x5a,0x04,0x20,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x06,0x90,0xd0,0xaa,0xba,0xee,0xad,0x55,0x54,0xab,0xee,0xb7, 0xfb,0x59,0x57,0xfa,0xdf,0x57,0xfb,0x55,0x5a,0xab,0x6d,0x6b,0x6a,0xaa,0x56, 0xca,0xa2,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x28,0x5a,0x4a,0xb5,0x76, 0xbf,0xfd,0x5f,0xf7,0xfe,0xdf,0xff,0xff,0x6f,0x76,0xfb,0x5d,0xb6,0xd7,0xdb, 0xb6,0xad,0x55,0xb5,0xa9,0x55,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x10, 0x02,0x0b,0x95,0x6d,0xad,0x55,0xab,0x45,0x5d,0x57,0xfa,0xee,0xdd,0xfb,0xff, 0xdf,0xf6,0xff,0x6a,0xba,0xdb,0x55,0x6a,0xca,0xaa,0xa8,0xa0,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x26,0xa8,0x80,0xe9,0x57,0x5b,0x5f,0xf6,0xfb,0xf7,0xfb, 0x6f,0xff,0xff,0xae,0xda,0xfb,0x6f,0xab,0xbd,0xef,0x6a,0xda,0xad,0x34,0x01, 0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x42,0x28,0x2a,0x95,0xad, 0x66,0xbf,0x5d,0xfe,0xdd,0xfe,0xff,0xb7,0xfb,0xf7,0x5f,0xdb,0x76,0xd6,0xb5, 0xd5,0x6a,0xd2,0xc9,0x5c,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x28,0x84,0x02,0x4a,0xd6,0x95,0xd5,0xb6,0x5b,0x77,0xbb,0xfb,0xfd,0x6f,0x55, 0xed,0x7e,0xdd,0xad,0xde,0xb5,0x4a,0x2a,0xa2,0x44,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x04,0x21,0x21,0x04,0x55,0xd5,0x7e,0xdb,0x6f,0xdd, 0x7f,0xdf,0x57,0xf7,0xfd,0x5f,0xab,0x6b,0x76,0xea,0xaa,0xa5,0xaa,0x95,0x50, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x94,0xb5,0x55, 0x55,0x4a,0xaa,0xb5,0x6f,0xeb,0x7b,0xfd,0x5d,0x57,0xf5,0xd5,0x5d,0x4a,0x92, 0xa8,0x12,0x95,0x52,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x02,0x49,0x45,0x55,0x55,0x54,0x2c,0x5e,0xda,0xfd,0xff,0xdf,0xff,0xff, 0x5e,0xfb,0x65,0x55,0x4d,0x66,0xda,0x52,0x48,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x31,0x28,0xaa,0xab,0x97,0x8b,0xf7, 0x57,0xad,0x7a,0xaa,0xed,0xeb,0x2e,0xb5,0x6b,0x72,0xb5,0x69,0x29,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x8a,0x45, 0x04,0xaa,0xc8,0x76,0x9a,0xbd,0xff,0xef,0xff,0x5b,0x76,0xfb,0x5b,0x7d,0xad, 0x48,0x95,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x02,0xb2,0xaa,0xb4,0x89,0x55,0xab,0x55,0xba,0xfa,0xfe, 0xdd,0xad,0xea,0x82,0x55,0x22,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x48,0x95,0x6a,0x52,0xac, 0x5d,0xbf,0xf7,0xaf,0x55,0xbe,0xd6,0x10,0x50,0xaa,0x48,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04, 0x20,0x55,0xbd,0x55,0x07,0x26,0xea,0xbd,0xf5,0xb6,0xeb,0x74,0xa5,0x55,0x11, 0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x0a,0x2a,0x45,0x2a,0xaa,0x91,0x3f,0xae,0xaa,0x55, 0x5d,0x81,0x15,0x56,0xca,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0xa5,0xb5, 0xfd,0x64,0xaa,0xaa,0x80,0x20,0x5a,0xd5,0x51,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x01,0x5a,0x54,0x07,0xab,0x41,0x49,0x5d,0x8a,0xa5,0x2a,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x57,0xa2,0xaa,0xbe,0xb6,0xf6, 0xaa,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x30,0xaa,0xd3,0x55,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00 }; pngphoon-1.1/Makefile0000644000175000017500000000035211146265102013607 0ustar meikemeike CC=gcc CFLAGS=-Os -Wall -pedantic LDFLAGS=-lpng -lz -lm all: pngphoon pngphoon: image.o pngwrite.o moon.o main.o phase.o tws.o stars.o fail.o $(CC) -o $@ $^ $(LDFLAGS) %.o: %.c $(CC) $(CFLAGS) -c $< clean: rm -f *.o pngphoon pngphoon-1.1/image.c0000644000175000017500000000122211146264311013373 0ustar meikemeike #include "image.h" #include image_t *imagecreate( int width, int height ) { int i; image_t *image; image = (image_t*)malloc( sizeof(image_t) ); image->width = width; image->height = height; image->xbytes = (width + 7) / 8; image->bitmap = (png_bytep)calloc( image->xbytes + 1, height ); image->rowps = (png_bytep*)malloc( sizeof( png_bytep ) * height ); for( i = 0; i < height; i ++ ) { image->rowps[i] = image->bitmap + (i * image->xbytes); } return image; } void imagedestroy( image_t *image ) { free( image->bitmap ); free( image->rowps ); free( image ); image = NULL; }