Repository: ropg/M5ez Branch: master Commit: fa34e2dc4efe Files: 33 Total size: 569.8 KB Directory structure: gitextract_fp6neced/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── component.mk ├── examples/ │ ├── Hello_World/ │ │ └── Hello_World.ino │ ├── ImagesSPIFFSorSD/ │ │ ├── ImagesSPIFFSorSD.ino │ │ └── images.h │ ├── M5ez-demo/ │ │ ├── M5ez-demo.ino │ │ ├── images.h │ │ ├── raw_githubusercontent_com.h │ │ └── z-sysInfo.ino │ ├── OTA_https/ │ │ ├── OTA_https.ino │ │ ├── README.md │ │ └── raw_githubusercontent_com.h │ ├── SortedMenus/ │ │ └── SortedMenus.ino │ ├── SubMenu/ │ │ └── SubMenu.ino │ ├── z-ezTimeLog/ │ │ └── z-ezTimeLog.ino │ └── z-sysInfo/ │ └── z-sysInfo.ino ├── keywords.txt ├── library.json ├── library.properties ├── src/ │ ├── M5ez.cpp │ ├── M5ez.h │ └── themes/ │ ├── dark.h │ └── default.h ├── tech_notes/ │ ├── converting_from_M5ez_1.x.md │ ├── obscure_errors_and_resolutions.md │ └── settings_persistence.md └── tools/ ├── get_cert ├── gh-md-toc └── include_file ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ # Auto detect text files and perform LF normalization * text=auto ================================================ FILE: .github/workflows/main.yml ================================================ # This is a basic workflow to help you get started with Actions name: M5EzBuild # Triggers the workflow on push or pull request on: push: # see: https://help.github.com/en/actions/reference/events-that-trigger-workflows#pull-request-event-pull_request paths: - '**.ino' - '**.cpp' - '**.h' - '**main.yml' pull_request: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: build: name: Test compiling examples runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Compile all examples uses: ArminJo/arduino-test-compile@v2 with: arduino-board-fqbn: esp32:esp32:m5stack-core-esp32 platform-url: https://dl.espressif.com/dl/package_esp32_index.json required-libraries: ezTime,M5Stack sketch-names-find-start: examples sketches-exclude: z-sysInfo ================================================ FILE: .gitignore ================================================ .development ================================================ FILE: LICENSE ================================================ GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser 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 Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. ================================================ FILE: README.md ================================================ # `M5ez` The easy way to program on the M5Stack >*M5ez (pronounced "M5 easy") is a complete interface builder library for the M5Stack ESP32 system. It allows even novice programmers to create good looking interfaces. It comes with menus as text or as images, message boxes, very flexible button setup (including different length presses and multi-button functions), 3-button text input (you have to see it to believe it) and built-in Wifi support. Now you can concentrate on what your program does, and let M5ez worry about everything else.* ![M5EzBuild](https://github.com/M5ez/M5ez/workflows/M5EzBuild/badge.svg?branch=master) *written by Rop Gonggrijp, with help and contributions from many others* [![](images/M5ez.png)](https://youtu.be/132gvdlwKZw) ## Introduction The M5Stack is a small computer that is a tinkerer's dream. It is based on Espressif's ESP32 chip (with WiFi and Bluetooth), it has a 320x240 pixel color screen, three buttons, a speaker, an SD slot and it allows you to stack boards below it, each in their own plastic enclosure. The makers sell boards for GSM, GPS and LoRa (LOng RAnge radio) as well as a motor controller board and an empty experimenter board. The Chinese operation that makes them appears to sell a lot of them and I could get mine off of Amazon in a week. If you like to build things that you can hold in your hand and not just write code for yet another naked-looking board plugged into your USB port, this thing is your friend. On the software side, the easiest way to program these is using the Arduino IDE. M5Stack provides a library which, when you include it, creates an m5 object instance that allows access to the various hardware components in the device. For instance: the display driver is accessible through commands all starting with `m5.lcd.`. Making something that looks good and allows users to interact with it is not simple though: you have to program everything yourself. If you try to make something a little more complex, you quickly get bogged down in figuring out where things go on the display, what state your interface is in, etc etc. In the budding M5Stack community, there have been some initiatives to make it easier to create user interfaces. Most notably a M5Stack forum user named Calin make something called "M5Stack MultiApp" which allows more easy integration of multiple existing programs into one app. His work serves as an inspiration for my work. But as much as you could have multiple programs have a common user interface, creating the programs still was nowhere near simple enough. Enter M5ez, our contribution to making programming on the M5Stack *a lot* easier. We hope you'll enjoy programming with this. ### Other products by M5 M5 is not only making the M5stack anymore. There's now an M5Stick that is an even smaller ESP32 system with a smaller screen, there's the M5 Atom which has no screen and just LEDs, and soon there will be an M5stack Core2 which has a capacitive touch screen. We plan to support some of these devices, the stick support will be rolled out soon. ### Alternatives #### UiFlow Since writing M5ez, there has been another interface toolkit for the M5Stack, called UiFlow. It uses a web-and-cloud-based IDE that can be seen as "blocky" symbols or as python and creates micropython code. UiFlow supports a lot of the hardware sold in conjunction with the M5Stack and is very much geared towards learning and education. That said, building the functionality that comes "packaged" with M5ez would take quite a bit of work with UiFlow. If you have existing things that run on Arduino, like programming in C and/or with the Arduino IDE, then M5ez might be the better choice. Also it is generally easier to create consistent and visually pleasing interfaces in M5ez, and complex things can take surprisingly little work.   ## Getting started M5ez is an Arduino library. To start using it with the Arduino IDE: * Choose Sketch -> Include Library -> Manage Libraries... * Type **`M5ez`** into the search box. * Click the row to select the library. * Click the Install button to install the library. * Repeat this process for the **`ezTime`** library in File -> Examples you will now see an M5ez heading down under "Examples from custom libraries" You'll have your first application on the screen in no time. You can also start with one of the sketches below in the "Menus" section of the documentation. In fact we strongly recommend that you play around with the M5ez demo application, since it is a comprehensive showcase of M5ez's functionality that will give you a good feel for what you can and cannot do with M5ez.   ### If you get `fatal error: ezTime.h: No such file or directory` Note that it says above that you need to install two libraries: *M5ez* and *ezTime*. > Alternatively, you can install M5ez without the time library (and without the on-screen clock), by commenting out `#define M5EZ_CLOCK` in file `m5ez.h` in the M5ez library directory.   ## Structure of documentation You've now seen the [Introduction](https://github.com/M5ez/M5ez#introduction) and [Getting Started](https://github.com/M5ez/M5ez#getting-started) sections of the manual. Below is the [User Manual](https://github.com/M5ez/M5ez#m5ez-user-manual) which lists all the functions of M5ez in detail. At the end there's a [Table of Contents](https://github.com/M5ez/M5ez#table-of-contents) which may be of help finding something. ### Tech Notes Separate from this document, there is a directory [tech_notes](https://github.com/M5ez/M5ez/tree/master/tech_notes) where we keep useful technical notes that may be a bit too obscure or in-depth for a general user manual.   # M5ez User Manual M5ez is a complete system for building appliance-grade interfaces for the M5Stack. It comes with a lot of the common functionality built-in that a programmer would otherwise have to create. While it is very easy to create functional programs — just have a look at the examples that come with the library — the entire library can be a bit overwhelming because of how much it offers. The following is a reference for programmers that want to get the most out of M5ez. It is certainly not necessary to know or fully understand every function, but at some point you probably want to go through this document very quickly to see what M5ez can do for you. If you feel anything is still unclear after reading this document, please file an issue in the repository. I take documentation seriously — if something is not clear in here, it is as much a bug as something that's wrong with the software itself. Pull requests for typos etc. gladly accepted.   ## How it all works As you can see from the examples, the commands that activate M5ez's functionality start with `ez.`. That `ez` refers to an object `ez` that is within the "root namespace" of the sketch. Within it are commands like `ez.msgBox`, but also other objects. For instance: commands that deal with the entire screen are prefixed with `ez.screen.`, WiFi commands start with `ez.wifi.` and so forth. After you include the library with `#include `, those objects all exist. To get things going you then — in the `void setup()` part of your sketch — do `ez.begin()`. This replaces `m5.begin`, which is called from within `ez.begin()`. You still need to `#include ` before `#include ` if you want to use any commands from the m5 library in your sketch.   ## Screen The screen object deals with the entire screen, which consists of an optional header at the top, optional buttons at the bottom and an area called "the canvas" in between. `void ez.screen.clear()` `void ez.screen.clear(uint16_t color)` `uint16_t ez.screen.background()` If you clear the screen, the header and buttons are hidden, the canvas is cleared, and the current background color is set to the color you specify, or to the background color from the current theme (`ez.theme->background`, see the chapter on themes) if you do not specify a color. `ez.screen.background()` will return the currently set background color. If you clear the screen, the header and buttons are hidden, so the canvas takes up the entire screen.   ## Header The header is the bar at the top of the screen. In the default theme it is 30 pixels high and blue, and it has text in font `&FreeSansBold9pt7b`, but all of that can be changed, either by modifying the values in the current theme on the fly or by creating your own theme. ### Showing, hiding, title `void ez.header.show(String title = "")` `void ez.header.title(String title = "")` `bool ez.header.shown()` `void ez.header.clear(bool wipe = true)` `ez.header.show` will show the header, either with the present title or with a new one provided as an argument. `ez.header.title` will merely change the title, but will not change whether the header is displayed or not. `ez.header.shown()` returns true or false depending on whether the header is currently shown, and `ez.header.clear` removes the header, returning the top of the screen to the canvas. If you set `wipe` to false, it will not draw background pixels there. (This may help prevent flicker or add a bit of performance if you're about to clear the canvas anyway.) ### Your own header widgets The clock and WiFi signal strength displayed in the M5ez header are "widgets". You can register your own code to display widgets too. `void ez.header.insert(uint8_t position, String name, uint16_t width, void (*function)(uint16_t x, uint16_t w), bool leftover = false)` `void ez.header.remove(String name)` `uint8_t ez.header.position(String name)` `void ez.header.draw(String name = "")` `ez.header.insert` lets you add your own header widget. The header widget positions start at 0 (the leftmost widget), and `position` specifies t the left of which widget to insert the new one. `name` is just a name you use to refer to your widget. The names `title`, `clock` and `wifi` are reserved for use by M5ez. Exactly one widget can be specified as `leftover`, meaning it gets all the pixels not claimed by any other widgets. By default, this is the widget called "title" that holds the header title. All other widgets must have a width in pixels specified. `function` refers to the name of the function that draws your widget. It must be a function that returns nothing (`void`) and that takes two `uint16_t` arguments: the x position and width of your widget. This function will be called by the header code whenever the header is redrawn. But you can also force a redraw with `ez.header.draw`. For instance: the clock code calls for the `clock` widget to be redrawn every minute, for instance. Note that you would never call your widget draw function directly, because your code doesn't know where all the widgets are within the header. You would only ever call it indirectly using `ez.header.draw("your_widget_name")`, which will then see if the header is currently displayed, and if so lookup x position and width and call your draw function. Your widget draw function has to make sure to stay inside the lines: not lower than `ez.theme->header_height`, not further left than x, not further right than x + w. If you want to be able to use your widget with multiple themes, your code should probably also respect `ez.theme->header_bgcolor` and `ez.theme->header_fgcolor` to make sure things look pretty. `ez.header.position` will return the relative position of an existing header widget, starting with 0 for the leftmost widget, adding one for each further widget. This can be quite useful. For instance, if you want to make sure a widget is insert directly to the left of the title, you can specify `ez.header.insert(ez.header.position("title"), ...`. If you specify `(ez.header.position("title") + 1` your new widget gets inserted directly to the right of the title. As the name implies, `ez.header.remove` removes the widget with the given name.   ## Canvas The "canvas" is M5ez's name for the area between the header and buttons. So if there are no header and no buttons, the canvas is the whole screen. Once they are drawn, the canvas becomes smaller. `void ez.canvas.clear()` Clears the canvas area to the current background color — either the default from the theme or the one specified in the most recent `ez.screen.clear` command. Sets x and y positions for the the next print command to the top left (respecting the currently set left margin). `void ez.canvas.reset()` Reset does everything `ez.canvas.clear()` does, but also turns on text wrap, turns off scrolling, sets the print font and color back to the defaults from the theme and sets the left margin to 0. ### Canvas dimensions Because the canvas size differs when header or buttons are shown, your code can ask for various locations and dimensions of the canvas as follows: `uint8_t ez.canvas.top()` `uint8_t ez.canvas.bottom()` `uint16_t ez.canvas.left()` `uint16_t ez.canvas.right()` `uint8_t ez.canvas.height()` `uint16_t ez.canvas.width()` ### Printing to the canvas The M5ez canvas inherits from the Arduino `Print` object. What that means is that you can use the `print` and `println` functions in just the way you are used to using them. Here's all the different arguments taken by `printf`, `print` and `println`. ``` size_t ez.canvas.printf(const char * format, ...) __attribute__ ((format (printf, 2, 3))); size_t ez.canvas.print(const __FlashStringHelper *); size_t ez.canvas.print(const String &); size_t ez.canvas.print(const char[]); size_t ez.canvas.print(char); size_t ez.canvas.print(unsigned char, int = DEC); size_t ez.canvas.print(int, int = DEC); size_t ez.canvas.print(unsigned int, int = DEC); size_t ez.canvas.print(long, int = DEC); size_t ez.canvas.print(unsigned long, int = DEC); size_t ez.canvas.print(double, int = 2); size_t ez.canvas.print(const Printable&); size_t ez.canvas.print(struct tm * timeinfo, const char * format = NULL); size_t ez.canvas.println(const __FlashStringHelper *); size_t ez.canvas.println(const String &s); size_t ez.canvas.println(const char[]); size_t ez.canvas.println(char); size_t ez.canvas.println(unsigned char, int = DEC); size_t ez.canvas.println(int, int = DEC); size_t ez.canvas.println(unsigned int, int = DEC); size_t ez.canvas.println(long, int = DEC); size_t ez.canvas.println(unsigned long, int = DEC); size_t ez.canvas.println(double, int = 2); size_t ez.canvas.println(const Printable&); size_t ez.canvas.println(struct tm * timeinfo, const char * format = NULL); size_t ez.canvas.println(void); ``` `bool ez.canvas.scroll()` `void ez.canvas.scroll(bool s)` If you turn on scrolling with `ez.canvas.scroll(true)`, M5ez will store what has been printed to the screen, so the contents of the screen can scroll. Note that when the canvas starts scrolling, only the contents placed there with the print functions from above will scroll, everything else will be wiped. So if, for example, you have drawn something with `m5.lcs.fillRect`, it will be gone once you print beyond the last line. You can turn scrolling off with `ez.canvas.scroll(false)`, and you can ask what the present scroll status is with `ez.canvas.scroll()`. >Note on scrolling: for scrolling to work, everything that is printed to the screen is kept in memory. It is only forgotten if it scrolls off the screen or if you clear the canvas or screen. What that means is that if you turn scrolling on and then print and overwrite something lots of times, eventually the memory will fill up and your application will crash. `bool ez.canvas.wrap()` `void ez.canvas.wrap(bool w)` `wrap` determines whether the excess from the print functions that doesn't fit the current line is wrapped to the next line. `uint16_t ez.canvas.lmargin()` `void ez.canvas.lmargin(uint16_t newmargin)` Ask for and set the left margin for printing. `void ez.canvas.font(const GFXfont* font)` `const GFXfont* ez.canvas.font()` `void ez.canvas.color(uint16_t color)` `uint16_t ez.canvas.color()` Ask for and set the font and color for printing. `uint16_t ez.canvas.x()` `void ez.canvas.x(uint16_t newx)` `uint8_t ez.canvas.y()` `void ez.canvas.y(uint8_t newy)` `void pos(uint16_t x, uint8_t y)` Ask for and set the x and y position for the next print command.   ## Buttons There are only three buttons on the M5Stack. To make sure we can make good use of our rare buttons, we can assign two functions to each button: one for a short press and one for a slightly longer press. We can also assign functions to all three combinations of two keys being pressed simultaneously (AB, BC and AC). So there is a total of nine possible key functions we can assign. The functions for a single key are displayed in the bottom row of the display, the functions for key combinations in a row above. Each key has a 'name' (which is also what is returned to the program if it is pressed and a 'caption', which is what is displayed on the key. ![](images/buttons1.png) Because there are multiple functions that get told what buttons are going to be displayed, it would get a little hairy to give each of these function 18 possible arguments for the key names and captions. So for your convenience, all the keys you want displayed and detected are specified as one string. The different key names and captions are separated with hashes. You can specify one key name like `OK`, which means you will only use the middle button, it will say OK on it and it will also return the string "OK" to your code. If you specify three keys, like `yes # no # maybe` you will get three buttons with only one function per button. If you specify six keys, they will be the short and long presses for each key. If you specify nine, the last three will specify the AB, BC and AC button-combo functions respectively. Specifying any other number of keys does not work, so the string should always contain one, three, six or nine parts, separated by hashes. ![](images/buttons2.png) The captions on the key can differ from the name. To specify this, specify a name, followed by a pipe sign (`|`) followed by the caption. So `one | un # two | deux # three | trois` specifies three keys that each show a number in french but return the number in english. Note that any spaces around the hashes or pipe signs in the string are ignored, to allow you to make things more readable in your code. If your button is captioned `up`, `down`, `left` or `right`, the caption is replaced by a triangle pointing in that direction. If a button has only one function, (no long press defined), the caption will be printed in the middle. If there is a short and a long press defined, they will be printed on the left and right, the right in cyan (in the default theme) to signify that it needs a longer press. *In some cases it may be necessary to define only a long or only a short press action explicitly. In that case, defining a the key with the placeholder "~" will make sure its function is not interpreted. Take the key definition string `~ # up # select # # right # down`: this defines the leftmost key to have the 'up' function, but only with a long press, a short press is ignored. The caption prints on the right side of the button and not in the middle. (One might use this to signify that the user got to the left edge of something she's navigating, not causing the 'up' function to trigger when she keeps pressing short before realising she's at the left edge.)* `void ez.buttons.show(String buttons)` Shows all the buttons you specified, only redrawing the buttons that have changed from the buttons displayed already to prevent flicker. If needed it updates the canvas size to account for a changed number of keyboard rows displayed on the screen. `void ez.buttons.clear(bool wipe = true)` This hides the buttons, growing the canvas to cover the area where the buttons were printed. If you set `wipe` to false, it will not draw background pixels there. (This may help prevent flicker or add a bit of performance if you're about to clear the canvas anyway.) `String ez.buttons.poll()` If you call `ez.buttons.poll`, it will return the name of the key pressed since you last called it, or the empty string is nothing was pressed. This function is where everyone's M5ez programs will spends most of their time: waiting for the user to make things continue. If your code is waiting in a loop that includes `ez.buttons.poll`, clock and WiFi signal updating, as well as execution of user-registered functions (see below) will continue. `String ez.buttons.wait()` `ez.buttons.wait` does the same thing as `ez.buttons.poll()` except it does not return if nothing is pressed. If you call it with no arguments, it assumes the buttons have already been drawn with `ez.drawButtons`. (And if not your program is stuck.) `String ez.buttons.wait(String buttons)` You can specify the keys to be drawn straight into `ez.buttons.wait` for simple usages. For instance `ez.buttons.wait("OK")` will display a single "OK" on the center button and return "OK" when it is pressed. (But given that you are not interested in the return value in this case, you can just specify that as a statement.)   ## Scheduling tasks within M5ez Now that we're dealing with waiting for key presses, this is a good moment to talk about scheduling, yielding and such. As discussed above, a typical program written with M5ez will spend most of its time waiting for keys to be pressed. But some things need to continue to happen while that happening: the clock and the wifi signal indicator need to update, for instance. ### Yield `void ez.yield()` It could be that your code needs to do things that take a little while. If something takes many seconds, consider putting in an "abort" key. But suppose your code is busy and is not using `ez.buttons.poll` or `ez.buttons.wait` to check for keys. In that case use `ez.yield()` in your loop to make sure the clock and WiFi updating (as well as user defined tasks) get executed. `ez.yield` calls the Arduino `yield` function, so you do not need to call that separately. ### Your own events `void ez.addEvent(uint16_t (*function)(), uint32_t when = 1)` `void ez.removeEvent(uint16_t (*function)())` With `addevent` you can register a function of your own to be executed periodically as part of M5ez's own loop when it is waiting for buttons. This function has to be a function that takes no arguments and returns a 16-bit unsigned integer. Make sure you just specify the name of this function without any brackets. You can optionally specify when to run this function by adding a time in `millis()`. By default, the function you specify will run immediately. The value returned by your function is the number of milliseconds to wait before calling the function again. So a function that only needs to run once every second would simply return 1000. If your function returns 0, the event is deleted and not executed any further. > Note: These events are meant for things that need to happen frequently. The next event cannot be more than 65 seconds out as the period between them is a 16-bit unsigned integer. If you use M5ez with ezTime, you can use [ezTime's events](https://github.com/ropg/ezTime#events) for things that need to happen with more time between them. As the name implies, `ez.removeEvent` also removes your function from the loop. #### Redrawing after an event `void ez.redraw()` Sometimes code executed in an event will have changed the contents of the screen. The running menu knows nothing about this, and so when your event ends, it will not refresh the screen. To fix this, you can execute `ez.redraw()` whenever your event routine has done something on the screen. The menu code will then redraw the screen accordingly. #### Changing the menu from an event You can get a pointer to the current menu from inside your event code by calling `M5ez::getCurrentMenu()`. Events are not related to any specific menu, so you may get a pointer to different menus at different times durring the program, or even no menu at all (`nullptr`). If you need to confirm what menu you are dealing with, you can retrieve the title you gave the menu when it was created via `ezMenu::getTitle()`, which returns a `String`. An example of a safe usage pattern is: ```c ezMenu* cur_menu = M5ez::getCurrentMenu(); // Test to see if menu exists before testing menu's title if(cur_menu && cur_menu->getTitle() == "Desired Menu Title") { cur_menu->setCaption(someItem, someCaption); } ``` Note: If a menu item uses a `simpleFunction` or an `advancedFunction` to display a screen which does not display any menu at all (perhaps only the canvas and buttons are rendered), `M5ez::getCurrentMenu()` will still return the last active menu. You can modify this menu even when it's not displayed, and the changes will be evident when you return from the `simpleFunction` or `advancedFunction`.   ## Showing messages with msgBox ![](images/msgBox1.png) ``` String ez.msgBox(String header, String msg, String buttons = "OK", const bool blocking = true, const GFXfont* font = MSG_FONT, uint16_t color = MSG_COLOR) ``` `ez.msgBox` produces a screen that just has your text message centered in the middle. If your message consists of multiple lines, msgBox will word-wrap and justify to the best fit on the screen. You can indicate where to break the lines yourself with a pipe sign (`|`). The only two arguments you have to provide are the header text and the message to be printed. If you do not specify buttons, `ez.msgBox` will put a single "OK" button in the middle. You can specify buttons in the same way it's done with the button commands seen earlier. ![](images/msgBox2.png) By default, msgBox then waits for the user to press any of the keys specified and returns the name of that key. If you want to scan for the keys yourself with `ez.buttons.poll()` (for instance because there are other things your code need to wait for or check) then you can specify `false` with blocking, msgBox will then show the message, header and buttons and exit. The font and color options allow you to use something other than the default (theme determined) defaults for the message printed by msgBox. They act as you would expect, see the section on fonts and colors for details.   ## ezProgressBar **`class ezProgressBar(String header = "", String msg = "", String buttons = "", const GFXfont* font = MSG_FONT, uint16_t color = MSG_COLOR, uint16_t bar_color = PROGRESSBAR_COLOR, bool show_val = false, uint16_t val_color = PROGRESSBAR_VAL_COLOR)`** ![](images/ezProgressBar.png) If you want to show progress on a download or something else, use the `ezProgressBar` class. It behaves very similarly to msgBox, except you need to create a class instance. To create an ezProgressBar instance called pb, one could use: ``` ezProgressBar pb ("This is a header", "Message, just like with msgBox", "Abort"); ``` This will draw header, message, an empty (0 %) progress bar and the specified single "Abort" button. Unlike msgBox this will not block by default. In code that executes after this, one would presumably check for the "Abort" button with `ez.buttons.poll()`. To advance the bar, the code would simply call: ``` pb.value(float val) ``` where `val` is a floating point value between 0 and 100. Check out the [Over-The-Air https update example](https://github.com/M5ez/M5ez/tree/master/examples/OTA_https) to see how the ezProgressBar object is used there. (You'll see that the `ez.wifi.update()` software update function accepts a pointer to an ezProgressBar instance to show its progress.)   ## 3-button text input **`String ez.textInput(String header = "", String defaultText = "")`** This function will provide a text-entry field, pre-filled with `defaultText` if specified. The user can then select a group of letter and then press the letter using the short and long keypresses and multi-key presses as discussed above in the "Buttons" chapter. By using this method, the lower case letters can be reached in two presses, upper case letters in three. If you are in shifted or numeric mode and press lock, the keyboard will return there instead of to lower case after each successful key. Once the user presses "done" (buttons A and C together), the function returns the entered text. ![](images/textInput.png) >Advanced users can make their own keyboard definitions by looking at the `_keydefs` keyboard definition that is part of the default theme. As you can see there are multiple lines, each holding a key definition string like we have gotten to know them by now. Any key whose name is "KB" followed by a number causes nothing to be added to the input but the buttons in that line of the definitions to be printed instead. A key whose name is LCK: optionally followed by a string means that if it is pressed the current keyboard is what the user comes back to after a line is entered. Pressing a key whose name is "Back" returns to that keyboard as well. The string is used to denote the name of that keyboard in the on-screen capslock/numlock message.   ## FACES keyboard support ![](images/FACES.png) `String ez.faces.poll()` `bool ez.faces.on()` M5ez supports the M5 FACES keyboard: simply set the keyboard to "attached" in the M5ez settings menu. When you do, you will be able to use the `ez.faces.poll` function to get the last key pressed on the keyboard. The `textInput` and `textBox` functions will then also look for keys from that keyboard, and start with different key definitions for the M5Stack's own buttons. `ez.faces.on()` can be used to see if the keyboard is set to "attached" in the menu.   ## Composing or viewing longer texts: textBox ``` String ez.textBox(String header = "", String text = "", bool readonly = false, String buttons = "up#Done#down", const GFXfont* font = TB_FONT, uint16_t color = TB_COLOR) ``` This will word-wrap and display the string in `text` (up to 32 kB), allowing the user to page through it. Ideal for LoRa or SMS messages, short mails or whatever else. If a FACES keyboard is attached and `readonly` is false, the user can edit the text: a cursor appears, which can be moved with the arrow keys on the FACES keyboard. `TB_FONT` and `TB_COLOR` are the defaults from the theme, but they can be overridden by supplying a font and/or a color directly. ![](images/textBox.png)   ## Fonts **`void ez.setFont(const GFXfont* font)`** **`int16_t ez.fontHeight()`** Just like when using the `m5.lcd.setFreeFont` function directly, you can specify the FreeFont fonts to `ez.setFont` with a pointer to where they are in flash. M5ez makes it possible to do the same but also use the built-in "pre-FreeFont" fonts that are available. Normally, you would have to pass these as a numeric parameter to `m5.lcd.setTextFont`. M5ez provides a set of "fake pointers" that are treated specially to make this happen, but they can only be used by M5ez functions, not with any of the `m5.lcd` functions. The fontHeight without arguments returns the height of the current font - FreeFont or otherwise - in pixels, without needing to specify which text font like in the `m5.lcd` version. What that all means is that without adding any fonts of your own, you can specify the following fonts: ### FreeFonts from the Adafruit library ``` &TomThumb &FreeMono9pt7b &FreeMono12pt7b &FreeMono18pt7b &FreeMono24pt7b &FreeMonoBold9pt7b &FreeMonoBold12pt7b &FreeMonoBold18pt7b &FreeMonoBold24pt7b &FreeMonoOblique9pt7b &FreeMonoOblique12pt7b &FreeMonoOblique18pt7b &FreeMonoOblique24pt7b &FreeMonoBoldOblique9pt7b &FreeMonoBoldOblique12pt7b &FreeMonoBoldOblique18pt7b &FreeMonoBoldOblique24pt7b &FreeSans9pt7b &FreeSans12pt7b &FreeSans18pt7b &FreeSans24pt7b &FreeSansBold9pt7b &FreeSansBold12pt7b &FreeSansBold18pt7b &FreeSansBold24pt7b &FreeSansOblique9pt7b &FreeSansOblique12pt7b &FreeSansOblique18pt7b &FreeSansOblique24pt7b &FreeSansBoldOblique9pt7b &FreeSansBoldOblique12pt7b &FreeSansBoldOblique18pt7b &FreeSansBoldOblique24pt7b &FreeSerif9pt7b &FreeSerif12pt7b &FreeSerif18pt7b &FreeSerif24pt7b &FreeSerifItalic9pt7b &FreeSerifItalic12pt7b &FreeSerifItalic18pt7b &FreeSerifItalic24pt7b &FreeSerifBold9pt7b &FreeSerifBold12pt7b &FreeSerifBold18pt7b &FreeSerifBold24pt7b &FreeSerifBoldItalic9pt7b &FreeSerifBoldItalic12pt7b &FreeSerifBoldItalic18pt7b &FreeSerifBoldItalic24pt7b ``` ### FreeFonts included by the M5Stack driver ``` &Orbitron_Light_24 &Orbitron_Light_32 &Roboto_Thin_24 &Satisfy_24 &Yellowtail_32 ``` ### Older fonts available only through M5ez ``` mono6x8 sans16 sans26 numonly48 numonly7seg48 numonly75 mono12x16 sans32 sans52 numonly96 numonly7seg96 numonly150 ``` Note that these fonts need to be specified without the `&` in front, and that the second batch consists of scaled up versions of the first batch, but they're nice and big and they still might be quite useful. ### Using your own fonts You can convert your own TrueType fonts to font files that can be included in your project and used on the M5Stack. As a separate project, I wrote a graphical converter where you can test the fonts on a virtual M5Stack display before converting. It's an online tool, so all of the action takes place online and in your web browser. Click [here](https://rop.nl/truetype2gfx/) (or on the image below) to use it. Everything you need to know to use it is on that page also. [![](images/truetype2gfx-screenshot.png)](https://rop.nl/truetype2gfx/)   ## Menus Menus are a way of letting users choose between different options, usually to influence program flow. With ezMenu, you can create a menu, give it some options and run it for the user to choose. An ezMenu can display as a list of options, allowing the user to go up and down the list (possibly scrolling off the screen). Or it can be a set of full-screen (or really full-canvas) images, with the user scrolling left and right before choosing one. They are both instances of the ezMenu object ![](images/ezMenu1.png) ![](images/ezMenu2.png) ### Let's start with text menus To create a menu we create an instance of the `ezMenu` object. By having each menu be it's own instance of that object, we can store information that will disappear from RAM if a submenu closes and we can return to higher menus which have kept their state. let's start with a complete sketch for a very simple text menu: ``` #include #include void setup() { ez.begin(); } void loop() { ezMenu myMenu; myMenu.addItem("Option 1", mainmenu_one); myMenu.addItem("Option 2", mainmenu_two); myMenu.addItem("Option 3"); myMenu.run(); } void mainmenu_one() { ez.msgBox("", "You pressed one"); } void mainmenu_two() { Serial.println("Number two was pressed"); } ``` As you can see we define our menu named `myMenu` and we added three items with names and optional functions to jump to. We have inserted this in the Arduino `loop` function, but we might as well have stuck it in setup, because this menu will keep running forever: the `myMenu.run()` statement will never complete. It will display the menu, call and wait for the appropriate function if the user selects a menu option, rinse and repeat. Which is all fine and well if that's our main menu, but it doesn't work if if the menu is a submenu. This is why the `yourMenu.run()` function exits if the user selects a menu item named "Exit", "Back" or "Done". This may be with a capitalized first letter or all lower case. (Menu items are just like buttons in that they have a name and a caption. If you add an item with `yourMenu.addItem("Exit | Go back to main menu"), it will display the longer text, but still cause the menu to exit. Let's see our sketch again, this time with a submenu added: ``` #include #include void setup() { ez.begin(); } void loop() { ezMenu myMenu("Main menu"); myMenu.addItem("Item 1", mainmenu_one); myMenu.addItem("Item 2", mainmenu_two); myMenu.addItem("Item 3", mainmenu_three); myMenu.run(); } void mainmenu_one() { ez.msgBox("", "You pressed one"); } void mainmenu_two() { Serial.println("Number two was pressed"); } void mainmenu_three() { ezMenu subMenu("Submenu"); subMenu.addItem("Item A"); subMenu.addItem("Item B"); subMenu.addItem("Item C"); subMenu.addItem("Back | Back to main menu"); subMenu.run(); } ``` As you can see, the submenu called `subMenu` has three items that do nothing because we did not supply functions, as well as a fourth item called "Back" (which displays "Back to main menu"), which, when selected, causes `subMenu.run()` to exit, which in turn causes `mainmenu_three` to exit which brings us back to the main menu. The main menu will sit there as if we never left, still showing "Item 3" highlighted. The subMenu object instance meanwhile has gone out of scope when the function exited, neatly cleaning up the RAM it used. > Did you notice we're now providing brackets and an argument when we create the menu. That is the header above our menu. ### `.runOnce()` Until now we have considered menus that run all by themselves, unless they exit when a user selects an option named "Back", "Exit" or "Done". But you can also call `yourMenu.runOnce()` which will exit every time a user selects an option (but still after executing the supplied function or functions). Take a look at this: ``` #include #include void setup() { ez.begin(); } void loop() { ezMenu myMenu("Main menu"); myMenu.addItem("Item 1"); myMenu.addItem("Item 2"); myMenu.addItem("Item 3"); myMenu.runOnce(); if (myMenu.pickName() == "Item 1") { ez.msgBox("", "You pressed one"); } if (myMenu.pickName() == "Item 2") { Serial.println("Number two was pressed"); } } ``` This does exactly the same as the first example we started with. Note that `.runOnce()` returns an integer that holds the position of the item selected. So the following would be yet another way to get the same functionality: ``` #include #include void setup() { ez.begin(); } void loop() { ezMenu myMenu("Main menu"); myMenu.addItem("Item 1"); myMenu.addItem("Item 2"); myMenu.addItem("Item 3"); while (true) { switch (myMenu.runOnce()) { case 1: ez.msgBox("", "You pressed one"); break; case 2: Serial.println("Number two was pressed"); break; } } } ``` ### Image menus ![](images/ezMenu3.png) You can include jpg files in the flash by creating a special .h file that holds byte arrays encoding the bytes in the JPG file. If you `#include` this file in your program and then add at least one menu items with `addItem(picture1, "Item 1")` where `picture1` is the name of the JPG array in the .h file, the menu's `.run()` and `.runOnce()` functions will change behavior: they will show an image menu instead of a text menu. You can also include the images to be shown as files, either on an SD card or on the special SPIFFS partition in the flash memory of the M5Stack. The code in the demo application to show the picture menu looks as follows: ``` void mainmenu_image() { ezMenu images; ... images.addItem(sysinfo_jpg, "System Information", sysInfo); images.addItem(wifi_jpg, "WiFi Settings", mainmenu_wifi); images.addItem(about_jpg, "About M5ez", aboutM5ez); images.addItem(sleep_jpg, "Power Off", powerOff); images.addItem(return_jpg, "Back"); images.run(); } ``` As you can see we simply call `addItem()` with the name of the byte array that holds the encoded JPG file, a name to be used as a caption on the image and a function to be executed. ### Menus: all the functions documented As you will see in the function documentation below, there is much more you can do with menus, like adding and deleting items on the fly. And if you draw different buttons, it's important to know that any button not named "up" or "down" selects the currently highlighted item. You might, for instance, create a button or button combination named "info" that provides more information about the current selection. There is also an advanced function you can pass that has access to more data and that can cause the menu to exit. **`ezMenu yourMenu(String header)`** **`ezMenu yourMenu`** If you issue on of these statements, you are creating an instance of the ezMenu object called "yourMenu". This will allow you to reference it when you start adding items to it, change various properties of it. Eventually your code will run the menu, which means it will display on the screen. "yourMenu" should of course be replaced by any name of your choice, but we'll use it in this text to show all the functions that apply to menus. These functions should be called with the name of the menu followed by a dot in front of them, as they are "member functions" of the ezMenu object. ``` bool addItem(String nameAndCaption, void (*simpleFunction)() = NULL, bool (*advancedFunction)(ezMenu* callingMenu) = NULL, void (*drawFunction)(ezMenu* callingMenu, int16_t x, int16_t y, int16_t w, int16_t h) = NULL) ``` ``` bool addItem(const char *image, String nameAndCaption, void (*simpleFunction)() = NULL, bool (*advancedFunction)(ezMenu* callingMenu) = NULL, void (*drawFunction)(ezMenu* callingMenu, int16_t x, int16_t y, int16_t w, int16_t h) = NULL) ``` ``` bool addItem(fs::FS &fs, String path, String nameAndCaption, void (*simpleFunction)() = NULL, bool (*advancedFunction)(ezMenu* callingMenu) = NULL, void (*drawFunction)(ezMenu* callingMenu, int16_t x, int16_t y, int16_t w, int16_t h) = NULL) ``` Adds items to a menu. The first form adds a text only item, the second and third forms make image menus. You can either supply a pointer to the image which is encoded as a byte array in a special .h file that you should have included, or a file system reference and a path for a file stored on SD of SPIFFS. In the latter case your sketch must do either `#include ` and `SPIFFS.begin()` or `#include ' and 'SD.begin()`, and provide both the SD or SPIFFS object reference as well as the path to the file. The "ImagesSPIFFSorSD" example shows how to use this feature. Images from program flash, SPIFFS and SD-card can be freely mixed in the same menu. The `simpleFunction` should be the name of a `void` function without parameters that will simply be executed as the menu item is picked. You supply the name of the function **without the brackets** here, as you are passing a pointer to the function and not the output of it. The string named `nameAndCaption` can (as the name implies) hold both a name and a caption. If you don't do anything special they are set to the same string you supply. But if you pass `somename | Some caption`, the name is the part before the first pipe sign (`|`), the caption is everything after it. (Spaced around the pipe sign are removed.) The name is what is returned when you call `yourMenu.pickName()` after the menu has ran, and you can also supply it as an argument to `deleteItem()` (see below). The caption is what is printed, either in the item's line in the menu or as a caption with the image in an image menu. The caption is also returned by `yourMenu.pickCaption()`. If you put a tab character (Represented by `\t`) in the caption of a menu item, the text to the left of the tab will be left-aligned to the left of the menu item, and the text to the right of it will be right-aligned to the right of the item. You can see this feature in use in M5ez's settings menu where the part on the right generally represents the actual state of a setting. If an item is named "Back", "Exit" or "Done" (either with first letter capitalized all all lower case), the menu will exit is this item is picked, unless an advancedFunction is supplied (see below). Note that while it has to be *named* one of these three things, it can be *captioned* something completely different. If you want your code to have more access to what just happened in the menu, you can supply an advancedFunction pointer. This way you can have a function that has access to all the member functions of the menu that called it, and it can determine whether the menu exits or not by returning `true` (keep running) or `false` (exit). ``` bool myAdvancedFunction(ezMenu* callingMenu) { Serial.print( callingMenu->pickCaption() ) If (msgBox("Wow...", "Are you sure?", "yes##no") == "yes") return false; return true; } ``` This function will print the caption printed on the menu item that was picked, and it will ask the user whether she really wants to exit the menu, causing the calling menu to exit by returning `false` if she presses yes. Note that items called "Back", "Exit" or "Done" do not cause the menu to exit immediately if they have an advancedFunction set: in that case the decision is left to the advancedFunction. If you want your code to have access to the way the menus are drawn, you can supply an drawFunction pointer. The coordinates x, y, w (width) and h (height) define the rectangle where the menu is located. ``` void myDrawFunction(ezMenu* callingMenu, int16_t x, int16_t y, int16_t w, int16_t h){ m5.lcd.setTextDatum(CL_DATUM); m5.lcd.setTextColor(ez.theme->menu_item_color); // New callingMenu aspect m5.lcd.fillRoundRect(x, y, w, h, 1, TFT_RED); m5.lcd.drawString("New text",x + ez.theme->menu_item_hmargin,y + ez.fontHeight() / 2 - 2); } ``` Note that to address member functions of the calling menu in this function we need to use '->' instead of '.'. That's because we were passed a pointer to the instance, not an instance itself, but don't worry too much if you don't understand that. **`bool deleteItem(int16_t index)`** **`bool deleteItem(String name)`** The first form deletes the menu item at the position indicated, starting with 1 for the first menu item. The second form allows you to delete a menu item by name. Note that this will only delete the first menu item with that name. `deleteItem` will return true if it works, false if the name or index do not point to a valid menu item. **`bool setCaption(int16_t index, String caption)`** **`bool setCaption(String name, String caption)`** As the name implies, changes the caption (but not the name) of the item specified either by position or by name. **`int16_t getItemNum(String name)`** Returns the index in the menu (starting at 1) of the first menu item with the specified name, or 0 if no item with that name exists. **`void buttons(String bttns)`** This allows you to pass your own buttons to the function, using the format discussed in the chapter on buttons earlier in the documentation. By default, a text menu has the buttons `up # select # down` defined while an image menu has `left # select # right`. You can provide your own button layout, moving the buttons or adding functions for long presses or key combinations. Note that there is nothing special about the word "Select". Any button not named "up", "down", "left" or "right" is used to pick the current item, and you can use either an advancedFunction or `.runOnce()` and then a call to `.pickButton()` to figure out which key was pressed. Buttons *captioned* "up", "down", "left" or "right" are displayed with a triangular arrow in the corresponding direction instead of that word. Buttons *named* "Back", "Exit" or "Done" cause the menu to exit. Note that menus without buttons named "up and "down" (text menus) or "left" and "right" (image menus) become impossible to navigate. Buttons named "first" and "last" ump to the first or last item of the menu respectively. **`void upOnFirst(String nameAndCaption)`** **`void leftOnFirst(String nameAndCaption)`** **`void downOnLast(String nameAndCaption)`** **`void rightOnLast(String nameAndCaption)`** These functions allow you to replace the navigation button that would navigate off the menu with something else. Normally this button would just disappear. You can make menu rotate (like the main menu in the demo app) like this: ``` main.upOnFirst("last|up"); main.downOnLast("first|down"); ``` Note that the "first" and "last" are button *names* with special functions, and "up" and "down" are *captions* with special functions (they are replaced by triangle arrows). The first two and last two functions are actually synonyms: they do they same thing, it's just clearer to use the second form when creating an image menu (which is horizontal). **`void txtFont(const GFXfont* font)`** **`void txtBig()`** **`void txtSmall()`** These apply to text menus only. You can set the font. The theme can supply a default big and small menu font, which can be set by simply calling `.txtBig()` or `.txtSmall()` on a menu. In the default theme, the big menu can display 6 items at a time when a header and a single row of button labels is displayed, a small menu displays eight items at a time. You can set your own font with `txtFont` or create a new theme with different defaults. **`void setSortFunction(bool (*sortFunction)(const char* s1, const char* s2))`** Ordinarily, menu items are displayed in the order in which they are added. However, if you are building a menu from data which you have no control over, such as a list of file names from an SD card, a sort function will ensure that the names are displayed in a specific order. You may define a sort function that takes two `const char*`'s and returns true when the second is greater than the first, or use one of the eight built-in sorting functions. ``` bool ascendingCaseSensitive(const char* s1, const char* s2) { return 0 > strcmp(s1, s2); } ... menu.setSortFunction(ascendingCaseSensitive); ``` Once set, the menu is automatically kept sorted. All calls to addItem result in a sorted menu without further interaction. If setSortFunction is called after the menu has been populated, it's immediately resorted and maintained in its new order as items are added and deleted. Note that if your menus use Captions as well as Names, sorting is a bit more complicated. A set of functions is provided for sorting text in most typical manners: | Function | Purpose | | :----------------------------- | :----------------------------------------------------------------------- | | `ezMenu::sort_asc_name_cs` | Sort ascending by menu name, case sensitive | | `ezMenu::sort_asc_name_ci` | Sort ascending by menu name, case insensitive | | `ezMenu::sort_dsc_name_cs` | Sort descending by menu name, case sensitive | | `ezMenu::sort_dsc_name_ci` | Sort descending by menu name, case insensitive | | `ezMenu::sort_asc_caption_cs` | Sort ascending by menu caption or name if no caption, case sensitive | | `ezMenu::sort_asc_caption_ci` | Sort ascending by menu caption or name if no caption, incase sensitive | | `ezMenu::sort_dsc_caption_cs` | Sort descending by menu caption or name if no caption, case sensitive | | `ezMenu::sort_dsc_caption_ci` | Sort descending by menu caption or name if no caption, case insensitive | See the example program SortedMenus for typical usage. --- Then there are some functions that only apply to image menus **`void imgBackground(uint16_t color)`** This sets a temporary background color different from the background from the theme or set manually with `ez.background`. This is so that background between the buttons can match the background of the images displayed. The background will return to its previous setting when the menu exits or runs any of the functions supplied with `addItem`. **`void imgFromTop(int16_t offset)`** The offset in pixels from `canvasTop()` where the top of the image is rendered. **`void imgCaptionFont(const GFXfont* font)`** **`void imgCaptionLocation(uint8_t datum)`** **`void imgCaptionColor(uint16_t color)`** **`void imgCaptionMargins(int16_t hmargin, int16_t vmargin)`** These settings allow for the menu item caption to be printed somewhere on the canvas. The font and color options are obvious, the location is one of | | left | middle | right | | ----|:-----|:-----|:------ | | **top** | `TL_DATUM` | `TC_DATUM` | `TR_DATUM` | | **middle** | `ML_DATUM` | `MC_DATUM` | `MR_DATUM` | | **bottom** | `BL_DATUM` | `BC_DATUM` | `BR_DATUM` | and the margins specify how far away from the edges of the canvas the caption is printed. The default is for no caption to be printed, you must specify all these options if you want captions. **`int16_t runOnce()`** If you execute `yourMenu.runOnce()`, the menu will show and the user can interact with it until an item is picked. Then the function returns the index of the picked item (starting at one). The menu can also 'exit' (which is not the same as the `.runOnce()` function exiting, which happens when an item is picked. * If the user picks an item named "Back", "Exit" or "Done" that does not have an advancedFunction passed. * If the user picks any item using a button named "Back", "Exit" or "Done". * if the advancedFunction that was ran for a picked item returned `false`. In all of the above cases, `.runOnce` will return 0. The index of the item picked will still be returned with `.pick()`, see below. **`void run()`** The internal code for `.run()` is very simple: ``` void ezMenu::run() { while (runOnce()) {} } ``` In other words: all it does is just call `.runOnce()` on your menu until it exits for any of the reasons listed above. If your menu is the main menu of the program, you would simply not supply any items or buttons called "Exit", "Back" or "Done" and have no advancedFunctions ever return `false`. This will cause the menu to run forever. **`int16_t pick()`** **`String pickName()`** **`String pickCaption()`** **`String pickButton()`** These functions will show the position, name and caption of the picked item. They are useful after your menu has been ran once with `.runOnce` or in an advancedFunction (see under `addItem` above).   ## Settings M5ez comes with a number of built-in settings menus. The settings are saved to flash in the `M5ez` section of the ESP32 NVS facility (using the Arduino `Preferences` library). All you need to do is create one menu item that points to `ez.settings.menu` and all settings will be available. By commenting out certain compiler defines, menu items (and all code associated with them) can be disabled. The various menus can also be accessed directly. Here's a quick table of the menus, their `#define` keyword, and their direct access function. | Menu | `#define` | function | |:-----|:----------|:---------| | Wifi menu | `M5EZ_WIFI` | `ez.wifi.menu` | | Battery menu | `M5EZ_BATTERY` | `ez.battery.menu` | | Clock menu | `M5EZ_CLOCK` | `ez.clock.menu` | | Backlight brightness | `M5EZ_BACKLIGHT` | `ez.backlight.menu` | | FACES keyboard | `M5EZ_FACES` | `ez.faces.menu` | | Theme chooser | n/a | `ez.theme.menu` | ### Wifi The wifi menu allows the user to connect to an Access Point. The user can also turn on and off the "autoconnect" feature. With this feature on, M5EZ will behave like most smartphones and automatically connect to any Access Point which has been added to the autoconnect list when it was joined. Note that this doesn't use the `WiFi.setAutoConnect` and `WiFi.setAutoReconnect` functions of the ESP32 WiFi library: they can only connect to one access point. Instead M5ez has it's own logic for connecting, saving the ssid and password of networks you want to automatically connect to in flash. Below you can see how to access the stored networks as well as the stored "on/off" toggle for the autoconnect feature from code. You probably won't need this as `ez.wifi.menu` lets the user manage all of this. Note that if you do make any changes, you have to call `ez.wifi.writeFlash()` when you are done to save them to flash. `std::vector networks` `ez.wifi.networks` is a vector (think of it as an array), that holds all the stored networks after M5ez boots (or `ez.wifi.readFlash()` is executed). Here's a code example to print all the SSIDs and their passwords to the M5ez canvas. ``` for (int8_t n = 0; n < ez.wifi.networks.size(); n++) { ez.canvas.print(ez.wifi.networks[n].SSID); ez.canvas.print(": "); ez.canvas.println(ez.wifi.networks[n].key); } ``` `void ez.wifi.add(String ssid, String key)` `bool ez.wifi.remove(int8_t index)` `bool ez.wifi.remove(String ssid)` Adds or removes a network. the index is the index in te networks array above. `int8_t indexForSSID(String ssid)` Can be used to find the index for a named SSID. -1 is returned if the name is not found. #### The weird Wifi ghost button problem when you connect to Wifi, on some M5Stack devices, you may notice a strange quirk of the M5Stack hardware, or possibly of the ESP32 chip. When you are connected, the left button is getting ghost clicks. If this happens to you when you are on Wifi, you will need to do the following to fix it. Navigate to the Arduino libraries directory, and then from there to `M5Stack/src/utility/Button.cpp`. In that file (around line 60) find ``` pinVal = digitalRead(_pin); ``` and replace that line with: ``` // The digitalRead of the button pin is commented out below. // The two lines below fix an issue where BtnA gets spurious presses if the // Wifi is active. (The second line fixes it, the first remediates resulting // speaker noise.) For details: https://github.com/m5stack/M5Stack/issues/52 // pinVal = digitalRead(_pin); dacWrite(25, 0); pinVal = analogRead(_pin); ``` Now recompile and the problem is gone. It does mean that you cannot use the speaker while `ez.buttons.poll()` is checking for button presses. #### Over-The-Air (OTA) updates via https You might deploy hardware that needs updates but that you don't want to hook up via USB every time. But you will want this upload mechanism to offer some security against attackers that could otherwise compromise large numbers of internet-connected IoT devices. M5ez allows you to boot from a compiled binary file that is downloaded from the internet over https. `bool ez.wifi.update(String url, const char* root_cert, ezProgressBar* pb = NULL)` `String ez.wifi.updateError()` Takes a URL and a root certificate. A shell script called `get_cert` is provided in the `/tools` directory of this repository to get the right (non-forwarded) URL and create an include file to provide the correct certificate. The optional third argument is a pointer to the `ezProgressBar` instance that will show the progress of the firmware download. It must be provided with a leading ampersand. `ez.wifi.update` returns `true` if the file is downloaded and everything is set up. The next reboot - which can be forced with `ESP.restart()` - will start the new binary. If `ez.wifi.update` returns `false`, you can use `ez.wifi.updateError()` to return a String with a human-readable error message. (The way the https stream data is handled by the underlying ESP32 `Update` library does not seem terribly robust: stream timeouts happen, even on otherwise good internet connections.) The [README.rd file of the OTA_https sample sketch](https://github.com/M5ez/M5ez/tree/master/examples/OTA_https) provides a step-by-step recipe that describes how to determine the URL and get the certificate using `get_cert`.   ### BLE BLE, short for [Bluetooth Low Energy](https://en.wikipedia.org/wiki/Bluetooth_Low_Energy). Is intended to provide considerably reduced power consumption and cost while maintaining a similar communication range. We implemented a device manager, so you can just focus on communicate with the target device. You can access it's interface from `ez.ble` , and can get access to connected devices from `ez.ble.getClient` function.   ### Battery The battery menu allows you to selectively show a battery level icon in the header bar. But due to [hardware limitations](https://github.com/m5stack/M5Stack/issues/74) it can only show four different battery levels. You can access its menu from `ez.battery.menu`. The battery level icon is animated while charging via USB.   ### Clock If M5ez is compiled with M5EZ_CLOCK (which it is by default), it will be set up to display a clock in the header bar at the top of the screen. By default this clock displays time in a 24 hour format, but this can be changed in the clock menu, which is also accessible directly via `ez.clock.menu`. The first time M5ez goes online, it will try to look up the timezone using the GeoIP country of the IP address you are connecting to the timezone server from. If this lookup fails or if you are in a country that spans multiple timezones this lookup will fail and an official timezone name will have to be set manually in the menu. (Timezone names are of the from `Continent/Some_City`, see [here](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) for a list of timezone names. Note that the name of the timezone has to be entered in the correct case. If you use M5ez with on-screen clock, your code can also use all the other features of [ezTime](https:://github.com.ropg/ezTime), my full-featured general purpose Arduino time library.   ### Backlight You can set the brightness of the LCD backlight LEDs here. The menu is also directly accessible via `ez.backlight.menu`.   ### FACES keyboard Here you can set whether or not you have a FACES keyboard attached. I would have preferred to detect the keyboard automatically, but that's not easy, so it's solved with a settings menu.   ### Factory defaults This will erase M5ez's NVS flash section and boot, setting all M5ez settings back to their defaults.   ### Adding your own settings You can add your own settings menu. The settings menu object `ez.settings.menuObj` is a regular M5ez menu, and so your own code can, at startup, add its own submenus. To show how, let's see a snippet of M5ez's own code ``` ez.settings.menuObj.addItem("Backlight brightness", ez.backlight.menu); ``` That's how the backlight menu item is added to the menu.   ## Themes ### Including themes In the `setup()` part of your code, you can include themes from the themes directory. If you include multiple themes, the settings menu will show a theme chooser where the user can choose their theme. For instance, the M5ez demo program offers both the 'default' and the 'dark' theme as follows: ``` void setup() { #include #include ez.begin(); } ``` And thus the settings menu offers a "Theme Chooser" option for these two themes: ![](images/theme-default.jpg)     ![](images/theme-dark.jpg) If you include no themes, the default theme is loaded as the only theme. ### Making your own To make your own theme, copy the default theme from the src/themes directory to your sketch directory, rename it and change the values you want to change. The dark theme should give you an idea how to uncomment and change some of the values. Make sure you at least change the 'name' property as that will be displayed in the theme chooser. Now include this file in the `setup()` section of your sketch. Since you're including from the sketch directory and not from a library use quotes and not pointy brackets, like `#include "myTheme.h"`. If you spend some time to create a cool looking theme, please send it along so it can be included for everyone else to use.   ## z-sketches With a simple trick, you can make code that does something pretty on its own, but that can also be included to provide a submenu in a bigger program. If you look at the M5ez-demo program, you will see that its directory includes another sketch named z-sysinfo.ino. This is the same z-sysinfo.ino that can be compiled on its own. (It is in the examples directory.) Normally putting two .ino files in the same directory is a bad idea as the compiler then finds two programs that each have a `setup()` and a `loop()`. But if one of the programs (the "master" program) specifies `#define MAIN_DECLARED` and the slave program has `#ifndef MAIN_DECLARED` and `#endif` around its declaration of `setup()` and `loop()`, it no longer conflicts. This means the master program can call functions from it. As you can see z-sysinfo.ino also uses whether or not `MAIN_DECLARED` is defined to determine whether to provide an "Exit" button. After all: if it is running stand-alone there is nothing to exit to. Also note that you do not need to `#include` any sketches placed in the same directory as your master program: the compiler combines them automatically. That also means you must ensure that no names are declared twice, or otherwise the compiler will complain. > *It's called a z-sketch and starts with a z because that way the Arduino program that turns the .ino files into .cpp files for the compiler looks at it last, which is important. Silly hack, but it is nice to able to write smaller bits of functionality that can be shown and tested individually.*   ## Table of Contents * [`M5ez` The easy way to program on the M5Stack](#m5ez-the-easy-way-to-program-on-the-m5stack) * [Introduction](#introduction) * [Other products by M5](#other-products-by-m5) * [Alternatives](#alternatives) * [UiFlow](#uiflow) * [Getting started](#getting-started) * [If you get `fatal error: ezTime.h: No such file or directory`](#if-you-get-fatal-error-eztimeh-no-such-file-or-directory) * [Structure of documentation](#structure-of-documentation) * [Tech Notes](#tech-notes) * [M5ez User Manual](#m5ez-user-manual) * [How it all works](#how-it-all-works) * [Screen](#screen) * [Header](#header) * [Showing, hiding, title](#showing-hiding-title) * [Your own header widgets](#your-own-header-widgets) * [Canvas](#canvas) * [Canvas dimensions](#canvas-dimensions) * [Printing to the canvas](#printing-to-the-canvas) * [Buttons](#buttons) * [Scheduling tasks within M5ez](#scheduling-tasks-within-m5ez) * [Yield](#yield) * [Your own events](#your-own-events) * [Redrawing after an event](#redrawing-after-an-event) * [Showing messages with msgBox](#showing-messages-with-msgbox) * [ezProgressBar](#ezprogressbar) * [3-button text input](#3-button-text-input) * [FACES keyboard support](#faces-keyboard-support) * [Composing or viewing longer texts: textBox](#composing-or-viewing-longer-texts-textbox) * [Fonts](#fonts) * [FreeFonts from the Adafruit library](#freefonts-from-the-adafruit-library) * [FreeFonts included by the M5Stack driver](#freefonts-included-by-the-m5stack-driver) * [Older fonts available only through M5ez](#older-fonts-available-only-through-m5ez) * [Using your own fonts](#using-your-own-fonts) * [Menus](#menus) * [Let's start with text menus](#lets-start-with-text-menus) * [`.runOnce()`](#runonce) * [Image menus](#image-menus) * [Menus: all the functions documented](#menus-all-the-functions-documented) * [Settings](#settings) * [Wifi](#wifi) * [The weird Wifi ghost button problem](#the-weird-wifi-ghost-button-problem) * [Over-The-Air (OTA) updates via https](#over-the-air-ota-updates-via-https) * [BLE](#ble) * [Battery](#battery) * [Clock](#clock) * [Backlight](#backlight) * [FACES keyboard](#faces-keyboard) * [Factory defaults](#factory-defaults) * [Adding your own settings](#adding-your-own-settings) * [Themes](#themes) * [Including themes](#including-themes) * [Making your own](#making-your-own) * [z-sketches](#z-sketches) * [Table of Contents](#table-of-contents) ================================================ FILE: component.mk ================================================ # # Main Makefile. This is basically the same as a component makefile. # # (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.) COMPONENT_SRCDIRS := src COMPONENT_ADD_INCLUDEDIRS := src ================================================ FILE: examples/Hello_World/Hello_World.ino ================================================ #include void setup() { ez.begin(); } void loop() { ez.msgBox("M5ez minimal program", "Hello World !", "Settings"); ez.settings.menu(); } ================================================ FILE: examples/ImagesSPIFFSorSD/ImagesSPIFFSorSD.ino ================================================ /* * To use this sketch, you need to use the Arduino ESP32 filesystem uploader to upload the * images from the data directory to the SPIFFS partition on your ESP32. See * * https://github.com/me-no-dev/arduino-esp32fs-plugin for the uploader * */ #include #include #include #include "images.h" void setup() { #include #include ez.begin(); SPIFFS.begin(); } void loop() { ezMenu images; images.imgBackground(TFT_BLACK); images.imgFromTop(40); images.imgCaptionFont(&FreeSansBold12pt7b); images.imgCaptionLocation(TC_DATUM); images.imgCaptionColor(TFT_WHITE); images.imgCaptionMargins(10,10); images.addItem(system_jpg, "Settings", ez.settings.menu); // This image comes from images.h file images.addItem(SPIFFS, "/rose.jpg", "Rose"); // This and image below come from SPIFFS images.addItem(SPIFFS, "/galaxy.jpg", "Galaxy"); images.run(); } ================================================ FILE: examples/ImagesSPIFFSorSD/images.h ================================================ #pragma once const char system_jpg[] PROGMEM = { 0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60, 0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x22, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, 0x01, 0x12, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03, 0x05, 0x03, 0x03, 0x03, 0x03, 0x03, 0x06, 0x04, 0x04, 0x03, 0x05, 0x07, 0x06, 0x07, 0x07, 0x07, 0x06, 0x07, 0x07, 0x08, 0x09, 0x0B, 0x09, 0x08, 0x08, 0x0A, 0x08, 0x07, 0x07, 0x0A, 0x0D, 0x0A, 0x0A, 0x0B, 0x0C, 0x0C, 0x0C, 0x0C, 0x07, 0x09, 0x0E, 0x0F, 0x0D, 0x0C, 0x0E, 0x0B, 0x0C, 0x0C, 0x0C, 0xFF, 0xDB, 0x00, 0x43, 0x01, 0x02, 0x02, 0x02, 0x03, 0x03, 0x03, 0x06, 0x03, 0x03, 0x06, 0x0C, 0x08, 0x07, 0x08, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0xFF, 0xC0, 0x00, 0x11, 0x08, 0x00, 0xB5, 0x01, 0x40, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, 0xFF, 0xC4, 0x00, 0x1F, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00, 0x00, 0x01, 0x7D, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xA1, 0x08, 0x23, 0x42, 0xB1, 0xC1, 0x15, 0x52, 0xD1, 0xF0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0A, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xC4, 0x00, 0x1F, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xA1, 0xB1, 0xC1, 0x09, 0x23, 0x33, 0x52, 0xF0, 0x15, 0x62, 0x72, 0xD1, 0x0A, 0x16, 0x24, 0x34, 0xE1, 0x25, 0xF1, 0x17, 0x18, 0x19, 0x1A, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xDA, 0x00, 0x0C, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, 0x3F, 0x00, 0xFE, 0x7F, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xAB, 0x7A, 0x3E, 0x81, 0x7D, 0xE2, 0x1B, 0x9F, 0x27, 0x4F, 0xB2, 0xBB, 0xBE, 0x9B, 0x19, 0xD9, 0x6F, 0x0B, 0x4A, 0xDF, 0x92, 0x82, 0x6A, 0x1B, 0xDB, 0x19, 0xB4, 0xDB, 0xA6, 0x86, 0xE2, 0x19, 0x6D, 0xE6, 0x8C, 0xE1, 0xE3, 0x91, 0x0A, 0xB2, 0x9F, 0x70, 0x79, 0x14, 0xEC, 0xED, 0x70, 0xF3, 0x22, 0xA2, 0x8A, 0x29, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x52, 0x5B, 0x5B, 0x49, 0x79, 0x3A, 0xC5, 0x0C, 0x72, 0x4B, 0x24, 0x87, 0x6A, 0xA2, 0x29, 0x66, 0x63, 0xE8, 0x00, 0xAE, 0xCB, 0x40, 0xFD, 0x9E, 0x3C, 0x5F, 0xE2, 0x06, 0x1B, 0x74, 0x79, 0xEC, 0xD3, 0x38, 0xDD, 0x77, 0xFB, 0x9C, 0x7F, 0xC0, 0x5B, 0xE6, 0xFC, 0x85, 0x69, 0x4E, 0x8D, 0x4A, 0x8E, 0xD4, 0xD3, 0x7E, 0x85, 0xC6, 0x9C, 0xA5, 0xA4, 0x55, 0xCE, 0x26, 0x8A, 0xF6, 0xE8, 0xBF, 0xE0, 0x9F, 0x5F, 0x13, 0x2F, 0xF4, 0x76, 0xBC, 0xB2, 0xD0, 0x6F, 0x2E, 0xD5, 0x53, 0xCC, 0x03, 0xC8, 0x78, 0x96, 0x61, 0xFF, 0x00, 0x4C, 0xD9, 0xC0, 0x0D, 0xFA, 0x57, 0x8D, 0xEB, 0x9A, 0x1D, 0xEF, 0x86, 0x75, 0x7B, 0x8D, 0x3F, 0x51, 0xB3, 0xB9, 0xB0, 0xBE, 0xB3, 0x90, 0xC5, 0x3D, 0xBD, 0xC4, 0x46, 0x39, 0x61, 0x71, 0xD5, 0x59, 0x5B, 0x90, 0x47, 0xA1, 0xAD, 0xB1, 0x18, 0x1C, 0x45, 0x04, 0x9D, 0x68, 0x38, 0xA7, 0xB5, 0xD6, 0xE5, 0xD5, 0xC3, 0xD5, 0xA6, 0x93, 0xA9, 0x16, 0xAE, 0x55, 0xA2, 0x8A, 0x2B, 0x94, 0xC4, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x92, 0xCE, 0xCE, 0x6D, 0x42, 0xEE, 0x2B, 0x7B, 0x78, 0xA4, 0x9E, 0xE2, 0x77, 0x11, 0xC7, 0x1C, 0x6A, 0x59, 0xE4, 0x62, 0x70, 0x14, 0x01, 0xC9, 0x24, 0xF0, 0x00, 0xAF, 0x45, 0xF0, 0x7F, 0xEC, 0x93, 0xE3, 0xCF, 0x18, 0x4B, 0x16, 0xDD, 0x0E, 0x5D, 0x36, 0x29, 0x24, 0xF2, 0xCC, 0x9A, 0x8B, 0x0B, 0x63, 0x19, 0xF5, 0x31, 0x9F, 0xDE, 0x63, 0xE8, 0x87, 0x3D, 0xAB, 0xD8, 0x7F, 0xE0, 0x92, 0x5A, 0x95, 0xAF, 0x85, 0x3F, 0x68, 0x69, 0xB5, 0xE9, 0x34, 0xDB, 0x5D, 0x4A, 0xFA, 0xCE, 0x18, 0xEC, 0xAD, 0x16, 0xE1, 0x03, 0x2C, 0x0D, 0x70, 0xE5, 0x1A, 0x45, 0xC8, 0xE1, 0xB6, 0x82, 0xB9, 0x1F, 0xC2, 0xEE, 0x3B, 0xD7, 0xE9, 0xC6, 0x95, 0xA6, 0xDA, 0x8D, 0x52, 0x4B, 0xB8, 0xEC, 0xED, 0x20, 0x9E, 0xE1, 0x8B, 0xBB, 0x45, 0x10, 0x53, 0xEB, 0x8C, 0xF5, 0xC0, 0xAF, 0xBB, 0xE1, 0x7E, 0x0F, 0x59, 0x95, 0x2F, 0xAC, 0x56, 0x93, 0x51, 0xE9, 0x6F, 0x5B, 0x1F, 0x49, 0x93, 0xE4, 0x4B, 0x17, 0x0F, 0x6B, 0x51, 0xD9, 0x79, 0x1F, 0x9C, 0xFF, 0x00, 0x09, 0xBF, 0xE0, 0x90, 0x5E, 0x24, 0xF1, 0x59, 0x59, 0x35, 0x9B, 0xDB, 0xA8, 0xD4, 0x72, 0xD1, 0xDA, 0xDB, 0xF9, 0x2A, 0x47, 0xAA, 0xCB, 0x36, 0x33, 0xF8, 0x21, 0xAF, 0xA9, 0xFE, 0x0D, 0x7F, 0xC1, 0x1D, 0xFC, 0x0B, 0xE1, 0x37, 0x86, 0x6D, 0x4A, 0xCE, 0xCE, 0xFA, 0x64, 0x4C, 0x17, 0xBB, 0x2F, 0x7C, 0x64, 0xCF, 0x5D, 0xC8, 0xDB, 0x62, 0x07, 0xDC, 0x21, 0xF6, 0xAF, 0xA8, 0xB4, 0x61, 0x8A, 0xEA, 0x74, 0x96, 0xE1, 0x6B, 0xF4, 0x7C, 0x17, 0x04, 0xE5, 0x54, 0x35, 0xE4, 0xE6, 0x7E, 0x7A, 0x9F, 0x55, 0x87, 0xE1, 0xFC, 0x1D, 0x3D, 0x79, 0x6F, 0xEA, 0x72, 0x7F, 0x0F, 0x7F, 0x63, 0xAF, 0x03, 0x78, 0x4F, 0x4A, 0xB7, 0xB1, 0x8B, 0x49, 0x59, 0xED, 0x6D, 0x70, 0x22, 0x81, 0xB1, 0x1C, 0x31, 0xFB, 0x08, 0xE3, 0x0A, 0x9B, 0x7D, 0x88, 0x35, 0x0F, 0xED, 0x0D, 0xFF, 0x00, 0x04, 0xDA, 0xF8, 0x4F, 0xFB, 0x4F, 0x78, 0x1A, 0x4D, 0x27, 0x56, 0xF0, 0xBE, 0x9F, 0xA4, 0xDE, 0xC6, 0xAC, 0x6C, 0xB5, 0x5D, 0x2A, 0x05, 0xB4, 0xBC, 0xB1, 0x72, 0x31, 0xB8, 0x15, 0x00, 0x3A, 0xFA, 0xA3, 0x86, 0x53, 0xD7, 0x19, 0x00, 0x8F, 0x58, 0xD2, 0xEE, 0x15, 0x40, 0xE6, 0xB7, 0x2C, 0xF5, 0x38, 0xE3, 0xEE, 0x2B, 0xE8, 0x25, 0x94, 0xE0, 0x65, 0x49, 0xD1, 0x95, 0x28, 0xB8, 0xB5, 0x6B, 0x59, 0x7F, 0x5F, 0xE4, 0x7A, 0x8F, 0x05, 0x86, 0x70, 0xE4, 0x70, 0x56, 0xF4, 0x3F, 0x9F, 0x6F, 0xDA, 0xF7, 0xFE, 0x09, 0xE5, 0xF1, 0x23, 0xF6, 0x3E, 0xF8, 0x99, 0x36, 0x87, 0xAB, 0x68, 0xB7, 0xDA, 0xC6, 0x97, 0x31, 0x32, 0x69, 0x9A, 0xD6, 0x9F, 0x69, 0x24, 0x96, 0x7A, 0x94, 0x59, 0xE0, 0xE4, 0x03, 0xE5, 0xC8, 0x3A, 0x3C, 0x4C, 0x77, 0x29, 0xE4, 0x6E, 0x52, 0xAE, 0xDC, 0x67, 0x83, 0xBF, 0x65, 0x4F, 0x88, 0x9E, 0x3B, 0x69, 0x3E, 0xC1, 0xE1, 0x3D, 0x59, 0x16, 0x35, 0x0C, 0x64, 0xBC, 0x8C, 0x59, 0xA1, 0x07, 0xD1, 0xA6, 0x2A, 0x1B, 0xE8, 0xB9, 0x35, 0xFD, 0x1F, 0x6B, 0x53, 0x69, 0x3E, 0x22, 0xD2, 0xA4, 0xB1, 0xD5, 0x2C, 0xEC, 0x75, 0x2B, 0x19, 0x86, 0x24, 0xB7, 0xBB, 0x85, 0x26, 0x86, 0x4F, 0xAA, 0x30, 0x20, 0xFE, 0x22, 0xB9, 0x6B, 0x1F, 0x0A, 0x78, 0x27, 0xC0, 0xD2, 0x79, 0xDA, 0x5F, 0x86, 0xFC, 0x3F, 0xA7, 0xCC, 0x3A, 0x49, 0x05, 0x8C, 0x4A, 0xEB, 0xF4, 0x60, 0x32, 0x3F, 0x0A, 0xFC, 0xDF, 0x15, 0xE1, 0xCD, 0x1F, 0x6E, 0xE5, 0x4A, 0xB5, 0xA9, 0xBE, 0x8F, 0x75, 0xE5, 0x7E, 0xBF, 0x87, 0xEA, 0x7C, 0x9D, 0x6E, 0x15, 0xA7, 0xED, 0x2F, 0x0A, 0x96, 0x8F, 0x6E, 0xAB, 0xFC, 0xCF, 0xC6, 0x2F, 0x84, 0xBF, 0xF0, 0x47, 0x7F, 0x88, 0x7F, 0x10, 0xCD, 0xBC, 0x97, 0x52, 0xAC, 0x36, 0xF7, 0x00, 0x15, 0x7B, 0x2B, 0x59, 0x27, 0x4C, 0xF7, 0x56, 0x95, 0xFC, 0xB8, 0xD7, 0x1E, 0xBB, 0x88, 0xCF, 0xAD, 0x7D, 0x23, 0xF0, 0xD7, 0xFE, 0x08, 0x6F, 0xA2, 0x68, 0xB0, 0xC7, 0x37, 0x88, 0x26, 0x59, 0x1F, 0x78, 0x2D, 0xF6, 0xCB, 0xB6, 0x9A, 0x44, 0x23, 0xB8, 0x8E, 0x1D, 0x91, 0x95, 0x3E, 0x8C, 0xE7, 0xDE, 0xBE, 0xFA, 0xF1, 0x37, 0xC5, 0x68, 0x60, 0x0D, 0xFB, 0xC5, 0xFC, 0xFA, 0x57, 0x9C, 0x78, 0xAF, 0xE3, 0x24, 0x6B, 0xBB, 0xF7, 0x9F, 0xAD, 0x7A, 0x18, 0x7E, 0x0F, 0xCA, 0x70, 0xDA, 0xD4, 0xBC, 0xDF, 0x9E, 0xDF, 0x77, 0xFC, 0x13, 0xAA, 0x96, 0x45, 0x81, 0xA5, 0xF1, 0xFB, 0xCC, 0xF3, 0x9F, 0x0A, 0xFE, 0xC1, 0xDF, 0x0D, 0xFE, 0x19, 0xDA, 0x49, 0x1A, 0x5A, 0x79, 0xCB, 0x21, 0xCB, 0xC5, 0x02, 0x2D, 0x94, 0x2E, 0x47, 0x7D, 0xB1, 0x00, 0xD9, 0xFA, 0xB9, 0xAE, 0x82, 0x1D, 0x23, 0xC3, 0x5E, 0x02, 0x19, 0xD1, 0xF4, 0x9D, 0x33, 0x4F, 0x91, 0x53, 0x67, 0x9B, 0x0C, 0x0A, 0x25, 0x65, 0xF4, 0x2F, 0xF7, 0x9B, 0xF1, 0x26, 0xB9, 0x9F, 0x15, 0xFC, 0x65, 0x04, 0x37, 0xEF, 0x47, 0xE7, 0x5E, 0x67, 0xE2, 0x9F, 0x8C, 0x41, 0x8B, 0x6D, 0x91, 0x9F, 0x9C, 0x00, 0xBC, 0xE6, 0xBD, 0x48, 0xE2, 0xB0, 0x58, 0x55, 0x6A, 0x30, 0x51, 0xFC, 0xFE, 0xFD, 0xCE, 0xCF, 0x6D, 0x87, 0xA2, 0xAD, 0x4E, 0x29, 0x1E, 0x99, 0xE2, 0x4F, 0x88, 0x31, 0xA1, 0x6F, 0x9F, 0xF5, 0xAF, 0xCF, 0x7F, 0xF8, 0x2A, 0x96, 0x91, 0xA7, 0xDC, 0x7C, 0x43, 0xF0, 0xDF, 0x88, 0x2D, 0x95, 0x56, 0xF3, 0x56, 0xB5, 0x9A, 0xDA, 0xEB, 0x6A, 0x80, 0x24, 0xF2, 0x0A, 0x6C, 0x73, 0xEA, 0xD8, 0x97, 0x6E, 0x4F, 0x64, 0x51, 0xDA, 0xBE, 0xB0, 0xB0, 0xF0, 0x0F, 0xC4, 0x4F, 0x88, 0x8A, 0x64, 0xD1, 0xFC, 0x29, 0xAB, 0x49, 0x0B, 0x7D, 0xC9, 0xEE, 0x57, 0xEC, 0xD0, 0xBF, 0xD1, 0xE4, 0x2A, 0xAD, 0xF8, 0x35, 0x4F, 0xAE, 0x7F, 0xC1, 0x32, 0xF5, 0x6F, 0x8A, 0xD7, 0xB6, 0x97, 0x3E, 0x36, 0xD4, 0xB4, 0x28, 0x57, 0x4F, 0x46, 0x36, 0xB1, 0xC5, 0x0B, 0xDE, 0x34, 0x6C, 0xFB, 0x77, 0x86, 0x53, 0xB1, 0x7F, 0x85, 0x79, 0xCB, 0x74, 0xE3, 0xDF, 0xCB, 0xCE, 0x30, 0xF8, 0x9C, 0xDB, 0x0A, 0xF0, 0xF4, 0x60, 0xDD, 0xDA, 0x69, 0xB5, 0x64, 0xAC, 0xFB, 0xBF, 0x2B, 0x9C, 0x78, 0xFA, 0x75, 0xB1, 0xB4, 0x5D, 0x28, 0x47, 0x7B, 0x59, 0xF4, 0xFB, 0xFD, 0x0F, 0xC9, 0xEA, 0x2B, 0xF6, 0x23, 0x46, 0xFF, 0x00, 0x82, 0x6F, 0xFC, 0x34, 0xF0, 0xF5, 0xA8, 0x8A, 0xFB, 0x4F, 0xBA, 0xD6, 0x97, 0xCB, 0xD8, 0xF1, 0x4F, 0x39, 0x82, 0x02, 0x7B, 0x90, 0x90, 0xEC, 0x20, 0x7B, 0x16, 0x3F, 0x8D, 0x7C, 0x51, 0xFF, 0x00, 0x05, 0x27, 0xFD, 0x86, 0x34, 0x6F, 0xD9, 0xB2, 0x3D, 0x2F, 0xC5, 0x1E, 0x13, 0x69, 0xA0, 0xF0, 0xFE, 0xAD, 0x74, 0x6C, 0x6E, 0x2C, 0x67, 0x94, 0xCA, 0x6C, 0xEE, 0x0A, 0xB3, 0xA7, 0x96, 0xC7, 0xE6, 0x31, 0xB2, 0xA3, 0xF0, 0xC4, 0x95, 0x29, 0xD4, 0x86, 0x01, 0x7E, 0x1B, 0x35, 0xE0, 0x9C, 0x76, 0x07, 0x0C, 0xF1, 0x53, 0x6A, 0x51, 0x5B, 0xA5, 0xBA, 0xF3, 0xFF, 0x00, 0x86, 0x67, 0xCE, 0xE3, 0x38, 0x7F, 0x13, 0x87, 0xA3, 0xED, 0x9D, 0x9A, 0x5B, 0xF7, 0x47, 0xC9, 0xD4, 0x51, 0x45, 0x7C, 0x71, 0xE0, 0x85, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x1F, 0x4E, 0x7F, 0xC1, 0x30, 0x8E, 0x3E, 0x2A, 0xDD, 0x7F, 0xD7, 0xD6, 0x9F, 0xFF, 0x00, 0xA3, 0x9A, 0xBF, 0x52, 0x74, 0xDB, 0x81, 0x18, 0x5A, 0xFC, 0xB5, 0xFF, 0x00, 0x82, 0x62, 0xB6, 0xDF, 0x8A, 0x57, 0x87, 0xD2, 0xE6, 0xC3, 0xFF, 0x00, 0x47, 0x35, 0x7E, 0x95, 0xDC, 0x6B, 0x02, 0xD6, 0x2F, 0xBD, 0x8C, 0x57, 0xEE, 0x5C, 0x09, 0x2E, 0x5C, 0xAA, 0x2D, 0xF7, 0x7F, 0x9B, 0x3F, 0x44, 0xE1, 0xB7, 0x6C, 0x12, 0xF5, 0x7F, 0x99, 0xDD, 0x5A, 0x6B, 0xC9, 0x07, 0xF1, 0x7E, 0xB5, 0xA3, 0x07, 0x8E, 0x23, 0xB6, 0x1F, 0x7D, 0x7F, 0x3A, 0xF1, 0x0D, 0x73, 0xE2, 0x38, 0xB2, 0xDD, 0x87, 0xAE, 0x53, 0x55, 0xF8, 0xDF, 0x15, 0xA3, 0x36, 0xEB, 0x85, 0x04, 0x1C, 0x60, 0x1C, 0x9F, 0xC8, 0x57, 0xD0, 0x57, 0xCD, 0x23, 0x07, 0x63, 0xD4, 0xA9, 0x8C, 0x51, 0x76, 0x47, 0xD4, 0x27, 0xE2, 0x9C, 0x36, 0xEB, 0xFE, 0xB3, 0xF5, 0xAA, 0xB7, 0x7F, 0x1B, 0x23, 0x88, 0x71, 0x2F, 0xEB, 0x5F, 0x30, 0xE8, 0xDE, 0x3E, 0xD7, 0xBC, 0x73, 0x2E, 0xCD, 0x0B, 0x47, 0xD5, 0xB5, 0x6F, 0x9C, 0x46, 0x5E, 0x08, 0x19, 0xA3, 0x52, 0x7D, 0x58, 0x02, 0x17, 0xF1, 0xC5, 0x77, 0x7E, 0x1E, 0xFD, 0x9B, 0xFE, 0x24, 0x78, 0xB2, 0x37, 0x92, 0xFA, 0x5D, 0x2B, 0xC3, 0xF0, 0xAB, 0x81, 0xB6, 0x79, 0xFC, 0xE9, 0x58, 0x77, 0x20, 0x47, 0xBD, 0x78, 0xF7, 0x2A, 0x7F, 0x9D, 0x71, 0xFD, 0x7F, 0x13, 0x5B, 0xF8, 0x30, 0x6F, 0xD1, 0x7E, 0xA6, 0x1F, 0x59, 0xAB, 0x3F, 0x82, 0x2D, 0x9E, 0x93, 0xAA, 0x7C, 0x7B, 0xD8, 0x1B, 0x12, 0xFE, 0xB5, 0xC7, 0xEB, 0xFF, 0x00, 0xB4, 0x27, 0x9C, 0x4A, 0xAD, 0xC6, 0xF3, 0xE8, 0xA7, 0x35, 0xA3, 0xA3, 0xFE, 0xCA, 0xFE, 0x1D, 0xD2, 0x2E, 0x55, 0xB5, 0xED, 0x77, 0x55, 0xD6, 0x99, 0x0F, 0x0A, 0xB8, 0xB6, 0x88, 0x9E, 0xFC, 0x7C, 0xCD, 0xF9, 0x30, 0xAF, 0x5A, 0xF0, 0x47, 0x85, 0xBC, 0x17, 0xE0, 0xAD, 0x3A, 0x39, 0x34, 0x9F, 0x0E, 0xE9, 0x96, 0xF7, 0x16, 0xC7, 0xF7, 0x77, 0x4D, 0x17, 0x9D, 0x3A, 0x31, 0x07, 0x91, 0x2B, 0xEE, 0x70, 0x4E, 0x0F, 0xF1, 0x7A, 0xD7, 0x7D, 0x1C, 0x87, 0x36, 0xC4, 0x59, 0xCA, 0xD0, 0x4F, 0xBB, 0xBB, 0xFB, 0x96, 0x9F, 0x89, 0xBC, 0x32, 0xFC, 0x65, 0x5D, 0x5D, 0xA2, 0xBE, 0xFF, 0x00, 0xCB, 0xFC, 0xCF, 0x9F, 0x2D, 0xEF, 0xFC, 0x4D, 0xE3, 0xA4, 0x57, 0xD3, 0xF4, 0xCB, 0xE9, 0xA1, 0x99, 0x8A, 0x24, 0xC6, 0x32, 0xB1, 0x13, 0xDF, 0xE7, 0x38, 0x5F, 0xD6, 0xBA, 0x0D, 0x0F, 0xF6, 0x5B, 0xD7, 0xBC, 0x4D, 0x74, 0x91, 0xEB, 0x1E, 0x20, 0xD2, 0x74, 0x56, 0x98, 0x7C, 0x96, 0xFE, 0x61, 0xB8, 0xB9, 0x6F, 0x70, 0x8B, 0x80, 0x47, 0xB8, 0x7A, 0xF5, 0xEB, 0x9B, 0x5B, 0x8F, 0x88, 0xBE, 0x23, 0x8F, 0x48, 0xB1, 0x79, 0x05, 0xC6, 0xA1, 0xBA, 0x14, 0x68, 0xCF, 0xCC, 0x9F, 0x29, 0x25, 0x87, 0xB8, 0x00, 0x9F, 0xC2, 0xBD, 0x6B, 0xFE, 0x09, 0xD7, 0xFB, 0x19, 0x2D, 0xB7, 0xC4, 0x8D, 0x56, 0xD7, 0x59, 0xB0, 0x30, 0xD8, 0xE9, 0xA8, 0x2E, 0x56, 0xE4, 0x03, 0xBA, 0x76, 0x2F, 0x80, 0x8C, 0x0F, 0x73, 0xC9, 0xCE, 0x7A, 0x0E, 0x95, 0xCB, 0xC5, 0x39, 0x7E, 0x03, 0x20, 0xA5, 0x4E, 0xA6, 0x3E, 0x73, 0xAB, 0x29, 0xAF, 0x85, 0x35, 0x15, 0xF7, 0x6A, 0xED, 0xE7, 0x7F, 0xBC, 0xE7, 0xCD, 0xA8, 0x61, 0xB2, 0xE8, 0x46, 0x78, 0x99, 0x4A, 0x6E, 0x5D, 0x15, 0x97, 0xFC, 0x1F, 0xC4, 0xF9, 0x81, 0xBF, 0x65, 0x0F, 0x07, 0xF8, 0x52, 0xFD, 0x53, 0x55, 0x9B, 0x54, 0xD6, 0xAE, 0x23, 0x05, 0x24, 0x49, 0xA4, 0xFB, 0x3C, 0x45, 0xBD, 0x76, 0xA7, 0xCE, 0xA4, 0x7A, 0x17, 0x3E, 0xF9, 0xAF, 0x5B, 0xF8, 0x41, 0xF0, 0xBB, 0x40, 0xD2, 0x74, 0x49, 0xAF, 0xBC, 0x39, 0xE1, 0xED, 0x36, 0x38, 0xF4, 0x86, 0x11, 0x4F, 0x77, 0x6B, 0x6E, 0xB2, 0x4D, 0x6A, 0x5B, 0x20, 0x09, 0xA4, 0x19, 0x75, 0x2D, 0xB5, 0xB1, 0xBC, 0xFC, 0xC0, 0x71, 0x91, 0x5F, 0x73, 0x7E, 0xD7, 0xFF, 0x00, 0xB3, 0x07, 0x87, 0x3E, 0x27, 0x69, 0x3A, 0x0D, 0xD5, 0xAE, 0x8F, 0x63, 0x65, 0xA9, 0x68, 0xF7, 0x01, 0x64, 0xB8, 0x82, 0x32, 0xB3, 0x5E, 0xDB, 0x88, 0x9F, 0x31, 0x39, 0x07, 0xE6, 0xF9, 0x84, 0x64, 0x16, 0x04, 0xA8, 0x56, 0x0A, 0x40, 0x63, 0x5F, 0x32, 0xFE, 0xCF, 0xDF, 0xB1, 0x8E, 0xB1, 0xA8, 0x7E, 0xD5, 0x8B, 0xE2, 0xCF, 0xB6, 0xEA, 0x1A, 0x2E, 0x83, 0xA0, 0xE4, 0xDE, 0x0B, 0x69, 0x1A, 0x1F, 0xED, 0x62, 0x4E, 0x56, 0xCD, 0xB1, 0xC3, 0xC6, 0xCC, 0xA1, 0xA4, 0x52, 0x08, 0xDA, 0x98, 0xF9, 0x59, 0x91, 0x87, 0x8D, 0x2E, 0x38, 0xC8, 0x68, 0x60, 0x29, 0xD6, 0xC1, 0xE1, 0xED, 0x56, 0xF6, 0x94, 0x5E, 0xAD, 0x79, 0xF3, 0x3D, 0x5E, 0xDA, 0x1C, 0x3F, 0xEB, 0x0E, 0x5D, 0x4F, 0x0D, 0x1A, 0x94, 0x69, 0xDA, 0x7D, 0x57, 0x5F, 0xBC, 0xE2, 0xB5, 0x42, 0xAC, 0x1A, 0xB9, 0xAD, 0x5A, 0x3E, 0xB5, 0xEF, 0xDF, 0xB6, 0xCF, 0xC2, 0x1F, 0x0A, 0xFC, 0x18, 0xF0, 0xAA, 0xF8, 0xA2, 0xD2, 0xEA, 0xFE, 0xC6, 0x5B, 0xCB, 0xB5, 0xB7, 0xFB, 0x18, 0x22, 0x4B, 0x72, 0x4A, 0xB3, 0xB3, 0x01, 0x8D, 0xEB, 0x80, 0xA7, 0x80, 0x5B, 0x24, 0x81, 0x81, 0xD6, 0xBE, 0x75, 0xB4, 0xF1, 0x0D, 0x9F, 0x89, 0xF4, 0xA4, 0xBC, 0xB1, 0xB8, 0x8E, 0xEA, 0xDE, 0x4F, 0xE3, 0x43, 0x9C, 0x1E, 0xE0, 0x8E, 0xA0, 0x8E, 0xE0, 0xE0, 0x8E, 0xF5, 0xF5, 0x79, 0x4E, 0x71, 0x86, 0xCC, 0xB0, 0xEB, 0x11, 0x87, 0x7B, 0xF4, 0x7B, 0xAB, 0x7F, 0x5B, 0x9E, 0xE6, 0x0B, 0x1F, 0x4B, 0x17, 0x49, 0x55, 0xA5, 0xF7, 0x3D, 0xCC, 0x3D, 0x61, 0x7E, 0x66, 0xAF, 0x8A, 0x3F, 0xE0, 0xB3, 0x63, 0x1F, 0xB3, 0x2E, 0x8B, 0xFF, 0x00, 0x63, 0x3D, 0xBF, 0xFE, 0x92, 0xDD, 0xD7, 0xDB, 0x1A, 0xC1, 0xF9, 0x9A, 0xBE, 0x28, 0xFF, 0x00, 0x82, 0xCE, 0x9C, 0xFE, 0xCC, 0xBA, 0x27, 0xFD, 0x8C, 0xF6, 0xFF, 0x00, 0xFA, 0x4B, 0x77, 0x5E, 0x77, 0x16, 0x7F, 0xC8, 0xA6, 0xBF, 0xF8, 0x4E, 0x5C, 0xEB, 0xFD, 0xC6, 0xA7, 0xA1, 0xF9, 0x97, 0x45, 0x14, 0x57, 0xF3, 0x99, 0xF9, 0x58, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xF4, 0xC7, 0xFC, 0x13, 0x31, 0xB6, 0xFC, 0x4C, 0xBE, 0x3E, 0x97, 0x16, 0x3F, 0xFA, 0x35, 0xAB, 0xF4, 0x13, 0xC4, 0xBA, 0x99, 0x8A, 0xD9, 0xB9, 0xAF, 0xCF, 0x9F, 0xF8, 0x26, 0x93, 0x6D, 0xF8, 0x8D, 0xA8, 0x9F, 0x49, 0xAC, 0x7F, 0xF4, 0x6B, 0x57, 0xDD, 0xDE, 0x2F, 0xBA, 0xFF, 0x00, 0x46, 0x6E, 0x7B, 0x57, 0xED, 0x1C, 0x1D, 0x2B, 0x65, 0x0B, 0xD5, 0xFE, 0x6C, 0xFB, 0xEC, 0x85, 0xDB, 0x02, 0xBD, 0x5F, 0xE6, 0x71, 0x37, 0xDE, 0x36, 0x8F, 0x44, 0xF1, 0x3D, 0xA5, 0xD5, 0xD5, 0xB2, 0x5F, 0x5B, 0xDB, 0x4C, 0xB2, 0x3D, 0xBB, 0x9F, 0x96, 0x60, 0x0E, 0x76, 0x9F, 0x51, 0xED, 0xDF, 0xA5, 0x7D, 0x0D, 0xE1, 0x4F, 0x87, 0x3E, 0x13, 0xD6, 0x67, 0x87, 0x5E, 0x8B, 0xC3, 0xBA, 0x72, 0xCD, 0xA9, 0x46, 0x97, 0x00, 0x4D, 0x10, 0x97, 0xCA, 0xDC, 0xA0, 0xFC, 0xA1, 0xB2, 0x01, 0x19, 0xEA, 0x06, 0x7D, 0xEB, 0xE4, 0xBF, 0x16, 0xCF, 0xBE, 0xFC, 0x2F, 0xB9, 0xAF, 0xAF, 0xBE, 0x19, 0xDC, 0x63, 0xC1, 0x7A, 0x38, 0xCF, 0xFC, 0xB9, 0x43, 0xFF, 0x00, 0xA2, 0xD6, 0xBD, 0xBC, 0x96, 0x94, 0x2A, 0x56, 0x9D, 0x49, 0xAB, 0xB4, 0x7A, 0x39, 0x7C, 0x23, 0x29, 0xCA, 0x52, 0xDC, 0xF4, 0x8D, 0x1A, 0x45, 0x82, 0x28, 0xD1, 0x42, 0xAC, 0x68, 0x30, 0xAA, 0xA3, 0x01, 0x47, 0xA0, 0x15, 0xB5, 0x3D, 0xD7, 0xFA, 0x03, 0x61, 0x87, 0x4F, 0x5A, 0xF3, 0xFD, 0x4B, 0xC5, 0x2B, 0xA4, 0x5B, 0x6E, 0xDD, 0xFA, 0xD7, 0x2F, 0x7D, 0xF1, 0xB1, 0x62, 0x76, 0x8C, 0x4D, 0xED, 0xD2, 0xBE, 0xDF, 0x0D, 0x42, 0x53, 0x7E, 0xE9, 0xEE, 0xD3, 0x8B, 0x7B, 0x1A, 0xBE, 0x29, 0xBE, 0x8A, 0x6D, 0x7E, 0xDD, 0x6E, 0xEF, 0x3E, 0xC5, 0x6A, 0xF2, 0x05, 0x96, 0x72, 0x86, 0x41, 0x0A, 0xE7, 0x05, 0xB6, 0x8E, 0x4E, 0x2B, 0xED, 0x5F, 0x80, 0xFF, 0x00, 0x0F, 0xFC, 0x1F, 0xE1, 0xAF, 0x86, 0x66, 0xE3, 0x54, 0xFB, 0x0C, 0xDE, 0x17, 0x92, 0x20, 0xD3, 0x4D, 0x29, 0x13, 0x0B, 0xEC, 0x8E, 0x08, 0x23, 0xEF, 0x31, 0xED, 0xB7, 0xA1, 0xC6, 0x31, 0x8E, 0x3F, 0x3C, 0xDF, 0x5E, 0xB8, 0xF1, 0xBE, 0xBD, 0x6B, 0x63, 0x63, 0x1B, 0x5C, 0x5D, 0x5D, 0xCA, 0xB1, 0xC5, 0x18, 0xC6, 0x5D, 0x89, 0xC0, 0xEB, 0xC6, 0x3D, 0xCF, 0x00, 0x7B, 0x57, 0xDC, 0xDA, 0x17, 0xC3, 0xAD, 0x37, 0x55, 0xFD, 0x9C, 0xEE, 0x61, 0xD2, 0x75, 0x08, 0x5F, 0x52, 0xF0, 0xF5, 0xC2, 0xCD, 0x7D, 0xA6, 0xAC, 0xA7, 0x74, 0x28, 0xF8, 0x43, 0x2A, 0xA7, 0xF1, 0x26, 0xF2, 0x8B, 0xBC, 0x0F, 0xE3, 0x00, 0xE0, 0x9C, 0x57, 0xCC, 0x78, 0xA5, 0x98, 0x63, 0xB0, 0x79, 0x75, 0x15, 0x86, 0x9F, 0x2C, 0x5B, 0xD6, 0xDA, 0x3B, 0xAD, 0x53, 0xB9, 0xE2, 0xF1, 0x6E, 0x2B, 0x11, 0x47, 0x0B, 0x0F, 0x62, 0xEC, 0x9B, 0xD6, 0xDB, 0x9C, 0x8E, 0xA7, 0xA6, 0x5A, 0xFC, 0x0D, 0xF1, 0xD4, 0xBE, 0x3E, 0xF0, 0x15, 0x95, 0xC5, 0xFD, 0x9D, 0x84, 0xB2, 0x49, 0x6D, 0xA7, 0xDE, 0xFF, 0x00, 0xA5, 0x35, 0x9C, 0x6E, 0x85, 0x1C, 0x38, 0x18, 0x67, 0x4D, 0xAC, 0xC3, 0x70, 0x3B, 0x95, 0x58, 0x64, 0xE4, 0x6F, 0x3F, 0x74, 0x7E, 0xCE, 0xFE, 0x3F, 0x83, 0xE2, 0x2F, 0x80, 0x6C, 0x75, 0xA3, 0xE1, 0x0D, 0x4B, 0xC1, 0x7A, 0x8E, 0xA1, 0xFF, 0x00, 0x1F, 0x9A, 0x7D, 0xF3, 0x23, 0xC8, 0xA5, 0x73, 0xB5, 0x95, 0x97, 0xE6, 0xD8, 0x77, 0x1E, 0x24, 0x54, 0x7C, 0x83, 0xF2, 0xE3, 0x6B, 0x1F, 0xCF, 0xFF, 0x00, 0x87, 0x1F, 0x13, 0xE4, 0xF0, 0xA7, 0x8A, 0x7E, 0xC7, 0x70, 0xCC, 0x9F, 0x3E, 0x39, 0x3D, 0x79, 0xFF, 0x00, 0x3E, 0xDF, 0x5A, 0xFB, 0x9B, 0xF6, 0x77, 0xF1, 0x19, 0xF1, 0x25, 0x84, 0x3E, 0x58, 0xDD, 0xF2, 0x8A, 0xFC, 0x2B, 0x3C, 0xE2, 0x4C, 0x76, 0x6F, 0xEC, 0xE5, 0x8F, 0x97, 0x34, 0xA0, 0xB9, 0x53, 0xEB, 0x6F, 0x3E, 0xE7, 0xE7, 0xF9, 0x86, 0x6B, 0x88, 0xC6, 0xF2, 0xBC, 0x43, 0xBB, 0x8A, 0xB2, 0x7D, 0x7E, 0x7D, 0xCE, 0xBB, 0xE3, 0x97, 0xC3, 0x7D, 0x27, 0xE3, 0x0F, 0x81, 0xEE, 0xBC, 0x3B, 0xAE, 0x47, 0x75, 0x2E, 0x9B, 0x75, 0x2C, 0x13, 0xB8, 0xB6, 0xBD, 0x96, 0xCE, 0x74, 0x78, 0x66, 0x8E, 0x78, 0xD9, 0x26, 0x85, 0x96, 0x48, 0xD9, 0x64, 0x8D, 0x0E, 0xE4, 0x60, 0x78, 0xEB, 0xCD, 0x53, 0xB5, 0xB3, 0x87, 0x42, 0xD3, 0x23, 0xB5, 0xB7, 0x56, 0x58, 0x61, 0x5C, 0x6E, 0x77, 0x32, 0x3B, 0x9C, 0x63, 0x73, 0xBB, 0x12, 0xCC, 0xC7, 0x8C, 0xB3, 0x12, 0x4E, 0x06, 0x49, 0xAE, 0xCB, 0x58, 0xF0, 0xCD, 0xE5, 0xDC, 0x9B, 0x96, 0x36, 0x6C, 0x7B, 0x1A, 0xE2, 0xFC, 0x5C, 0x64, 0xF0, 0xD5, 0xBC, 0x92, 0xDC, 0xAF, 0x96, 0xAB, 0x92, 0x58, 0xF1, 0x5E, 0x15, 0xF4, 0xB1, 0xE6, 0x9E, 0x1B, 0xFB, 0x5C, 0x7C, 0x2E, 0xBE, 0xF8, 0xCD, 0x25, 0xBE, 0x9A, 0xF6, 0xD0, 0xC7, 0xA7, 0xDA, 0xDA, 0x19, 0x6D, 0xEF, 0x9E, 0xE5, 0x76, 0x2C, 0xCC, 0xE4, 0x48, 0x8E, 0x9D, 0x46, 0x11, 0x62, 0x65, 0x65, 0xDD, 0xBB, 0xF7, 0x80, 0x85, 0x21, 0x3C, 0xCF, 0x9A, 0x7C, 0x2F, 0xFB, 0x28, 0x78, 0x3F, 0xE0, 0x9D, 0x96, 0xB1, 0x1F, 0xDB, 0x2F, 0xB5, 0x2F, 0x10, 0x6B, 0x28, 0xA1, 0xEF, 0x5A, 0x67, 0x8E, 0xD6, 0xCD, 0x94, 0xEE, 0x02, 0x38, 0x01, 0xDA, 0xD9, 0x3F, 0x29, 0x79, 0x03, 0x36, 0x07, 0xCA, 0x23, 0xDC, 0xC0, 0xFB, 0x4F, 0xC7, 0x7F, 0xDA, 0x22, 0xDD, 0x6E, 0x25, 0xB5, 0xB7, 0x91, 0x4C, 0xA3, 0x23, 0xE4, 0x3D, 0x3B, 0x7F, 0x9F, 0xF1, 0xAF, 0x16, 0xF1, 0x7A, 0xEB, 0xBA, 0x97, 0x82, 0xA4, 0xD6, 0x96, 0xD5, 0xCD, 0x8B, 0x4C, 0xD0, 0x19, 0xF7, 0x0F, 0x94, 0x80, 0x09, 0xC0, 0xCE, 0x7A, 0x30, 0xE7, 0xA7, 0x26, 0xBD, 0x5C, 0x9E, 0xB6, 0x25, 0x62, 0xE9, 0xC3, 0x0D, 0x53, 0x91, 0xDD, 0x59, 0xB7, 0x64, 0xBC, 0xDF, 0xF9, 0x75, 0xD8, 0xED, 0xC0, 0xD4, 0xAA, 0xAB, 0x46, 0x34, 0xA5, 0xCA, 0xEF, 0xBD, 0xEC, 0xBF, 0xAF, 0xCC, 0xF3, 0x3F, 0x10, 0x2B, 0x5A, 0xDD, 0xCD, 0x13, 0xED, 0xDF, 0x13, 0x14, 0x6C, 0x1C, 0x8C, 0x83, 0x8E, 0x0D, 0x7C, 0x51, 0xFF, 0x00, 0x05, 0x99, 0x7D, 0xDF, 0xB3, 0x36, 0x89, 0xFF, 0x00, 0x63, 0x3D, 0xBF, 0xFE, 0x92, 0xDD, 0xD7, 0xD8, 0x77, 0xBA, 0x8C, 0x77, 0x51, 0x79, 0x91, 0xC8, 0xB2, 0x23, 0x64, 0x06, 0x53, 0x91, 0xC7, 0x07, 0xF2, 0x35, 0xF1, 0xB7, 0xFC, 0x16, 0x46, 0x5D, 0xFF, 0x00, 0xB3, 0x56, 0x8A, 0x3F, 0xEA, 0x66, 0xB7, 0xFF, 0x00, 0xD2, 0x5B, 0xBA, 0xFD, 0xD3, 0x8A, 0x2F, 0xFD, 0x8F, 0x5F, 0x5B, 0xFB, 0xBF, 0xE4, 0x7E, 0x8F, 0x9C, 0x7F, 0xB8, 0xD4, 0xF4, 0x3F, 0x35, 0x28, 0xA2, 0x8A, 0xFE, 0x75, 0x3F, 0x2B, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3E, 0x92, 0xFF, 0x00, 0x82, 0x6D, 0xBE, 0xCF, 0x88, 0x1A, 0x91, 0xFF, 0x00, 0xA6, 0xB6, 0x5F, 0xFA, 0x35, 0xAB, 0xEE, 0x0F, 0x16, 0xDD, 0x7E, 0xE1, 0xBE, 0x95, 0xF0, 0xDF, 0xFC, 0x13, 0x91, 0xF6, 0x78, 0xF7, 0x53, 0xFF, 0x00, 0xAE, 0x96, 0x7F, 0xFA, 0x31, 0xAB, 0xED, 0x3F, 0x17, 0x5C, 0xFE, 0xE1, 0xF9, 0xF5, 0xAF, 0xD9, 0x38, 0x43, 0xFE, 0x45, 0x0B, 0xD5, 0xFE, 0x6C, 0xFB, 0xDC, 0x8F, 0xFD, 0xC5, 0x7C, 0xFF, 0x00, 0x33, 0xCD, 0x3C, 0x41, 0x3E, 0xFD, 0x59, 0x47, 0xD7, 0xF9, 0x1A, 0xFA, 0xE3, 0xE1, 0xD5, 0xD6, 0x3C, 0x1D, 0xA4, 0x7B, 0x59, 0xC3, 0xFF, 0x00, 0xA0, 0x0A, 0xF8, 0xEF, 0x57, 0x9F, 0x76, 0xB6, 0x9F, 0x56, 0xFE, 0x46, 0xBE, 0xB0, 0xF0, 0x2D, 0xFF, 0x00, 0x91, 0xE0, 0xFD, 0x2D, 0xBD, 0x2C, 0xE2, 0xFF, 0x00, 0xD0, 0x05, 0x7D, 0x0E, 0x43, 0xF1, 0xD4, 0x3D, 0x3C, 0xB7, 0xE2, 0x91, 0xB9, 0xE3, 0x18, 0xE4, 0xBA, 0xB1, 0x62, 0xB9, 0x3C, 0x76, 0x3D, 0x2B, 0x37, 0xF6, 0x75, 0xF8, 0x6C, 0xDE, 0x26, 0xF1, 0xEC, 0xD3, 0x4D, 0x12, 0xDC, 0x44, 0x9F, 0xB9, 0x54, 0x75, 0xDC, 0xAC, 0x5B, 0xA8, 0x20, 0xFB, 0x7F, 0x33, 0x59, 0xDE, 0x29, 0xF8, 0x93, 0x15, 0x85, 0xBB, 0x29, 0x65, 0xFA, 0x9A, 0xE4, 0xBE, 0x1D, 0xFE, 0xD1, 0x1A, 0xEF, 0xC3, 0x0F, 0x89, 0x36, 0x3A, 0x97, 0x86, 0x42, 0x5D, 0x5E, 0x79, 0xCA, 0x3E, 0xC5, 0x24, 0x46, 0x68, 0x6F, 0x8E, 0xE1, 0x88, 0xD9, 0x01, 0x04, 0xE7, 0xA0, 0x2A, 0x43, 0x0C, 0xF0, 0x46, 0x6B, 0xEB, 0xEA, 0x7D, 0x66, 0x58, 0x4A, 0x90, 0xC2, 0xB4, 0xA6, 0xD3, 0xE5, 0x6F, 0x6B, 0xF4, 0x3D, 0x6A, 0x8E, 0xA7, 0xB2, 0x92, 0xA5, 0xF1, 0x5B, 0x4F, 0x53, 0xF4, 0xDF, 0xE0, 0xC7, 0xEC, 0xAF, 0xE1, 0xFF, 0x00, 0x84, 0x86, 0xD6, 0xE9, 0x24, 0x7F, 0x2E, 0xF6, 0x2F, 0x32, 0x7D, 0x32, 0x45, 0x59, 0x22, 0x4C, 0xF6, 0x04, 0xF2, 0x01, 0x1F, 0xC2, 0x73, 0x8F, 0x5C, 0x10, 0x07, 0x47, 0x67, 0xF0, 0x23, 0xC2, 0x7A, 0x07, 0x8C, 0x75, 0x2D, 0x63, 0x47, 0xB7, 0xBA, 0xB7, 0xFB, 0x74, 0x22, 0x28, 0x6D, 0xE7, 0xB8, 0xFB, 0x42, 0xD9, 0x13, 0x9F, 0x30, 0xC6, 0xC5, 0x43, 0x7C, 0xE3, 0x6A, 0x8C, 0x92, 0xC0, 0x07, 0x1B, 0x88, 0x7C, 0x0F, 0x38, 0xD3, 0xFF, 0x00, 0x69, 0xC5, 0xF1, 0x6E, 0xBA, 0xD6, 0xB7, 0x91, 0xFD, 0x97, 0x58, 0x65, 0x2D, 0x25, 0xBA, 0x39, 0x92, 0x30, 0x15, 0x72, 0x7C, 0xB6, 0xC7, 0x2A, 0xAA, 0x3B, 0x80, 0x40, 0x1D, 0x30, 0x33, 0x5B, 0x36, 0x9F, 0x1A, 0x6D, 0xA3, 0x9D, 0x56, 0x49, 0x82, 0xFB, 0x67, 0xF0, 0x3F, 0x95, 0x7F, 0x2F, 0xE6, 0x78, 0x9C, 0x73, 0xAA, 0xE8, 0x63, 0x67, 0x26, 0xE2, 0xED, 0x66, 0xEF, 0x66, 0x8F, 0xC9, 0x71, 0x95, 0xB1, 0x2E, 0x6E, 0x9E, 0x22, 0x4D, 0xB8, 0xF4, 0x6C, 0xE5, 0xFE, 0x2C, 0x7E, 0xC7, 0xDA, 0xC7, 0x8C, 0x35, 0x4F, 0xB6, 0x68, 0x2A, 0xCB, 0x34, 0x67, 0x7F, 0xCA, 0x3A, 0x81, 0xD7, 0xF4, 0xAE, 0xF3, 0xC1, 0xDF, 0xB5, 0xDC, 0x9F, 0xB3, 0xF7, 0xC3, 0xB8, 0xF4, 0x9D, 0x0F, 0x4F, 0xB3, 0xBA, 0xD7, 0xA3, 0x4D, 0xB3, 0xDE, 0xDD, 0x65, 0xE1, 0x81, 0x87, 0x1C, 0x28, 0x20, 0xBB, 0x75, 0xE4, 0x90, 0x07, 0x1F, 0x7B, 0x90, 0x36, 0xBE, 0x30, 0x7E, 0xD2, 0xD1, 0x78, 0x13, 0xE0, 0x58, 0xB3, 0xD1, 0xE5, 0x68, 0xF5, 0x7F, 0x12, 0x66, 0xDC, 0x5C, 0x2F, 0x0D, 0x6D, 0x00, 0x1F, 0xBD, 0x65, 0x3D, 0x98, 0xE5, 0x54, 0x1E, 0xA0, 0x39, 0x20, 0x82, 0x01, 0xAF, 0x8E, 0x3C, 0x69, 0xE3, 0xA8, 0xF4, 0xDB, 0x07, 0x1B, 0xFE, 0x62, 0x3A, 0x66, 0xBE, 0xEF, 0x81, 0xB8, 0x46, 0x8E, 0x36, 0x1F, 0x5E, 0xC6, 0xAE, 0x68, 0xDE, 0xD1, 0x8F, 0x47, 0x6D, 0xDB, 0xF2, 0xBE, 0x89, 0x79, 0x3B, 0xE8, 0x7D, 0x1F, 0x0E, 0xE4, 0x74, 0xEB, 0xC7, 0xEB, 0x38, 0x85, 0x78, 0xF4, 0x5D, 0xED, 0xD5, 0xFF, 0x00, 0x97, 0xDE, 0x74, 0xBF, 0x17, 0x3F, 0xE0, 0xA7, 0x3F, 0x1A, 0xF4, 0x7F, 0x11, 0xFF, 0x00, 0x68, 0x5A, 0xF8, 0xFE, 0xFE, 0xDE, 0x58, 0xA4, 0xDC, 0xB1, 0x47, 0x69, 0x6A, 0xB6, 0xF8, 0x18, 0xF9, 0x4C, 0x5E, 0x56, 0xC2, 0x3B, 0x72, 0xA7, 0x3D, 0xF3, 0xCD, 0x7D, 0x29, 0xE0, 0x6F, 0xDB, 0x73, 0x58, 0xFD, 0xA9, 0xFE, 0x1D, 0x5F, 0x78, 0x57, 0x56, 0xB0, 0x81, 0x7C, 0x71, 0x6B, 0x68, 0x2E, 0xED, 0xEE, 0xAD, 0x63, 0xF2, 0xA1, 0xD5, 0x6D, 0x9B, 0x00, 0x3E, 0xCE, 0x76, 0x48, 0xA5, 0x94, 0x30, 0x1C, 0x1D, 0xDB, 0x94, 0x00, 0x18, 0x0F, 0xCC, 0xCB, 0xE8, 0xB5, 0x1F, 0x8C, 0x5F, 0x12, 0x34, 0xAF, 0x0D, 0xE8, 0xB1, 0xBD, 0xD6, 0xA7, 0xAE, 0x5E, 0xC5, 0x63, 0x6B, 0x1A, 0x02, 0xDB, 0xA4, 0x91, 0xC2, 0x83, 0xEC, 0x01, 0x39, 0x27, 0xA0, 0x00, 0x9E, 0x82, 0xBF, 0x49, 0x3F, 0x67, 0x8F, 0x84, 0x51, 0x7C, 0x2D, 0xFD, 0xB4, 0x3C, 0x3B, 0x37, 0x96, 0xD1, 0xE9, 0x7A, 0x5D, 0x85, 0xE4, 0x12, 0x99, 0x3A, 0x18, 0xC5, 0x9C, 0xA8, 0x9B, 0xBF, 0xE0, 0x7E, 0x5F, 0xE3, 0x5F, 0x43, 0xE2, 0x76, 0x57, 0x96, 0x61, 0xB0, 0x14, 0x5D, 0x0A, 0x71, 0x85, 0x4B, 0xFD, 0x94, 0x95, 0xD7, 0x9D, 0xAD, 0x7F, 0x2F, 0x99, 0xE8, 0x71, 0x5E, 0x13, 0x09, 0x4F, 0x0D, 0x07, 0x4E, 0x2A, 0x32, 0xBF, 0x44, 0x96, 0x9F, 0x23, 0x8A, 0xF0, 0x17, 0xEC, 0x99, 0xAC, 0x6A, 0xBE, 0x21, 0x7B, 0xAD, 0x64, 0x49, 0xBB, 0xCC, 0xDC, 0x15, 0x87, 0x41, 0xFE, 0x7F, 0xA5, 0x7B, 0xF6, 0x85, 0xF0, 0x37, 0x4B, 0xB3, 0xF0, 0xE4, 0x9A, 0x6D, 0xE5, 0xAD, 0xBD, 0xC5, 0x9C, 0xC4, 0x19, 0x21, 0x90, 0x65, 0x58, 0x8E, 0x3F, 0xCF, 0xFF, 0x00, 0x5A, 0xB7, 0x3C, 0x7D, 0xF1, 0x97, 0x4A, 0xB0, 0xD5, 0xA7, 0x5B, 0x76, 0x8D, 0x42, 0xE7, 0xEE, 0xD7, 0x86, 0xFE, 0xD0, 0x5F, 0xB6, 0xB3, 0x7C, 0x34, 0x8A, 0x1B, 0x6D, 0x36, 0xCE, 0x2B, 0xED, 0x4A, 0xEE, 0x36, 0x91, 0x4C, 0xD2, 0x11, 0x14, 0x03, 0x38, 0x05, 0x94, 0x72, 0xD9, 0x21, 0xB8, 0x04, 0x74, 0xEB, 0x5F, 0x8E, 0x65, 0xF8, 0x1A, 0xF8, 0xCA, 0xF1, 0xC3, 0xE1, 0x95, 0xE4, 0xFE, 0x5F, 0x89, 0xF1, 0x18, 0x5C, 0x35, 0x4A, 0xF5, 0x15, 0x2A, 0x4A, 0xED, 0x9C, 0x0F, 0xFC, 0x14, 0x07, 0xE1, 0x3F, 0x85, 0x3E, 0x14, 0x68, 0x1E, 0x19, 0x6F, 0x0D, 0xE8, 0x3A, 0x4E, 0x8D, 0x26, 0xA1, 0x71, 0x72, 0xD7, 0x4F, 0x67, 0x6C, 0xB1, 0x35, 0xC1, 0x0B, 0x16, 0x37, 0x95, 0x19, 0x6C, 0x64, 0xF5, 0xF5, 0xAF, 0xCA, 0x9F, 0xF8, 0x2C, 0x1C, 0xDE, 0x67, 0xEC, 0xDD, 0xA3, 0x7F, 0xD8, 0xCB, 0x01, 0xFF, 0x00, 0xC9, 0x5B, 0xAA, 0xFB, 0x53, 0xE2, 0xCF, 0xC6, 0x7F, 0x10, 0xFC, 0x5B, 0xD5, 0x85, 0xD6, 0xBD, 0xA9, 0x4F, 0x7A, 0x63, 0xCF, 0x93, 0x11, 0x3B, 0x61, 0xB7, 0x07, 0xA8, 0x44, 0x18, 0x55, 0xEC, 0x33, 0x8C, 0x9C, 0x0C, 0x93, 0x8A, 0xF8, 0x83, 0xFE, 0x0A, 0xE9, 0x3F, 0x99, 0xFB, 0x39, 0x68, 0xE3, 0xFE, 0xA6, 0x38, 0x3F, 0xF4, 0x9A, 0xEA, 0xBF, 0x63, 0xC5, 0x65, 0xF5, 0xB0, 0x3C, 0x35, 0x53, 0x0B, 0x5E, 0x5C, 0xD2, 0x8C, 0x5D, 0xDA, 0xBF, 0x57, 0x7B, 0x6B, 0xD8, 0xFB, 0xBA, 0xD8, 0x69, 0xE1, 0xF2, 0x99, 0x51, 0xA8, 0xEE, 0xD2, 0x7F, 0x8B, 0x3F, 0x3A, 0x28, 0xA2, 0x8A, 0xFC, 0x3C, 0xFC, 0xF0, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFA, 0x2B, 0xFE, 0x09, 0xDA, 0xDB, 0x7C, 0x75, 0xA9, 0xFF, 0x00, 0xD7, 0x4B, 0x3F, 0xFD, 0x18, 0xD5, 0xF6, 0x3F, 0x8B, 0xAE, 0x3F, 0x70, 0xDF, 0x4A, 0xF8, 0xD3, 0xFE, 0x09, 0xE8, 0xD8, 0xF1, 0xDE, 0xA5, 0xFF, 0x00, 0x5D, 0x2C, 0xFF, 0x00, 0xF4, 0x63, 0x57, 0xD8, 0x5E, 0x2F, 0xDD, 0xE5, 0x35, 0x7E, 0xC5, 0xC2, 0x1F, 0xF2, 0x28, 0x5E, 0xAF, 0xF3, 0x67, 0xDE, 0x64, 0x7F, 0xEE, 0x2B, 0xE7, 0xF9, 0x9E, 0x6B, 0xA8, 0xCF, 0x9D, 0x7E, 0x3F, 0x72, 0xDF, 0xC8, 0xD7, 0xD4, 0x5E, 0x19, 0xBA, 0x63, 0xE0, 0xCD, 0x3D, 0x57, 0xFE, 0x7D, 0x22, 0xFF, 0x00, 0xD0, 0x05, 0x7C, 0xAB, 0x7D, 0xB8, 0x6B, 0xD1, 0xE7, 0xD5, 0xBF, 0xF4, 0x13, 0x5F, 0x4E, 0x78, 0x3E, 0xEB, 0x3E, 0x19, 0xD3, 0x87, 0xFD, 0x3A, 0xC5, 0xFF, 0x00, 0xA0, 0x8A, 0xFA, 0x0C, 0x87, 0x49, 0xD4, 0x3D, 0x2C, 0xB7, 0xE2, 0x91, 0xC5, 0x7C, 0x42, 0xB2, 0xB8, 0x94, 0x34, 0x9B, 0x88, 0x8D, 0x14, 0xB1, 0x19, 0xEC, 0x2B, 0xE9, 0x0F, 0xF8, 0x27, 0x4A, 0xBE, 0x85, 0xA9, 0x58, 0xEA, 0x1E, 0x1F, 0xF0, 0x9D, 0xC5, 0xE5, 0xF5, 0xCE, 0x03, 0x6A, 0xDE, 0x47, 0x9A, 0xD1, 0x03, 0x85, 0x60, 0x65, 0xFB, 0xB0, 0xAF, 0x38, 0x3C, 0xA8, 0xE8, 0x4E, 0x7A, 0xD7, 0x8D, 0x78, 0xD5, 0xED, 0x8E, 0x93, 0x3C, 0x6F, 0xD6, 0x68, 0xD9, 0x32, 0x3A, 0x8C, 0x8C, 0x57, 0xB1, 0x7E, 0xC1, 0x5F, 0xB5, 0x57, 0x87, 0xBE, 0x03, 0xFC, 0x09, 0xD7, 0x74, 0x79, 0xB5, 0x6B, 0x77, 0xD7, 0xA4, 0xD4, 0x2D, 0xED, 0xED, 0xAC, 0x4F, 0xCB, 0x3D, 0xD0, 0x6D, 0xF8, 0x68, 0xD7, 0xF8, 0xF9, 0x01, 0x48, 0x5C, 0x90, 0x58, 0x64, 0x72, 0x33, 0x3C, 0x61, 0x8F, 0xCC, 0xA8, 0x60, 0xFF, 0x00, 0xD8, 0x13, 0xB3, 0xD2, 0x56, 0x57, 0x69, 0x7E, 0x7F, 0x33, 0x2C, 0xF3, 0x11, 0x8A, 0xA5, 0x47, 0xFD, 0x9F, 0xAE, 0x8E, 0xCA, 0xED, 0x1F, 0x62, 0xFC, 0x62, 0xF8, 0x5F, 0x6F, 0xF1, 0x57, 0x53, 0xB1, 0xD5, 0x2C, 0xF4, 0x7B, 0x5D, 0x07, 0x5E, 0x48, 0xD9, 0x2F, 0x75, 0x65, 0x9B, 0x61, 0xBB, 0x0C, 0x39, 0x0D, 0x10, 0x1B, 0x59, 0x86, 0x48, 0xDE, 0x7E, 0x62, 0x38, 0x39, 0x00, 0x63, 0x92, 0xB1, 0xF8, 0x2B, 0xE0, 0xEF, 0x0B, 0x5E, 0xC1, 0x37, 0x8A, 0x3C, 0x62, 0xF8, 0x52, 0xBB, 0x92, 0x26, 0x54, 0xDD, 0xEA, 0x32, 0x7D, 0x6B, 0xE7, 0xDF, 0xDA, 0x27, 0xF6, 0x9A, 0xF8, 0x91, 0xE1, 0xFB, 0x98, 0x61, 0xD4, 0x34, 0xAD, 0x57, 0xC3, 0xB0, 0x5F, 0xC6, 0x64, 0xB7, 0x6B, 0x88, 0x5A, 0x3F, 0x39, 0x3A, 0x65, 0x49, 0xE0, 0xE0, 0xF0, 0x71, 0xC8, 0xCF, 0x38, 0xAF, 0x1F, 0xF0, 0xDE, 0xBB, 0xAC, 0x78, 0xDF, 0xC4, 0x09, 0x35, 0xE5, 0xC5, 0xCD, 0xC1, 0x66, 0xC1, 0x2E, 0xF9, 0xE0, 0xE3, 0xFC, 0xFD, 0x4D, 0x7E, 0x05, 0x52, 0x52, 0x94, 0xAF, 0x2D, 0xCF, 0xCE, 0x25, 0x26, 0xDD, 0xD9, 0xF4, 0xE7, 0xED, 0xFD, 0xF1, 0x23, 0xC3, 0x9E, 0x0A, 0xF1, 0xAF, 0x87, 0x2D, 0xFC, 0x2E, 0xD7, 0x1F, 0xD9, 0x2F, 0xA1, 0x46, 0xEB, 0x24, 0xCE, 0xC4, 0x49, 0x2F, 0x9D, 0x30, 0x62, 0x09, 0xFF, 0x00, 0x64, 0x27, 0x4A, 0xF9, 0x17, 0xC7, 0x3F, 0x18, 0x64, 0xD5, 0xE4, 0x68, 0xE2, 0x66, 0x91, 0xE4, 0x3B, 0x40, 0x1D, 0x49, 0x3D, 0x80, 0xAF, 0xBB, 0xAE, 0x7F, 0x66, 0x2D, 0x03, 0xF6, 0xBD, 0xF8, 0x15, 0xA5, 0xE8, 0xBA, 0x85, 0xC7, 0xF6, 0x7F, 0x88, 0x7C, 0x3E, 0x5E, 0x6D, 0x3A, 0xE8, 0xCA, 0xC8, 0x8D, 0xBC, 0x00, 0xF1, 0x48, 0x46, 0x4F, 0x96, 0xFB, 0x53, 0xE6, 0x00, 0x95, 0x2A, 0x08, 0x07, 0x95, 0x6C, 0x3F, 0x83, 0x5F, 0xB1, 0xA6, 0xB1, 0xFB, 0x3F, 0x78, 0x9D, 0x2F, 0x34, 0xDF, 0x86, 0xF6, 0x7F, 0xDA, 0x76, 0xAE, 0x44, 0x5A, 0xAC, 0xDA, 0x95, 0xBD, 0xD3, 0x7A, 0x79, 0x91, 0xBC, 0x92, 0x9F, 0x2F, 0x23, 0xFB, 0xA1, 0x0E, 0x0E, 0x08, 0x1C, 0x8A, 0xFD, 0xB7, 0x85, 0x38, 0xCF, 0x2B, 0xC2, 0x65, 0x30, 0xA7, 0x5E, 0x5C, 0xB5, 0x29, 0xA6, 0xAD, 0x6D, 0xF5, 0x76, 0x6B, 0xD7, 0xAF, 0x99, 0xF7, 0xD9, 0x3E, 0x79, 0x84, 0xA5, 0x82, 0x8C, 0x2A, 0x3B, 0x4A, 0x3A, 0x5B, 0xBF, 0xA1, 0xEE, 0x9F, 0xF0, 0x44, 0x0F, 0xF8, 0x26, 0x05, 0xE7, 0xC3, 0x89, 0x87, 0xC6, 0x3F, 0x89, 0x16, 0x5E, 0x4F, 0x89, 0x2E, 0xAD, 0xDA, 0x1F, 0x0F, 0xE8, 0xB7, 0x0A, 0x3C, 0xCD, 0x26, 0x29, 0x57, 0x0F, 0x73, 0x3A, 0x91, 0x94, 0x9D, 0xD0, 0x94, 0x54, 0xE0, 0xC6, 0x8C, 0xFB, 0x86, 0xF6, 0x02, 0x3F, 0xAE, 0xBE, 0x28, 0xF8, 0x1B, 0xC3, 0x9E, 0x0C, 0xF1, 0x26, 0xA5, 0x7F, 0x1B, 0xDB, 0xFD, 0xB2, 0xEA, 0xDF, 0xC9, 0xE4, 0xF3, 0x08, 0x2C, 0x18, 0x8F, 0xA9, 0x2A, 0xBF, 0x4C, 0x7B, 0x9A, 0xF1, 0xBF, 0x0C, 0xFC, 0x61, 0xF1, 0x37, 0xC3, 0x9F, 0x84, 0x9A, 0xC4, 0xC3, 0x5A, 0xB5, 0x8F, 0x5E, 0x92, 0xC9, 0xD6, 0xDE, 0x3B, 0x76, 0xF3, 0x85, 0xB3, 0x95, 0xEA, 0x58, 0x8C, 0x16, 0x53, 0x9E, 0x00, 0x23, 0x20, 0x1C, 0x9E, 0x95, 0xF9, 0xCB, 0xA4, 0xFF, 0x00, 0xC1, 0x44, 0xBC, 0x63, 0x17, 0x8E, 0x2F, 0xB4, 0xBF, 0x14, 0x5F, 0x5C, 0x4D, 0x34, 0x37, 0x0D, 0xB9, 0xE4, 0x6C, 0xB7, 0x5E, 0x49, 0x27, 0xAE, 0x6B, 0xF2, 0xAE, 0x20, 0xCE, 0xEB, 0xE6, 0x98, 0xD9, 0xE2, 0xAB, 0x3D, 0xF4, 0x4B, 0xA2, 0x4B, 0x64, 0x97, 0xF5, 0xAE, 0xA7, 0xC7, 0x66, 0x58, 0xE9, 0xE2, 0xEB, 0xBA, 0xB3, 0x7E, 0x9E, 0x48, 0xFB, 0xA7, 0xC6, 0x3E, 0x11, 0xB7, 0xBD, 0xBE, 0x9A, 0x44, 0x5D, 0xDE, 0x63, 0x13, 0xC7, 0xA5, 0x79, 0x77, 0xC5, 0x1F, 0xD9, 0xDF, 0x47, 0xF8, 0x93, 0x16, 0x2E, 0x9A, 0x4B, 0x5B, 0xB8, 0x93, 0x6C, 0x57, 0x91, 0x7D, 0xE8, 0xC7, 0x27, 0xE6, 0x07, 0x86, 0x5C, 0x9C, 0xE0, 0xE3, 0xA9, 0xC1, 0x19, 0xAE, 0x1D, 0x3F, 0x6D, 0xF5, 0xD1, 0xB4, 0x4B, 0x79, 0xE2, 0xB3, 0x6D, 0x56, 0x69, 0x8F, 0xFA, 0xA1, 0x37, 0x94, 0x11, 0x71, 0xF7, 0x8B, 0x6D, 0x6E, 0x73, 0x8E, 0x31, 0xF8, 0xF1, 0x5C, 0xA7, 0xC6, 0x1F, 0xF8, 0x28, 0x0D, 0x8E, 0xA7, 0xF0, 0xE7, 0x54, 0xD3, 0x8D, 0x9A, 0xE8, 0x77, 0xD7, 0xF1, 0x79, 0x1F, 0x68, 0x6B, 0xD5, 0x93, 0xCA, 0x43, 0xC3, 0xE0, 0x05, 0x07, 0x71, 0x5D, 0xC0, 0x7A, 0x67, 0x3D, 0xAB, 0xD1, 0xC8, 0xB2, 0x3C, 0xE1, 0xCE, 0x9E, 0x3B, 0x09, 0x17, 0x18, 0xDF, 0x49, 0x5D, 0x24, 0x95, 0xEC, 0xDB, 0x4D, 0xDD, 0xAE, 0xFA, 0x6A, 0x75, 0xE5, 0xB9, 0x7E, 0x3B, 0x9A, 0x38, 0x8A, 0x0B, 0x95, 0x5F, 0xE2, 0xD3, 0xE7, 0xF2, 0x3C, 0x27, 0xC4, 0x8D, 0x15, 0x86, 0xAD, 0x77, 0x6F, 0x6F, 0x74, 0x97, 0x90, 0xC3, 0x33, 0xC7, 0x1D, 0xC2, 0x02, 0x16, 0x75, 0x04, 0x80, 0xE0, 0x1E, 0x40, 0x23, 0x9F, 0xC6, 0xBE, 0x47, 0xFF, 0x00, 0x82, 0xB1, 0xCA, 0x64, 0xFD, 0x9D, 0xF4, 0x7F, 0xFB, 0x18, 0xA0, 0xFF, 0x00, 0xD2, 0x6B, 0x9A, 0xF4, 0xDF, 0x8A, 0x1F, 0xB6, 0xD7, 0x80, 0x7E, 0x1A, 0x09, 0x16, 0x6D, 0x4A, 0x19, 0xAE, 0x17, 0xA2, 0x07, 0xF9, 0x8F, 0xFC, 0x04, 0x65, 0x8F, 0xE5, 0x5F, 0x17, 0xFE, 0xDA, 0xDF, 0xB6, 0xC9, 0xFD, 0xA4, 0x34, 0xBB, 0x2D, 0x03, 0x4F, 0xB5, 0x58, 0x34, 0x6B, 0x1B, 0xBF, 0xB6, 0xB4, 0xAC, 0x85, 0x5E, 0x69, 0x55, 0x5D, 0x17, 0x68, 0xEA, 0x14, 0x2B, 0xB7, 0x51, 0x92, 0x48, 0xE0, 0x63, 0x9F, 0xD1, 0xB8, 0xB3, 0x3B, 0xC0, 0xC7, 0x2F, 0xAB, 0x86, 0xF6, 0xAA, 0x53, 0x92, 0xB2, 0x4B, 0x5D, 0x7C, 0xEC, 0x7D, 0x56, 0x75, 0x98, 0x61, 0xD6, 0x16, 0x74, 0xB9, 0xD3, 0x93, 0x56, 0xB2, 0x3E, 0x77, 0xA2, 0x8A, 0x2B, 0xF0, 0xD3, 0xF3, 0xB0, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xE8, 0x8F, 0xF8, 0x27, 0x6A, 0x79, 0xBF, 0x12, 0x6E, 0xA3, 0xFF, 0x00, 0x9E, 0x97, 0x16, 0x4B, 0xF9, 0xCA, 0x45, 0x7D, 0xD5, 0xE2, 0xDF, 0x07, 0x30, 0xB7, 0x6F, 0x96, 0xBF, 0x3D, 0x7F, 0x61, 0x7F, 0x12, 0x7F, 0xC2, 0x3D, 0xF1, 0x8F, 0x71, 0x3F, 0x2A, 0xC0, 0xB3, 0x81, 0x9F, 0xBC, 0xD1, 0xCD, 0x1B, 0x01, 0xF9, 0x6E, 0xAF, 0xD4, 0x5F, 0x88, 0xFA, 0x8D, 0x95, 0x9D, 0xBC, 0x8A, 0xBB, 0x49, 0xC6, 0x2B, 0xF7, 0x0F, 0x0F, 0xA9, 0xD3, 0xAB, 0x94, 0xCD, 0x4B, 0xEC, 0xBF, 0xCE, 0xE7, 0xE8, 0x9C, 0x31, 0x18, 0xD4, 0xC1, 0x49, 0x3E, 0x8F, 0xF3, 0x3E, 0x64, 0xF1, 0x76, 0x87, 0xFD, 0x9F, 0x78, 0x64, 0xC7, 0xDD, 0x3F, 0xFD, 0x6A, 0xF6, 0xEF, 0x09, 0x5D, 0x63, 0xC3, 0x9A, 0x7F, 0xFD, 0x7B, 0x47, 0xFF, 0x00, 0xA0, 0x8A, 0xF2, 0x1F, 0x89, 0x5A, 0xBC, 0x77, 0x4F, 0x22, 0xAE, 0x39, 0x23, 0xF9, 0xD7, 0xA7, 0x78, 0x5E, 0x7D, 0x9E, 0x1E, 0xB0, 0xFF, 0x00, 0xAF, 0x78, 0xFF, 0x00, 0xF4, 0x11, 0x5E, 0xD6, 0x5D, 0x18, 0xC6, 0xBC, 0xD4, 0x7C, 0x8F, 0x43, 0x0A, 0x92, 0xAB, 0x24, 0x89, 0x7C, 0x65, 0x6B, 0x25, 0xF5, 0xBF, 0xCB, 0xDC, 0x60, 0xD6, 0x57, 0xC1, 0x2F, 0x14, 0xE9, 0x3F, 0x07, 0x7E, 0x2B, 0xDB, 0xDF, 0x6A, 0x36, 0xEB, 0x36, 0xA0, 0x10, 0xBD, 0x99, 0x95, 0x3E, 0x55, 0x39, 0xC3, 0x32, 0x13, 0xC1, 0x61, 0x9C, 0x71, 0xCA, 0x86, 0xCF, 0x70, 0x6B, 0xA4, 0x49, 0x96, 0x41, 0x86, 0xE6, 0xAB, 0xEB, 0x1E, 0x17, 0xB3, 0xF1, 0x04, 0x30, 0x0B, 0x8B, 0x35, 0xB8, 0x16, 0xF2, 0x89, 0x90, 0x1E, 0x0A, 0xB0, 0xF4, 0x3D, 0xB2, 0x32, 0x3F, 0x1A, 0xF4, 0x71, 0xAB, 0x11, 0x2C, 0x3C, 0xA3, 0x85, 0x69, 0x4E, 0xDA, 0x5D, 0x5D, 0x1D, 0x18, 0x88, 0xD4, 0x74, 0xDF, 0xB1, 0xB7, 0x35, 0xB4, 0xB9, 0xF5, 0x07, 0xC6, 0x1F, 0xDA, 0x43, 0x50, 0xF8, 0xBF, 0xF0, 0x52, 0xCF, 0xC1, 0xB0, 0xD8, 0xDB, 0xCD, 0x0D, 0xFC, 0x91, 0xDE, 0x4D, 0x73, 0x3C, 0x2B, 0x23, 0xC0, 0x17, 0x95, 0x11, 0x12, 0x32, 0x8C, 0x7B, 0xB2, 0xE0, 0x94, 0x25, 0x73, 0xB5, 0x88, 0x3C, 0xF7, 0xC2, 0xEF, 0x85, 0xC9, 0x63, 0x2C, 0x47, 0xCB, 0xF9, 0xFF, 0x00, 0x8B, 0x8E, 0x95, 0x15, 0xBF, 0xC5, 0x6F, 0x07, 0xD9, 0x68, 0xFA, 0x5D, 0xC2, 0x4B, 0x71, 0xF6, 0xEB, 0xED, 0xB1, 0xCF, 0x66, 0x60, 0xDB, 0x25, 0xAC, 0x99, 0xDA, 0xC5, 0x9B, 0x01, 0x0A, 0x74, 0x60, 0x54, 0xF2, 0x18, 0x70, 0x18, 0x32, 0xAF, 0xD0, 0x3F, 0x0D, 0x35, 0x7F, 0x87, 0xBE, 0x32, 0xF0, 0xBC, 0xD6, 0xFA, 0x3D, 0x9D, 0xEB, 0xEB, 0xD6, 0x36, 0xFE, 0x73, 0xDC, 0x25, 0xE1, 0x21, 0xC6, 0xF5, 0x19, 0x78, 0xDB, 0x28, 0x14, 0x33, 0x81, 0xF2, 0x05, 0x6E, 0x46, 0x49, 0xC5, 0x7F, 0x3B, 0x66, 0x19, 0x6E, 0x33, 0x0B, 0x2F, 0xF6, 0xA8, 0x38, 0xDD, 0xBD, 0xD6, 0xFE, 0x9E, 0x5E, 0x7B, 0x76, 0x3F, 0x2D, 0xC5, 0x61, 0x6B, 0xD1, 0x97, 0xEF, 0xA2, 0xD7, 0xA9, 0x6F, 0xC0, 0xF7, 0x72, 0x78, 0x4E, 0xCD, 0x3C, 0xA6, 0x65, 0x38, 0x18, 0x20, 0xF4, 0xAA, 0x7F, 0x15, 0xBE, 0x3B, 0x6A, 0x9A, 0x7E, 0x98, 0xD1, 0xC7, 0x75, 0x22, 0xAE, 0x30, 0x49, 0x23, 0xFC, 0x2A, 0x0F, 0x17, 0xEB, 0xF6, 0x5E, 0x0E, 0xD0, 0xAE, 0x75, 0x0D, 0x4E, 0xE1, 0x2C, 0x6C, 0xED, 0x57, 0x74, 0x92, 0xCB, 0xF2, 0xAA, 0xF6, 0x1C, 0xF7, 0x24, 0x90, 0x00, 0xE4, 0x92, 0x40, 0x19, 0x24, 0x57, 0x9A, 0xFC, 0x53, 0xB7, 0x9E, 0xEF, 0x44, 0xB1, 0xD4, 0xC1, 0x76, 0xB1, 0xD5, 0x03, 0x35, 0xBB, 0xA4, 0x82, 0x4F, 0x30, 0x29, 0x19, 0xC8, 0x53, 0x91, 0xD4, 0x75, 0xC5, 0x79, 0xA7, 0x29, 0xE8, 0x5F, 0x07, 0x7E, 0x27, 0x5D, 0x6B, 0x91, 0x18, 0xEE, 0xAE, 0x1E, 0x4F, 0x34, 0x15, 0xF9, 0x8F, 0x50, 0x7F, 0xCF, 0xD2, 0xBE, 0x6C, 0xFD, 0xB4, 0xFE, 0x09, 0x35, 0x97, 0x8A, 0x24, 0xD6, 0xED, 0x23, 0xF2, 0x55, 0xDB, 0x2E, 0x14, 0x72, 0x5B, 0xD7, 0xFC, 0xF7, 0xAE, 0x17, 0xF6, 0xFF, 0x00, 0xFD, 0xA1, 0x75, 0xAF, 0xD9, 0x8B, 0xF6, 0x2D, 0xD6, 0xB5, 0x4F, 0x0D, 0xDF, 0x5F, 0x68, 0x9A, 0xFE, 0xB5, 0x79, 0x6F, 0xA4, 0x69, 0xFA, 0x84, 0x18, 0x59, 0xAD, 0x9E, 0x46, 0x32, 0x48, 0x54, 0x9C, 0xED, 0x63, 0x0C, 0x53, 0x28, 0x61, 0x82, 0xA5, 0x81, 0x52, 0x08, 0x06, 0xBE, 0x2B, 0xFD, 0x95, 0x3F, 0xE0, 0xB0, 0x5E, 0x34, 0xF8, 0x63, 0x0F, 0xF6, 0x0F, 0xC4, 0xC9, 0xB5, 0x4F, 0x89, 0x1E, 0x13, 0x78, 0xCA, 0x47, 0x2D, 0xE5, 0xC9, 0x9B, 0x57, 0xD3, 0x88, 0x1F, 0x2F, 0x97, 0x3C, 0x87, 0x32, 0x46, 0x38, 0x1E, 0x5C, 0x84, 0xE0, 0x00, 0x15, 0x90, 0x02, 0x0B, 0x5A, 0x82, 0x3D, 0x63, 0xF6, 0xC3, 0xFD, 0xA0, 0x3C, 0x5D, 0xF0, 0x2F, 0xE0, 0xD6, 0x9B, 0xA9, 0x68, 0xB2, 0x43, 0x1A, 0x4F, 0x7C, 0x2C, 0x65, 0x49, 0x8B, 0x65, 0x77, 0x46, 0xEE, 0xAD, 0xC1, 0x04, 0xFD, 0xC6, 0x07, 0x9E, 0xEB, 0x5F, 0x0B, 0xF8, 0xE3, 0xF6, 0x8B, 0xF1, 0xA7, 0xC4, 0x39, 0x9D, 0xB5, 0x2D, 0x7A, 0xF8, 0xA3, 0x31, 0x6F, 0x2E, 0x17, 0xF2, 0x54, 0x67, 0xB7, 0xCB, 0x82, 0x47, 0xFB, 0xC4, 0xD5, 0xAF, 0xDA, 0x3B, 0xF6, 0x8D, 0xD7, 0x3F, 0x69, 0x4F, 0x1F, 0x4D, 0xAC, 0x6A, 0xDB, 0x6D, 0x6C, 0xE3, 0x66, 0x5B, 0x0D, 0x3A, 0x27, 0x26, 0x0B, 0x08, 0xC9, 0xFB, 0xA3, 0xFB, 0xCC, 0x70, 0x37, 0x39, 0x19, 0x62, 0x07, 0x40, 0x15, 0x47, 0x9F, 0xD7, 0x6C, 0xB3, 0x2C, 0x54, 0xA9, 0x46, 0x83, 0xA8, 0xF9, 0x23, 0xA2, 0x57, 0xD0, 0xE8, 0x96, 0x2E, 0xB3, 0x82, 0xA6, 0xE4, 0xEC, 0xBA, 0x5C, 0x56, 0x62, 0xEC, 0x59, 0x89, 0x66, 0x63, 0x92, 0x4F, 0x7A, 0x4A, 0x28, 0xAE, 0x13, 0x9C, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xE9, 0x7E, 0x10, 0xF8, 0xBD, 0x7C, 0x0D, 0xF1, 0x1B, 0x4B, 0xD4, 0xA4, 0x6D, 0xB6, 0xF1, 0xCB, 0xE5, 0xCE, 0x79, 0xC0, 0x8D, 0xC1, 0x56, 0x3C, 0x7A, 0x03, 0x9F, 0xC2, 0xBF, 0x41, 0x6E, 0xFE, 0x30, 0x0B, 0xBF, 0x0C, 0x5A, 0x8B, 0x89, 0x98, 0xCD, 0x1C, 0x42, 0x37, 0x2C, 0xD9, 0x2C, 0x40, 0xC6, 0x7F, 0x1E, 0xBF, 0x8D, 0x7E, 0x6A, 0xD7, 0xAF, 0x7C, 0x2F, 0xFD, 0xA4, 0xE1, 0xD1, 0xFC, 0x39, 0x0E, 0x8F, 0xE2, 0x2B, 0x5B, 0x8B, 0xAB, 0x7B, 0x55, 0x11, 0xC1, 0x71, 0x07, 0xFA, 0xC5, 0x41, 0xC0, 0x56, 0x19, 0x1D, 0x07, 0x19, 0x07, 0x38, 0x18, 0xC1, 0xEB, 0x5F, 0x5D, 0xC2, 0xF9, 0xF2, 0xC1, 0x39, 0xD1, 0xA8, 0xED, 0x19, 0x7E, 0x67, 0xB9, 0x93, 0x66, 0x4B, 0x0F, 0xCD, 0x4E, 0x6E, 0xC9, 0x9F, 0x48, 0x49, 0xE2, 0x43, 0xE2, 0x8D, 0x48, 0xC5, 0x6E, 0xA6, 0x46, 0x2C, 0x14, 0x01, 0xC9, 0x66, 0x27, 0x00, 0x0F, 0xAD, 0x7D, 0x1B, 0x63, 0xA4, 0x43, 0xA0, 0xE9, 0x56, 0xF1, 0x5D, 0x5C, 0xC6, 0xAB, 0x6F, 0x12, 0xA1, 0x62, 0x70, 0x0E, 0x00, 0x1F, 0xD2, 0xBE, 0x02, 0x6F, 0xDB, 0x26, 0xD3, 0xC1, 0xD3, 0x2B, 0x78, 0x6B, 0x46, 0x66, 0x9A, 0x03, 0x98, 0x66, 0xBC, 0x60, 0xAA, 0x8D, 0xFD, 0xED, 0xAA, 0x49, 0x63, 0xE8, 0x4B, 0x03, 0xD0, 0xF5, 0xAE, 0x13, 0xC7, 0x9F, 0xB5, 0x47, 0x8E, 0xBE, 0x22, 0x49, 0x27, 0xDB, 0x75, 0xEB, 0xA8, 0x21, 0x76, 0xDC, 0x22, 0xB4, 0x3E, 0x4A, 0xAF, 0xB0, 0x61, 0xF3, 0x63, 0xD8, 0xB1, 0xAF, 0xAA, 0xA3, 0xC6, 0x78, 0x1C, 0x1F, 0x3C, 0xA2, 0x9D, 0x49, 0x3E, 0xDA, 0x25, 0xEA, 0xDF, 0xE9, 0x73, 0xDA, 0x86, 0x7F, 0x86, 0xA1, 0xCC, 0xD5, 0xE4, 0xDF, 0xDC, 0x7E, 0x86, 0xF8, 0xEB, 0xF6, 0x90, 0xF0, 0x4F, 0xC2, 0xF8, 0x59, 0xB5, 0x0D, 0x5E, 0xD1, 0x24, 0x51, 0x90, 0x86, 0x41, 0xB9, 0xBE, 0x83, 0xA9, 0xFC, 0x01, 0xAF, 0x0E, 0xF8, 0x8B, 0xFF, 0x00, 0x05, 0x4E, 0xD3, 0x6C, 0x16, 0x48, 0x7C, 0x39, 0xA5, 0xDC, 0x5E, 0xBA, 0x9C, 0x2C, 0x8E, 0x3C, 0x98, 0xD8, 0x7A, 0xE4, 0xFC, 0xDF, 0xF8, 0xED, 0x7C, 0x45, 0x2C, 0xCD, 0x3C, 0xAD, 0x23, 0xB3, 0x3B, 0xB9, 0x2C, 0xCC, 0xC7, 0x25, 0x8F, 0xA9, 0x34, 0xDA, 0xF0, 0xF1, 0xFE, 0x20, 0xE6, 0x35, 0xBD, 0xDA, 0x09, 0x53, 0x5E, 0x5A, 0xBF, 0xBD, 0xFF, 0x00, 0x91, 0xE6, 0xE2, 0x78, 0x9F, 0x15, 0x53, 0x4A, 0x76, 0x8A, 0xFB, 0xD9, 0xEC, 0x9E, 0x3F, 0xFD, 0xBA, 0x7C, 0x7F, 0xE3, 0x8B, 0xA2, 0xD1, 0x6A, 0x2B, 0xA4, 0xC6, 0x1F, 0x72, 0x0B, 0x65, 0xF9, 0xC0, 0xEC, 0x0B, 0x36, 0x7A, 0x7A, 0x80, 0x2B, 0xEA, 0x1F, 0xF8, 0x26, 0xF7, 0xFC, 0x16, 0x3B, 0x43, 0xFD, 0x9C, 0xE5, 0xD7, 0x21, 0xF8, 0xA1, 0xA1, 0xEB, 0xDA, 0xCD, 0xC6, 0xA8, 0x90, 0x45, 0x6D, 0xAC, 0x69, 0x1E, 0x54, 0x92, 0xDB, 0xA2, 0x6F, 0x2E, 0x8F, 0x03, 0xB2, 0x29, 0x12, 0x31, 0x8D, 0x8B, 0x2B, 0x70, 0x62, 0x50, 0x13, 0x93, 0x5F, 0x9F, 0x54, 0x57, 0xC7, 0xE2, 0xB3, 0x0C, 0x4E, 0x26, 0x5C, 0xD8, 0x89, 0xB9, 0x7A, 0xBB, 0x9E, 0x15, 0x6C, 0x55, 0x5A, 0xAE, 0xF5, 0x64, 0xDF, 0xA9, 0xFA, 0x01, 0xFF, 0x00, 0x05, 0x72, 0xFF, 0x00, 0x82, 0xB1, 0xE9, 0xFF, 0x00, 0xB5, 0x2D, 0xA7, 0x87, 0xFC, 0x23, 0xF0, 0xC2, 0xFB, 0x52, 0x87, 0xC2, 0x76, 0x66, 0x2D, 0x57, 0x54, 0xBC, 0x96, 0x16, 0xB6, 0x96, 0xFA, 0xF0, 0x10, 0xD1, 0x41, 0xB1, 0x86, 0x42, 0x40, 0x46, 0xE2, 0x72, 0x55, 0xE4, 0x20, 0x81, 0x88, 0xD5, 0x9B, 0x7B, 0xF6, 0x5B, 0xFF, 0x00, 0x82, 0xD8, 0xE8, 0xDE, 0x1C, 0xF8, 0x2E, 0xDA, 0x07, 0xC4, 0xBD, 0x27, 0x58, 0xB9, 0xD4, 0xF4, 0xA7, 0x57, 0xB2, 0xB8, 0xD2, 0x60, 0x8E, 0x64, 0xBD, 0x1C, 0x82, 0x19, 0x5E, 0x44, 0xF2, 0xDB, 0x1B, 0x49, 0xE4, 0xA9, 0xC1, 0x23, 0x6F, 0xDD, 0xAF, 0xCE, 0x1A, 0x2B, 0x95, 0x49, 0xA5, 0x63, 0x1E, 0x6E, 0x87, 0xD4, 0x5F, 0xB7, 0x9F, 0xFC, 0x14, 0xB6, 0xFB, 0xF6, 0xCE, 0xF0, 0x7E, 0x93, 0xE1, 0x9B, 0x5F, 0x0C, 0xC5, 0xE1, 0xAF, 0x0F, 0xE9, 0x77, 0xE7, 0x51, 0x65, 0x7B, 0xCF, 0xB5, 0x5C, 0x5E, 0x4E, 0x11, 0xE3, 0x8D, 0x89, 0x08, 0x81, 0x15, 0x52, 0x47, 0xF9, 0x40, 0x6E, 0x5B, 0xEF, 0x70, 0x2B, 0xE5, 0xDA, 0x28, 0xA9, 0x10, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD9, } ; ================================================ FILE: examples/M5ez-demo/M5ez-demo.ino ================================================ #include #include #include "images.h" #define MAIN_DECLARED void setup() { #include #include ezt::setDebug(INFO); ez.begin(); } void loop() { ezMenu mainmenu("Welcome to M5ez"); mainmenu.txtSmall(); mainmenu.addItem("Flexible text menus", mainmenu_menus); mainmenu.addItem("Image menus", mainmenu_image); mainmenu.addItem("Neat messages", mainmenu_msgs); mainmenu.addItem("Multi-function buttons", mainmenu_buttons); mainmenu.addItem("3-button text entry", mainmenu_entry); mainmenu.addItem("Built-in wifi & other settings", ez.settings.menu); mainmenu.addItem("Updates via https", mainmenu_ota); mainmenu.upOnFirst("last|up"); mainmenu.downOnLast("first|down"); mainmenu.run(); } void mainmenu_menus() { ezMenu submenu("This is a sub menu"); submenu.txtSmall(); submenu.buttons("up#Back#select##down#"); submenu.addItem("You can make small menus"); submenu.addItem("Or big ones"); submenu.addItem("(Like the Main menu)"); submenu.addItem("In this menu most options"); submenu.addItem("Do absolutely nothing"); submenu.addItem("They are only here"); submenu.addItem("To demonstrate that menus"); submenu.addItem("Can run off the screen"); submenu.addItem("And will just scroll"); submenu.addItem("And scroll"); submenu.addItem("And Scroll"); submenu.addItem("And Scroll even more"); submenu.addItem("more | Learn more about menus", submenu_more); submenu.addItem("Exit | Go back to main menu"); submenu.run(); } void submenu_more() { ez.header.show("A simple menu in code..."); ez.canvas.lmargin(10); ez.canvas.println(""); ez.canvas.println("ezMenu menu(\"Main menu\");"); ez.canvas.println("menu.addItem(\"Option 1\");"); ez.canvas.println("menu.addItem(\"Option 2\");"); ez.canvas.println("menu.addItem(\"Option 3\");"); ez.canvas.println("while ( menu.run() ) {"); ez.canvas.println(" if (menu.pick == 1) {"); ez.canvas.println(" ez.msgBox (\"One!\");"); ez.canvas.println(" }"); ez.canvas.println("}"); ez.buttons.wait("OK"); ezMenu fontmenu("Menus can change looks"); fontmenu.txtFont(&Satisfy_24); fontmenu.addItem("Menus can use"); fontmenu.addItem("Various Fonts"); fontmenu.runOnce(); ezMenu delmenu("Menus are dynamic"); delmenu.txtSmall(); delmenu.addItem("You can delete items"); delmenu.addItem("While the menu runs"); delmenu.addItem("Delete me!"); delmenu.addItem("Delete me!"); delmenu.addItem("Delete me!"); delmenu.addItem("Exit | Go back" ); while (delmenu.runOnce()) { if (delmenu.pickName() == "Delete me!") { delmenu.deleteItem(delmenu.pick()); } } } void mainmenu_image() { ezMenu images; images.imgBackground(TFT_BLACK); images.imgFromTop(40); images.imgCaptionColor(TFT_WHITE); images.addItem(sysinfo_jpg, "System Information", sysInfo); images.addItem(wifi_jpg, "WiFi Settings", ez.wifi.menu); images.addItem(about_jpg, "About M5ez", aboutM5ez); images.addItem(sleep_jpg, "Power Off", powerOff); images.addItem(return_jpg, "Back"); images.run(); } void mainmenu_msgs() { String cr = (String)char(13); ez.msgBox("You can show messages", "ez.msgBox shows text"); ez.msgBox("Looking the way you want", "In any font !", "OK", true, &FreeSerifBold24pt7b, TFT_RED); ez.msgBox("More ez.msgBox", "Even multi-line messages where everything lines up and is kept in the middle of the screen"); ez.msgBox("Questions, questions...", "But can it also show any buttons you want?", "No # # Yes"); ez.textBox("And there's ez.textBox", "To present or compose longer word-wrapped texts, you can use the ez.textBox function." + cr + cr + "M5ez (pronounced \"M5 easy\") is a complete interface builder library for the M5Stack ESP32 system. It allows even novice programmers to create good looking interfaces. It comes with menus as text or as images, message boxes, very flexible button setup (including different length presses and multi-button functions), 3-button text input (you have to see it to believe it) and built-in Wifi support. Now you can concentrate on what your program does, and let M5ez worry about everything else.", true); } void mainmenu_buttons() { ez.header.show("Simple buttons..."); ez.canvas.font(&FreeSans12pt7b); ez.canvas.lmargin(20); ez.canvas.println(""); ez.canvas.println("You can have three buttons"); ez.canvas.println("with defined funtions."); ez.buttons.show("One # Two # Done"); printButton(); ez.canvas.clear(); ez.header.show("More functions..."); ez.canvas.println(""); ez.canvas.println("But why stop there?"); ez.canvas.println("If you press a little longer"); ez.canvas.println("You access the functions"); ez.canvas.println("printed in cyan."); ez.buttons.show("One # Two # Three # Four # Done #"); printButton(); ez.canvas.clear(); ez.header.show("Two keys ..."); ez.canvas.y(ez.canvas.top() + 10); ez.canvas.println("It gets even better..."); ez.canvas.println("The purple bar shows the"); ez.canvas.println("functions for key combis."); ez.canvas.println("See if you can work it out..."); ez.buttons.show("One # Two # Three # Four # Five # Six # Seven # Eight # Done"); printButton(); } void printButton(){ while (true) { String btnpressed = ez.buttons.poll(); if (btnpressed == "Done") break; if (btnpressed != "") { m5.lcd.fillRect (0, ez.canvas.bottom() - 45, TFT_W, 40, ez.theme->background); ez.canvas.pos(20, ez.canvas.bottom() - 45); ez.canvas.color(TFT_RED); ez.canvas.font(&FreeSansBold18pt7b); ez.canvas.print(btnpressed); ez.canvas.font(&FreeSans12pt7b); ez.canvas.color(TFT_BLACK); } } } void mainmenu_entry() { if (ez.msgBox("We're gonna enter text ... !", "Have you learned to use the buttons? Go there first if you haven't been there. Or hit 'Go' to see if you can enter your name.", "Back # # Go") == "Go") { String your_name = ez.textInput(); ez.msgBox("Pfew...", "Hi " + your_name + "! | | Now that was a pain! But it is good enough for entering, say, a WPA key, or don't you think?"); ez.msgBox("Don't worry", "(You do get better with practice...)"); } } void mainmenu_ota() { if (ez.msgBox("Get OTA_https demo", "This will replace the demo with a program that can then load the demo program again.", "Cancel#OK#") == "OK") { ezProgressBar progress_bar("OTA update in progress", "Downloading ...", "Abort"); #include "raw_githubusercontent_com.h" // the root certificate is now in const char * root_cert if (ez.wifi.update("https://raw.githubusercontent.com/M5ez/M5ez/master/compiled_binaries/OTA_https.bin", root_cert, &progress_bar)) { ez.msgBox("Over The Air updater", "OTA download successful. Reboot to new firmware", "Reboot"); ESP.restart(); } else { ez.msgBox("OTA error", ez.wifi.updateError(), "OK"); } } } void powerOff() { m5.powerOFF(); } void aboutM5ez() { ez.msgBox("About M5ez", "M5ez was written by | Rop Gonggrijp | | https://github.com/M5ez/M5ez"); } ================================================ FILE: examples/M5ez-demo/images.h ================================================ #pragma once const char wifi_jpg[] PROGMEM = { 0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60, 0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x22, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, 0x01, 0x12, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03, 0x05, 0x03, 0x03, 0x03, 0x03, 0x03, 0x06, 0x04, 0x04, 0x03, 0x05, 0x07, 0x06, 0x07, 0x07, 0x07, 0x06, 0x07, 0x07, 0x08, 0x09, 0x0B, 0x09, 0x08, 0x08, 0x0A, 0x08, 0x07, 0x07, 0x0A, 0x0D, 0x0A, 0x0A, 0x0B, 0x0C, 0x0C, 0x0C, 0x0C, 0x07, 0x09, 0x0E, 0x0F, 0x0D, 0x0C, 0x0E, 0x0B, 0x0C, 0x0C, 0x0C, 0xFF, 0xDB, 0x00, 0x43, 0x01, 0x02, 0x02, 0x02, 0x03, 0x03, 0x03, 0x06, 0x03, 0x03, 0x06, 0x0C, 0x08, 0x07, 0x08, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0xFF, 0xC0, 0x00, 0x11, 0x08, 0x00, 0xB5, 0x01, 0x40, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, 0xFF, 0xC4, 0x00, 0x1F, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00, 0x00, 0x01, 0x7D, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xA1, 0x08, 0x23, 0x42, 0xB1, 0xC1, 0x15, 0x52, 0xD1, 0xF0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0A, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xC4, 0x00, 0x1F, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xA1, 0xB1, 0xC1, 0x09, 0x23, 0x33, 0x52, 0xF0, 0x15, 0x62, 0x72, 0xD1, 0x0A, 0x16, 0x24, 0x34, 0xE1, 0x25, 0xF1, 0x17, 0x18, 0x19, 0x1A, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xDA, 0x00, 0x0C, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, 0x3F, 0x00, 0xFE, 0x7F, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0x55, 0x2C, 0x70, 0x28, 0x03, 0x26, 0xBD, 0x23, 0xE0, 0x47, 0xC1, 0x0D, 0x43, 0xE2, 0x8F, 0x88, 0xED, 0xAD, 0x6D, 0xED, 0xE4, 0x99, 0xA6, 0x90, 0x22, 0xAA, 0xAE, 0x4B, 0x13, 0xDA, 0xBA, 0xB0, 0x78, 0x4A, 0xB8, 0x9A, 0xAA, 0x8D, 0x15, 0x79, 0x3D, 0x8E, 0x7C, 0x56, 0x26, 0x9E, 0x1E, 0x9B, 0xAB, 0x55, 0xD9, 0x2D, 0xD9, 0xC1, 0x26, 0x89, 0x73, 0x2A, 0x6E, 0x58, 0x9D, 0x86, 0x33, 0xC0, 0x27, 0x8A, 0x8A, 0xEB, 0x4F, 0xB8, 0xB2, 0x58, 0xDA, 0x68, 0x66, 0x89, 0x66, 0x1B, 0x90, 0xBA, 0x15, 0x0E, 0x3D, 0x47, 0xA8, 0xAF, 0xDB, 0x6F, 0xD9, 0x5B, 0xFE, 0x09, 0x35, 0xE0, 0xFF, 0x00, 0x82, 0xFF, 0x00, 0x00, 0x1B, 0xE2, 0x4F, 0xC4, 0xC8, 0x16, 0x4D, 0x3E, 0xE0, 0x1B, 0x7D, 0x2E, 0xC7, 0x03, 0xCE, 0xD7, 0xEE, 0x07, 0x54, 0x8C, 0x1F, 0xF9, 0x62, 0x87, 0x86, 0x7E, 0x84, 0xE7, 0xDB, 0x3F, 0x02, 0xFF, 0x00, 0xC1, 0x4C, 0xBE, 0x09, 0x5F, 0x5B, 0x78, 0xA9, 0x3C, 0x58, 0xDF, 0x62, 0xB3, 0xD3, 0x6E, 0x8F, 0xD9, 0xAD, 0x74, 0xE8, 0x02, 0xC6, 0xB6, 0x08, 0xA3, 0x21, 0x23, 0x5F, 0xE2, 0x5C, 0x75, 0x6E, 0xB9, 0xFA, 0x8A, 0xFA, 0x8C, 0xCB, 0x82, 0xB1, 0xD8, 0x4A, 0x33, 0xAE, 0x97, 0x32, 0xA7, 0xA4, 0xDA, 0xD9, 0x3E, 0xB1, 0x4F, 0xAB, 0x5F, 0x6A, 0xDA, 0x27, 0xA6, 0xF7, 0xB7, 0xCF, 0x65, 0xFC, 0x59, 0x82, 0xC5, 0x55, 0x8D, 0x24, 0xEC, 0xE7, 0xAC, 0x57, 0x56, 0xBA, 0x3B, 0x74, 0x4F, 0xEC, 0xDF, 0x75, 0xAE, 0xD6, 0x3E, 0x3D, 0xA2, 0x95, 0x97, 0x6B, 0x63, 0xD2, 0x92, 0xBE, 0x34, 0xFA, 0x90, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x01, 0xF0, 0x5B, 0xC9, 0x72, 0xFB, 0x63, 0x46, 0x91, 0xB1, 0x9C, 0x28, 0xC9, 0xAB, 0x70, 0xF8, 0x7E, 0xEA, 0x68, 0x3C, 0xC1, 0x0C, 0x9B, 0x48, 0xC8, 0x3B, 0x78, 0x35, 0xEC, 0xFF, 0x00, 0xB1, 0x0F, 0xC0, 0x5D, 0x47, 0xE2, 0x7F, 0xC4, 0x68, 0x75, 0x0B, 0x59, 0xA1, 0x8E, 0x3D, 0x1D, 0xD2, 0x69, 0x15, 0xC0, 0x63, 0x28, 0xCF, 0xDD, 0xDB, 0xDD, 0x4F, 0x42, 0x7B, 0x57, 0xEB, 0x5F, 0x89, 0x7F, 0xE0, 0x97, 0x7E, 0x04, 0xFD, 0xA8, 0x7F, 0x65, 0xFB, 0xAF, 0x14, 0x78, 0x17, 0x4F, 0x87, 0x4F, 0xF1, 0x07, 0x86, 0xA0, 0xF3, 0x3C, 0x41, 0xA1, 0xC6, 0xA0, 0xCD, 0x62, 0xB8, 0xFF, 0x00, 0x8F, 0xC8, 0x07, 0x59, 0x20, 0xCF, 0xDF, 0x03, 0x95, 0x1C, 0xF1, 0x8E, 0x7E, 0xBB, 0x25, 0xE0, 0xFC, 0x5E, 0x3E, 0x9A, 0xAE, 0xFD, 0xD8, 0x49, 0xD9, 0x49, 0xED, 0xCD, 0xB2, 0x4D, 0xF4, 0x4D, 0xE8, 0x9B, 0xD2, 0xF6, 0x4E, 0xD7, 0x47, 0xCC, 0xE6, 0xFC, 0x51, 0x85, 0xC0, 0xCD, 0xD2, 0xBF, 0x34, 0xE2, 0xAE, 0xE2, 0xB7, 0xB2, 0xD5, 0xB4, 0xBA, 0xD9, 0x6A, 0xD2, 0xD6, 0xD7, 0x6A, 0xF6, 0x3F, 0x08, 0x65, 0x89, 0xA1, 0x7D, 0xAC, 0x30, 0x69, 0xB5, 0xED, 0x9F, 0xB5, 0x1F, 0xEC, 0xD7, 0xA8, 0xFC, 0x1E, 0xF1, 0x4D, 0xD5, 0xBD, 0xC5, 0xBB, 0x47, 0xE5, 0x39, 0xE4, 0x0F, 0x95, 0x87, 0x62, 0x0F, 0xA1, 0xAF, 0x14, 0x65, 0xD8, 0xD8, 0x35, 0xF3, 0xF9, 0x96, 0x5D, 0x5F, 0x03, 0x88, 0x96, 0x1B, 0x11, 0x1B, 0x4A, 0x2E, 0xCD, 0x33, 0xDA, 0xC0, 0x63, 0xA8, 0xE3, 0x28, 0x47, 0x11, 0x42, 0x4A, 0x51, 0x92, 0xBA, 0x68, 0x4A, 0x28, 0xA2, 0xB8, 0x4E, 0xC0, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x00, 0xC9, 0xA0, 0x0D, 0x8F, 0x05, 0xF8, 0x6E, 0x4F, 0x12, 0xEB, 0x50, 0xC1, 0x1A, 0xEE, 0xDC, 0xC0, 0x74, 0xAF, 0xDA, 0x2F, 0xF8, 0x22, 0xAF, 0xFC, 0x13, 0xD7, 0x4D, 0xD7, 0x64, 0x6F, 0x13, 0x78, 0xA7, 0xFE, 0x25, 0xFE, 0x19, 0xD0, 0xAC, 0xCE, 0xAB, 0xAC, 0xDE, 0xB2, 0xE3, 0xEC, 0xD6, 0x6B, 0xC9, 0x55, 0x3F, 0xF3, 0xD2, 0x4F, 0xBA, 0x31, 0xCF, 0x35, 0xF9, 0xC7, 0xFF, 0x00, 0x04, 0xFA, 0xF8, 0x19, 0xFF, 0x00, 0x0B, 0x23, 0xE2, 0x1D, 0x92, 0xCD, 0x1B, 0x35, 0xBE, 0xF1, 0x24, 0xC7, 0x1D, 0x11, 0x79, 0x6F, 0xCC, 0x71, 0xF5, 0x35, 0xFB, 0xB9, 0xF1, 0xDA, 0x08, 0xBF, 0x66, 0x5F, 0xD9, 0x87, 0xC2, 0x7F, 0x09, 0xEC, 0x55, 0x6D, 0x75, 0xAF, 0x11, 0x43, 0x17, 0x88, 0xBC, 0x55, 0xB4, 0x6D, 0x65, 0x0C, 0x33, 0x6D, 0x6A, 0xDE, 0xCA, 0xB8, 0x6E, 0xDD, 0x2B, 0xF7, 0x6F, 0x0C, 0x78, 0x6E, 0x6E, 0x9C, 0x71, 0x51, 0xD2, 0xAD, 0x57, 0xCB, 0x07, 0xFC, 0xA9, 0x2B, 0xCE, 0xA7, 0xAC, 0x63, 0x65, 0x1E, 0x9C, 0xF2, 0x89, 0xF8, 0x87, 0x89, 0xFC, 0x49, 0x0A, 0x6E, 0x58, 0x59, 0xEB, 0x4A, 0x94, 0x54, 0xEA, 0x2F, 0xE6, 0x6D, 0xDA, 0x9D, 0x3F, 0x49, 0xCA, 0xEE, 0x5F, 0xDC, 0x8C, 0x8F, 0x1F, 0xFD, 0xB6, 0xFF, 0x00, 0x6B, 0x08, 0x7E, 0x21, 0xEB, 0x57, 0x9E, 0x28, 0xD4, 0xA3, 0x5D, 0x27, 0xC2, 0xFA, 0x1C, 0x02, 0xCB, 0x42, 0xD2, 0x53, 0xE5, 0x8E, 0xC2, 0xD5, 0x06, 0x22, 0x89, 0x57, 0xA6, 0xE2, 0x06, 0x5B, 0xDF, 0x3D, 0xAB, 0xF1, 0xAF, 0xF6, 0xCB, 0xFD, 0xA3, 0x2E, 0xBE, 0x32, 0xF8, 0xDA, 0x76, 0x76, 0xCA, 0x2B, 0x18, 0xE1, 0x89, 0x4F, 0xCB, 0x0A, 0x76, 0x51, 0xFD, 0x6B, 0xDE, 0xBF, 0xE0, 0xA5, 0xBF, 0xB5, 0x03, 0x5E, 0xEB, 0x12, 0x68, 0x1A, 0x7D, 0xC7, 0xFA, 0x2E, 0x9E, 0x4C, 0x5F, 0x2B, 0x71, 0x24, 0x9D, 0x19, 0xBF, 0xA0, 0xFA, 0x57, 0xCA, 0xFF, 0x00, 0x00, 0xBE, 0x10, 0xDF, 0xFC, 0x64, 0xF1, 0xC5, 0xBC, 0x31, 0xC2, 0xF3, 0xBD, 0xC4, 0xCA, 0xAA, 0x31, 0xD4, 0x93, 0x5A, 0x78, 0x89, 0x9E, 0xAC, 0x4E, 0x22, 0x1C, 0x35, 0x93, 0xC7, 0xF7, 0x70, 0xB4, 0x6C, 0xBA, 0xBF, 0xD7, 0x5F, 0xBD, 0xEB, 0xBB, 0x27, 0xC3, 0x8C, 0x8A, 0x78, 0x6C, 0x2C, 0xF8, 0x8F, 0x39, 0x95, 0xEA, 0xD4, 0xF7, 0xB5, 0xFB, 0x2B, 0x7F, 0x45, 0xA7, 0xDC, 0xAC, 0xB6, 0x47, 0x11, 0x67, 0xF0, 0xDF, 0x56, 0xD5, 0x6D, 0x1E, 0x6B, 0x7B, 0x49, 0xE6, 0xDA, 0xA5, 0xC8, 0x44, 0x27, 0x81, 0xC9, 0x35, 0x85, 0x35, 0xBC, 0x96, 0xD2, 0x32, 0xC8, 0x8C, 0x8C, 0xA7, 0x04, 0x30, 0xC6, 0x0D, 0x7E, 0xF5, 0x7F, 0xC1, 0x3E, 0xBF, 0xE0, 0x9B, 0x1A, 0x6E, 0xB5, 0x67, 0x75, 0x69, 0x24, 0x96, 0x3A, 0x4E, 0x87, 0xA4, 0xDA, 0x7D, 0xAB, 0xC5, 0x3E, 0x22, 0xB9, 0x8C, 0x18, 0xAC, 0xAD, 0xC0, 0xCB, 0x46, 0xB9, 0xEA, 0x5B, 0xA2, 0xAF, 0x73, 0xEB, 0x5F, 0x34, 0x7F, 0xC1, 0x6D, 0x3C, 0x03, 0xE0, 0x97, 0xF8, 0x6D, 0xA1, 0xE9, 0x3F, 0x09, 0xFC, 0x0F, 0xE1, 0x9F, 0x0A, 0xFC, 0x39, 0xF0, 0xC5, 0xCB, 0x88, 0xEE, 0xDA, 0xCA, 0x3F, 0xED, 0xED, 0x52, 0xE1, 0xCF, 0xCD, 0x3C, 0xD7, 0x04, 0x19, 0x0A, 0x3F, 0x5F, 0x2D, 0x48, 0x0B, 0xC0, 0xE8, 0x06, 0x3E, 0x4F, 0x3F, 0xF0, 0xD7, 0x15, 0x80, 0xA1, 0xCD, 0x4A, 0x5C, 0xF3, 0x84, 0x79, 0xAA, 0xA4, 0xB4, 0x82, 0x7B, 0x26, 0xEF, 0xF1, 0x3D, 0xEC, 0xB5, 0x4B, 0x57, 0xA5, 0x9B, 0xFA, 0xAC, 0x87, 0xC4, 0x4C, 0x26, 0x61, 0x59, 0x46, 0x6B, 0x92, 0x13, 0x93, 0x8D, 0x26, 0xDE, 0xB5, 0x2D, 0xBB, 0x4B, 0xF9, 0x53, 0xD2, 0xEF, 0x46, 0xF4, 0x5A, 0xDD, 0x2F, 0xCA, 0x8A, 0x2A, 0x4B, 0x98, 0x7C, 0x89, 0x99, 0x7F, 0xBA, 0x6A, 0x3A, 0xFC, 0xC4, 0xFD, 0x1C, 0x28, 0xA2, 0x95, 0x46, 0xE6, 0xC5, 0x00, 0x3E, 0x1B, 0x69, 0x2E, 0x1B, 0x08, 0xAC, 0xD9, 0x38, 0xE0, 0x56, 0xE3, 0x7C, 0x37, 0xD5, 0x22, 0xB1, 0x5B, 0x86, 0xB5, 0x99, 0x63, 0x71, 0xB9, 0x58, 0xA9, 0xC3, 0x0F, 0x6A, 0xFB, 0x1F, 0xFE, 0x08, 0xFB, 0xE0, 0xAB, 0x3B, 0x8F, 0x18, 0x6A, 0x8D, 0xE2, 0xAF, 0x0D, 0xE8, 0xDE, 0x2E, 0xF8, 0x7F, 0x7C, 0x82, 0xDF, 0x5A, 0xD3, 0x6E, 0xE2, 0x53, 0x70, 0xC0, 0xF4, 0x7B, 0x77, 0xFB, 0xF1, 0xC8, 0xBD, 0x43, 0x03, 0xDB, 0xD7, 0x06, 0xBF, 0x46, 0xFF, 0x00, 0x6B, 0x9F, 0xF8, 0x26, 0xEF, 0x84, 0x34, 0x9F, 0x85, 0x3A, 0x3E, 0xA1, 0xE1, 0x73, 0x1E, 0xB5, 0xF0, 0xCF, 0xC4, 0x10, 0xE3, 0x41, 0xD4, 0x96, 0x20, 0x27, 0xD2, 0x25, 0xC7, 0x36, 0xB3, 0xE3, 0xEE, 0xC8, 0xBD, 0x39, 0xE1, 0xBA, 0xD7, 0xE8, 0x7C, 0x33, 0xC0, 0x35, 0xF3, 0x48, 0x29, 0x55, 0x97, 0xB3, 0xF6, 0x89, 0xFB, 0x36, 0xD6, 0x93, 0x92, 0xDE, 0x37, 0xE8, 0xEC, 0x9B, 0x57, 0xDE, 0xCE, 0xD7, 0xB3, 0xB7, 0xC2, 0x71, 0x27, 0x1C, 0x61, 0xF2, 0xB6, 0xF9, 0x57, 0x3F, 0xB3, 0x6B, 0xDA, 0x24, 0xF5, 0x84, 0x5F, 0xDA, 0xB7, 0x55, 0x7B, 0x5E, 0xDB, 0x69, 0x7D, 0xD1, 0xF8, 0xBB, 0xFB, 0x31, 0xFC, 0x65, 0xBA, 0xF8, 0x3F, 0xE3, 0xCB, 0x4B, 0xA8, 0x64, 0x68, 0x25, 0x85, 0xC7, 0x3D, 0x98, 0x77, 0x07, 0xD8, 0xD7, 0xEC, 0x8F, 0xEC, 0x55, 0xFB, 0x5B, 0x5C, 0x68, 0xBA, 0x96, 0x8F, 0xE3, 0xCF, 0x0A, 0x4E, 0xB1, 0xDF, 0x58, 0x90, 0xB7, 0x76, 0x64, 0xFE, 0xEE, 0x65, 0x3F, 0xEB, 0x21, 0x90, 0x77, 0x47, 0x5C, 0x8F, 0xC7, 0xDA, 0xBF, 0x21, 0xBF, 0x6A, 0xFF, 0x00, 0xD9, 0xD2, 0xFF, 0x00, 0xE0, 0xA7, 0x8D, 0xAE, 0xA1, 0x78, 0x4C, 0x66, 0x17, 0xC8, 0x2A, 0x38, 0x61, 0xD9, 0x87, 0xB1, 0x15, 0xEA, 0x9F, 0xF0, 0x4F, 0x0F, 0xDA, 0x82, 0x4F, 0x03, 0x78, 0xC2, 0xDE, 0xCE, 0xF6, 0x76, 0xFB, 0x0D, 0xC6, 0x21, 0xB8, 0x52, 0x78, 0xDA, 0x7F, 0x8B, 0xFE, 0x03, 0xD6, 0xBE, 0xC7, 0x80, 0x73, 0xC9, 0x64, 0xD8, 0xF9, 0xE4, 0x19, 0xBC, 0x6F, 0x4A, 0xA5, 0xE3, 0x25, 0x2D, 0x95, 0xF4, 0xFF, 0x00, 0x80, 0xFC, 0x8F, 0x90, 0xF1, 0x03, 0x21, 0x59, 0xCE, 0x5D, 0x0C, 0xF3, 0x27, 0x9D, 0xAB, 0x53, 0x4A, 0x71, 0x71, 0x7B, 0xDB, 0x5F, 0xF8, 0x6F, 0x3F, 0x26, 0xCF, 0xD3, 0x2F, 0xF8, 0x2B, 0xFF, 0x00, 0xEC, 0x45, 0xE1, 0xDF, 0x8B, 0x3F, 0x0E, 0x34, 0xFF, 0x00, 0x89, 0x9E, 0x04, 0xB3, 0x1F, 0xF0, 0x8D, 0x78, 0xB2, 0x17, 0xB9, 0xB4, 0x89, 0x47, 0xCD, 0xA6, 0x5C, 0x8C, 0x99, 0xEC, 0x5B, 0x1D, 0x0A, 0xB6, 0x4A, 0x8F, 0x4A, 0xFC, 0x27, 0xF8, 0xA1, 0xE0, 0xD9, 0x3C, 0x1F, 0xE2, 0x39, 0xE1, 0x65, 0x2A, 0xAA, 0xC4, 0x0A, 0xFE, 0x93, 0x7F, 0x62, 0x9D, 0x6E, 0xD3, 0xE2, 0xC6, 0x89, 0xE2, 0x4F, 0x83, 0x7A, 0xBC, 0xD1, 0xFF, 0x00, 0x66, 0xF8, 0xEA, 0xDC, 0xDD, 0x68, 0x93, 0x49, 0xCA, 0xD9, 0x6A, 0x91, 0xAE, 0x62, 0x65, 0xFF, 0x00, 0x7F, 0x01, 0x48, 0x1D, 0x6B, 0xF1, 0x97, 0xFE, 0x0A, 0x91, 0xFB, 0x36, 0xCD, 0xF0, 0xD3, 0xE2, 0x4E, 0xA4, 0xE6, 0xCD, 0xAD, 0x4B, 0xCA, 0xEC, 0xF1, 0x15, 0xC1, 0x86, 0x40, 0xC5, 0x64, 0x8C, 0xFB, 0xAB, 0x86, 0xE3, 0xE9, 0x5D, 0xFE, 0x26, 0xF0, 0xCB, 0x74, 0x67, 0x53, 0x7A, 0x94, 0x2C, 0x9C, 0xBA, 0xCE, 0x9C, 0xAF, 0xEC, 0xE4, 0xDF, 0x56, 0xAC, 0xE1, 0x27, 0xD5, 0xC5, 0x3F, 0xB4, 0x79, 0xBE, 0x18, 0x71, 0x44, 0x67, 0x52, 0x34, 0xBE, 0x1A, 0x75, 0xD3, 0x6A, 0x3D, 0x21, 0x56, 0x36, 0xF6, 0x90, 0x4B, 0xA4, 0x5D, 0xD5, 0x48, 0x2E, 0x8A, 0x4D, 0x7D, 0x93, 0xE2, 0x6A, 0x29, 0xD2, 0x27, 0x97, 0x23, 0x29, 0xFE, 0x13, 0x8A, 0x6D, 0x7F, 0x3E, 0x1F, 0xBE, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x58, 0xD2, 0xED, 0xBE, 0xD7, 0x7F, 0x1C, 0x63, 0xF8, 0x8D, 0x57, 0xAD, 0xCF, 0x87, 0xB6, 0x5F, 0x6E, 0xF1, 0x35, 0xB2, 0x7A, 0xB8, 0xAD, 0x28, 0xC7, 0x9A, 0x6A, 0x3D, 0xD9, 0x15, 0x25, 0xCB, 0x16, 0xCF, 0xD7, 0xCF, 0xF8, 0x37, 0xEB, 0xF6, 0x65, 0xB5, 0xF1, 0xEF, 0xC5, 0x9D, 0x03, 0xFB, 0x42, 0x38, 0xD6, 0xC2, 0x4B, 0xA5, 0x9A, 0xED, 0xE4, 0x1F, 0x20, 0xB5, 0xB7, 0x53, 0x71, 0x3E, 0x4F, 0x60, 0x56, 0x30, 0x3F, 0x1A, 0xF6, 0x6F, 0xDB, 0xD3, 0xF6, 0x8B, 0x9B, 0xC4, 0x7A, 0xF7, 0x8F, 0xBC, 0x79, 0x3B, 0x04, 0x92, 0xF6, 0xE2, 0x5F, 0xB2, 0x2E, 0x72, 0xB1, 0x2E, 0x4A, 0x44, 0x83, 0xD8, 0x0C, 0x57, 0x47, 0xFF, 0x00, 0x04, 0x63, 0xD1, 0x63, 0xF8, 0x69, 0xFB, 0x2B, 0x7C, 0x46, 0xF1, 0x47, 0x92, 0x0C, 0x9A, 0x77, 0x82, 0xEE, 0x62, 0x85, 0xFF, 0x00, 0xE7, 0x9C, 0xD7, 0x92, 0xC7, 0x6E, 0x18, 0x7B, 0xED, 0x2D, 0x5F, 0x23, 0xFF, 0x00, 0xC1, 0x49, 0x3C, 0x60, 0xDE, 0x1F, 0xF8, 0x35, 0x6F, 0x68, 0xAD, 0xB5, 0xAE, 0xE4, 0x2E, 0xFC, 0xF5, 0x00, 0x7F, 0x8D, 0x7F, 0x5D, 0x64, 0xF6, 0xCA, 0xF2, 0xAA, 0xD8, 0xA8, 0xE9, 0xEC, 0x28, 0xC2, 0x11, 0xF2, 0x94, 0xD7, 0xB4, 0x93, 0xF9, 0xF3, 0x53, 0xFF, 0x00, 0xC0, 0x4F, 0xE4, 0xAC, 0xEA, 0x2F, 0x36, 0xCE, 0x70, 0xF8, 0x49, 0x6A, 0xAB, 0xD7, 0x9C, 0xE5, 0xE7, 0x0A, 0x5F, 0xBB, 0x8A, 0xF9, 0x72, 0xD4, 0x7F, 0xF6, 0xF1, 0xF9, 0xB9, 0xF1, 0x73, 0xC4, 0x53, 0xF8, 0xF3, 0xE2, 0x14, 0xCA, 0x5D, 0xA4, 0xDD, 0x2E, 0x3D, 0x73, 0xCD, 0x7E, 0x86, 0x7F, 0xC1, 0x2D, 0x7F, 0x66, 0x99, 0xA0, 0xD2, 0xAD, 0xB5, 0x28, 0x6C, 0x4D, 0xCE, 0xAB, 0xAA, 0xCD, 0x1E, 0x9F, 0xA6, 0x44, 0x07, 0xCD, 0x24, 0xAE, 0x42, 0xF1, 0xEE, 0x49, 0x55, 0x07, 0xDC, 0xD7, 0xE7, 0x8F, 0xC2, 0x6D, 0x2D, 0xBC, 0x51, 0xF1, 0x26, 0x3C, 0xFC, 0xC5, 0xA5, 0xE3, 0xEB, 0x9A, 0xFE, 0x81, 0x3F, 0xE0, 0x93, 0xDE, 0x00, 0xB3, 0xF0, 0x2E, 0xB3, 0x06, 0xBD, 0x73, 0x0C, 0x26, 0xCF, 0xE1, 0x9F, 0x85, 0xEE, 0x7C, 0x44, 0x52, 0x55, 0xF9, 0x24, 0xB8, 0x58, 0xC2, 0xC2, 0xA7, 0xDF, 0xCD, 0x95, 0x48, 0xFF, 0x00, 0x76, 0xBF, 0x33, 0xF0, 0xC7, 0x0F, 0x17, 0x5F, 0x15, 0x9F, 0x56, 0x8F, 0x33, 0xA2, 0x9B, 0x8A, 0x7D, 0x66, 0xF4, 0x8A, 0xF9, 0xBD, 0x3D, 0x4F, 0xD3, 0xBC, 0x50, 0xC4, 0xCB, 0xEA, 0xF8, 0x5C, 0x86, 0x8C, 0xB9, 0x15, 0x79, 0x28, 0xC9, 0xAE, 0x90, 0x5A, 0xCD, 0xFC, 0x97, 0xE0, 0x74, 0xDF, 0xB6, 0xEF, 0xC4, 0x4D, 0x2F, 0xF6, 0x70, 0xF8, 0x6B, 0x6F, 0xF0, 0x7F, 0x47, 0xBC, 0x58, 0xF4, 0x8F, 0x0A, 0xC6, 0x2F, 0xBC, 0x5D, 0x7B, 0x1E, 0x41, 0xD5, 0x75, 0x2D, 0xA0, 0xB2, 0x37, 0xAA, 0x46, 0x78, 0x0B, 0xCF, 0x38, 0xAF, 0xC3, 0xDF, 0xDB, 0xB3, 0xF6, 0xB0, 0xB8, 0xF8, 0xAB, 0xE2, 0x69, 0xED, 0xD6, 0x42, 0xB6, 0x90, 0x31, 0x48, 0x20, 0x0D, 0xF2, 0xC4, 0xBF, 0xE2, 0x7B, 0x9A, 0xFB, 0x0B, 0xFE, 0x0A, 0x7D, 0xF1, 0xD6, 0xEA, 0xC3, 0xC1, 0xF3, 0xAC, 0xB7, 0x12, 0x35, 0xF6, 0xBD, 0x3C, 0x97, 0xD7, 0x4C, 0xC7, 0xE6, 0x7C, 0xB6, 0x79, 0x3F, 0x52, 0x3F, 0x2A, 0xFC, 0xA1, 0xF1, 0x26, 0xAF, 0x26, 0xB1, 0xAB, 0x4D, 0x34, 0x8C, 0x58, 0xB3, 0x13, 0x5D, 0x9E, 0x29, 0x67, 0xD5, 0x32, 0xFA, 0x31, 0xC8, 0x68, 0x4A, 0xF2, 0xF8, 0xAA, 0xCB, 0xAC, 0xE7, 0x2D, 0x64, 0xDF, 0xE8, 0xBA, 0x2B, 0x2D, 0x92, 0x38, 0x3C, 0x2D, 0xC8, 0xE9, 0xE3, 0xEA, 0x4B, 0x88, 0x2B, 0x46, 0xC9, 0xFB, 0xB4, 0xA3, 0xD2, 0x14, 0xE3, 0xA4, 0x52, 0xF3, 0xEE, 0xFA, 0xBB, 0xBD, 0xDB, 0x28, 0xCD, 0x2F, 0x9D, 0x2B, 0x31, 0xFE, 0x23, 0x5E, 0xBF, 0xF0, 0x6B, 0xF6, 0x06, 0xF8, 0xB9, 0xF1, 0xEB, 0x49, 0x5D, 0x43, 0xC3, 0x7E, 0x0B, 0xD4, 0xAE, 0x34, 0xD7, 0x19, 0x5B, 0xBB, 0x82, 0x96, 0xB0, 0xB8, 0xF5, 0x53, 0x21, 0x52, 0xC3, 0xDD, 0x41, 0x15, 0xE9, 0x3F, 0xF0, 0x4B, 0x2F, 0xD9, 0x73, 0x4D, 0xF8, 0xDD, 0xF1, 0x5D, 0xF5, 0xEF, 0x11, 0x5B, 0xA5, 0xD6, 0x87, 0xE1, 0xF9, 0x13, 0x65, 0xBC, 0x83, 0x29, 0x73, 0x70, 0x79, 0x1B, 0x87, 0x75, 0x50, 0x33, 0x8F, 0x52, 0x2B, 0xF7, 0xB3, 0xE0, 0x77, 0x86, 0x7C, 0x3A, 0xBE, 0x0F, 0x58, 0xE4, 0x58, 0x61, 0x58, 0xE2, 0xC4, 0x68, 0xAA, 0x15, 0x46, 0x3A, 0x0C, 0x57, 0xF1, 0xAF, 0x13, 0xF1, 0xF4, 0xB0, 0x78, 0xE7, 0x96, 0x60, 0x23, 0x17, 0x52, 0x2A, 0xF2, 0x94, 0xAF, 0x65, 0x7D, 0x52, 0xB2, 0x6A, 0xEE, 0xDA, 0xBD, 0x74, 0xF3, 0x3F, 0xB7, 0x78, 0x47, 0xC2, 0xD5, 0x8C, 0xCA, 0xE1, 0x9D, 0x66, 0x92, 0x94, 0x69, 0x4D, 0xB5, 0x08, 0xC2, 0xDC, 0xD2, 0x49, 0xD9, 0xC9, 0xB6, 0x9A, 0x4A, 0xF7, 0x49, 0x59, 0xB7, 0xBE, 0x8A, 0xD7, 0xFE, 0x71, 0x7E, 0x2D, 0xFE, 0xC2, 0xFF, 0x00, 0x15, 0x3E, 0x08, 0xD9, 0xC9, 0x73, 0xAF, 0xF8, 0x46, 0xFE, 0x3B, 0x38, 0x86, 0x5E, 0x7B, 0x66, 0x4B, 0x94, 0x41, 0xDC, 0xB7, 0x96, 0x49, 0x00, 0x7A, 0x91, 0x8A, 0xF2, 0x45, 0x6D, 0xAD, 0x9A, 0xFE, 0x88, 0xFF, 0x00, 0x69, 0x7D, 0x13, 0x4F, 0x1A, 0x84, 0x91, 0xC2, 0xB1, 0xBA, 0x31, 0xDA, 0x54, 0x8C, 0x82, 0x3D, 0x31, 0x5F, 0x8D, 0xBF, 0xF0, 0x51, 0xAF, 0x80, 0x5A, 0x6F, 0xC3, 0x0F, 0x89, 0x4D, 0xAC, 0x68, 0xB0, 0xC7, 0x6B, 0x63, 0xAA, 0x48, 0xC2, 0x7B, 0x74, 0x18, 0x48, 0xA5, 0xE4, 0xE5, 0x47, 0x60, 0xDC, 0xF1, 0xEA, 0x3D, 0xEB, 0x8F, 0x83, 0x3C, 0x47, 0x9E, 0x67, 0x8E, 0x96, 0x59, 0x8E, 0x82, 0x8C, 0xFE, 0xCC, 0xA3, 0x7B, 0x3F, 0x26, 0x9B, 0x76, 0x7E, 0x77, 0xD4, 0xF4, 0xBC, 0x40, 0xF0, 0x82, 0x9E, 0x53, 0x95, 0x47, 0x3A, 0xCA, 0xEA, 0x4A, 0x54, 0xFE, 0xD4, 0x67, 0x6E, 0x65, 0x7E, 0xA9, 0xA4, 0x93, 0x5D, 0xD5, 0xAE, 0xB7, 0xBB, 0x31, 0xFF, 0x00, 0x63, 0xCF, 0xDA, 0x22, 0xF3, 0xE1, 0x0F, 0x8D, 0x6D, 0x67, 0xB7, 0x97, 0xCB, 0xF9, 0xB6, 0xB2, 0x93, 0xF2, 0x4A, 0xBD, 0xD5, 0x87, 0xA1, 0xAF, 0xDC, 0xDF, 0xF8, 0x27, 0x67, 0xED, 0x23, 0xA0, 0xF8, 0xE3, 0x45, 0x6F, 0x08, 0x6B, 0xF2, 0x09, 0xBE, 0x1E, 0xFC, 0x4A, 0x8D, 0x6D, 0x6E, 0xD1, 0xDB, 0xFE, 0x41, 0x17, 0xA7, 0x88, 0xEE, 0x50, 0xFF, 0x00, 0x0B, 0x2B, 0x60, 0x12, 0x3A, 0x8A, 0xFE, 0x70, 0x34, 0xCB, 0xD6, 0xB0, 0xBC, 0x49, 0x15, 0xB6, 0x95, 0x35, 0xFA, 0x51, 0xFF, 0x00, 0x04, 0xB7, 0xF8, 0xC9, 0x36, 0xB1, 0xA7, 0xDC, 0x68, 0x92, 0xCE, 0xDF, 0x34, 0x62, 0x78, 0x79, 0xFB, 0xB2, 0x2E, 0x39, 0xFE, 0x55, 0xFD, 0x91, 0xE1, 0x5E, 0x79, 0xF5, 0x97, 0x2C, 0x83, 0x16, 0xFD, 0xCA, 0x9F, 0x0B, 0xEB, 0x09, 0xAD, 0x63, 0x28, 0xBE, 0x8D, 0x34, 0x9A, 0xF3, 0xB1, 0xFC, 0x3F, 0xE2, 0xA6, 0x4A, 0xF0, 0xF4, 0xA3, 0xC4, 0x18, 0x45, 0xEF, 0xD2, 0xF8, 0x97, 0x49, 0xC1, 0xE9, 0x28, 0xC9, 0x75, 0x4D, 0x37, 0x7F, 0x2B, 0x9E, 0xD9, 0xFF, 0x00, 0x05, 0x58, 0xFD, 0x90, 0x6E, 0xF4, 0x2B, 0x6F, 0x10, 0x69, 0x3A, 0x8D, 0xBF, 0xFC, 0x4F, 0x3C, 0x1B, 0x72, 0xF6, 0xB3, 0x38, 0x4C, 0x7D, 0xA2, 0x1C, 0xFC, 0xB2, 0x0E, 0xF8, 0x20, 0xAB, 0x8F, 0x67, 0xAF, 0xC9, 0xDD, 0x0A, 0xEE, 0x6F, 0x87, 0xDF, 0x10, 0x94, 0x64, 0xA6, 0xC9, 0x70, 0x7F, 0x3A, 0xFE, 0x8B, 0xFF, 0x00, 0x6E, 0xCD, 0x32, 0x2F, 0x8C, 0x7F, 0x08, 0xBE, 0x19, 0xF8, 0xF6, 0x48, 0xD1, 0xA4, 0xF1, 0x97, 0x87, 0x24, 0xD1, 0x75, 0x46, 0x07, 0x73, 0x4B, 0x77, 0x64, 0x4C, 0x26, 0x47, 0xFF, 0x00, 0x69, 0xA3, 0x31, 0x9E, 0x7D, 0x05, 0x7F, 0x3E, 0xBF, 0xB5, 0x27, 0x84, 0xFF, 0x00, 0xE1, 0x0F, 0xF8, 0x9F, 0x79, 0x12, 0xAE, 0xDF, 0x26, 0xE1, 0x93, 0xA7, 0xA1, 0x22, 0xBA, 0xBC, 0x50, 0xC2, 0x4A, 0xA5, 0x2C, 0x36, 0x79, 0x6B, 0x54, 0x77, 0x85, 0x4B, 0x6D, 0xED, 0x29, 0xBE, 0x59, 0x7C, 0xAE, 0x9D, 0xBC, 0x8E, 0x5F, 0x0B, 0x31, 0x91, 0xA7, 0x53, 0x15, 0x91, 0xA6, 0xDD, 0x38, 0x5A, 0x74, 0xEF, 0xBF, 0xB3, 0xA9, 0x15, 0x38, 0xFD, 0xC9, 0xAB, 0xF9, 0x9F, 0xAB, 0x3F, 0xB0, 0xEF, 0xC6, 0xEB, 0xAD, 0x53, 0xE1, 0xFF, 0x00, 0x87, 0x35, 0xEB, 0x3B, 0x96, 0x8F, 0x55, 0xF0, 0xEC, 0xF1, 0xB2, 0xC8, 0xAD, 0xF3, 0x2B, 0x46, 0x41, 0x53, 0x9F, 0x52, 0x2B, 0xB4, 0xFF, 0x00, 0x83, 0x82, 0x7E, 0x0C, 0x59, 0xF8, 0xB2, 0xE9, 0x7C, 0x6B, 0xA6, 0xDA, 0xA4, 0x76, 0x3E, 0x32, 0xD3, 0xAD, 0x7C, 0x4F, 0x6E, 0xA8, 0x77, 0x2A, 0x7D, 0xA6, 0x30, 0x27, 0x19, 0xF5, 0x13, 0xA3, 0xF1, 0xDB, 0x35, 0xF2, 0x47, 0xFC, 0x12, 0xAB, 0xC6, 0x72, 0x6A, 0x7A, 0x06, 0xA5, 0xA7, 0x3B, 0x6E, 0x53, 0x0A, 0x4A, 0x06, 0x7B, 0x8E, 0x3F, 0x95, 0x7E, 0x88, 0xFE, 0xDB, 0x3A, 0x3C, 0x3F, 0x14, 0x7F, 0xE0, 0x99, 0x3F, 0x0E, 0xF5, 0x06, 0x4D, 0xF7, 0x5A, 0x40, 0xD5, 0xB4, 0x19, 0xE4, 0x3C, 0xEE, 0x58, 0xE4, 0x5B, 0x88, 0x87, 0xE0, 0x24, 0x22, 0xBF, 0x44, 0xF6, 0x8B, 0x36, 0xC9, 0xB0, 0x78, 0x99, 0xEA, 0xEA, 0x42, 0x74, 0x65, 0xFF, 0x00, 0x80, 0xB9, 0xC5, 0xBF, 0x49, 0x52, 0x56, 0xFF, 0x00, 0x13, 0xEE, 0x7E, 0x77, 0xEC, 0xDE, 0x4F, 0x9F, 0x63, 0x70, 0xB0, 0xD1, 0x53, 0x9D, 0x3A, 0xF1, 0xF2, 0xF7, 0xD4, 0x26, 0x97, 0xAC, 0x6A, 0xBB, 0xFF, 0x00, 0x85, 0x76, 0x3F, 0x9C, 0xAF, 0x14, 0xD8, 0x1D, 0x37, 0x5B, 0x9E, 0x32, 0x31, 0xB5, 0xC8, 0xAC, 0xEA, 0xEC, 0x3E, 0x34, 0xE9, 0xBF, 0xD9, 0xFE, 0x33, 0xBA, 0x5C, 0x63, 0xE7, 0x26, 0xB8, 0xFA, 0xFE, 0x49, 0xC5, 0x53, 0xF6, 0x75, 0xA5, 0x0E, 0xCC, 0xFE, 0xB2, 0xC3, 0xD4, 0xE7, 0xA7, 0x19, 0x77, 0x41, 0x45, 0x14, 0x57, 0x39, 0xB0, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x57, 0x55, 0xF0, 0x85, 0x37, 0x78, 0xC6, 0xD7, 0xFD, 0xF1, 0x5C, 0xAD, 0x74, 0x9F, 0x0B, 0x6E, 0x7E, 0xCB, 0xE2, 0xDB, 0x56, 0x3F, 0xDF, 0x15, 0xD5, 0x83, 0x76, 0xAF, 0x0B, 0xF7, 0x46, 0x18, 0x9D, 0x69, 0x4B, 0xD0, 0xFE, 0x87, 0xBF, 0x60, 0x08, 0x57, 0x4E, 0xFF, 0x00, 0x82, 0x58, 0xFC, 0x59, 0x99, 0x7E, 0x69, 0x1A, 0xDB, 0x42, 0xB5, 0xC8, 0xEC, 0xAD, 0x76, 0x5C, 0xFE, 0x1F, 0x20, 0x15, 0xF9, 0xE3, 0xFF, 0x00, 0x05, 0x60, 0xB9, 0x92, 0x2F, 0x0F, 0x69, 0x51, 0xA9, 0x3B, 0x4C, 0x0E, 0x71, 0xF8, 0xD7, 0xE8, 0x07, 0xFC, 0x13, 0x2B, 0x58, 0x5F, 0x14, 0xFF, 0x00, 0xC1, 0x38, 0x3E, 0x2C, 0x69, 0x31, 0x0D, 0xF2, 0x49, 0xA0, 0x69, 0xF7, 0xE0, 0x0E, 0xC2, 0xDE, 0xF9, 0x37, 0x1F, 0xC9, 0xAB, 0xE1, 0x5F, 0xF8, 0x2A, 0x57, 0x87, 0x9B, 0x51, 0xF8, 0x7F, 0xA6, 0xDD, 0xA8, 0x27, 0x6A, 0xBC, 0x47, 0xDB, 0xBD, 0x7F, 0x57, 0x66, 0xD0, 0x73, 0xE1, 0xCC, 0xC5, 0x43, 0xBD, 0x37, 0xF2, 0xF6, 0x34, 0x3F, 0xC9, 0x9F, 0xCA, 0x99, 0x4C, 0x95, 0x3E, 0x28, 0xCB, 0x5C, 0xFB, 0x56, 0x5F, 0x3F, 0x6F, 0x5F, 0xFC, 0xD1, 0xF0, 0xC7, 0xEC, 0x99, 0x6E, 0xB7, 0x3F, 0x15, 0xEC, 0x55, 0xBB, 0xDC, 0x27, 0xFE, 0x86, 0x2B, 0xFA, 0x09, 0xFD, 0x97, 0xAD, 0x57, 0x4E, 0xFD, 0x90, 0xBE, 0x3D, 0x6A, 0x11, 0xF1, 0x34, 0x3A, 0x56, 0x95, 0x64, 0x84, 0x75, 0xD9, 0x25, 0xE2, 0x6E, 0xFF, 0x00, 0xD0, 0x45, 0x7F, 0x3C, 0xFF, 0x00, 0xB3, 0x8E, 0xAC, 0x34, 0x3F, 0x89, 0xD6, 0xCE, 0xDF, 0x2F, 0x97, 0x32, 0xB7, 0xE4, 0xC0, 0xD7, 0xF4, 0x21, 0xFB, 0x07, 0xDC, 0xFF, 0x00, 0xC2, 0xC8, 0xF8, 0x29, 0xF1, 0x6F, 0xC3, 0xB6, 0xEE, 0xBE, 0x66, 0xBD, 0xE0, 0xB4, 0xD5, 0x60, 0x5D, 0xDF, 0xEB, 0x1A, 0xD2, 0x68, 0xA6, 0x20, 0x7A, 0x9D, 0xBB, 0x8E, 0x3D, 0x8D, 0x7C, 0x67, 0x86, 0x35, 0x62, 0xB2, 0x3C, 0x4A, 0x7F, 0x66, 0xAD, 0x09, 0x3F, 0xF0, 0xC6, 0xAC, 0x5C, 0xBF, 0x04, 0xCF, 0xB3, 0xF1, 0x3A, 0x94, 0xDE, 0x77, 0x84, 0x6B, 0xED, 0x53, 0xC4, 0x45, 0x7F, 0x8A, 0x54, 0x64, 0xA3, 0xF3, 0xBB, 0x47, 0xE4, 0xCF, 0xFC, 0x15, 0x97, 0x52, 0x98, 0x78, 0x96, 0x28, 0x77, 0x1F, 0x2D, 0x2D, 0x53, 0x03, 0xD3, 0x35, 0xF0, 0x1C, 0xA7, 0x32, 0x37, 0xD6, 0xBF, 0x49, 0xBF, 0xE0, 0xAA, 0xBE, 0x00, 0x93, 0x52, 0xD3, 0xAC, 0x75, 0x48, 0xE3, 0x3B, 0x66, 0x80, 0xC6, 0xC4, 0x0F, 0xE2, 0x5F, 0xFE, 0xB5, 0x7E, 0x6E, 0x5E, 0x42, 0xD6, 0xF7, 0x2E, 0xAD, 0xFC, 0x27, 0x15, 0xF1, 0x1E, 0x2D, 0xE1, 0xEA, 0x53, 0xE2, 0x2A, 0xCE, 0xA7, 0x57, 0x75, 0xE8, 0xCF, 0xB4, 0xF0, 0x97, 0x11, 0x4E, 0xAF, 0x0D, 0xE1, 0xFD, 0x9F, 0x45, 0x67, 0xEA, 0xB4, 0x67, 0xDE, 0xBF, 0xF0, 0x49, 0xBF, 0x1C, 0x59, 0xE8, 0x7F, 0x0E, 0xF5, 0x1B, 0x56, 0x65, 0x59, 0x3E, 0xDE, 0xC6, 0x4E, 0x79, 0xE5, 0x53, 0x07, 0xF4, 0xFD, 0x2B, 0xF4, 0x03, 0xC3, 0x3F, 0x1B, 0xAE, 0xB4, 0xED, 0x3F, 0x64, 0x37, 0x28, 0xCB, 0xB7, 0xAE, 0xEC, 0x57, 0xE2, 0x67, 0xEC, 0xDB, 0xF1, 0xCE, 0x5F, 0x82, 0xDE, 0x2F, 0x69, 0x24, 0x69, 0x3F, 0xB3, 0x2F, 0xB0, 0x97, 0x01, 0x39, 0x31, 0x91, 0xF7, 0x5C, 0x0E, 0xF8, 0xC9, 0xC8, 0xF4, 0x3E, 0xD5, 0xF6, 0xCF, 0x86, 0x7E, 0x39, 0x5C, 0x6B, 0x3A, 0x3C, 0x37, 0x56, 0x37, 0x31, 0xDD, 0x5A, 0xCC, 0xA1, 0x92, 0x48, 0xDF, 0x86, 0x15, 0xFC, 0x3F, 0xE2, 0x17, 0x07, 0xE2, 0x96, 0x6D, 0x3C, 0x75, 0x19, 0x34, 0xAA, 0x6B, 0x7E, 0x9E, 0x6B, 0xD5, 0x7E, 0x47, 0xFA, 0x21, 0xE1, 0x57, 0x88, 0x18, 0x2A, 0xB9, 0x15, 0x2C, 0xB7, 0x11, 0x15, 0x29, 0x51, 0x56, 0x6B, 0xAD, 0x96, 0xCF, 0xD1, 0xAF, 0xC4, 0xFA, 0xA3, 0xE2, 0x5F, 0xC5, 0xB4, 0x78, 0xA5, 0x9E, 0xE2, 0xE1, 0x5E, 0x4C, 0x1C, 0x00, 0x7E, 0xED, 0x7E, 0x73, 0xFF, 0x00, 0xC1, 0x40, 0x7E, 0x21, 0xC3, 0xE2, 0x98, 0x1E, 0x10, 0xC1, 0xB1, 0x28, 0xDB, 0xF5, 0xCF, 0xFF, 0x00, 0xAE, 0xBD, 0x6B, 0xE2, 0x07, 0xC4, 0xDB, 0xA5, 0xD1, 0xAE, 0x2E, 0x2F, 0x2E, 0x96, 0xDE, 0x08, 0xD4, 0xB3, 0x33, 0x36, 0x30, 0x2B, 0xE2, 0x3F, 0x8B, 0xDF, 0x10, 0xFF, 0x00, 0xE1, 0x3C, 0xF1, 0x14, 0x8F, 0x13, 0x33, 0x5A, 0xC6, 0xC7, 0x61, 0x3F, 0xC7, 0xEF, 0x5E, 0x87, 0x86, 0xBC, 0x25, 0x2A, 0x78, 0xCF, 0xAD, 0xCD, 0xDD, 0xC7, 0x76, 0x71, 0x78, 0xB5, 0xC7, 0x54, 0xA5, 0x95, 0xCB, 0x07, 0x1B, 0x2E, 0x75, 0x65, 0x1F, 0x5D, 0xDD, 0xBB, 0x2E, 0xE7, 0x23, 0x5F, 0x62, 0x7F, 0xC1, 0x2E, 0x35, 0x89, 0xAD, 0x7E, 0x2A, 0xE9, 0xA8, 0xB9, 0xDA, 0xF2, 0x6C, 0x39, 0xF4, 0x23, 0x9A, 0xF8, 0xF6, 0x34, 0xDE, 0xE1, 0x7D, 0x4D, 0x7D, 0xDB, 0xFF, 0x00, 0x04, 0xA6, 0xF8, 0x7F, 0x34, 0xDE, 0x34, 0x8F, 0x50, 0x68, 0xFF, 0x00, 0x77, 0x67, 0x13, 0x4A, 0xC4, 0x8E, 0x9C, 0x60, 0x57, 0xF5, 0xFF, 0x00, 0x86, 0xB8, 0x7A, 0x95, 0x78, 0x83, 0x0E, 0xA9, 0xF4, 0x92, 0x7F, 0x73, 0x3F, 0x83, 0xFC, 0x46, 0xC4, 0x53, 0xA5, 0xC3, 0xF8, 0x99, 0x55, 0xDB, 0x92, 0x4B, 0xEF, 0x5A, 0x1F, 0xAF, 0xFA, 0xFC, 0x5F, 0xDA, 0x3F, 0xF0, 0x4D, 0xEF, 0x0D, 0xDC, 0x49, 0xCB, 0x69, 0x7E, 0x39, 0xBD, 0xB6, 0x8B, 0x3D, 0x76, 0xC9, 0x6D, 0x03, 0x9C, 0x7B, 0x66, 0xBF, 0x09, 0x7F, 0xE0, 0xA2, 0x76, 0xAB, 0x6D, 0xF1, 0xBF, 0x5A, 0x55, 0xE8, 0xB7, 0x8D, 0x8F, 0xD0, 0xD7, 0xEE, 0xD7, 0xC5, 0xF8, 0xBF, 0xE1, 0x07, 0xFD, 0x82, 0xFE, 0x15, 0x69, 0x92, 0xC8, 0xAB, 0x71, 0xE2, 0x2D, 0x57, 0x54, 0xF1, 0x04, 0x91, 0xFF, 0x00, 0x12, 0x44, 0xA6, 0x38, 0x10, 0x9F, 0xAF, 0x96, 0xDF, 0x95, 0x7E, 0x07, 0xFE, 0xDC, 0xFE, 0x24, 0x4F, 0x12, 0x7C, 0x5F, 0xD5, 0x26, 0x56, 0x0D, 0xE6, 0xDD, 0xB9, 0xE3, 0xD8, 0xE3, 0xFA, 0x57, 0xEB, 0x1E, 0x27, 0x54, 0x87, 0xF6, 0x13, 0xFE, 0xF6, 0x22, 0xB3, 0x5E, 0x8A, 0x6D, 0x3F, 0xFC, 0x9A, 0xEC, 0xFC, 0x9F, 0xC2, 0xEA, 0x53, 0x59, 0xE6, 0xBF, 0x67, 0x0D, 0x41, 0x4B, 0xD5, 0xC1, 0x49, 0x7F, 0xE4, 0xB6, 0x3D, 0xF7, 0xFE, 0x09, 0x2D, 0x7F, 0x22, 0xF8, 0xB2, 0x48, 0xBF, 0x86, 0x4B, 0x67, 0x07, 0xF0, 0x15, 0xFA, 0xCD, 0xE3, 0x0B, 0x75, 0xBE, 0xFF, 0x00, 0x82, 0x51, 0x5F, 0x48, 0xE0, 0x16, 0xB5, 0xF1, 0xC5, 0xCC, 0x69, 0xBB, 0xD1, 0xAC, 0x22, 0x27, 0x1F, 0x95, 0x7E, 0x58, 0x7F, 0xC1, 0x25, 0xFC, 0x36, 0xC9, 0x7D, 0x7D, 0x78, 0xCB, 0xF2, 0xC3, 0x6B, 0xD7, 0x1D, 0x0B, 0x1C, 0x57, 0xEA, 0x27, 0xC6, 0x9D, 0x41, 0xBC, 0x21, 0xFF, 0x00, 0x04, 0xA8, 0xD3, 0x56, 0x4F, 0x91, 0x75, 0xBF, 0x14, 0x6A, 0x77, 0xC9, 0x9F, 0xE2, 0x58, 0xAD, 0xA1, 0x8B, 0x23, 0xF1, 0xE2, 0xBD, 0xEE, 0x10, 0x84, 0xA1, 0xC3, 0x58, 0x15, 0x3E, 0xB5, 0xAE, 0xBD, 0x14, 0x64, 0xDF, 0xE0, 0x99, 0xE0, 0xF1, 0x8C, 0x94, 0xF8, 0xAB, 0x1D, 0xC9, 0xD2, 0x85, 0x9F, 0xAB, 0x94, 0x12, 0xFC, 0x5A, 0x3F, 0x9E, 0xFF, 0x00, 0xDA, 0x46, 0x31, 0x1F, 0x8F, 0x2F, 0x00, 0xFE, 0xF9, 0xFE, 0x75, 0xE7, 0x35, 0xDE, 0x7C, 0x7F, 0xBF, 0x17, 0xBE, 0x38, 0xBA, 0x6F, 0xF6, 0xCD, 0x70, 0x75, 0xFC, 0xB9, 0x9B, 0x49, 0x3C, 0x65, 0x46, 0xBB, 0xB3, 0xFA, 0x8B, 0x2F, 0x4D, 0x61, 0xA0, 0x9F, 0x64, 0x14, 0x51, 0x45, 0x79, 0xE7, 0x60, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x56, 0x87, 0x86, 0x6F, 0x7E, 0xC3, 0xAC, 0xC1, 0x27, 0xF7, 0x58, 0x1A, 0xCF, 0xA7, 0x44, 0xFE, 0x5C, 0xAA, 0xDE, 0x86, 0xAA, 0x12, 0xE5, 0x92, 0x64, 0xCA, 0x37, 0x56, 0x67, 0xEF, 0x97, 0xFC, 0x1B, 0xCF, 0xF1, 0x1E, 0x2F, 0x1B, 0xA6, 0xA1, 0xE0, 0x89, 0xA6, 0x88, 0x2F, 0x8C, 0xB4, 0x3B, 0xFF, 0x00, 0x0F, 0x7E, 0xF4, 0xFC, 0xA8, 0xD3, 0x40, 0x64, 0x84, 0xFD, 0x7C, 0xD8, 0x80, 0x1E, 0xE6, 0xBC, 0xBB, 0xF6, 0xE0, 0xF8, 0x69, 0x2F, 0x89, 0x3E, 0x0D, 0x6B, 0x56, 0x4F, 0x0F, 0xFA, 0x5E, 0x8D, 0x2B, 0x33, 0x29, 0x1F, 0x32, 0xEC, 0x25, 0x5F, 0xF4, 0xCD, 0x7C, 0xCB, 0xFF, 0x00, 0x04, 0x74, 0xFD, 0xA7, 0x2E, 0x3E, 0x12, 0xFC, 0x60, 0xD1, 0xAE, 0x2D, 0xEE, 0x04, 0x77, 0x16, 0xD7, 0x31, 0x5C, 0x41, 0x93, 0xC7, 0x9D, 0x13, 0x89, 0x13, 0x3E, 0xC4, 0xAE, 0xDF, 0xF8, 0x15, 0x7E, 0xAA, 0x7F, 0xC1, 0x41, 0x3E, 0x1B, 0x69, 0xE3, 0xE2, 0xA3, 0x78, 0x93, 0x4D, 0x8D, 0x64, 0xF0, 0x9F, 0xC5, 0x0B, 0x05, 0xD7, 0x2C, 0x08, 0x50, 0x13, 0xF7, 0xAB, 0xFB, 0xE8, 0xB1, 0xD0, 0x6D, 0x72, 0x46, 0x2B, 0xFA, 0xDB, 0x82, 0xF1, 0x54, 0xB3, 0x3C, 0x0A, 0xC3, 0xCD, 0xE9, 0x88, 0xA5, 0xC9, 0xFF, 0x00, 0x6F, 0xD2, 0xBF, 0xE2, 0xE1, 0x28, 0xB5, 0xE5, 0x07, 0xD8, 0xFE, 0x4F, 0xE3, 0x8C, 0x2D, 0x5C, 0xAF, 0x30, 0xFA, 0xE5, 0x35, 0xAE, 0x1E, 0xB2, 0xA9, 0xEB, 0x4E, 0xAD, 0xBF, 0x05, 0x52, 0x12, 0x4F, 0xFE, 0xBE, 0x2E, 0xE7, 0xF3, 0xB7, 0x2F, 0x99, 0xE0, 0x8F, 0x88, 0xED, 0xB8, 0x6C, 0xD9, 0x2F, 0xF5, 0xAF, 0xDA, 0x3F, 0xF8, 0x24, 0x0F, 0xED, 0x65, 0x6B, 0xE1, 0x1D, 0x43, 0xC1, 0xFE, 0x20, 0xBA, 0x64, 0xB8, 0xB5, 0xD1, 0x66, 0xFE, 0xCE, 0xD5, 0xA2, 0x6F, 0x98, 0x49, 0x65, 0x3A, 0x98, 0xE4, 0xC8, 0xEE, 0x02, 0x3B, 0x1F, 0xAA, 0x0A, 0xFC, 0xB9, 0xFD, 0xBA, 0xFE, 0x03, 0x5C, 0x7C, 0x2F, 0xF8, 0x8B, 0x7C, 0xAB, 0x1B, 0x79, 0x71, 0xC9, 0x94, 0x7C, 0x7D, 0xF4, 0x3C, 0xA9, 0xFC, 0x46, 0x2B, 0xA3, 0xFF, 0x00, 0x82, 0x7F, 0x7E, 0xD4, 0xCD, 0xF0, 0xB3, 0xC5, 0x91, 0x5B, 0xDE, 0xC8, 0xCD, 0x63, 0x71, 0x88, 0x2E, 0x63, 0xCF, 0x54, 0x3D, 0xFE, 0xA3, 0xAF, 0xE7, 0x5F, 0x96, 0xF0, 0x86, 0x2E, 0x19, 0x26, 0x75, 0x5F, 0x29, 0xCC, 0xF4, 0xA5, 0x55, 0x4A, 0x9C, 0xBC, 0x93, 0xD2, 0xFF, 0x00, 0x23, 0xF5, 0x6E, 0x30, 0xC1, 0x4F, 0x3B, 0xC9, 0x68, 0xE6, 0xB9, 0x5B, 0xBD, 0x5A, 0x4E, 0x35, 0x21, 0xE6, 0xD6, 0xB6, 0xF9, 0xAE, 0x87, 0xEA, 0x37, 0xFC, 0x14, 0xC3, 0xF6, 0x41, 0xFE, 0xC6, 0xF1, 0x17, 0x89, 0xBC, 0x1F, 0xF2, 0xDC, 0x40, 0xE7, 0xFB, 0x4F, 0x42, 0xBA, 0xE3, 0x6D, 0xD5, 0xBC, 0x9F, 0x3C, 0x6C, 0xA7, 0xA7, 0x2A, 0x71, 0xED, 0x5F, 0x88, 0x7F, 0x1D, 0xFE, 0x16, 0xDD, 0x78, 0x13, 0xC5, 0x57, 0x51, 0xC9, 0x0B, 0xC7, 0xB6, 0x42, 0x0A, 0xB0, 0xC1, 0x07, 0xB8, 0xAF, 0xE8, 0x9F, 0xE1, 0x97, 0xC4, 0x4D, 0x0F, 0xF6, 0xCE, 0xFD, 0x9F, 0x34, 0xEF, 0x02, 0xEA, 0x7A, 0xA5, 0xAD, 0xBF, 0x8D, 0xFC, 0x2F, 0x6E, 0xD3, 0x78, 0x33, 0x55, 0x99, 0xC0, 0x8F, 0x54, 0xB6, 0xC6, 0xE3, 0x61, 0x23, 0x7A, 0xE3, 0xEE, 0x9F, 0x50, 0x2B, 0xF2, 0x53, 0xFE, 0x0A, 0x9F, 0xA5, 0xF8, 0x77, 0x44, 0xD4, 0x24, 0x4B, 0xC4, 0x6D, 0x37, 0xC5, 0xD1, 0xCA, 0x61, 0xBB, 0xB0, 0x64, 0xC3, 0x36, 0x38, 0x2C, 0xC3, 0xF8, 0x48, 0xF5, 0xEF, 0x5F, 0x4D, 0xE2, 0x36, 0x0E, 0x86, 0x3B, 0x03, 0xCF, 0x8A, 0x9A, 0x58, 0xAC, 0x3A, 0x4A, 0x5D, 0x3D, 0xA4, 0x7E, 0xCC, 0xE3, 0xDF, 0x99, 0x6B, 0xE4, 0xEF, 0x1E, 0x8A, 0xFF, 0x00, 0x37, 0xE1, 0xBE, 0x22, 0xBE, 0x07, 0x16, 0xE9, 0xE1, 0xA0, 0xDE, 0x16, 0xBB, 0x72, 0x8A, 0xEB, 0x4E, 0x5F, 0x6A, 0x9C, 0xBB, 0x72, 0xBD, 0x3C, 0xD5, 0xA5, 0xD5, 0xDB, 0xE0, 0x0A, 0xFA, 0x8B, 0xE1, 0xAD, 0x84, 0xBA, 0x37, 0x84, 0x34, 0xD8, 0x95, 0xA4, 0x8D, 0xA3, 0xB7, 0x5E, 0x01, 0xEF, 0x8C, 0xD7, 0xCD, 0x16, 0x96, 0x9F, 0x6F, 0xD6, 0x60, 0x81, 0x57, 0x77, 0x9D, 0x32, 0xA0, 0x03, 0xBE, 0x48, 0x15, 0xF5, 0xEE, 0x91, 0xA4, 0x79, 0x56, 0xB0, 0xC7, 0xB7, 0xEE, 0x20, 0x5C, 0x7D, 0x05, 0x7F, 0x1F, 0xF1, 0x8D, 0x75, 0x18, 0x53, 0xA6, 0xFA, 0xDD, 0xFD, 0xD6, 0xFF, 0x00, 0x33, 0xFB, 0x23, 0xC3, 0xBC, 0x2B, 0x9D, 0x5A, 0xB5, 0x57, 0x44, 0x97, 0xDF, 0x77, 0xFA, 0x1C, 0xAF, 0xC4, 0x8B, 0x59, 0xB5, 0x6F, 0x09, 0x6A, 0x50, 0xB4, 0x92, 0x48, 0x64, 0x81, 0x80, 0xDC, 0xD9, 0xC1, 0xC5, 0x7C, 0xC3, 0x5F, 0x5F, 0xEB, 0xDA, 0x57, 0x99, 0x63, 0x34, 0x78, 0xC8, 0x65, 0x23, 0xF3, 0x15, 0xF2, 0x45, 0xF5, 0xA7, 0xF6, 0x7E, 0xA7, 0x35, 0xBB, 0x7F, 0xCB, 0x19, 0x1A, 0x33, 0xF8, 0x1C, 0x55, 0x70, 0x7D, 0x65, 0x2A, 0x75, 0x20, 0xBB, 0xA6, 0x4F, 0x88, 0x58, 0x77, 0x0A, 0xB4, 0xAA, 0x3E, 0xA9, 0xAF, 0xBA, 0xDF, 0xE6, 0x74, 0x9F, 0x0B, 0x7C, 0x05, 0x71, 0xE3, 0x1D, 0x7A, 0x18, 0xE3, 0x8D, 0x99, 0x59, 0x86, 0x78, 0xAF, 0xD8, 0xEF, 0xF8, 0x27, 0x07, 0xEC, 0x89, 0xA8, 0x2D, 0xB7, 0x87, 0xFC, 0x2F, 0x63, 0x6B, 0x9D, 0x7B, 0xC5, 0x57, 0x11, 0xC6, 0xCA, 0x46, 0x3C, 0x88, 0xF8, 0xFB, 0xC7, 0xB0, 0x0B, 0x92, 0x73, 0xD2, 0xBE, 0x09, 0xFF, 0x00, 0x82, 0x67, 0x43, 0xE1, 0x7D, 0x4F, 0xC6, 0xAA, 0xBA, 0x83, 0x0B, 0x8D, 0x62, 0x26, 0x5F, 0xB0, 0x58, 0xEC, 0xCF, 0xDA, 0x18, 0xF7, 0x1F, 0xDE, 0x23, 0xB2, 0xD7, 0xED, 0xC6, 0x83, 0xAA, 0xDA, 0xFE, 0xC2, 0x1F, 0x04, 0x6E, 0x2E, 0xE6, 0xB8, 0x87, 0xFE, 0x17, 0x0F, 0x8D, 0xAC, 0x4C, 0x69, 0x1A, 0xB0, 0x27, 0xC2, 0x7A, 0x7B, 0x8F, 0x99, 0x98, 0xFF, 0x00, 0x0C, 0xEE, 0xBD, 0xBB, 0x7E, 0x15, 0xFD, 0x69, 0xE1, 0x7E, 0x0E, 0x86, 0x0B, 0x0F, 0xF5, 0xDA, 0x0D, 0x4F, 0x15, 0x56, 0xF1, 0xA7, 0x1F, 0xE5, 0x7D, 0x67, 0x2E, 0xD1, 0x8A, 0xD5, 0xF9, 0x69, 0xBC, 0x92, 0x3F, 0x90, 0x7C, 0x50, 0xC4, 0x57, 0xC6, 0xD5, 0x58, 0x2A, 0xC9, 0xC3, 0x0B, 0x4E, 0xD2, 0xAB, 0x2E, 0xB2, 0x4B, 0x68, 0x47, 0xBC, 0xA4, 0xF4, 0x5E, 0x7A, 0xEC, 0x99, 0xE4, 0xFF, 0x00, 0xF0, 0x56, 0xDF, 0xDA, 0x13, 0x48, 0xD0, 0x35, 0x2D, 0x5A, 0xD7, 0x45, 0xB8, 0x56, 0xD0, 0x3C, 0x0B, 0xA5, 0xC5, 0xE1, 0x3D, 0x19, 0x86, 0x14, 0x4E, 0x61, 0x52, 0xB2, 0x48, 0x31, 0xC6, 0x5A, 0x43, 0x2B, 0x64, 0x75, 0x00, 0x57, 0xE0, 0xCF, 0xC4, 0x0D, 0x5E, 0x4F, 0x1C, 0x7C, 0x45, 0x93, 0x69, 0x69, 0x37, 0xCB, 0xD7, 0xD7, 0x9A, 0xFA, 0xBF, 0xFE, 0x0A, 0x37, 0xFB, 0x58, 0x43, 0xE2, 0xDD, 0x45, 0xB4, 0x5D, 0x2E, 0xE3, 0x7E, 0x9F, 0x62, 0x0A, 0x21, 0x07, 0xFD, 0x73, 0x9F, 0xBC, 0xFF, 0x00, 0x8E, 0x30, 0x3E, 0x9E, 0xF5, 0xF3, 0xE7, 0xEC, 0xB1, 0xF0, 0x92, 0xF7, 0xE2, 0x87, 0xC4, 0x4B, 0x44, 0x8E, 0x16, 0x91, 0xE7, 0x94, 0x05, 0xE3, 0xB9, 0x3F, 0xCB, 0xBD, 0x78, 0xFC, 0x79, 0x8E, 0x86, 0x61, 0x8F, 0xC3, 0xE4, 0x59, 0x7B, 0x73, 0x85, 0x14, 0xA3, 0x7F, 0xE6, 0x97, 0xDA, 0x97, 0xAB, 0x7B, 0xF7, 0x3D, 0x7E, 0x01, 0xCB, 0xEA, 0x65, 0xF8, 0x0C, 0x46, 0x79, 0x98, 0xA5, 0x0A, 0x95, 0x9B, 0x9B, 0x5F, 0xCB, 0x1B, 0x7B, 0xB1, 0xF4, 0x8C, 0x74, 0xF2, 0xD8, 0xFD, 0x08, 0xFF, 0x00, 0x82, 0x75, 0x7C, 0x39, 0x6F, 0x07, 0xFC, 0x20, 0x92, 0xF9, 0xA3, 0x2B, 0x26, 0xA0, 0xE1, 0x63, 0xE3, 0x92, 0xAB, 0xC7, 0xFE, 0x85, 0x5F, 0x5A, 0x7F, 0xC1, 0x61, 0x7C, 0x5E, 0xBF, 0x06, 0x3F, 0x63, 0xAF, 0x86, 0xFE, 0x05, 0x69, 0x91, 0x66, 0xD2, 0xFC, 0x30, 0x2F, 0xAE, 0x10, 0x70, 0x62, 0xB9, 0xD4, 0x25, 0x79, 0xD9, 0x5B, 0xFD, 0xA1, 0x18, 0x4A, 0x93, 0xF6, 0x14, 0xFD, 0x9D, 0xAD, 0xFC, 0x6F, 0xF1, 0x3F, 0xC2, 0x7E, 0x11, 0x55, 0xF2, 0xB4, 0x4D, 0x25, 0x45, 0xE6, 0xA9, 0x37, 0xDD, 0x58, 0x6D, 0x60, 0x1B, 0xE5, 0x72, 0x7A, 0x64, 0x81, 0x5F, 0x1D, 0xFF, 0x00, 0xC1, 0x78, 0x7F, 0x6C, 0x25, 0xF8, 0xCD, 0xF1, 0x93, 0x5E, 0xBA, 0xB7, 0x93, 0x6D, 0xBD, 0xD5, 0xCB, 0xC9, 0x0C, 0x43, 0x8F, 0x2E, 0x10, 0x04, 0x76, 0xE9, 0x8F, 0xF6, 0x61, 0x44, 0xFC, 0xCD, 0x7E, 0xA9, 0xC4, 0x13, 0xA7, 0x93, 0xE5, 0xB4, 0xF0, 0x69, 0xFF, 0x00, 0xBB, 0x52, 0x72, 0x7F, 0xF5, 0xF2, 0xA2, 0x74, 0xE2, 0xBE, 0xE7, 0x55, 0xFA, 0x25, 0xDC, 0xFC, 0xA3, 0x86, 0xE3, 0x53, 0x3A, 0xCD, 0x6A, 0xE3, 0x9A, 0xFF, 0x00, 0x79, 0xAB, 0x18, 0xAF, 0xFA, 0xF7, 0x49, 0xAA, 0x92, 0x7F, 0xF8, 0x12, 0xA5, 0x1F, 0x56, 0xFB, 0x1F, 0x96, 0xFF, 0x00, 0x11, 0xB5, 0x2F, 0xED, 0x3F, 0x14, 0x5D, 0x49, 0x9C, 0xE5, 0xCD, 0x60, 0xD4, 0xD7, 0xF7, 0x06, 0xEA, 0xEE, 0x49, 0x09, 0xCE, 0xE3, 0x9A, 0x86, 0xBF, 0x91, 0x6B, 0x54, 0xE7, 0x9B, 0x9F, 0x76, 0x7F, 0x5A, 0xD3, 0x8F, 0x2C, 0x54, 0x42, 0x8A, 0x28, 0xAC, 0xCB, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3D, 0x03, 0xE0, 0x17, 0xC4, 0x69, 0xBC, 0x07, 0xE3, 0x0B, 0x59, 0xE3, 0x95, 0xA2, 0x31, 0xC8, 0xAC, 0x18, 0x1F, 0xBA, 0x41, 0xC8, 0x35, 0xFD, 0x07, 0x7E, 0xC0, 0xDF, 0x15, 0xEC, 0x7F, 0xE0, 0xA0, 0x1F, 0xB1, 0xC4, 0xDF, 0x0E, 0x5A, 0x68, 0x4F, 0x8C, 0x7C, 0x3F, 0xBF, 0x57, 0xF0, 0xB1, 0x67, 0x00, 0xC9, 0x30, 0x19, 0xB8, 0xB2, 0xCF, 0xA3, 0x8C, 0x95, 0xC9, 0xC7, 0x4A, 0xFE, 0x6D, 0x6D, 0xE7, 0x6B, 0x79, 0x95, 0x94, 0xF2, 0xA6, 0xBE, 0xCE, 0xFF, 0x00, 0x82, 0x6D, 0x7E, 0xDC, 0xBA, 0x9F, 0xEC, 0xFB, 0xF1, 0x17, 0x4C, 0xBC, 0xB7, 0xBE, 0x9A, 0xD5, 0xAD, 0x67, 0x49, 0x15, 0xE3, 0x6C, 0x34, 0x6C, 0xA4, 0x15, 0x75, 0xF7, 0x07, 0xF3, 0xE9, 0x5F, 0xA7, 0xF8, 0x7B, 0xC4, 0x9F, 0x56, 0xAB, 0xF5, 0x1A, 0xB3, 0xE5, 0x52, 0x6A, 0x50, 0x93, 0xDA, 0x33, 0x8F, 0xC2, 0xDF, 0x93, 0xBB, 0x8C, 0x97, 0x58, 0xC9, 0xA3, 0xF3, 0x7E, 0x3F, 0xE1, 0xBF, 0xAE, 0x51, 0xFA, 0xDD, 0x38, 0x73, 0xB8, 0xA7, 0x19, 0x45, 0x6F, 0x3A, 0x72, 0xF8, 0xA2, 0x9F, 0xF3, 0x68, 0xA5, 0x07, 0xD2, 0x71, 0x8B, 0xEE, 0x7D, 0x85, 0xFB, 0x69, 0x7E, 0xCD, 0xAB, 0xF1, 0x93, 0xC1, 0x57, 0x1B, 0x6D, 0x9A, 0x3D, 0x73, 0x4B, 0x0C, 0x86, 0x27, 0x4D, 0xAE, 0xC0, 0x67, 0x74, 0x64, 0x1E, 0x43, 0x03, 0x9E, 0x3E, 0xB5, 0xF9, 0x51, 0xE3, 0xAF, 0x0A, 0x5F, 0x7C, 0x2D, 0xF1, 0x64, 0x98, 0x59, 0x22, 0x31, 0xC8, 0x7A, 0x8C, 0x11, 0x83, 0xDE, 0xBF, 0xA3, 0x7F, 0x8B, 0xDA, 0x56, 0x8B, 0xFB, 0x69, 0x7C, 0x27, 0x6F, 0x8D, 0x1F, 0x0F, 0x63, 0xB7, 0x6D, 0x66, 0x38, 0x56, 0x4F, 0x18, 0xE8, 0x76, 0x83, 0x2C, 0x92, 0x11, 0xFF, 0x00, 0x1F, 0xF0, 0xA0, 0xE4, 0xC6, 0xFD, 0x58, 0x76, 0x39, 0xEF, 0x9C, 0x7E, 0x3D, 0xFF, 0x00, 0xC1, 0x52, 0x7C, 0x2D, 0xE1, 0x6D, 0x35, 0xED, 0xF5, 0x3B, 0x3B, 0x88, 0x61, 0xD6, 0x2F, 0x98, 0x99, 0xAC, 0xD0, 0x67, 0x78, 0xC7, 0xFA, 0xDF, 0xF6, 0x7D, 0x39, 0xEB, 0xF8, 0x57, 0xE8, 0x3E, 0x25, 0x65, 0xB8, 0x4C, 0xCF, 0x07, 0xFD, 0xB5, 0x46, 0xD4, 0xEB, 0xD3, 0xB2, 0xA9, 0x16, 0xD5, 0xD3, 0xD3, 0xEF, 0xEF, 0x16, 0xB4, 0x94, 0x5A, 0x68, 0xF8, 0x1F, 0x0C, 0x71, 0xD8, 0xDC, 0xB3, 0x13, 0xFD, 0x8B, 0x5A, 0xF5, 0x28, 0x4F, 0x5A, 0x73, 0x4B, 0x47, 0x1F, 0x35, 0xD3, 0xB3, 0x4F, 0x58, 0xCA, 0xF1, 0x67, 0x91, 0xFC, 0x2F, 0xFF, 0x00, 0x82, 0x82, 0x78, 0x93, 0xE1, 0x87, 0x85, 0xE4, 0xB1, 0xB7, 0x91, 0xA6, 0x45, 0x1B, 0xED, 0x8B, 0x48, 0xCA, 0xD6, 0x92, 0x8E, 0x8E, 0x8C, 0x39, 0x18, 0x3C, 0xE3, 0xF9, 0x57, 0x09, 0xFB, 0x40, 0x7E, 0xD6, 0x3A, 0xDF, 0xED, 0x41, 0x24, 0x37, 0xBE, 0x33, 0x11, 0x6A, 0x1E, 0x20, 0xB5, 0x41, 0x12, 0xEA, 0xF1, 0xAF, 0x97, 0x3D, 0xCA, 0x0E, 0x82, 0x50, 0x38, 0x6C, 0x74, 0x07, 0xAD, 0x79, 0x44, 0x87, 0xE7, 0x6A, 0x6D, 0x7E, 0x07, 0x8E, 0xCE, 0x31, 0x78, 0xB8, 0x42, 0x9D, 0x79, 0xB9, 0x28, 0x2B, 0x2B, 0xF4, 0x5D, 0x8F, 0xDD, 0xF0, 0x99, 0x6E, 0x1B, 0x0D, 0x29, 0x4E, 0x8C, 0x14, 0x5C, 0x9D, 0xDD, 0xBA, 0xB3, 0xA4, 0xF8, 0x49, 0xA2, 0xC9, 0xAF, 0xFC, 0x4B, 0xD1, 0xED, 0xE3, 0x8D, 0xA6, 0xFF, 0x00, 0x49, 0x59, 0x18, 0x0E, 0xCA, 0xBF, 0x31, 0x3F, 0x86, 0x2B, 0xEC, 0xAD, 0x2F, 0x49, 0xDC, 0x3A, 0x7E, 0x9D, 0x6B, 0xE5, 0x9F, 0xD9, 0x47, 0x4B, 0x7D, 0x4F, 0xE3, 0x15, 0xA1, 0x50, 0xDB, 0x6D, 0xE1, 0x92, 0x56, 0xC1, 0xC7, 0x18, 0xDB, 0xFC, 0xD8, 0x57, 0xD9, 0xFA, 0x26, 0x8F, 0x91, 0xF7, 0x7B, 0x57, 0xE2, 0x7C, 0x7D, 0x8C, 0xE5, 0xC5, 0x42, 0x9F, 0x68, 0xFE, 0x6D, 0xFF, 0x00, 0xC0, 0x3F, 0xA1, 0xFC, 0x29, 0xCB, 0x9C, 0xF0, 0x35, 0x2A, 0xB5, 0xF1, 0x4E, 0xDF, 0x24, 0x97, 0xEA, 0xD9, 0xC5, 0xEB, 0x7A, 0x59, 0x08, 0xD9, 0x1D, 0xAB, 0xE3, 0xCF, 0x89, 0xBA, 0x33, 0xE8, 0xFE, 0x3F, 0xD5, 0x61, 0x65, 0xDB, 0xFE, 0x90, 0xD2, 0x0C, 0xF1, 0x90, 0xDF, 0x30, 0xFE, 0x75, 0xF7, 0x4F, 0x88, 0xF4, 0x9D, 0xA1, 0xBE, 0x5A, 0xF8, 0xDF, 0xF6, 0x9A, 0xD3, 0x9F, 0x4E, 0xF8, 0xB1, 0x75, 0xBB, 0x76, 0xD9, 0xA2, 0x8E, 0x44, 0x07, 0xB0, 0xC1, 0x1F, 0xCC, 0x1A, 0xDB, 0x80, 0xF1, 0x9C, 0xD8, 0x89, 0xD3, 0xEF, 0x1F, 0xC9, 0xA3, 0x0F, 0x14, 0xB2, 0xF7, 0x0C, 0x25, 0x3A, 0xA9, 0x7C, 0x32, 0xFC, 0x1A, 0x7F, 0xAA, 0x46, 0xA7, 0xEC, 0xCD, 0xFB, 0x49, 0xDC, 0x7E, 0xCB, 0x3E, 0x28, 0xFF, 0x00, 0x84, 0x93, 0x41, 0xB1, 0xB4, 0xB9, 0xF1, 0x54, 0x20, 0x8B, 0x0B, 0xDB, 0xA5, 0xF3, 0x23, 0xD3, 0x58, 0xF1, 0xE6, 0x22, 0x74, 0x2E, 0x3B, 0x13, 0xC0, 0x3F, 0x95, 0x7B, 0x4F, 0xC4, 0xCF, 0xF8, 0x2A, 0x0F, 0x8A, 0xBE, 0x26, 0xF8, 0x2D, 0xAD, 0x75, 0x0B, 0x87, 0x6D, 0x52, 0xF4, 0x16, 0xD4, 0xAF, 0xCC, 0xA5, 0xA6, 0xBF, 0x6F, 0x73, 0xFC, 0x23, 0xD8, 0x7E, 0x83, 0x8A, 0xF9, 0x06, 0x9D, 0xBC, 0xE6, 0xBF, 0x69, 0xCB, 0x33, 0xCC, 0x66, 0x5E, 0xA6, 0xB0, 0xB3, 0xE5, 0xE7, 0x56, 0x76, 0xED, 0xDA, 0xE7, 0xF3, 0xDE, 0x61, 0x94, 0x61, 0x71, 0xAE, 0x0F, 0x13, 0x1E, 0x6E, 0x57, 0x75, 0x7E, 0xFD, 0xEC, 0x76, 0x76, 0x51, 0x5F, 0xFC, 0x51, 0xF1, 0x42, 0xEE, 0xDC, 0xFE, 0x63, 0x7D, 0x78, 0xAF, 0xD3, 0x1F, 0xD8, 0x1F, 0xF6, 0x65, 0x87, 0xE1, 0x57, 0x84, 0xE2, 0xD7, 0xAF, 0xE0, 0xD9, 0x7D, 0x75, 0x17, 0xFA, 0x3A, 0x30, 0xE6, 0x34, 0x23, 0x97, 0x3E, 0xE7, 0xA7, 0xD3, 0x35, 0xF1, 0x1F, 0xEC, 0x06, 0xFA, 0x0D, 0xDF, 0xC4, 0xC8, 0x57, 0x57, 0x74, 0x69, 0x20, 0xC3, 0xC1, 0x6E, 0xC3, 0x89, 0xD8, 0x7A, 0x9F, 0x6E, 0xB8, 0xEF, 0x5F, 0xB9, 0x3F, 0xB2, 0x37, 0xC3, 0xCD, 0x03, 0xC1, 0x9F, 0x0F, 0x47, 0xC6, 0x4F, 0x89, 0x11, 0xC7, 0x1F, 0x83, 0xF4, 0x53, 0xBB, 0x45, 0xD2, 0xA4, 0x21, 0x1F, 0xC4, 0x57, 0x88, 0x32, 0x88, 0x01, 0xE9, 0x02, 0x11, 0xB9, 0x9B, 0x18, 0xC2, 0xFA, 0x66, 0xBF, 0x63, 0xF0, 0xB7, 0x0F, 0x81, 0xC3, 0xC6, 0x59, 0xCE, 0x2F, 0xDF, 0xAB, 0x7B, 0x42, 0x2B, 0x56, 0xE4, 0xF6, 0x4B, 0xCD, 0xF4, 0xE8, 0xB5, 0x93, 0xB2, 0x57, 0x3F, 0x22, 0xF1, 0x4A, 0xA6, 0x3F, 0x15, 0x08, 0xE4, 0xF8, 0x4F, 0xDD, 0xD3, 0x6A, 0xF3, 0x9B, 0xD1, 0x28, 0x2D, 0xDB, 0xF2, 0x5D, 0x7A, 0xBF, 0x85, 0x5D, 0xB3, 0x5B, 0xE2, 0xBF, 0x8B, 0x6D, 0x7F, 0xE0, 0x9F, 0xBF, 0xB1, 0x06, 0xA5, 0x71, 0xAA, 0x38, 0xB5, 0xF1, 0xE7, 0xC5, 0x0B, 0x31, 0x2D, 0xC4, 0x4D, 0xF2, 0xCD, 0xA5, 0xE9, 0x1D, 0x52, 0x33, 0xDD, 0x5E, 0x63, 0xDB, 0x82, 0x01, 0xAF, 0xE7, 0xEB, 0xF6, 0xB4, 0xF8, 0xCB, 0x71, 0xF1, 0x3B, 0xC7, 0x97, 0xD7, 0x12, 0x4B, 0xB9, 0xA6, 0x94, 0xBB, 0x60, 0xF0, 0x3D, 0x87, 0xB0, 0xE8, 0x3E, 0x95, 0xF5, 0x97, 0xFC, 0x15, 0xAB, 0xFE, 0x0A, 0x39, 0xAA, 0x7E, 0xD2, 0xFF, 0x00, 0x13, 0x35, 0x6B, 0xC9, 0xAF, 0xBC, 0xEF, 0xB5, 0x4C, 0xCD, 0xF2, 0x70, 0x9E, 0x8A, 0x14, 0x76, 0x45, 0x1C, 0x28, 0xF4, 0x15, 0xF9, 0xE1, 0xA8, 0xDF, 0x3E, 0xA3, 0x76, 0xF2, 0xB9, 0xCB, 0x31, 0xCF, 0x35, 0xE0, 0xF8, 0x8D, 0xC4, 0xD2, 0xAF, 0x27, 0x81, 0x8C, 0x94, 0xA4, 0xE4, 0xE5, 0x51, 0xAD, 0x9C, 0xDA, 0x4A, 0xCB, 0xFB, 0xB0, 0x8A, 0x51, 0x8F, 0x74, 0x9C, 0xB7, 0x93, 0x3D, 0xBF, 0x0E, 0xF8, 0x66, 0x38, 0x5A, 0x6B, 0x16, 0xE0, 0xE3, 0x15, 0x15, 0x1A, 0x71, 0x7B, 0xA8, 0x27, 0x7B, 0xCB, 0xFB, 0xF3, 0x93, 0x73, 0x97, 0x66, 0xD4, 0x76, 0x8A, 0x20, 0xA2, 0x8A, 0x2B, 0xF2, 0x33, 0xF5, 0x50, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xAB, 0x9A, 0x2E, 0xB3, 0x36, 0x89, 0x7A, 0x93, 0x44, 0xCC, 0xAC, 0xA7, 0x23, 0x06, 0xA9, 0xD1, 0x55, 0x19, 0x38, 0xBB, 0xA1, 0x4A, 0x29, 0xAB, 0x33, 0xED, 0x0F, 0xD8, 0xA3, 0xFE, 0x0A, 0xDF, 0xE3, 0x7F, 0xD8, 0xCB, 0x54, 0x8F, 0x51, 0xF0, 0xFD, 0xD0, 0x92, 0x48, 0x51, 0x97, 0xEC, 0xF3, 0x31, 0x30, 0xC8, 0x0F, 0x55, 0x71, 0xFC, 0x48, 0xDD, 0xD7, 0xA1, 0xEB, 0xD6, 0xB9, 0xBF, 0xDB, 0xEF, 0xE3, 0x67, 0x81, 0x7F, 0x6D, 0x0D, 0x6D, 0xFE, 0x24, 0x78, 0x3A, 0xDA, 0x4F, 0x09, 0x78, 0x93, 0x50, 0x01, 0xBC, 0x45, 0xE1, 0x89, 0x24, 0xDD, 0x6C, 0xB3, 0xF7, 0x9E, 0xD0, 0x9E, 0x91, 0xB7, 0x74, 0xED, 0xC7, 0xBD, 0x7C, 0xA6, 0x0E, 0x29, 0x55, 0x8A, 0xB6, 0x41, 0xC1, 0xF5, 0xAF, 0x53, 0x1B, 0x9E, 0x62, 0xF1, 0x54, 0xE3, 0x4A, 0xBC, 0xAE, 0xA2, 0xAC, 0xBD, 0x3A, 0x27, 0xDD, 0x2E, 0x97, 0xDA, 0xEE, 0xDB, 0x9E, 0x76, 0x13, 0x29, 0xC3, 0x61, 0xA7, 0x2A, 0x94, 0x63, 0x67, 0x27, 0x77, 0xEB, 0xD5, 0xF9, 0x37, 0xD6, 0xDB, 0xD9, 0x5F, 0x61, 0x08, 0xDA, 0x68, 0xA1, 0x9B, 0x71, 0xA2, 0xBC, 0x93, 0xD2, 0x3D, 0xDF, 0xF6, 0x10, 0xF0, 0xF9, 0xD4, 0x7C, 0x6D, 0xAB, 0x5E, 0x6D, 0xCA, 0xDB, 0x5B, 0x2C, 0x5B, 0xBB, 0x82, 0xED, 0x9F, 0xFD, 0x92, 0xBE, 0xCF, 0xF0, 0xD6, 0x85, 0xB9, 0x47, 0x1D, 0xBF, 0x3A, 0xF9, 0xC7, 0xFE, 0x09, 0xE7, 0xE0, 0xC9, 0xA2, 0xF0, 0x8E, 0xA9, 0xAA, 0x4B, 0x01, 0x8E, 0x3D, 0x42, 0xE9, 0x52, 0x17, 0x23, 0xFD, 0x62, 0xC6, 0x0E, 0x7F, 0x00, 0x58, 0xFE, 0x39, 0xAF, 0xB1, 0x3C, 0x21, 0xE1, 0xEF, 0x31, 0x07, 0xCB, 0xDA, 0xBF, 0x9C, 0xBC, 0x46, 0xCC, 0x97, 0xF6, 0xA5, 0x54, 0x9F, 0xC3, 0x65, 0xF7, 0x25, 0xFA, 0xDC, 0xFE, 0xBE, 0xF0, 0x93, 0x29, 0xFF, 0x00, 0x84, 0x3A, 0x12, 0x6B, 0x59, 0x5D, 0xFD, 0xF2, 0x76, 0xFC, 0x2C, 0x79, 0xAF, 0x8B, 0x74, 0x6D, 0x9B, 0xBE, 0x5A, 0xF8, 0xD3, 0xF6, 0xD3, 0xD1, 0x3E, 0xC1, 0xE3, 0x9D, 0x36, 0xEB, 0x1F, 0x2D, 0xC5, 0xB1, 0x8B, 0xFE, 0xF8, 0x62, 0x7F, 0xF6, 0x7A, 0xFB, 0xEF, 0xC7, 0x7A, 0x0F, 0x96, 0x24, 0xF9, 0x7D, 0x6B, 0xE3, 0x5F, 0xDB, 0xCF, 0x40, 0x6F, 0xEC, 0xBD, 0x1E, 0xF4, 0x03, 0xB6, 0xDE, 0x79, 0x22, 0x27, 0xD3, 0x78, 0x07, 0xFF, 0x00, 0x64, 0xAE, 0xCF, 0x0E, 0xF3, 0x0B, 0xE6, 0x14, 0xD5, 0xF7, 0xBA, 0xFC, 0x1F, 0xEA, 0x79, 0xFE, 0x2D, 0x65, 0x76, 0xC9, 0xEB, 0x4A, 0xDF, 0x0F, 0x2B, 0xFF, 0x00, 0xC9, 0x97, 0xE9, 0x73, 0xE6, 0x7A, 0x28, 0x14, 0xE6, 0xDA, 0x07, 0x1F, 0x9D, 0x7F, 0x40, 0x9F, 0xCA, 0x27, 0xA5, 0x7E, 0xCD, 0x7A, 0xDF, 0x86, 0x7E, 0x1E, 0x78, 0xDE, 0xCF, 0xC4, 0xFE, 0x2D, 0x17, 0x17, 0x9A, 0x7E, 0x93, 0x20, 0x9E, 0x1D, 0x2E, 0xDD, 0xF6, 0xC9, 0xA8, 0xC8, 0xBC, 0xAA, 0x33, 0x7F, 0x0A, 0x67, 0xAF, 0xA8, 0xE2, 0xBE, 0x92, 0xFD, 0xA8, 0xBF, 0xE0, 0xB0, 0xBE, 0x34, 0xFD, 0xA8, 0x74, 0x0B, 0x5B, 0x4D, 0x41, 0x60, 0xD2, 0x6C, 0x6C, 0x60, 0xFB, 0x35, 0xB5, 0x85, 0x9B, 0x15, 0x82, 0xDE, 0x11, 0xF7, 0x63, 0x51, 0xD8, 0x60, 0x0C, 0xFF, 0x00, 0x78, 0x8E, 0x6B, 0xE2, 0x12, 0x73, 0x4B, 0xB8, 0xE2, 0xBD, 0x3C, 0xBF, 0x36, 0xC4, 0xE0, 0xB9, 0x9E, 0x1E, 0x56, 0x6D, 0x35, 0xF2, 0x7B, 0xDB, 0xB5, 0xF6, 0x76, 0xDD, 0x69, 0xB1, 0xC1, 0x8E, 0xCB, 0x70, 0xF8, 0xB4, 0x95, 0x78, 0xDD, 0x26, 0x9F, 0xCD, 0x6D, 0x7E, 0xF6, 0xDD, 0x5F, 0x67, 0xAE, 0xE6, 0xA7, 0x8A, 0x7C, 0x51, 0x71, 0xE2, 0x6D, 0x45, 0xE6, 0x9A, 0x46, 0x6D, 0xC4, 0xF5, 0x35, 0x95, 0x45, 0x15, 0xE7, 0x4E, 0x72, 0x9C, 0xB9, 0xA5, 0xB9, 0xDB, 0x18, 0xA8, 0xAE, 0x54, 0x14, 0x51, 0x45, 0x49, 0x41, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x01, 0x93, 0x40, 0x1F, 0xA0, 0x1F, 0xB0, 0x2E, 0x87, 0x38, 0xF8, 0x13, 0xA3, 0xB4, 0xCC, 0x5C, 0x4D, 0x24, 0xAF, 0x10, 0xFE, 0xEA, 0x6F, 0x23, 0x1F, 0x98, 0x27, 0xF1, 0xAF, 0xAD, 0xBC, 0x17, 0xA1, 0x2C, 0x16, 0xCA, 0xCE, 0x3E, 0x50, 0x2B, 0xC5, 0xFF, 0x00, 0x63, 0xFF, 0x00, 0x06, 0x36, 0x89, 0xF0, 0x7B, 0xC2, 0xF6, 0xAC, 0x9B, 0x58, 0x58, 0xC7, 0x23, 0x0C, 0x77, 0x6F, 0x9F, 0xFF, 0x00, 0x66, 0xAF, 0xA3, 0xB4, 0x2D, 0x1F, 0xED, 0x2C, 0xB6, 0xEB, 0xF7, 0x54, 0x65, 0x88, 0xAF, 0xE2, 0xFE, 0x36, 0xCC, 0x9E, 0x27, 0x33, 0xAC, 0xE2, 0xF7, 0x9C, 0xBE, 0xEB, 0xE9, 0xF8, 0x1F, 0xE8, 0x97, 0x87, 0x39, 0x3C, 0x70, 0xB9, 0x3E, 0x1E, 0x32, 0x56, 0xE5, 0xA7, 0x1B, 0xFA, 0xD9, 0x5F, 0xF1, 0x3C, 0xEB, 0xE2, 0x4E, 0x81, 0xE5, 0x09, 0x08, 0x1C, 0x76, 0x22, 0xBE, 0x3C, 0xFD, 0xB7, 0xBC, 0x22, 0xDA, 0xBF, 0xC3, 0x3B, 0xC6, 0x56, 0xDA, 0xD6, 0x32, 0xAD, 0xC8, 0x18, 0xFB, 0xD8, 0xC8, 0x23, 0xFF, 0x00, 0x1E, 0xCF, 0xE1, 0x5F, 0x77, 0xF8, 0xE3, 0x49, 0xF3, 0xF4, 0xE9, 0x15, 0x95, 0xB7, 0x45, 0xC1, 0xFA, 0x57, 0xCA, 0x3F, 0xB5, 0x1E, 0x82, 0x2E, 0xFC, 0x15, 0xAC, 0x42, 0xCB, 0xFE, 0xB2, 0xD6, 0x5C, 0x7D, 0x76, 0x9C, 0x57, 0xA9, 0xC0, 0x39, 0x84, 0xA9, 0xE3, 0x69, 0x3E, 0xAA, 0x4B, 0xF3, 0x3C, 0x9F, 0x13, 0x32, 0x98, 0xD6, 0xCB, 0xEB, 0xD3, 0x6B, 0x49, 0x45, 0xFE, 0x5A, 0x1F, 0x9D, 0x54, 0x53, 0x9D, 0x4C, 0x6D, 0x83, 0xF4, 0xA6, 0xD7, 0xF5, 0xE1, 0xFC, 0x06, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x15, 0x35, 0x9C, 0x82, 0x29, 0x95, 0x8E, 0x3E, 0x52, 0x0F, 0x35, 0x0D, 0x14, 0xD3, 0xB3, 0x03, 0xEF, 0x2F, 0xD9, 0x77, 0xFE, 0x0A, 0x57, 0xE1, 0x5D, 0x17, 0x49, 0xB2, 0xD3, 0x7C, 0x61, 0xA7, 0xDD, 0x69, 0x53, 0xDA, 0xC4, 0x90, 0xAD, 0xDD, 0x92, 0x79, 0xD0, 0x48, 0x14, 0x60, 0x12, 0x84, 0x86, 0x4E, 0x00, 0xCE, 0x0B, 0x7D, 0x05, 0x7D, 0x7B, 0xF0, 0x9F, 0xF6, 0xDD, 0xF8, 0x2F, 0x7F, 0x10, 0xB8, 0x9B, 0xE2, 0x16, 0x87, 0x6F, 0xBB, 0x24, 0x89, 0xFC, 0xC4, 0x61, 0xF8, 0x14, 0xAF, 0xC5, 0x25, 0x95, 0x97, 0xBD, 0x06, 0x62, 0x7F, 0xBB, 0xF9, 0x57, 0xE6, 0xB9, 0x97, 0x84, 0xDC, 0x3F, 0x8C, 0xC5, 0x7D, 0x69, 0x73, 0xD3, 0x6F, 0x56, 0xA3, 0x25, 0x6B, 0xFF, 0x00, 0xDB, 0xD1, 0x95, 0xBD, 0x13, 0xB7, 0x6B, 0x2D, 0x0F, 0xD9, 0x32, 0x9F, 0x1D, 0xB8, 0x9B, 0x03, 0x82, 0xFA, 0x93, 0xF6, 0x75, 0x12, 0xB2, 0x52, 0x9C, 0x5F, 0x35, 0x97, 0xF8, 0x25, 0x14, 0xFD, 0x5A, 0xBE, 0x9A, 0xDD, 0xDD, 0x9F, 0xB3, 0x1E, 0x3E, 0xFD, 0xB1, 0x7E, 0x11, 0xA5, 0xCD, 0xC3, 0xC7, 0xE3, 0xDD, 0x06, 0x58, 0x5D, 0x4F, 0x31, 0xB4, 0x8D, 0xFF, 0x00, 0xB2, 0xD7, 0xC7, 0x7F, 0xB5, 0x1F, 0xED, 0x9D, 0xE1, 0x0D, 0x42, 0xD2, 0xE6, 0xD7, 0xC3, 0x73, 0xC9, 0xAD, 0x5C, 0x4A, 0x0A, 0xAC, 0x82, 0x32, 0x90, 0x2E, 0x7B, 0x92, 0xDC, 0x9F, 0xA6, 0x2B, 0xE2, 0xB1, 0x31, 0x07, 0xF8, 0x7F, 0x2A, 0x1A, 0x56, 0x61, 0xD6, 0x96, 0x53, 0xE1, 0x4E, 0x49, 0x97, 0xE2, 0x56, 0x26, 0x9C, 0xEA, 0x4B, 0xAD, 0xA5, 0x28, 0xDB, 0xFF, 0x00, 0x25, 0x8C, 0x5F, 0xE2, 0x56, 0x75, 0xE3, 0xA7, 0x10, 0xE6, 0x58, 0x47, 0x85, 0xA9, 0x4E, 0x94, 0x34, 0xB7, 0x34, 0x63, 0x2B, 0xFF, 0x00, 0xE4, 0xD3, 0x92, 0xFC, 0x09, 0xB5, 0x09, 0x84, 0xF3, 0xB3, 0x77, 0x62, 0x49, 0xC5, 0x57, 0xA2, 0x8A, 0xFD, 0x2E, 0x4E, 0xEE, 0xE7, 0xE3, 0x21, 0x45, 0x14, 0x52, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD9, } ; const char sysinfo_jpg[] PROGMEM = { 0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60, 0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x22, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, 0x01, 0x12, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03, 0x05, 0x03, 0x03, 0x03, 0x03, 0x03, 0x06, 0x04, 0x04, 0x03, 0x05, 0x07, 0x06, 0x07, 0x07, 0x07, 0x06, 0x07, 0x07, 0x08, 0x09, 0x0B, 0x09, 0x08, 0x08, 0x0A, 0x08, 0x07, 0x07, 0x0A, 0x0D, 0x0A, 0x0A, 0x0B, 0x0C, 0x0C, 0x0C, 0x0C, 0x07, 0x09, 0x0E, 0x0F, 0x0D, 0x0C, 0x0E, 0x0B, 0x0C, 0x0C, 0x0C, 0xFF, 0xDB, 0x00, 0x43, 0x01, 0x02, 0x02, 0x02, 0x03, 0x03, 0x03, 0x06, 0x03, 0x03, 0x06, 0x0C, 0x08, 0x07, 0x08, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0xFF, 0xC0, 0x00, 0x11, 0x08, 0x00, 0xB5, 0x01, 0x40, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, 0xFF, 0xC4, 0x00, 0x1F, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00, 0x00, 0x01, 0x7D, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xA1, 0x08, 0x23, 0x42, 0xB1, 0xC1, 0x15, 0x52, 0xD1, 0xF0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0A, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xC4, 0x00, 0x1F, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xA1, 0xB1, 0xC1, 0x09, 0x23, 0x33, 0x52, 0xF0, 0x15, 0x62, 0x72, 0xD1, 0x0A, 0x16, 0x24, 0x34, 0xE1, 0x25, 0xF1, 0x17, 0x18, 0x19, 0x1A, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xDA, 0x00, 0x0C, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, 0x3F, 0x00, 0xFE, 0x7F, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0xA6, 0xB6, 0xB3, 0x96, 0xFA, 0x5D, 0x90, 0xC6, 0xF2, 0xB1, 0xEC, 0x8A, 0x49, 0xA0, 0x0F, 0x6E, 0xFD, 0x9B, 0xBF, 0x67, 0x6B, 0x7F, 0x8B, 0x1F, 0xB3, 0x57, 0xC6, 0xEF, 0x13, 0xC9, 0xE0, 0xFF, 0x00, 0x1B, 0x6B, 0xF7, 0xFE, 0x0B, 0xD2, 0x2C, 0xAE, 0x74, 0xAD, 0x4B, 0x47, 0xB7, 0x69, 0x34, 0xED, 0x1A, 0x53, 0x76, 0x8D, 0x71, 0x25, 0xFB, 0x01, 0xF2, 0xC6, 0x6C, 0xE3, 0xB9, 0x2A, 0x4F, 0x1B, 0x94, 0x57, 0xB6, 0x7C, 0x3F, 0xFF, 0x00, 0x82, 0x76, 0x68, 0xFA, 0xC7, 0xC7, 0xBF, 0xD9, 0x97, 0xC3, 0xFA, 0x97, 0x80, 0x7E, 0x2A, 0x8D, 0x33, 0xE2, 0xB7, 0x85, 0x9B, 0x52, 0xD6, 0x6D, 0xE2, 0xB1, 0x7F, 0xB6, 0x6A, 0x37, 0x3B, 0xAE, 0x71, 0x35, 0x90, 0xC7, 0x36, 0xE1, 0x0D, 0x9B, 0x16, 0xE9, 0xB5, 0x98, 0xD7, 0x8E, 0xFC, 0x00, 0xFD, 0xAF, 0x3C, 0x6D, 0xFB, 0x39, 0x7E, 0xCC, 0x7F, 0x13, 0xBC, 0x03, 0xE1, 0xCB, 0x89, 0x6D, 0xAC, 0x7E, 0x2A, 0x08, 0x6C, 0x35, 0x9B, 0x70, 0xAD, 0xFE, 0x91, 0x6A, 0xB0, 0xCE, 0x87, 0x91, 0xC7, 0x59, 0x71, 0x83, 0xEB, 0x5F, 0x4B, 0x78, 0x2F, 0xFE, 0x0A, 0xCB, 0xE2, 0x4D, 0x2B, 0xF6, 0x8D, 0xFD, 0x98, 0xFC, 0x55, 0x71, 0xE2, 0x07, 0x8A, 0x3F, 0x84, 0x5E, 0x11, 0xFF, 0x00, 0x84, 0x6E, 0x79, 0xFE, 0xCD, 0x39, 0x16, 0x11, 0x98, 0xCC, 0x46, 0x32, 0x02, 0xE5, 0xBE, 0x48, 0xE2, 0xFB, 0x80, 0x8A, 0x00, 0xF0, 0xFD, 0x23, 0xF6, 0x38, 0xD1, 0xA1, 0xFF, 0x00, 0x82, 0x7C, 0x7C, 0x4B, 0xF8, 0x81, 0xA9, 0x78, 0x77, 0xC7, 0xB1, 0x78, 0xBF, 0xC2, 0xFE, 0x3E, 0xB2, 0xF0, 0xE6, 0x9B, 0x7A, 0x96, 0xA4, 0x68, 0xBF, 0x67, 0x71, 0x22, 0x4F, 0x0C, 0x8F, 0x8F, 0x9A, 0xE0, 0x48, 0x14, 0x6D, 0x04, 0x63, 0x2B, 0xEB, 0x8A, 0xF6, 0x5D, 0x4B, 0xFE, 0x09, 0x7B, 0xE1, 0xB1, 0xFB, 0x69, 0xEA, 0xBE, 0x05, 0xB2, 0xF0, 0x0F, 0xC6, 0x09, 0xB4, 0x58, 0x7E, 0x12, 0x4B, 0xE2, 0xDB, 0x6B, 0x19, 0x2C, 0x9C, 0x6A, 0x43, 0x54, 0xFE, 0xCD, 0x2F, 0x1C, 0x8C, 0x02, 0x7F, 0xC7, 0xB7, 0xDB, 0x36, 0xAE, 0x3D, 0x0E, 0x33, 0x5E, 0x7D, 0xA8, 0xFE, 0xDF, 0x1A, 0xD6, 0xA5, 0xFB, 0x01, 0x78, 0xDB, 0xE1, 0x5C, 0xBA, 0xB4, 0x84, 0x6B, 0xBF, 0x12, 0x07, 0x8A, 0xE1, 0xB2, 0xF2, 0x25, 0xCC, 0xA8, 0x5D, 0x65, 0x69, 0x77, 0x6D, 0xDA, 0x3F, 0x78, 0xA0, 0xE0, 0x90, 0xDE, 0xD5, 0xEE, 0xB7, 0x7F, 0xF0, 0x59, 0xDD, 0x76, 0xDF, 0xF6, 0xD5, 0xF1, 0x47, 0xC4, 0xAB, 0x7F, 0x15, 0x31, 0x96, 0x4F, 0x85, 0xA7, 0xC2, 0x7A, 0x6D, 0xD7, 0xD9, 0x2E, 0x70, 0xF3, 0x84, 0x46, 0x58, 0x71, 0xB3, 0x70, 0x3E, 0x60, 0x3F, 0x31, 0x01, 0x78, 0xEB, 0x40, 0x1F, 0x33, 0x68, 0xDF, 0xB1, 0x28, 0xD5, 0xFF, 0x00, 0x64, 0xDF, 0x81, 0x7E, 0x32, 0x8F, 0xC1, 0x7E, 0x3D, 0xBA, 0xD4, 0xFE, 0x23, 0xF8, 0xFB, 0x50, 0xF0, 0xFD, 0xDD, 0xDC, 0x16, 0xCC, 0xD6, 0x7A, 0x95, 0xAA, 0x1B, 0x45, 0xB6, 0x86, 0xD3, 0x8F, 0x9A, 0xE1, 0x9C, 0x6A, 0x03, 0x8C, 0xE4, 0xC3, 0x8E, 0xD5, 0xD4, 0x78, 0xF3, 0xF6, 0x05, 0xD2, 0xB4, 0x9B, 0xFF, 0x00, 0xDA, 0xC2, 0x1B, 0x1F, 0x05, 0x7C, 0x46, 0xB7, 0x6F, 0x84, 0x26, 0xDA, 0xE3, 0xC3, 0xE6, 0xEA, 0xD5, 0x95, 0x34, 0x9B, 0x73, 0x78, 0xBE, 0x6F, 0xF6, 0x8B, 0x11, 0x85, 0x73, 0x6A, 0xDB, 0x94, 0x1E, 0xA7, 0x3E, 0x95, 0x63, 0xC2, 0x3F, 0xF0, 0x51, 0xAD, 0x7B, 0xC2, 0xDF, 0xB3, 0x17, 0xEC, 0xE1, 0xE0, 0x68, 0x75, 0xA6, 0x8E, 0xDF, 0xE1, 0x0F, 0x8D, 0xAE, 0x3C, 0x4E, 0x6D, 0xFC, 0x89, 0xBF, 0xD0, 0x1F, 0xED, 0x0D, 0x2C, 0x72, 0x13, 0xB7, 0x0D, 0x9F, 0xB4, 0x4E, 0x70, 0x84, 0x9F, 0x6A, 0xDA, 0xD7, 0x3F, 0xE0, 0xA7, 0xFA, 0xE7, 0x89, 0x5B, 0xF6, 0xB4, 0x8A, 0xF7, 0xC4, 0x05, 0xA1, 0xF8, 0xE7, 0x12, 0x00, 0x3E, 0xCF, 0x37, 0xFC, 0x4C, 0x99, 0x09, 0x41, 0x8F, 0x97, 0xE5, 0xFD, 0xD8, 0x5F, 0xBF, 0xB6, 0x80, 0x21, 0xF8, 0x7D, 0xFF, 0x00, 0x04, 0xF1, 0xF0, 0xAE, 0xA7, 0xF1, 0xDB, 0xF6, 0x51, 0xD1, 0x75, 0x6F, 0x07, 0x7C, 0x58, 0x8F, 0x4A, 0xF8, 0xB9, 0xA1, 0x7D, 0xB7, 0xC4, 0x76, 0xD1, 0x69, 0xEC, 0x2F, 0x6F, 0xA6, 0x59, 0xA6, 0x0F, 0x2D, 0x82, 0xE3, 0x26, 0x1F, 0x2C, 0xC0, 0xC1, 0xB9, 0x18, 0x39, 0xAE, 0x03, 0x59, 0xFD, 0x89, 0x6D, 0x74, 0x3F, 0xD8, 0xD3, 0xE3, 0x5F, 0x8D, 0xA6, 0xF0, 0x8F, 0x8F, 0xA2, 0xD6, 0x7C, 0x03, 0xF1, 0x0A, 0xCB, 0xC3, 0x76, 0x37, 0xB2, 0xDA, 0x3A, 0xE9, 0xF6, 0x16, 0x8D, 0xF6, 0x95, 0xB8, 0x8E, 0xE8, 0xED, 0xC0, 0x9C, 0x3F, 0xD8, 0xD7, 0x9C, 0x60, 0xC8, 0x07, 0xF1, 0x57, 0xB2, 0xF8, 0x57, 0xFE, 0x0A, 0xC9, 0xAA, 0x45, 0xFB, 0x40, 0xFE, 0xCA, 0xFE, 0x2C, 0xBF, 0xF1, 0x2F, 0x97, 0x27, 0xC1, 0xAF, 0x0D, 0x9D, 0x1A, 0xE2, 0x73, 0x6D, 0x39, 0xFE, 0xCE, 0x05, 0x7C, 0xBD, 0x84, 0x04, 0xCB, 0x7C, 0x88, 0x9F, 0x70, 0x30, 0xAE, 0x1B, 0xC7, 0x1F, 0xF0, 0x52, 0xED, 0x77, 0xC5, 0xBF, 0xB0, 0xE7, 0xC6, 0x5F, 0x00, 0x4F, 0xAE, 0x79, 0x97, 0x9F, 0x15, 0x3E, 0x24, 0x1F, 0x13, 0xDF, 0x59, 0xF9, 0x32, 0xE6, 0xEE, 0x12, 0xD1, 0x4C, 0x65, 0xDD, 0xB7, 0x60, 0xFD, 0xEC, 0x11, 0xF0, 0x48, 0x6E, 0x3A, 0x50, 0x06, 0xC6, 0xAB, 0xFF, 0x00, 0x04, 0xD5, 0xD3, 0xB4, 0xAF, 0xDA, 0xD5, 0x7C, 0x0E, 0xDF, 0x0E, 0x7E, 0x2C, 0xB5, 0xB9, 0xF8, 0x51, 0x17, 0x89, 0xCD, 0x88, 0xB3, 0x73, 0x7C, 0xBA, 0xAB, 0x69, 0x81, 0xDA, 0x76, 0x18, 0x05, 0x6D, 0x05, 0xE8, 0x75, 0xC9, 0xEC, 0x31, 0x5E, 0x5F, 0xFF, 0x00, 0x0C, 0x6D, 0x69, 0x7D, 0xFB, 0x16, 0xFC, 0x1F, 0xF1, 0xE5, 0xA7, 0x85, 0x3C, 0x78, 0xDA, 0xC7, 0x8B, 0xBC, 0x77, 0x7B, 0xE1, 0x9D, 0x4E, 0xE7, 0xEC, 0x6C, 0x6C, 0xB5, 0x28, 0xF1, 0x09, 0xB5, 0x8A, 0xCB, 0x8F, 0xDE, 0x4B, 0xF2, 0xDD, 0x2B, 0x63, 0xF8, 0x94, 0x0E, 0xD5, 0xEE, 0xDE, 0x23, 0xFF, 0x00, 0x82, 0xCA, 0xF8, 0x9E, 0xF3, 0xF6, 0xD9, 0xD5, 0xFE, 0x24, 0xC5, 0xE2, 0x7D, 0xED, 0x77, 0xF0, 0xD4, 0xF8, 0x41, 0x2E, 0xBC, 0x89, 0xC0, 0x6F, 0xDC, 0x16, 0xF2, 0xB0, 0x57, 0x76, 0x7C, 0xD6, 0x61, 0x9C, 0x6D, 0xF7, 0xC7, 0x35, 0xE7, 0x1E, 0x1E, 0xFF, 0x00, 0x82, 0x91, 0xEB, 0x1A, 0x2F, 0xEC, 0x4B, 0xF0, 0x57, 0xC0, 0x09, 0xAF, 0x05, 0xB9, 0xF8, 0x61, 0xF1, 0x08, 0xF8, 0x9E, 0x0B, 0x4F, 0x26, 0x5C, 0xDA, 0x20, 0x79, 0x24, 0x59, 0x77, 0x6D, 0xDA, 0x7E, 0x79, 0x5F, 0x85, 0x25, 0xBD, 0xA8, 0x03, 0xA2, 0xF1, 0x77, 0xFC, 0x13, 0x93, 0xC2, 0xF6, 0x3F, 0x1C, 0x3F, 0x6A, 0xDF, 0x0E, 0xE9, 0xDE, 0x0D, 0xF8, 0xAD, 0x25, 0xAF, 0xC2, 0x7F, 0x0D, 0x2E, 0xAF, 0xE1, 0xB8, 0x64, 0xB3, 0x6F, 0xB4, 0xE9, 0xAE, 0x5A, 0x17, 0x2F, 0xA8, 0x0D, 0xBF, 0x2C, 0x62, 0x23, 0x39, 0xFA, 0x21, 0xE7, 0x8C, 0xD7, 0x82, 0xFE, 0xD1, 0xFF, 0x00, 0xB3, 0x9D, 0xBF, 0xC2, 0x6F, 0xD9, 0xAB, 0xE0, 0x8F, 0x8A, 0x21, 0xF0, 0x9F, 0x8D, 0xB4, 0x3B, 0xEF, 0x1A, 0xE9, 0x57, 0xB7, 0x3A, 0xAE, 0xA3, 0xAC, 0x5A, 0xB4, 0x5A, 0x76, 0xAF, 0x28, 0xBA, 0x66, 0xB7, 0x7B, 0x06, 0x23, 0x0F, 0x18, 0xB4, 0x92, 0xDC, 0xB1, 0x19, 0xF9, 0x98, 0xD7, 0xD3, 0xDE, 0x2D, 0xFF, 0x00, 0x82, 0xBA, 0xEA, 0x37, 0x5F, 0x19, 0xBF, 0x6B, 0x2F, 0x14, 0xDA, 0x78, 0xA1, 0x64, 0xB8, 0xF8, 0xCD, 0xE1, 0xF8, 0x74, 0x2B, 0x49, 0x7E, 0xCD, 0x38, 0xFE, 0xD1, 0x84, 0x29, 0x89, 0xD4, 0x65, 0x32, 0x9F, 0xBB, 0x92, 0x4F, 0xBF, 0xB6, 0xBE, 0x64, 0xFD, 0xA0, 0xBF, 0x6D, 0x9F, 0x14, 0x7E, 0xD1, 0xBF, 0xB2, 0xF7, 0xC2, 0xFF, 0x00, 0x00, 0xF8, 0x8B, 0x51, 0xFB, 0x4D, 0x9F, 0xC2, 0xBF, 0x3A, 0xC3, 0x46, 0xB7, 0xC3, 0x7F, 0xA3, 0xDA, 0x34, 0x36, 0xE8, 0x39, 0x3C, 0x75, 0x8B, 0x18, 0x07, 0xB5, 0x00, 0x78, 0x45, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x57, 0xD0, 0x1F, 0xB3, 0x17, 0xEC, 0xB7, 0xF0, 0xB7, 0xE3, 0x3C, 0x5E, 0x0F, 0xFF, 0x00, 0x84, 0xB3, 0xE3, 0xDF, 0x86, 0x7C, 0x07, 0x7B, 0xE2, 0x2D, 0x7D, 0x34, 0x9D, 0x43, 0x4D, 0xBA, 0xD1, 0xEE, 0xE4, 0x9B, 0x44, 0xB5, 0x66, 0xC7, 0xDB, 0xE5, 0xB8, 0x71, 0x1D, 0xA7, 0x94, 0x07, 0x24, 0x79, 0xDB, 0x87, 0xA5, 0x00, 0x78, 0x3E, 0x9B, 0xA7, 0xCB, 0xAB, 0xEA, 0x36, 0xF6, 0x90, 0xA9, 0x92, 0x6B, 0x99, 0x16, 0x28, 0xD4, 0x7F, 0x13, 0x31, 0xC0, 0x1F, 0x99, 0xAF, 0x5A, 0x3A, 0x75, 0xA7, 0x86, 0xF4, 0xE4, 0xD3, 0x2C, 0x16, 0x33, 0x0C, 0x38, 0x13, 0xCE, 0x17, 0xE6, 0xBB, 0x90, 0x75, 0x62, 0x7A, 0xED, 0xCF, 0xDD, 0x1D, 0x31, 0xEF, 0x5D, 0x37, 0xC7, 0xBF, 0x80, 0x9E, 0x03, 0xFD, 0x9C, 0xBF, 0x69, 0x89, 0x7C, 0x3F, 0xE0, 0x7F, 0x88, 0xD6, 0x5F, 0x14, 0xB4, 0xCD, 0x3D, 0x66, 0x92, 0x1D, 0x6F, 0x4F, 0x48, 0x92, 0xD6, 0x72, 0xB1, 0xBE, 0x0A, 0xEC, 0x92, 0x4E, 0x73, 0x83, 0xD6, 0xB9, 0x89, 0x17, 0x3F, 0x8D, 0x69, 0x08, 0xF5, 0x29, 0x22, 0xAC, 0x8B, 0x8F, 0xC2, 0xA0, 0x91, 0x6A, 0xD3, 0x8A, 0xF6, 0x0F, 0x80, 0xDF, 0xF0, 0x4F, 0x2F, 0x8C, 0xFF, 0x00, 0xB4, 0xFF, 0x00, 0x87, 0x9F, 0x57, 0xF0, 0x3F, 0x80, 0xB5, 0x4D, 0x63, 0x4B, 0x46, 0xDA, 0xB7, 0x92, 0xCF, 0x6F, 0x65, 0x04, 0xA7, 0xD1, 0x1E, 0xE2, 0x48, 0xC4, 0x98, 0xEF, 0xB0, 0x9C, 0x77, 0xAD, 0xA8, 0xE1, 0xEA, 0xD5, 0x97, 0x2D, 0x28, 0xB9, 0x3E, 0xC9, 0x37, 0xF9, 0x1B, 0x61, 0xF0, 0xB5, 0xAB, 0xCB, 0x92, 0x84, 0x1C, 0x9F, 0x64, 0x9B, 0x7F, 0x81, 0xE1, 0xD2, 0x2F, 0xEB, 0x50, 0x4A, 0xB5, 0xF6, 0x26, 0x9F, 0xFF, 0x00, 0x04, 0x20, 0xFD, 0xAB, 0xB5, 0xA3, 0x8B, 0x5F, 0x84, 0xF2, 0x4B, 0xBB, 0xA6, 0x3C, 0x47, 0xA4, 0x0F, 0xE7, 0x75, 0x5A, 0x9F, 0xF1, 0x0E, 0xDF, 0xED, 0x91, 0x32, 0x6E, 0x5F, 0x83, 0x17, 0x2C, 0xA4, 0x75, 0x1E, 0x24, 0xD1, 0x8F, 0xFE, 0xDD, 0xD1, 0x53, 0x0F, 0x56, 0x9B, 0xB5, 0x48, 0xB5, 0xEA, 0x9A, 0x0A, 0xD8, 0x5A, 0xF4, 0x9D, 0xAA, 0x41, 0xAF, 0x54, 0xD7, 0xE6, 0x7C, 0x3F, 0x20, 0xAA, 0xF2, 0x0C, 0x1A, 0xFB, 0x57, 0x55, 0xFF, 0x00, 0x83, 0x7D, 0xBF, 0x6B, 0xFD, 0x29, 0x0B, 0x5C, 0x7C, 0x1C, 0xBA, 0x8C, 0x0E, 0xB9, 0xF1, 0x16, 0x90, 0x7F, 0x95, 0xDD, 0x73, 0x1A, 0x97, 0xFC, 0x11, 0x1B, 0xF6, 0xA1, 0xD3, 0x09, 0x13, 0xFC, 0x2B, 0x9E, 0x32, 0x3A, 0xFF, 0x00, 0xC4, 0xFB, 0x4B, 0x3F, 0xCA, 0xE6, 0xA7, 0xD8, 0xD4, 0xDF, 0x95, 0xFD, 0xCC, 0xBA, 0x58, 0x0C, 0x4D, 0x4F, 0xE1, 0xD3, 0x93, 0xF4, 0x4D, 0xFE, 0x87, 0xC9, 0x52, 0x2E, 0x2A, 0x09, 0x16, 0xBE, 0xA1, 0xBE, 0xFF, 0x00, 0x82, 0x3C, 0xFE, 0xD1, 0xD6, 0x43, 0xF7, 0xBF, 0x0D, 0xA7, 0x5C, 0x7F, 0xD4, 0x6B, 0x4D, 0x3F, 0xCA, 0xE2, 0xB2, 0xAE, 0x7F, 0xE0, 0x93, 0x9F, 0xB4, 0x14, 0x04, 0xEE, 0xF8, 0x77, 0x70, 0x31, 0xFF, 0x00, 0x51, 0x6B, 0x03, 0xFF, 0x00, 0xB5, 0xEB, 0x1F, 0x67, 0x2E, 0xCC, 0xED, 0xA7, 0xC3, 0xF9, 0xAC, 0xFE, 0x0C, 0x35, 0x47, 0xE9, 0x09, 0x3F, 0xD0, 0xF9, 0xB5, 0xC7, 0x7A, 0x89, 0x86, 0x0D, 0x7D, 0x18, 0xDF, 0xF0, 0x4A, 0x8F, 0x8F, 0xCC, 0x70, 0x3E, 0x1E, 0x5E, 0x1C, 0xFA, 0x6A, 0x76, 0x3F, 0xFC, 0x7A, 0xB4, 0xB4, 0x4F, 0xF8, 0x23, 0x5F, 0xED, 0x2B, 0xE2, 0x67, 0xD9, 0x63, 0xF0, 0xBE, 0xFA, 0x76, 0x6E, 0x98, 0xD5, 0x74, 0xF5, 0xCF, 0xE7, 0x38, 0xAD, 0x23, 0x87, 0xAA, 0xF6, 0x8B, 0xFB, 0x99, 0x55, 0x78, 0x6B, 0x37, 0xA7, 0x1E, 0x6A, 0x98, 0x5A, 0x89, 0x77, 0x70, 0x92, 0x5F, 0x8A, 0x3E, 0x5D, 0x61, 0x83, 0x51, 0x3A, 0xF3, 0x8E, 0xD5, 0xEF, 0x9F, 0xB5, 0x37, 0xFC, 0x13, 0x2B, 0xE3, 0xCF, 0xEC, 0x5B, 0xE1, 0xCB, 0x1D, 0x63, 0xE2, 0x6F, 0xC3, 0x1F, 0x11, 0x78, 0x5F, 0x45, 0xD4, 0x8E, 0xDB, 0x7D, 0x49, 0xC4, 0x57, 0x56, 0x4C, 0xDF, 0xDD, 0x33, 0x40, 0xEF, 0x1A, 0xB7, 0xFB, 0x2C, 0xC0, 0xFB, 0x57, 0x83, 0x30, 0xC8, 0xAC, 0x5A, 0x69, 0xD9, 0x9E, 0x33, 0x4D, 0x3B, 0x32, 0xB4, 0xB6, 0xEB, 0xF7, 0xBA, 0x0E, 0xF8, 0xED, 0xEF, 0x55, 0x9D, 0x76, 0x36, 0x2A, 0xFD, 0x7A, 0xA7, 0xEC, 0x77, 0xF0, 0x03, 0xC1, 0xBF, 0xB4, 0x87, 0xC5, 0xDD, 0x3F, 0xC3, 0x3E, 0x2C, 0xF8, 0x8D, 0x61, 0xF0, 0xCE, 0xCA, 0xEC, 0xED, 0x97, 0x59, 0xD5, 0x21, 0x8D, 0xAC, 0xED, 0xF9, 0xC7, 0x25, 0xA5, 0x4E, 0xD8, 0xEE, 0x28, 0x11, 0xE3, 0x74, 0x57, 0xD1, 0x1F, 0xB4, 0xC7, 0xEC, 0x85, 0xF0, 0xE7, 0xE0, 0xA5, 0xA7, 0x8E, 0xA4, 0xF0, 0xDF, 0xC7, 0xDF, 0x04, 0xF8, 0xE6, 0xEB, 0xC2, 0x7A, 0xF7, 0xF6, 0x46, 0x9F, 0xA7, 0x59, 0xD8, 0xDD, 0x2D, 0xCF, 0x88, 0xA0, 0xCA, 0x03, 0x7B, 0x6F, 0x22, 0x2C, 0x96, 0xDE, 0x48, 0xDC, 0xC7, 0xE6, 0x98, 0x13, 0xB0, 0xE0, 0x74, 0xCF, 0xCE, 0xF4, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x57, 0xDD, 0x9F, 0xF0, 0x4D, 0xCF, 0x01, 0xF8, 0xF3, 0x54, 0xD0, 0x3E, 0x1C, 0xEA, 0x5A, 0x1F, 0xEC, 0xA7, 0xE0, 0xAF, 0x8B, 0x5A, 0x5C, 0x9E, 0x34, 0x8E, 0x1B, 0x5D, 0x77, 0x53, 0x13, 0x2C, 0x9A, 0xB5, 0xCE, 0xEE, 0x2C, 0x26, 0x73, 0x31, 0x84, 0x42, 0x3B, 0xEE, 0x84, 0xF1, 0xD4, 0xD7, 0xC2, 0x75, 0xF5, 0x4F, 0xEC, 0x43, 0x2F, 0xC0, 0xDB, 0x58, 0x7C, 0x13, 0x27, 0x8E, 0xBE, 0x26, 0x7C, 0x6A, 0xF0, 0xA6, 0xBA, 0xBE, 0x27, 0x4F, 0xED, 0x2B, 0x4F, 0x0C, 0xE9, 0xAA, 0xF6, 0x76, 0xF6, 0x39, 0x1F, 0xBE, 0x82, 0x64, 0x97, 0xCD, 0x17, 0x04, 0x7A, 0x44, 0xD8, 0xC7, 0x43, 0x40, 0x1E, 0xD3, 0xFF, 0x00, 0x05, 0x3A, 0xF0, 0xBF, 0x8E, 0x34, 0x5F, 0x8C, 0x77, 0x12, 0x78, 0xAB, 0xF6, 0x6F, 0xF0, 0x3F, 0xC0, 0xE8, 0xFE, 0xD4, 0xEB, 0xBB, 0x40, 0x92, 0x27, 0x50, 0xE6, 0x09, 0xF1, 0x08, 0x31, 0x90, 0xBB, 0x48, 0x04, 0xFD, 0xC1, 0xF7, 0x05, 0x7C, 0xA2, 0xEB, 0x5E, 0xE7, 0xFB, 0x6D, 0xDD, 0x7C, 0x19, 0xBC, 0xF8, 0xD5, 0x70, 0xDF, 0x0C, 0x3C, 0x75, 0xF1, 0x8F, 0xC6, 0x2C, 0x64, 0x93, 0x0F, 0xE3, 0x40, 0xC4, 0x18, 0xBC, 0x99, 0x77, 0x36, 0x64, 0x44, 0x93, 0x7E, 0x76, 0xE3, 0x23, 0xA1, 0x6A, 0xF0, 0xF7, 0x5F, 0xD2, 0xB5, 0xA7, 0xB1, 0x48, 0xF4, 0xBF, 0xD8, 0xA7, 0xE1, 0x36, 0x9B, 0xF1, 0xBF, 0xF6, 0xA6, 0xF0, 0x7F, 0x86, 0xB5, 0xAC, 0xB6, 0x93, 0x79, 0x71, 0x2C, 0xF7, 0x88, 0x33, 0xFB, 0xE8, 0xAD, 0xED, 0xE5, 0xB8, 0x68, 0xF8, 0xE4, 0x07, 0x11, 0x6D, 0xCF, 0x6D, 0xD5, 0xFA, 0x15, 0xF1, 0x2F, 0xF6, 0xDD, 0xD5, 0xB4, 0x7F, 0x16, 0xC9, 0xE1, 0xDF, 0x0F, 0x4A, 0x34, 0x5D, 0x23, 0x47, 0x22, 0xD2, 0x18, 0x2D, 0x80, 0x8C, 0x28, 0x4F, 0x97, 0x68, 0x03, 0xEE, 0x81, 0x8C, 0x00, 0x3D, 0x2B, 0xE1, 0xEF, 0xF8, 0x26, 0x5C, 0x26, 0x5F, 0xDB, 0x77, 0xC1, 0xEA, 0x3A, 0x98, 0x35, 0x43, 0xFF, 0x00, 0x94, 0xBB, 0xBA, 0xEB, 0xBE, 0x34, 0x78, 0xA9, 0xAC, 0x7E, 0x3B, 0xF8, 0x9D, 0x77, 0x91, 0xB7, 0x55, 0xB8, 0xFF, 0x00, 0xD1, 0xAD, 0x5F, 0xD1, 0xBE, 0x09, 0xCF, 0x09, 0x47, 0x07, 0x5A, 0xB5, 0x6A, 0x6A, 0x52, 0xE7, 0x4A, 0xED, 0x5F, 0x4E, 0x55, 0x6D, 0xFE, 0x67, 0xEA, 0xDC, 0x27, 0x8F, 0xFA, 0xAE, 0x47, 0x28, 0xD2, 0x56, 0x95, 0x4A, 0xB2, 0x52, 0x7D, 0x5C, 0x63, 0x18, 0x5A, 0x37, 0xED, 0x79, 0x48, 0xFB, 0x73, 0xC0, 0x1F, 0xB5, 0xA7, 0x8B, 0x24, 0x54, 0x78, 0xFC, 0x43, 0xA9, 0xA9, 0xF4, 0x17, 0x0D, 0xFE, 0x35, 0xEB, 0xBE, 0x19, 0xFD, 0xAF, 0x3C, 0x6B, 0x24, 0x08, 0xA7, 0xC4, 0x9A, 0xB1, 0x5C, 0x7F, 0xCF, 0xD3, 0xFF, 0x00, 0x8D, 0x7E, 0x7D, 0x7C, 0x32, 0xF8, 0x92, 0x62, 0x68, 0xF3, 0x21, 0xF7, 0xE6, 0xBD, 0xE7, 0xC1, 0x5E, 0x3B, 0x49, 0x96, 0x36, 0x0F, 0xC1, 0x1C, 0x8C, 0xD7, 0xEE, 0xD9, 0x9E, 0x4B, 0x82, 0xAF, 0x4F, 0xDB, 0x42, 0x9C, 0x5A, 0x7E, 0x48, 0xF0, 0x78, 0x8B, 0x03, 0x29, 0xC7, 0xDA, 0x41, 0xBB, 0x7C, 0xCF, 0xA5, 0x7C, 0x41, 0xFB, 0x40, 0xF8, 0xCB, 0x55, 0xB7, 0x27, 0xFB, 0x7F, 0x52, 0x61, 0x8E, 0xF3, 0xB1, 0xFE, 0x75, 0xE0, 0xBF, 0xB4, 0x07, 0xC5, 0xFF, 0x00, 0x1E, 0x59, 0x59, 0x49, 0x25, 0xBF, 0x88, 0x35, 0x04, 0xF9, 0x73, 0xF2, 0xBD, 0x76, 0x7E, 0x1D, 0xF1, 0x0A, 0x5D, 0x44, 0xA0, 0xB6, 0x54, 0xFB, 0xD5, 0x1F, 0x8B, 0xBE, 0x1C, 0x8F, 0x57, 0xF0, 0xC3, 0xBA, 0xA8, 0x6F, 0x96, 0xBE, 0x3E, 0x79, 0x66, 0x1A, 0x12, 0xE5, 0x74, 0xE3, 0xF7, 0x23, 0xE1, 0xB2, 0xDC, 0x4D, 0x5A, 0x38, 0x94, 0xA4, 0xD9, 0xF1, 0x3F, 0x88, 0x7F, 0x6B, 0x2F, 0x89, 0x56, 0x9A, 0xCC, 0xB1, 0x9F, 0x14, 0x6A, 0x64, 0x03, 0x8C, 0x33, 0x82, 0x3F, 0x95, 0x63, 0xEA, 0x3F, 0xB6, 0x0F, 0xC4, 0x8B, 0x5E, 0x7F, 0xE1, 0x22, 0xBA, 0x60, 0x7D, 0x51, 0x4F, 0xF4, 0xAB, 0x5F, 0x16, 0x7C, 0x1A, 0xDA, 0x5F, 0x88, 0x65, 0x7D, 0x84, 0x02, 0xC7, 0xB5, 0x71, 0x1A, 0x96, 0x9C, 0x93, 0x46, 0x46, 0x06, 0x71, 0x5F, 0x9E, 0xF1, 0x3E, 0x4D, 0x66, 0xE7, 0x49, 0x5B, 0xE4, 0x7E, 0xCF, 0x97, 0x62, 0xA7, 0x52, 0x95, 0xE1, 0x2B, 0x33, 0xA5, 0xB3, 0xFD, 0xB6, 0xBE, 0x22, 0xDA, 0xCC, 0x18, 0xEB, 0xF3, 0x1C, 0x1E, 0x7F, 0x76, 0x9F, 0xE1, 0x5E, 0x93, 0xF0, 0xFB, 0xFE, 0x0A, 0x25, 0xF1, 0x02, 0xCC, 0x28, 0xFE, 0xDF, 0x9D, 0x18, 0x0E, 0xAA, 0xAA, 0xA4, 0x7E, 0x42, 0xBE, 0x6A, 0xD5, 0x34, 0xB3, 0x6F, 0x21, 0xDA, 0x38, 0xAC, 0xF4, 0xBE, 0x7D, 0x31, 0x99, 0xC1, 0x60, 0x05, 0x7E, 0x5B, 0x56, 0xA5, 0x5A, 0x32, 0xB3, 0x3D, 0x8C, 0x36, 0x75, 0x8A, 0xC3, 0xBD, 0x64, 0xEC, 0x7E, 0xB4, 0x7F, 0xC1, 0x33, 0xFF, 0x00, 0xE0, 0xAD, 0x97, 0xDF, 0x15, 0xBE, 0x26, 0x37, 0xC0, 0xFF, 0x00, 0x8C, 0x96, 0xF6, 0xBE, 0x39, 0xF8, 0x7F, 0xF1, 0x1A, 0x37, 0xD2, 0xA5, 0xB7, 0xD4, 0x22, 0x59, 0x02, 0x16, 0x53, 0xF2, 0xB7, 0xAA, 0x9C, 0x70, 0x7A, 0xAB, 0x00, 0x41, 0xAF, 0xC6, 0x5F, 0xDB, 0xDF, 0xE0, 0x66, 0x97, 0xFB, 0x32, 0xFE, 0xDA, 0xFF, 0x00, 0x15, 0x3E, 0x1E, 0xE8, 0x77, 0x53, 0x5E, 0x68, 0xBE, 0x0D, 0xF1, 0x45, 0xFE, 0x93, 0x63, 0x3C, 0xA3, 0x0E, 0xF0, 0x45, 0x3B, 0x2C, 0x65, 0xBD, 0xF6, 0x81, 0x5E, 0xB7, 0xFB, 0x21, 0x78, 0xE2, 0x4B, 0x5F, 0xDB, 0x13, 0xE1, 0xEC, 0xCB, 0x29, 0x06, 0x1D, 0x72, 0xD5, 0xB3, 0xFF, 0x00, 0x6D, 0x05, 0x79, 0xD7, 0xFC, 0x14, 0xB7, 0x54, 0x3A, 0xF7, 0xFC, 0x14, 0x03, 0xE3, 0x1D, 0xE1, 0x3B, 0x9A, 0xEB, 0xC5, 0x97, 0xF2, 0x67, 0xD7, 0x33, 0x35, 0x7C, 0xD6, 0x75, 0xC9, 0x52, 0x31, 0xAF, 0x6D, 0x5B, 0xB3, 0xF3, 0x3E, 0x07, 0x8C, 0xB0, 0xF4, 0xF1, 0x14, 0x23, 0x9A, 0x45, 0x24, 0xDC, 0xDC, 0x1D, 0xB4, 0xBD, 0xA2, 0xA4, 0x9E, 0x9D, 0x77, 0xFB, 0x8F, 0x0A, 0x71, 0x83, 0x5F, 0x71, 0xFF, 0x00, 0xC1, 0x2E, 0x3C, 0x1F, 0xE2, 0xAD, 0x4B, 0x5A, 0xF0, 0xBD, 0xC6, 0x97, 0xFB, 0x28, 0xF8, 0x7F, 0xE3, 0x55, 0xAC, 0x86, 0x5F, 0x2E, 0x6B, 0xE9, 0x02, 0x7F, 0x69, 0x62, 0x77, 0x04, 0xB6, 0xF6, 0xD9, 0xF2, 0x90, 0x53, 0xA7, 0xF0, 0x57, 0xC3, 0xCC, 0x32, 0x2B, 0xEB, 0x7F, 0xF8, 0x26, 0xFE, 0xB3, 0xF0, 0x87, 0x46, 0xF1, 0x7F, 0x87, 0x26, 0xF1, 0xA7, 0xC7, 0x2F, 0x8B, 0xDF, 0x0A, 0xAF, 0x55, 0xA4, 0xFB, 0x55, 0xCF, 0x86, 0xA1, 0x94, 0x25, 0x91, 0xF3, 0x9B, 0x6F, 0x96, 0xF1, 0xA3, 0xB7, 0x2B, 0xB5, 0x8E, 0x17, 0xEF, 0x13, 0x5E, 0x01, 0xF9, 0xE9, 0xD1, 0x7F, 0xC1, 0x43, 0x7C, 0x0D, 0xE2, 0x8D, 0x37, 0xC3, 0x1F, 0x14, 0x6F, 0xAF, 0xBF, 0x63, 0xCD, 0x2F, 0xE1, 0x0E, 0x9F, 0x17, 0x8B, 0x7C, 0xBB, 0x9D, 0x7E, 0x0F, 0xB5, 0x49, 0xFF, 0x00, 0x08, 0xE4, 0xA5, 0x93, 0xFD, 0x02, 0x37, 0x0E, 0x2D, 0xB6, 0x37, 0x00, 0x61, 0x0F, 0xDF, 0x38, 0x35, 0xF0, 0x9D, 0x7D, 0x7D, 0xFB, 0x78, 0xDF, 0x7C, 0x21, 0xD5, 0x6E, 0x7E, 0x24, 0x5D, 0x78, 0x57, 0xF6, 0x87, 0xF8, 0xB5, 0xF1, 0x33, 0x5A, 0x9B, 0xC4, 0xA5, 0xF4, 0xDB, 0x3D, 0x7F, 0x46, 0x94, 0x5B, 0xEB, 0x76, 0xA5, 0x97, 0x37, 0x77, 0x17, 0x52, 0x4C, 0xAD, 0xE7, 0x0F, 0x98, 0xE0, 0xDB, 0x82, 0x76, 0x8E, 0x99, 0xAF, 0x90, 0x68, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xAF, 0xD1, 0x0F, 0xF8, 0x25, 0xBC, 0xBF, 0x1A, 0x9F, 0xC1, 0xBF, 0x0C, 0x21, 0xF0, 0x17, 0x8C, 0xBF, 0x67, 0xCD, 0x27, 0x4F, 0x3E, 0x3B, 0x8C, 0xE9, 0x96, 0xBE, 0x27, 0x93, 0x4F, 0x7D, 0x66, 0xD6, 0xF7, 0x7F, 0x13, 0x4B, 0x1B, 0x2F, 0xDA, 0x4D, 0xBE, 0x79, 0x18, 0x6C, 0x73, 0xC5, 0x7E, 0x77, 0xD7, 0xD6, 0x9F, 0xB0, 0xD7, 0x86, 0xFE, 0x16, 0xEB, 0x56, 0x9E, 0x05, 0x5F, 0x18, 0x7E, 0xCF, 0x3F, 0x17, 0x3E, 0x25, 0x5F, 0x5C, 0x78, 0xAA, 0x38, 0x6F, 0x75, 0x0F, 0x0F, 0xEB, 0x12, 0x47, 0x69, 0xAC, 0x5B, 0x16, 0xFF, 0x00, 0x8F, 0x18, 0xAD, 0xD6, 0x01, 0x99, 0x8F, 0x4C, 0x8B, 0x85, 0x27, 0xDA, 0x80, 0x3D, 0xFB, 0xFE, 0x0A, 0xD6, 0xDF, 0x18, 0xA3, 0xF8, 0xE3, 0x73, 0x0F, 0xC5, 0x3F, 0x1A, 0xFC, 0x20, 0xF1, 0x3C, 0xC2, 0xED, 0xCB, 0x47, 0xE1, 0x18, 0xE3, 0x8A, 0x41, 0x27, 0x91, 0x3E, 0x1B, 0x68, 0x1B, 0xF6, 0x01, 0xB8, 0x1C, 0x9C, 0x64, 0xAD, 0x7C, 0x6E, 0xE3, 0xBD, 0x7B, 0xC7, 0xED, 0xCF, 0xE1, 0x2F, 0x87, 0x5E, 0x16, 0xF8, 0xD5, 0x34, 0x7E, 0x03, 0xFD, 0x9F, 0xFE, 0x23, 0xFC, 0x17, 0xB7, 0x12, 0xC8, 0x15, 0x3C, 0x51, 0x75, 0x3B, 0x3A, 0xA7, 0x93, 0x2E, 0x62, 0x29, 0x23, 0xC9, 0x86, 0x3C, 0x1C, 0xF9, 0x87, 0xEE, 0x1A, 0xF0, 0xA9, 0x17, 0xF5, 0xAD, 0x69, 0xEC, 0x54, 0x4F, 0x7E, 0xFF, 0x00, 0x82, 0x55, 0xDB, 0x89, 0xFF, 0x00, 0x6F, 0x3F, 0x05, 0x21, 0xE4, 0x35, 0xBE, 0xAC, 0x7F, 0xF2, 0x93, 0x79, 0x55, 0xBF, 0x69, 0x49, 0x5A, 0xD7, 0xE3, 0xD7, 0x8A, 0xD8, 0x6E, 0x18, 0xD5, 0x2E, 0x3F, 0xF4, 0x6B, 0x56, 0xBF, 0xFC, 0x12, 0x3E, 0xD3, 0xED, 0xBF, 0xF0, 0x50, 0x7F, 0x02, 0xC5, 0xDD, 0xAD, 0xB5, 0x8F, 0xFD, 0x33, 0xDE, 0x9A, 0x8B, 0xF6, 0xB2, 0xD1, 0x24, 0x83, 0xE3, 0x77, 0x8A, 0x5B, 0x1D, 0x75, 0x3B, 0x83, 0xD3, 0xFE, 0x9A, 0xB5, 0x7E, 0xFF, 0x00, 0xE1, 0x4E, 0x0E, 0x75, 0x72, 0x6C, 0x55, 0x48, 0x6F, 0x1A, 0x91, 0xFF, 0x00, 0xD2, 0x4F, 0xB8, 0xC9, 0xE7, 0xFF, 0x00, 0x09, 0x71, 0x8F, 0xFD, 0x3C, 0x9B, 0xFF, 0x00, 0xC9, 0x69, 0x9C, 0xEF, 0x83, 0xFC, 0x62, 0x6D, 0x24, 0x4F, 0x9F, 0x1F, 0x8D, 0x7B, 0x37, 0x80, 0xBE, 0x27, 0xF9, 0x28, 0x80, 0xC9, 0xBB, 0x8F, 0x5A, 0xF9, 0x7C, 0x5E, 0xBD, 0x9C, 0xBD, 0x48, 0xDA, 0x6B, 0xA4, 0xF0, 0xD7, 0x8D, 0xE4, 0xB5, 0x65, 0x1B, 0xCF, 0xCB, 0xEF, 0x5F, 0xAE, 0xE4, 0x7C, 0x50, 0xA8, 0xFF, 0x00, 0xB3, 0xD7, 0xD8, 0xF4, 0xD6, 0x21, 0x4A, 0x1E, 0xCE, 0x67, 0xDD, 0x9F, 0x0D, 0xFE, 0x26, 0x25, 0xEA, 0x2A, 0xF9, 0xC0, 0x9C, 0xFA, 0xD7, 0xAD, 0x69, 0xFA, 0x9C, 0x7A, 0xE6, 0x8E, 0xD0, 0xB1, 0x0C, 0x08, 0xE2, 0xBC, 0x4B, 0xFE, 0x09, 0xFB, 0xE1, 0x1D, 0x03, 0x5B, 0xF8, 0x13, 0xF1, 0x8B, 0xE2, 0xC7, 0x8A, 0x2D, 0x64, 0xD7, 0xB4, 0xFF, 0x00, 0x85, 0x36, 0x5A, 0x7A, 0xDA, 0x68, 0x62, 0x79, 0x21, 0x8F, 0x50, 0xBD, 0xBF, 0x9D, 0xA1, 0x85, 0xE7, 0x68, 0xCA, 0xC9, 0xF6, 0x78, 0xB6, 0x33, 0x38, 0x46, 0x52, 0x49, 0x51, 0xB8, 0x0C, 0xE7, 0xEA, 0x9F, 0xD8, 0x6B, 0xC4, 0xDE, 0x19, 0xF8, 0xF7, 0x65, 0xE2, 0x0D, 0x4B, 0x59, 0xF0, 0x57, 0x86, 0x34, 0xDB, 0x7F, 0x0A, 0xF8, 0x2F, 0x50, 0xD4, 0xDE, 0xE2, 0x49, 0xAE, 0x2D, 0x2C, 0x6F, 0xAE, 0xCC, 0xC9, 0x15, 0x93, 0x31, 0x33, 0x05, 0x40, 0x24, 0x7D, 0x84, 0xEE, 0xC3, 0x04, 0x39, 0xE7, 0x9A, 0x59, 0xC6, 0x71, 0x87, 0x8A, 0xA9, 0x56, 0x8C, 0x5C, 0xA3, 0x4D, 0xA5, 0x26, 0xAD, 0xF1, 0x34, 0xA4, 0x92, 0xBB, 0x4D, 0xBB, 0x4A, 0x3F, 0x7A, 0xDF, 0x5B, 0x7C, 0x06, 0x6B, 0x85, 0x50, 0xAD, 0xCF, 0x4F, 0xA3, 0xFF, 0x00, 0x82, 0x7C, 0x81, 0xF1, 0xFB, 0xE1, 0xD2, 0xCB, 0x2C, 0xAE, 0xB1, 0xF7, 0x38, 0xAF, 0x9A, 0x3C, 0x5F, 0xA3, 0x4D, 0xA6, 0x5D, 0x36, 0xD0, 0x70, 0x2B, 0xF6, 0x2B, 0xE2, 0x8F, 0xC3, 0xFF, 0x00, 0x84, 0xB7, 0x1F, 0x0A, 0x7E, 0x28, 0x78, 0x93, 0x49, 0xD1, 0x74, 0x4D, 0x72, 0x3F, 0x0E, 0xF8, 0x4F, 0x49, 0x80, 0xCA, 0x97, 0x17, 0x32, 0xD9, 0x5A, 0x78, 0x82, 0xE1, 0xF6, 0x4C, 0xD6, 0xCF, 0xE6, 0x82, 0xF0, 0x63, 0x24, 0x06, 0x2C, 0xBB, 0x87, 0x07, 0x68, 0xC5, 0x7C, 0x09, 0xFB, 0x5B, 0xF8, 0x5F, 0x46, 0xD3, 0xBC, 0x1F, 0xE0, 0x3D, 0x2E, 0xCF, 0xC3, 0x9A, 0x4E, 0x95, 0xAC, 0xAE, 0x86, 0xB7, 0xFA, 0xB5, 0xE5, 0xB1, 0x9C, 0xCF, 0x7E, 0xF7, 0x12, 0x3C, 0x90, 0x99, 0x03, 0xC8, 0xCA, 0xB8, 0xB6, 0x30, 0x70, 0x8A, 0xBF, 0x31, 0x62, 0x7A, 0xE0, 0x78, 0xBF, 0x5C, 0xA3, 0x99, 0x47, 0x91, 0x53, 0x92, 0xD6, 0xDA, 0xA4, 0xAD, 0xEE, 0x29, 0xEA, 0xAF, 0x7B, 0x24, 0xD2, 0x7E, 0x6D, 0x74, 0xD4, 0xFA, 0xCE, 0x1F, 0xCD, 0x17, 0x2A, 0x84, 0xBF, 0xAD, 0x0F, 0x91, 0x75, 0x0D, 0x48, 0x0C, 0xEF, 0x00, 0x7D, 0x6B, 0x8A, 0xF1, 0x8E, 0xBE, 0x51, 0x59, 0x62, 0xE7, 0xDC, 0x57, 0xA7, 0x6B, 0xDE, 0x04, 0x96, 0x59, 0xD8, 0x2A, 0x1D, 0xA6, 0xB9, 0xCD, 0x7B, 0xE1, 0xAB, 0x45, 0x6C, 0xCC, 0x63, 0x24, 0x9F, 0x6A, 0xFC, 0xBF, 0x3E, 0xE1, 0xBC, 0x47, 0x34, 0xB9, 0x56, 0x87, 0xD4, 0x62, 0xDD, 0x5A, 0x90, 0x7E, 0xCC, 0xE6, 0x3F, 0x65, 0x0B, 0xB9, 0x07, 0xED, 0x4B, 0xE0, 0x77, 0x20, 0xFF, 0x00, 0xC8, 0x6A, 0xDB, 0xFF, 0x00, 0x46, 0x2D, 0x64, 0x7E, 0xDF, 0x24, 0xB7, 0xED, 0xAB, 0xF1, 0x45, 0x8F, 0x53, 0xE2, 0x5B, 0xDF, 0xFD, 0x1A, 0xD5, 0xE8, 0xBF, 0xB3, 0x07, 0x82, 0x24, 0x83, 0xF6, 0xA3, 0xF0, 0x37, 0xEE, 0xCE, 0x3F, 0xB6, 0x6D, 0x8F, 0x4F, 0xFA, 0x68, 0x2B, 0x80, 0xFF, 0x00, 0x82, 0x82, 0x41, 0xE4, 0x7E, 0xDB, 0x9F, 0x15, 0x23, 0x3C, 0x15, 0xF1, 0x35, 0xE8, 0xFF, 0x00, 0xC8, 0xAD, 0x5F, 0x92, 0xE7, 0x18, 0x79, 0xD1, 0xE5, 0xA7, 0x3E, 0xEC, 0xF9, 0xFC, 0xDE, 0x9C, 0xE9, 0xF0, 0xF2, 0x53, 0xDF, 0xDB, 0xFF, 0x00, 0xED, 0x87, 0x8C, 0xB0, 0xC1, 0xAF, 0xD0, 0xDF, 0xF8, 0x23, 0xAE, 0x95, 0xF1, 0xCB, 0x50, 0xF1, 0x37, 0x83, 0xD3, 0xE1, 0xAF, 0xFC, 0x28, 0xDB, 0x84, 0x3E, 0x77, 0xD8, 0xE0, 0xF1, 0x5A, 0xC4, 0xD3, 0x7F, 0xC7, 0xC4, 0x9B, 0xBC, 0xD0, 0x14, 0xC9, 0xF7, 0xF7, 0x63, 0xFD, 0x9D, 0xB5, 0xF9, 0xE8, 0xE3, 0x22, 0xBE, 0xAC, 0xFF, 0x00, 0x82, 0x76, 0xF8, 0x77, 0xE0, 0xCE, 0xB7, 0xE2, 0xEF, 0x0F, 0xC7, 0xF1, 0x03, 0xE0, 0xFF, 0x00, 0xC6, 0x6F, 0x88, 0x12, 0x48, 0x5F, 0xED, 0x7F, 0xF0, 0x8B, 0x4F, 0x26, 0xCB, 0xAF, 0xDE, 0xB6, 0xDF, 0x29, 0x23, 0xD8, 0xFC, 0x2E, 0xD5, 0x38, 0x7F, 0xBC, 0xA6, 0xBC, 0x33, 0xF3, 0xD3, 0xD5, 0xFF, 0x00, 0xE0, 0xA9, 0xBA, 0x37, 0xC7, 0x0D, 0x33, 0xC3, 0xDF, 0x18, 0x17, 0xC7, 0xFA, 0x5F, 0xEC, 0xEB, 0xA7, 0xD8, 0xA7, 0x8D, 0x00, 0xD5, 0xFF, 0x00, 0xE1, 0x1A, 0x7D, 0x39, 0x75, 0x83, 0x76, 0x5E, 0x3C, 0x1B, 0x55, 0xDC, 0x2E, 0xFE, 0xCE, 0x7E, 0x5C, 0xFC, 0xA0, 0x63, 0x76, 0x46, 0x32, 0x6B, 0xF3, 0x96, 0xBE, 0xB2, 0xFD, 0xB8, 0x74, 0x5F, 0x81, 0xBA, 0x4C, 0xBF, 0x11, 0x23, 0xF0, 0x2F, 0xC2, 0xBF, 0x8D, 0xDE, 0x11, 0xD6, 0x6D, 0xFC, 0x4A, 0x63, 0xD2, 0xE5, 0xF1, 0x25, 0xEA, 0xAD, 0x96, 0x8F, 0x6B, 0x95, 0xDD, 0x6B, 0x71, 0x0B, 0x23, 0xCA, 0x66, 0x1F, 0x30, 0x05, 0xA6, 0xCF, 0xCC, 0xB9, 0xCE, 0x30, 0x7E, 0x4D, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0xBE, 0xD8, 0xFF, 0x00, 0x82, 0x7A, 0x7C, 0x45, 0x5F, 0x0E, 0xF8, 0x7F, 0xC0, 0x36, 0x9F, 0xF0, 0xD7, 0xBA, 0x87, 0xC1, 0xBF, 0x2B, 0xC5, 0xA9, 0x33, 0x68, 0x5F, 0xD9, 0x77, 0x92, 0xDB, 0x68, 0x8B, 0xBB, 0x9D, 0x4B, 0xCD, 0xE6, 0xD8, 0x9F, 0xF6, 0x58, 0x7D, 0x6B, 0xE2, 0x7A, 0xFB, 0xCB, 0xFE, 0x09, 0xA5, 0xE0, 0x1F, 0x88, 0x1A, 0xF7, 0x87, 0x7E, 0x1B, 0xDE, 0x68, 0x7F, 0xB2, 0xEF, 0xC3, 0x3F, 0x8B, 0x1A, 0x4C, 0x9E, 0x35, 0x8E, 0x1B, 0x5D, 0x67, 0x57, 0x66, 0x8E, 0xF3, 0x55, 0xB9, 0xDD, 0xC5, 0x8C, 0xCE, 0x67, 0x31, 0x88, 0x01, 0xEB, 0xBA, 0xDC, 0x8C, 0x75, 0x26, 0x80, 0x26, 0xFF, 0x00, 0x82, 0x84, 0x78, 0xCA, 0xD7, 0xC5, 0x5F, 0x1B, 0xE7, 0x30, 0xFE, 0xD3, 0x97, 0x3F, 0xB4, 0x0B, 0x19, 0xA4, 0x6F, 0x31, 0xAC, 0x4C, 0x11, 0xB8, 0xF2, 0x66, 0xFD, 0xF6, 0xE5, 0xFD, 0xDE, 0x46, 0x71, 0x81, 0xCF, 0xCF, 0x5F, 0x3B, 0xBA, 0xF5, 0x15, 0xF5, 0x57, 0xFC, 0x14, 0xE7, 0xC2, 0x1E, 0x36, 0xF0, 0xE7, 0xC6, 0xD9, 0xDB, 0xC5, 0x5F, 0xB3, 0xCF, 0xC3, 0xBF, 0x82, 0x63, 0xED, 0x2E, 0xA5, 0x7C, 0x35, 0x2C, 0x52, 0xED, 0x7F, 0x22, 0x6C, 0x45, 0xBA, 0x3D, 0xAA, 0x54, 0x80, 0x49, 0xF9, 0x07, 0xDC, 0x15, 0xF2, 0xBC, 0x83, 0x22, 0xB5, 0xA7, 0xB1, 0x51, 0x3E, 0xA1, 0xFF, 0x00, 0x82, 0x2A, 0xE9, 0x67, 0x58, 0xFF, 0x00, 0x82, 0x97, 0x7C, 0x3B, 0xB7, 0xDB, 0x93, 0x25, 0xAE, 0xB7, 0xFA, 0x68, 0x97, 0xE7, 0xFA, 0x57, 0x4D, 0xFB, 0x5E, 0xF8, 0x45, 0x97, 0xE3, 0x07, 0x89, 0x8B, 0x27, 0x5D, 0x46, 0xE3, 0xB7, 0xFD, 0x34, 0x6A, 0x4F, 0xF8, 0x37, 0xF3, 0x4B, 0x1A, 0xBF, 0xFC, 0x15, 0xC3, 0xE1, 0x65, 0xB1, 0x19, 0x13, 0x5B, 0x6B, 0xE3, 0x1E, 0xFF, 0x00, 0xD8, 0x1A, 0x91, 0xAF, 0x71, 0xFD, 0xAE, 0xFE, 0x16, 0xFD, 0xAB, 0xE2, 0x7F, 0x88, 0x8E, 0xC3, 0xBC, 0x5F, 0x4F, 0xDB, 0xFE, 0x9A, 0x35, 0x7F, 0x51, 0xFD, 0x1D, 0xEA, 0x53, 0xAB, 0x4B, 0x1B, 0x82, 0xA9, 0xB4, 0xB9, 0x5F, 0xDE, 0x9A, 0xFD, 0x0F, 0x47, 0x0F, 0x9B, 0x2C, 0x3A, 0xA7, 0x45, 0xEC, 0xE5, 0x27, 0xF7, 0xA8, 0xFF, 0x00, 0x91, 0xF9, 0xF9, 0xE2, 0x7D, 0x1C, 0xDB, 0x4E, 0xDF, 0x29, 0x1C, 0xD6, 0x7E, 0x9F, 0x6C, 0xC9, 0x20, 0x27, 0x38, 0xCD, 0x7A, 0xC7, 0xC4, 0x9F, 0x87, 0xF2, 0xD8, 0x5C, 0x3E, 0xE4, 0x38, 0xCF, 0xA5, 0x70, 0xEF, 0xA2, 0x79, 0x3D, 0x31, 0xC5, 0x7B, 0x1C, 0x4F, 0x90, 0xD5, 0xC1, 0xE3, 0x25, 0xA6, 0x87, 0xD5, 0xC7, 0xDF, 0xD5, 0x1D, 0xFF, 0x00, 0xC0, 0x1F, 0xDA, 0x1B, 0xC5, 0x9F, 0x01, 0xE6, 0xD5, 0x1B, 0xC3, 0x3A, 0xB4, 0xB6, 0x10, 0xEB, 0xD6, 0x6D, 0xA7, 0x6A, 0x96, 0xAC, 0x8B, 0x2D, 0xB6, 0xA5, 0x6C, 0xC4, 0x13, 0x14, 0xD1, 0xB0, 0x2A, 0xEB, 0x90, 0x0F, 0x23, 0x20, 0x8E, 0x08, 0xAF, 0x6A, 0xF0, 0x47, 0xFC, 0x14, 0x1B, 0xE2, 0x2D, 0xBD, 0x96, 0xB1, 0xA5, 0xCB, 0xAE, 0x22, 0xE9, 0x9E, 0x22, 0xB2, 0x87, 0x4D, 0xBD, 0xB5, 0x8A, 0xD2, 0x28, 0xE1, 0x7B, 0x58, 0x7F, 0xD5, 0x42, 0xAA, 0x17, 0x08, 0x88, 0x7E, 0x60, 0x17, 0x1F, 0x37, 0x3C, 0x9A, 0xF1, 0x7F, 0x86, 0x9F, 0xB3, 0x47, 0x8B, 0x3E, 0x23, 0xFC, 0x27, 0xF1, 0x37, 0x8E, 0x34, 0xA8, 0x74, 0xD1, 0xE1, 0x7F, 0x06, 0xDC, 0x5B, 0x5A, 0xEB, 0x37, 0xB7, 0x37, 0xD1, 0xC0, 0x2C, 0x64, 0xB9, 0x62, 0xB6, 0xE1, 0x95, 0x8E, 0x4F, 0x98, 0xC1, 0x95, 0x70, 0x0E, 0x4A, 0x91, 0xDA, 0xBB, 0x2D, 0x63, 0xF6, 0x34, 0xF8, 0x8D, 0xE0, 0x4F, 0x89, 0xBA, 0xAF, 0x84, 0xF5, 0xCD, 0x26, 0xDB, 0x47, 0xD7, 0x34, 0x5D, 0x13, 0xFE, 0x12, 0x39, 0xD2, 0xF2, 0xF6, 0x38, 0xA2, 0x7D, 0x3F, 0xCB, 0x12, 0x7D, 0xA6, 0x39, 0x09, 0xDA, 0xE9, 0xB1, 0x81, 0xF9, 0x4E, 0x79, 0xC7, 0x5E, 0x28, 0xC9, 0x73, 0x2C, 0xBA, 0x53, 0x74, 0x71, 0x4A, 0x0E, 0x5D, 0x6F, 0x6B, 0xE9, 0x67, 0x7F, 0x97, 0xBB, 0xE9, 0xA7, 0x91, 0xC7, 0x8C, 0xA3, 0x4A, 0x71, 0x71, 0x76, 0xBF, 0xF5, 0xFF, 0x00, 0x00, 0xFA, 0x0B, 0xE1, 0x7F, 0xED, 0x6B, 0xE2, 0x0F, 0x86, 0xDA, 0x26, 0xA1, 0x16, 0x87, 0xA9, 0x24, 0x16, 0xBA, 0xD5, 0xBA, 0xDB, 0xDF, 0xDA, 0xCB, 0x12, 0x4F, 0x6F, 0x76, 0x8A, 0x77, 0x28, 0x74, 0x70, 0x41, 0x2A, 0x46, 0x41, 0xEA, 0x0D, 0x79, 0x3F, 0xC4, 0x1F, 0x1A, 0xDF, 0xFC, 0x4A, 0xF1, 0x85, 0xE6, 0xA7, 0xAA, 0x5D, 0xC9, 0x7F, 0x7F, 0x7B, 0x26, 0xE9, 0x66, 0x7C, 0x65, 0x8F, 0x40, 0x30, 0x38, 0x00, 0x0C, 0x00, 0x07, 0x00, 0x0A, 0x93, 0x55, 0xFD, 0x96, 0x7E, 0x24, 0xF8, 0x0B, 0xC3, 0x9A, 0x5D, 0xC5, 0xE5, 0x8E, 0x9E, 0xED, 0xAD, 0x68, 0xB6, 0xFE, 0x21, 0xD3, 0x6D, 0x21, 0xD4, 0x62, 0x96, 0xEF, 0x50, 0xD3, 0xE7, 0x6D, 0xB0, 0xDC, 0x45, 0x08, 0x3B, 0x9D, 0x5C, 0xF0, 0x30, 0x33, 0xC1, 0xE3, 0x8A, 0xE8, 0x24, 0xFD, 0x93, 0x7C, 0x7D, 0xE0, 0x7B, 0x1D, 0x7E, 0xFF, 0x00, 0x57, 0xD3, 0x6D, 0x09, 0xF0, 0x84, 0x90, 0x27, 0x88, 0xAC, 0xED, 0xAF, 0x62, 0xB8, 0xBC, 0xF0, 0xF1, 0x99, 0xB6, 0xC7, 0xF6, 0xB8, 0x94, 0x96, 0x8B, 0x73, 0x7C, 0xBC, 0xF4, 0x6E, 0x0E, 0x2B, 0xDE, 0xFA, 0xC6, 0x5F, 0x1A, 0xBC, 0xF4, 0xE7, 0x0E, 0x69, 0x69, 0x74, 0xD5, 0xDE, 0xCB, 0x7D, 0xDE, 0xB6, 0x5F, 0x72, 0xEC, 0x78, 0x38, 0x39, 0x7B, 0x06, 0xD2, 0x39, 0xAD, 0x3B, 0xE1, 0xE8, 0xBF, 0xB7, 0xDD, 0xE5, 0xE4, 0x9F, 0x6A, 0xA9, 0xE2, 0x0F, 0x84, 0x05, 0xED, 0xF1, 0xE5, 0x93, 0xF8, 0x57, 0xB5, 0x7C, 0x2F, 0xD0, 0xE0, 0xD4, 0xAD, 0xD1, 0x70, 0x18, 0x91, 0xE9, 0x5D, 0xB5, 0xC7, 0xC3, 0x14, 0xB9, 0x4C, 0x94, 0x18, 0xC7, 0xA5, 0x74, 0xD6, 0x8D, 0x27, 0x17, 0x09, 0x9F, 0x6F, 0x91, 0xE6, 0xE9, 0x4B, 0x92, 0xA6, 0xC7, 0xCB, 0xFF, 0x00, 0xB3, 0xCF, 0xC1, 0x93, 0x07, 0xED, 0x29, 0xE0, 0x97, 0xF2, 0x8E, 0x06, 0xAD, 0x01, 0xCE, 0x3F, 0xDB, 0x15, 0xF2, 0x27, 0xFC, 0x14, 0xAA, 0xD3, 0xEC, 0x5F, 0xB7, 0xF7, 0xC6, 0x28, 0xB1, 0x83, 0x0F, 0x8B, 0x2F, 0xD7, 0xFF, 0x00, 0x23, 0x35, 0x7E, 0xB4, 0x7C, 0x0D, 0xF8, 0x59, 0x1B, 0x7E, 0xD0, 0xBE, 0x11, 0xDB, 0x18, 0xF9, 0x75, 0x28, 0x88, 0xC0, 0xF7, 0xAF, 0xCA, 0xDF, 0xF8, 0x2A, 0xF5, 0x97, 0xF6, 0x7F, 0xFC, 0x14, 0xAF, 0xE3, 0x9C, 0x18, 0xC7, 0x97, 0xE3, 0x4D, 0x49, 0x31, 0xF4, 0x9D, 0xAB, 0xF9, 0xBB, 0xC5, 0x2C, 0xB6, 0x18, 0x6C, 0x4D, 0x29, 0x53, 0xFB, 0x49, 0xFE, 0x67, 0xA3, 0xC7, 0xD2, 0xA3, 0x1C, 0xB3, 0x0F, 0x4E, 0x8F, 0xDA, 0x9C, 0xA5, 0xFF, 0x00, 0x92, 0xA4, 0x7C, 0xEC, 0xE3, 0x06, 0xBE, 0xE6, 0xFF, 0x00, 0x82, 0x54, 0x78, 0xDF, 0x5D, 0xD0, 0xBC, 0x43, 0xE1, 0x58, 0xF4, 0xDF, 0xDA, 0xBB, 0x41, 0xF8, 0x32, 0x23, 0x32, 0xEC, 0xB5, 0xD4, 0x6C, 0xC4, 0xC9, 0xA6, 0xFE, 0xFD, 0xCE, 0x0E, 0xF2, 0xA8, 0x77, 0x1F, 0x9F, 0xAF, 0xF1, 0xD7, 0xC3, 0x8E, 0xBD, 0x45, 0x7D, 0xAD, 0xFF, 0x00, 0x04, 0xB7, 0xF0, 0x4E, 0xA3, 0xE2, 0x0F, 0x11, 0xF8, 0x65, 0xA2, 0xFD, 0x93, 0x74, 0xDF, 0x8D, 0xF0, 0x49, 0xE6, 0xE2, 0x49, 0xEE, 0xCC, 0x47, 0x53, 0xFD, 0xFB, 0x8C, 0x90, 0xE7, 0x67, 0xCA, 0x41, 0x4F, 0xF8, 0x05, 0x7E, 0x52, 0x7E, 0x46, 0x5A, 0xFF, 0x00, 0x82, 0x91, 0x7C, 0x40, 0xF1, 0x66, 0xB7, 0xE1, 0x5F, 0x8A, 0xB6, 0x7A, 0xA7, 0xED, 0x79, 0xE1, 0x0F, 0x8A, 0xDA, 0x7D, 0xC7, 0x8B, 0xC4, 0xB2, 0xF8, 0x7B, 0x4D, 0x82, 0x58, 0xE4, 0xF1, 0x1B, 0x86, 0x8F, 0x1A, 0x82, 0x84, 0x8B, 0xC8, 0x01, 0x71, 0x92, 0x04, 0xA7, 0xFD, 0x5F, 0x04, 0xF0, 0x2B, 0xE0, 0x3A, 0xFB, 0xAB, 0xFE, 0x0A, 0x15, 0xE0, 0x19, 0x74, 0x4F, 0x0D, 0xFC, 0x52, 0xBC, 0x6F, 0xD8, 0xDE, 0xE3, 0xE1, 0x08, 0xB7, 0xF1, 0x6F, 0x92, 0xDE, 0x21, 0x4D, 0x4A, 0xEE, 0x5B, 0x7F, 0x0D, 0x36, 0xF8, 0xFF, 0x00, 0xE2, 0x5E, 0x10, 0x7F, 0xA3, 0x10, 0xD9, 0xC6, 0x47, 0xFC, 0xF4, 0xE3, 0xB5, 0x7C, 0x2B, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x7D, 0x3B, 0xFB, 0x14, 0xEA, 0x7F, 0x01, 0xEC, 0xAE, 0xFC, 0x17, 0xFF, 0x00, 0x09, 0xE6, 0xB9, 0xF1, 0xCF, 0x47, 0xF1, 0x02, 0x78, 0x92, 0x36, 0xD4, 0x9F, 0xC2, 0xC2, 0x06, 0xB3, 0x5B, 0x0C, 0xF5, 0xB7, 0x0A, 0x45, 0xC0, 0xB9, 0x3E, 0xA3, 0x38, 0xC7, 0x00, 0xD7, 0xCC, 0x55, 0xFA, 0x2D, 0xFF, 0x00, 0x04, 0xBA, 0xF8, 0x81, 0xF1, 0xD3, 0x47, 0xF8, 0x71, 0xF0, 0xCE, 0xC7, 0xC0, 0xBE, 0x3E, 0xF8, 0x0B, 0xA1, 0xF8, 0x76, 0x1F, 0x1F, 0x47, 0x3E, 0x9F, 0x65, 0xE2, 0xA7, 0xB0, 0xFE, 0xD1, 0xB3, 0xBE, 0xDC, 0x3F, 0xD2, 0x26, 0x0E, 0xA2, 0xE0, 0x5B, 0x8E, 0xC4, 0x38, 0x1C, 0xF1, 0x8A, 0x00, 0xF3, 0xBF, 0xDB, 0x23, 0x54, 0xF8, 0x2D, 0xA8, 0xFC, 0x73, 0x98, 0xFC, 0x2D, 0xD6, 0xBE, 0x33, 0xEA, 0xEC, 0x5A, 0x52, 0x1B, 0xC6, 0xCE, 0x5B, 0x31, 0x79, 0x32, 0xE4, 0xFE, 0xF0, 0x79, 0xBB, 0xF3, 0xB7, 0x19, 0xE3, 0x1B, 0xAB, 0xC8, 0x9D, 0x70, 0x7E, 0xB5, 0xF5, 0xEF, 0xFC, 0x15, 0x6F, 0xC6, 0x1F, 0x18, 0x3C, 0x45, 0xF1, 0xBA, 0xE2, 0x3F, 0x89, 0xBF, 0x10, 0xBE, 0x11, 0xF8, 0xBD, 0xBE, 0xD6, 0xEE, 0x62, 0xF0, 0x73, 0xC6, 0x40, 0x90, 0x41, 0x38, 0x0E, 0x07, 0x2F, 0xB0, 0x02, 0xC0, 0xE4, 0xE3, 0x2C, 0xB5, 0xF2, 0x23, 0x8C, 0x8A, 0xD6, 0x9E, 0xC5, 0x44, 0xFB, 0x5F, 0xFE, 0x0D, 0xC8, 0x87, 0xCF, 0xFF, 0x00, 0x82, 0xCE, 0x7C, 0x1C, 0x8F, 0xA8, 0x75, 0xD7, 0x54, 0xFE, 0x3A, 0x0E, 0xA3, 0x5F, 0x6F, 0xFE, 0xD6, 0xBF, 0x0D, 0xC8, 0xF8, 0xA5, 0xAF, 0xBF, 0x97, 0xC3, 0xDE, 0xCC, 0x7A, 0x7F, 0xB6, 0x6B, 0xE2, 0x4F, 0xF8, 0x37, 0x08, 0x67, 0xFE, 0x0B, 0x43, 0xF0, 0x63, 0xFE, 0xE3, 0x9F, 0xFA, 0x61, 0xD4, 0x6B, 0xF5, 0x93, 0xF6, 0xA5, 0xF8, 0x69, 0x1D, 0xD7, 0x8C, 0xF5, 0x57, 0xDA, 0xBF, 0x34, 0xF2, 0x1F, 0xFC, 0x78, 0xD7, 0xED, 0x9E, 0x0A, 0xE6, 0x8B, 0x05, 0x98, 0x57, 0xBF, 0xDA, 0x51, 0xFC, 0x1B, 0x3E, 0x67, 0x88, 0xAB, 0xCA, 0x8C, 0xA9, 0x4E, 0x3D, 0xDF, 0xE8, 0x7E, 0x64, 0x7C, 0x55, 0xF8, 0x58, 0xB7, 0x91, 0x4B, 0xFB, 0xBE, 0x7E, 0x95, 0xF3, 0x8F, 0x8E, 0xFC, 0x0B, 0x2E, 0x87, 0x76, 0xE7, 0x61, 0xDB, 0x9F, 0x4A, 0xFD, 0x0C, 0xF8, 0xA1, 0xE0, 0x18, 0xAD, 0x1A, 0x4C, 0x85, 0xC5, 0x7C, 0xEB, 0xF1, 0x6B, 0xC0, 0xB6, 0xD2, 0xC7, 0x26, 0x54, 0x12, 0x6B, 0xFA, 0xDF, 0x15, 0x84, 0xA3, 0x9C, 0x61, 0x39, 0x1F, 0xC4, 0x96, 0x8C, 0xFD, 0x0B, 0x86, 0x33, 0x48, 0xE2, 0x69, 0x28, 0x49, 0xEA, 0x4F, 0xF0, 0x57, 0xC7, 0xDF, 0x0C, 0xF4, 0x5F, 0xF8, 0x27, 0xED, 0x9F, 0x80, 0x35, 0x1F, 0x88, 0x1A, 0x1E, 0x8B, 0xE2, 0x5F, 0x19, 0x7C, 0x51, 0xD3, 0x75, 0xCF, 0x13, 0xC1, 0x3E, 0x97, 0xAA, 0x4D, 0xF6, 0x2D, 0x0E, 0xCA, 0x07, 0x58, 0x83, 0xB4, 0x56, 0xAC, 0x92, 0x3F, 0x9E, 0xF2, 0x3E, 0xC8, 0xD9, 0xBE, 0x56, 0x5F, 0xE2, 0xCA, 0xAF, 0x41, 0xF1, 0x5B, 0xF6, 0xF6, 0xF0, 0x3F, 0xC6, 0x8F, 0xD9, 0x73, 0xC6, 0x3E, 0x17, 0xF1, 0x46, 0xB1, 0x0C, 0xFF, 0x00, 0x11, 0xB4, 0x3D, 0x56, 0x4F, 0x0C, 0x78, 0x2F, 0xC4, 0xAF, 0x05, 0xD1, 0xB7, 0xB9, 0xF0, 0xB5, 0xE6, 0xA3, 0x1D, 0xDB, 0x2C, 0xC7, 0xCA, 0xF3, 0x80, 0xB4, 0xFB, 0x2A, 0xA2, 0x82, 0x81, 0xFC, 0xBB, 0x96, 0x55, 0x47, 0x39, 0x03, 0xE4, 0x3F, 0x89, 0x5A, 0x19, 0xD0, 0x5E, 0x46, 0x84, 0x80, 0x39, 0xAF, 0x0A, 0xF1, 0xA7, 0x89, 0xEE, 0x23, 0xBC, 0x2A, 0x64, 0x3D, 0x7D, 0x6B, 0xF9, 0xA3, 0x89, 0x32, 0x9A, 0x79, 0x4E, 0x21, 0xD5, 0xAB, 0xCD, 0xCC, 0xA5, 0xCC, 0xB6, 0xD1, 0xDD, 0x6D, 0xA6, 0xCD, 0x2B, 0x5B, 0xB7, 0x9E, 0xA7, 0xAD, 0x8D, 0xA7, 0x4E, 0x9B, 0xBB, 0xBD, 0xEF, 0x7F, 0xEB, 0xE5, 0xA1, 0xFA, 0xD3, 0xF1, 0x07, 0xFE, 0x0A, 0x73, 0xF0, 0xD7, 0xC1, 0x3F, 0xF0, 0x50, 0x2F, 0x86, 0x7A, 0xCF, 0x87, 0x61, 0xF0, 0xEF, 0x8D, 0x3E, 0x13, 0xFC, 0x38, 0xB6, 0xF0, 0xDE, 0x9B, 0x63, 0xAC, 0x58, 0xE8, 0x93, 0x5B, 0xEB, 0x31, 0xD9, 0x69, 0xF6, 0x8B, 0x14, 0x91, 0x66, 0xE6, 0x28, 0x65, 0x38, 0x9C, 0xC9, 0x20, 0x8C, 0xEE, 0x52, 0x02, 0x90, 0xC1, 0x89, 0x03, 0x85, 0xF0, 0xA7, 0xED, 0x31, 0xE0, 0x6F, 0xD9, 0xC7, 0xE1, 0xDF, 0xED, 0x0B, 0x2D, 0x9F, 0x8F, 0x2D, 0x3E, 0x24, 0xF8, 0xCB, 0xE3, 0x63, 0x7F, 0x63, 0xE9, 0x86, 0xC2, 0xCA, 0xF6, 0x28, 0x34, 0xFD, 0x39, 0xEE, 0xCD, 0xCC, 0xF7, 0x77, 0x6F, 0x75, 0x14, 0x47, 0xCF, 0x71, 0xB1, 0x12, 0x24, 0x0E, 0x54, 0xA9, 0x66, 0x6E, 0x40, 0xAF, 0xCE, 0xCF, 0x00, 0x6B, 0x12, 0x5C, 0x40, 0x77, 0x31, 0xC0, 0x1E, 0xB5, 0xD9, 0xD9, 0xC9, 0xBD, 0x81, 0x07, 0x9A, 0xF7, 0x78, 0x77, 0x09, 0x83, 0xC6, 0xE1, 0x61, 0xCA, 0xE4, 0xAC, 0xA2, 0x9E, 0xAB, 0xDE, 0xE4, 0x97, 0x32, 0xBE, 0x9B, 0xDF, 0x7E, 0x5B, 0x5F, 0xA9, 0xE3, 0xE2, 0x70, 0xAB, 0xD9, 0xA9, 0xC0, 0xFB, 0x37, 0xF6, 0x79, 0xF8, 0x82, 0x97, 0x31, 0xC3, 0x97, 0xE8, 0x3D, 0x6B, 0xE8, 0x4D, 0x07, 0xC4, 0x2B, 0x76, 0x8B, 0x93, 0x95, 0x35, 0xF9, 0xFF, 0x00, 0xF0, 0x83, 0xC7, 0xB2, 0x78, 0x6E, 0x74, 0x0C, 0xE4, 0x0C, 0xF1, 0x5F, 0x52, 0xFC, 0x30, 0xF8, 0x9F, 0x1E, 0xA3, 0x6F, 0x17, 0xEF, 0x06, 0x70, 0x3B, 0xD7, 0xD6, 0x4A, 0x57, 0x7A, 0x9E, 0x5E, 0x17, 0x19, 0x28, 0x55, 0x3E, 0xAA, 0xFD, 0x97, 0x7C, 0x3B, 0x1E, 0xAB, 0xFB, 0x44, 0xF8, 0x44, 0x80, 0x08, 0x3A, 0x84, 0x67, 0xF9, 0xD7, 0xE2, 0xFF, 0x00, 0xFC, 0x16, 0x46, 0xD5, 0x6D, 0x7F, 0xE0, 0xAB, 0x1F, 0xB4, 0x2C, 0x4B, 0xD1, 0x7C, 0x79, 0xAA, 0xA8, 0xFC, 0x2E, 0x1E, 0xBF, 0x68, 0x3F, 0x61, 0x5D, 0x6D, 0x75, 0x2F, 0xDA, 0x5F, 0xC1, 0xB1, 0xEE, 0xDD, 0xE6, 0x6A, 0x31, 0x8F, 0xE7, 0x5F, 0x8C, 0xFF, 0x00, 0xF0, 0x59, 0xC5, 0xCF, 0xFC, 0x15, 0x83, 0xF6, 0x88, 0xFF, 0x00, 0xB1, 0xFB, 0x56, 0xFF, 0x00, 0xD2, 0x97, 0xAF, 0xC0, 0xFC, 0x5E, 0x93, 0xFA, 0xE5, 0x08, 0x74, 0xE5, 0x7F, 0x99, 0xEF, 0x67, 0xF8, 0xE9, 0x57, 0xA5, 0x46, 0x2D, 0xE8, 0xAF, 0xFA, 0x1F, 0x2E, 0xB8, 0xEF, 0x5F, 0x51, 0x7F, 0xC1, 0x3B, 0x7C, 0x4F, 0xF0, 0x8B, 0xC3, 0x9E, 0x33, 0xD0, 0x64, 0xF1, 0xD7, 0xC7, 0x2F, 0x8B, 0x9F, 0x0B, 0x1A, 0x32, 0xFF, 0x00, 0x6A, 0x9B, 0xC3, 0x36, 0xEF, 0xB6, 0xCB, 0xF7, 0xAD, 0x8F, 0x2D, 0xD1, 0x64, 0x6E, 0x57, 0x6B, 0x1F, 0xDD, 0xF5, 0x26, 0xBE, 0x60, 0x71, 0x83, 0x5F, 0x7B, 0xFF, 0x00, 0xC1, 0x1F, 0xEF, 0xBE, 0x37, 0x5A, 0x78, 0xD3, 0xC2, 0x67, 0xE1, 0xB6, 0x91, 0xF0, 0x4F, 0x51, 0x2A, 0x65, 0xFB, 0x18, 0xF1, 0x4F, 0x90, 0x93, 0x37, 0xFA, 0x44, 0x99, 0xF3, 0x5B, 0xFD, 0x67, 0xDE, 0xDD, 0x8C, 0xFF, 0x00, 0x0E, 0x2B, 0xF2, 0x13, 0xE6, 0x4F, 0x1B, 0xFD, 0xB9, 0x7C, 0x45, 0xF0, 0x9F, 0x5B, 0x9B, 0xE2, 0x24, 0xBE, 0x11, 0xFD, 0xA0, 0xBE, 0x30, 0x7C, 0x48, 0xBE, 0xB8, 0xF1, 0x11, 0x7D, 0x32, 0xCF, 0x5F, 0xD1, 0x9C, 0x5A, 0x6B, 0x76, 0xBB, 0x93, 0xFD, 0x2E, 0xE2, 0xE5, 0xE7, 0x46, 0x13, 0x01, 0xB8, 0xE0, 0xDA, 0x8C, 0x95, 0x5E, 0x99, 0xC8, 0xF9, 0x2E, 0xBF, 0x45, 0xFF, 0x00, 0xE0, 0xA7, 0xED, 0xF1, 0xC6, 0xE3, 0xC2, 0x9F, 0x18, 0xA6, 0xF1, 0xF7, 0x81, 0x7F, 0x67, 0xBD, 0x26, 0xC5, 0xFC, 0x6B, 0x9D, 0x63, 0x52, 0xF0, 0xE4, 0x36, 0x0D, 0xAC, 0x45, 0x77, 0xBE, 0x3C, 0x2D, 0xAC, 0x82, 0x43, 0x73, 0xF6, 0x76, 0x3B, 0x73, 0xF2, 0xE3, 0x96, 0xCE, 0x39, 0xAF, 0xCE, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x2B, 0xEB, 0xCF, 0xD8, 0x3F, 0x44, 0xF8, 0x7F, 0xAB, 0x59, 0xF8, 0x06, 0x1F, 0x11, 0x7E, 0xCB, 0xFF, 0x00, 0x11, 0x3E, 0x2C, 0x6A, 0x57, 0x1E, 0x2B, 0x8E, 0x39, 0xF5, 0x5D, 0x1F, 0x5D, 0xB9, 0x8E, 0xDF, 0x5C, 0x80, 0xB7, 0xFC, 0x83, 0xA3, 0xB5, 0x58, 0x36, 0x19, 0x4F, 0x4C, 0x89, 0x81, 0x3E, 0xD5, 0xF2, 0x1D, 0x7D, 0x9D, 0xFB, 0x01, 0xF8, 0xF9, 0x3C, 0x3D, 0xE1, 0xFF, 0x00, 0x01, 0xDB, 0xCB, 0xFB, 0x5E, 0x6B, 0x9F, 0x07, 0x6D, 0xE0, 0xF1, 0x5A, 0x4F, 0x2E, 0x83, 0x1D, 0xA5, 0xF4, 0x96, 0xBA, 0x22, 0xEE, 0xE7, 0x52, 0x05, 0x58, 0xDB, 0xB3, 0x77, 0xDA, 0x53, 0x3E, 0xB4, 0x01, 0xD2, 0x7E, 0xDE, 0x5E, 0x13, 0xF0, 0x8F, 0x86, 0x3E, 0x37, 0xCD, 0x1F, 0x85, 0xFF, 0x00, 0x66, 0x7F, 0x1B, 0x7C, 0x05, 0x8C, 0x4B, 0x20, 0x03, 0x5E, 0xB9, 0xB8, 0x66, 0x55, 0xF2, 0x65, 0xFD, 0xC9, 0x8E, 0x42, 0xCA, 0x0B, 0x70, 0x72, 0x1B, 0x3F, 0x21, 0xF7, 0xAF, 0x06, 0x61, 0x83, 0x5E, 0xEF, 0xFB, 0x77, 0x78, 0xD2, 0xC3, 0xC5, 0xBF, 0x1B, 0x26, 0x92, 0xC7, 0xF6, 0x9A, 0xD5, 0x3E, 0x3F, 0x29, 0x96, 0x46, 0x12, 0x5C, 0x59, 0x49, 0x6E, 0x8E, 0x3C, 0x99, 0x7F, 0x7D, 0xCE, 0x13, 0x23, 0x38, 0xE0, 0x67, 0xE7, 0x35, 0xE1, 0x4E, 0x32, 0x2B, 0x5A, 0x7B, 0x15, 0x13, 0xED, 0xAF, 0xF8, 0x37, 0x08, 0x7F, 0xC6, 0xE8, 0xFE, 0x0B, 0xFD, 0x75, 0xCF, 0xFD, 0x30, 0xEA, 0x35, 0xFB, 0x35, 0xFB, 0x4E, 0xA7, 0xFC, 0x54, 0xFA, 0x98, 0xDB, 0xC8, 0x99, 0xFB, 0x7B, 0x9A, 0xFC, 0x0A, 0xFF, 0x00, 0x82, 0x54, 0xFE, 0xD6, 0x3A, 0x5F, 0xEC, 0x3B, 0xFF, 0x00, 0x05, 0x07, 0xF8, 0x63, 0xF1, 0x43, 0x5C, 0xB7, 0x92, 0xE3, 0x44, 0xF0, 0xDE, 0xA1, 0x34, 0x7A, 0x90, 0x8D, 0x4B, 0x49, 0x1D, 0xAD, 0xD5, 0xAC, 0xF6, 0x73, 0x4A, 0xAA, 0x08, 0xDC, 0xD1, 0xC7, 0x70, 0xCE, 0x06, 0x79, 0x28, 0x07, 0x7A, 0xFE, 0x93, 0x3E, 0x37, 0xFC, 0x11, 0x8B, 0xE3, 0xFE, 0x85, 0x6F, 0xE3, 0x6F, 0x87, 0x7A, 0x86, 0x9F, 0xE2, 0xAD, 0x07, 0xC4, 0x50, 0x8B, 0xCB, 0x79, 0xAC, 0x6E, 0x12, 0x48, 0xE5, 0x0D, 0xCE, 0xE4, 0x60, 0x70, 0xC0, 0x9E, 0xDD, 0x41, 0xC8, 0x35, 0xF7, 0x3C, 0x07, 0x99, 0xE1, 0xF0, 0x79, 0x83, 0xFA, 0xC4, 0x94, 0x54, 0x92, 0xB3, 0x7A, 0x2D, 0x0F, 0x95, 0xE2, 0xCC, 0x1D, 0x7A, 0xD8, 0x78, 0xCA, 0x82, 0xBB, 0x8B, 0xD9, 0x6E, 0x7E, 0x6B, 0x7C, 0x69, 0xBA, 0xF2, 0x9A, 0x5C, 0xF1, 0x8A, 0xF9, 0x9B, 0xE2, 0xB6, 0xB5, 0x14, 0x51, 0x4B, 0xC8, 0x26, 0xBE, 0xE4, 0xFD, 0xA1, 0x7F, 0x60, 0xDF, 0x8B, 0xFA, 0xCB, 0xC8, 0x74, 0xEF, 0x04, 0x6B, 0x17, 0x2B, 0xDB, 0xCA, 0x8C, 0x36, 0x7F, 0x5A, 0xF9, 0x0F, 0xE2, 0xE7, 0xFC, 0x13, 0xCF, 0xE3, 0xFC, 0x46, 0x43, 0xFF, 0x00, 0x0A, 0xBF, 0xC5, 0xAE, 0xA4, 0xF5, 0x5B, 0x32, 0x45, 0x7F, 0x6E, 0xF0, 0x9E, 0x7D, 0x94, 0x4A, 0x9C, 0x5B, 0xC5, 0x53, 0xBF, 0x6E, 0x78, 0xFF, 0x00, 0x99, 0xC3, 0xC2, 0x19, 0x96, 0x22, 0x85, 0x55, 0x1A, 0xB0, 0x92, 0xF5, 0x4C, 0xF8, 0xA7, 0xE3, 0xA7, 0x8B, 0x44, 0x62, 0x45, 0x04, 0x0C, 0x83, 0x5F, 0x39, 0x6B, 0x12, 0x3E, 0xAF, 0xA9, 0x33, 0xF2, 0x54, 0x1E, 0x3D, 0xEB, 0xEC, 0x9F, 0x8A, 0xFF, 0x00, 0xF0, 0x4D, 0xCF, 0x8F, 0x3A, 0x9F, 0x9B, 0x9F, 0x86, 0x3E, 0x2B, 0xE8, 0x4F, 0x36, 0x84, 0x57, 0x9C, 0x5A, 0xFF, 0x00, 0xC1, 0x37, 0xFE, 0x33, 0x5A, 0xC8, 0x12, 0xE3, 0xE1, 0xCF, 0x88, 0xED, 0xCA, 0x9E, 0x7C, 0xC8, 0x02, 0xFF, 0x00, 0x33, 0x5F, 0x85, 0xF8, 0xAD, 0x1A, 0x98, 0xBC, 0xC9, 0xC6, 0x8B, 0x52, 0x87, 0x46, 0x9A, 0x6B, 0xEF, 0x4C, 0xFD, 0x92, 0xA5, 0x3A, 0xD8, 0xAB, 0x4A, 0x31, 0x6D, 0x7A, 0x33, 0xCD, 0x7E, 0x1D, 0xD8, 0x32, 0xD9, 0xB1, 0xC1, 0xE9, 0x5D, 0x6D, 0x81, 0xF2, 0xFF, 0x00, 0x0A, 0xF5, 0x3F, 0x0C, 0xFE, 0xC1, 0xDF, 0x13, 0x74, 0xBB, 0x02, 0x24, 0xF0, 0x7E, 0xA5, 0x1B, 0x63, 0xA3, 0x6C, 0x07, 0xFF, 0x00, 0x42, 0xA4, 0x8B, 0xF6, 0x34, 0xF8, 0x9B, 0xE7, 0x32, 0x8F, 0x07, 0xEA, 0xB8, 0xCF, 0x07, 0x09, 0xFF, 0x00, 0xC5, 0x57, 0x37, 0x0E, 0xDB, 0x07, 0x4E, 0x09, 0xC9, 0x5F, 0xD5, 0x7F, 0x99, 0xE8, 0x4B, 0x2F, 0xA9, 0x1A, 0x29, 0x34, 0x71, 0xBA, 0x56, 0xA3, 0xB7, 0x1B, 0x4E, 0x08, 0xF7, 0xAF, 0x47, 0xF8, 0x6D, 0xF1, 0x26, 0x5D, 0x16, 0xE6, 0x35, 0x32, 0x61, 0x46, 0x3A, 0x9A, 0xA9, 0x6B, 0xFB, 0x15, 0x7C, 0x55, 0x0C, 0x0C, 0x7E, 0x09, 0xD6, 0xE4, 0xFF, 0x00, 0x76, 0x35, 0x3F, 0xC8, 0xD6, 0xA6, 0x99, 0xFB, 0x12, 0xFC, 0x68, 0xB8, 0xBC, 0x4F, 0x23, 0xE1, 0xCF, 0x8A, 0xE5, 0xE7, 0xF8, 0x2C, 0xCB, 0x7F, 0x23, 0x5F, 0x63, 0x8A, 0xC5, 0xE1, 0xD7, 0xBF, 0xED, 0x22, 0xBF, 0xED, 0xE5, 0xFE, 0x67, 0xC4, 0xE3, 0x30, 0x75, 0x29, 0xD5, 0xBA, 0x4C, 0xFB, 0x8F, 0xFE, 0x09, 0xAD, 0xF1, 0x1C, 0x6B, 0x3F, 0xB5, 0x47, 0xC3, 0xF8, 0xD5, 0xF2, 0xF2, 0x6B, 0x10, 0x2E, 0x3E, 0xA7, 0x15, 0xF9, 0x81, 0xFF, 0x00, 0x05, 0x99, 0x5C, 0xFF, 0x00, 0xC1, 0x57, 0xBF, 0x68, 0x8F, 0xFB, 0x1F, 0xB5, 0x6F, 0xFD, 0x29, 0x7A, 0xFD, 0x7A, 0xFF, 0x00, 0x82, 0x48, 0xFE, 0xC0, 0xFE, 0x26, 0xFD, 0x9E, 0xBC, 0x45, 0x27, 0xC7, 0x0F, 0x8E, 0x26, 0x2F, 0x87, 0x3E, 0x07, 0xF8, 0x7D, 0x03, 0xEA, 0x61, 0xB5, 0x49, 0x96, 0x17, 0x95, 0xD5, 0x48, 0x0C, 0xC3, 0x3F, 0x2A, 0x8C, 0xF0, 0x3E, 0xF3, 0x31, 0x00, 0x0C, 0xF5, 0xFC, 0x4B, 0xFD, 0xBC, 0xFE, 0x3C, 0x58, 0xFE, 0xD4, 0xBF, 0xB6, 0x87, 0xC5, 0x2F, 0x88, 0xFA, 0x5D, 0xAC, 0xD6, 0x7A, 0x6F, 0x8D, 0xBC, 0x4F, 0x7F, 0xAC, 0x5A, 0x41, 0x29, 0xCC, 0x91, 0x45, 0x34, 0xEC, 0xE8, 0x1B, 0xDF, 0x69, 0x19, 0xAF, 0xE7, 0x6F, 0x12, 0xF3, 0x8C, 0x2E, 0x3B, 0x32, 0x85, 0x2C, 0x2C, 0xD4, 0xFD, 0x9C, 0x6C, 0xDA, 0xD5, 0x5D, 0xB6, 0xED, 0x75, 0xA3, 0xB2, 0xED, 0xDC, 0xD3, 0x11, 0x52, 0x4E, 0x11, 0x84, 0xB7, 0x57, 0xFC, 0x6D, 0xFE, 0x47, 0x8D, 0xBA, 0x73, 0x5F, 0x4C, 0x7F, 0xC1, 0x3E, 0xAC, 0x3E, 0x0B, 0xDF, 0x78, 0xC7, 0x43, 0x8F, 0xE2, 0x27, 0xC2, 0xEF, 0x8C, 0x3E, 0x32, 0xCB, 0x3F, 0xDB, 0x1B, 0xC2, 0xB7, 0x12, 0x7F, 0xA4, 0x7E, 0xF5, 0xB1, 0xE5, 0xA4, 0x65, 0x5B, 0x85, 0xDA, 0xA7, 0xE6, 0xEA, 0x0D, 0x7C, 0xD7, 0x22, 0xD7, 0xDA, 0xFF, 0x00, 0xF0, 0x4A, 0x5F, 0x13, 0xF8, 0xEA, 0xC3, 0xC6, 0x7E, 0x18, 0x87, 0xC2, 0x9F, 0xB5, 0x07, 0x81, 0xFE, 0x10, 0xCA, 0x86, 0x4F, 0x26, 0xDF, 0x5E, 0x51, 0xE5, 0x69, 0xD9, 0x9D, 0xC9, 0x0F, 0xE6, 0x05, 0x4F, 0x98, 0xE5, 0xFE, 0xFF, 0x00, 0x47, 0xAF, 0xCE, 0x4E, 0x33, 0xCB, 0x7F, 0x6D, 0x3B, 0x7F, 0x80, 0x36, 0xFF, 0x00, 0xF0, 0xB1, 0x23, 0xF0, 0x1F, 0xC3, 0xEF, 0x8E, 0x9E, 0x1B, 0xD7, 0x93, 0xC4, 0x84, 0x69, 0x32, 0x78, 0x96, 0xF6, 0x2F, 0xB0, 0xE9, 0xB6, 0x7B, 0x97, 0x74, 0x17, 0x31, 0x32, 0x19, 0xBC, 0xFC, 0x6E, 0xC6, 0xE9, 0x49, 0xCB, 0x2E, 0x7A, 0x60, 0xFC, 0xA5, 0x5F, 0x7E, 0x7F, 0xC1, 0x49, 0x7C, 0x75, 0xF1, 0x2A, 0xF3, 0xC3, 0xDF, 0x16, 0x34, 0xBF, 0x12, 0x7E, 0xD5, 0x5F, 0x0D, 0xFE, 0x27, 0xE9, 0xB2, 0x78, 0xB8, 0x49, 0x7B, 0xA1, 0x68, 0xAE, 0x7C, 0xCF, 0x10, 0xCF, 0xBE, 0x32, 0x2F, 0xA1, 0x09, 0x01, 0x8B, 0xCB, 0x04, 0x03, 0xC4, 0xE7, 0x84, 0x3D, 0x7B, 0xFC, 0x07, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x7B, 0xE7, 0xEC, 0xDB, 0xFB, 0x6E, 0xD9, 0xFE, 0xCF, 0xB6, 0x1E, 0x0F, 0xB7, 0xB8, 0xF8, 0x47, 0xF0, 0xAF, 0xC5, 0x8D, 0xE1, 0x3F, 0x11, 0xC7, 0xE2, 0x13, 0xA8, 0x6A, 0x7A, 0x5B, 0x36, 0xA7, 0xAA, 0x04, 0x39, 0xFB, 0x1C, 0xF3, 0xEF, 0x2A, 0xD6, 0xC7, 0xBA, 0x79, 0x7E, 0x9C, 0xD7, 0x81, 0xD1, 0x40, 0x1F, 0x46, 0x7C, 0x70, 0xFD, 0xAC, 0x74, 0xBF, 0xDA, 0xD7, 0xF6, 0x9A, 0xFF, 0x00, 0x84, 0xAA, 0x0F, 0x01, 0xE8, 0x7E, 0x02, 0x9F, 0x56, 0x32, 0x42, 0x2C, 0x74, 0x57, 0x0B, 0x67, 0x19, 0x74, 0x70, 0xAA, 0xB1, 0xEC, 0x5C, 0x65, 0x8A, 0x8E, 0xB5, 0x9F, 0x5E, 0x0F, 0x6D, 0x71, 0x25, 0xA4, 0xC9, 0x2C, 0x6C, 0xC9, 0x24, 0x6C, 0x19, 0x58, 0x1C, 0x15, 0x23, 0x90, 0x6B, 0xDA, 0xBC, 0x21, 0xE2, 0xE8, 0x7E, 0x20, 0xDB, 0xAB, 0x42, 0xC8, 0xBA, 0xAE, 0x3F, 0x7F, 0x6A, 0x38, 0x69, 0x1B, 0xBB, 0xC6, 0x3B, 0x83, 0xD4, 0xA8, 0xE4, 0x7A, 0x63, 0xA6, 0x90, 0x7D, 0x0A, 0x89, 0x6D, 0x86, 0x0D, 0x7A, 0x67, 0xC1, 0x3F, 0xDB, 0x5B, 0xE2, 0xFF, 0x00, 0xEC, 0xD1, 0xA5, 0xCD, 0x63, 0xF0, 0xFF, 0x00, 0xE2, 0x67, 0x8E, 0x3C, 0x1B, 0x63, 0x70, 0xC5, 0xA4, 0xB6, 0xD2, 0x35, 0x89, 0xED, 0x61, 0x72, 0x7A, 0x9D, 0x8A, 0xC1, 0x73, 0xD3, 0x9C, 0x57, 0x9B, 0x4B, 0x13, 0x21, 0x21, 0x94, 0xAB, 0x0E, 0x08, 0x23, 0x04, 0x54, 0x4C, 0x32, 0x2B, 0x42, 0x8F, 0xA1, 0x5B, 0xFE, 0x0A, 0xEF, 0xFB, 0x51, 0x86, 0xC7, 0xFC, 0x2F, 0xEF, 0x8B, 0x1F, 0xF8, 0x51, 0xDC, 0xFF, 0x00, 0xF1, 0x55, 0x13, 0xFF, 0x00, 0xC1, 0x5E, 0x7F, 0x6A, 0x4C, 0x7F, 0xC9, 0xC0, 0x7C, 0x58, 0xFF, 0x00, 0xC2, 0x8E, 0xE7, 0xFF, 0x00, 0x8A, 0xAF, 0x9E, 0xDC, 0x64, 0x54, 0x4E, 0x3B, 0xD1, 0x64, 0x2B, 0x1E, 0xED, 0xA8, 0x7F, 0xC1, 0x56, 0x3F, 0x69, 0x5D, 0x47, 0x3F, 0x68, 0xF8, 0xE9, 0xF1, 0x3E, 0x6C, 0xF5, 0xDF, 0xAF, 0xDC, 0x1F, 0xFD, 0x9A, 0xB1, 0xAF, 0x7F, 0xE0, 0xA4, 0x5F, 0x1F, 0xEF, 0x39, 0x9B, 0xE3, 0x17, 0xC4, 0x49, 0x0F, 0x7D, 0xDA, 0xDC, 0xE7, 0xFF, 0x00, 0x66, 0xAF, 0x1C, 0x75, 0xED, 0x50, 0xB8, 0xEF, 0x5A, 0x46, 0xB5, 0x48, 0xAB, 0x46, 0x4D, 0x7C, 0xCD, 0xE9, 0xE3, 0x2B, 0xD3, 0xFE, 0x1C, 0xDA, 0xF4, 0x6D, 0x1E, 0xB3, 0x3F, 0xFC, 0x14, 0x27, 0xE3, 0x9C, 0x99, 0xDD, 0xF1, 0x67, 0xC7, 0xAD, 0xF5, 0xD6, 0x26, 0xFF, 0x00, 0x1A, 0xAC, 0xDF, 0xF0, 0x50, 0x3F, 0x8E, 0x08, 0x72, 0x3E, 0x2B, 0xF8, 0xEC, 0x67, 0xFE, 0xA2, 0xF2, 0xFF, 0x00, 0x8D, 0x79, 0x44, 0x8B, 0xFA, 0x54, 0x32, 0x2E, 0x7F, 0x1A, 0x87, 0x56, 0x7F, 0xCC, 0xCD, 0xA5, 0x9A, 0x63, 0x5E, 0xF5, 0x65, 0xFF, 0x00, 0x81, 0x3F, 0xF3, 0x3D, 0x82, 0x2F, 0xF8, 0x28, 0xFF, 0x00, 0xC7, 0xCB, 0x3F, 0xF5, 0x3F, 0x18, 0x3E, 0x20, 0xC7, 0x8F, 0xEE, 0xEB, 0x33, 0x0F, 0xEB, 0x57, 0x2D, 0x7F, 0xE0, 0xAA, 0x9F, 0xB4, 0xA6, 0x96, 0x73, 0x6F, 0xF1, 0xCB, 0xE2, 0x6C, 0x24, 0x1F, 0xE0, 0xD7, 0xA7, 0x1F, 0xFB, 0x35, 0x78, 0x64, 0x82, 0xA0, 0x91, 0x7F, 0x4A, 0x89, 0x4A, 0x52, 0xD2, 0x4E, 0xE6, 0x12, 0xC6, 0x62, 0x25, 0xA4, 0xA7, 0x27, 0xF3, 0x67, 0xA6, 0x7C, 0x7B, 0xFD, 0xBA, 0xFE, 0x34, 0x7E, 0xD4, 0x1E, 0x1E, 0xB7, 0xD2, 0x7E, 0x22, 0x7C, 0x52, 0xF1, 0xD7, 0x8D, 0x34, 0xBB, 0x39, 0x3C, 0xE8, 0x6C, 0xF5, 0x7D, 0x62, 0x7B, 0xA8, 0x23, 0x7E, 0x9B, 0x82, 0x33, 0x15, 0xCF, 0xBE, 0x2B, 0xC8, 0x24, 0x5A, 0xB7, 0x22, 0xE3, 0xF0, 0xA8, 0x24, 0x5A, 0xCD, 0x45, 0x45, 0x5A, 0x27, 0x31, 0x4E, 0x55, 0xAE, 0xFF, 0x00, 0xF6, 0x46, 0xF8, 0xDF, 0xF0, 0xDF, 0xE0, 0x2F, 0xC5, 0x9B, 0x0F, 0x11, 0x78, 0xEB, 0xE1, 0xCF, 0xFC, 0x2C, 0xCD, 0x3E, 0xD5, 0x89, 0xB9, 0xD1, 0xAF, 0x2E, 0xA2, 0x8A, 0xCE, 0xE7, 0xE6, 0xC8, 0xFB, 0xD1, 0x39, 0x1C, 0x60, 0x77, 0xEF, 0x5E, 0x79, 0xAF, 0x3C, 0x9A, 0x75, 0xA0, 0x66, 0x46, 0x4F, 0x34, 0x7C, 0x84, 0x8C, 0x67, 0xE9, 0xEB, 0x5C, 0xB9, 0x39, 0x35, 0x20, 0x7D, 0x05, 0xFB, 0x4A, 0xFE, 0xD3, 0xFF, 0x00, 0x0A, 0x7E, 0x2E, 0x41, 0xE3, 0xC4, 0xF0, 0x8F, 0xC0, 0x7F, 0x0F, 0xF8, 0x22, 0xE7, 0xC4, 0xDE, 0x20, 0x3A, 0xB6, 0x8D, 0xA8, 0x41, 0xAC, 0xDC, 0xBC, 0xDE, 0x1C, 0xB3, 0x3B, 0x3F, 0xE2, 0x5F, 0x1C, 0x0B, 0xB2, 0xDD, 0xE3, 0xF9, 0x5B, 0xE6, 0x31, 0xEE, 0x1B, 0xCF, 0x3C, 0x0A, 0xF9, 0xF6, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA7, 0x23, 0x14, 0x60, 0x54, 0xF2, 0x3A, 0x11, 0xDA, 0x9B, 0x45, 0x00, 0x7D, 0x55, 0xFB, 0x2D, 0x7E, 0xCD, 0x7F, 0x13, 0xFF, 0x00, 0x69, 0x3F, 0xD9, 0x2F, 0xE2, 0xD7, 0x8F, 0xBC, 0x37, 0xAA, 0xDE, 0xC9, 0xA7, 0xFC, 0x1E, 0x86, 0x1D, 0x4B, 0x56, 0x92, 0x49, 0x5A, 0x43, 0x15, 0xA9, 0x82, 0xE1, 0xC8, 0x19, 0xCE, 0x3F, 0xD4, 0xFE, 0x95, 0xF5, 0x17, 0x82, 0xFF, 0x00, 0xE0, 0x9A, 0x1F, 0x10, 0x35, 0x1F, 0xDA, 0x57, 0xF6, 0x59, 0xF0, 0x9D, 0xC2, 0x79, 0xD1, 0xFC, 0x61, 0xF0, 0x69, 0xF1, 0x34, 0xD0, 0x96, 0x6C, 0x5F, 0x46, 0x22, 0xF3, 0x8B, 0x31, 0x07, 0x20, 0xED, 0x96, 0x2F, 0xBA, 0x40, 0xE2, 0xBE, 0x11, 0xF8, 0x19, 0xF1, 0xCB, 0x4B, 0xF8, 0x6B, 0xF0, 0x1B, 0xE2, 0xD7, 0x87, 0x6F, 0x2F, 0x7C, 0x5D, 0x6D, 0xAB, 0x78, 0xC3, 0x4C, 0xB3, 0xB6, 0xD1, 0x57, 0x4A, 0xD4, 0x1E, 0xDE, 0xC0, 0xCC, 0xB7, 0x71, 0x9B, 0x8F, 0xB6, 0xC6, 0x18, 0x09, 0xA3, 0x6B, 0x43, 0x71, 0x1A, 0xA9, 0x0C, 0x03, 0x48, 0x0E, 0x3B, 0xD7, 0xAF, 0x78, 0x03, 0xF6, 0xF5, 0xF0, 0xCF, 0x87, 0xBE, 0x37, 0x7E, 0xCF, 0x1A, 0xFE, 0xA1, 0x79, 0xF1, 0x2A, 0x7D, 0x27, 0xE1, 0x4F, 0x87, 0x5B, 0x4E, 0xD6, 0x56, 0x2D, 0x6E, 0x45, 0xBA, 0x7B, 0xBD, 0xF7, 0x2C, 0x0D, 0x9B, 0xEF, 0xFD, 0xD4, 0x38, 0x6B, 0x55, 0x28, 0x08, 0x04, 0x44, 0x46, 0x39, 0xA7, 0x76, 0x07, 0x75, 0xAA, 0x7E, 0xC9, 0x1E, 0x34, 0xD3, 0x3F, 0xE0, 0x9E, 0x3E, 0x38, 0xF8, 0xAF, 0x27, 0xFC, 0xC0, 0x7E, 0x26, 0x0F, 0x09, 0xC5, 0x77, 0xD5, 0xA2, 0x41, 0x22, 0xC2, 0xD1, 0x63, 0xEE, 0x91, 0xE6, 0x30, 0xE4, 0x8C, 0xFB, 0xD7, 0xBC, 0xDE, 0xFF, 0x00, 0xC1, 0x26, 0xFC, 0x71, 0x73, 0xFB, 0x70, 0xF8, 0x9F, 0xE1, 0x8C, 0x1A, 0x6C, 0x5E, 0x60, 0xF8, 0x54, 0x7C, 0x5B, 0xA7, 0x5B, 0x65, 0x8A, 0xC7, 0x39, 0x44, 0x45, 0x97, 0x39, 0xC9, 0x3E, 0x61, 0x27, 0x04, 0x95, 0xE7, 0xA5, 0x7C, 0x41, 0xA4, 0x7E, 0xD7, 0x3E, 0x1F, 0x1F, 0xB0, 0x87, 0xC4, 0x4F, 0x87, 0xBA, 0x83, 0x78, 0xD2, 0xE3, 0xC6, 0x5E, 0x2A, 0xF1, 0xC5, 0x97, 0x88, 0xAC, 0x26, 0x5D, 0x4D, 0xC6, 0x93, 0x0D, 0xB4, 0x6B, 0x21, 0x9B, 0xCC, 0x83, 0x76, 0x3E, 0xD0, 0xCE, 0xC0, 0xEF, 0x0B, 0x93, 0xC7, 0x3F, 0x2D, 0x7A, 0xDE, 0xA7, 0xFF, 0x00, 0x05, 0x2C, 0xF0, 0x8C, 0xBF, 0xB5, 0xDE, 0xA9, 0xE3, 0x8B, 0x2D, 0x43, 0xE2, 0xB5, 0xAE, 0x87, 0x71, 0xF0, 0xA6, 0x5F, 0x07, 0x5B, 0x31, 0xD6, 0xA4, 0x6D, 0x44, 0x6A, 0x67, 0x4D, 0x30, 0xC6, 0xED, 0x27, 0x99, 0x93, 0x6C, 0x2E, 0xB0, 0xFB, 0x73, 0xD0, 0x74, 0xCF, 0x14, 0x73, 0x30, 0x34, 0xBC, 0x1F, 0xFB, 0x10, 0xF8, 0xE7, 0xC5, 0x9F, 0xB2, 0xCF, 0xEC, 0xD3, 0xE3, 0xC8, 0x6D, 0xE3, 0x78, 0x7E, 0x31, 0x78, 0xE6, 0xE3, 0xC2, 0xC6, 0x73, 0x1F, 0x37, 0xAF, 0xF6, 0x97, 0x8A, 0x38, 0xC8, 0xC6, 0x06, 0x3E, 0xCF, 0x38, 0xCA, 0x80, 0x7D, 0xEB, 0x67, 0xC4, 0x3F, 0xF0, 0x4F, 0xBF, 0x1A, 0x78, 0x5B, 0xFE, 0x1A, 0xEA, 0x4B, 0xDD, 0x3E, 0x1F, 0x27, 0xE0, 0x3C, 0x71, 0xED, 0x3E, 0x5F, 0xFC, 0x83, 0xD9, 0xC9, 0x90, 0x63, 0xFB, 0xDF, 0xBB, 0x2B, 0xF7, 0xF3, 0x5F, 0x3D, 0xE9, 0x5F, 0xB6, 0x5D, 0xAE, 0x9B, 0xFB, 0x2D, 0xFC, 0x17, 0xF0, 0x6C, 0x7A, 0xEF, 0x8E, 0xED, 0xF5, 0x4F, 0x87, 0x7E, 0x39, 0xD4, 0x3C, 0x43, 0x78, 0xB0, 0x6A, 0x0E, 0x96, 0x76, 0xF6, 0x92, 0x7D, 0x90, 0xDB, 0xB5, 0xA2, 0xEE, 0xFD, 0xDD, 0xC2, 0xB0, 0xBD, 0x25, 0x80, 0x1C, 0xCF, 0x9C, 0xF2, 0x6B, 0xA8, 0xF1, 0xB7, 0xED, 0xDF, 0xA2, 0x6A, 0x97, 0xFF, 0x00, 0xB5, 0x25, 0xC6, 0x9F, 0xAE, 0x7C, 0x47, 0x67, 0xF8, 0xC0, 0x6D, 0xE0, 0xF0, 0xF8, 0xBA, 0xD4, 0x9D, 0xD6, 0x7B, 0x61, 0x78, 0xAD, 0x2A, 0xEA, 0x20, 0xBE, 0x25, 0x7F, 0xB3, 0x0D, 0x8A, 0x4E, 0xEC, 0x1C, 0xFA, 0xD1, 0x76, 0x07, 0xBD, 0x78, 0x67, 0xFE, 0x09, 0xB1, 0xE2, 0xD6, 0xFD, 0xA1, 0x7F, 0x65, 0x3F, 0x08, 0xDF, 0xE8, 0xF0, 0x48, 0xFF, 0x00, 0x19, 0xFC, 0x34, 0x75, 0xBB, 0x88, 0x76, 0x10, 0x35, 0x00, 0x13, 0xCC, 0x2C, 0x48, 0xE5, 0x7E, 0x47, 0x8F, 0xEE, 0x15, 0x15, 0xC1, 0xF8, 0xEB, 0xF6, 0x11, 0xF1, 0xA7, 0x84, 0x3F, 0x61, 0xAF, 0x8D, 0x3F, 0x10, 0x66, 0xD3, 0x60, 0x4B, 0xCF, 0x84, 0xFF, 0x00, 0x12, 0x4F, 0x85, 0xEF, 0xAE, 0xFC, 0xA1, 0x9B, 0x68, 0x43, 0x43, 0x09, 0x8B, 0x6E, 0x36, 0x9F, 0xDE, 0xCF, 0x1F, 0x24, 0x6E, 0xE7, 0xAD, 0x73, 0xFF, 0x00, 0x0F, 0xBF, 0xE0, 0xA0, 0xDE, 0x11, 0xD1, 0xBE, 0x37, 0xFE, 0xCB, 0x5A, 0xE6, 0xA9, 0xAC, 0x7C, 0x56, 0x93, 0x48, 0xF8, 0x43, 0xA3, 0x0B, 0x2F, 0x11, 0x4B, 0x16, 0xAC, 0xDF, 0x6D, 0x49, 0x8C, 0xF3, 0x33, 0xAD, 0x83, 0xEF, 0xCC, 0x70, 0xF9, 0x7E, 0x4A, 0x85, 0xC8, 0x18, 0x52, 0x3B, 0x57, 0x0D, 0xAC, 0x7E, 0xDA, 0x36, 0x9A, 0xB7, 0xEC, 0x7B, 0xF1, 0x93, 0xC1, 0x33, 0x78, 0x87, 0xC7, 0xD2, 0x6B, 0x1E, 0x3E, 0xF8, 0x81, 0x65, 0xE2, 0x4B, 0x2B, 0x79, 0x2F, 0x9D, 0xB4, 0xFB, 0x9B, 0x45, 0x17, 0x2D, 0x3B, 0x5D, 0x2E, 0xFF, 0x00, 0x9A, 0x76, 0x73, 0x68, 0xC0, 0x90, 0x72, 0x62, 0xCE, 0x7E, 0x51, 0x4A, 0xE0, 0x7D, 0x2B, 0xE2, 0x6F, 0xF8, 0x25, 0x57, 0x8F, 0xEC, 0x7F, 0x6D, 0xBD, 0x5F, 0xE1, 0xAC, 0x5A, 0x1C, 0x2A, 0x6D, 0x3E, 0x1A, 0x9F, 0x18, 0x25, 0xB7, 0x96, 0x48, 0x53, 0xE4, 0x15, 0xF3, 0x72, 0x7E, 0x6F, 0xF5, 0xCA, 0xC7, 0x19, 0xDB, 0xED, 0x8E, 0x2B, 0xCD, 0x7C, 0x3F, 0xFB, 0x0F, 0x78, 0xC3, 0x5B, 0xFD, 0x89, 0x7E, 0x0A, 0xFC, 0x40, 0x4D, 0x26, 0x16, 0xB9, 0xF8, 0xA1, 0xF1, 0x08, 0xF8, 0x62, 0x0B, 0xBF, 0x28, 0x66, 0xED, 0x0B, 0xC9, 0x1A, 0xC5, 0xB7, 0x1B, 0x47, 0xCF, 0x13, 0xF2, 0xA0, 0x1F, 0x7A, 0xAF, 0xA9, 0x7F, 0xC1, 0x49, 0xB4, 0xDD, 0x47, 0xF6, 0xAF, 0x5F, 0x1C, 0x9F, 0x1D, 0x7C, 0x5C, 0x4B, 0x75, 0xF8, 0x57, 0x17, 0x85, 0xFE, 0xD8, 0xBA, 0x8B, 0x0B, 0xE6, 0xD5, 0x17, 0x4C, 0x11, 0xB4, 0x6C, 0xDB, 0x89, 0x6B, 0x33, 0x78, 0x5D, 0xF0, 0x7B, 0x36, 0x71, 0x5E, 0x6A, 0xBF, 0xB6, 0x4D, 0xAE, 0x9F, 0xFB, 0x19, 0xFC, 0x23, 0xF0, 0x1D, 0xA7, 0x89, 0xBC, 0x7C, 0xBA, 0xBF, 0x84, 0x7C, 0x77, 0x7B, 0xE2, 0x7D, 0x4E, 0x0F, 0xB6, 0xB0, 0xB1, 0xD3, 0xE3, 0xC4, 0x22, 0xD6, 0x4B, 0x11, 0x9F, 0xDD, 0xCB, 0xF3, 0x5D, 0x33, 0x11, 0x8F, 0x99, 0x81, 0xA2, 0xE0, 0x7D, 0x25, 0xE2, 0xEF, 0xF8, 0x26, 0x77, 0x8A, 0x2D, 0xFE, 0x33, 0xFE, 0xD6, 0x1E, 0x16, 0xB4, 0xF0, 0xFD, 0xBA, 0x5C, 0x7C, 0x18, 0xF0, 0xFC, 0x3A, 0xE5, 0x9C, 0x5B, 0x49, 0xFE, 0xCE, 0x84, 0xA9, 0x95, 0xDC, 0x67, 0x97, 0xFD, 0xDC, 0x72, 0x7D, 0xFD, 0xD5, 0xF3, 0x3F, 0xC7, 0xAF, 0xD9, 0xCB, 0xE2, 0x07, 0xEC, 0xDB, 0xFB, 0x32, 0x7C, 0x31, 0xF8, 0x81, 0xAF, 0xC3, 0x15, 0x9D, 0xAF, 0xC5, 0x2F, 0x3A, 0xFF, 0x00, 0x45, 0xB9, 0x16, 0xF1, 0x83, 0x71, 0x68, 0xB0, 0x5B, 0xB8, 0xFE, 0x1C, 0x70, 0x65, 0xEA, 0x39, 0xE6, 0xBD, 0x6B, 0xC5, 0x9F, 0xF0, 0x52, 0x2F, 0x0E, 0xDF, 0x7C, 0x6E, 0xFD, 0xAA, 0xBC, 0x45, 0xA6, 0xF8, 0xCB, 0xE2, 0xC4, 0x76, 0xFF, 0x00, 0x16, 0xBC, 0x36, 0xBA, 0x3F, 0x87, 0x66, 0x92, 0xF4, 0xFD, 0xAB, 0x51, 0x60, 0x61, 0x42, 0x9A, 0x89, 0xDD, 0xF3, 0x47, 0xE5, 0x09, 0xC7, 0x5E, 0x8E, 0x78, 0xE7, 0x15, 0xE0, 0xFF, 0x00, 0xB4, 0x9F, 0xED, 0x22, 0x9F, 0x17, 0x3F, 0x66, 0xBF, 0x82, 0x7E, 0x16, 0x5F, 0x17, 0xF8, 0xDB, 0x5E, 0xBB, 0xF0, 0x4E, 0x93, 0x79, 0x6D, 0xA9, 0x69, 0x9A, 0xBD, 0xC9, 0x97, 0x4D, 0xD1, 0xA5, 0x37, 0x4C, 0xB0, 0x25, 0x82, 0x9F, 0xB9, 0x19, 0xB4, 0x8E, 0xDC, 0x30, 0x1C, 0x6E, 0x53, 0x45, 0xC0, 0xF1, 0x5D, 0x47, 0x56, 0xB8, 0xD6, 0x6E, 0xDA, 0x7B, 0xA9, 0xE4, 0xB8, 0x99, 0xBA, 0xBC, 0x8C, 0x58, 0xFD, 0x3E, 0x95, 0x56, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD9, } ; const char sleep_jpg[] PROGMEM = { 0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60, 0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x22, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, 0x01, 0x12, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03, 0x05, 0x03, 0x03, 0x03, 0x03, 0x03, 0x06, 0x04, 0x04, 0x03, 0x05, 0x07, 0x06, 0x07, 0x07, 0x07, 0x06, 0x07, 0x07, 0x08, 0x09, 0x0B, 0x09, 0x08, 0x08, 0x0A, 0x08, 0x07, 0x07, 0x0A, 0x0D, 0x0A, 0x0A, 0x0B, 0x0C, 0x0C, 0x0C, 0x0C, 0x07, 0x09, 0x0E, 0x0F, 0x0D, 0x0C, 0x0E, 0x0B, 0x0C, 0x0C, 0x0C, 0xFF, 0xDB, 0x00, 0x43, 0x01, 0x02, 0x02, 0x02, 0x03, 0x03, 0x03, 0x06, 0x03, 0x03, 0x06, 0x0C, 0x08, 0x07, 0x08, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0xFF, 0xC0, 0x00, 0x11, 0x08, 0x00, 0xB5, 0x01, 0x40, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, 0xFF, 0xC4, 0x00, 0x1F, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00, 0x00, 0x01, 0x7D, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xA1, 0x08, 0x23, 0x42, 0xB1, 0xC1, 0x15, 0x52, 0xD1, 0xF0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0A, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xC4, 0x00, 0x1F, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xA1, 0xB1, 0xC1, 0x09, 0x23, 0x33, 0x52, 0xF0, 0x15, 0x62, 0x72, 0xD1, 0x0A, 0x16, 0x24, 0x34, 0xE1, 0x25, 0xF1, 0x17, 0x18, 0x19, 0x1A, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xDA, 0x00, 0x0C, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, 0x3F, 0x00, 0xFE, 0x7F, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xAB, 0x56, 0xFA, 0x1D, 0xED, 0xDD, 0xBF, 0x9D, 0x0D, 0x9D, 0xD4, 0xB1, 0x0E, 0xAE, 0x91, 0x33, 0x2F, 0xE7, 0x8A, 0xAA, 0x46, 0xD3, 0x55, 0x28, 0x49, 0x2B, 0xB4, 0x2B, 0xA7, 0xB1, 0x63, 0x4C, 0xD3, 0x2E, 0x35, 0x9D, 0x46, 0x0B, 0x4B, 0x38, 0x25, 0xB9, 0xBA, 0xBA, 0x91, 0x62, 0x86, 0x28, 0x94, 0xB3, 0xC8, 0xE4, 0xE0, 0x28, 0x03, 0x92, 0x49, 0x3D, 0x2B, 0xF4, 0xF7, 0xF6, 0x5C, 0xFF, 0x00, 0x83, 0x57, 0xBE, 0x33, 0xFC, 0x67, 0xF0, 0x7D, 0x9E, 0xB7, 0xE3, 0x4F, 0x11, 0xF8, 0x67, 0xE1, 0xCC, 0x57, 0xD1, 0xAC, 0xD1, 0xD8, 0x5E, 0x33, 0x5C, 0xDF, 0x2A, 0x30, 0xC8, 0xDF, 0x1C, 0x79, 0x31, 0x92, 0x3B, 0x37, 0x35, 0xF1, 0xE7, 0xFC, 0x12, 0xC7, 0xC2, 0x4B, 0xE3, 0x5F, 0xDB, 0xF3, 0xE1, 0x8D, 0x93, 0x28, 0x75, 0x5D, 0x66, 0x2B, 0x82, 0x08, 0xCE, 0x3C, 0xB3, 0xBF, 0xFF, 0x00, 0x65, 0xAF, 0xE9, 0xD9, 0x3E, 0x31, 0xB8, 0x92, 0x4F, 0x98, 0xFD, 0xE3, 0xDF, 0xF0, 0xAF, 0xD0, 0xB8, 0x67, 0x85, 0xA1, 0x8C, 0xC0, 0xFD, 0x71, 0xAE, 0x66, 0xE5, 0x28, 0xD9, 0xDE, 0xC9, 0x25, 0x17, 0x7D, 0x1A, 0xBB, 0x6D, 0xBD, 0xF4, 0xD3, 0x63, 0xE6, 0xB3, 0x8C, 0xE6, 0x58, 0x7A, 0xFE, 0xC1, 0x69, 0xA2, 0x77, 0xF5, 0x6F, 0xFC, 0x8F, 0xC5, 0x3F, 0xDA, 0x6B, 0xFE, 0x0D, 0x54, 0xF8, 0xC9, 0xF0, 0x8F, 0xC2, 0x37, 0x9A, 0xC7, 0x82, 0x7C, 0x51, 0xE1, 0x7F, 0x88, 0x9F, 0x63, 0x8C, 0xCA, 0xFA, 0x7D, 0xB1, 0x6B, 0x5B, 0xD9, 0x14, 0x0C, 0x9F, 0x2D, 0x64, 0xC6, 0xF6, 0xC7, 0xF0, 0x8E, 0x6B, 0xF2, 0xF7, 0x5A, 0xD1, 0x6E, 0xFC, 0x39, 0xAB, 0x5D, 0x69, 0xF7, 0xF6, 0xF3, 0x59, 0xDF, 0x59, 0x4A, 0xD0, 0xCF, 0x04, 0xC8, 0x52, 0x48, 0x5D, 0x4E, 0x19, 0x58, 0x1E, 0x41, 0x04, 0x63, 0x15, 0xFD, 0x73, 0xDE, 0x7C, 0x65, 0x91, 0x64, 0x5F, 0x98, 0xFD, 0xE1, 0xDF, 0xDE, 0xBF, 0x9A, 0x3F, 0xF8, 0x2B, 0xDF, 0x84, 0x47, 0x83, 0xBF, 0xE0, 0xA2, 0x3F, 0x13, 0x21, 0x55, 0xDA, 0x97, 0x5A, 0x9B, 0x5E, 0x80, 0x06, 0x07, 0xEF, 0x46, 0xF3, 0xF9, 0x92, 0x4D, 0x57, 0x13, 0x70, 0xAC, 0x30, 0x78, 0x1F, 0xAE, 0xC6, 0x3C, 0xAD, 0x49, 0x2B, 0x2B, 0xD9, 0xA6, 0x9E, 0xBA, 0xB7, 0x66, 0x9A, 0x5B, 0x69, 0xAE, 0xC4, 0xE4, 0xF9, 0xD4, 0xB1, 0x15, 0xFD, 0x84, 0x9D, 0xF4, 0x6E, 0xFE, 0x96, 0xFF, 0x00, 0x33, 0xE6, 0xAA, 0x28, 0xAB, 0x13, 0xE9, 0x57, 0x56, 0xB0, 0x2C, 0xB2, 0x5B, 0x5C, 0x47, 0x13, 0x7D, 0xD7, 0x68, 0xC8, 0x53, 0xF4, 0x35, 0xF9, 0xD2, 0x8B, 0x7B, 0x1F, 0x51, 0x72, 0xBD, 0x14, 0x51, 0x48, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x92, 0xD6, 0xD6, 0x4B, 0xDB, 0x88, 0xE1, 0x86, 0x37, 0x96, 0x69, 0x98, 0x22, 0x22, 0x0D, 0xCC, 0xEC, 0x4E, 0x00, 0x03, 0xB9, 0x26, 0xBF, 0x45, 0xBF, 0xE0, 0x9F, 0x9F, 0xF0, 0x4B, 0x1D, 0x2B, 0x4D, 0x8A, 0xC7, 0xC6, 0x1F, 0x16, 0x2D, 0x56, 0xEE, 0x46, 0xDB, 0x3D, 0x9E, 0x80, 0xE7, 0xE5, 0x1D, 0xC3, 0x5C, 0x7B, 0x7F, 0xB3, 0xDE, 0xBE, 0xAB, 0x85, 0x78, 0x43, 0x1F, 0x9F, 0xE2, 0x1D, 0x1C, 0x1C, 0x7D, 0xD8, 0xFC, 0x52, 0x7B, 0x45, 0x7E, 0xAD, 0xF4, 0x5F, 0x92, 0xBB, 0x3C, 0x8C, 0xE3, 0x3B, 0xC3, 0x65, 0xB4, 0xBD, 0xA6, 0x21, 0xEA, 0xF6, 0x5D, 0x5F, 0xF5, 0xDC, 0xF9, 0xD7, 0xF6, 0x2A, 0xFF, 0x00, 0x82, 0x5A, 0xFC, 0x52, 0xFD, 0xB6, 0xEE, 0xE1, 0xBB, 0xD1, 0x74, 0xD8, 0xF4, 0x1F, 0x0A, 0xEF, 0xDB, 0x2E, 0xBF, 0xAB, 0x6E, 0x86, 0xD7, 0x03, 0xAF, 0x94, 0x30, 0x5E, 0x66, 0xFF, 0x00, 0x70, 0x11, 0x91, 0x82, 0x45, 0x7E, 0xB1, 0x7E, 0xC9, 0x1F, 0xF0, 0x43, 0x1F, 0x81, 0x3F, 0xB3, 0xBC, 0x56, 0xB7, 0xFE, 0x26, 0xB5, 0xB8, 0xF8, 0x99, 0xE2, 0x28, 0x76, 0xBB, 0x4F, 0xAA, 0xFE, 0xE7, 0x4F, 0x8D, 0xC1, 0xCE, 0x52, 0xD9, 0x0F, 0x3F, 0xF0, 0x37, 0x39, 0xF4, 0xAF, 0x4A, 0xD3, 0x7E, 0x2D, 0x5B, 0xE8, 0x7A, 0x6C, 0x16, 0x76, 0x71, 0x41, 0x69, 0x67, 0x6A, 0x82, 0x38, 0x60, 0x85, 0x04, 0x71, 0xC4, 0xA3, 0x80, 0x15, 0x47, 0x00, 0x0A, 0x9D, 0x7E, 0x39, 0xB6, 0x7F, 0xD6, 0x1F, 0xCE, 0xBF, 0x7D, 0xCA, 0xBC, 0x28, 0xC3, 0xE0, 0xA2, 0x9A, 0x87, 0x3C, 0xFF, 0x00, 0x9A, 0x5A, 0xFD, 0xCB, 0x65, 0xF2, 0xD7, 0xCD, 0x9F, 0x9A, 0xE3, 0xB8, 0xDA, 0xAD, 0x79, 0x59, 0x3E, 0x58, 0xF6, 0x5F, 0xAB, 0xDD, 0xFE, 0x47, 0xBE, 0xE8, 0xFE, 0x1C, 0xF0, 0x56, 0x87, 0xA6, 0xAD, 0x95, 0x9F, 0x84, 0xFC, 0x27, 0x6B, 0x66, 0xAB, 0xB4, 0x41, 0x1E, 0x8B, 0x6A, 0x10, 0x0F, 0x4C, 0x79, 0x7F, 0xCE, 0xBF, 0x3F, 0xBF, 0xE0, 0xBA, 0x7F, 0xF0, 0x4F, 0xAF, 0x86, 0x3E, 0x26, 0xFD, 0x98, 0xB5, 0xAF, 0x8A, 0x1E, 0x19, 0xF0, 0xFE, 0x97, 0xE1, 0x5F, 0x17, 0xF8, 0x54, 0xC7, 0x2C, 0xF2, 0x69, 0xB0, 0x8B, 0x78, 0x35, 0x48, 0x18, 0x90, 0xCB, 0x24, 0x4B, 0xF2, 0xEF, 0x1D, 0x43, 0x28, 0x1D, 0x79, 0xAF, 0x45, 0xF8, 0x95, 0xFF, 0x00, 0x05, 0x1A, 0xF0, 0x67, 0xC2, 0xBB, 0x9F, 0xB2, 0xDF, 0xEB, 0x11, 0xDD, 0xEA, 0x4C, 0x70, 0xB6, 0x56, 0x6C, 0x25, 0x95, 0x8F, 0xA1, 0xEC, 0x3F, 0x1A, 0xF2, 0xEF, 0xDA, 0xD7, 0xE2, 0x96, 0xB1, 0xFB, 0x55, 0x7E, 0xC4, 0x3F, 0x12, 0xEF, 0x2F, 0x52, 0x3D, 0x2F, 0x41, 0xD3, 0x74, 0x49, 0x2F, 0x2D, 0x6C, 0x62, 0x72, 0xF3, 0x5D, 0x4C, 0x08, 0x08, 0xF3, 0x3F, 0x4C, 0x2E, 0x4E, 0x14, 0x77, 0x26, 0xBA, 0xF3, 0x8E, 0x0B, 0x4B, 0x2F, 0xAF, 0x52, 0xAC, 0x57, 0x2C, 0x63, 0x26, 0xFD, 0x6D, 0xA6, 0x9D, 0xEF, 0x6B, 0x76, 0xDC, 0xC3, 0x01, 0x9E, 0xC9, 0x62, 0x69, 0xA8, 0x5D, 0x39, 0x35, 0xF9, 0xEA, 0x7C, 0x1D, 0xFF, 0x00, 0x04, 0x40, 0xD1, 0xD6, 0xE7, 0xFE, 0x0A, 0x0B, 0xE0, 0xB9, 0xD8, 0x67, 0xC9, 0x13, 0xBA, 0x9F, 0x7F, 0x2C, 0xE2, 0xBF, 0x74, 0x86, 0xA1, 0x75, 0x1B, 0x36, 0xE8, 0xDB, 0xEF, 0x1E, 0x9F, 0x53, 0x5F, 0x8A, 0xBF, 0xF0, 0x43, 0xEF, 0x06, 0x6B, 0x1A, 0xCF, 0xED, 0xD9, 0xE0, 0x58, 0x74, 0x5D, 0x1F, 0x51, 0xD6, 0xAE, 0x9A, 0xE8, 0x89, 0x62, 0xB3, 0x84, 0xC8, 0xD1, 0x43, 0xE5, 0xB6, 0xF9, 0x5B, 0x1F, 0x75, 0x13, 0x82, 0xCC, 0x78, 0x02, 0xBF, 0x7D, 0xAF, 0xFE, 0x16, 0x5C, 0x59, 0xCE, 0xCB, 0x25, 0xB3, 0x0C, 0xB1, 0xDA, 0x40, 0xCA, 0xB7, 0x3D, 0x8F, 0x7A, 0xF9, 0x3E, 0x0A, 0xC5, 0x50, 0xC3, 0x65, 0x34, 0xA9, 0xC9, 0xAB, 0xBB, 0xBB, 0x75, 0xDD, 0xAF, 0xD0, 0xF5, 0xF8, 0x8A, 0x8D, 0x5A, 0xD8, 0xD9, 0x4D, 0x6C, 0xAC, 0xBF, 0x03, 0xCA, 0x2F, 0xF5, 0x1B, 0xB9, 0x4A, 0xED, 0x8D, 0xBE, 0xF0, 0xEB, 0xF5, 0x15, 0xF8, 0x99, 0xFF, 0x00, 0x05, 0xDE, 0xD1, 0x96, 0x0F, 0xF8, 0x28, 0x0F, 0x8A, 0x2E, 0x54, 0x7F, 0xAE, 0xB4, 0xB4, 0x66, 0xC7, 0xAF, 0x94, 0x33, 0x5F, 0xD1, 0xBF, 0x85, 0x7F, 0x64, 0x7B, 0xEF, 0x14, 0xF8, 0x5E, 0x6D, 0x55, 0xA4, 0x8E, 0xD6, 0x1B, 0x75, 0x32, 0x31, 0x90, 0xED, 0x55, 0x51, 0xC9, 0x24, 0xF6, 0x00, 0x0A, 0xFE, 0x73, 0xBF, 0xE0, 0xB0, 0xFE, 0x2C, 0xD3, 0x7E, 0x2E, 0x7E, 0xD7, 0x9E, 0x3C, 0xD5, 0xB4, 0x5B, 0x85, 0xBD, 0xD3, 0xED, 0xEF, 0x4D, 0x84, 0x37, 0x0B, 0xF7, 0x65, 0xF2, 0x62, 0x44, 0x2C, 0xBF, 0xEC, 0x96, 0x0D, 0x83, 0xDC, 0x73, 0x55, 0xC5, 0x99, 0x86, 0x17, 0x1F, 0x94, 0x62, 0x29, 0xD0, 0xB3, 0x74, 0xED, 0x7F, 0x26, 0xE4, 0xAD, 0xFA, 0xFE, 0x23, 0xC8, 0xF0, 0xB5, 0xB0, 0xD8, 0xDA, 0x72, 0x9F, 0xDA, 0xBF, 0xDD, 0x6F, 0xF3, 0xB1, 0xF7, 0x97, 0xFC, 0x11, 0xFB, 0xFE, 0x09, 0x89, 0xF0, 0xA7, 0xE1, 0x87, 0xEC, 0xFB, 0xE1, 0x7F, 0x88, 0x5E, 0x29, 0xD0, 0xF4, 0xDF, 0x1A, 0x78, 0xD3, 0xC5, 0x16, 0x8B, 0xA8, 0xAC, 0xBA, 0x94, 0x62, 0x7B, 0x4D, 0x2E, 0x37, 0xCE, 0xD8, 0xA2, 0x88, 0xFC, 0x8C, 0xD8, 0x1F, 0x33, 0xB8, 0x3D, 0xB0, 0x05, 0x7D, 0xCD, 0xAB, 0x78, 0x3B, 0xC0, 0x7A, 0xFE, 0x94, 0xD6, 0x37, 0xDE, 0x0D, 0xF0, 0x7D, 0xDD, 0x91, 0x5D, 0xA6, 0x09, 0x34, 0x4B, 0x5F, 0x2F, 0x1E, 0x98, 0x11, 0xF1, 0xF8, 0x57, 0xC9, 0xBA, 0x36, 0xA3, 0xAE, 0xFE, 0xCB, 0x1F, 0xB3, 0xE7, 0x81, 0x6E, 0xB4, 0x18, 0xED, 0x75, 0x6F, 0x0D, 0x5F, 0xE8, 0x16, 0x97, 0x6F, 0xA6, 0x4D, 0x29, 0x86, 0xE3, 0x4F, 0x91, 0xA3, 0xCC, 0x9E, 0x4B, 0xF4, 0x64, 0x6C, 0x67, 0x69, 0x23, 0x07, 0xEB, 0x51, 0x78, 0x03, 0xFE, 0x0A, 0x15, 0xE1, 0x5F, 0x88, 0x17, 0xDF, 0x61, 0x8F, 0x52, 0xFE, 0xCC, 0xD5, 0x73, 0xB5, 0xAC, 0xAF, 0x88, 0x8A, 0x4C, 0xFA, 0x29, 0xFB, 0xAD, 0xF8, 0x1A, 0xFA, 0xFC, 0xA7, 0x82, 0x28, 0xCB, 0x07, 0x4E, 0xA6, 0x16, 0x2B, 0x91, 0xA5, 0x6E, 0xFF, 0x00, 0x3F, 0x3E, 0xEF, 0xA9, 0xE1, 0xE3, 0x73, 0xEA, 0xBE, 0xDE, 0x71, 0xAA, 0xDF, 0x32, 0x7A, 0xFF, 0x00, 0x5D, 0x8C, 0x6F, 0xDA, 0xCF, 0xFE, 0x08, 0x4B, 0xF0, 0x33, 0xE3, 0xEC, 0x57, 0x57, 0xDE, 0x10, 0x8E, 0xEB, 0xE1, 0x9F, 0x88, 0x25, 0x0C, 0xC8, 0xFA, 0x76, 0x6E, 0x34, 0xE7, 0x72, 0x73, 0xF3, 0xDB, 0xB9, 0xDC, 0x07, 0xFB, 0x8E, 0x31, 0xE9, 0x5F, 0x94, 0x7F, 0xB6, 0x77, 0xFC, 0x13, 0x13, 0xE2, 0x97, 0xEC, 0x4B, 0x7B, 0x25, 0xC7, 0x88, 0x34, 0xB8, 0xF5, 0x7F, 0x0C, 0xEF, 0xDB, 0x0E, 0xBD, 0xA5, 0x16, 0x9A, 0xCD, 0x87, 0x6F, 0x33, 0x80, 0xD1, 0x37, 0xB3, 0x80, 0x33, 0xD0, 0x9A, 0xFD, 0xB6, 0x4F, 0x8E, 0x4C, 0x0F, 0xFA, 0xC3, 0xF9, 0xD4, 0x7A, 0xC7, 0xC5, 0x6B, 0x5F, 0x12, 0x69, 0x37, 0x16, 0x1A, 0x84, 0x16, 0xF7, 0xD6, 0x37, 0x48, 0x63, 0x9E, 0xDE, 0xE1, 0x04, 0x91, 0xCA, 0xA7, 0x82, 0x19, 0x4F, 0x04, 0x57, 0x9F, 0x9B, 0x78, 0x4D, 0x87, 0xC6, 0x45, 0xBE, 0x4E, 0x49, 0xFF, 0x00, 0x34, 0x74, 0xFB, 0xD6, 0xCF, 0xF3, 0xF3, 0x47, 0x56, 0x07, 0x8D, 0xAA, 0xE1, 0xDD, 0x9B, 0xE6, 0x8F, 0x67, 0xFA, 0x3D, 0xD7, 0xE5, 0xE4, 0x7F, 0x38, 0xB4, 0x57, 0xE8, 0xA7, 0xED, 0xF7, 0xFF, 0x00, 0x04, 0xA9, 0xD3, 0x6E, 0x56, 0xFB, 0xC5, 0xDF, 0x09, 0x6D, 0xFC, 0x9D, 0xBB, 0xA7, 0xBB, 0xF0, 0xFA, 0x9C, 0xF1, 0xD4, 0x98, 0x3E, 0x9F, 0xDD, 0xAF, 0xCE, 0xFB, 0x8B, 0x79, 0x2D, 0x2E, 0x1A, 0x29, 0x23, 0x68, 0xE4, 0x8D, 0x8A, 0xB2, 0xB0, 0xC3, 0x29, 0x1C, 0x10, 0x47, 0xAD, 0x7E, 0x01, 0xC5, 0x3C, 0x23, 0x8F, 0xC8, 0x71, 0x3E, 0xC3, 0x19, 0x1D, 0x25, 0xAC, 0x64, 0xB6, 0x92, 0xF2, 0xEC, 0xD7, 0x55, 0xBA, 0xF4, 0x69, 0xBF, 0xD3, 0x32, 0x7C, 0xEB, 0x0D, 0x99, 0x52, 0xF6, 0x98, 0x77, 0xAA, 0xDD, 0x75, 0x5F, 0xD7, 0x46, 0x47, 0x45, 0x14, 0x57, 0xCB, 0x9E, 0xB0, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x39, 0x17, 0x71, 0xA0, 0x0F, 0xB4, 0x3F, 0xE0, 0x99, 0x3F, 0xB3, 0x76, 0x9F, 0x69, 0xA3, 0x5C, 0x7C, 0x56, 0xF1, 0x2D, 0xB4, 0x33, 0x43, 0x6B, 0x73, 0xF6, 0x1D, 0x02, 0xDE, 0x65, 0xCA, 0xC9, 0x72, 0x3E, 0x67, 0x9F, 0x07, 0xAE, 0xC0, 0x30, 0x3D, 0xCF, 0xB5, 0x7D, 0x9C, 0xDF, 0x17, 0xB7, 0x1C, 0x99, 0xB2, 0x4F, 0x27, 0xE6, 0xEB, 0x5E, 0x11, 0xF1, 0xAB, 0x56, 0x1F, 0xB3, 0xF7, 0xC1, 0x4F, 0x83, 0x7E, 0x10, 0xB3, 0x85, 0x9A, 0x18, 0x7C, 0x30, 0x35, 0x29, 0x0A, 0xB6, 0xD0, 0xF2, 0xCE, 0xE0, 0xB1, 0x3E, 0xA7, 0xB5, 0x79, 0x8C, 0x9F, 0x1C, 0xEF, 0x71, 0xF2, 0xC2, 0x7F, 0x16, 0xAF, 0xED, 0xDE, 0x08, 0xC0, 0xE0, 0xB2, 0x6C, 0x9E, 0x96, 0x12, 0x2E, 0xD2, 0xB5, 0xE7, 0xA6, 0xAE, 0x4F, 0x76, 0xFF, 0x00, 0x25, 0xE4, 0x92, 0x3F, 0x9E, 0xF8, 0x82, 0xB6, 0x37, 0x30, 0xC7, 0x4E, 0xBA, 0x8D, 0xE3, 0x7B, 0x47, 0x5E, 0x8B, 0x45, 0xFD, 0x77, 0x3E, 0xC3, 0xB4, 0xF8, 0xA1, 0x36, 0xAD, 0x7D, 0x0D, 0xAD, 0xA9, 0x69, 0xAE, 0x2E, 0x1C, 0x47, 0x1C, 0x69, 0xCB, 0x3B, 0x1E, 0xD5, 0xF3, 0xBF, 0xED, 0xAB, 0xFB, 0x5D, 0xEA, 0x1A, 0x6E, 0xA9, 0x75, 0xE0, 0xDF, 0x0E, 0x6A, 0x0C, 0xAF, 0x6A, 0x7C, 0xAD, 0x52, 0xF6, 0x16, 0xFF, 0x00, 0x96, 0x9D, 0xE1, 0x43, 0xED, 0xDC, 0xFA, 0xF1, 0x5B, 0x3F, 0xB2, 0x1F, 0xC5, 0x2B, 0xCB, 0xCD, 0x43, 0xE2, 0x1E, 0xB4, 0xF1, 0xC6, 0xD7, 0x9E, 0x11, 0xF0, 0x65, 0xF6, 0xA9, 0x62, 0xB8, 0x24, 0x89, 0xCB, 0x24, 0x41, 0xC7, 0xFB, 0xA1, 0xC9, 0xAF, 0x90, 0x6F, 0xB7, 0x49, 0x99, 0x26, 0x91, 0xA4, 0x92, 0x4F, 0x9E, 0x47, 0x63, 0x96, 0x76, 0x3C, 0x92, 0x4F, 0xA9, 0x24, 0x9A, 0xF5, 0x73, 0x2C, 0xF3, 0x47, 0x4E, 0x83, 0xB2, 0xEA, 0xF6, 0xFE, 0xBD, 0x4D, 0xF2, 0x5C, 0x9E, 0xF2, 0xF6, 0x98, 0xB4, 0xB4, 0xD9, 0x6F, 0xF7, 0xFF, 0x00, 0x91, 0x73, 0xC0, 0xB2, 0xC9, 0x71, 0xE3, 0x6B, 0x59, 0x26, 0x76, 0x92, 0x46, 0x7C, 0x97, 0x63, 0x96, 0x27, 0xEB, 0x5F, 0xA1, 0xDA, 0xC7, 0x8A, 0x34, 0xFF, 0x00, 0x0C, 0xFF, 0x00, 0xC1, 0x3B, 0xFE, 0x20, 0x0B, 0xFB, 0x88, 0xED, 0xCE, 0xA5, 0xA3, 0xFD, 0x86, 0xD9, 0x58, 0xE1, 0xA7, 0x99, 0xC8, 0xDA, 0xAA, 0x3B, 0x9E, 0x0D, 0x7E, 0x78, 0x78, 0x30, 0x6C, 0xD6, 0xA3, 0xB8, 0x57, 0xDA, 0xD1, 0x9E, 0x38, 0xAF, 0x42, 0xF8, 0x95, 0xE3, 0x4B, 0xCD, 0x6B, 0xC2, 0x51, 0xC3, 0x7D, 0xA8, 0x5C, 0x5D, 0x45, 0x6E, 0xBF, 0xBA, 0x89, 0xDF, 0xF7, 0x71, 0xFB, 0x85, 0x1C, 0x67, 0xDF, 0xAD, 0x7E, 0x7F, 0x9D, 0x71, 0xA6, 0x0B, 0x0F, 0x94, 0xD7, 0xC1, 0x42, 0xF3, 0x9C, 0xEF, 0xAF, 0x45, 0x75, 0x6D, 0x5B, 0xDF, 0xE4, 0x9F, 0xA9, 0xF4, 0x92, 0xCA, 0x2A, 0x62, 0x71, 0xF4, 0xAB, 0xA6, 0x94, 0x61, 0xF7, 0xEF, 0xD0, 0xEA, 0x3F, 0xE0, 0x98, 0x5E, 0x39, 0xD6, 0xBE, 0x12, 0xFE, 0xD1, 0x5A, 0x0E, 0xB5, 0xE1, 0xFD, 0x4A, 0xEB, 0x49, 0xD4, 0xA1, 0x96, 0x58, 0x04, 0xD6, 0xEF, 0xB5, 0x9A, 0x37, 0x86, 0x45, 0x74, 0x3E, 0xAA, 0xC3, 0x82, 0x0F, 0x07, 0xF2, 0xAF, 0xD0, 0x0D, 0x0E, 0xFF, 0x00, 0xE3, 0x07, 0xED, 0xAF, 0xF1, 0xFF, 0x00, 0x52, 0xF1, 0x47, 0x86, 0x7E, 0x33, 0x78, 0x83, 0xE1, 0xA5, 0xE4, 0xEE, 0xB0, 0x49, 0x65, 0x61, 0x19, 0x36, 0x00, 0xA7, 0xCA, 0x0A, 0xC4, 0xA4, 0x01, 0xFF, 0x00, 0xD7, 0xAF, 0xCC, 0xFF, 0x00, 0xD8, 0x97, 0xC6, 0x76, 0xBE, 0x1B, 0xF8, 0xC3, 0xA7, 0xDC, 0xDD, 0x48, 0x23, 0xB7, 0xB7, 0x99, 0x9C, 0x9F, 0xF8, 0x0B, 0x00, 0x3F, 0x5A, 0xFD, 0x4A, 0xFF, 0x00, 0x82, 0x62, 0x5C, 0x7D, 0xA7, 0xC5, 0xF7, 0x33, 0x1F, 0x95, 0x6E, 0xAE, 0x5A, 0x44, 0x07, 0xD0, 0x9E, 0x2B, 0xCF, 0xF0, 0xFE, 0x38, 0x0A, 0xD9, 0x15, 0x4A, 0x9E, 0xEB, 0xAD, 0x4D, 0x49, 0x74, 0xE6, 0x49, 0xB4, 0xF6, 0xEA, 0xBE, 0xF4, 0x79, 0x19, 0xF2, 0xC6, 0x52, 0xE2, 0x0E, 0x69, 0x5F, 0xD9, 0x4A, 0x30, 0xB7, 0xF2, 0xDE, 0xF3, 0x4E, 0xDD, 0x2F, 0x66, 0xAF, 0xD6, 0xD6, 0x1D, 0xF1, 0xBB, 0xE2, 0x2F, 0xC7, 0xFF, 0x00, 0xD9, 0x73, 0xC1, 0x3E, 0x20, 0xD0, 0xFC, 0x41, 0xF1, 0xEB, 0xC4, 0x9E, 0x32, 0xB5, 0xD5, 0x20, 0x68, 0xA7, 0x41, 0x6C, 0xB0, 0x82, 0xA4, 0x60, 0x80, 0xCD, 0xB9, 0x97, 0x3F, 0xEC, 0x91, 0x5F, 0x92, 0xFF, 0x00, 0x13, 0xAC, 0xD7, 0x50, 0xB4, 0xD4, 0x4E, 0xDF, 0x9A, 0x4B, 0xE9, 0x47, 0x27, 0x24, 0x92, 0x89, 0xD4, 0xD7, 0xEB, 0xB7, 0xFC, 0x15, 0x0A, 0x5D, 0xF7, 0x17, 0xB1, 0xAF, 0xCC, 0xC5, 0x4E, 0x00, 0xE4, 0x9A, 0xFC, 0x89, 0xF8, 0xA6, 0xB2, 0x68, 0x9A, 0x93, 0x41, 0x31, 0x0A, 0xD2, 0xDC, 0xB4, 0xCC, 0xA0, 0xFD, 0xDC, 0xE0, 0x63, 0xF4, 0xFD, 0x6B, 0xA3, 0x8D, 0xE5, 0x80, 0xC3, 0x70, 0xC4, 0x54, 0x79, 0x63, 0x56, 0xAB, 0x8B, 0x69, 0x59, 0x37, 0xE7, 0x65, 0xD1, 0x77, 0xDB, 0x63, 0xB3, 0x87, 0x23, 0x56, 0xA6, 0x6D, 0x52, 0x6E, 0xEE, 0x31, 0x56, 0x5B, 0xD9, 0x6B, 0xB2, 0xFF, 0x00, 0x80, 0x7E, 0xAF, 0x78, 0xBF, 0xE2, 0x36, 0x97, 0xF1, 0x57, 0xF6, 0x23, 0xF8, 0x7F, 0xAA, 0x68, 0xF3, 0xA4, 0xF6, 0xE9, 0xA0, 0xC3, 0x69, 0x28, 0x53, 0x96, 0x82, 0x68, 0xD4, 0xAB, 0xA3, 0x0E, 0xC4, 0x71, 0xD7, 0xD6, 0xBF, 0x29, 0x7F, 0x68, 0x89, 0xA4, 0xB4, 0xF1, 0xB9, 0x92, 0x27, 0x78, 0xE4, 0x59, 0x18, 0xAB, 0x29, 0xC1, 0x15, 0xEA, 0x3F, 0x0A, 0xFC, 0x7B, 0xA9, 0x78, 0x77, 0xC1, 0x8D, 0x06, 0x97, 0xAB, 0x5E, 0x59, 0xC3, 0x70, 0x37, 0x49, 0x02, 0x49, 0x98, 0x9C, 0xFA, 0x94, 0x39, 0x19, 0xF7, 0xEB, 0x5E, 0x51, 0xF1, 0x85, 0x2E, 0x35, 0xCD, 0x50, 0xDC, 0x3C, 0x91, 0xBC, 0x8A, 0x49, 0x3C, 0x6D, 0x2D, 0x5D, 0xDC, 0x3F, 0xC7, 0x18, 0x0A, 0x99, 0x34, 0x70, 0x35, 0x1B, 0x85, 0x45, 0x6D, 0xF6, 0x7A, 0xDF, 0x46, 0xB6, 0xF9, 0xD8, 0xDB, 0xFB, 0x1E, 0xB5, 0x1C, 0xCD, 0xE2, 0x74, 0x70, 0x77, 0xF5, 0x3D, 0x8B, 0xF6, 0x48, 0xFD, 0xB3, 0x35, 0xAB, 0x2B, 0xA8, 0xBC, 0x31, 0xAF, 0x5D, 0x4D, 0xA8, 0x24, 0xA3, 0x6E, 0x9D, 0x2C, 0x8F, 0xFB, 0xC0, 0xE0, 0x71, 0x11, 0x63, 0xEB, 0xDB, 0x3D, 0xEB, 0xD5, 0x6F, 0x7F, 0x6E, 0x05, 0xD3, 0xEE, 0x64, 0x85, 0xB4, 0xBB, 0xC5, 0x9A, 0x16, 0x28, 0xEB, 0x24, 0x81, 0x4A, 0xB0, 0xEA, 0x0F, 0x15, 0xF0, 0x95, 0xB4, 0x92, 0x59, 0xB8, 0x96, 0x36, 0x68, 0xA6, 0x84, 0xF9, 0x88, 0xE0, 0xE1, 0x91, 0x87, 0x20, 0x8F, 0xA1, 0x02, 0xBD, 0xD7, 0xF6, 0x96, 0xD5, 0xE1, 0x8B, 0x5F, 0xF0, 0xDE, 0xAD, 0x1C, 0x7E, 0x5D, 0xC7, 0x89, 0x3C, 0x3F, 0x6B, 0xA8, 0xDD, 0xA2, 0xF1, 0x89, 0x8E, 0xE4, 0x66, 0xFF, 0x00, 0x81, 0x6D, 0x06, 0xBE, 0xFB, 0x2C, 0xCE, 0x9B, 0xA2, 0xD5, 0x67, 0x7B, 0x5A, 0xCF, 0xBA, 0x67, 0x97, 0x9A, 0x64, 0x94, 0x9E, 0x21, 0x4E, 0x92, 0xB7, 0x35, 0xF4, 0x5D, 0xD7, 0xF9, 0xAF, 0xEB, 0x53, 0xDA, 0xE7, 0xFD, 0xBB, 0xEF, 0x23, 0x60, 0xD0, 0x69, 0x71, 0xAB, 0x29, 0xC8, 0x2D, 0x31, 0xE2, 0xBE, 0x7F, 0xFD, 0xBF, 0x7E, 0x0A, 0x69, 0xFF, 0x00, 0x13, 0x3E, 0x17, 0x58, 0xFC, 0x73, 0xF0, 0xCD, 0x8D, 0xBD, 0x82, 0xDE, 0x6A, 0x0D, 0xA3, 0xF8, 0xAE, 0xC2, 0xDD, 0x70, 0x96, 0xD7, 0xD8, 0xDF, 0x1D, 0xC0, 0x03, 0xB4, 0xC8, 0x72, 0x4F, 0xF7, 0x83, 0x57, 0x16, 0xDE, 0x2A, 0x6C, 0x74, 0x6F, 0xCE, 0xBE, 0x8A, 0xFD, 0x90, 0x61, 0x4F, 0x8C, 0x1F, 0xB2, 0x8F, 0xED, 0x1D, 0xE0, 0xDB, 0xAE, 0x6D, 0xE5, 0xF0, 0xCC, 0x1A, 0xCC, 0x1B, 0xB9, 0x11, 0xDC, 0xDB, 0xCA, 0x76, 0xB0, 0xF7, 0xDA, 0x48, 0xCD, 0x7C, 0xCF, 0x1F, 0x61, 0xF0, 0xD9, 0xCE, 0x4D, 0x53, 0x0A, 0xD7, 0xBC, 0xBD, 0xE8, 0xBE, 0xD2, 0x5B, 0x7F, 0xC1, 0xF2, 0xB9, 0xD5, 0x90, 0xE1, 0xEA, 0x65, 0xD8, 0xB8, 0xE2, 0x23, 0xB6, 0xCF, 0xCD, 0x3F, 0xEB, 0xEF, 0x3F, 0x39, 0xE8, 0xA0, 0x8C, 0x51, 0x5F, 0xC5, 0xFB, 0x1F, 0xB4, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x68, 0x68, 0x16, 0x5F, 0x6C, 0xB9, 0x55, 0xF7, 0x1F, 0xCE, 0xB3, 0xEB, 0xA4, 0xF0, 0x05, 0xAF, 0xDA, 0x2E, 0xEB, 0x7C, 0x32, 0xBD, 0x44, 0x99, 0x9D, 0x5F, 0x85, 0x9F, 0xB5, 0x5F, 0x1D, 0x7F, 0xE0, 0x94, 0xDE, 0x3C, 0xFD, 0xA2, 0x3F, 0x64, 0xBF, 0x05, 0xFC, 0x46, 0xD1, 0x56, 0xDE, 0x48, 0x7C, 0x1B, 0xA0, 0x0B, 0x4D, 0x42, 0x16, 0x38, 0x90, 0xC4, 0x22, 0x8A, 0x54, 0x70, 0x3B, 0x80, 0x09, 0xCD, 0x7E, 0x71, 0xEA, 0x5A, 0x4B, 0xE9, 0x97, 0xB3, 0x5B, 0x4A, 0x31, 0x2D, 0xBB, 0x94, 0x61, 0xEE, 0x2B, 0xF6, 0x5B, 0xE3, 0x8F, 0xED, 0x31, 0xE2, 0x9F, 0x84, 0x5F, 0xB3, 0x26, 0x83, 0xE1, 0xDD, 0x23, 0x54, 0x6B, 0x5F, 0x0C, 0xF8, 0xCF, 0xC2, 0x96, 0x56, 0x77, 0xE6, 0x31, 0xF3, 0x5B, 0xC8, 0xD6, 0xCA, 0xAB, 0x32, 0x9F, 0x7E, 0x87, 0xD7, 0x02, 0xBF, 0x28, 0x7E, 0x28, 0xFC, 0x09, 0xF1, 0x47, 0xC3, 0xAD, 0x69, 0xBF, 0xB7, 0x2C, 0xEE, 0x23, 0x4B, 0xB2, 0x66, 0x86, 0xE9, 0x90, 0x88, 0xEE, 0xD0, 0x9E, 0x1D, 0x0F, 0x70, 0x6B, 0xFB, 0x07, 0x27, 0x78, 0xDA, 0x94, 0x15, 0x6C, 0x57, 0x2D, 0xA5, 0x6E, 0x4B, 0x6F, 0x6B, 0x2D, 0xFC, 0xEF, 0x7D, 0xBA, 0x1F, 0x81, 0x62, 0xAB, 0x51, 0xA3, 0x8B, 0x74, 0xA1, 0x37, 0x64, 0xB5, 0x4E, 0xDF, 0x15, 0xDF, 0xC3, 0xD6, 0xCD, 0x5B, 0x7B, 0xEB, 0x7B, 0x16, 0xBF, 0x64, 0x9F, 0x1F, 0x5B, 0x7C, 0x2C, 0xF8, 0xBB, 0x1D, 0xE6, 0xAB, 0x19, 0x9B, 0xC3, 0xDA, 0xD5, 0x9C, 0xFA, 0x26, 0xAF, 0x1E, 0x39, 0x6B, 0x4B, 0x85, 0x0A, 0xCD, 0xFF, 0x00, 0x01, 0x60, 0xAD, 0xFF, 0x00, 0x01, 0xAF, 0x17, 0xFD, 0xA4, 0xBE, 0x15, 0xEA, 0x5F, 0x02, 0x3E, 0x25, 0xDD, 0x68, 0x77, 0xFF, 0x00, 0xBC, 0xB2, 0x53, 0xE6, 0xE9, 0x97, 0xA9, 0xCC, 0x3A, 0x8D, 0xA9, 0xFF, 0x00, 0x57, 0x2A, 0x37, 0x43, 0x95, 0xC6, 0x47, 0x62, 0x08, 0xAF, 0x56, 0xF0, 0xFE, 0x8E, 0x25, 0x0A, 0x36, 0xE0, 0x7A, 0x62, 0xBD, 0x32, 0x3F, 0x0C, 0xE9, 0xFF, 0x00, 0x16, 0x7C, 0x02, 0xBE, 0x16, 0xF1, 0x55, 0xA3, 0x6A, 0x1A, 0x4C, 0x24, 0x9B, 0x39, 0xC7, 0xFC, 0x7C, 0x69, 0xCC, 0x7B, 0xC6, 0xDD, 0x76, 0xFB, 0x0A, 0xF5, 0xB3, 0xBE, 0x15, 0xAD, 0x8E, 0xC0, 0xB8, 0xE1, 0xE7, 0xCB, 0x53, 0x7D, 0x76, 0x7E, 0x4F, 0xAF, 0xF5, 0xB3, 0x1E, 0x07, 0x88, 0xA1, 0x87, 0xC4, 0xA8, 0xD5, 0x57, 0x8B, 0xED, 0xBA, 0xF3, 0x47, 0xC4, 0x96, 0x5E, 0x37, 0x8F, 0x4A, 0x6F, 0x95, 0xAA, 0x87, 0x8B, 0x3E, 0x2A, 0xCB, 0xA9, 0x5B, 0x18, 0x95, 0xBE, 0x5E, 0x9D, 0x6B, 0xDE, 0x7E, 0x2B, 0x7F, 0xC1, 0x27, 0xFC, 0x75, 0x69, 0x04, 0xDA, 0x97, 0x81, 0x6E, 0xAD, 0xFC, 0x61, 0xA5, 0x80, 0x5C, 0x42, 0x8E, 0x12, 0xF2, 0x31, 0xE8, 0x57, 0xA3, 0x1F, 0xA5, 0x7C, 0xD1, 0xE3, 0xBF, 0x84, 0x1E, 0x2C, 0xF8, 0x6D, 0xA8, 0x49, 0x6B, 0xE2, 0x0F, 0x0F, 0x6B, 0x1A, 0x44, 0xF1, 0x9C, 0x32, 0xDD, 0x5A, 0x3C, 0x78, 0xFC, 0x71, 0x8A, 0xFE, 0x59, 0xE2, 0x6C, 0xBF, 0x3A, 0xC0, 0xD4, 0x74, 0xF1, 0xD4, 0x65, 0x05, 0xDF, 0x78, 0xBF, 0x49, 0x2D, 0x3F, 0x1B, 0x9F, 0xAF, 0x65, 0x15, 0xF0, 0x18, 0x88, 0x29, 0x61, 0xA6, 0xA5, 0xF9, 0xFD, 0xCF, 0x53, 0xA5, 0xF8, 0x41, 0xE3, 0xE5, 0xD0, 0xF5, 0xC8, 0xE4, 0x76, 0xC7, 0xCD, 0x9E, 0xB5, 0xF7, 0x67, 0xC0, 0x4F, 0xDA, 0x56, 0xC6, 0xCA, 0xC2, 0x1F, 0xF4, 0xC6, 0x86, 0x45, 0x51, 0xCA, 0x48, 0x54, 0x8F, 0xCA, 0xBF, 0x33, 0x2D, 0xEE, 0x1A, 0xD9, 0xF2, 0xA6, 0xBA, 0x0D, 0x23, 0xE2, 0x56, 0xA1, 0xA4, 0x2F, 0xEE, 0xE6, 0x91, 0x7E, 0x86, 0xBE, 0x67, 0x0B, 0x99, 0x4E, 0x8A, 0xB2, 0x3D, 0x2C, 0x46, 0x06, 0x35, 0x75, 0x67, 0xE9, 0x77, 0xC6, 0x5F, 0xDA, 0x6F, 0x4D, 0xB9, 0xD2, 0x25, 0x66, 0xBC, 0x69, 0xE4, 0x65, 0x3F, 0x33, 0xCB, 0xB8, 0xFE, 0xA6, 0xBE, 0x0F, 0xF8, 0xE3, 0xF1, 0x35, 0x35, 0xED, 0x7E, 0x49, 0x22, 0x6C, 0xFC, 0xD9, 0xC8, 0x35, 0xC2, 0xEA, 0xBF, 0x14, 0xB5, 0x2D, 0x56, 0x3D, 0xB2, 0x4D, 0x23, 0x0F, 0x73, 0x5C, 0xED, 0xD5, 0xEC, 0x97, 0x6F, 0xB9, 0xDB, 0x39, 0xA7, 0x89, 0xCC, 0xA7, 0x55, 0x59, 0x86, 0x1F, 0x2F, 0x8D, 0x27, 0x74, 0x7A, 0xB7, 0x83, 0x3E, 0x38, 0x4D, 0xA5, 0x59, 0x08, 0x59, 0xCE, 0xDE, 0x9D, 0x6A, 0xEE, 0xA9, 0xF1, 0x26, 0x3D, 0x68, 0x67, 0x76, 0x49, 0xAF, 0x3A, 0xF0, 0x47, 0xC2, 0x8F, 0x14, 0xFC, 0x42, 0xBE, 0x5B, 0x6D, 0x07, 0x41, 0xD5, 0xF5, 0x49, 0xA4, 0x38, 0x55, 0xB6, 0xB6, 0x77, 0xCF, 0xE3, 0x8C, 0x57, 0xBE, 0xF8, 0x13, 0xFE, 0x09, 0xBD, 0xE3, 0x08, 0x2D, 0xE3, 0xBE, 0xF1, 0xA5, 0xD4, 0x3E, 0x17, 0xB1, 0x38, 0x6F, 0xB3, 0x96, 0x12, 0x5E, 0x4A, 0x3D, 0x02, 0xFF, 0x00, 0x09, 0xAF, 0xA8, 0xE1, 0x7C, 0xA7, 0x3D, 0xCC, 0x6A, 0x2A, 0x78, 0x0A, 0x12, 0x92, 0xEF, 0x6B, 0x45, 0x7A, 0xC9, 0xD9, 0x7E, 0x37, 0x3C, 0xCC, 0xDB, 0x11, 0x97, 0xE1, 0xA0, 0xE5, 0x89, 0x9A, 0x8F, 0x97, 0x5F, 0xB9, 0x6A, 0x71, 0xBF, 0x0F, 0xBC, 0x3B, 0x2F, 0xC4, 0x3F, 0x13, 0xC3, 0x63, 0x1B, 0x79, 0x76, 0xEC, 0x77, 0x5D, 0xCE, 0x7E, 0xED, 0xBC, 0x23, 0xEF, 0x31, 0x3F, 0x4C, 0x81, 0xEA, 0x4D, 0x75, 0xFF, 0x00, 0x1A, 0x3C, 0x69, 0xFF, 0x00, 0x09, 0xBF, 0x8F, 0x25, 0xB9, 0x89, 0x5A, 0x2B, 0x0B, 0x58, 0x63, 0xB1, 0xB1, 0x43, 0xFC, 0x10, 0x44, 0x30, 0xBF, 0x99, 0xC9, 0xFC, 0x6B, 0xB8, 0xD4, 0x3C, 0x13, 0xA7, 0xF8, 0x37, 0x44, 0xFE, 0xCA, 0xD1, 0x6D, 0x5A, 0xD2, 0xC5, 0x7F, 0xD6, 0x33, 0x1C, 0xCD, 0x74, 0x7D, 0x5D, 0xBF, 0xA5, 0x79, 0xEF, 0x89, 0xB4, 0x66, 0x72, 0x55, 0x15, 0x99, 0xF3, 0xC0, 0x03, 0xAD, 0x7F, 0x51, 0xE5, 0xBC, 0x31, 0x88, 0xCB, 0x32, 0xD5, 0x4A, 0xB4, 0xF9, 0xA7, 0xBC, 0xAD, 0xB2, 0xF2, 0x8D, 0xF5, 0xB2, 0xEF, 0xA5, 0xDF, 0x44, 0x7E, 0x75, 0x4F, 0x36, 0xA7, 0x8A, 0xC4, 0x73, 0xC3, 0x48, 0xAD, 0x17, 0x7F, 0x36, 0xFC, 0xDD, 0x97, 0xA2, 0xF5, 0x39, 0xF6, 0x7A, 0xFA, 0xD3, 0xFE, 0x09, 0xF7, 0xA1, 0x4F, 0xA7, 0x7C, 0x0F, 0xF8, 0x9D, 0x78, 0xAA, 0xDE, 0x77, 0x8A, 0xEC, 0x9F, 0x47, 0xB5, 0x5C, 0x72, 0xEB, 0x1C, 0x32, 0x4B, 0x21, 0xFA, 0x0F, 0xE9, 0x5F, 0x29, 0x69, 0xBE, 0x1D, 0xBA, 0xD4, 0x35, 0x34, 0xB7, 0x91, 0x1A, 0xD9, 0x73, 0x99, 0x24, 0x90, 0x61, 0x63, 0x5E, 0xE4, 0xD7, 0xDD, 0x1F, 0xB0, 0xDC, 0xF6, 0x7A, 0x8E, 0x95, 0xAB, 0x2D, 0xBE, 0xD8, 0xF4, 0xAD, 0x07, 0x41, 0xBE, 0x86, 0xD5, 0x4F, 0xF1, 0x48, 0xD6, 0xD2, 0x6F, 0x94, 0xFB, 0x9F, 0xEB, 0x5B, 0x61, 0xF0, 0x8E, 0x74, 0x2A, 0xD7, 0x92, 0xD2, 0x31, 0x95, 0xBC, 0xDD, 0xBF, 0x42, 0x73, 0x6C, 0x52, 0x87, 0x25, 0x18, 0x7D, 0xA6, 0xAF, 0xE9, 0x7F, 0xD4, 0xFC, 0xA4, 0xD4, 0xA0, 0xFB, 0x3D, 0xDB, 0xA8, 0xE8, 0xAC, 0x40, 0xFC, 0xEA, 0xBD, 0x6B, 0x78, 0xA6, 0xD3, 0xEC, 0xD7, 0x6D, 0x8E, 0xEC, 0x7F, 0x9D, 0x64, 0xD7, 0xF1, 0x16, 0x25, 0x25, 0x55, 0xA4, 0x7E, 0xCD, 0x4E, 0x57, 0x8A, 0x61, 0x45, 0x14, 0x56, 0x06, 0x81, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x5D, 0x47, 0xC3, 0x6B, 0xA5, 0x87, 0x53, 0x55, 0x6E, 0x8D, 0xC1, 0xAE, 0x5E, 0xAE, 0xE8, 0xB7, 0xFF, 0x00, 0x61, 0xBB, 0x56, 0xF4, 0x39, 0xAD, 0xA8, 0x4B, 0x96, 0x69, 0xB2, 0x2A, 0x2B, 0xC6, 0xC7, 0xEC, 0x3F, 0x87, 0x7F, 0x68, 0xE8, 0x7E, 0x36, 0xFE, 0xC3, 0x3E, 0x15, 0x76, 0x99, 0x64, 0xD5, 0x3C, 0x2F, 0x6E, 0x34, 0x5B, 0xE5, 0x27, 0x2C, 0x0C, 0x67, 0x31, 0xB7, 0xD1, 0x90, 0xF1, 0xFE, 0xE1, 0xAF, 0x54, 0xFF, 0x00, 0x82, 0x89, 0xFE, 0xD8, 0x1A, 0x3F, 0x8F, 0x3F, 0x60, 0x9F, 0x02, 0xF8, 0x7F, 0x5A, 0xF0, 0xDE, 0x96, 0x75, 0xED, 0x08, 0xC7, 0x15, 0xA6, 0xA3, 0x6B, 0x12, 0xC2, 0x4D, 0xB0, 0x4C, 0x15, 0x20, 0x74, 0x72, 0xDC, 0x93, 0xD0, 0xFA, 0x0A, 0xFC, 0x9C, 0xF8, 0x2F, 0xFB, 0x44, 0xDC, 0x78, 0x06, 0x2B, 0x98, 0x16, 0x46, 0x7D, 0x3F, 0x52, 0x8C, 0x45, 0x79, 0x08, 0x3F, 0x7B, 0x07, 0x2A, 0xE3, 0xFD, 0xA5, 0x3F, 0xA1, 0x22, 0xBD, 0xF3, 0xF6, 0xBD, 0xF8, 0xD3, 0x6B, 0xE3, 0x5F, 0x83, 0xDE, 0x15, 0x4B, 0x0B, 0xC8, 0xEE, 0x61, 0x31, 0x8C, 0x94, 0x6C, 0xF3, 0x8E, 0xF5, 0xFD, 0x5B, 0xC3, 0xB9, 0x8E, 0x13, 0x32, 0xCB, 0x30, 0xB3, 0xFF, 0x00, 0x97, 0xB4, 0x1B, 0xD3, 0xAD, 0xED, 0x64, 0xFC, 0xD3, 0x5B, 0xF9, 0x9F, 0xCD, 0x9C, 0x59, 0x92, 0xE6, 0x30, 0xE2, 0x1A, 0x11, 0xA0, 0xDA, 0xA3, 0x59, 0xB5, 0x3B, 0x2D, 0x1C, 0x74, 0x95, 0x9F, 0x66, 0x9A, 0xBA, 0x6A, 0xCF, 0xB3, 0xDC, 0x8B, 0xE1, 0xDC, 0x96, 0x9E, 0x28, 0x88, 0x49, 0xA7, 0xCE, 0xB7, 0x2A, 0xBF, 0x7E, 0x3E, 0x93, 0x45, 0xFE, 0xF2, 0xF5, 0xFC, 0x46, 0x45, 0x7B, 0x67, 0xC3, 0xDF, 0x0F, 0x2C, 0xA1, 0x30, 0xA3, 0xD2, 0xBE, 0x09, 0xD1, 0xBC, 0x41, 0x79, 0xA6, 0xEA, 0x11, 0xCD, 0x65, 0x71, 0x35, 0xBD, 0xC2, 0x30, 0x28, 0xF1, 0xB9, 0x56, 0x53, 0xF5, 0xAF, 0xA4, 0x3E, 0x08, 0x7E, 0xD8, 0xDA, 0xCF, 0x86, 0xDE, 0x18, 0xBC, 0x47, 0xA4, 0xC7, 0xAF, 0x5B, 0x2F, 0x5B, 0x8B, 0x66, 0x10, 0xDD, 0xA8, 0xF5, 0x3F, 0xC2, 0xFF, 0x00, 0x8E, 0x2B, 0xF4, 0xFC, 0xBB, 0x35, 0xF6, 0xEB, 0x92, 0x51, 0xD5, 0x75, 0x5B, 0x1D, 0xD8, 0xEE, 0x1B, 0x74, 0x67, 0xED, 0x29, 0xCA, 0xFE, 0x4F, 0x47, 0xFD, 0x7D, 0xC7, 0xDB, 0x3F, 0x0E, 0x3C, 0x2C, 0xD0, 0x4F, 0x1C, 0x90, 0x99, 0x21, 0x93, 0x8C, 0x3A, 0x31, 0x56, 0xFC, 0xC7, 0x35, 0xF4, 0x17, 0x82, 0x3C, 0x39, 0x3F, 0x8A, 0x2C, 0x56, 0xD7, 0x56, 0xB3, 0xD3, 0x75, 0xCB, 0x36, 0xFB, 0xD0, 0xEA, 0x76, 0x31, 0x5D, 0x2B, 0x7F, 0xDF, 0x4B, 0x9F, 0xD6, 0xBE, 0x75, 0xF8, 0x03, 0xFB, 0x51, 0xFC, 0x35, 0xF1, 0xB4, 0x96, 0xF1, 0x8F, 0x12, 0x43, 0xA2, 0xDC, 0xB6, 0x33, 0x6D, 0xAC, 0xC6, 0x6D, 0x18, 0x1F, 0x4D, 0xE7, 0xF7, 0x67, 0xFE, 0xFA, 0xAF, 0xB9, 0x3E, 0x0D, 0xF8, 0x7A, 0xD7, 0x5E, 0xD3, 0xE1, 0x9B, 0x4D, 0x9A, 0xD7, 0x52, 0x85, 0x80, 0x22, 0x4B, 0x49, 0x56, 0xE1, 0x08, 0xFA, 0xA1, 0x22, 0xBC, 0x5E, 0x28, 0xC7, 0xD3, 0xA7, 0x4B, 0x96, 0xA4, 0x6F, 0x7E, 0xEB, 0xFC, 0xC3, 0x2B, 0xC1, 0xD4, 0x75, 0x34, 0xBA, 0xF4, 0x3C, 0xDB, 0x51, 0xFF, 0x00, 0x82, 0x6C, 0x7C, 0x09, 0xF8, 0xA3, 0x27, 0x99, 0xAF, 0xFC, 0x17, 0xF0, 0x2D, 0xD4, 0xB2, 0x72, 0xCD, 0x67, 0x04, 0x96, 0x04, 0x9F, 0xFB, 0x62, 0xCA, 0x2B, 0x22, 0xF3, 0xFE, 0x08, 0x3D, 0xFB, 0x2A, 0xEB, 0x2C, 0xD2, 0x7F, 0xC2, 0x9F, 0x92, 0xD4, 0xB0, 0xE9, 0x6D, 0xE2, 0x3B, 0xD4, 0x51, 0xF4, 0x05, 0xCD, 0x7D, 0xAF, 0xE0, 0xCF, 0x01, 0xE4, 0x2E, 0xE8, 0x59, 0x78, 0xFE, 0x25, 0xC5, 0x7A, 0x46, 0x87, 0xF0, 0xC4, 0x5D, 0xA2, 0xAA, 0xC6, 0x0B, 0x1A, 0xFE, 0x7C, 0xCD, 0xAA, 0xE5, 0x9C, 0xEE, 0x53, 0xA3, 0x1F, 0xB8, 0xFD, 0x2B, 0x03, 0x1C, 0x5F, 0x2A, 0x51, 0x9B, 0xFB, 0xCF, 0xCD, 0x83, 0xFF, 0x00, 0x04, 0x2E, 0xFD, 0x96, 0x7C, 0x38, 0x77, 0xC7, 0xF0, 0x7D, 0xAE, 0x0A, 0xF3, 0x8B, 0x9F, 0x10, 0xDE, 0x48, 0xA7, 0xFF, 0x00, 0x1E, 0x15, 0x04, 0xDF, 0xF0, 0x4F, 0x0F, 0x82, 0x7F, 0x0C, 0x58, 0xC9, 0xE1, 0xDF, 0x83, 0x5E, 0x05, 0xB3, 0x92, 0x3E, 0x51, 0xAE, 0xA0, 0x96, 0xF8, 0xAF, 0xFD, 0xFD, 0x73, 0x5F, 0xA4, 0x1E, 0x32, 0xF8, 0x57, 0xFD, 0x9F, 0x09, 0xDF, 0x18, 0x5E, 0x3B, 0xD7, 0x8B, 0x7C, 0x42, 0xF0, 0x11, 0x26, 0x4F, 0x2E, 0x16, 0x93, 0x39, 0xE1, 0x57, 0x71, 0xFD, 0x2B, 0xD0, 0xE1, 0xDA, 0x99, 0x57, 0x3A, 0x9C, 0x28, 0xC7, 0xEE, 0x39, 0xB3, 0x48, 0xE3, 0x79, 0x5C, 0x65, 0x51, 0x9F, 0x0C, 0xF8, 0xEB, 0x47, 0xB9, 0xD0, 0x6C, 0xDE, 0xD3, 0x4E, 0x86, 0xC7, 0x45, 0xB5, 0x5F, 0xBB, 0x0E, 0x9B, 0x65, 0x1D, 0xA2, 0x8F, 0xFB, 0xE1, 0x73, 0xFA, 0xD7, 0xCE, 0xDF, 0x13, 0x3C, 0x26, 0xCD, 0x34, 0x92, 0x36, 0xE7, 0x91, 0xB3, 0x97, 0x62, 0x59, 0x8F, 0xD4, 0x9E, 0x6B, 0xEE, 0x4F, 0x8D, 0xFE, 0x0A, 0x4D, 0x16, 0xCE, 0x5B, 0x8B, 0xE6, 0xB7, 0xD3, 0xA1, 0x50, 0x4B, 0x49, 0x79, 0x32, 0x5B, 0xA0, 0xFC, 0x5C, 0x81, 0x5F, 0x10, 0xFC, 0x7C, 0xFD, 0xA2, 0x7E, 0x1D, 0x78, 0x25, 0xE6, 0x8E, 0x6F, 0x11, 0xDB, 0xEA, 0xF7, 0x4A, 0x4F, 0xFA, 0x36, 0x90, 0x86, 0xED, 0x89, 0xF4, 0xDE, 0x3F, 0x76, 0x3F, 0xEF, 0xAA, 0xFE, 0x90, 0xC8, 0x31, 0xF4, 0x2A, 0x61, 0xD7, 0x22, 0x4A, 0xDD, 0x97, 0xF9, 0x1F, 0x98, 0xE3, 0x30, 0x75, 0xDD, 0x5E, 0x5D, 0x5B, 0x3E, 0x7D, 0xF8, 0x87, 0xE1, 0x96, 0xB7, 0x77, 0x6F, 0x2C, 0xED, 0xF5, 0xC5, 0x73, 0x5F, 0x09, 0x35, 0x9F, 0x0B, 0xFC, 0x3E, 0xF8, 0xCF, 0xA2, 0xDF, 0x78, 0xD2, 0x35, 0x6D, 0x1E, 0x3B, 0x85, 0x69, 0xAD, 0xCF, 0xFA, 0xC9, 0x57, 0x3C, 0xE1, 0x7B, 0x7D, 0x4D, 0x7E, 0xB2, 0xFE, 0xC2, 0xBF, 0x0B, 0x7E, 0x0A, 0xFE, 0xD1, 0x3F, 0xB1, 0xD5, 0xD6, 0xAD, 0x7D, 0xA0, 0xDF, 0x2E, 0xAD, 0xAD, 0x59, 0xDE, 0xC4, 0xF7, 0x33, 0x48, 0xBE, 0x66, 0x95, 0x2C, 0x28, 0x19, 0x18, 0x1E, 0x84, 0xB0, 0x3D, 0x06, 0x71, 0x8A, 0xFC, 0x11, 0xF8, 0x8D, 0x72, 0xCB, 0xE3, 0xED, 0x6A, 0x3F, 0x36, 0x69, 0x96, 0x0B, 0xE9, 0xA2, 0x56, 0x91, 0xB7, 0x33, 0x2A, 0xB9, 0x03, 0x27, 0xE8, 0x2B, 0xC5, 0xC4, 0xF1, 0x75, 0x2C, 0x4C, 0xAB, 0x61, 0x21, 0x4A, 0x51, 0x70, 0x7C, 0xAD, 0xBD, 0x13, 0xDF, 0x55, 0xF7, 0x79, 0x77, 0x3D, 0x9C, 0xAF, 0x86, 0xE7, 0x5E, 0x9F, 0xBF, 0x51, 0x72, 0xC9, 0x74, 0xD5, 0xAF, 0x2F, 0xEA, 0xFD, 0x8F, 0xAA, 0xBF, 0xE0, 0xA8, 0x5F, 0x1A, 0x7E, 0x16, 0xFC, 0x48, 0xF1, 0x7D, 0xAC, 0x9F, 0x0B, 0xF4, 0xE1, 0xA4, 0xD8, 0xEC, 0x5D, 0xD1, 0x21, 0xEF, 0x8E, 0x49, 0x23, 0xDE, 0xB0, 0xBE, 0x0F, 0x7C, 0x65, 0x5F, 0x84, 0x1F, 0xB2, 0xBF, 0x89, 0xAE, 0x96, 0x5D, 0x9A, 0x86, 0xAD, 0x68, 0x74, 0xCB, 0x30, 0x0F, 0xCC, 0xCF, 0x2F, 0xDE, 0x3F, 0x40, 0x80, 0xE7, 0xFD, 0xE1, 0x5F, 0x2B, 0x4B, 0x77, 0xB1, 0x0B, 0x33, 0x60, 0x0E, 0xE7, 0xB5, 0x3B, 0x5C, 0xF8, 0x89, 0x36, 0xA7, 0xA6, 0x5A, 0xDA, 0xB4, 0x85, 0x6D, 0x2C, 0x90, 0xAC, 0x51, 0xE7, 0xB9, 0xEA, 0xC7, 0xDC, 0xFF, 0x00, 0x20, 0x2B, 0xE2, 0xB3, 0x8E, 0x24, 0xA7, 0x95, 0x65, 0xB5, 0xA1, 0x7F, 0x7E, 0x70, 0xE4, 0x8A, 0x6E, 0xEF, 0x5D, 0x1B, 0x6D, 0xF6, 0x5F, 0x7B, 0xB1, 0xF4, 0x98, 0x1E, 0x17, 0x54, 0xE9, 0xD2, 0xC3, 0xC5, 0xB9, 0x28, 0xCF, 0x99, 0xB7, 0x65, 0xD5, 0xBB, 0x24, 0xB4, 0x4A, 0xFA, 0x24, 0xB6, 0x47, 0x23, 0xE3, 0x67, 0x5F, 0xB6, 0x6D, 0x5F, 0xE1, 0xE2, 0xB0, 0x6A, 0xE6, 0xB3, 0x7A, 0x6F, 0x2E, 0x99, 0xBD, 0xEA, 0x9D, 0x7F, 0x27, 0xD7, 0x97, 0x35, 0x46, 0xD1, 0xFA, 0xB5, 0x35, 0x68, 0xD8, 0x28, 0xA2, 0x8A, 0xC4, 0xA0, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA0, 0x1C, 0x51, 0x45, 0x00, 0x68, 0x69, 0x7A, 0xA3, 0x5A, 0xB6, 0x37, 0x57, 0x41, 0x61, 0xE2, 0xE9, 0xAD, 0x55, 0x63, 0xF3, 0x19, 0xE0, 0x07, 0x3E, 0x59, 0x6E, 0x07, 0xD3, 0xD2, 0xB8, 0xF0, 0x70, 0x6A, 0x68, 0xEE, 0x4A, 0x1A, 0xFA, 0x4C, 0x97, 0x88, 0x2B, 0x60, 0x6A, 0x29, 0x41, 0xD8, 0xE3, 0xAF, 0x83, 0x85, 0x4D, 0xD1, 0xEC, 0x1F, 0x0F, 0xEE, 0xAD, 0xF5, 0xA9, 0xF2, 0x92, 0x29, 0x93, 0xBC, 0x64, 0xFC, 0xC3, 0xF0, 0xAF, 0x68, 0xF0, 0x2E, 0x81, 0xBC, 0xA7, 0x19, 0x66, 0xF6, 0xAF, 0x92, 0xB4, 0x9D, 0x58, 0xDB, 0xCE, 0xAE, 0xAC, 0xCB, 0x22, 0xF4, 0x65, 0x38, 0x23, 0xF1, 0xAF, 0x5E, 0xF8, 0x5D, 0xFB, 0x49, 0x6A, 0xDE, 0x11, 0x9A, 0x25, 0xB8, 0x8E, 0xDF, 0x54, 0xB7, 0x53, 0xF7, 0x65, 0xF9, 0x64, 0x03, 0xD9, 0xC7, 0xF5, 0x06, 0xBF, 0xA3, 0xB8, 0x3B, 0xC4, 0xFC, 0xBB, 0xD9, 0xAA, 0x58, 0xE8, 0xF2, 0xBF, 0xE6, 0x5A, 0xAF, 0x9A, 0xDD, 0x7C, 0xAF, 0xF2, 0x3F, 0x3D, 0xE2, 0x6E, 0x1E, 0xC5, 0x54, 0x8B, 0x96, 0x19, 0xDF, 0xC9, 0xE9, 0xF7, 0x3D, 0xBF, 0x23, 0xEC, 0xDF, 0x87, 0x1F, 0x0D, 0xED, 0xB5, 0x25, 0x8D, 0x6E, 0x2D, 0xA3, 0x9B, 0x77, 0x50, 0xCB, 0x9A, 0xF7, 0xAF, 0x85, 0xDF, 0x03, 0x2D, 0x74, 0xD9, 0xE3, 0x9B, 0x4D, 0x9F, 0x52, 0xD1, 0xE6, 0x04, 0x11, 0x25, 0x8D, 0xD3, 0xC2, 0x41, 0xFC, 0x0D, 0x7C, 0xDB, 0xF0, 0x17, 0xF6, 0xD7, 0xF0, 0x1D, 0xE3, 0xC3, 0x16, 0xAF, 0xF6, 0xED, 0x0E, 0x63, 0x8C, 0xB4, 0xD1, 0x79, 0xD0, 0x8F, 0xF8, 0x12, 0xF3, 0xFF, 0x00, 0x8E, 0xD7, 0xDB, 0x5F, 0x00, 0x7E, 0x26, 0xF8, 0x17, 0xC7, 0x82, 0x16, 0xD3, 0x7C, 0x59, 0xE1, 0xDB, 0x80, 0x71, 0x85, 0x37, 0x89, 0x13, 0xFE, 0x4F, 0xB4, 0xD7, 0xE9, 0x95, 0x38, 0x8B, 0x2D, 0xC4, 0x52, 0x73, 0xA1, 0x5A, 0x32, 0x5D, 0xAF, 0xAF, 0xDC, 0xF5, 0xFB, 0xD1, 0xF9, 0xBA, 0xCA, 0xF1, 0x54, 0x67, 0xCB, 0x52, 0x0D, 0x3F, 0x4F, 0xD7, 0x63, 0xD5, 0xBE, 0x11, 0x5C, 0xFC, 0x47, 0xF0, 0xF7, 0x94, 0xBA, 0x6F, 0xC4, 0xCF, 0x19, 0x43, 0x1A, 0xF0, 0x12, 0x5B, 0xC6, 0x95, 0x47, 0xFD, 0xF5, 0x9A, 0xFA, 0xB7, 0xE0, 0x6F, 0xC6, 0x4F, 0x88, 0x9E, 0x1E, 0x9D, 0x64, 0xD5, 0xFC, 0x5D, 0x77, 0xAC, 0x43, 0xB7, 0x1B, 0x67, 0x85, 0x77, 0x0F, 0xC7, 0x15, 0xE6, 0x5F, 0x0D, 0x7C, 0x27, 0x0D, 0xD5, 0xBC, 0x72, 0x5A, 0xB4, 0x37, 0x2B, 0x81, 0x86, 0x86, 0x45, 0x91, 0x4F, 0xFD, 0xF2, 0x4D, 0x7A, 0xA6, 0x8D, 0xE1, 0x7B, 0x88, 0x61, 0x18, 0x86, 0x7F, 0xFB, 0xF6, 0xDF, 0xE1, 0x5F, 0x90, 0xF1, 0x2D, 0x6C, 0x16, 0x26, 0xF0, 0x95, 0x38, 0x6B, 0xD7, 0x96, 0x37, 0xFB, 0xED, 0x73, 0xED, 0x32, 0x9A, 0x78, 0x9A, 0x56, 0x97, 0x3C, 0xBE, 0xF7, 0xFE, 0x65, 0x5F, 0xDA, 0x4B, 0xE3, 0xB7, 0x8F, 0xBC, 0x51, 0x64, 0xA9, 0xA1, 0xF8, 0x9A, 0xE3, 0x44, 0x8E, 0x35, 0x3B, 0x9A, 0x18, 0x57, 0x7B, 0x1F, 0xAE, 0x2B, 0xE2, 0x5F, 0x8D, 0x73, 0x7C, 0x49, 0xF1, 0x1B, 0x4A, 0x9A, 0x8F, 0xC4, 0xEF, 0x1B, 0x49, 0x1B, 0x64, 0x14, 0x8A, 0xF5, 0xE1, 0x53, 0xF8, 0x29, 0x15, 0xF6, 0xBF, 0x89, 0xBC, 0x2B, 0x71, 0x34, 0x4D, 0xBA, 0x09, 0x8F, 0xFD, 0xB3, 0x3F, 0xE1, 0x5E, 0x25, 0xF1, 0x5F, 0xC1, 0x56, 0xF6, 0xF0, 0x48, 0xF7, 0x4D, 0x05, 0xB2, 0x80, 0x7E, 0x69, 0x64, 0x58, 0xC0, 0xFF, 0x00, 0xBE, 0x88, 0xAE, 0xCE, 0x11, 0xAD, 0x81, 0xC2, 0x25, 0x08, 0xD3, 0x85, 0xBB, 0xF2, 0xC6, 0xFF, 0x00, 0x7D, 0xAE, 0x61, 0x9D, 0x47, 0x15, 0x55, 0xB9, 0xF3, 0xCB, 0xEF, 0x67, 0xE7, 0x5F, 0xC5, 0x3F, 0x80, 0xB1, 0x6A, 0x37, 0x12, 0x4F, 0xA8, 0x5E, 0xEA, 0xDA, 0xA4, 0xDC, 0x92, 0xF7, 0x97, 0x4F, 0x2B, 0x1F, 0xCC, 0xD7, 0x86, 0x78, 0xEF, 0xE1, 0x94, 0x1A, 0x21, 0x7F, 0x26, 0x15, 0x5C, 0x1F, 0xEE, 0xD7, 0xD9, 0x3F, 0x1E, 0xFE, 0x23, 0x78, 0x1F, 0xC0, 0xDE, 0x68, 0xD4, 0xBC, 0x55, 0xA0, 0x5B, 0xE3, 0x3C, 0x2D, 0xDA, 0xCA, 0xDF, 0x92, 0x6E, 0x35, 0xF1, 0x87, 0xC6, 0xEF, 0xDB, 0x03, 0xC0, 0xF0, 0x4B, 0x34, 0x7A, 0x48, 0xBE, 0xD6, 0xA4, 0x5C, 0x80, 0xD1, 0xC7, 0xE4, 0xC2, 0x7F, 0xE0, 0x4D, 0xCF, 0xFE, 0x3B, 0x5F, 0xB0, 0x4F, 0x89, 0x32, 0xCC, 0x35, 0x2E, 0x7C, 0x45, 0x68, 0xC5, 0x76, 0xBA, 0xBF, 0xDC, 0xB5, 0xFB, 0x91, 0xF2, 0x14, 0xF2, 0xFC, 0x6D, 0x59, 0x5A, 0x94, 0x24, 0xFF, 0x00, 0x2F, 0xBF, 0x63, 0xDA, 0x7E, 0x00, 0x7E, 0xD8, 0x29, 0xF0, 0x13, 0xE0, 0x12, 0xE8, 0x6B, 0x70, 0xD1, 0xCD, 0x24, 0xF7, 0x44, 0xAA, 0xB6, 0x30, 0x1E, 0x35, 0x51, 0xFC, 0xAB, 0xF3, 0x9F, 0xE2, 0x65, 0xFC, 0x36, 0xFE, 0x23, 0xBC, 0xBA, 0x67, 0x1B, 0xEE, 0x67, 0x79, 0x36, 0x83, 0xC9, 0xCB, 0x13, 0x5A, 0x5F, 0x10, 0xBE, 0x3F, 0x6A, 0x1E, 0x25, 0x92, 0x45, 0x8D, 0x21, 0xD3, 0xED, 0xD8, 0xF0, 0x91, 0x7C, 0xCC, 0x7E, 0xAC, 0x7F, 0xA0, 0x15, 0xE5, 0x7A, 0xBE, 0xAC, 0x6E, 0xA6, 0x66, 0x66, 0x66, 0x66, 0xEA, 0x49, 0xC9, 0x35, 0xF8, 0xDF, 0x17, 0x78, 0x8D, 0x95, 0xC2, 0x2E, 0x19, 0x7C, 0x6F, 0x2B, 0xB7, 0xCC, 0xF4, 0xFB, 0x96, 0xEF, 0xE7, 0x63, 0xF4, 0xAE, 0x15, 0xE1, 0xDC, 0x56, 0x1D, 0xBA, 0x98, 0x97, 0xBF, 0x42, 0xC6, 0xA7, 0xAE, 0x3D, 0xE3, 0xFC, 0xC7, 0x6A, 0x2F, 0x45, 0xCD, 0x66, 0xDD, 0xEA, 0x2C, 0xE3, 0x19, 0xE2, 0xAA, 0xC9, 0x39, 0x7A, 0x8C, 0x9C, 0xD7, 0xF3, 0xCE, 0x73, 0x9F, 0x56, 0xC6, 0xD4, 0x72, 0x9B, 0xBD, 0xCF, 0xD1, 0x69, 0xE1, 0xE3, 0x14, 0x04, 0xE4, 0xD1, 0x45, 0x15, 0xF3, 0xA7, 0x48, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0xE5, 0x72, 0xA6, 0xAD, 0xD9, 0xEA, 0xEF, 0x6E, 0x47, 0x35, 0x4A, 0x8A, 0xD2, 0x9D, 0x69, 0xC1, 0xDE, 0x2C, 0x99, 0x41, 0x4B, 0x46, 0x75, 0xDA, 0x3F, 0x8E, 0x9A, 0xD8, 0x8C, 0x9A, 0xEB, 0x34, 0x2F, 0x8A, 0x30, 0xC0, 0xCA, 0xDC, 0x2B, 0x7A, 0xA9, 0xDA, 0x7F, 0x31, 0x5E, 0x4A, 0x1B, 0x14, 0xF5, 0x9D, 0x97, 0xF8, 0x8D, 0x7A, 0x54, 0x73, 0x9C, 0x4C, 0x36, 0x67, 0x2C, 0xF0, 0x34, 0xA5, 0xD0, 0xFA, 0x77, 0xC2, 0x3F, 0xB5, 0x26, 0xB3, 0xE1, 0xC5, 0x5F, 0xB0, 0x78, 0x93, 0x5D, 0xB1, 0xDB, 0xD3, 0xC8, 0xD4, 0x65, 0x4C, 0x7E, 0x1B, 0xAB, 0xBB, 0xD3, 0xFF, 0x00, 0xE0, 0xA1, 0x3F, 0x10, 0x74, 0xD8, 0x42, 0xC3, 0xF1, 0x17, 0xC6, 0x11, 0xA8, 0x18, 0x00, 0x6A, 0x6E, 0x7F, 0x9D, 0x7C, 0x56, 0x9A, 0x8C, 0xA9, 0xD1, 0x8D, 0x3F, 0xFB, 0x66, 0xE3, 0xFB, 0xED, 0xF9, 0xD7, 0x62, 0xE2, 0x4C, 0x45, 0xAC, 0xD9, 0xCF, 0xFD, 0x97, 0x48, 0xFB, 0x2F, 0x56, 0xFF, 0x00, 0x82, 0x81, 0x7C, 0x40, 0xD5, 0xA3, 0x65, 0xB8, 0xF8, 0x89, 0xE2, 0xF9, 0x55, 0x86, 0x08, 0x3A, 0x9B, 0x8F, 0xE5, 0x5E, 0x7D, 0xE3, 0x0F, 0xDA, 0x57, 0x58, 0xF1, 0x26, 0xEF, 0xB7, 0xF8, 0x8B, 0x5C, 0xBE, 0xDD, 0xD7, 0xCF, 0xD4, 0x25, 0x7C, 0xFF, 0x00, 0xE3, 0xD5, 0xF3, 0xAF, 0xF6, 0xCD, 0xC7, 0xF7, 0xDB, 0xF3, 0xA6, 0x3E, 0xA1, 0x33, 0xF5, 0x63, 0x4F, 0xFD, 0x64, 0xC4, 0xDA, 0xC9, 0x87, 0xF6, 0x55, 0x2B, 0xDC, 0xF4, 0x9D, 0x6F, 0xE2, 0x34, 0x33, 0xBB, 0x37, 0xDE, 0x63, 0xDC, 0xF2, 0x4F, 0xE2, 0x6B, 0x97, 0xD5, 0x7C, 0x66, 0xD7, 0x39, 0xC5, 0x73, 0x2D, 0x33, 0x37, 0xF1, 0x53, 0x49, 0xCD, 0x71, 0x56, 0xCE, 0x71, 0x13, 0xDD, 0x9D, 0x14, 0xF0, 0x34, 0xA3, 0xD0, 0xB9, 0x77, 0xAA, 0x3D, 0xC1, 0xEB, 0x55, 0x19, 0x8B, 0x1A, 0x4A, 0x2B, 0xCD, 0xA9, 0x5A, 0x73, 0xD6, 0x4C, 0xEA, 0x8C, 0x54, 0x76, 0x0A, 0x28, 0xA2, 0xB3, 0x28, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD9, } ; const char return_jpg[] PROGMEM = { 0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60, 0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x22, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, 0x01, 0x12, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03, 0x05, 0x03, 0x03, 0x03, 0x03, 0x03, 0x06, 0x04, 0x04, 0x03, 0x05, 0x07, 0x06, 0x07, 0x07, 0x07, 0x06, 0x07, 0x07, 0x08, 0x09, 0x0B, 0x09, 0x08, 0x08, 0x0A, 0x08, 0x07, 0x07, 0x0A, 0x0D, 0x0A, 0x0A, 0x0B, 0x0C, 0x0C, 0x0C, 0x0C, 0x07, 0x09, 0x0E, 0x0F, 0x0D, 0x0C, 0x0E, 0x0B, 0x0C, 0x0C, 0x0C, 0xFF, 0xDB, 0x00, 0x43, 0x01, 0x02, 0x02, 0x02, 0x03, 0x03, 0x03, 0x06, 0x03, 0x03, 0x06, 0x0C, 0x08, 0x07, 0x08, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0xFF, 0xC0, 0x00, 0x11, 0x08, 0x00, 0xB5, 0x01, 0x40, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, 0xFF, 0xC4, 0x00, 0x1F, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00, 0x00, 0x01, 0x7D, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xA1, 0x08, 0x23, 0x42, 0xB1, 0xC1, 0x15, 0x52, 0xD1, 0xF0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0A, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xC4, 0x00, 0x1F, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xA1, 0xB1, 0xC1, 0x09, 0x23, 0x33, 0x52, 0xF0, 0x15, 0x62, 0x72, 0xD1, 0x0A, 0x16, 0x24, 0x34, 0xE1, 0x25, 0xF1, 0x17, 0x18, 0x19, 0x1A, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xDA, 0x00, 0x0C, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, 0x3F, 0x00, 0xFE, 0x7F, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xAE, 0xE3, 0xE0, 0x5F, 0xEC, 0xFD, 0xE3, 0x4F, 0xDA, 0x63, 0xE2, 0x25, 0xA7, 0x85, 0x7C, 0x09, 0xE1, 0xBD, 0x53, 0xC4, 0xFA, 0xE5, 0xE1, 0x01, 0x2D, 0xAC, 0xE2, 0x2F, 0xE5, 0xA9, 0x60, 0xBB, 0xDD, 0xBE, 0xEC, 0x69, 0xB9, 0x94, 0x6E, 0x62, 0x06, 0x58, 0x0C, 0xE4, 0x8A, 0xFD, 0x76, 0xFD, 0x8B, 0x7F, 0xE0, 0x84, 0x5F, 0x0E, 0xFF, 0x00, 0x65, 0x36, 0xB3, 0xF1, 0x27, 0xC7, 0x79, 0xED, 0xBE, 0x20, 0xF8, 0xE2, 0x1C, 0x4D, 0x0F, 0x83, 0xEC, 0xA4, 0xFF, 0x00, 0x89, 0x55, 0x83, 0x65, 0x19, 0x7E, 0xD5, 0x26, 0x33, 0x23, 0x00, 0x18, 0x15, 0x23, 0x90, 0xF8, 0x28, 0xA4, 0x07, 0xAF, 0x57, 0x2D, 0xC9, 0xF1, 0x38, 0xD9, 0x5A, 0x92, 0xD3, 0xBF, 0x4F, 0xEB, 0xFA, 0x76, 0x3C, 0x5C, 0xE3, 0x3F, 0xC1, 0xE5, 0xB0, 0xBD, 0x79, 0x7B, 0xDF, 0xCA, 0xB7, 0xFF, 0x00, 0x81, 0xF3, 0xF9, 0x5C, 0xF8, 0x1F, 0xFE, 0x09, 0xFD, 0xFF, 0x00, 0x04, 0x79, 0xF8, 0xA9, 0xFB, 0x7A, 0xC8, 0xBA, 0xB5, 0xAD, 0xAC, 0x5E, 0x0D, 0xF8, 0x7F, 0x6F, 0x87, 0xBC, 0xF1, 0x4E, 0xB4, 0x86, 0x1B, 0x55, 0x4C, 0xA8, 0x3E, 0x4A, 0x9C, 0x19, 0x8F, 0xCD, 0x91, 0x82, 0x14, 0xED, 0x60, 0x18, 0xB0, 0xDA, 0x7B, 0x6F, 0xF8, 0x2B, 0x67, 0xFC, 0x13, 0x4F, 0xE1, 0x5F, 0xEC, 0x0F, 0xE0, 0x2F, 0x03, 0xDC, 0xF8, 0x27, 0xE2, 0x07, 0x88, 0x3C, 0x51, 0xAF, 0x6B, 0x57, 0x33, 0x5A, 0xEA, 0x16, 0xBA, 0x9D, 0x9A, 0xC7, 0x15, 0xCA, 0xA4, 0x48, 0xCF, 0x71, 0x6C, 0xCA, 0xAA, 0x42, 0x46, 0xEC, 0x11, 0x96, 0x40, 0x18, 0xF9, 0xD1, 0x95, 0xCE, 0xD7, 0x35, 0xFB, 0x09, 0xE3, 0x0F, 0x89, 0x97, 0xFE, 0x2C, 0xB6, 0xB6, 0xB3, 0x7F, 0xB3, 0xD8, 0xE9, 0x56, 0x0A, 0x12, 0xCF, 0x4D, 0xB3, 0x8C, 0x43, 0x69, 0x68, 0xA3, 0x8F, 0x91, 0x07, 0x7F, 0xF6, 0x9B, 0x2C, 0x7B, 0x93, 0x5F, 0x85, 0x3F, 0xF0, 0x55, 0x4F, 0xDA, 0x83, 0xFE, 0x1A, 0x63, 0xF6, 0xAD, 0xD5, 0x8D, 0x8D, 0xD0, 0xB8, 0xF0, 0xDF, 0x84, 0xB7, 0x68, 0xBA, 0x51, 0x8E, 0x5D, 0xF0, 0xCA, 0x23, 0x63, 0xE7, 0x4E, 0xB8, 0x25, 0x4F, 0x99, 0x2E, 0xEC, 0x38, 0xFB, 0xC8, 0x91, 0x7A, 0x57, 0xD3, 0xE7, 0x19, 0x26, 0x13, 0x2D, 0xCB, 0xEF, 0x3F, 0x7A, 0xA4, 0x9A, 0x4B, 0xF3, 0x6F, 0xEE, 0xED, 0xDD, 0x5D, 0xB3, 0xE3, 0xF2, 0x1E, 0x22, 0xC7, 0xE6, 0xF9, 0xA2, 0xE5, 0xF7, 0x68, 0xC1, 0x36, 0xD2, 0xFB, 0x92, 0x6F, 0xAB, 0x6F, 0x5D, 0x7B, 0x3B, 0x24, 0x7C, 0xCB, 0x45, 0x14, 0x57, 0xC1, 0x9F, 0xA5, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x57, 0xB5, 0x7E, 0xC7, 0x3F, 0xB0, 0x37, 0xC5, 0x0F, 0xDB, 0xB7, 0xC7, 0x63, 0x43, 0xF8, 0x77, 0xE1, 0xD9, 0xF5, 0x21, 0x19, 0x22, 0xEF, 0x52, 0x9F, 0x30, 0xE9, 0xF6, 0x00, 0x00, 0x49, 0x96, 0x6C, 0x10, 0x38, 0x20, 0xE0, 0x02, 0xD8, 0x39, 0xC6, 0x01, 0x23, 0x4A, 0x34, 0x67, 0x56, 0x5C, 0x94, 0xD5, 0xD9, 0x95, 0x6A, 0xF4, 0xE8, 0xC1, 0xD4, 0xAB, 0x25, 0x18, 0xAE, 0xAC, 0xF1, 0x50, 0x0B, 0x1A, 0xFD, 0x05, 0xFD, 0x81, 0x3F, 0xE0, 0x82, 0x9E, 0x37, 0xFD, 0xA2, 0x74, 0xAB, 0x4F, 0x19, 0xFC, 0x56, 0xBC, 0x9B, 0xE1, 0x4F, 0xC3, 0x76, 0x7F, 0x96, 0x5B, 0xC8, 0x4A, 0xEA, 0xDA, 0xA0, 0x0D, 0xB4, 0xAD, 0xBD, 0xBB, 0x0D, 0xC0, 0xF0, 0xDC, 0xB2, 0x92, 0x36, 0xF2, 0xA1, 0x48, 0x7A, 0xFB, 0xAF, 0xF6, 0x36, 0xFF, 0x00, 0x82, 0x5C, 0xFC, 0x19, 0xFF, 0x00, 0x82, 0x78, 0x1B, 0x7D, 0x5E, 0xF1, 0x6C, 0xBE, 0x2F, 0x7C, 0x53, 0xB7, 0xF9, 0xBF, 0xB4, 0xEF, 0x21, 0x1F, 0xD8, 0xDA, 0x3C, 0x9B, 0x9B, 0xFD, 0x44, 0x79, 0x3E, 0x63, 0x01, 0xB7, 0xE6, 0x0C, 0x46, 0x4B, 0x7C, 0xEC, 0x0E, 0xDA, 0xF6, 0x8F, 0x18, 0xFC, 0x40, 0xD5, 0x3C, 0x71, 0xAA, 0x1B, 0xDD, 0x52, 0xF2, 0x5B, 0xC9, 0xC2, 0x84, 0x4D, 0xD8, 0x09, 0x12, 0x8E, 0x88, 0x8A, 0x30, 0xA8, 0xA3, 0xFB, 0xAA, 0x00, 0xF6, 0xAF, 0xBF, 0xC9, 0xB8, 0x35, 0xBB, 0x55, 0xC6, 0x7D, 0xDF, 0xD7, 0xFC, 0x37, 0xAA, 0x3F, 0x30, 0xCF, 0xB8, 0xFE, 0xD7, 0xA3, 0x97, 0x7F, 0xE0, 0x4F, 0xF4, 0x5D, 0x3F, 0x3F, 0x46, 0x37, 0xE0, 0xFF, 0x00, 0x87, 0xBC, 0x0F, 0xFB, 0x23, 0x7C, 0x3B, 0xFF, 0x00, 0x84, 0x47, 0xE0, 0xCF, 0x86, 0x61, 0xF0, 0x66, 0x90, 0xC3, 0x17, 0x7A, 0x97, 0x0D, 0xAB, 0xEA, 0x8D, 0xC6, 0x5E, 0x59, 0xF2, 0x59, 0x73, 0x80, 0x30, 0x18, 0x9C, 0x28, 0x05, 0x88, 0x18, 0xAA, 0x33, 0x5E, 0xF5, 0xE6, 0xA9, 0x4D, 0x7B, 0x55, 0x26, 0xBC, 0xAF, 0xD0, 0xA8, 0xD0, 0xA7, 0x46, 0x3C, 0x94, 0xD5, 0x91, 0xF9, 0x6D, 0x7C, 0x45, 0x4A, 0xD3, 0x75, 0x2A, 0xBB, 0xB6, 0x78, 0x9F, 0xFC, 0x14, 0x9F, 0xF6, 0xA3, 0x3F, 0xB3, 0x2F, 0xEC, 0xB5, 0xAD, 0x6A, 0x56, 0x77, 0x4D, 0x6F, 0xE2, 0x0D, 0x70, 0x7F, 0x63, 0xE8, 0xC6, 0x37, 0x2B, 0x24, 0x73, 0xCA, 0xAD, 0xBA, 0x65, 0x23, 0x95, 0x31, 0x46, 0x1E, 0x40, 0x7A, 0x6E, 0x54, 0x19, 0xF9, 0x85, 0x7E, 0x1D, 0x93, 0x93, 0x5F, 0xB5, 0xFF, 0x00, 0xB6, 0x4F, 0xFC, 0x13, 0xBE, 0xD3, 0xF6, 0xF7, 0xD4, 0xF4, 0x99, 0x35, 0x4F, 0x8B, 0x11, 0x78, 0x06, 0xDF, 0xC3, 0xB0, 0xBA, 0x59, 0xD9, 0xCF, 0xE1, 0xF9, 0x75, 0x1B, 0x7B, 0x99, 0x65, 0x39, 0x92, 0x57, 0x92, 0x27, 0x0E, 0x84, 0x04, 0x89, 0x40, 0xD8, 0xFC, 0x64, 0x8C, 0x73, 0x9F, 0x96, 0x3C, 0x73, 0xFF, 0x00, 0x06, 0xEF, 0xFC, 0x4A, 0xB5, 0xB9, 0x98, 0xF8, 0x37, 0xE2, 0x47, 0xC2, 0x3F, 0x19, 0x5B, 0xA8, 0x3E, 0x52, 0x3E, 0xB1, 0x26, 0x8F, 0x79, 0x31, 0xEC, 0x04, 0x57, 0x51, 0xA2, 0xE4, 0xF1, 0x80, 0x24, 0x3F, 0xD6, 0xBF, 0x39, 0xE2, 0xCC, 0x1E, 0x3F, 0x15, 0x8A, 0xE6, 0x8D, 0x37, 0xC9, 0x15, 0x65, 0xB7, 0xAB, 0x7B, 0xF7, 0xD3, 0xE4, 0x8F, 0xD5, 0xF8, 0x23, 0x32, 0xCA, 0xB0, 0x58, 0x2E, 0x49, 0xD5, 0x4A, 0xA4, 0xDD, 0xE5, 0x74, 0xF4, 0xE8, 0x95, 0xED, 0x6D, 0x16, 0xBB, 0xF5, 0x67, 0xE7, 0xBD, 0x15, 0xF4, 0x47, 0xC6, 0x8F, 0xF8, 0x25, 0x5F, 0xED, 0x11, 0xFB, 0x3F, 0x59, 0xB5, 0xE7, 0x89, 0xBE, 0x11, 0x78, 0xC6, 0x1D, 0x3C, 0x64, 0xFD, 0xBE, 0xC6, 0xD3, 0xFB, 0x4A, 0xD0, 0x81, 0xC9, 0x6F, 0x3A, 0xD8, 0xC8, 0x98, 0xC7, 0x39, 0x27, 0x8E, 0xF5, 0xF3, 0xF5, 0xE5, 0xAC, 0xB6, 0x37, 0x0F, 0x0C, 0xD1, 0xC9, 0x0C, 0xB1, 0x9D, 0xAC, 0xAE, 0xA5, 0x59, 0x4F, 0xA1, 0x07, 0xA5, 0x7C, 0x2D, 0x4A, 0x15, 0x29, 0xBB, 0x54, 0x8B, 0x5E, 0xAA, 0xC7, 0xE9, 0x34, 0x71, 0x34, 0x6B, 0x2B, 0xD1, 0x9A, 0x92, 0xF2, 0x69, 0xFE, 0x44, 0x14, 0x51, 0x45, 0x64, 0x6C, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7D, 0xD1, 0xFF, 0x00, 0x04, 0x6F, 0xFF, 0x00, 0x82, 0x65, 0x68, 0x7F, 0xB6, 0x9E, 0xBB, 0xAF, 0x78, 0xDB, 0xE2, 0x25, 0xC5, 0xE5, 0xA7, 0xC2, 0xDF, 0x03, 0xC8, 0x91, 0x5E, 0x45, 0x67, 0x20, 0x5B, 0x8D, 0x66, 0xE9, 0xB6, 0xB0, 0xB4, 0x42, 0x08, 0x65, 0x24, 0x32, 0x64, 0xFC, 0xBC, 0x3E, 0x77, 0x61, 0x1F, 0x1F, 0xAE, 0x8B, 0xE3, 0x1D, 0x3F, 0xC1, 0xBE, 0x03, 0x83, 0xC1, 0xBE, 0x07, 0xD0, 0xB4, 0xBF, 0x03, 0x78, 0x26, 0xC8, 0x6C, 0x87, 0x48, 0xD2, 0xA3, 0x11, 0x2C, 0xA3, 0x73, 0x36, 0x66, 0x70, 0x01, 0x91, 0x89, 0x72, 0x48, 0xE1, 0x32, 0x72, 0x14, 0x1A, 0xFC, 0xE9, 0xFF, 0x00, 0x82, 0x11, 0xFE, 0xD0, 0x7A, 0x2D, 0x97, 0xC0, 0xCF, 0x1B, 0x7C, 0x31, 0x96, 0xF1, 0xAD, 0xF5, 0xE9, 0xBC, 0x41, 0x0F, 0x88, 0xE1, 0xB7, 0x72, 0xA1, 0x6F, 0xA0, 0xFB, 0x31, 0x81, 0x8A, 0x73, 0x92, 0xD1, 0x91, 0xF3, 0x0C, 0x74, 0x99, 0x48, 0x27, 0x9C, 0x7D, 0xCB, 0x35, 0xF7, 0xBD, 0x7E, 0xBD, 0xC2, 0x78, 0x3C, 0x34, 0x70, 0x51, 0xAF, 0x04, 0x9C, 0x9E, 0xEF, 0xAD, 0xFF, 0x00, 0xE0, 0x74, 0xED, 0xBF, 0x9B, 0xFC, 0x27, 0x8E, 0x33, 0x0C, 0x5C, 0xF3, 0x19, 0xE1, 0xEA, 0xB6, 0xA3, 0x1D, 0x97, 0x4B, 0x5B, 0x7F, 0x9F, 0x57, 0xF2, 0x7B, 0x24, 0xAE, 0xCD, 0x7B, 0xEF, 0x55, 0x66, 0xBE, 0xF7, 0xAA, 0x33, 0x5F, 0x7F, 0xB5, 0x55, 0x26, 0xBF, 0xEB, 0xCD, 0x7D, 0x67, 0x33, 0x3E, 0x26, 0xE5, 0xE9, 0xAF, 0xBD, 0xEA, 0xA4, 0xD7, 0xDF, 0xED, 0x55, 0x19, 0xAF, 0xBD, 0xEA, 0xAC, 0xD7, 0xDF, 0xED, 0x56, 0x7C, 0xC2, 0xB9, 0x76, 0x6B, 0xEE, 0xBC, 0xD5, 0x49, 0xAF, 0xBD, 0xEA, 0x94, 0xD7, 0xDE, 0xF5, 0x52, 0x6B, 0xEF, 0x7A, 0x39, 0x99, 0x27, 0x41, 0xE1, 0xFF, 0x00, 0x88, 0x3A, 0xC7, 0x82, 0x2E, 0x9E, 0x7D, 0x1B, 0x57, 0xD4, 0xF4, 0x89, 0xDF, 0xEF, 0x49, 0x65, 0x75, 0x25, 0xBB, 0xB7, 0xD4, 0xA1, 0x06, 0xA8, 0xFC, 0x4D, 0xD5, 0x3C, 0x37, 0xF1, 0xE6, 0xD5, 0xAD, 0xFE, 0x25, 0x78, 0x03, 0xC0, 0x3F, 0x10, 0xE3, 0xF2, 0x8C, 0x2B, 0x3E, 0xAD, 0xA3, 0xC7, 0x15, 0xFC, 0x40, 0xF5, 0x65, 0xBC, 0xB6, 0xF2, 0xAE, 0x03, 0x7B, 0x99, 0x0F, 0x3C, 0xF5, 0xE6, 0xB0, 0xA6, 0xBE, 0xF7, 0xAA, 0xB3, 0x5E, 0xFB, 0xD6, 0x15, 0xA8, 0x53, 0xAA, 0xAD, 0x52, 0x29, 0xFA, 0xA3, 0x6A, 0x38, 0x9A, 0xB4, 0xA5, 0xCD, 0x4A, 0x4D, 0x3F, 0x26, 0x78, 0x3F, 0xC6, 0x5F, 0xF8, 0x23, 0xAF, 0xC0, 0xBF, 0x8B, 0x0B, 0x34, 0xFE, 0x04, 0xF1, 0x37, 0x89, 0xBE, 0x12, 0x6A, 0xCC, 0xA0, 0xA5, 0x96, 0xB0, 0x0E, 0xBF, 0xA2, 0x31, 0xEE, 0x04, 0xD1, 0xAA, 0xDD, 0x45, 0x93, 0xEA, 0x92, 0xE0, 0x77, 0xE3, 0x9F, 0x8A, 0xBF, 0x6A, 0x4F, 0xF8, 0x26, 0x17, 0xC6, 0x0F, 0xD9, 0x2F, 0x4B, 0x93, 0x59, 0xD7, 0x3C, 0x3B, 0x1E, 0xB9, 0xE1, 0x15, 0x72, 0x8B, 0xE2, 0x6F, 0x0E, 0xDC, 0x2E, 0xAB, 0xA4, 0x12, 0x06, 0x70, 0xF3, 0x45, 0x9F, 0x25, 0xB0, 0x47, 0xCB, 0x28, 0x46, 0xF6, 0xAF, 0xD4, 0x29, 0xAF, 0x7D, 0xEA, 0xD7, 0x86, 0x3E, 0x22, 0x6A, 0xDE, 0x04, 0xD4, 0x5E, 0xEB, 0x47, 0xD4, 0x6E, 0xB4, 0xF9, 0xA5, 0x8C, 0xC3, 0x2F, 0x94, 0xFF, 0x00, 0x2C, 0xF1, 0x9C, 0x6E, 0x8E, 0x45, 0x3F, 0x2C, 0x88, 0x70, 0x32, 0x8C, 0x0A, 0x9E, 0xE0, 0xD7, 0xCC, 0x63, 0xF8, 0x47, 0x05, 0x59, 0x37, 0x4B, 0xDC, 0x7E, 0x5B, 0x7D, 0xC7, 0xD8, 0xE5, 0x7C, 0x7D, 0x98, 0xE1, 0x9A, 0x8D, 0x77, 0xED, 0x23, 0xE7, 0xBF, 0xDF, 0xFE, 0x77, 0x3F, 0x0A, 0xE8, 0xAF, 0xD6, 0xFF, 0x00, 0xDA, 0x57, 0xF6, 0x11, 0xF8, 0x47, 0xFB, 0x5C, 0xC3, 0x73, 0x7D, 0x15, 0x95, 0x87, 0xC2, 0x5F, 0x1F, 0xDC, 0x65, 0xC6, 0xAF, 0xA4, 0xDA, 0xB7, 0xF6, 0x0E, 0xA7, 0x21, 0x39, 0x3F, 0x6B, 0xB2, 0x40, 0x4C, 0x0C, 0xC7, 0x71, 0x32, 0xDB, 0x0C, 0x64, 0x8C, 0xC5, 0x80, 0x4D, 0x7E, 0x6D, 0xFE, 0xD3, 0x1F, 0xB2, 0xAF, 0x8D, 0xBF, 0x64, 0x8F, 0x88, 0x1F, 0xF0, 0x8E, 0xF8, 0xDF, 0x49, 0x3A, 0x7D, 0xCC, 0xC8, 0x67, 0xB2, 0xBB, 0x86, 0x55, 0xB8, 0xB1, 0xD5, 0x20, 0xDC, 0x54, 0x5C, 0x5B, 0x4E, 0x84, 0xA4, 0xB1, 0x1C, 0x70, 0xCA, 0x7E, 0xA0, 0x1E, 0x2B, 0xF3, 0xFC, 0xCF, 0x23, 0xC4, 0xE0, 0x9D, 0xEA, 0x2B, 0xC7, 0xBA, 0xDB, 0xFE, 0x01, 0xFA, 0xBE, 0x47, 0xC4, 0xD8, 0x2C, 0xCE, 0x36, 0xA2, 0xED, 0x3F, 0xE5, 0x7B, 0xFC, 0xBB, 0xAF, 0xC7, 0xC8, 0xF3, 0x4A, 0x28, 0xA2, 0xBC, 0x73, 0xE8, 0x42, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0D, 0x9F, 0x05, 0xF8, 0xCF, 0x54, 0xF8, 0x75, 0xE2, 0x9B, 0x1D, 0x6F, 0x44, 0xBF, 0xB8, 0xD3, 0x35, 0x6D, 0x36, 0x61, 0x3D, 0xAD, 0xD4, 0x0D, 0xB6, 0x48, 0x5C, 0x77, 0x1F, 0xC8, 0x83, 0xC1, 0x04, 0x83, 0x90, 0x6B, 0xF5, 0x67, 0xF6, 0x06, 0xFF, 0x00, 0x82, 0x8F, 0xE9, 0xBF, 0xB5, 0x2E, 0x97, 0x1F, 0x87, 0x7C, 0x44, 0xF6, 0x9A, 0x4F, 0x8F, 0x6D, 0x63, 0x24, 0xC2, 0xBF, 0xBB, 0x83, 0x58, 0x45, 0x04, 0x99, 0x20, 0x04, 0xF0, 0xE1, 0x41, 0x2F, 0x1F, 0x50, 0x01, 0x65, 0xCA, 0xEE, 0x09, 0xF9, 0x1B, 0x57, 0xB4, 0xAD, 0x5A, 0xE7, 0x40, 0xD4, 0xED, 0xAF, 0x6C, 0xEE, 0x67, 0xB4, 0xBD, 0xB3, 0x95, 0x67, 0x82, 0x78, 0x24, 0x31, 0xC9, 0x0C, 0x8A, 0x43, 0x2B, 0xAB, 0x0C, 0x15, 0x60, 0x40, 0x20, 0x8E, 0x41, 0x15, 0xED, 0x64, 0xD9, 0xD5, 0x6C, 0xBE, 0xAF, 0x34, 0x35, 0x8B, 0xDE, 0x3D, 0x1F, 0xF9, 0x3E, 0xCC, 0xF9, 0xFE, 0x20, 0xE1, 0xDC, 0x3E, 0x6B, 0x47, 0x92, 0xA6, 0x93, 0x5F, 0x0C, 0xBA, 0xAF, 0x2F, 0x35, 0xDD, 0x7D, 0xD6, 0x67, 0xEF, 0xCC, 0xD7, 0xDE, 0xF5, 0x56, 0x6B, 0xEC, 0x57, 0xC8, 0x1F, 0xB0, 0x57, 0xFC, 0x14, 0x7A, 0xDF, 0xE3, 0x9D, 0xA5, 0xB7, 0x84, 0xFC, 0x69, 0x73, 0x6D, 0x65, 0xE3, 0x28, 0x80, 0x4B, 0x6B, 0xA3, 0xB6, 0x28, 0x75, 0xA1, 0xD3, 0x80, 0x30, 0xAB, 0x37, 0xAA, 0x0E, 0x1B, 0xAA, 0x81, 0xCA, 0x8F, 0xA9, 0xA6, 0xBE, 0xFF, 0x00, 0x6A, 0xBF, 0x5F, 0xC0, 0xE6, 0x14, 0x71, 0x94, 0x55, 0x6A, 0x0E, 0xE9, 0xFD, 0xE9, 0xF6, 0x7E, 0x67, 0xE0, 0x39, 0xA6, 0x59, 0x89, 0xC0, 0x57, 0x78, 0x7C, 0x4A, 0xB3, 0x5F, 0x73, 0x5D, 0xD7, 0x75, 0xFD, 0x6E, 0x5E, 0x9A, 0xFA, 0xAA, 0x4D, 0x7D, 0xEF, 0x54, 0x66, 0xBD, 0xF7, 0xAA, 0xB3, 0xDE, 0xFB, 0xD7, 0x59, 0xE6, 0x97, 0x66, 0xBC, 0xAA, 0xB3, 0x5E, 0xFB, 0xD7, 0xC1, 0x3A, 0xCF, 0xFC, 0x15, 0xCB, 0xC5, 0x5E, 0x18, 0xF1, 0x05, 0xF6, 0x9D, 0xAA, 0x78, 0x1F, 0x49, 0x4B, 0xAD, 0x3E, 0x69, 0x2D, 0x67, 0x89, 0x6F, 0x64, 0x46, 0x8E, 0x54, 0x62, 0xAC, 0x09, 0x2A, 0x7A, 0x10, 0x45, 0x5C, 0xD3, 0x7F, 0xE0, 0xB1, 0xF0, 0xCA, 0xEA, 0xB7, 0xDE, 0x01, 0x96, 0x35, 0xEE, 0xD0, 0x6B, 0x02, 0x43, 0xFF, 0x00, 0x7C, 0x98, 0x57, 0xF9, 0xD7, 0xCE, 0xAE, 0x2A, 0xCB, 0x6F, 0x67, 0x52, 0xDE, 0xB1, 0x97, 0xF9, 0x1F, 0x5B, 0x2E, 0x07, 0xCE, 0x52, 0xE6, 0x8D, 0x24, 0xD7, 0x94, 0xA3, 0xFE, 0x67, 0xDC, 0x13, 0x5E, 0xD5, 0x49, 0xAF, 0xB9, 0xAF, 0x97, 0xBC, 0x25, 0xFF, 0x00, 0x05, 0x58, 0xF8, 0x73, 0xE2, 0x29, 0x16, 0x3D, 0x4A, 0xDF, 0xC4, 0x1A, 0x0B, 0x63, 0x2D, 0x24, 0xF6, 0xAB, 0x34, 0x40, 0xFB, 0x18, 0x99, 0x98, 0xFF, 0x00, 0xDF, 0x02, 0xBD, 0x7B, 0xC0, 0x1F, 0xB4, 0x1F, 0x83, 0x7E, 0x2D, 0x24, 0x7F, 0xF0, 0x8E, 0x78, 0x97, 0x49, 0xD5, 0x26, 0x96, 0x33, 0x28, 0xB7, 0x8E, 0x70, 0xB7, 0x2A, 0x83, 0xA9, 0x68, 0x5B, 0x12, 0x2F, 0xFC, 0x09, 0x45, 0x7A, 0x18, 0x7C, 0xD3, 0x09, 0x88, 0x76, 0xA3, 0x51, 0x37, 0xDA, 0xFA, 0xFD, 0xDB, 0x9E, 0x36, 0x33, 0x25, 0xC7, 0xE1, 0x55, 0xF1, 0x14, 0x65, 0x15, 0xDE, 0xDA, 0x7D, 0xFB, 0x1D, 0xCC, 0xD7, 0xB5, 0x56, 0x6B, 0xDA, 0xAA, 0xF3, 0x33, 0x9E, 0xB4, 0xCA, 0xEE, 0x3C, 0xB2, 0x59, 0x2E, 0x4B, 0xD3, 0x7C, 0x55, 0xA4, 0xE8, 0x7F, 0x16, 0x7E, 0x1A, 0xDD, 0x78, 0x1B, 0xC7, 0x1A, 0x69, 0xD7, 0xBC, 0x21, 0x78, 0xC6, 0x58, 0xE1, 0xDC, 0x16, 0xEB, 0x47, 0xB8, 0x3C, 0x7D, 0xAE, 0xCA, 0x43, 0xFE, 0xAA, 0x6E, 0xCC, 0x3E, 0xE4, 0xAB, 0xC3, 0x83, 0x84, 0x64, 0x65, 0x15, 0x9D, 0x5A, 0x50, 0xA9, 0x17, 0x0A, 0x8A, 0xE9, 0xF4, 0x35, 0xA3, 0x5A, 0xA5, 0x19, 0xAA, 0x94, 0x9B, 0x52, 0x5A, 0xA6, 0x8F, 0xCC, 0x8F, 0xDB, 0x2B, 0xF6, 0x44, 0xD5, 0xBF, 0x64, 0x5F, 0x89, 0x89, 0xA6, 0xDC, 0x4D, 0xFD, 0xA9, 0xE1, 0xDD, 0x62, 0x23, 0x79, 0xA0, 0x6B, 0x09, 0x1E, 0xD8, 0xB5, 0x3B, 0x6C, 0xE0, 0x9C, 0x7F, 0x0C, 0xA8, 0xD9, 0x49, 0x13, 0xAA, 0xB2, 0x91, 0xE9, 0x5E, 0x35, 0x5F, 0xAF, 0x9F, 0x1A, 0x7E, 0x11, 0x69, 0xFF, 0x00, 0xB4, 0x6F, 0xC1, 0xAD, 0x5B, 0xC0, 0xBA, 0xAB, 0x47, 0x17, 0xDB, 0x09, 0xBB, 0xD1, 0xAE, 0xE4, 0xDB, 0x8D, 0x2B, 0x51, 0x55, 0xC4, 0x72, 0x82, 0xC4, 0x04, 0x49, 0x00, 0x11, 0x4A, 0x72, 0x32, 0x84, 0x31, 0xC9, 0x8D, 0x45, 0x7E, 0x49, 0xEB, 0xFA, 0x1D, 0xE7, 0x86, 0x35, 0xBB, 0xCD, 0x36, 0xFE, 0x09, 0x2D, 0x6F, 0x74, 0xF9, 0xDE, 0xDA, 0xE2, 0x17, 0x18, 0x68, 0xA4, 0x46, 0x2A, 0xCA, 0x7D, 0xC1, 0x04, 0x57, 0xE4, 0xBC, 0x45, 0x93, 0x7D, 0x46, 0xBD, 0xE1, 0xF0, 0x4B, 0x6F, 0x2F, 0x23, 0xF7, 0xEE, 0x11, 0xE2, 0x25, 0x9A, 0x61, 0xAD, 0x53, 0xF8, 0x90, 0xF8, 0xBC, 0xFB, 0x3F, 0x9F, 0x5F, 0x3F, 0x54, 0x67, 0xD1, 0x45, 0x15, 0xF3, 0xA7, 0xD6, 0x85, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x12, 0xDB, 0x5C, 0x49, 0x69, 0x32, 0xC9, 0x1B, 0x34, 0x72, 0x46, 0xC1, 0x95, 0x94, 0xE1, 0x94, 0x8E, 0x41, 0x07, 0xB1, 0xAF, 0xD0, 0x1F, 0xD8, 0x43, 0xFE, 0x0A, 0x32, 0x3C, 0x6C, 0x96, 0xBE, 0x0B, 0xF8, 0x81, 0x7C, 0x91, 0xEB, 0x0A, 0x16, 0x1D, 0x37, 0x58, 0x99, 0xB0, 0xBA, 0x8F, 0x61, 0x0C, 0xE4, 0xF0, 0x26, 0xF4, 0x73, 0xC4, 0x9D, 0x0E, 0x1F, 0x06, 0x4F, 0xCF, 0x9A, 0x2B, 0xD3, 0xCA, 0xF3, 0x6A, 0xF8, 0x0A, 0xDE, 0xD6, 0x8B, 0xD3, 0xAA, 0xE8, 0xD7, 0xF5, 0xB3, 0xE8, 0x78, 0xF9, 0xDE, 0x47, 0x86, 0xCD, 0x30, 0xFE, 0xC6, 0xBA, 0xD7, 0xA4, 0x96, 0xF1, 0x7E, 0x5F, 0xAA, 0xEB, 0xF7, 0x33, 0xF7, 0x0A, 0x6B, 0xEF, 0x7A, 0xAB, 0x35, 0xF7, 0xFB, 0x55, 0xF0, 0xDF, 0xEC, 0x4F, 0xFF, 0x00, 0x05, 0x0C, 0x92, 0xDB, 0xEC, 0x7E, 0x11, 0xF1, 0xF5, 0xF6, 0xE8, 0x78, 0x87, 0x4F, 0xD6, 0xA7, 0x7E, 0x63, 0xEC, 0x23, 0xB8, 0x63, 0xDB, 0xA0, 0x12, 0x1E, 0x9F, 0xC5, 0xC7, 0xCC, 0x3E, 0xCE, 0x96, 0xEC, 0xBF, 0x4A, 0xFD, 0x77, 0x2D, 0xCD, 0x28, 0xE3, 0xA9, 0x7B, 0x5A, 0x2F, 0xD5, 0x75, 0x4F, 0xB3, 0x3F, 0x9F, 0x73, 0xAC, 0x97, 0x13, 0x96, 0x62, 0x3D, 0x86, 0x21, 0x7A, 0x3E, 0x8D, 0x77, 0x5F, 0xAA, 0xE8, 0x7E, 0x60, 0xFE, 0xDD, 0xFE, 0x05, 0x4F, 0x01, 0x7E, 0xD5, 0x1E, 0x2C, 0x86, 0x14, 0x99, 0x6D, 0xB5, 0x2B, 0x85, 0xD5, 0x23, 0x2F, 0xFC, 0x66, 0x75, 0x12, 0x48, 0x47, 0xB0, 0x95, 0xA4, 0x03, 0xE9, 0x8A, 0xF1, 0xBA, 0xFB, 0x13, 0xFE, 0x0A, 0xCB, 0xE0, 0x8F, 0x2B, 0xC4, 0x3E, 0x13, 0xF1, 0x2A, 0x06, 0x6F, 0xB4, 0x5B, 0xCB, 0xA6, 0x4C, 0x71, 0xC2, 0x79, 0x6D, 0xE6, 0x46, 0x3F, 0x1F, 0x32, 0x5F, 0xFB, 0xE6, 0xBE, 0x3B, 0xAF, 0xC9, 0x73, 0xDC, 0x37, 0xB0, 0xC7, 0xD5, 0x87, 0x9D, 0xFE, 0x4F, 0x5F, 0xD4, 0xFD, 0xF3, 0x85, 0xF1, 0x9F, 0x5A, 0xCA, 0xA8, 0x55, 0x7B, 0xF2, 0xD9, 0xFA, 0xC7, 0x47, 0xF9, 0x5C, 0x2A, 0x48, 0x66, 0x68, 0x24, 0x57, 0x46, 0x65, 0x75, 0x39, 0x0C, 0x0E, 0x08, 0x35, 0x1D, 0x15, 0xE4, 0x9E, 0xF1, 0xF4, 0x27, 0xC0, 0x8F, 0xF8, 0x28, 0x6F, 0x8D, 0x3E, 0x14, 0xCF, 0x0D, 0xB6, 0xB5, 0x71, 0x27, 0x8B, 0x34, 0x5C, 0xE1, 0xE3, 0xBC, 0x90, 0x9B, 0xB8, 0x87, 0xAA, 0x4C, 0x72, 0xC7, 0xE8, 0xFB, 0x87, 0x18, 0x1B, 0x7A, 0xD7, 0xDD, 0xDF, 0x07, 0xBE, 0x34, 0xF8, 0x77, 0xE3, 0x9F, 0x84, 0x63, 0xD6, 0x7C, 0x3B, 0x7C, 0xB7, 0x50, 0x30, 0x02, 0x68, 0x5C, 0x6D, 0x9E, 0xD2, 0x42, 0x32, 0x63, 0x95, 0x3F, 0x85, 0x87, 0xE2, 0x0E, 0x32, 0xA4, 0x8C, 0x1A, 0xFC, 0x8D, 0xAF, 0x40, 0xFD, 0x9F, 0xBE, 0x3C, 0x6A, 0xDF, 0xB3, 0xD7, 0xC4, 0x4B, 0x5D, 0x73, 0x4D, 0x66, 0x92, 0xDF, 0x21, 0x6F, 0xAC, 0x8C, 0x85, 0x63, 0xBE, 0x87, 0x3C, 0xA1, 0xEB, 0x83, 0xDD, 0x5B, 0x07, 0x6B, 0x60, 0xE0, 0x8C, 0x83, 0xF5, 0x99, 0x27, 0x13, 0xD6, 0xC3, 0x4D, 0x52, 0xC4, 0x37, 0x2A, 0x7E, 0x7A, 0xB5, 0xE9, 0xFE, 0x5F, 0x71, 0xF0, 0x9C, 0x49, 0xC1, 0x38, 0x6C, 0x6D, 0x39, 0x56, 0xC1, 0xC5, 0x42, 0xAA, 0xD7, 0x4D, 0x14, 0xBC, 0x9A, 0xD9, 0x37, 0xDF, 0xBE, 0xFD, 0xD7, 0xEA, 0xE5, 0x15, 0x9B, 0xE0, 0xEF, 0x16, 0xD8, 0xF8, 0xF3, 0xC2, 0xBA, 0x7E, 0xB5, 0xA6, 0xCD, 0xE7, 0xE9, 0xFA, 0xA5, 0xBA, 0x5C, 0xDB, 0xBE, 0x30, 0x4A, 0x30, 0x04, 0x64, 0x76, 0x3D, 0x88, 0x3C, 0x82, 0x08, 0xAD, 0x2A, 0xFD, 0x4A, 0x32, 0x52, 0x4A, 0x51, 0xD9, 0x9F, 0x86, 0x4E, 0x12, 0x84, 0x9C, 0x64, 0xAC, 0xD6, 0x8C, 0x2B, 0xF3, 0xC7, 0xFE, 0x0A, 0x65, 0xF0, 0xD1, 0x7C, 0x19, 0xF1, 0xFD, 0x75, 0x98, 0x22, 0xD9, 0x6B, 0xE2, 0x9B, 0x55, 0xBB, 0x66, 0x03, 0x00, 0xDC, 0x21, 0xD9, 0x2F, 0xE2, 0x40, 0x8D, 0x89, 0xEE, 0x5C, 0x9A, 0xFD, 0x0E, 0xAF, 0x93, 0xFF, 0x00, 0xE0, 0xAC, 0x5E, 0x17, 0x86, 0xEF, 0xE1, 0xAF, 0x85, 0x75, 0xA2, 0xCC, 0x27, 0xB1, 0xD4, 0xE4, 0xB2, 0x51, 0xD8, 0xAC, 0xD1, 0x17, 0x39, 0xFA, 0x18, 0x17, 0xF3, 0x35, 0xF3, 0xFC, 0x55, 0x87, 0x55, 0x72, 0xE9, 0x3E, 0xB1, 0xB3, 0x5F, 0x93, 0xFC, 0x1B, 0x3E, 0xBB, 0x81, 0x71, 0x8E, 0x86, 0x6F, 0x4E, 0x3D, 0x26, 0x9C, 0x5F, 0xDD, 0x75, 0xF8, 0xA4, 0x7C, 0x27, 0x45, 0x14, 0x57, 0xE4, 0x27, 0xF4, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x57, 0xD6, 0x1F, 0xB1, 0x4F, 0xED, 0xE5, 0x27, 0x80, 0x12, 0xCF, 0xC2, 0x3E, 0x34, 0xB9, 0x69, 0xB4, 0x15, 0x0B, 0x0E, 0x9F, 0xA8, 0x3F, 0xCC, 0xFA, 0x68, 0xE0, 0x2C, 0x52, 0x1E, 0xF0, 0x8E, 0xC7, 0xAA, 0x74, 0xE5, 0x70, 0x13, 0xE4, 0xFA, 0x2B, 0xBB, 0x2F, 0xCC, 0x2B, 0x60, 0xEA, 0xAA, 0xD4, 0x5E, 0xBF, 0x83, 0x5D, 0x99, 0xE6, 0xE6, 0xD9, 0x4E, 0x1B, 0x31, 0xC3, 0xBC, 0x3E, 0x25, 0x5D, 0x74, 0x7D, 0x53, 0xEE, 0x9F, 0x7F, 0xCF, 0x66, 0x7E, 0x8D, 0xFF, 0x00, 0xC1, 0x47, 0x74, 0x6B, 0x3F, 0x15, 0xFE, 0xCA, 0x77, 0x3A, 0x92, 0xC9, 0x1C, 0xCB, 0xA6, 0xDD, 0xDA, 0x5F, 0xDA, 0x4B, 0x13, 0x86, 0x49, 0x37, 0xB8, 0x8B, 0x20, 0x8E, 0x0A, 0x94, 0x98, 0x9E, 0x38, 0x3C, 0x1A, 0xFC, 0xE4, 0xAD, 0xA9, 0xBC, 0x7B, 0xAE, 0x5C, 0x78, 0x4E, 0x3D, 0x0E, 0x5D, 0x6B, 0x54, 0x93, 0x45, 0x85, 0xFC, 0xC8, 0xF4, 0xF6, 0xBA, 0x90, 0xDA, 0xA3, 0x72, 0x77, 0x08, 0xF3, 0xB4, 0x1E, 0x4F, 0x6E, 0xE6, 0xB1, 0x6B, 0xAB, 0x3B, 0xCC, 0xE3, 0x8F, 0xAE, 0xAB, 0xC6, 0x3C, 0xBA, 0x24, 0xFA, 0xEA, 0x8E, 0x1E, 0x1B, 0xC9, 0x67, 0x95, 0xE1, 0x5E, 0x16, 0x73, 0xE7, 0xF7, 0x9B, 0x4E, 0xD6, 0xD1, 0xDB, 0x4F, 0xC2, 0xFF, 0x00, 0x30, 0xA2, 0x8A, 0x2B, 0xC7, 0x3E, 0x80, 0x28, 0xA2, 0x8A, 0x00, 0xFB, 0xF7, 0xFE, 0x09, 0x67, 0xF1, 0x06, 0x5F, 0x10, 0x7C, 0x19, 0xD5, 0xBC, 0x3F, 0x33, 0x33, 0x9F, 0x0E, 0x5F, 0xEE, 0x87, 0x9E, 0x12, 0x19, 0xC1, 0x70, 0xBF, 0xF7, 0xF1, 0x65, 0x3F, 0xF0, 0x2A, 0xFA, 0x7E, 0xBE, 0x3C, 0xFF, 0x00, 0x82, 0x49, 0xE9, 0x93, 0x43, 0xA3, 0xF8, 0xEA, 0xF1, 0x83, 0x79, 0x33, 0xCD, 0x65, 0x0A, 0x1E, 0xC5, 0x91, 0x67, 0x2D, 0xFA, 0x48, 0xBF, 0x98, 0xAF, 0xB0, 0xEB, 0xF6, 0x4E, 0x1B, 0xA9, 0x29, 0xE5, 0xB4, 0x9C, 0xB7, 0xB3, 0x5F, 0x24, 0xDA, 0x5F, 0x85, 0x8F, 0xE7, 0x5E, 0x32, 0xA7, 0x0A, 0x79, 0xCD, 0x78, 0xD3, 0xDA, 0xE9, 0xFC, 0xDC, 0x53, 0x7F, 0x8B, 0x61, 0x5F, 0x32, 0x7F, 0xC1, 0x56, 0x08, 0x1F, 0xB3, 0xFE, 0x8B, 0xEB, 0xFF, 0x00, 0x09, 0x04, 0x3F, 0xFA, 0x4D, 0x73, 0x5F, 0x4D, 0xD7, 0xC6, 0x9F, 0xF0, 0x56, 0x6F, 0x1B, 0xFC, 0xBE, 0x10, 0xF0, 0xDC, 0x53, 0x2F, 0xFC, 0xB7, 0xD4, 0xEE, 0x61, 0xFE, 0x21, 0xD2, 0x38, 0x5B, 0xE9, 0xFE, 0xBC, 0x7E, 0x14, 0x71, 0x25, 0x48, 0xC3, 0x2E, 0xAA, 0xE5, 0xD5, 0x25, 0xF7, 0xB4, 0x3E, 0x0D, 0xA3, 0x2A, 0x99, 0xC5, 0x05, 0x1E, 0x8D, 0xBF, 0x92, 0x4D, 0x9F, 0x17, 0x51, 0x45, 0x15, 0xF8, 0xD9, 0xFD, 0x12, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x01, 0xB8, 0xE0, 0x51, 0x5F, 0x5E, 0x7F, 0xC1, 0x3E, 0x7F, 0x63, 0xC9, 0xF5, 0xCD, 0x5A, 0xC7, 0xE2, 0x07, 0x89, 0x20, 0x68, 0x74, 0xEB, 0x37, 0x13, 0xE8, 0xD6, 0x92, 0x29, 0x0D, 0x75, 0x28, 0x39, 0x5B, 0x86, 0x1D, 0xA3, 0x53, 0xCA, 0x7F, 0x79, 0x86, 0x7E, 0xE8, 0x1B, 0xFB, 0xB2, 0xEC, 0xBE, 0xAE, 0x36, 0xBA, 0xA3, 0x49, 0x7A, 0xBE, 0x89, 0x77, 0x7F, 0xD7, 0x91, 0xE5, 0xE7, 0x19, 0xB5, 0x0C, 0xBB, 0x0D, 0x2C, 0x4D, 0x77, 0xB6, 0xCB, 0xAB, 0x7D, 0x12, 0xFE, 0xB4, 0x5A, 0x9F, 0x47, 0x7E, 0xC6, 0xDF, 0x06, 0x24, 0xF8, 0x1D, 0xF0, 0x17, 0x4B, 0xD3, 0x2E, 0xA3, 0x30, 0xEA, 0x97, 0xC5, 0xB5, 0x1D, 0x45, 0x0F, 0x54, 0x9A, 0x40, 0x3E, 0x43, 0xEE, 0x88, 0xA8, 0x87, 0xD4, 0xA1, 0x3D, 0xEB, 0xD4, 0xA8, 0xA2, 0xBF, 0x6C, 0xC3, 0x61, 0xE1, 0x42, 0x94, 0x68, 0xD3, 0xDA, 0x2A, 0xC8, 0xFE, 0x6C, 0xC6, 0x62, 0xAA, 0x62, 0x6B, 0xCF, 0x11, 0x57, 0xE2, 0x93, 0x6D, 0xFC, 0xFF, 0x00, 0xAD, 0x06, 0xCD, 0x32, 0x5B, 0x42, 0xF2, 0x48, 0xEB, 0x1C, 0x71, 0xA9, 0x66, 0x66, 0x38, 0x0A, 0x07, 0x52, 0x4F, 0x61, 0x5F, 0x95, 0xFF, 0x00, 0xB5, 0x67, 0xC6, 0x2F, 0xF8, 0x5E, 0x9F, 0x1C, 0xB5, 0xAD, 0x72, 0x19, 0x19, 0xB4, 0xEF, 0x30, 0x5A, 0xE9, 0xE1, 0x81, 0x18, 0xB6, 0x8F, 0xE5, 0x43, 0x83, 0xC8, 0xDC, 0x72, 0xE4, 0x1E, 0x85, 0xCD, 0x7D, 0x31, 0xFF, 0x00, 0x05, 0x11, 0xFD, 0xAE, 0x60, 0xD2, 0xF4, 0x7B, 0xCF, 0x87, 0xBE, 0x1D, 0xBA, 0xF3, 0x6F, 0xAF, 0x07, 0x97, 0xAD, 0x5C, 0xC4, 0xFF, 0x00, 0x2D, 0xB4, 0x5D, 0xED, 0xC1, 0x1D, 0x5D, 0xBA, 0x3F, 0x60, 0xB9, 0x5E, 0x4B, 0x1D, 0xBF, 0x0E, 0xD7, 0xE7, 0x9C, 0x5F, 0x9B, 0x46, 0xAC, 0xD6, 0x0E, 0x93, 0xBA, 0x8B, 0xBB, 0xF5, 0xED, 0xF2, 0xEB, 0xE7, 0xE8, 0x7E, 0xB9, 0xE1, 0xEE, 0x41, 0x3C, 0x3D, 0x37, 0x98, 0x57, 0x56, 0x73, 0x56, 0x8A, 0xFE, 0xEE, 0xF7, 0xF9, 0xE9, 0x6F, 0x25, 0x7D, 0x98, 0x51, 0x45, 0x15, 0xF1, 0x07, 0xE9, 0x61, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x62, 0x80, 0x0A, 0x29, 0xC2, 0x36, 0x27, 0xEE, 0x9F, 0xCA, 0x97, 0xEC, 0xF2, 0x7F, 0x71, 0xBF, 0x2A, 0x00, 0x65, 0x15, 0x22, 0xDA, 0x48, 0xFD, 0x23, 0x63, 0xF4, 0x14, 0xEF, 0xB0, 0x5C, 0x7F, 0xCF, 0x19, 0x3F, 0xEF, 0x9A, 0x00, 0x86, 0x8A, 0x9B, 0xEC, 0x17, 0x1F, 0xF3, 0xC6, 0x4F, 0xFB, 0xE6, 0x8F, 0xB0, 0x5C, 0x7F, 0xCF, 0x19, 0x3F, 0xEF, 0x9A, 0x00, 0x86, 0xA6, 0xB6, 0xB7, 0x92, 0xF2, 0xE1, 0x23, 0x8D, 0x5E, 0x49, 0x24, 0x60, 0xAA, 0x8A, 0x32, 0xCC, 0x4F, 0x00, 0x01, 0xDC, 0xD7, 0xA9, 0xFC, 0x0B, 0xFD, 0x8F, 0x3C, 0x6D, 0xF1, 0xEA, 0xE2, 0x19, 0x34, 0xFD, 0x3D, 0xF4, 0xFD, 0x1D, 0x88, 0xDF, 0xAA, 0x5F, 0x2B, 0x45, 0x6F, 0x8C, 0x90, 0x76, 0x71, 0xBA, 0x53, 0x95, 0x23, 0x08, 0x08, 0x07, 0x01, 0x8A, 0xF5, 0xAF, 0xB9, 0x7F, 0x67, 0x5F, 0xD8, 0xC7, 0xC2, 0x5F, 0xB3, 0xC4, 0x71, 0x5E, 0x5B, 0xC4, 0x75, 0x8F, 0x10, 0x85, 0xC3, 0xEA, 0x97, 0x68, 0x37, 0xA1, 0x23, 0x0C, 0x21, 0x4E, 0x44, 0x4A, 0x79, 0xE8, 0x4B, 0x61, 0x88, 0x2C, 0x45, 0x7D, 0x06, 0x55, 0xC3, 0xB8, 0xAC, 0x63, 0x52, 0xB7, 0x2C, 0x3B, 0xBF, 0xD1, 0x75, 0xFC, 0xBC, 0xCF, 0x95, 0xCF, 0x78, 0xC3, 0x03, 0x96, 0xA7, 0x0B, 0xF3, 0xD4, 0xFE, 0x55, 0xFA, 0xBD, 0x97, 0xE7, 0xE4, 0x78, 0x5F, 0xEC, 0x91, 0xFF, 0x00, 0x04, 0xEA, 0x92, 0x79, 0xAD, 0x3C, 0x49, 0xF1, 0x0A, 0xD8, 0x47, 0x6E, 0xA0, 0x4D, 0x6D, 0xA1, 0x38, 0xF9, 0xE4, 0x3F, 0xC2, 0xD7, 0x3E, 0x83, 0xBF, 0x95, 0xD4, 0xE4, 0x6E, 0xC6, 0x0A, 0x1F, 0xB4, 0x22, 0x85, 0x61, 0x8D, 0x51, 0x15, 0x51, 0x10, 0x05, 0x55, 0x51, 0x80, 0xA0, 0x76, 0x15, 0x9F, 0xE2, 0x9F, 0x19, 0x69, 0x1E, 0x07, 0xD3, 0x85, 0xDE, 0xB3, 0xAA, 0x69, 0xFA, 0x4D, 0xA9, 0x6D, 0x82, 0x5B, 0xBB, 0x84, 0x85, 0x19, 0xBD, 0x01, 0x62, 0x32, 0x7D, 0xAB, 0xE7, 0xFF, 0x00, 0x8B, 0x7F, 0xF0, 0x53, 0x0F, 0x08, 0x78, 0x32, 0x39, 0x20, 0xF0, 0xDD, 0x9D, 0xF7, 0x8A, 0x2F, 0x86, 0x40, 0x90, 0x23, 0x5A, 0xDA, 0x29, 0xE4, 0x72, 0xEE, 0x37, 0xB6, 0x0F, 0xF7, 0x53, 0x04, 0x7F, 0x15, 0x7E, 0x85, 0x42, 0x39, 0x76, 0x51, 0x47, 0x91, 0xC9, 0x47, 0xBD, 0xFE, 0x27, 0xF2, 0xDF, 0xFC, 0x8F, 0xC8, 0xF1, 0x33, 0xCD, 0xF8, 0x83, 0x11, 0xED, 0x14, 0x1C, 0xBA, 0x2B, 0x2B, 0x46, 0x3F, 0x37, 0xA2, 0xF5, 0x6E, 0xEF, 0xA9, 0xF4, 0x75, 0xDD, 0xDC, 0x56, 0x16, 0xB2, 0x5C, 0x4D, 0x2C, 0x70, 0xC3, 0x0A, 0x97, 0x92, 0x49, 0x18, 0x2A, 0xA2, 0x81, 0x92, 0x49, 0x3C, 0x00, 0x3D, 0x6B, 0xE4, 0x5F, 0xDA, 0xC3, 0xFE, 0x0A, 0x33, 0x6F, 0x63, 0x6B, 0x71, 0xE1, 0xFF, 0x00, 0x87, 0x97, 0x1F, 0x68, 0xBB, 0x62, 0x62, 0xB9, 0xD6, 0xC0, 0xCC, 0x50, 0xAE, 0x30, 0x45, 0xBE, 0x7E, 0xF3, 0x67, 0xFE, 0x5A, 0x1F, 0x94, 0x63, 0xE5, 0xDD, 0x90, 0xCB, 0xF3, 0x9F, 0xC7, 0x2F, 0xDA, 0xB7, 0xC7, 0x1F, 0x1F, 0xA5, 0x68, 0xF5, 0x8D, 0x41, 0xAD, 0xF4, 0xBD, 0xD9, 0x4D, 0x32, 0xCF, 0x30, 0xDA, 0x0F, 0xBA, 0x46, 0xE5, 0xC9, 0x32, 0x10, 0x54, 0x10, 0x5C, 0xB6, 0x0E, 0x71, 0x8C, 0xE2, 0xBC, 0xBC, 0xC6, 0xC0, 0xFD, 0xD3, 0xF9, 0x57, 0xCA, 0x67, 0x1C, 0x5D, 0x3A, 0xA9, 0xD2, 0xC1, 0xAE, 0x55, 0xFC, 0xCF, 0x7F, 0x97, 0x6F, 0xCF, 0xD0, 0xFB, 0xCE, 0x1F, 0xF0, 0xFE, 0x9D, 0x09, 0x2A, 0xF9, 0x8B, 0x53, 0x92, 0xDA, 0x2B, 0xE1, 0x5E, 0xBD, 0xFD, 0x36, 0xF5, 0x26, 0xB8, 0xB9, 0x92, 0xF6, 0xE1, 0xA5, 0x99, 0x9E, 0x49, 0x64, 0x62, 0xEE, 0xCE, 0x72, 0xCC, 0x4F, 0x24, 0x92, 0x7A, 0x93, 0x55, 0xE8, 0xC5, 0x15, 0xF1, 0x07, 0xE9, 0x41, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x5D, 0xD7, 0xC0, 0xBF, 0x84, 0xD1, 0xFC, 0x59, 0xF1, 0x4C, 0x76, 0x12, 0x5D, 0xC5, 0x68, 0xAE, 0x71, 0xB9, 0xCE, 0x05, 0x70, 0xB5, 0x73, 0x48, 0xD6, 0xEE, 0xB4, 0x2B, 0x91, 0x35, 0xAC, 0xD2, 0x43, 0x20, 0xE8, 0x54, 0xE2, 0x80, 0x3E, 0xFC, 0xF8, 0x6F, 0xFF, 0x00, 0x04, 0x93, 0xD0, 0xF5, 0xF8, 0x62, 0x92, 0xE3, 0xC4, 0x76, 0x67, 0x70, 0x19, 0x02, 0x41, 0x5E, 0xB7, 0xE1, 0x7F, 0xF8, 0x23, 0x0F, 0x83, 0x01, 0x0D, 0x3E, 0xAF, 0x04, 0x8A, 0x7A, 0x61, 0xC5, 0x7E, 0x6E, 0x68, 0x9F, 0xB4, 0xD7, 0x8C, 0xB4, 0x11, 0x88, 0x35, 0xAB, 0xC5, 0x0B, 0xD3, 0xF7, 0x86, 0xBA, 0xAD, 0x37, 0xF6, 0xF4, 0xF8, 0x87, 0xA7, 0x04, 0x0B, 0xAD, 0xDD, 0x1D, 0x9D, 0x3E, 0x73, 0x40, 0x1F, 0xA5, 0x3A, 0x2F, 0xFC, 0x11, 0x87, 0xC0, 0x56, 0xD7, 0x01, 0xE4, 0xBB, 0x89, 0xD3, 0xD3, 0x70, 0xAE, 0x92, 0x2F, 0xF8, 0x23, 0xAF, 0xC3, 0x89, 0x17, 0xFE, 0x59, 0x37, 0xD0, 0x8A, 0xFC, 0xD4, 0x83, 0xFE, 0x0A, 0x6B, 0xF1, 0x2A, 0x18, 0x95, 0x7F, 0xB5, 0xA6, 0x20, 0x0C, 0x7D, 0xE3, 0x5B, 0x9A, 0x2F, 0xFC, 0x15, 0x8B, 0xE2, 0x3E, 0x95, 0x0E, 0xC3, 0x7F, 0x23, 0xFB, 0x96, 0x34, 0x01, 0xFA, 0x4B, 0xA0, 0xFF, 0x00, 0xC1, 0x23, 0x3E, 0x1B, 0x69, 0x44, 0xEF, 0x86, 0x39, 0x3E, 0xB8, 0xAD, 0x51, 0xFF, 0x00, 0x04, 0xA8, 0xF8, 0x62, 0x5B, 0xFE, 0x3C, 0xE0, 0xFD, 0x2B, 0xF3, 0x57, 0xFE, 0x1E, 0xF5, 0xF1, 0x1F, 0xFE, 0x7F, 0x9B, 0xF3, 0x35, 0x2D, 0x8F, 0xFC, 0x16, 0x07, 0xE2, 0x2D, 0xBD, 0xC2, 0xBB, 0xDD, 0xB3, 0x80, 0x7A, 0x64, 0xD0, 0x07, 0xE9, 0x4A, 0xFF, 0x00, 0xC1, 0x28, 0x7E, 0x1A, 0x37, 0xFC, 0xB8, 0xC5, 0xF9, 0x0A, 0x13, 0xFE, 0x09, 0x57, 0xF0, 0xFA, 0xC6, 0x68, 0xE6, 0xB3, 0xB4, 0xB1, 0x8E, 0x78, 0xDB, 0x70, 0x69, 0xED, 0x96, 0x74, 0xFF, 0x00, 0xBE, 0x49, 0x03, 0x35, 0xF9, 0xEF, 0x17, 0xFC, 0x16, 0xB7, 0xC7, 0x51, 0xA0, 0x19, 0xCE, 0x29, 0xDF, 0xF0, 0xFB, 0x0F, 0x1D, 0x56, 0x94, 0xAA, 0x4A, 0x9C, 0xD5, 0x48, 0x6E, 0xB5, 0x5D, 0x7F, 0x07, 0xA1, 0x95, 0x7A, 0x30, 0xAD, 0x4D, 0xD2, 0xA9, 0xB3, 0xD1, 0xD9, 0xB5, 0xF8, 0xA6, 0x9A, 0xF9, 0x33, 0xF4, 0xE2, 0xCF, 0xF6, 0x2F, 0xB5, 0x89, 0x71, 0x36, 0xB7, 0x33, 0xE3, 0x80, 0x23, 0x89, 0x63, 0x03, 0xF3, 0xCD, 0x17, 0xFF, 0x00, 0xB1, 0x36, 0x95, 0x7F, 0x19, 0x59, 0x35, 0x8D, 0x45, 0x14, 0xFF, 0x00, 0xCF, 0x39, 0xBC, 0xB3, 0xF9, 0xAE, 0x0D, 0x7E, 0x63, 0xFF, 0x00, 0xC3, 0xEC, 0x3C, 0x75, 0x4D, 0x97, 0xFE, 0x0B, 0x5B, 0xE3, 0xA9, 0x10, 0x8C, 0xE3, 0x35, 0xE8, 0xD7, 0xCF, 0x31, 0xF5, 0xB4, 0x9D, 0x59, 0x7C, 0x9D, 0xBF, 0x05, 0x63, 0xC8, 0xC2, 0xF0, 0xD6, 0x57, 0x87, 0xD6, 0x95, 0x08, 0xDF, 0xBB, 0x57, 0x7F, 0x7B, 0xB9, 0xFA, 0x19, 0xA8, 0xFF, 0x00, 0xC1, 0x2E, 0xBE, 0x1D, 0x6A, 0xD7, 0x8F, 0x71, 0x75, 0x1F, 0xDA, 0xAE, 0x24, 0x39, 0x79, 0x66, 0x7D, 0xEE, 0xE7, 0xD4, 0x93, 0xC9, 0xAC, 0x2D, 0x7B, 0xFE, 0x09, 0x19, 0xF0, 0xDB, 0x55, 0x23, 0x64, 0x31, 0xC7, 0xF4, 0xC5, 0x7E, 0x77, 0xDF, 0x7F, 0xC1, 0x60, 0x7E, 0x22, 0xDC, 0x5C, 0x33, 0xA5, 0xDB, 0x20, 0x27, 0xA6, 0x4D, 0x45, 0xFF, 0x00, 0x0F, 0x7A, 0xF8, 0x8F, 0xFF, 0x00, 0x3F, 0xCD, 0xF9, 0x9A, 0xF2, 0xDB, 0x6D, 0xDD, 0x9E, 0xDC, 0x52, 0x4A, 0xCB, 0x63, 0xEF, 0xF9, 0x7F, 0xE0, 0x8E, 0xBF, 0x0E, 0x23, 0x5F, 0xF9, 0x64, 0xBF, 0x52, 0x2B, 0x9B, 0xD6, 0xBF, 0xE0, 0x8C, 0x3E, 0x02, 0xB9, 0xB8, 0x2F, 0x1D, 0xDC, 0x48, 0x9E, 0x9B, 0x85, 0x7C, 0x29, 0xAD, 0x7F, 0xC1, 0x58, 0xBE, 0x23, 0xEA, 0xB0, 0xEC, 0x17, 0xF2, 0x27, 0xB8, 0x63, 0x58, 0x73, 0xFF, 0x00, 0xC1, 0x4D, 0x7E, 0x25, 0x4D, 0x13, 0x2F, 0xF6, 0xB4, 0xC0, 0x11, 0x8F, 0xBC, 0x69, 0x0C, 0xFB, 0x5F, 0xC5, 0x1F, 0xF0, 0x46, 0x1F, 0x06, 0x12, 0x5A, 0x0D, 0x5E, 0x08, 0xD4, 0x75, 0xCB, 0x8A, 0xF2, 0x4F, 0x89, 0x1F, 0xF0, 0x49, 0x3D, 0x0F, 0x40, 0x86, 0x59, 0x2D, 0xFC, 0x47, 0x66, 0x36, 0x83, 0x80, 0x64, 0x15, 0xF3, 0x0E, 0xA5, 0xFB, 0x7A, 0x7C, 0x43, 0xD4, 0x43, 0x86, 0xD6, 0xEE, 0x86, 0xFE, 0xBF, 0x39, 0xAE, 0x57, 0x5B, 0xFD, 0xA6, 0xBC, 0x65, 0xAF, 0x0C, 0x4F, 0xAD, 0x5E, 0x30, 0x6E, 0xBF, 0xBC, 0x34, 0x01, 0x0F, 0xC7, 0x4F, 0x84, 0xD1, 0xFC, 0x26, 0xF1, 0x4C, 0x96, 0x11, 0xDD, 0xC5, 0x76, 0xA8, 0x71, 0xB9, 0x0E, 0x45, 0x70, 0xB5, 0x73, 0x57, 0xD6, 0xEE, 0xB5, 0xDB, 0x93, 0x35, 0xD4, 0xD2, 0x4D, 0x21, 0xEA, 0x58, 0xE6, 0xA9, 0xD0, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD9, } ; const char about_jpg[] PROGMEM = { 0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60, 0x00, 0x60, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03, 0x05, 0x03, 0x03, 0x03, 0x03, 0x03, 0x06, 0x04, 0x04, 0x03, 0x05, 0x07, 0x06, 0x07, 0x07, 0x07, 0x06, 0x07, 0x07, 0x08, 0x09, 0x0B, 0x09, 0x08, 0x08, 0x0A, 0x08, 0x07, 0x07, 0x0A, 0x0D, 0x0A, 0x0A, 0x0B, 0x0C, 0x0C, 0x0C, 0x0C, 0x07, 0x09, 0x0E, 0x0F, 0x0D, 0x0C, 0x0E, 0x0B, 0x0C, 0x0C, 0x0C, 0xFF, 0xDB, 0x00, 0x43, 0x01, 0x02, 0x02, 0x02, 0x03, 0x03, 0x03, 0x06, 0x03, 0x03, 0x06, 0x0C, 0x08, 0x07, 0x08, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0xFF, 0xC0, 0x00, 0x11, 0x08, 0x00, 0xB5, 0x01, 0x40, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, 0xFF, 0xC4, 0x00, 0x1F, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00, 0x00, 0x01, 0x7D, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xA1, 0x08, 0x23, 0x42, 0xB1, 0xC1, 0x15, 0x52, 0xD1, 0xF0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0A, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xC4, 0x00, 0x1F, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xA1, 0xB1, 0xC1, 0x09, 0x23, 0x33, 0x52, 0xF0, 0x15, 0x62, 0x72, 0xD1, 0x0A, 0x16, 0x24, 0x34, 0xE1, 0x25, 0xF1, 0x17, 0x18, 0x19, 0x1A, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xDA, 0x00, 0x0C, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, 0x3F, 0x00, 0xFE, 0x7F, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA9, 0x0F, 0x5E, 0xF4, 0xD2, 0x39, 0xEE, 0x45, 0x3B, 0x00, 0xDA, 0x2B, 0x5F, 0xC3, 0x7E, 0x12, 0xD5, 0x3C, 0x63, 0xAA, 0xAD, 0x8E, 0x91, 0xA7, 0xDF, 0x6A, 0x77, 0x92, 0x7D, 0xD8, 0x6D, 0x60, 0x69, 0xA4, 0x6F, 0xA2, 0xA8, 0x26, 0xBD, 0x53, 0xC2, 0x7F, 0xB0, 0xA7, 0x8F, 0xFC, 0x4A, 0xD1, 0xB5, 0xD5, 0xA5, 0x86, 0x89, 0x0C, 0x83, 0x22, 0x4B, 0xEB, 0xB5, 0x04, 0x7D, 0x52, 0x3D, 0xEE, 0xBF, 0x42, 0xA2, 0xBD, 0x5C, 0xBF, 0x22, 0xCC, 0x31, 0xCE, 0xD8, 0x4A, 0x32, 0x9F, 0xA4, 0x5B, 0x4B, 0xD5, 0xF4, 0x3C, 0xFC, 0x76, 0x6D, 0x82, 0xC1, 0xAB, 0xE2, 0xAA, 0xC6, 0x1F, 0xE2, 0x69, 0x7E, 0x67, 0x8A, 0x51, 0x5F, 0x51, 0x68, 0xDF, 0xF0, 0x4E, 0x1B, 0x86, 0x65, 0x1A, 0xA7, 0x8B, 0x6C, 0xED, 0xC6, 0x46, 0xEF, 0xB3, 0x59, 0x34, 0xF8, 0xE7, 0x9C, 0x6F, 0x68, 0xFB, 0x7D, 0x33, 0xED, 0xD6, 0xB4, 0x47, 0xFC, 0x13, 0x7B, 0x4B, 0xF2, 0x33, 0xFF, 0x00, 0x09, 0xC5, 0xD1, 0x97, 0x07, 0xA6, 0x8E, 0xBB, 0x73, 0xCE, 0x3F, 0xE5, 0xBE, 0x7D, 0x33, 0x5F, 0x51, 0x4F, 0xC3, 0x1E, 0x24, 0x9C, 0x79, 0xA3, 0x87, 0xFB, 0xE5, 0x14, 0xFE, 0xE7, 0x23, 0xE7, 0x6A, 0x78, 0x81, 0x90, 0x42, 0x5C, 0xB2, 0xC4, 0x7D, 0xD1, 0x93, 0x5F, 0x7A, 0x8B, 0x3E, 0x4C, 0xA2, 0xBE, 0xA6, 0xD5, 0xBF, 0xE0, 0x9B, 0x4F, 0x1A, 0x7F, 0xA0, 0x78, 0xCA, 0x2B, 0x86, 0xE3, 0x89, 0xF4, 0xE3, 0x08, 0xE8, 0x3F, 0xBB, 0x23, 0xF7, 0xCF, 0xE0, 0x01, 0xEF, 0x81, 0xC6, 0xF8, 0xAF, 0xF6, 0x05, 0xF1, 0xD6, 0x84, 0x37, 0x58, 0x8D, 0x23, 0x5B, 0x40, 0xBB, 0x8F, 0xD9, 0x2E, 0xF6, 0x30, 0xFC, 0x25, 0x08, 0x49, 0xF6, 0x19, 0xF6, 0xCD, 0x71, 0xE3, 0x3C, 0x3F, 0xE2, 0x0C, 0x32, 0xBD, 0x4C, 0x2C, 0xBE, 0x56, 0x97, 0xFE, 0x92, 0xD9, 0xD5, 0x85, 0xE3, 0x6C, 0x8F, 0x10, 0xED, 0x4F, 0x13, 0x1F, 0x9D, 0xE3, 0xFF, 0x00, 0xA5, 0x58, 0xF0, 0xBA, 0x2B, 0xA0, 0xF1, 0x77, 0xC3, 0xDD, 0x6F, 0xC0, 0x1A, 0x8A, 0xDA, 0xEB, 0x7A, 0x4E, 0xA1, 0xA5, 0xDC, 0x38, 0xDC, 0xA9, 0x75, 0x03, 0x46, 0x5C, 0x7A, 0x8C, 0x8E, 0x47, 0xB8, 0xC8, 0x35, 0x86, 0x41, 0x2B, 0x83, 0x5F, 0x27, 0x5B, 0x0F, 0x52, 0x94, 0xB9, 0x2A, 0xC5, 0xC5, 0xAD, 0xD3, 0x56, 0xB1, 0xF4, 0xD4, 0xEA, 0x42, 0x71, 0xE6, 0x83, 0xBA, 0x7B, 0x35, 0xA9, 0x1D, 0x14, 0xF3, 0xD0, 0xD2, 0x77, 0xFF, 0x00, 0x3C, 0x56, 0x76, 0x28, 0x6D, 0x14, 0x51, 0x52, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x48, 0x48, 0x02, 0xBD, 0x8B, 0xF6, 0x6D, 0xFD, 0x94, 0x35, 0x3F, 0x8D, 0xB7, 0x11, 0xEA, 0x57, 0xFE, 0x76, 0x95, 0xE1, 0x88, 0xD8, 0xEE, 0xBA, 0xDB, 0xFB, 0xCB, 0xB2, 0x0E, 0x0A, 0x42, 0x0F, 0x04, 0xE4, 0x10, 0x5C, 0xFC, 0xAB, 0xCF, 0xDE, 0x23, 0x61, 0xF4, 0xB2, 0xBC, 0xA7, 0x17, 0x98, 0xE2, 0x23, 0x85, 0xC1, 0xC1, 0xCA, 0x72, 0xE8, 0xBF, 0x37, 0xD9, 0x77, 0x6F, 0x43, 0x8B, 0x30, 0xCC, 0x70, 0xD8, 0x1A, 0x12, 0xC4, 0xE2, 0xE4, 0xA3, 0x08, 0xEE, 0xDF, 0xE4, 0xBB, 0xBF, 0x24, 0x70, 0x3F, 0x0F, 0x7E, 0x16, 0xEB, 0xDF, 0x15, 0xF5, 0xBF, 0xEC, 0xFD, 0x07, 0x4F, 0x9F, 0x50, 0xB8, 0x03, 0x7B, 0xED, 0xC2, 0xC7, 0x0A, 0xFF, 0x00, 0x79, 0xDC, 0xE1, 0x51, 0x7B, 0x65, 0x88, 0x19, 0xC0, 0xEA, 0x40, 0xAF, 0xAB, 0x3E, 0x09, 0xFF, 0x00, 0xC1, 0x3B, 0xB4, 0xCB, 0x6B, 0xCB, 0x7F, 0xED, 0xEF, 0xB4, 0x78, 0xA3, 0x56, 0x94, 0xE5, 0x34, 0xFB, 0x20, 0xEB, 0x6E, 0x0F, 0xA1, 0x2A, 0x04, 0x8F, 0x8F, 0x51, 0xB0, 0x7B, 0x11, 0xCD, 0x7D, 0x7F, 0xFB, 0x1A, 0xFE, 0xC0, 0xB7, 0xDF, 0x11, 0xA2, 0xB4, 0xD2, 0x7C, 0x39, 0xA5, 0xAE, 0x87, 0xE1, 0xD5, 0xC4, 0xAF, 0x28, 0x5C, 0x34, 0xE3, 0xA1, 0x95, 0x9D, 0xB2, 0x4F, 0xA7, 0x98, 0xF9, 0xEC, 0xA8, 0x1B, 0x1B, 0x47, 0xE8, 0xBF, 0xC2, 0xCF, 0x80, 0x7E, 0x05, 0xFD, 0x90, 0xB4, 0x38, 0xD3, 0x4D, 0xB1, 0x86, 0xFB, 0xC4, 0x12, 0x20, 0x66, 0xB8, 0x65, 0xCC, 0xCC, 0x7F, 0xBD, 0x93, 0x92, 0x8B, 0xE8, 0x4E, 0x5B, 0x93, 0x8E, 0x38, 0x1F, 0xB5, 0x60, 0x78, 0x47, 0x26, 0xC8, 0x54, 0x5E, 0x3D, 0x7D, 0x67, 0x13, 0xFC, 0xAB, 0xE0, 0x8B, 0xF3, 0xEF, 0xF3, 0xD3, 0xC8, 0xFC, 0x9B, 0x19, 0xC5, 0x19, 0xAE, 0x72, 0xDA, 0xC0, 0xBF, 0xAB, 0xE1, 0xFF, 0x00, 0x99, 0xFC, 0x72, 0x5F, 0xA7, 0xCB, 0x5F, 0x33, 0xE3, 0x3F, 0xD9, 0xF3, 0xFE, 0x09, 0x33, 0xE2, 0xED, 0x63, 0x41, 0x89, 0xF5, 0x35, 0xD1, 0xFE, 0x1B, 0xF8, 0x6D, 0x40, 0x90, 0xC2, 0xD0, 0x2F, 0x9D, 0x8E, 0x3E, 0x6F, 0x25, 0x0A, 0xA8, 0x27, 0xFB, 0xCE, 0xC0, 0x9E, 0xBC, 0xD7, 0xBA, 0x78, 0x6B, 0xF6, 0x1C, 0xF8, 0x2F, 0xF0, 0xDD, 0x15, 0x66, 0xD3, 0xF5, 0xAF, 0x1E, 0x5F, 0xC7, 0xF7, 0xA5, 0xD4, 0x2F, 0x5E, 0xDE, 0xD4, 0x37, 0xB2, 0x43, 0xB3, 0x23, 0xD9, 0xB7, 0x8F, 0x7A, 0xF5, 0x3F, 0x13, 0x78, 0xB2, 0xFB, 0xC5, 0x97, 0x1B, 0xAF, 0x26, 0x3E, 0x5A, 0x9C, 0xA4, 0x49, 0xC4, 0x71, 0xFD, 0x07, 0x73, 0xEE, 0x72, 0x7D, 0xEB, 0x25, 0xE3, 0x3F, 0xE0, 0x6B, 0xD9, 0xAD, 0x9D, 0x63, 0xEA, 0xC7, 0x91, 0x4B, 0xD9, 0xC5, 0x6D, 0x18, 0x7B, 0xA9, 0x7C, 0xD6, 0xBF, 0x89, 0xE6, 0xD1, 0xC9, 0xF0, 0x54, 0xDF, 0x34, 0xA3, 0xED, 0x24, 0xF7, 0x94, 0xDF, 0x33, 0x7F, 0x7E, 0x85, 0x1B, 0x2F, 0x0A, 0xF8, 0x6F, 0x41, 0x00, 0x68, 0xFE, 0x0D, 0xF0, 0x4E, 0x8A, 0xAB, 0xC6, 0xEB, 0x5D, 0x12, 0xDB, 0xCE, 0x23, 0xDE, 0x57, 0x46, 0x72, 0x7D, 0xF3, 0x4F, 0xBB, 0x8D, 0x6E, 0xD3, 0x6C, 0xAA, 0xB2, 0x47, 0xFD, 0xC2, 0x83, 0x68, 0xFC, 0x3A, 0x54, 0xEC, 0xDB, 0x6A, 0x29, 0x2E, 0x23, 0x03, 0x77, 0x98, 0x9B, 0x7A, 0x1E, 0x7A, 0x1A, 0xF3, 0xA5, 0x52, 0x5B, 0xCA, 0x5F, 0x3B, 0xB3, 0xD3, 0x8D, 0x18, 0x2D, 0x23, 0x15, 0x6F, 0x4F, 0xF2, 0x39, 0xBD, 0x67, 0xE1, 0x5F, 0x85, 0xF5, 0xE0, 0x56, 0xFB, 0xC3, 0x7A, 0x05, 0xD6, 0xEF, 0xE2, 0x93, 0x4F, 0x85, 0x9B, 0xF0, 0x6D, 0xB9, 0x1F, 0x81, 0xAF, 0x3D, 0xF1, 0x9F, 0xEC, 0x43, 0xE0, 0x4F, 0x13, 0x46, 0xCD, 0x67, 0x6B, 0x7D, 0xA0, 0xDC, 0x37, 0x3B, 0xEC, 0x6E, 0x4B, 0x21, 0x3D, 0xB2, 0x92, 0xEF, 0x18, 0xF6, 0x5D, 0xBF, 0x51, 0x5E, 0xC6, 0xEB, 0xB8, 0x71, 0xF5, 0x06, 0x99, 0x5D, 0x58, 0x7C, 0xD3, 0x17, 0x45, 0xDE, 0x95, 0x46, 0xBE, 0x6C, 0xCE, 0xB6, 0x5B, 0x85, 0xAC, 0xAD, 0x56, 0x9A, 0x6B, 0xD1, 0x1F, 0x15, 0xFC, 0x5C, 0xFD, 0x85, 0xBC, 0x4F, 0xE1, 0xCD, 0x3A, 0x75, 0xB2, 0x82, 0xCF, 0xC6, 0xBA, 0x33, 0x0C, 0xC9, 0x6F, 0x1C, 0x03, 0xCF, 0x65, 0xEA, 0x77, 0x5A, 0xC8, 0x59, 0x64, 0x1D, 0xB0, 0x8C, 0xEC, 0x7F, 0xB9, 0x5F, 0x18, 0xFC, 0x54, 0xFD, 0x85, 0x7C, 0x27, 0xE3, 0x3F, 0xB5, 0x36, 0x8B, 0xE6, 0xF8, 0x5F, 0x56, 0x85, 0xCC, 0x6F, 0x0E, 0x19, 0xAD, 0x96, 0x51, 0x9C, 0xAC, 0xB0, 0xB7, 0xEF, 0x22, 0x6C, 0xE0, 0x1D, 0xA4, 0x6D, 0x03, 0xFD, 0x59, 0x3C, 0x57, 0xEC, 0xE4, 0x83, 0x03, 0xFD, 0xDA, 0xF3, 0xCF, 0x8E, 0x1F, 0xB3, 0x67, 0x86, 0x7E, 0x3C, 0x5A, 0x79, 0x9A, 0x84, 0x2D, 0xA7, 0xEB, 0x91, 0xC7, 0xB2, 0xDB, 0x59, 0xB3, 0x01, 0x6E, 0xE1, 0xC7, 0x45, 0x7E, 0xD3, 0x46, 0x3F, 0xE7, 0x9B, 0xE4, 0x63, 0x3B, 0x4A, 0x93, 0xBA, 0xBD, 0x1A, 0xD9, 0x8E, 0x0B, 0x32, 0x8F, 0xB1, 0xCE, 0xE8, 0x46, 0x6B, 0xA4, 0xD2, 0xB4, 0x97, 0xCD, 0x7F, 0x5D, 0xCF, 0x3E, 0x9E, 0x55, 0x8A, 0xC0, 0x4B, 0xDB, 0x64, 0xF5, 0x9D, 0x37, 0xFC, 0xAD, 0xDE, 0x2F, 0xE4, 0xCF, 0xE7, 0xFB, 0xE2, 0xC7, 0xC0, 0xEF, 0x12, 0x7C, 0x16, 0xD5, 0x16, 0xDF, 0x5C, 0xD3, 0xDA, 0x38, 0x67, 0x24, 0x41, 0x75, 0x19, 0xF3, 0x2D, 0xEE, 0x31, 0xD7, 0x6B, 0x8E, 0x33, 0xD0, 0x95, 0x38, 0x60, 0x08, 0xC8, 0x19, 0xAE, 0x2F, 0xA0, 0x18, 0xFC, 0xEB, 0xF5, 0x63, 0xE3, 0xD7, 0xC1, 0x2D, 0x43, 0xE1, 0x5E, 0xA3, 0x27, 0x86, 0xFC, 0x75, 0xA7, 0x59, 0x5F, 0x69, 0x1A, 0xB6, 0x52, 0xD2, 0xFF, 0x00, 0xCB, 0xDD, 0xA7, 0xEA, 0x80, 0x73, 0xDF, 0x98, 0xA6, 0x5E, 0xBB, 0x49, 0xDC, 0xA7, 0x95, 0x38, 0x2A, 0xC7, 0xE2, 0x9F, 0xDA, 0x6F, 0xF6, 0x37, 0xBA, 0xF8, 0x6A, 0xD3, 0xEB, 0xBE, 0x19, 0x59, 0x6F, 0xBC, 0x3D, 0xCB, 0xCF, 0x6E, 0x72, 0xF3, 0xE9, 0x9D, 0xCE, 0x7F, 0xBF, 0x10, 0xEC, 0xFD, 0x57, 0xA3, 0x74, 0x0E, 0xDF, 0x9B, 0x71, 0x77, 0x86, 0xB5, 0x30, 0x34, 0x7F, 0xB4, 0x32, 0xA9, 0x7B, 0x6A, 0x1B, 0xBF, 0xE6, 0x8A, 0xF3, 0xB6, 0xEB, 0xCC, 0xFB, 0x7E, 0x1C, 0xE3, 0xA8, 0x62, 0x6A, 0xAC, 0x06, 0x67, 0x1F, 0x65, 0x5B, 0xA7, 0xF2, 0xCB, 0xD1, 0xF4, 0x7E, 0x4F, 0xE4, 0x7C, 0xF7, 0x45, 0x49, 0xD0, 0x9E, 0xD4, 0x84, 0x6D, 0x18, 0x35, 0xF9, 0x55, 0x8F, 0xD0, 0x86, 0x51, 0x45, 0x14, 0x80, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA7, 0xF7, 0xE9, 0x5D, 0x87, 0xC1, 0x7F, 0x85, 0x77, 0xDF, 0x19, 0xBC, 0x7F, 0x63, 0xA0, 0xD9, 0xFE, 0xE9, 0x66, 0x26, 0x5B, 0x89, 0xF6, 0xEE, 0x16, 0xB0, 0xAF, 0x2F, 0x21, 0x19, 0x1D, 0x07, 0x00, 0x64, 0x6E, 0x62, 0xAB, 0x9C, 0x91, 0x5D, 0x18, 0x5C, 0x25, 0x5C, 0x45, 0x68, 0xE1, 0xE8, 0xAB, 0xCA, 0x4D, 0x24, 0xBB, 0xB6, 0x65, 0x5E, 0xBD, 0x3A, 0x34, 0xA5, 0x5A, 0xAB, 0xB4, 0x62, 0x9B, 0x6F, 0xB2, 0x5B, 0x9D, 0xCF, 0xEC, 0x9B, 0xFB, 0x33, 0x3F, 0xC6, 0x8D, 0x61, 0xB5, 0x4D, 0x59, 0x26, 0x8B, 0xC3, 0x3A, 0x7B, 0xED, 0x99, 0x95, 0xB6, 0x35, 0xEC, 0xB8, 0x04, 0x42, 0x87, 0xB6, 0x01, 0x05, 0xC8, 0xE4, 0x29, 0x03, 0x82, 0xCA, 0x6B, 0xF5, 0x67, 0xF6, 0x2F, 0xFD, 0x8D, 0x25, 0xF8, 0x9F, 0xA9, 0x69, 0x8D, 0x3D, 0x8C, 0x36, 0xDA, 0x44, 0x51, 0xA9, 0xB3, 0xB2, 0xF2, 0xF6, 0xC0, 0x90, 0x2E, 0x00, 0x96, 0x45, 0x1D, 0x22, 0x1C, 0x6D, 0x4E, 0xB2, 0x1C, 0x7F, 0x09, 0xF9, 0xB8, 0x2F, 0xD9, 0x1F, 0xF6, 0x73, 0xB2, 0xD6, 0x4D, 0x8D, 0x9D, 0xB5, 0x8B, 0x2F, 0x86, 0x7C, 0x3F, 0xB2, 0xDA, 0x1B, 0x6C, 0x6E, 0x6B, 0xC9, 0x49, 0xC8, 0x8C, 0x9C, 0x0D, 0xC5, 0x98, 0xEF, 0x90, 0xF7, 0x2F, 0xD0, 0x6F, 0xC8, 0xFD, 0x22, 0xF0, 0xD7, 0xD9, 0x3E, 0x04, 0x7C, 0x3F, 0xE4, 0x43, 0x26, 0xA9, 0x77, 0x83, 0x26, 0x3F, 0xE5, 0xAC, 0xB8, 0xE1, 0x07, 0xFD, 0x33, 0x41, 0x9E, 0x9E, 0xE7, 0x82, 0xD5, 0xFD, 0x25, 0x83, 0xCB, 0xA8, 0xF0, 0xBE, 0x03, 0xEA, 0x78, 0x6F, 0x7B, 0x13, 0x51, 0x2E, 0x79, 0x76, 0xBF, 0xD9, 0x5E, 0x48, 0xFC, 0x17, 0x15, 0x8E, 0xA9, 0xC4, 0x78, 0xEF, 0xAD, 0x57, 0x6E, 0x38, 0x7A, 0x6D, 0xF2, 0x47, 0x6B, 0xDB, 0xED, 0x3F, 0x37, 0xF8, 0x6C, 0x8E, 0xA1, 0xAF, 0x34, 0x7F, 0x81, 0x3E, 0x14, 0x87, 0x45, 0xD1, 0x23, 0x8F, 0xED, 0x92, 0x28, 0x67, 0x77, 0x00, 0xB3, 0x1C, 0x63, 0xCD, 0x93, 0xD4, 0xFF, 0x00, 0x75, 0x7A, 0x01, 0xEC, 0x30, 0x78, 0x2B, 0xAD, 0x4F, 0xED, 0xB7, 0x12, 0x4D, 0x34, 0x8D, 0x34, 0xD2, 0x36, 0xE7, 0x76, 0x39, 0x66, 0x3E, 0xA6, 0xB9, 0x6B, 0xCF, 0x15, 0x4D, 0xA8, 0xDE, 0x49, 0x71, 0x3C, 0xAD, 0x2C, 0xD3, 0x31, 0x67, 0x72, 0x7A, 0x9A, 0x8C, 0xEB, 0x98, 0xFE, 0x23, 0xF9, 0xD7, 0x97, 0x47, 0x07, 0xCB, 0x79, 0xC9, 0xDE, 0x4F, 0x56, 0xFB, 0x9E, 0x9D, 0x4C, 0x42, 0x93, 0x51, 0x8E, 0x89, 0x6C, 0x74, 0xE6, 0xEE, 0x31, 0xDF, 0xF0, 0xA4, 0xFB, 0x74, 0x7F, 0xFD, 0x6A, 0xE5, 0xDB, 0x5D, 0xCF, 0xF1, 0x54, 0x72, 0x6B, 0x98, 0x1F, 0x7A, 0xB6, 0x78, 0x7E, 0xAC, 0x88, 0x54, 0xD6, 0xC7, 0xDA, 0x1F, 0xB1, 0x17, 0xEC, 0x89, 0xA5, 0xF8, 0xDB, 0xC3, 0xD1, 0xF8, 0xCB, 0xC5, 0x56, 0xA2, 0xFA, 0xD6, 0xE2, 0x42, 0x34, 0xBD, 0x3E, 0x65, 0xCC, 0x2E, 0x8A, 0xC5, 0x4C, 0xD2, 0xAF, 0xF1, 0x82, 0xC0, 0x85, 0x43, 0xF2, 0xE0, 0x6E, 0x21, 0xB7, 0x2E, 0xDF, 0xAF, 0x2C, 0xF4, 0x9B, 0x5B, 0x1D, 0x35, 0x2D, 0x21, 0xB6, 0xB7, 0x86, 0xD6, 0x34, 0xD8, 0xB0, 0xA4, 0x61, 0x63, 0x55, 0xF4, 0x0A, 0x38, 0xC7, 0xB5, 0x71, 0xBF, 0xB3, 0x05, 0xED, 0xBD, 0xFF, 0x00, 0xEC, 0xE7, 0xE0, 0x59, 0x2D, 0x48, 0xFB, 0x3B, 0x68, 0x36, 0x41, 0x39, 0xC9, 0x5C, 0x40, 0x80, 0x83, 0xEE, 0x08, 0x20, 0xFB, 0x83, 0x5D, 0xE8, 0x19, 0xFE, 0x95, 0xF8, 0x3E, 0x71, 0x98, 0x56, 0xC4, 0xE2, 0xE7, 0x3A, 0xAF, 0xAB, 0x49, 0x74, 0x49, 0x74, 0x3F, 0x5C, 0xCA, 0xF0, 0x74, 0xE8, 0x61, 0xE2, 0xA0, 0xB5, 0x69, 0x36, 0xFB, 0x9F, 0x2E, 0x7E, 0xD9, 0x7F, 0xB1, 0x96, 0x8D, 0xA9, 0xF8, 0x3B, 0x51, 0xF1, 0x67, 0x84, 0xF4, 0xF8, 0x74, 0xBD, 0x5B, 0x4B, 0x46, 0xBA, 0xBB, 0xB3, 0xB5, 0x8C, 0x47, 0x05, 0xFC, 0x4A, 0x33, 0x21, 0x11, 0x8E, 0x16, 0x50, 0x01, 0x60, 0x54, 0x7C, 0xF8, 0x20, 0x82, 0x58, 0x30, 0xF8, 0x8C, 0xDF, 0x46, 0x4E, 0x77, 0x70, 0xDC, 0xD7, 0xEB, 0xAD, 0xFD, 0xD4, 0x36, 0x96, 0x13, 0x4B, 0x70, 0xC9, 0x1C, 0x11, 0xA3, 0x34, 0xAC, 0xE7, 0x0A, 0xAA, 0x07, 0x24, 0xE7, 0xB6, 0x2B, 0xF1, 0x77, 0xFB, 0x72, 0x32, 0x9F, 0xBA, 0xDC, 0xB1, 0x75, 0x40, 0x4F, 0x21, 0x7B, 0x7E, 0x95, 0xF7, 0x7C, 0x13, 0x8B, 0xAD, 0x88, 0xA5, 0x3A, 0x35, 0x1D, 0xD4, 0x6D, 0x66, 0xF7, 0xD6, 0xFA, 0x7E, 0x07, 0xCC, 0x71, 0x26, 0x1E, 0x9D, 0x1A, 0x91, 0xA9, 0x05, 0x6E, 0x6B, 0xDF, 0xB6, 0x96, 0x3A, 0xA7, 0xBE, 0x8F, 0x3D, 0x6A, 0x13, 0xA8, 0x46, 0x0F, 0x5A, 0xE6, 0x1F, 0x5C, 0xF9, 0x7E, 0xF0, 0xA8, 0x9F, 0x5E, 0xC7, 0x7A, 0xFB, 0x6F, 0x62, 0x7C, 0xEC, 0x6A, 0x74, 0x34, 0x7E, 0x20, 0xF8, 0x3B, 0x43, 0xF8, 0xA1, 0xE1, 0x3B, 0xDD, 0x0B, 0x5E, 0xB2, 0x8B, 0x50, 0xD2, 0xEF, 0xD7, 0x12, 0xC2, 0xFC, 0x10, 0x47, 0x47, 0x53, 0xD5, 0x5D, 0x4F, 0x21, 0x87, 0x20, 0xD7, 0xC0, 0x7F, 0x19, 0x7E, 0x16, 0xEA, 0x5F, 0xB3, 0x57, 0x8E, 0xD7, 0x41, 0xD5, 0x25, 0x6D, 0x43, 0xC3, 0xFA, 0x80, 0x66, 0xD1, 0xB5, 0x59, 0x14, 0x62, 0x78, 0xFA, 0x18, 0xA5, 0xED, 0xBD, 0x72, 0x03, 0x0E, 0x98, 0x20, 0xFD, 0xD6, 0x18, 0xFB, 0x99, 0xF5, 0xEF, 0x7A, 0xE4, 0x3E, 0x35, 0xFC, 0x3F, 0xD2, 0xFE, 0x38, 0xFC, 0x3A, 0xBE, 0xF0, 0xEE, 0xAB, 0x85, 0x8E, 0xE3, 0xF7, 0x96, 0xD7, 0x1B, 0x77, 0x3D, 0x94, 0xEA, 0x0E, 0xC9, 0x97, 0xDC, 0x64, 0x82, 0x38, 0xDC, 0xAC, 0xCB, 0x91, 0x9A, 0xF7, 0xF2, 0x1C, 0xD6, 0xAE, 0x06, 0xAD, 0xA5, 0xAD, 0x39, 0x68, 0xD3, 0xDB, 0xEE, 0x3C, 0xCC, 0xDF, 0x2B, 0xA5, 0x8E, 0xA3, 0xCB, 0x25, 0xEF, 0x2D, 0x53, 0xEA, 0x8F, 0xC7, 0xCF, 0xDB, 0x07, 0xF6, 0x58, 0x8F, 0xC0, 0x2F, 0x37, 0x8A, 0x3C, 0x3D, 0x6E, 0x57, 0x44, 0x95, 0xB1, 0x7B, 0x6A, 0xA3, 0x3F, 0xD9, 0xD2, 0x31, 0xC2, 0xB2, 0xFF, 0x00, 0xD3, 0x26, 0x62, 0x14, 0x67, 0xEE, 0xB1, 0x03, 0xA1, 0x51, 0x5F, 0x3B, 0xC9, 0x13, 0x23, 0x32, 0x9D, 0xB9, 0x07, 0x1C, 0x1C, 0x8F, 0xCC, 0x71, 0x5F, 0xA4, 0xDA, 0x75, 0xB5, 0xCE, 0x8D, 0xAB, 0x6A, 0xDE, 0x0D, 0xF1, 0x2D, 0xB4, 0x66, 0xFA, 0xC7, 0xCC, 0xB3, 0x9A, 0x19, 0x7E, 0x78, 0xEE, 0x22, 0xC6, 0x19, 0x79, 0xFB, 0xCA, 0x50, 0xE4, 0x1F, 0xE2, 0x46, 0x07, 0xEB, 0xF1, 0x1F, 0xED, 0x35, 0xF0, 0x2A, 0x4F, 0x81, 0xFF, 0x00, 0x11, 0x24, 0xB5, 0x87, 0xCD, 0x93, 0x47, 0xD4, 0x14, 0xDC, 0x69, 0xB3, 0xBF, 0x3B, 0x93, 0x38, 0x31, 0xB1, 0xE9, 0xBD, 0x0F, 0xCA, 0x7D, 0x46, 0xD6, 0xC0, 0x0E, 0x31, 0xF9, 0xF7, 0x89, 0xBC, 0x13, 0x4F, 0x05, 0x25, 0x9B, 0xE5, 0xCB, 0xF7, 0x35, 0x37, 0x4B, 0x68, 0xC9, 0xFE, 0x8F, 0xF0, 0x67, 0xD2, 0xF0, 0x1F, 0x13, 0xD5, 0xC4, 0x73, 0x65, 0x59, 0x83, 0xFD, 0xF5, 0x3D, 0x9F, 0xF3, 0xC7, 0xFC, 0xD7, 0x5F, 0x2D, 0x77, 0xB9, 0xE5, 0xF4, 0x50, 0x46, 0x0D, 0x15, 0xF8, 0xE1, 0xFA, 0x50, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0xF0, 0xB9, 0x38, 0xEB, 0xE9, 0x5F, 0x76, 0xFE, 0xC1, 0x5F, 0x02, 0x26, 0xF0, 0xF7, 0x81, 0x2C, 0xEE, 0x96, 0xDC, 0xC9, 0xE2, 0x0F, 0x1A, 0x3C, 0x65, 0x01, 0xFF, 0x00, 0x96, 0x56, 0xE4, 0xFE, 0xE5, 0x33, 0xD8, 0x36, 0x4C, 0xAC, 0x73, 0x82, 0x0A, 0x64, 0x02, 0x95, 0xF1, 0xFF, 0x00, 0xC1, 0x2F, 0x87, 0xAD, 0xF1, 0x57, 0xE2, 0xA6, 0x8B, 0xA1, 0x66, 0x45, 0x8F, 0x50, 0xB9, 0x51, 0x3B, 0x22, 0xE5, 0x92, 0x15, 0xCB, 0xCA, 0xC3, 0xFD, 0xD8, 0xD5, 0x8F, 0xE1, 0x5F, 0xAF, 0x1F, 0xB2, 0x17, 0x82, 0x61, 0xBA, 0xF1, 0x25, 0xE6, 0xB1, 0xE4, 0x47, 0x15, 0xAE, 0x8F, 0x08, 0xB7, 0xB4, 0x45, 0x5C, 0x2C, 0x6E, 0xE0, 0x8F, 0x97, 0xD9, 0x63, 0x05, 0x71, 0xFE, 0xD8, 0xAF, 0xDA, 0x3C, 0x25, 0xC9, 0xE0, 0xA7, 0x5B, 0x3B, 0xAD, 0x1D, 0x29, 0x69, 0x1B, 0xFF, 0x00, 0x33, 0xFF, 0x00, 0x25, 0x6F, 0xBC, 0xFC, 0xAB, 0xC4, 0xCC, 0xD2, 0x4E, 0x14, 0xB2, 0x8A, 0x2E, 0xCE, 0xAB, 0xBC, 0xBF, 0xC2, 0xBA, 0x7C, 0xDF, 0xE4, 0x7D, 0x4F, 0xFB, 0x33, 0x7C, 0x38, 0xB3, 0xF0, 0x3E, 0x9D, 0x69, 0x1C, 0x2A, 0x0D, 0xBE, 0x8F, 0x1F, 0x97, 0x1B, 0x91, 0x8F, 0x3A, 0x76, 0xE5, 0xE4, 0x3E, 0xFC, 0x93, 0xED, 0xB9, 0x71, 0xD0, 0x52, 0x78, 0xFB, 0xE2, 0x39, 0xF1, 0x67, 0x88, 0x1E, 0x44, 0x93, 0x36, 0xB0, 0x66, 0x3B, 0x71, 0xD8, 0xAF, 0x76, 0xFF, 0x00, 0x81, 0x1E, 0x7E, 0x98, 0x1D, 0xAA, 0x3F, 0x17, 0xF8, 0xA0, 0x78, 0x2B, 0xE1, 0xCA, 0xDA, 0xC6, 0xDB, 0x2E, 0x2F, 0x07, 0x93, 0xEE, 0x0B, 0x72, 0xE7, 0xF0, 0x19, 0x1F, 0x88, 0xAF, 0x33, 0x8F, 0x5E, 0xC7, 0xF1, 0x0A, 0xFB, 0x6A, 0x74, 0xE5, 0x89, 0xAF, 0x2C, 0x55, 0x4D, 0x5F, 0x43, 0xE6, 0xA4, 0xA3, 0x87, 0xA1, 0x1C, 0x3C, 0x3E, 0x67, 0x74, 0xBA, 0xEE, 0x7B, 0x8A, 0x1B, 0x5D, 0xDA, 0x3A, 0x8F, 0xCE, 0xB8, 0xA5, 0xF1, 0x06, 0x3F, 0x8A, 0x86, 0xD7, 0xF2, 0x7E, 0xF5, 0x75, 0x3C, 0x3D, 0xCE, 0x3E, 0x77, 0x73, 0xB0, 0x6D, 0x77, 0x07, 0xEF, 0x54, 0x72, 0x6B, 0x99, 0xEF, 0xDA, 0xB8, 0xE7, 0xD7, 0xBF, 0xDA, 0xA8, 0xDB, 0x5D, 0xDA, 0x3E, 0xF0, 0xA9, 0xF6, 0x26, 0xD1, 0xAA, 0x7D, 0xBD, 0xFB, 0x01, 0x7F, 0xC1, 0x43, 0xF4, 0xEF, 0x82, 0x5A, 0x68, 0xF0, 0x6F, 0x8D, 0x1E, 0x64, 0xF0, 0xCF, 0x98, 0xF2, 0xE9, 0xFA, 0x8C, 0x71, 0x34, 0xAD, 0xA6, 0x33, 0x9D, 0xCF, 0x14, 0x88, 0xB9, 0x66, 0x85, 0x98, 0x96, 0x0C, 0xA0, 0xB2, 0xB3, 0x10, 0x41, 0x52, 0x0C, 0x7F, 0x70, 0x59, 0xFE, 0xD4, 0xDF, 0x0D, 0x6F, 0xF4, 0x66, 0xD4, 0x21, 0xF1, 0xFF, 0x00, 0x83, 0x5A, 0xC5, 0x46, 0x5A, 0x7F, 0xED, 0x9B, 0x70, 0x89, 0xEC, 0xC4, 0xBF, 0xCA, 0x47, 0x70, 0x70, 0x45, 0x7E, 0x1D, 0xBE, 0xBF, 0x8F, 0xE2, 0xA8, 0xA4, 0xD6, 0xD4, 0x9C, 0xF1, 0xBB, 0xD7, 0x15, 0xF0, 0xF9, 0xB7, 0x00, 0xE1, 0x71, 0x95, 0xDD, 0x7A, 0x72, 0x70, 0x72, 0xD5, 0xDB, 0x55, 0x7E, 0xFE, 0x47, 0xD6, 0x65, 0xBC, 0x55, 0x5F, 0x0F, 0x49, 0x51, 0x92, 0x52, 0x4B, 0x6B, 0xEE, 0x97, 0x63, 0xF4, 0x3F, 0xF6, 0xF6, 0xFF, 0x00, 0x82, 0x97, 0x68, 0x7E, 0x26, 0xF0, 0x6E, 0xA1, 0xE0, 0x7F, 0x87, 0xB7, 0x7F, 0xDA, 0x0B, 0xAA, 0x23, 0x5B, 0x6A, 0xBA, 0xCA, 0x82, 0x90, 0x2C, 0x07, 0x21, 0xE1, 0xB7, 0x27, 0x06, 0x42, 0xE3, 0x21, 0xA4, 0xC6, 0xC0, 0x84, 0xED, 0x2C, 0xCD, 0xB9, 0x3E, 0x1C, 0x7D, 0x77, 0x8F, 0xBD, 0xFA, 0xD7, 0x1C, 0xDE, 0x20, 0xC1, 0x3F, 0x35, 0x47, 0x26, 0xBD, 0x9C, 0xFC, 0xD5, 0xEF, 0xE4, 0xFC, 0x3F, 0x87, 0xCB, 0xA8, 0xFB, 0x1C, 0x3F, 0x5D, 0xDB, 0xDD, 0xBF, 0x33, 0xCF, 0xC7, 0xE6, 0x95, 0xB1, 0x75, 0x7D, 0xAD, 0x5E, 0x9B, 0x2E, 0x89, 0x1D, 0x83, 0x6B, 0xDC, 0xFD, 0xEA, 0x89, 0xF5, 0xDE, 0x9F, 0x35, 0x71, 0xCF, 0xAF, 0xE3, 0xF8, 0xAA, 0x39, 0x35, 0xDC, 0xFF, 0x00, 0x15, 0x7A, 0x7E, 0xC0, 0xC2, 0x35, 0x0E, 0xBD, 0xB5, 0xEC, 0x7F, 0x15, 0x44, 0xFA, 0xF6, 0x7F, 0x8B, 0xBD, 0x71, 0xFF, 0x00, 0xDB, 0xDF, 0xED, 0x54, 0x52, 0x6B, 0xDC, 0x1F, 0x9B, 0xBD, 0x4F, 0xB1, 0xD6, 0xE6, 0xF1, 0xA9, 0x6D, 0x51, 0xE5, 0x1F, 0xB7, 0x47, 0x81, 0x4C, 0xA9, 0xA6, 0x78, 0xE3, 0x4D, 0x1E, 0x5D, 0xE6, 0x9E, 0xC9, 0x6B, 0x7E, 0xC8, 0x3E, 0xF2, 0x67, 0xF7, 0x32, 0x1F, 0xF7, 0x5B, 0xE4, 0x39, 0xEA, 0x1D, 0x07, 0x41, 0x5E, 0x0B, 0xF1, 0xF3, 0xE1, 0xD4, 0x3F, 0xB4, 0x37, 0xC0, 0xC9, 0x92, 0xCE, 0x11, 0x26, 0xA9, 0x6E, 0xA6, 0xF3, 0x4F, 0x00, 0x65, 0xD6, 0x64, 0xE1, 0xE2, 0x1D, 0xCE, 0xF0, 0x19, 0x00, 0xE0, 0x16, 0xF2, 0xC9, 0xE8, 0x2B, 0xEB, 0xEF, 0x15, 0xC1, 0x6D, 0xE3, 0x1F, 0x0C, 0xEA, 0x1A, 0x4D, 0xDB, 0x7F, 0xA3, 0xEA, 0x56, 0xEF, 0x6E, 0xE7, 0x19, 0xD9, 0xB8, 0x60, 0x30, 0xF7, 0x53, 0x82, 0x3D, 0xC0, 0xAF, 0x94, 0xBE, 0x13, 0x5F, 0xDC, 0x68, 0x7A, 0xCE, 0xA3, 0xA1, 0xDD, 0x1F, 0x2E, 0x68, 0x64, 0x62, 0x13, 0x3F, 0x72, 0x54, 0x3B, 0x1C, 0x7E, 0x83, 0xFE, 0xF9, 0x35, 0xF5, 0x99, 0x5E, 0x1E, 0x9E, 0x63, 0x97, 0xD4, 0xCA, 0xF1, 0x3B, 0x49, 0x35, 0xFE, 0x5F, 0x73, 0x3E, 0x63, 0x3C, 0x75, 0x30, 0x75, 0xE9, 0xE6, 0x98, 0x7D, 0x27, 0x4D, 0xA9, 0x7A, 0xAE, 0xA9, 0xFA, 0xAD, 0xFE, 0x67, 0xE7, 0x93, 0x44, 0x63, 0xFB, 0xDD, 0x8E, 0x08, 0xA8, 0xEB, 0xD5, 0xBF, 0x6B, 0xEF, 0x87, 0x03, 0xE1, 0xBF, 0xC7, 0x2D, 0x5A, 0x38, 0x21, 0xF2, 0x6C, 0x35, 0x5C, 0x6A, 0x36, 0xAA, 0x06, 0xD5, 0x55, 0x97, 0x25, 0x94, 0x0E, 0xCA, 0xB2, 0x07, 0x51, 0xEC, 0x82, 0xBC, 0xB7, 0x18, 0xAF, 0xE4, 0x5C, 0xD3, 0x2F, 0xA9, 0x82, 0xC5, 0xD4, 0xC2, 0x55, 0xDE, 0x12, 0x71, 0x7F, 0x26, 0x7F, 0x40, 0xE0, 0x31, 0x90, 0xC5, 0xE1, 0xA9, 0xE2, 0xA9, 0x6D, 0x34, 0x9A, 0xF9, 0xAB, 0x91, 0xD1, 0x45, 0x15, 0xE7, 0x9D, 0x41, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xD2, 0xDF, 0xF0, 0x4E, 0x8F, 0x08, 0xAE, 0xA3, 0xE3, 0x5D, 0x7F, 0x5C, 0x91, 0x15, 0x97, 0x4A, 0xB3, 0x5B, 0x58, 0xD8, 0xFF, 0x00, 0x04, 0x93, 0x31, 0x20, 0x8F, 0xF8, 0x04, 0x72, 0x0F, 0xF8, 0x15, 0x7E, 0xAE, 0x7E, 0xCD, 0x1A, 0x02, 0xF8, 0x7B, 0xE1, 0x46, 0x98, 0xEC, 0xBB, 0x5F, 0x50, 0x91, 0xEF, 0x65, 0xF7, 0xDC, 0xD8, 0x5F, 0xCD, 0x11, 0x2B, 0xF3, 0x7F, 0xFE, 0x09, 0xE7, 0xA1, 0x2E, 0x9F, 0xF0, 0x6B, 0x54, 0xD4, 0x30, 0x04, 0x97, 0xFA, 0xA3, 0xC4, 0x7D, 0x4A, 0xC5, 0x14, 0x64, 0x1F, 0xA6, 0x65, 0x61, 0xF5, 0x06, 0xBF, 0x52, 0x3C, 0x1B, 0x60, 0x34, 0xBF, 0x0B, 0x69, 0x56, 0x20, 0x63, 0xEC, 0xB6, 0x90, 0xC0, 0x3E, 0xAA, 0x8A, 0xBF, 0xD2, 0xBF, 0xA7, 0x38, 0x5B, 0x06, 0xB0, 0xDC, 0x2B, 0x86, 0xA7, 0x1D, 0x1D, 0x49, 0x39, 0x3F, 0xBE, 0xDF, 0x95, 0x8F, 0xE7, 0xFE, 0x21, 0xC4, 0x3C, 0x47, 0x13, 0x57, 0x9C, 0xB5, 0x54, 0xD4, 0x62, 0xBE, 0xE4, 0xDF, 0xE3, 0x73, 0x97, 0xF8, 0xCD, 0xE3, 0x5F, 0xB6, 0x78, 0x9E, 0x3B, 0x51, 0x26, 0xE4, 0xB1, 0x88, 0x64, 0x67, 0xF8, 0xDF, 0x0C, 0x7F, 0xF1, 0xDD, 0x95, 0xC9, 0xAF, 0x88, 0x71, 0xFC, 0x55, 0xE2, 0xDE, 0x3A, 0xF8, 0xB1, 0xAA, 0x5C, 0xFC, 0x4A, 0xD7, 0xAE, 0xAD, 0xEF, 0x19, 0xAD, 0xA5, 0xD4, 0x26, 0xF2, 0xA3, 0x70, 0x1D, 0x44, 0x61, 0xC8, 0x40, 0x33, 0xD3, 0xE5, 0x03, 0xA6, 0x2A, 0x5D, 0x3F, 0xE3, 0x3C, 0xC0, 0x01, 0x75, 0x68, 0x8C, 0x7B, 0xB4, 0x4F, 0xB7, 0xF4, 0x39, 0xFE, 0x75, 0xF6, 0x74, 0xB2, 0x0A, 0xD4, 0xE8, 0xC5, 0x42, 0xCF, 0x4B, 0x9E, 0x1D, 0x4C, 0xF2, 0x84, 0xEA, 0x37, 0x3B, 0xAF, 0xEB, 0xC8, 0xF6, 0x61, 0xE2, 0x3D, 0xA3, 0xEF, 0x52, 0xB7, 0x88, 0xBF, 0xDA, 0xCD, 0x79, 0x75, 0xBF, 0xC5, 0x9D, 0x3E, 0x61, 0xF3, 0x49, 0x34, 0x27, 0xFE, 0x9A, 0x27, 0xFF, 0x00, 0x13, 0x9A, 0xBD, 0x0F, 0x8E, 0xAC, 0xEE, 0x07, 0xC9, 0x79, 0x01, 0xF6, 0xF3, 0x00, 0x3F, 0x91, 0xAC, 0xA7, 0x97, 0xD5, 0x8F, 0xC5, 0x16, 0x6B, 0x4F, 0x19, 0x46, 0x6E, 0xF1, 0x92, 0x67, 0xA0, 0x3F, 0x88, 0x3F, 0xDA, 0xFC, 0xEB, 0xEB, 0xFF, 0x00, 0xD9, 0x76, 0xDF, 0xF6, 0x44, 0xF8, 0x8D, 0xE1, 0xCF, 0x0D, 0xE8, 0xDE, 0x34, 0xBC, 0xF1, 0x46, 0x85, 0xE3, 0x0B, 0xAB, 0x58, 0x20, 0xBE, 0xB9, 0xBD, 0xBA, 0xB8, 0xB6, 0xD3, 0xE7, 0xBD, 0x20, 0x09, 0x36, 0x4A, 0x85, 0xA3, 0x8D, 0x0B, 0x67, 0x06, 0x42, 0x8B, 0x8C, 0x74, 0x38, 0x15, 0xF0, 0x40, 0xF1, 0x0E, 0xF5, 0xCA, 0xB6, 0xE1, 0xEA, 0x0E, 0x6A, 0x39, 0xB5, 0xE5, 0x91, 0x19, 0x5B, 0xE6, 0x56, 0x18, 0x39, 0xEE, 0x2B, 0xC5, 0xCD, 0x32, 0x79, 0x62, 0xE9, 0x72, 0xC6, 0xAC, 0xE9, 0xB5, 0xD6, 0x2E, 0xCF, 0xE7, 0xDD, 0x79, 0x1E, 0xBE, 0x5D, 0x98, 0x2A, 0x15, 0x39, 0xB9, 0x23, 0x34, 0xFA, 0x3D, 0x7E, 0xE3, 0xF7, 0x08, 0x7F, 0xC1, 0x19, 0x3E, 0x07, 0xB0, 0xCF, 0xF6, 0x6F, 0x88, 0xB0, 0x7F, 0xEA, 0x37, 0x3F, 0xF8, 0xD3, 0x7F, 0xE1, 0xCC, 0x1F, 0x03, 0x49, 0xFF, 0x00, 0x90, 0x6F, 0x88, 0xBF, 0xF0, 0x77, 0x3F, 0xF8, 0xD7, 0x69, 0xFF, 0x00, 0x04, 0xC8, 0xF8, 0x91, 0x75, 0xF1, 0x67, 0xF6, 0x0E, 0xF8, 0x65, 0xAC, 0x5F, 0x4D, 0x25, 0xC5, 0xD7, 0xF6, 0x42, 0xD8, 0xCB, 0x2C, 0x8C, 0x59, 0xE5, 0x6B, 0x57, 0x7B, 0x6D, 0xCC, 0x4F, 0x25, 0x8F, 0x93, 0x92, 0x4F, 0x24, 0x92, 0x6B, 0xDF, 0x02, 0xED, 0x61, 0x5F, 0xCE, 0x38, 0xBC, 0xF3, 0x36, 0xA1, 0x5E, 0x78, 0x79, 0xE2, 0x27, 0x78, 0xB6, 0xBE, 0x27, 0xD1, 0xD8, 0xFD, 0x9B, 0x0B, 0x96, 0xE0, 0x2B, 0x52, 0x8D, 0x58, 0xD2, 0x8D, 0xA4, 0x93, 0xDB, 0xB9, 0xF1, 0x0F, 0xC7, 0x2F, 0xF8, 0x24, 0x6F, 0xC1, 0x9F, 0x00, 0x7C, 0x17, 0xF1, 0x76, 0xBB, 0xA7, 0xE9, 0xBA, 0xF2, 0xDF, 0x68, 0xDA, 0x35, 0xE5, 0xFD, 0xB3, 0x3E, 0xB1, 0x3B, 0x2A, 0xCB, 0x14, 0x0E, 0xE8, 0x48, 0xCE, 0x08, 0x0C, 0xA3, 0x83, 0xD6, 0xBF, 0x24, 0x57, 0xC4, 0x25, 0xE1, 0x56, 0xDD, 0xF7, 0x80, 0xAF, 0xE8, 0x2B, 0xF6, 0xB5, 0x7F, 0x2F, 0xF6, 0x56, 0xF8, 0x94, 0xDF, 0xDD, 0xF0, 0xB6, 0xA6, 0x7F, 0xF2, 0x52, 0x5A, 0xFE, 0x6F, 0xA2, 0xF1, 0x07, 0xEE, 0x13, 0xE6, 0xE8, 0xA2, 0xBF, 0x4E, 0xF0, 0xDF, 0x19, 0x89, 0xC6, 0xD2, 0xAC, 0xF1, 0x53, 0x94, 0xF9, 0x5C, 0x6D, 0x76, 0xDD, 0xB7, 0x3E, 0x2F, 0x8B, 0xB0, 0xB4, 0x30, 0xF5, 0x29, 0xAA, 0x11, 0x51, 0xBD, 0xEF, 0x6D, 0x3A, 0xD8, 0xEC, 0xDF, 0x5F, 0xE7, 0xEF, 0x54, 0x6F, 0xAF, 0x7F, 0xB5, 0xFA, 0xD7, 0x1B, 0xFD, 0xB8, 0xC7, 0xBB, 0x1A, 0xA7, 0x79, 0xE3, 0x3B, 0x5B, 0x30, 0x7C, 0xEB, 0xBB, 0x78, 0x7F, 0xDF, 0x95, 0x57, 0xF9, 0x9A, 0xFD, 0x3B, 0xEA, 0xD2, 0x7B, 0x23, 0xE4, 0xD5, 0x54, 0x77, 0x27, 0x5F, 0xC8, 0xFB, 0xD5, 0x14, 0x9A, 0xF7, 0x1F, 0x7A, 0xBC, 0xD2, 0xFF, 0x00, 0xE3, 0x06, 0x8F, 0x62, 0x0E, 0xEB, 0xE5, 0x91, 0xBB, 0x08, 0x91, 0x9F, 0x3F, 0x8E, 0x31, 0xFA, 0xD6, 0x06, 0xA9, 0xFB, 0x43, 0x5B, 0xC6, 0x3F, 0xD1, 0x6C, 0x6E, 0xA6, 0x3D, 0x33, 0x2B, 0x88, 0xC7, 0xE9, 0xBB, 0xFA, 0x56, 0x91, 0xCB, 0xAA, 0xCB, 0x68, 0x8F, 0xEB, 0x94, 0xE3, 0xBB, 0x3D, 0x95, 0xB5, 0xEF, 0xF6, 0xAB, 0xE7, 0xCF, 0x89, 0xC7, 0xFE, 0x11, 0x6F, 0x8F, 0xAD, 0x78, 0xBF, 0x24, 0x37, 0x92, 0xC5, 0x72, 0x7E, 0x92, 0x0D, 0x92, 0x1F, 0xC5, 0xB7, 0x9A, 0xA5, 0xAE, 0xFC, 0x73, 0xD7, 0xEF, 0xD5, 0x96, 0x09, 0x20, 0xB1, 0x5F, 0xFA, 0x63, 0x1E, 0x5B, 0xFE, 0xFA, 0x6C, 0xFE, 0x63, 0x15, 0xC5, 0xEA, 0xFA, 0xA5, 0xD6, 0xAD, 0x76, 0x66, 0xBA, 0xB9, 0x9E, 0xEA, 0x63, 0x81, 0xE6, 0x4B, 0x21, 0x76, 0xFC, 0xCD, 0x7B, 0x19, 0x6E, 0x5F, 0x3C, 0x3C, 0xFD, 0xA3, 0x39, 0x31, 0x98, 0x88, 0x62, 0x29, 0xBA, 0x7D, 0x2D, 0x6F, 0x91, 0x91, 0xFF, 0x00, 0x05, 0x1B, 0xF0, 0x70, 0xB8, 0xF0, 0x9F, 0x87, 0x75, 0xF8, 0xD3, 0xE6, 0xB3, 0xB9, 0x92, 0xC2, 0x66, 0xC7, 0x24, 0x48, 0xBE, 0x64, 0x63, 0xF0, 0x29, 0x2F, 0xFD, 0xF5, 0xF9, 0xFC, 0x90, 0x0E, 0x14, 0x6E, 0xFF, 0x00, 0xF5, 0x57, 0xDE, 0x1F, 0xB6, 0x26, 0x9F, 0xFF, 0x00, 0x09, 0x27, 0xEC, 0xC1, 0xAD, 0x5D, 0x30, 0xFD, 0xE5, 0xA8, 0xB5, 0xBC, 0x8C, 0x75, 0xC1, 0x32, 0xC6, 0x84, 0x8F, 0xF8, 0x0C, 0xAD, 0xF8, 0x66, 0xBE, 0x0E, 0xDD, 0xF2, 0xFF, 0x00, 0x4A, 0xFE, 0x77, 0xF1, 0x7B, 0x02, 0xA8, 0x71, 0x0C, 0xAA, 0x47, 0x4F, 0x69, 0x18, 0xCB, 0xF0, 0xB7, 0xE8, 0x7E, 0x85, 0xE1, 0x7E, 0x31, 0xD6, 0xC8, 0xE3, 0x4E, 0x5B, 0xD3, 0x94, 0xA3, 0xF8, 0xDF, 0xF5, 0x23, 0xA2, 0x8A, 0x2B, 0xF2, 0xD3, 0xF4, 0x20, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xEE, 0x5F, 0xD8, 0x48, 0x81, 0xFB, 0x3B, 0xC5, 0xB5, 0x55, 0x7F, 0xE2, 0x61, 0x71, 0xB8, 0x8F, 0xE2, 0x38, 0x8F, 0x93, 0xF8, 0x60, 0x7E, 0x15, 0xFA, 0x7B, 0x71, 0x76, 0xBA, 0x74, 0x52, 0x4F, 0xFC, 0x36, 0xEA, 0x64, 0xFC, 0x14, 0x67, 0xFA, 0x57, 0xE6, 0x07, 0xEC, 0x13, 0x74, 0x2E, 0xFF, 0x00, 0x67, 0xCD, 0x8A, 0xC0, 0x9B, 0x7D, 0x52, 0xE2, 0x3D, 0xB8, 0xE4, 0x0F, 0x2E, 0x06, 0xCF, 0x4E, 0xFB, 0xCF, 0xA9, 0xE3, 0xD3, 0x15, 0xFA, 0x4B, 0x3E, 0xA3, 0xFD, 0xAD, 0xF0, 0xFA, 0x5B, 0x94, 0x39, 0xFB, 0x56, 0x96, 0xD2, 0xAF, 0xBE, 0xE8, 0x49, 0x1F, 0xCE, 0xBF, 0xAB, 0xB2, 0xBB, 0x4B, 0x20, 0xCB, 0xDA, 0xDB, 0x96, 0xDF, 0x97, 0xF9, 0x1F, 0xCE, 0xB8, 0xCB, 0xC3, 0x3D, 0xC7, 0x45, 0xEE, 0xE5, 0x73, 0xE1, 0x78, 0x6E, 0x37, 0xAE, 0xE6, 0xCB, 0x33, 0x72, 0x4F, 0xBD, 0x4B, 0x1C, 0x80, 0x35, 0x50, 0xB7, 0x97, 0xE4, 0x5F, 0xA5, 0x4C, 0x92, 0xFA, 0x57, 0xEB, 0x14, 0xE5, 0xEE, 0xD9, 0x9F, 0x01, 0x52, 0x1E, 0xF3, 0x2E, 0x09, 0xF0, 0x29, 0xA2, 0x66, 0x2B, 0x55, 0xCC, 0xE5, 0x45, 0x02, 0x72, 0xD4, 0xEE, 0x8C, 0xF9, 0x09, 0xCC, 0xCC, 0xA7, 0x20, 0xED, 0xF7, 0xA7, 0xFF, 0x00, 0x6B, 0xDD, 0x45, 0xF7, 0x2E, 0x6E, 0x17, 0xE9, 0x21, 0x15, 0x4D, 0xA4, 0xCF, 0x53, 0x51, 0xBC, 0x95, 0x32, 0x51, 0x66, 0xB0, 0xE6, 0x5B, 0x1F, 0xD1, 0x57, 0xFC, 0x10, 0xC6, 0xE5, 0xAE, 0xBF, 0xE0, 0x96, 0xBF, 0x0B, 0xE4, 0x91, 0x9A, 0x49, 0x08, 0xD5, 0x32, 0xCC, 0x72, 0x4F, 0xFC, 0x4D, 0x6F, 0x07, 0x5A, 0xFA, 0xE0, 0x8C, 0xFF, 0x00, 0x3A, 0xF9, 0x17, 0xFE, 0x08, 0x47, 0xCF, 0xFC, 0x12, 0xB7, 0xE1, 0x6F, 0xD3, 0x55, 0xFF, 0x00, 0xD3, 0xAD, 0xE5, 0x7D, 0x79, 0x5F, 0xC2, 0xBC, 0x4F, 0xFF, 0x00, 0x23, 0x8C, 0x5F, 0xFD, 0x7C, 0x9F, 0xFE, 0x94, 0xCF, 0xEB, 0x1E, 0x1F, 0xFF, 0x00, 0x91, 0x66, 0x1F, 0xFC, 0x11, 0xFF, 0x00, 0xD2, 0x51, 0xE5, 0xFF, 0x00, 0xB6, 0x9C, 0xA6, 0x3F, 0xD8, 0xF7, 0xE2, 0xA3, 0x29, 0x2A, 0xCB, 0xE1, 0x0D, 0x58, 0x82, 0x3A, 0x83, 0xF6, 0x39, 0xAB, 0xF9, 0x5D, 0x3A, 0xFD, 0xF3, 0xC0, 0xB9, 0xBD, 0xBC, 0x23, 0x03, 0x8F, 0x39, 0xB1, 0xFC, 0xEB, 0xFA, 0x9F, 0xFD, 0xB5, 0xFF, 0x00, 0xE4, 0xCE, 0x3E, 0x2B, 0xFF, 0x00, 0xD8, 0x9F, 0xAB, 0xFF, 0x00, 0xE9, 0x14, 0xD5, 0xFC, 0xA8, 0x2B, 0xE2, 0x05, 0xFA, 0x0A, 0xFD, 0xA7, 0xC1, 0x18, 0xA7, 0x47, 0x15, 0x7E, 0xF1, 0xFC, 0x99, 0xF9, 0xBF, 0x89, 0x8D, 0xAA, 0xD4, 0x6D, 0xD9, 0xFE, 0x68, 0x5B, 0xBB, 0xB9, 0x2E, 0x8F, 0xEF, 0x24, 0x92, 0x4F, 0xF7, 0x98, 0x9A, 0xA7, 0x37, 0xDE, 0xA9, 0x64, 0x7A, 0xAA, 0xEF, 0xB4, 0x67, 0xF2, 0xAF, 0xDD, 0xAC, 0x91, 0xF9, 0xA5, 0x3B, 0x91, 0xDC, 0x38, 0xC7, 0x4A, 0xAB, 0x33, 0x11, 0xF8, 0x54, 0x8E, 0x72, 0xDF, 0x4A, 0xAF, 0x2B, 0x56, 0x72, 0x3B, 0x29, 0xC4, 0x86, 0x53, 0x96, 0xAA, 0xD3, 0x3F, 0xCD, 0x53, 0xC8, 0xFD, 0x7F, 0x2A, 0xA9, 0x2B, 0x13, 0x91, 0xE9, 0xCD, 0x66, 0xF4, 0x3B, 0xE9, 0xC6, 0xE7, 0x75, 0xFB, 0x43, 0xB8, 0xFF, 0x00, 0x86, 0x4C, 0xD6, 0xF7, 0x2A, 0xBE, 0xED, 0x2A, 0xD7, 0x82, 0x33, 0xCE, 0xE8, 0x79, 0xFC, 0x0F, 0x3F, 0x51, 0x5F, 0x01, 0x7D, 0xDF, 0xFF, 0x00, 0x5D, 0x7D, 0xFF, 0x00, 0xFB, 0x50, 0x49, 0xFD, 0x8B, 0xFB, 0x2A, 0xF8, 0x89, 0x5B, 0x6A, 0xB4, 0x76, 0x36, 0xD0, 0x00, 0x46, 0x72, 0x4C, 0xD0, 0xC6, 0x40, 0xF7, 0x00, 0x93, 0xCF, 0xA7, 0xAD, 0x7E, 0x7F, 0xB0, 0xDA, 0x6B, 0xF9, 0xD7, 0xC6, 0xD6, 0xBF, 0xB5, 0xE8, 0x47, 0xAA, 0xA4, 0xBF, 0xF4, 0xA9, 0x1F, 0x7B, 0xE1, 0x3E, 0xB9, 0x6D, 0x69, 0xF4, 0x75, 0x65, 0xF9, 0x44, 0x4A, 0x28, 0xA2, 0xBF, 0x17, 0x3F, 0x52, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3E, 0xB6, 0xFF, 0x00, 0x82, 0x6F, 0xF8, 0x91, 0x66, 0xD0, 0x7C, 0x51, 0xA4, 0xBC, 0x80, 0x34, 0x33, 0x41, 0x79, 0x0A, 0x77, 0x21, 0x83, 0xA4, 0x87, 0xF0, 0xDB, 0x1F, 0xE7, 0xF4, 0xAF, 0xD3, 0x6F, 0x81, 0xFA, 0xAA, 0xF8, 0xA7, 0xE1, 0x3E, 0x92, 0x92, 0x37, 0xFA, 0xB8, 0x4D, 0x94, 0x9D, 0xF6, 0xEC, 0x25, 0x06, 0x7F, 0xE0, 0x1B, 0x4F, 0xE3, 0x5F, 0x8E, 0xFF, 0x00, 0xB1, 0x1F, 0x8E, 0xBF, 0xE1, 0x0B, 0xF8, 0xF9, 0xA7, 0xDB, 0xC9, 0x27, 0x97, 0x6D, 0xAF, 0xC6, 0xFA, 0x5C, 0xA7, 0x6E, 0x4B, 0x33, 0xE1, 0xA2, 0x1F, 0x8C, 0xC9, 0x18, 0xCF, 0xA1, 0x35, 0xFA, 0x97, 0xFB, 0x28, 0x78, 0xB0, 0x43, 0x2E, 0xA5, 0xA2, 0xC8, 0xD8, 0xDF, 0x8B, 0xD8, 0x07, 0xB8, 0xC2, 0xC9, 0xF8, 0xE3, 0x61, 0xFC, 0x0D, 0x7F, 0x4D, 0x70, 0x16, 0x2D, 0x63, 0x38, 0x59, 0x53, 0x8F, 0xC5, 0x42, 0x4D, 0x7C, 0x9E, 0xB7, 0xFC, 0x7F, 0x03, 0xF0, 0x7E, 0x2E, 0xC2, 0xBC, 0x27, 0x13, 0xFB, 0x47, 0xF0, 0xD7, 0x8A, 0xFB, 0xD6, 0x8F, 0xF2, 0xFC, 0x4F, 0x97, 0xCA, 0xB5, 0xB3, 0x34, 0x72, 0x7C, 0xB2, 0x46, 0x76, 0x30, 0x3D, 0x88, 0xE0, 0xD3, 0x84, 0xBF, 0x2D, 0x74, 0x1F, 0x1B, 0xBC, 0x3D, 0xFF, 0x00, 0x08, 0xB7, 0xC5, 0xEF, 0x12, 0x59, 0xED, 0xF2, 0xD5, 0x6F, 0xE4, 0x96, 0x31, 0xE9, 0x1C, 0x87, 0xCC, 0x4F, 0xFC, 0x75, 0xD6, 0xB9, 0x81, 0x21, 0x55, 0xEB, 0xC9, 0xAF, 0xD8, 0x68, 0x54, 0xE7, 0xA6, 0xA7, 0xDD, 0x5C, 0xFC, 0xFA, 0xBD, 0x1E, 0x59, 0xB8, 0xBE, 0x8E, 0xC5, 0xA1, 0x36, 0x28, 0x69, 0xF2, 0x3B, 0xD5, 0x5D, 0xF4, 0x79, 0xAD, 0x5B, 0x5D, 0x9C, 0xFE, 0xCC, 0xB0, 0x65, 0xC8, 0xA8, 0xDA, 0x5E, 0x2A, 0x12, 0xE5, 0xBF, 0x8A, 0x9A, 0xD2, 0x62, 0x97, 0x33, 0x2E, 0x30, 0x3F, 0xA3, 0x8F, 0xF8, 0x20, 0xE9, 0xDD, 0xFF, 0x00, 0x04, 0xAA, 0xF8, 0x5B, 0xF4, 0xD5, 0x7F, 0xF4, 0xED, 0x79, 0x5F, 0x5F, 0x57, 0xC7, 0xDF, 0xF0, 0x41, 0x93, 0xFF, 0x00, 0x1A, 0xA6, 0xF8, 0x55, 0xF4, 0xD5, 0x7F, 0xF4, 0xED, 0x7B, 0x5F, 0x60, 0x81, 0x83, 0x5F, 0xC3, 0x5C, 0x4D, 0xFF, 0x00, 0x23, 0x8C, 0x5F, 0xFD, 0x7D, 0x9F, 0xFE, 0x94, 0xCF, 0xEA, 0x8C, 0x85, 0x5B, 0x2D, 0xC3, 0xFF, 0x00, 0x82, 0x3F, 0xFA, 0x4A, 0x3C, 0xB7, 0xF6, 0xDA, 0x3F, 0xF1, 0x87, 0x3F, 0x16, 0x3F, 0xEC, 0x4F, 0xD5, 0xFF, 0x00, 0xF4, 0x8A, 0x6A, 0xFE, 0x52, 0x55, 0xFF, 0x00, 0x74, 0xBF, 0x41, 0x5F, 0xD5, 0xA7, 0xED, 0xB9, 0xFF, 0x00, 0x26, 0x6D, 0xF1, 0x6B, 0xFE, 0xC4, 0xED, 0x5F, 0xFF, 0x00, 0x48, 0xA6, 0xAF, 0xE5, 0x15, 0x24, 0xCC, 0x0B, 0xFE, 0xE8, 0xFC, 0x2B, 0xF6, 0x9F, 0x04, 0x7F, 0x83, 0x8A, 0xF5, 0x8F, 0xE4, 0xCF, 0xCE, 0x7C, 0x4A, 0x57, 0xAD, 0x45, 0xF9, 0x3F, 0xD0, 0x24, 0x7D, 0xC6, 0xAB, 0x4F, 0x2E, 0xFA, 0x7C, 0xD2, 0xED, 0x18, 0xAA, 0xCC, 0xDC, 0xE7, 0xF2, 0xAF, 0xDD, 0x59, 0xF9, 0xBD, 0x38, 0x8D, 0x66, 0xCD, 0x56, 0x99, 0xE9, 0xF2, 0xBD, 0x57, 0x77, 0xE7, 0x3F, 0x95, 0x65, 0x29, 0x1D, 0x94, 0xE2, 0x32, 0x79, 0x36, 0xD4, 0xFE, 0x19, 0xD3, 0x06, 0xB5, 0xE2, 0x2B, 0x2B, 0x56, 0xFF, 0x00, 0x96, 0xF3, 0x22, 0xB7, 0xB2, 0xE7, 0x9F, 0xC8, 0x66, 0xA9, 0xCA, 0xE5, 0x8E, 0x3D, 0x2B, 0xB3, 0xF8, 0x21, 0xA1, 0xFD, 0xB7, 0x5F, 0x9B, 0x50, 0x75, 0xF9, 0x2C, 0x93, 0x6A, 0x1F, 0xF6, 0x9F, 0x23, 0xF4, 0x5D, 0xDF, 0x98, 0xA2, 0x9C, 0x5C, 0xE6, 0x97, 0x73, 0x4C, 0x5D, 0x65, 0x43, 0x0F, 0x3A, 0xBE, 0x5F, 0x8F, 0x4F, 0xC4, 0xC1, 0xFF, 0x00, 0x82, 0x81, 0xF8, 0x9D, 0x34, 0xBF, 0x82, 0x70, 0xD8, 0x09, 0x19, 0x67, 0xD5, 0xF5, 0x18, 0xD7, 0x67, 0xF7, 0xA3, 0x8D, 0x5D, 0xD8, 0xFE, 0x0D, 0xE5, 0x7E, 0x75, 0xF1, 0x30, 0x38, 0x26, 0xBE, 0x87, 0xFF, 0x00, 0x82, 0x87, 0xF8, 0xE4, 0x6B, 0x9F, 0x12, 0x74, 0xCF, 0x0F, 0xC5, 0x23, 0x34, 0x3A, 0x0D, 0xA7, 0x99, 0x2A, 0x9F, 0xE1, 0x9E, 0x7C, 0x39, 0x1F, 0xF7, 0xED, 0x62, 0xFC, 0x73, 0x5F, 0x3C, 0x02, 0x46, 0x2B, 0xF9, 0x37, 0xC5, 0x0C, 0xD2, 0x38, 0xDE, 0x21, 0xAC, 0xE0, 0xEF, 0x18, 0x5A, 0x2B, 0xFE, 0xDD, 0xDF, 0xF1, 0xB9, 0xFA, 0xF7, 0x87, 0x99, 0x7B, 0xC2, 0x64, 0x54, 0x63, 0x25, 0x67, 0x3B, 0xC9, 0xFF, 0x00, 0xDB, 0xCF, 0x4F, 0xC2, 0xC3, 0x28, 0xA2, 0x8A, 0xFC, 0xF4, 0xFB, 0x60, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x02, 0xE6, 0x9F, 0x7D, 0x36, 0x9D, 0x79, 0x0C, 0xF0, 0xB3, 0xC7, 0x2C, 0x2E, 0x1D, 0x1D, 0x5B, 0x6B, 0x29, 0x07, 0x20, 0x83, 0xD8, 0x83, 0xDE, 0xBF, 0x4B, 0xFF, 0x00, 0x67, 0x6F, 0x8D, 0x0D, 0xE2, 0x8F, 0x0E, 0x78, 0x6F, 0xC6, 0x76, 0x7E, 0x5B, 0x5C, 0x32, 0x87, 0xB9, 0x85, 0x08, 0x50, 0x25, 0x5C, 0xA4, 0xF1, 0x60, 0x7D, 0xD0, 0x4E, 0xFC, 0x03, 0xCE, 0xD7, 0x53, 0xDC, 0x57, 0xE6, 0x36, 0x77, 0x37, 0x5A, 0xFA, 0x0B, 0xF6, 0x13, 0xF8, 0xDC, 0xBE, 0x09, 0xF1, 0xA4, 0x9E, 0x17, 0xD4, 0x66, 0xDB, 0xA5, 0xF8, 0x81, 0xD4, 0x5B, 0xB3, 0x1F, 0x96, 0xDE, 0xEF, 0xA2, 0x1F, 0x61, 0x20, 0xF9, 0x0F, 0x1F, 0x7B, 0xCB, 0x24, 0x80, 0xA6, 0xBF, 0x4F, 0xF0, 0xBF, 0x89, 0x21, 0x96, 0xE6, 0x6F, 0x0B, 0x88, 0x76, 0xA5, 0x59, 0x72, 0xBE, 0xC9, 0xF4, 0x7F, 0x8B, 0x5F, 0x33, 0xF3, 0xFF, 0x00, 0x11, 0x32, 0x19, 0xE3, 0xF2, 0xEF, 0xAC, 0x61, 0xD7, 0xEF, 0x68, 0xBE, 0x65, 0xE6, 0xBA, 0xAF, 0xD7, 0xE4, 0x7D, 0xC9, 0xFB, 0x67, 0xE8, 0xB0, 0xCD, 0xE2, 0x7D, 0x17, 0xC5, 0x16, 0x27, 0xCC, 0xB1, 0xF1, 0x15, 0x88, 0x5F, 0x30, 0x0E, 0xB2, 0x47, 0x8C, 0x13, 0xE8, 0x4C, 0x6E, 0x83, 0x07, 0xFB, 0x87, 0xD2, 0xBC, 0x54, 0x4F, 0xC7, 0x5A, 0xF6, 0xA9, 0xA6, 0x3E, 0x3B, 0xF8, 0x5D, 0xA8, 0x78, 0x46, 0x7F, 0x9A, 0xE6, 0x27, 0xFE, 0xD0, 0xD1, 0x49, 0xEA, 0x2E, 0x13, 0x3B, 0xA0, 0xFF, 0x00, 0xB6, 0xAA, 0x5D, 0x54, 0x7F, 0x7D, 0x87, 0x5C, 0xF1, 0xE1, 0x69, 0x2E, 0xEE, 0x41, 0xAF, 0xEA, 0x2C, 0x1D, 0x39, 0x51, 0x83, 0xA1, 0x2F, 0xB3, 0xB7, 0x9A, 0x7B, 0x1F, 0x88, 0xFB, 0x68, 0x62, 0x52, 0xAD, 0x1E, 0xBB, 0xF9, 0x3E, 0xA5, 0xC1, 0x2E, 0x7B, 0xD0, 0x65, 0xC7, 0x7A, 0xAB, 0xE6, 0x37, 0xAD, 0x1E, 0x63, 0x7A, 0xD7, 0x59, 0x9F, 0x21, 0x68, 0xCD, 0xC7, 0x5A, 0x8D, 0xA7, 0xAA, 0xFE, 0x66, 0x7B, 0xD3, 0x5E, 0x5D, 0x87, 0xEB, 0x46, 0x85, 0x46, 0x9F, 0x43, 0xFA, 0x48, 0xFF, 0x00, 0x82, 0x0A, 0xB6, 0xEF, 0xF8, 0x25, 0x17, 0xC2, 0x93, 0xFE, 0xCE, 0xAB, 0xFF, 0x00, 0xA7, 0x6B, 0xDA, 0xFB, 0x0A, 0xBE, 0x3E, 0xFF, 0x00, 0x82, 0x0D, 0xDB, 0x3D, 0x9F, 0xFC, 0x12, 0x8B, 0xE1, 0x32, 0xC8, 0xBB, 0x59, 0xA1, 0xD4, 0xA4, 0x19, 0xEE, 0x1B, 0x54, 0xBC, 0x60, 0x7F, 0x10, 0x41, 0xAF, 0xAF, 0xC7, 0x2B, 0x5F, 0xC3, 0xBC, 0x4C, 0xFF, 0x00, 0xE1, 0x63, 0x17, 0xFF, 0x00, 0x5F, 0x27, 0xFF, 0x00, 0xA5, 0x33, 0xFA, 0x73, 0x24, 0x56, 0xCB, 0xE8, 0x2F, 0xEE, 0x47, 0xF2, 0x47, 0x96, 0xFE, 0xDC, 0x3F, 0xF2, 0x66, 0x3F, 0x16, 0xBF, 0xEC, 0x4E, 0xD6, 0x3F, 0xF4, 0x8A, 0x6A, 0xFE, 0x4F, 0x44, 0xD8, 0x81, 0x7E, 0x82, 0xBF, 0xAC, 0x4F, 0xDB, 0x42, 0xCA, 0x4B, 0xEF, 0xD9, 0x0B, 0xE2, 0xA5, 0xBC, 0x6B, 0xBA, 0x4B, 0x8F, 0x08, 0x6A, 0xD1, 0xAA, 0x8E, 0xE4, 0xD9, 0x4C, 0x00, 0xAF, 0xE4, 0xCE, 0x29, 0x7F, 0x72, 0xA7, 0x76, 0x37, 0x28, 0x20, 0x57, 0xED, 0x1E, 0x08, 0xBF, 0xDC, 0xE2, 0xBD, 0x63, 0xF9, 0x33, 0xF3, 0xDF, 0x11, 0x23, 0x7A, 0xB4, 0x7D, 0x18, 0xE7, 0x7A, 0x82, 0x47, 0xC9, 0xA2, 0x59, 0x33, 0x50, 0x48, 0xFB, 0xCD, 0x7E, 0xE6, 0xDD, 0xCF, 0xCE, 0xE1, 0x00, 0x91, 0xF7, 0x1F, 0x6A, 0xAD, 0x3C, 0xB9, 0xA7, 0xCA, 0xF9, 0x1F, 0xEC, 0xD5, 0x79, 0x5C, 0x03, 0x9F, 0xCA, 0xA2, 0x52, 0x5B, 0x1D, 0x74, 0xE2, 0x18, 0x69, 0x4E, 0xC5, 0x0C, 0xCC, 0xC7, 0x18, 0x03, 0x24, 0x9F, 0x4A, 0xF6, 0x3D, 0x25, 0x2C, 0xFE, 0x11, 0xFC, 0x36, 0x9A, 0xF3, 0x50, 0x61, 0x1C, 0x3A, 0x75, 0xBB, 0xDF, 0x5F, 0x30, 0x61, 0x92, 0xC0, 0x64, 0xA8, 0x3D, 0xCF, 0x0A, 0x8B, 0xEA, 0x71, 0xDC, 0xD7, 0x2D, 0xF0, 0x67, 0xC0, 0xED, 0x79, 0x76, 0xBA, 0xBD, 0xC0, 0xFD, 0xCC, 0x04, 0xFD, 0x98, 0x1F, 0xE3, 0x71, 0xFC, 0x7F, 0x45, 0xED, 0xFE, 0xD7, 0xFB, 0xB5, 0xE5, 0x9F, 0xB7, 0xE7, 0xC7, 0x15, 0x71, 0x0F, 0x81, 0xF4, 0xD9, 0x81, 0x2A, 0x56, 0xE3, 0x57, 0x65, 0x27, 0x93, 0xC1, 0x8E, 0x1C, 0xFB, 0x7F, 0xAC, 0x61, 0xC8, 0xC9, 0x8F, 0xA1, 0x52, 0x2B, 0xC3, 0xE2, 0x6C, 0xFA, 0x96, 0x4B, 0x95, 0xD4, 0xC7, 0xD4, 0x7E, 0xFD, 0xAD, 0x05, 0xDE, 0x4F, 0x6F, 0xF3, 0xF4, 0x32, 0xC3, 0x65, 0xF2, 0xCE, 0x73, 0x3A, 0x79, 0x5D, 0x2F, 0x82, 0x2F, 0x9A, 0x6F, 0xB2, 0x5D, 0x3F, 0x4F, 0x56, 0x8F, 0x9C, 0xBC, 0x7D, 0xE2, 0xFB, 0xAF, 0x88, 0x1E, 0x32, 0xD4, 0xB5, 0xAB, 0xCD, 0xBF, 0x69, 0xD4, 0xEE, 0x1E, 0xE1, 0xC0, 0xFB, 0xAA, 0x58, 0x93, 0x81, 0xE8, 0xA3, 0xA0, 0x1D, 0x80, 0x02, 0xB1, 0x98, 0xB1, 0x38, 0xE3, 0xA6, 0x32, 0x3D, 0xA9, 0xD6, 0xEE, 0xA8, 0x92, 0x6E, 0x52, 0xC5, 0x97, 0x08, 0x77, 0x63, 0x69, 0xC8, 0xE7, 0xDF, 0x8C, 0x8C, 0x7B, 0xD4, 0x15, 0xFC, 0x5B, 0x5A, 0xB4, 0xEA, 0xCD, 0xD4, 0x9B, 0xBB, 0x6E, 0xEF, 0xD5, 0xEA, 0x7F, 0x49, 0x53, 0xA7, 0x18, 0x45, 0x42, 0x0A, 0xC9, 0x69, 0xF7, 0x05, 0x14, 0x51, 0x59, 0x94, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x38, 0x6E, 0x22, 0x9C, 0xAE, 0xC8, 0xC1, 0x87, 0x50, 0x78, 0x3E, 0x95, 0x1D, 0x15, 0x49, 0xD8, 0x0F, 0xBA, 0x3F, 0x64, 0x4F, 0xDA, 0x5A, 0x3F, 0x8B, 0x5E, 0x1F, 0x8F, 0x45, 0xD5, 0xAE, 0x76, 0xF8, 0xA3, 0x4B, 0x88, 0x65, 0xDD, 0xBE, 0x6D, 0x4E, 0x25, 0xE3, 0xCD, 0x07, 0xBC, 0x8A, 0x31, 0xBC, 0x1E, 0x4F, 0xDF, 0xE7, 0xE7, 0xD9, 0xD7, 0x7C, 0x40, 0xF0, 0xA4, 0xB6, 0x97, 0x73, 0x6A, 0x10, 0xEE, 0x92, 0x0B, 0x87, 0x32, 0x4C, 0x00, 0xE6, 0x36, 0x27, 0x24, 0xFF, 0x00, 0xBA, 0x4F, 0xE5, 0xF9, 0x57, 0xE7, 0xDF, 0x86, 0xFC, 0x43, 0x79, 0xE1, 0x1D, 0x6A, 0xD7, 0x52, 0xD3, 0xEE, 0x24, 0xB5, 0xBE, 0xB2, 0x95, 0x65, 0x82, 0x64, 0x38, 0x68, 0xDD, 0x4E, 0x41, 0x15, 0xF7, 0x17, 0xEC, 0xD3, 0xFB, 0x54, 0x69, 0x7F, 0x1D, 0x2C, 0x06, 0x97, 0x7E, 0xB0, 0xE9, 0xDE, 0x28, 0x85, 0x3E, 0x7B, 0x6C, 0xE2, 0x3D, 0x41, 0x42, 0xFC, 0xD2, 0x43, 0xFE, 0xD7, 0x52, 0xD1, 0xF5, 0x03, 0x91, 0x95, 0x0D, 0xB3, 0xFA, 0x5B, 0xC3, 0x5F, 0x10, 0xA9, 0x63, 0x69, 0x47, 0x2A, 0xCC, 0xE7, 0x6A, 0xAB, 0x48, 0x49, 0xFD, 0xAE, 0xC9, 0xBE, 0xFF, 0x00, 0x9F, 0xA9, 0xF8, 0x3F, 0x1B, 0x70, 0x6D, 0x6C, 0x05, 0x79, 0x66, 0xB9, 0x64, 0x79, 0xA9, 0x4B, 0x59, 0xC1, 0x74, 0xF3, 0x4B, 0xB7, 0xE5, 0xE8, 0x56, 0xF3, 0xBF, 0xDA, 0x1F, 0x95, 0x2F, 0x9B, 0xFE, 0xD7, 0xE9, 0x5D, 0x7F, 0x8B, 0x3E, 0x1B, 0x6F, 0xDD, 0x71, 0xA5, 0xF0, 0x7A, 0xB5, 0xBE, 0x71, 0xFF, 0x00, 0x7C, 0x1F, 0xE8, 0x7F, 0x0E, 0xC2, 0xB8, 0x89, 0xD2, 0x4B, 0x59, 0x9A, 0x39, 0x15, 0x92, 0x44, 0x38, 0x65, 0x6C, 0xAB, 0x29, 0xF7, 0x15, 0xFB, 0x14, 0xA2, 0xE3, 0xB9, 0xF1, 0x78, 0x5A, 0xB4, 0xB1, 0x11, 0xE6, 0xA6, 0xFE, 0x5D, 0x51, 0x3F, 0x99, 0x91, 0xF7, 0xB1, 0x8A, 0xFA, 0x1F, 0xF6, 0x6C, 0xFF, 0x00, 0x82, 0x53, 0x7C, 0x7C, 0xFD, 0xAB, 0xAE, 0x34, 0x79, 0x3C, 0x2D, 0xF0, 0xEF, 0x59, 0xB7, 0xD1, 0x35, 0xC4, 0x8A, 0x7B, 0x7D, 0x7F, 0x58, 0x4F, 0xB0, 0x69, 0x4B, 0x6D, 0x26, 0x0A, 0xDC, 0xF9, 0xB2, 0x7C, 0xD2, 0xC5, 0xB4, 0x86, 0xFD, 0xCA, 0xC8, 0xEC, 0x3E, 0xEA, 0xB5, 0x7C, 0xDC, 0x64, 0xC0, 0xFB, 0xC2, 0xBE, 0x84, 0xF8, 0x73, 0xFF, 0x00, 0x05, 0x63, 0xFD, 0xA3, 0x3E, 0x12, 0xF8, 0x17, 0x49, 0xF0, 0xCF, 0x86, 0xFE, 0x2B, 0x6B, 0xDA, 0x4E, 0x81, 0xA0, 0xD9, 0xC7, 0x61, 0xA7, 0xD9, 0xC5, 0x69, 0x66, 0xD1, 0xDB, 0x41, 0x1A, 0x85, 0x48, 0xC1, 0x68, 0x4B, 0x10, 0x14, 0x01, 0xC9, 0x26, 0xBC, 0x3C, 0xED, 0x66, 0x92, 0xA1, 0x6C, 0xAD, 0xC1, 0x4B, 0xAB, 0x9D, 0xEC, 0x97, 0x74, 0x91, 0xEE, 0x65, 0x90, 0xC1, 0xAA, 0x97, 0xC6, 0x73, 0x72, 0xFF, 0x00, 0x77, 0xFE, 0x09, 0xFD, 0x29, 0x7E, 0xCB, 0x7F, 0x01, 0x6C, 0x3F, 0x65, 0xCF, 0xD9, 0xD7, 0xC1, 0x3F, 0x0F, 0x74, 0xD9, 0x9E, 0xF2, 0xD7, 0xC1, 0xFA, 0x3D, 0xB6, 0x96, 0x2E, 0x99, 0x3C, 0xB6, 0xBC, 0x78, 0xD0, 0x09, 0x27, 0x65, 0xC9, 0xDA, 0xD2, 0x3E, 0xE7, 0x2A, 0x09, 0x00, 0xB9, 0x03, 0x8A, 0xF4, 0x20, 0xDC, 0xD7, 0xF3, 0x08, 0xDF, 0xF0, 0x5A, 0xFF, 0x00, 0xDA, 0xA0, 0x7F, 0xCD, 0x68, 0xF1, 0x1F, 0xFE, 0x01, 0x58, 0xFF, 0x00, 0xF1, 0x8A, 0x63, 0x7F, 0xC1, 0x6C, 0x3F, 0x6A, 0x81, 0xFF, 0x00, 0x35, 0xA7, 0xC4, 0x7F, 0xF8, 0x09, 0x63, 0xFF, 0x00, 0xC6, 0x2B, 0xF0, 0x2A, 0xBE, 0x0F, 0xE7, 0x15, 0x66, 0xEA, 0xD4, 0xAD, 0x07, 0x29, 0x3B, 0xB7, 0x79, 0x6A, 0xDE, 0xFD, 0x0F, 0xD4, 0xA9, 0x71, 0xDE, 0x02, 0x11, 0x50, 0x8C, 0x25, 0x64, 0xAD, 0xB2, 0xFF, 0x00, 0x33, 0xFA, 0x73, 0xD5, 0xF4, 0xCB, 0x6D, 0x73, 0x4A, 0xBA, 0xB3, 0xBA, 0x89, 0x27, 0xB5, 0xBC, 0x89, 0xA0, 0x9A, 0x27, 0x19, 0x59, 0x11, 0x81, 0x56, 0x53, 0xEC, 0x41, 0x22, 0xBF, 0x9A, 0xBF, 0xDA, 0xFF, 0x00, 0xFE, 0x08, 0x7F, 0xF1, 0xEB, 0xF6, 0x5C, 0xF8, 0x8B, 0xAB, 0x58, 0xE9, 0x3E, 0x05, 0xD7, 0xBC, 0x79, 0xE0, 0xDB, 0x7B, 0x89, 0x3F, 0xB2, 0x75, 0xDD, 0x0A, 0x1F, 0xB7, 0x9B, 0xAB, 0x51, 0xCA, 0x34, 0xF0, 0x47, 0x99, 0x62, 0x95, 0x50, 0x80, 0xE1, 0x90, 0x26, 0xF0, 0xDB, 0x19, 0xD7, 0x0C, 0x79, 0xB6, 0xFF, 0x00, 0x82, 0xD8, 0xFE, 0xD5, 0x4B, 0xFF, 0x00, 0x35, 0xA7, 0xC4, 0xBF, 0xF8, 0x09, 0x63, 0xFF, 0x00, 0xC6, 0x2A, 0xBE, 0xA1, 0xFF, 0x00, 0x05, 0xA4, 0xFD, 0xA9, 0xB5, 0x1B, 0x39, 0xAD, 0xEE, 0x3E, 0x32, 0xF8, 0x8E, 0x48, 0x6E, 0x23, 0x68, 0xE4, 0x4F, 0xB1, 0xD9, 0x7C, 0xCA, 0xC3, 0x04, 0x7F, 0xA8, 0xEE, 0x0D, 0x7D, 0x4F, 0x09, 0xF0, 0x4F, 0x11, 0x64, 0x35, 0xA5, 0x3C, 0x35, 0x5A, 0x52, 0x8C, 0xED, 0xCC, 0x9F, 0x37, 0x4D, 0x9A, 0xB2, 0xDD, 0x5D, 0x9E, 0x56, 0x75, 0x9F, 0x65, 0x99, 0x9C, 0x23, 0x1A, 0x91, 0x9A, 0x71, 0xD9, 0xAB, 0x75, 0x3E, 0x61, 0x33, 0xF9, 0xAA, 0x19, 0x5B, 0xE5, 0x23, 0x20, 0x8A, 0x86, 0x69, 0x70, 0x29, 0x37, 0xED, 0x45, 0x55, 0xE0, 0x28, 0xC0, 0x14, 0xC6, 0x72, 0x5B, 0x6E, 0x37, 0x31, 0x38, 0x0A, 0x2B, 0xF6, 0x8E, 0x66, 0xAD, 0x73, 0xE1, 0x23, 0x4C, 0x6B, 0x49, 0xC7, 0x26, 0xBA, 0x6F, 0x87, 0x3F, 0x0E, 0xE5, 0xF1, 0x7D, 0xD7, 0x9F, 0x71, 0xBA, 0x3D, 0x3E, 0x33, 0x87, 0x71, 0xC1, 0x90, 0x8F, 0xE0, 0x5F, 0xEA, 0x7B, 0x7D, 0x71, 0x5A, 0x5E, 0x07, 0xF8, 0x35, 0x3E, 0xA7, 0x22, 0x5D, 0x6B, 0x0A, 0xF6, 0xF6, 0xEB, 0xCA, 0xDB, 0x67, 0x12, 0x4B, 0xFE, 0xF7, 0x74, 0x1F, 0xF8, 0xF7, 0xD3, 0xAD, 0x5F, 0xF8, 0xED, 0xFB, 0x41, 0x68, 0x7F, 0xB3, 0xD7, 0x86, 0x92, 0x39, 0x12, 0x1B, 0x8D, 0x52, 0x58, 0xBF, 0xD0, 0x34, 0xC8, 0xDB, 0x66, 0xE5, 0xE8, 0x1D, 0xF1, 0xF7, 0x22, 0x1C, 0xFB, 0xB1, 0x04, 0x2F, 0x76, 0x5E, 0x7C, 0x6E, 0x2F, 0x0D, 0x97, 0xE1, 0xA5, 0x8D, 0xC7, 0xC9, 0x42, 0x11, 0xEF, 0xD7, 0xC9, 0x2E, 0xAD, 0xF4, 0x38, 0x25, 0x8A, 0xAF, 0x89, 0xAE, 0xB0, 0x19, 0x64, 0x79, 0xEA, 0x4B, 0xB6, 0xCB, 0xCE, 0xFB, 0x69, 0xD5, 0xEC, 0x88, 0x3F, 0x68, 0x9F, 0x8F, 0x3A, 0x7F, 0xEC, 0xFD, 0xE0, 0x75, 0x5B, 0x7F, 0x25, 0xB5, 0xDB, 0xB8, 0x8C, 0x7A, 0x5D, 0x92, 0xE0, 0xF9, 0x40, 0x0C, 0x79, 0xCE, 0xBD, 0xA3, 0x4E, 0xC0, 0xFD, 0xF6, 0x1B, 0x46, 0x40, 0x72, 0xBF, 0x06, 0x6A, 0xDA, 0x9D, 0xC6, 0xBB, 0xA8, 0xDC, 0x5E, 0xDD, 0x4D, 0x2D, 0xC5, 0xCD, 0xD4, 0x8D, 0x34, 0xF3, 0x48, 0xC5, 0x9E, 0x47, 0x63, 0x92, 0xCC, 0x4F, 0x24, 0x92, 0x72, 0x4F, 0x72, 0x6B, 0x47, 0xE2, 0x07, 0x8F, 0xF5, 0x6F, 0x89, 0x9E, 0x29, 0xB8, 0xD6, 0x75, 0x8B, 0xA6, 0xBC, 0xBD, 0xBB, 0x3C, 0xB6, 0x30, 0xA8, 0xA3, 0xA2, 0x28, 0xE8, 0xAA, 0xA3, 0x80, 0x07, 0x00, 0x56, 0x09, 0xE7, 0xA5, 0x7F, 0x26, 0xF1, 0xCF, 0x18, 0xD6, 0xCF, 0xF1, 0xBE, 0xD3, 0xE1, 0xA5, 0x1B, 0xA8, 0x47, 0xB2, 0xEE, 0xFC, 0xD9, 0xFB, 0x97, 0x08, 0xF0, 0xB5, 0x2C, 0x97, 0x09, 0xEC, 0xD7, 0xBD, 0x56, 0x5A, 0xCE, 0x5D, 0xDF, 0x65, 0xE4, 0xBA, 0x7D, 0xE3, 0x58, 0xF3, 0xFF, 0x00, 0xD6, 0xA6, 0xD1, 0x45, 0x7C, 0x39, 0xF5, 0x61, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x03, 0xB6, 0x73, 0x56, 0xAC, 0x6F, 0xE6, 0xD3, 0xEE, 0xA3, 0x9E, 0x09, 0x9A, 0x19, 0xA1, 0x60, 0xC9, 0x22, 0x31, 0x0C, 0x84, 0x1C, 0x82, 0x08, 0xE4, 0x10, 0x79, 0xE2, 0xA9, 0xD1, 0x55, 0x19, 0x38, 0xBE, 0x65, 0xB8, 0x3D, 0x77, 0x3E, 0xAA, 0xF8, 0x0B, 0xFB, 0x7B, 0x2C, 0x51, 0x43, 0xA4, 0xF8, 0xE7, 0xCC, 0x9B, 0x6E, 0x12, 0x3D, 0x66, 0x24, 0xDC, 0xE0, 0x7F, 0xD3, 0x78, 0xC0, 0xCB, 0xE0, 0x7F, 0x1A, 0xFC, 0xDC, 0x72, 0xAE, 0x49, 0x35, 0xF4, 0x59, 0xB2, 0xD1, 0x7E, 0x23, 0xE8, 0x76, 0xFA, 0x84, 0x32, 0x5B, 0xEA, 0x16, 0x77, 0x2B, 0xFE, 0x8F, 0x7B, 0x6C, 0xE1, 0x83, 0x63, 0x82, 0x03, 0x8F, 0x43, 0x90, 0x54, 0xE7, 0x07, 0x20, 0x80, 0x6B, 0xF3, 0x38, 0xF4, 0xAE, 0x8F, 0xC0, 0x5F, 0x14, 0xBC, 0x41, 0xF0, 0xBB, 0x52, 0x37, 0x7A, 0x0E, 0xAD, 0x77, 0xA6, 0xC8, 0xC4, 0x6F, 0x11, 0xB6, 0x63, 0x97, 0x1D, 0x03, 0xA1, 0xCA, 0xB8, 0xF6, 0x60, 0x45, 0x7E, 0xC1, 0xC2, 0xBE, 0x2E, 0x63, 0x70, 0x10, 0x58, 0x5C, 0xCA, 0x2E, 0xB5, 0x3E, 0xFF, 0x00, 0x69, 0x2F, 0x5E, 0xBF, 0x3F, 0xBC, 0xFC, 0xC7, 0x88, 0xBC, 0x33, 0xC2, 0xE3, 0x26, 0xF1, 0x39, 0x74, 0xBD, 0x8D, 0x5F, 0x2F, 0x85, 0xFC, 0x96, 0xDF, 0x2D, 0x3C, 0x8F, 0xB8, 0xF5, 0x9F, 0x84, 0x57, 0x96, 0xA5, 0x9A, 0xC6, 0x68, 0xEE, 0xD3, 0xB2, 0x39, 0xF2, 0xE4, 0x1F, 0xFB, 0x29, 0xFC, 0xC5, 0x73, 0x1A, 0xAE, 0x89, 0x7F, 0xA3, 0x1F, 0xF4, 0xAB, 0x3B, 0x88, 0x57, 0xFB, 0xCC, 0x84, 0x29, 0xFA, 0x1E, 0x87, 0xF0, 0x35, 0xC0, 0x7C, 0x3D, 0xFF, 0x00, 0x82, 0x8B, 0x5C, 0x42, 0xB1, 0xDB, 0xF8, 0xA3, 0x43, 0x8E, 0xEB, 0x6E, 0x03, 0x5D, 0xE9, 0xEF, 0xE5, 0x3E, 0x31, 0xC9, 0x68, 0xDB, 0x2A, 0xCC, 0x7F, 0xD9, 0x64, 0x1E, 0xD5, 0xEB, 0xFE, 0x14, 0xFD, 0xB0, 0xBE, 0x1E, 0x78, 0xA5, 0x17, 0x66, 0xBE, 0x34, 0xD9, 0x64, 0x38, 0xF2, 0x75, 0x08, 0x5E, 0x06, 0xFC, 0x5C, 0x06, 0x8F, 0x8E, 0x3F, 0x8F, 0xBD, 0x7E, 0xD5, 0x96, 0x71, 0xE7, 0x0F, 0x66, 0x11, 0x4E, 0x96, 0x21, 0x42, 0x5D, 0xA7, 0xEE, 0xDB, 0xEF, 0xD3, 0xEE, 0x6C, 0xFC, 0xDF, 0x19, 0x90, 0xF1, 0x0E, 0x5E, 0xED, 0x5F, 0x0F, 0xED, 0x17, 0x78, 0x6B, 0xF9, 0x7E, 0xA9, 0x1C, 0x81, 0x9B, 0x7F, 0x45, 0x26, 0xA3, 0x67, 0x23, 0xAE, 0x7F, 0x0A, 0xF5, 0xDB, 0x7F, 0x10, 0xF8, 0x4F, 0xC4, 0x9C, 0xDB, 0xEA, 0x3E, 0x17, 0xD4, 0x0B, 0x67, 0x26, 0x3B, 0xAB, 0x79, 0xB1, 0xC6, 0x4F, 0x42, 0x71, 0xC7, 0x35, 0x3C, 0x9E, 0x18, 0xD0, 0x56, 0x7D, 0x8D, 0x67, 0xA5, 0xAC, 0x99, 0xC6, 0xD2, 0x10, 0x37, 0xE5, 0x5F, 0x4F, 0x4E, 0xA6, 0x1E, 0x6B, 0x9A, 0x95, 0x58, 0xC9, 0x79, 0x34, 0x79, 0x32, 0xCD, 0x65, 0x49, 0xF2, 0xD6, 0xA3, 0x38, 0xBF, 0x4F, 0xF3, 0xB1, 0xE2, 0xF2, 0x4B, 0xB7, 0xB1, 0x5F, 0xC2, 0xA5, 0xB0, 0xD2, 0x2F, 0x35, 0xA6, 0xDB, 0x6B, 0x6B, 0x71, 0x71, 0xCF, 0xFC, 0xB3, 0x8C, 0xB0, 0x1F, 0x5C, 0x74, 0xFC, 0x6B, 0xD7, 0xEE, 0xAF, 0x3C, 0x2F, 0xE1, 0xB9, 0x1B, 0xED, 0x17, 0x1E, 0x1B, 0xD3, 0xCA, 0x1C, 0x31, 0x9E, 0x68, 0x20, 0xDA, 0x72, 0x47, 0x25, 0x88, 0xC7, 0x20, 0x8E, 0x7B, 0x8A, 0xE6, 0x7C, 0x4F, 0xFB, 0x57, 0x7C, 0x3D, 0xF0, 0x9A, 0xB4, 0x73, 0x78, 0x96, 0xCE, 0xEA, 0x48, 0x87, 0x10, 0xD9, 0xA3, 0xDC, 0x97, 0xF6, 0x0C, 0x80, 0xC7, 0xED, 0xCB, 0x0E, 0xBF, 0x5A, 0xE4, 0xC5, 0x66, 0x99, 0x76, 0x19, 0x73, 0x62, 0xB1, 0x31, 0x8A, 0xF3, 0x92, 0xFF, 0x00, 0x33, 0xAB, 0x0F, 0x8A, 0xC7, 0x62, 0x1D, 0xB0, 0x98, 0x49, 0xCB, 0xCE, 0xCF, 0xFC, 0xBF, 0x53, 0x37, 0x43, 0xF8, 0x2B, 0xA9, 0x5F, 0x30, 0x6B, 0xC7, 0x86, 0xC6, 0x3E, 0xFC, 0xF9, 0xB2, 0x1F, 0xC1, 0x4E, 0x3F, 0x33, 0xF8, 0x57, 0x71, 0xA2, 0xF8, 0x2B, 0x47, 0xF0, 0x1D, 0xAC, 0x97, 0x84, 0x45, 0x17, 0xD9, 0xD0, 0xC9, 0x35, 0xED, 0xDC, 0x8A, 0xA2, 0x25, 0xEE, 0xC5, 0x8E, 0x15, 0x07, 0xBF, 0x1E, 0xE4, 0xD7, 0xCF, 0xFE, 0x3F, 0xFF, 0x00, 0x82, 0x8B, 0xDB, 0x42, 0xB2, 0x41, 0xE1, 0x7D, 0x05, 0xA4, 0x6F, 0xE1, 0xBA, 0xD5, 0x1F, 0x00, 0x7F, 0xDB, 0x18, 0xCF, 0x5F, 0x43, 0xE6, 0x63, 0xD4, 0x1A, 0xF0, 0x5F, 0x89, 0x3F, 0x1B, 0xBC, 0x55, 0xF1, 0x6E, 0x75, 0x6D, 0x7B, 0x56, 0xBA, 0xBC, 0x86, 0x36, 0xDE, 0x96, 0xEB, 0x88, 0xED, 0xE1, 0x3D, 0x32, 0xB1, 0xA8, 0x08, 0x0E, 0x08, 0x19, 0xC6, 0x4F, 0x19, 0x26, 0xBF, 0x3D, 0xCE, 0xBC, 0x5C, 0xC9, 0xB0, 0x31, 0x71, 0xCB, 0x93, 0xAD, 0x3E, 0x8F, 0x68, 0xAF, 0x9B, 0xD5, 0xFC, 0x95, 0xBC, 0xCF, 0xA7, 0xC0, 0x70, 0x0E, 0x79, 0x98, 0xBB, 0xE6, 0x12, 0x54, 0x69, 0xF5, 0x4B, 0x59, 0x35, 0xF2, 0xFD, 0x5F, 0xC8, 0xFA, 0x33, 0xE3, 0xAF, 0xED, 0xE3, 0x61, 0xE1, 0xF1, 0x36, 0x9B, 0xE0, 0xBF, 0x2F, 0x51, 0xBE, 0xE5, 0x5F, 0x52, 0x96, 0x3F, 0xF4, 0x78, 0x0F, 0xFD, 0x33, 0x46, 0x1F, 0xBC, 0x60, 0x7F, 0x89, 0x86, 0xCE, 0x3A, 0x38, 0x39, 0x1F, 0x28, 0xEB, 0xBA, 0xFD, 0xF7, 0x8A, 0xB5, 0x99, 0xEF, 0xF5, 0x0B, 0xAB, 0x8B, 0xCB, 0xBB, 0xA6, 0xDF, 0x2C, 0xF3, 0xB9, 0x91, 0xDC, 0xFA, 0x96, 0x3C, 0x9E, 0x9F, 0xA5, 0x66, 0x81, 0x86, 0xF5, 0xFA, 0x50, 0xCD, 0xBB, 0xFA, 0x0F, 0x4A, 0xFE, 0x7F, 0xE2, 0x4E, 0x2C, 0xCC, 0x73, 0xBA, 0xDE, 0xD7, 0x1B, 0x3D, 0x16, 0xD1, 0x5A, 0x45, 0x7A, 0x2F, 0xD7, 0x73, 0xF5, 0xDC, 0x87, 0x86, 0xF0, 0x19, 0x3D, 0x1F, 0x65, 0x83, 0x86, 0xAF, 0x79, 0x3D, 0x5B, 0xF5, 0x7F, 0xA2, 0xB2, 0x24, 0x27, 0x00, 0x01, 0xF8, 0x9A, 0x61, 0x66, 0xDC, 0x09, 0xA6, 0x67, 0x34, 0x57, 0xCD, 0x5C, 0xF7, 0x82, 0x8A, 0x28, 0xA4, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x03, 0xBE, 0xEB, 0x50, 0x5F, 0xF0, 0xA6, 0xD1, 0x4E, 0xE0, 0x38, 0x9E, 0x7D, 0xAA, 0x48, 0xA5, 0x78, 0x81, 0x55, 0x6C, 0x06, 0xEA, 0x3B, 0x1F, 0xAD, 0x43, 0x45, 0x17, 0x02, 0x6F, 0xB4, 0x3F, 0x62, 0x7B, 0xF7, 0xA7, 0x19, 0xF2, 0x7F, 0x8C, 0xFD, 0x5B, 0xFF, 0x00, 0xAD, 0x55, 0xE8, 0xAA, 0x55, 0x24, 0xB4, 0x4C, 0x2C, 0xAF, 0x72, 0x4F, 0x39, 0x89, 0xFB, 0xCF, 0xF9, 0xD1, 0x91, 0xE6, 0x0C, 0xEE, 0xDB, 0xF5, 0xE6, 0xA3, 0xA2, 0x93, 0x93, 0x7B, 0x81, 0x21, 0x6D, 0xCD, 0xDA, 0x87, 0x95, 0x9B, 0xD7, 0x81, 0x81, 0xEC, 0x2A, 0x3A, 0x29, 0x5C, 0x02, 0x8A, 0x28, 0xA4, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD9, } ; ================================================ FILE: examples/M5ez-demo/raw_githubusercontent_com.h ================================================ // This is the root certificate include file for raw.githubusercontent.com // as obtained by the get_cert script on: Wed Aug 15 20:22:14 CEST 2018 // // // Certificate info: // issuer= /C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance EV Root CA // notAfter=Oct 22 12:00:00 2028 GMT // const char* root_cert = \ "-----BEGIN CERTIFICATE-----\n" \ "MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBs\n" \ "MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\n" \ "d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j\n" \ "ZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDEL\n" \ "MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3\n" \ "LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3Vy\n" \ "YW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC2\n" \ "4C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMIC\n" \ "Kq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1\n" \ "itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn\n" \ "4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0X\n" \ "sh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcft\n" \ "bZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEA\n" \ "MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\n" \ "NAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2Vy\n" \ "dC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29t\n" \ "L0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIG\n" \ "BFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQ\n" \ "UzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7D\n" \ "aQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwd\n" \ "aOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNH\n" \ "E+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly\n" \ "/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zu\n" \ "xICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF\n" \ "0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0Ae\n" \ "cPUeybQ=\n" \ "-----END CERTIFICATE-----\n"; ================================================ FILE: examples/M5ez-demo/z-sysInfo.ino ================================================ /* * * This is a "z-sketch". It means you can run this sketch on its own, or use it as a sub-sketch of some bigger program * See the M5ez user manual under z-sketches at https://github.com/M5ez/M5ez * */ #ifndef MAIN_DECLARED #include #include void setup() { ez.begin(); sysInfo(); } void loop() { } String exit_button = ""; #else String exit_button = "Exit"; #endif // #ifndef MAIN_DECLARED void sysInfo() { sysInfoPage1(); while(true) { String btn = ez.buttons.poll(); if (btn == "up") sysInfoPage1(); if (btn == "down") sysInfoPage2(); if (btn == "Exit") break; } } #include void sysInfoPage1() { const byte tab = 120; ez.screen.clear(); ez.header.show("System Info (1/2)"); ez.buttons.show("#" + exit_button + "#down"); ez.canvas.font(&FreeSans9pt7b); ez.canvas.lmargin(10); ez.canvas.println(""); ez.canvas.print("CPU freq:"); ez.canvas.x(tab); ez.canvas.println(String(ESP.getCpuFreqMHz()) + " MHz"); ez.canvas.print("CPU cores:"); ez.canvas.x(tab); ez.canvas.println("2"); // :) ez.canvas.print("Chip rev.:"); ez.canvas.x(tab); ez.canvas.println(String(ESP.getChipRevision())); ez.canvas.print("Flash speed:"); ez.canvas.x(tab); ez.canvas.println(String(ESP.getFlashChipSpeed() / 1000000) + " MHz"); ez.canvas.print("Flash size:"); ez.canvas.x(tab); ez.canvas.println(String(ESP.getFlashChipSize() / 1000000) + " MB"); ez.canvas.print("ESP SDK:"); ez.canvas.x(tab); ez.canvas.println(String(ESP.getSdkVersion())); ez.canvas.print("M5ez:"); ez.canvas.x(tab); ez.canvas.println(String(ez.version())); } void sysInfoPage2() { const String SD_Type[5] = {"NONE", "MMC", "SD", "SDHC", "UNKNOWN"}; const byte tab = 140; ez.screen.clear(); ez.header.show("System Info (2/2)"); ez.buttons.show("up#" + exit_button + "#"); ez.canvas.font(&FreeSans9pt7b); ez.canvas.lmargin(10); ez.canvas.println(""); ez.canvas.print("Free RAM:"); ez.canvas.x(tab); ez.canvas.println(String((long)ESP.getFreeHeap()) + " bytes"); ez.canvas.print("Min. free seen:"); ez.canvas.x(tab); ez.canvas.println(String((long)esp_get_minimum_free_heap_size()) + " bytes"); const int sd_type = SD.cardType(); SPIFFS.begin(); ez.canvas.print("SPIFFS size:"); ez.canvas.x(tab); ez.canvas.println(String((long)SPIFFS.totalBytes()) + " bytes"); ez.canvas.print("SPIFFS used:"); ez.canvas.x(tab); ez.canvas.println(String((long)SPIFFS.usedBytes()) + " bytes"); ez.canvas.print("SD type:"); ez.canvas.x(tab); ez.canvas.println(SD_Type[sd_type]); if (sd_type != 0) { ez.canvas.print("SD size:"); ez.canvas.x(tab); ez.canvas.println(String((long)SD.cardSize() / 1000000) + " MB"); ez.canvas.print("SD used:"); ez.canvas.x(tab); ez.canvas.println(String((long)SD.usedBytes() / 1000000) + " MB"); } } ================================================ FILE: examples/OTA_https/OTA_https.ino ================================================ #include #include void setup() { ez.begin(); ezMenu OTA_menu ("OTA via https demo"); OTA_menu.addItem("Settings", ez.settings.menu); OTA_menu.addItem("Get M5ez demo", OTA_demo); OTA_menu.run(); } void loop() { } void OTA_demo() { if (ez.msgBox("Get M5ez demo program", "This will download and replace the current sketch with the M5ez demo program.", "Cancel#OK#") == "OK") { ezProgressBar progress_bar("OTA update in progress", "Downloading ...", "Abort"); #include "raw_githubusercontent_com.h" // the root certificate is now in const char * root_cert if (ez.wifi.update("https://raw.githubusercontent.com/M5ez/M5ez/master/compiled_binaries/M5ez-demo.bin", root_cert, &progress_bar)) { ez.msgBox("Over The Air updater", "OTA download successful. Reboot to new firmware", "Reboot"); ESP.restart(); } else { ez.msgBox("OTA error", ez.wifi.updateError(), "OK"); } } } ================================================ FILE: examples/OTA_https/README.md ================================================ ## Over The Air (OTA) firmware updates via https OTA stands for Over The Air, and in the context of the M5Stack usually means we're upgrading compiled firmware via the WiFi network, without hooking the USB port to a computer and running the Arduino IDE. The ez.wifi.update routine that we will be using to update the firmware uses https to transport the firmware, because code that is going to be running on all sorts of devices should be encrypted. ![](../../images/ezProgressBar.png) ### Using the demo Load this program in your Arduino IDE and load it to your M5Stack. The menu will allow you to get the larger M5ez-demo program from the `/compiled_binaries` directory on the M5ez Github repository and replaces this `OTA_http` demo sketch with it. There's a menu item that points to M5ez's built-in WiFi menu in case you haven't set up any autoconnecting networks with M5ez before. (As it happens the M5ez-demo program allows you to load a compiled version of this demo program again, so you can Over-The-Air update back and forth. Not because that's a useful things to do, but it does serve to demonstrate the mechanism.) ### Using `ez.wifi.update` in your own code The steps below may seem a bit complicated. Most of that is due to the need to include a root certyificate for the server we will be connecting to. This is to prevent evildoers on the internet from swapping their malicious firmware for yours, somewhere along the way. And that was the whole point of using https over some unencrypted method in the first place. In case you want to use it from your own code, follow the follwing steps: * Export your firmare binary by selecting "Sketch / Export compiled binary in the Arduino IDE. The binary will be in the sketch directory once compilation is done. * Put it on the web at some server that supports https. Someplace on Github works well. * Let's assume we want our code to get the `M5ez-demo.bin` image from the `/compiled_binaries` directory of this repository. We then [browse](https://github.com/M5ez/M5ez/blob/master/compiled_binaries/M5ez-demo.bin) to that, and get a download link called "[view raw](https://github.com/M5ez/M5ez/blob/master/compiled_binaries/M5ez-demo.bin?raw=true)" which, if we right-click and hit "save link as" points to `https://github.com/M5ez/M5ez/blob/master/compiled_binaries/M5ez-demo.bin?raw=true`. * Download the `get_cert` script from the `/tools` directory on this repository to a MacOS or Linux computer, or a linux-like shell on your windows machine. * Make the script executable with `chmod a+x get_cert`. * Make sure you have the `opensll` command-line utility, or download and install it if you don't. * Run `./get_cert https://github.com/M5ez/M5ez/blob/master/compiled_binaries/M5ez-demo.bin?raw=true`, or in other words, supply the URL that you want to download from. ``` your_prompt$ ./get_cert https://github.com/M5ez/M5ez/blob/master/compiled_binaries/M5ez-demo.bin?raw=true The effective download URL (after resolving forwards) is: https://raw.githubusercontent.com/M5ez/M5ez/master/compiled_binaries/M5ez-demo.bin The root certificate include file is saved as: raw_githubusercontent_com.h ``` * As you can see the script tells you two things. First it will tell you what the "real" URL is. That is: what site and path does the first URL evetually redirect to. That is the URL you will want to use in your code, and that is the domain you want the root certificate for. * It will also have saved a `.h` include file named after the domain (with dots replaced by underscores) that holds the root certificate in a format ready to be used by our code. Including that anywhere in your code will be replaced by a definition of a `const char *` variable called `root_cert` that can be passed to `ez.wifi.update`. Here's what that file looks like: ``` your_prompt$ cat raw_githubusercontent_com.h // This is the root certificate include file for raw.githubusercontent.com // as obtained by the get_cert script on: Wed Aug 15 21:34:20 CEST 2018 // // // Certificate info: // issuer= /C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance EV Root CA // notAfter=Oct 22 12:00:00 2028 GMT // const char* root_cert = \ "-----BEGIN CERTIFICATE-----\n" \ "MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBs\n" \ "MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\n" \ "d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j\n" \ "ZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDEL\n" \ "MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3\n" \ "LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3Vy\n" \ "YW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC2\n" \ "4C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMIC\n" \ "Kq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1\n" \ "itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn\n" \ "4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0X\n" \ "sh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcft\n" \ "bZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEA\n" \ "MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\n" \ "NAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2Vy\n" \ "dC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29t\n" \ "L0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIG\n" \ "BFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQ\n" \ "UzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7D\n" \ "aQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwd\n" \ "aOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNH\n" \ "E+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly\n" \ "/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zu\n" \ "xICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF\n" \ "0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0Ae\n" \ "cPUeybQ=\n" \ "-----END CERTIFICATE-----\n"; ``` * Place this certificate include file in the directory of your sketch. In your code, you can now use something like below to do the actual upgrade. ``` ezProgressBar pb("OTA update in progress", "Downloading ...", "Abort"); String url = "https://raw.githubusercontent.com/M5ez/M5ez/master/compiled_binaries/M5ez-demo.bin"; #include "raw_githubusercontent_com.h" if (ez.wifi.update(url, root_cert, &pb)) { ez.msgBox("Over The Air updater", "OTA download successful. Reboot to new firmware", "Reboot"); ESP.restart(); } else { ez.msgBox("OTA error", ez.wifi.updateError(), "OK"); } ``` * And presto: you have Over The Air updates using https. ### Finer points * The above example is actually from the `OTA_https` demo. Naturally you would replace the certificate and URL with your own. * Over the Air updates only work if your partition table allows for two concurrent firmwares to be present. This means that if you do not plan to use OTA, you can have twice as much space for your programs. (Tools / Partition Scheme / No OTA in the Arduino IDE.) * As you can see, the `ez.wifi.update` function takes three arguments: the first one is the https url for the firmware, the second one is the root certificate and the (optional) third one is a pointer to the ezProgressBar instance that will show progress for this download. (Don't forget the ampersand - `&` - in front.) * Should `ez.wifi.update` return `false`: the human-readable error is provided when you call `ez.wifi.updateError()`. * If your download is much more sneaky and silent, you can also just do something like: ``` #include "updates_com.h" if (ez.wifi.update("https://updates.com/path/firmware.bin", root_cert)) { ESP.restart; } ``` * For simplicity's sake, this ignores the obvious need to figure out whether there actually are any new updates that the user hasn't installed yet. This will just get the file, put it in flash and switch to it. * If the certificate on the server is signed by a different root certificate - which may happen before the cert expiration date - updates will not work anymore. If you plan to deploy lots of IoT appliances using this update method it is probably best to control your own server and have a root certificate on it that expires sometime well after you will have sold your startup. * `ez.wifi.update` cannot be used to pass basic auth credentials with the user:pass@host notation. * Various other limitations of the WifiClientSecure class apply: this is IoT land... ================================================ FILE: examples/OTA_https/raw_githubusercontent_com.h ================================================ // This is the root certificate include file for raw.githubusercontent.com // as obtained by the get_cert script on: Wed Aug 15 20:22:14 CEST 2018 // // // Certificate info: // issuer= /C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance EV Root CA // notAfter=Oct 22 12:00:00 2028 GMT // const char* root_cert = \ "-----BEGIN CERTIFICATE-----\n" \ "MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBs\n" \ "MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\n" \ "d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j\n" \ "ZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDEL\n" \ "MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3\n" \ "LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3Vy\n" \ "YW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC2\n" \ "4C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMIC\n" \ "Kq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1\n" \ "itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn\n" \ "4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0X\n" \ "sh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcft\n" \ "bZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEA\n" \ "MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw\n" \ "NAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2Vy\n" \ "dC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29t\n" \ "L0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIG\n" \ "BFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQ\n" \ "UzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7D\n" \ "aQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwd\n" \ "aOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNH\n" \ "E+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly\n" \ "/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zu\n" \ "xICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF\n" \ "0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0Ae\n" \ "cPUeybQ=\n" \ "-----END CERTIFICATE-----\n"; ================================================ FILE: examples/SortedMenus/SortedMenus.ino ================================================ #include // A sorting method takes the form: // bool func(const char* s1, const char* s2) { return s1 comparedTo s2; } // Built-in sorting methos include: // For sorting by Names as quickly as possible // ezMenu::sort_asc_name_cs Sort ascending by menu name, case sensitive // ezMenu::sort_asc_name_ci Sort ascending by menu name, case insensitive // ezMenu::sort_dsc_name_cs Sort descending by menu name, case sensitive // ezMenu::sort_dsc_name_ci Sort descending by menu name, case insensitive // For sorting by Caption if there is one, falling back to sorting by Name if no Caption is provided (all purpose) // ezMenu::sort_asc_caption_cs Sort ascending by menu caption or name if no caption, case sensitive // ezMenu::sort_asc_caption_ci Sort ascending by menu caption or name if no caption, incase sensitive // ezMenu::sort_dsc_caption_cs Sort descending by menu caption or name if no caption, case sensitive // ezMenu::sort_dsc_caption_ci Sort descending by menu caption or name if no caption, case insensitive void setup() { ez.begin(); } void loop() { ezMenu menu("Menu Sorting Demo"); menu.txtSmall(); // You can simply call setSortFunction once here, and the menu will always stay sorted. // menu.setSortFunction(yourSortingFunction); menu.buttons("asc # Asc # dsc # Dsc # Unsorted #"); menu.addItem("Just a few"); menu.addItem("words of"); menu.addItem("random text in"); menu.addItem("No Particular Order."); menu.addItem("Press buttons"); menu.addItem("to re-sort"); menu.addItem("NAME IS IGNORED! Value is sorted. | as you like."); // Or, you can call setSortFunction any time to re-sort the menu. // Once set, additional insertions are made in sorted order as well. // No need to call setSortFunction again unless you want to change to a different order. while(true) { menu.runOnce(); String result = menu.pickButton(); if (result == "asc") menu.setSortFunction(ezMenu::sort_asc_caption_ci); else if(result == "Asc") menu.setSortFunction(ezMenu::sort_asc_caption_cs); else if(result == "dsc") menu.setSortFunction(ezMenu::sort_dsc_caption_ci); else if(result == "Dsc") menu.setSortFunction(ezMenu::sort_dsc_caption_cs); else if(result == "Unsorted") menu.setSortFunction(nullptr); } } ================================================ FILE: examples/SubMenu/SubMenu.ino ================================================ #include // This example is intended to show how to nest menus within menus, even when // special button processing is needed on menu selections. // Standard Arduino setup function. ez.begin() takes care of startup and initialization void setup() { #include // per https://github.com/M5ez/M5ez#themes #include // makes both themes available ez.begin(); // initializes everything } // Although the Arduino loop is usually called repeatedly, using an M5ez menu with no exit results in it being called once only // void loop() { Serial.println("entering loop()"); // Shows what function we're in on the Serial Monitor ezMenu topmenu("Top Menu"); // creates the menu but does nothing else topmenu.txtSmall(); // makes menu text smaller, neater topmenu.buttons("up # select # down"); // 'select' sets pickName and pickCaption, all set pickButton topmenu.addItem("dark | Dark Theme", dark); // ignore in while loop, calls dark() automatically topmenu.addItem("light | Light Theme", light); // ignore in while loop, calls light() automatically topmenu.addItem("Red"); // does nothing; handled manually in while loop topmenu.addItem("Green"); // does nothing; handled manually in while loop topmenu.addItem("Blue"); // does nothing; handled manually in while loop topmenu.addItem("Black"); // does nothing; handled manually in while loop topmenu.addItem("SubMenu"); // does nothing; handled manually in while loop while(topmenu.runOnce()) { // runOnce displays the menu and returns when a button is pressed // you can watch the results in the Serial Monitor Serial.printf("topmenu.pick = %d\n", topmenu.pick()); Serial.printf("topmenu.pickButton = %s\n", topmenu.pickButton().c_str()); Serial.printf("topmenu.pickName = %s\n", topmenu.pickName().c_str()); Serial.printf("topmenu.pickCaption = %s\n\n", topmenu.pickCaption().c_str()); String result = topmenu.pickName(); // find out what menu was selected when 'select' button was pressed if( result == "Red") ez.theme->menu_item_color = RED; else if(result == "Green") ez.theme->menu_item_color = GREEN; else if(result == "Blue") ez.theme->menu_item_color = BLUE; else if(result == "Black") ez.theme->menu_item_color = BLACK; else if(result == "SubMenu") subMenu(); // create a sub menu, but we can return to this menu when it exits } } // Function called automatically by selecting the 'Dark Theme' menu // void dark() { ez.theme->select("Dark"); } // called automatically when 'Dark Theme' menu is selected // Function called automatically by selecting the 'Light Theme' menu // void light() { ez.theme->select("Default"); } // called automatically when 'Light Theme' menu is selected // Display the submenu. When 'back' is selected, this menu is terminated and mainmenu resumes // the foo, bar and baz menus are just dummies; normally they would call a function of be handled in a runOnce loop // void subMenu() { Serial.println("entering subMenu()"); // Shows what function we're in on the Serial Monitor ezMenu submenu("Sub Menu"); // creates the menu but does nothing else submenu.txtSmall(); // makes menu text smaller, neater submenu.buttons("up # back # select ## down #"); // standard buttons for a submenu; long press on button A pops up one level submenu.addItem("foo"); // not handled at all, so nothing happens when this menu is selected except a redraw submenu.addItem("bar"); // not handled at all, so nothing happens when this menu is selected except a redraw submenu.addItem("baz"); // not handled at all, so nothing happens when this menu is selected except a redraw submenu.addItem("sub | subSubMenu"); // returns the name "sub" but displays the caption "subSubMenu" while(submenu.runOnce()) { // runOnce displays the menu and returns when a button is pressed // you can watch the results in the Serial Monitor Serial.printf("submenu.pick = %d\n", submenu.pick()); Serial.printf("submenu.pickButton = %s\n", submenu.pickButton().c_str()); Serial.printf("submenu.pickName = %s\n", submenu.pickName().c_str()); Serial.printf("submenu.pickCaption = %s\n\n", submenu.pickCaption().c_str()); if(submenu.pickName() == "sub") subSubMenu(); // submenu.pickName() == "sub", or submenu.pickCaption() == "subSubMenu", or submenu.pick == 4 } } // Display an even more deaply nested menu. When 'back' is selected this menu is terminated and submenu resumes // the tic, tac and toe menus are just dummies; normally they would call a function of be handled in a runOnce loop // void subSubMenu() { Serial.println("entering subSubMenu()"); // Shows what function we're in on the Serial Monitor ezMenu subsubmenu("Sub Sub Menu"); // creates the menu but does nothing else subsubmenu.txtSmall(); // makes menu text smaller, neater subsubmenu.buttons("up # back # select ## down #"); // standard buttons for a submenu; long press on button A pops up one level subsubmenu.addItem("tic"); // not handled at all, so nothing happens when this menu is selected except a redraw subsubmenu.addItem("tac"); // not handled at all, so nothing happens when this menu is selected except a redraw subsubmenu.addItem("toe"); // not handled at all, so nothing happens when this menu is selected except a redraw subsubmenu.run(); // display menu and handle menus until 'back' is selected, then exit, returning to subMenu() } ================================================ FILE: examples/z-ezTimeLog/z-ezTimeLog.ino ================================================ /* * * This is a "z-sketch". It means you can run this sketch on its own, or use it as a sub-sketch of some bigger program * See the M5ez user manual under z-sketches at https://github.com/M5ez/M5ez * * This program sets the ezTime NTP interval to 20 seconds (way too often, use only for demonstration purposes) and * then show the debug log of ezTime so you can see it update its clock. The output will scroll when it reaches the * bottom of the screen. * */ #ifndef MAIN_DECLARED #include #include #include void setup() { ez.begin(); ezTimeLog(); while(true) { ez.yield(); } } void loop() { } #endif // #ifndef MAIN_DECLARED void ezTimeLog() { ez.header.show("ezTime log"); ez.canvas.scroll(true); ezt::setDebug(INFO, ez.canvas); ezt::setInterval(20); #ifdef MAIN_DECLARED ez.buttons.wait("Abort"); ezt::setDebug(NONE, Serial); ezt::setInterval(600); #endif } ================================================ FILE: examples/z-sysInfo/z-sysInfo.ino ================================================ /* * * This is a "z-sketch". It means you can run this sketch on its own, or use it as a sub-sketch of some bigger program * See the M5ez user manual under z-sketches at https://github.com/M5ez/M5ez * */ #ifndef MAIN_DECLARED #include #include void setup() { ez.begin(); sysInfo(); } void loop() { } String exit_button = ""; #else String exit_button = "Exit"; #endif // #ifndef MAIN_DECLARED void sysInfo() { sysInfoPage1(); while(true) { String btn = ez.buttons.poll(); if (btn == "up") sysInfoPage1(); if (btn == "down") sysInfoPage2(); if (btn == "Exit") break; } } #include void sysInfoPage1() { const byte tab = 120; ez.screen.clear(); ez.header.show("System Info (1/2)"); ez.buttons.show("#" + exit_button + "#down"); ez.canvas.font(&FreeSans9pt7b); ez.canvas.lmargin(10); ez.canvas.println(""); ez.canvas.print("CPU freq:"); ez.canvas.x(tab); ez.canvas.println(String(ESP.getCpuFreqMHz()) + " MHz"); ez.canvas.print("CPU cores:"); ez.canvas.x(tab); ez.canvas.println("2"); // :) ez.canvas.print("Chip rev.:"); ez.canvas.x(tab); ez.canvas.println(String(ESP.getChipRevision())); ez.canvas.print("Flash speed:"); ez.canvas.x(tab); ez.canvas.println(String(ESP.getFlashChipSpeed() / 1000000) + " MHz"); ez.canvas.print("Flash size:"); ez.canvas.x(tab); ez.canvas.println(String(ESP.getFlashChipSize() / 1000000) + " MB"); ez.canvas.print("ESP SDK:"); ez.canvas.x(tab); ez.canvas.println(String(ESP.getSdkVersion())); ez.canvas.print("M5ez:"); ez.canvas.x(tab); ez.canvas.println(String(ez.version())); } void sysInfoPage2() { const String SD_Type[5] = {"NONE", "MMC", "SD", "SDHC", "UNKNOWN"}; const byte tab = 140; ez.screen.clear(); ez.header.show("System Info (2/2)"); ez.buttons.show("up#" + exit_button + "#"); ez.canvas.font(&FreeSans9pt7b); ez.canvas.lmargin(10); ez.canvas.println(""); ez.canvas.print("Free RAM:"); ez.canvas.x(tab); ez.canvas.println(String((long)ESP.getFreeHeap()) + " bytes"); ez.canvas.print("Min. free seen:"); ez.canvas.x(tab); ez.canvas.println(String((long)esp_get_minimum_free_heap_size()) + " bytes"); const int sd_type = SD.cardType(); SPIFFS.begin(); ez.canvas.print("SPIFFS size:"); ez.canvas.x(tab); ez.canvas.println(String((long)SPIFFS.totalBytes()) + " bytes"); ez.canvas.print("SPIFFS used:"); ez.canvas.x(tab); ez.canvas.println(String((long)SPIFFS.usedBytes()) + " bytes"); ez.canvas.print("SD type:"); ez.canvas.x(tab); ez.canvas.println(SD_Type[sd_type]); if (sd_type != 0) { ez.canvas.print("SD size:"); ez.canvas.x(tab); ez.canvas.println(String((long)SD.cardSize() / 1000000) + " MB"); ez.canvas.print("SD used:"); ez.canvas.x(tab); ez.canvas.println(String((long)SD.usedBytes() / 1000000) + " MB"); } } ================================================ FILE: keywords.txt ================================================ ez KEYWORD3 begin KEYWORD2 screen KEYWORD3 clear KEYWORD2 background KEYWORD2 header KEYWORD3 show KEYWORD2 shown KEYWORD2 title KEYWORD2 insert KEYWORD2 remove KEYWORD2 position KEYWORD2 draw KEYWORD2 canvas KEYWORD3 reset KEYWORD2 top KEYWORD2 bottom KEYWORD2 left KEYWORD2 right KEYWORD2 height KEYWORD2 width KEYWORD2 print KEYWORD2 println KEYWORD2 printf KEYWORD2 scroll KEYWORD2 wrap KEYWORD2 lmargin KEYWORD2 font KEYWORD2 color KEYWORD2 x KEYWORD2 y KEYWORD2 pos KEYWORD2 buttons KEYWORD3 poll KEYWORD2 wait KEYWORD2 yield KEYWORD2 addEvent KEYWORD2 removeEvent KEYWORD2 msgBox KEYWORD2 textInput KEYWORD2 textBox KEYWORD2 faces KEYWORD3 on KEYWORD2 # m5.lcd wrappers that make fonts easier setFont KEYWORD2 fontHeight KEYWORD2 settings KEYWORD3 menu KEYWORD2 add KEYWORD2 remove KEYWORD2 ReadFlash KEYWORD2 WriteFlash KEYWORD2 indexForSSID KEYWORD2 update KEYWORD2 updateError KEYWORD2 clock KEYWORD3 backlight KEYWORD3 menuObj KEYWORD2 # Generic String object helper functions rightOf KEYWORD2 leftOf KEYWORD2 chopString KEYWORD2 charsFit KEYWORD2 clipString KEYWORD2 isBackExitOrDone KEYWORD2 # ezProgressBar ezProgressBar KEYWORD3 value KEYWORD2 # ezMenu ezMenu KEYWORD3 addItem KEYWORD2 deleteItem KEYWORD2 setCaption KEYWORD2 getItemNum KEYWORD2 buttons KEYWORD2 upOnFirst KEYWORD2 leftOnFirst KEYWORD2 downOnLast KEYWORD2 rightOnLast KEYWORD2 pick KEYWORD2 pickName KEYWORD2 pickCaption KEYWORD2 run KEYWORD2 runOnce KEYWORD2 txtBig KEYWORD2 txtSmall KEYWORD2 txtFont KEYWORD2 imgBackground KEYWORD2 imgFromTop KEYWORD2 imgCaptionFont KEYWORD2 imgCaptionLocation KEYWORD2 imgCaptionColor KEYWORD2 imgCaptionMargins KEYWORD2 # because it was forgotten in the M5Stack keywords.txt # (They only have it as "Lcd", but they made the "lcd" alias.) lcd KEYWORD2 ================================================ FILE: library.json ================================================ { "name": "M5ez", "description": "Complete interface builder for the M5Stack, an ESP32 based mini tinker-computer", "keywords": "m5ez, m5stack, esp32", "authors": { "name": "Rop Gonggrijp", "url": "https://github.com/ropg", "maintainer": true }, "repository": { "type": "git", "url": "https://github.com/M5ez/M5ez" }, "dependencies": [ { "name": "M5Stack" }, { "name": "ezTime" } ], "version": "2.3.0", "framework": "arduino", "platforms": "espressif32", "build": { "libArchive": false } } ================================================ FILE: library.properties ================================================ name=M5ez version=2.3.0 author=Rop Gonggrijp maintainer=Rop Gonggrijp sentence=Complete interface builder for the M5Stack, an ESP32 based mini tinker-computer paragraph=See more on https://github.com/M5ez/M5ez category=Display url=https://github.com/M5ez/M5ez architectures=esp32 includes=M5ez.h depends=ezTime, M5Stack ================================================ FILE: src/M5ez.cpp ================================================ #include #include #ifdef M5EZ_WIFI #include extern "C" { #include "esp_wifi.h" #include "esp_wps.h" } #include // For ez.update #include #endif //M5EZ_WIFI #ifdef M5EZ_CLOCK #include #endif #ifdef M5EZ_BLE #include #include #include #include #endif #include ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // T H E M E // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void ezTheme::begin() { if (!ez.themes.size()) { ezTheme defaultTheme; defaultTheme.add(); } ez.theme = &ez.themes[0]; Preferences prefs; prefs.begin("M5ez", true); // read-only select(prefs.getString("theme", "")); prefs.end(); } void ezTheme::add() { ez.themes.push_back(*this); } bool ezTheme::select(String name) { for (uint8_t n = 0; n < ez.themes.size(); n++) { if (ez.themes[n].name == name) { ez.theme = &ez.themes[n]; return true; } } return false; } void ezTheme::menu() { String orig_name = ez.theme->name; ezMenu thememenu("Theme chooser"); thememenu.txtSmall(); thememenu.buttons("up#Back#select##down#"); for (uint8_t n = 0; n < ez.themes.size(); n++) { thememenu.addItem(ez.themes[n].name); } while(thememenu.runOnce()) { if (thememenu.pick()) { ez.theme->select(thememenu.pickName()); } } if (ez.theme->name != orig_name) { Preferences prefs; prefs.begin("M5ez"); prefs.putString("theme", ez.theme->name); prefs.end(); } return; } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // S C R E E N // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// uint16_t ezScreen::_background; void ezScreen::begin() { _background = ez.theme->background; ez.header.begin(); ez.canvas.begin(); ez.buttons.begin(); } uint16_t ezScreen::background() { return _background; } void ezScreen::clear() { clear(ez.theme->background); } void ezScreen::clear(uint16_t color) { _background = color; ez.header.clear(false); ez.buttons.clear(false); ez.canvas.reset(); m5.lcd.fillRect(0, 0, TFT_W, TFT_H, color); } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // H E A D E R // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// std::vector ezHeader::_widgets; bool ezHeader::_shown; String ezHeader::_title; void ezHeader::begin() { _widgets.clear(); insert(0, "title", 0, _drawTitle, true); _shown = false; } void ezHeader::_recalculate() { bool we_have_leftover = false; uint16_t x = 0; for (uint8_t n = 0; n < _widgets.size(); n++) { // start from left, set x values _widgets[n].x = x; if (_widgets[n].leftover) { // until "leftover" widget (usually "title") we_have_leftover = true; break; } x += _widgets[n].w; } if (we_have_leftover) { // Then start from right setting x values x = TFT_W; for (int8_t n = _widgets.size() - 1; n >= 0 ; n--) { if (_widgets[n].leftover) { // and set width of leftover widget to remainder _widgets[n].w = x - _widgets[n].x; break; } x -= _widgets[n].w; _widgets[n].x = x; } } if (_shown) show(); } void ezHeader::insert(uint8_t position, String name, uint16_t width, void (*function)(uint16_t x, uint16_t w), bool leftover /* = false */) { for (uint8_t n = 0; n < _widgets.size(); n++) { if (_widgets[n].leftover) leftover = false; // ignore leftover if there already is one if (_widgets[n].name == name) return; // fail silently if trying to create two widgets with same name } if (position > _widgets.size()) position = _widgets.size(); // interpret anything over current number of widgets as RIGHTMOST header_widget_t wdgt; wdgt.name = name; wdgt.leftover = leftover; wdgt.x = 0; wdgt.w = width; wdgt.function = function; _widgets.insert(_widgets.begin() + position, wdgt); _recalculate(); } void ezHeader::remove(String name) { for (uint8_t n = 0; n < _widgets.size(); n++) { if (_widgets[n].name == name) { _widgets.erase(_widgets.begin() + n); _recalculate(); } } } uint8_t ezHeader::position(String name) { for (uint8_t n = 0; n < _widgets.size(); n++) { if (_widgets[n].name == name) return n; } return 0; } void ezHeader::show(String t /* = "" */) { _shown = true; if (t != "") _title = t; // only change title if provided m5.lcd.fillRect(0, 0, TFT_W, ez.theme->header_height, ez.theme->header_bgcolor); // Clear header area for (uint8_t n = 0; n < _widgets.size(); n++) { (_widgets[n].function)(_widgets[n].x, _widgets[n].w); // Tell all header widgets to draw } ez.canvas.top(ez.theme->header_height); } void ezHeader::draw(String name) { if (!_shown) return; for (uint8_t n = 0; n < _widgets.size(); n++) { if (_widgets[n].name == name) { (_widgets[n].function)(_widgets[n].x, _widgets[n].w); } } } void ezHeader::clear(bool wipe /* = true */) { if (wipe) m5.lcd.fillRect(0, 0, TFT_W, ez.theme->header_height, ez.theme->background); _shown = false; ez.canvas.top(0); } bool ezHeader::shown() { return _shown; } String ezHeader::title() { // if (_shown) { return _title; // } else { // return ""; // } } void ezHeader::title(String t) { _title = t; if (_shown) draw("title"); } void ezHeader::_drawTitle(uint16_t x, uint16_t w) { m5.lcd.fillRect(x, 0, w, ez.theme->header_height, ez.theme->header_bgcolor); m5.lcd.setTextDatum(TL_DATUM); m5.lcd.setTextColor(ez.theme->header_fgcolor); ez.setFont(ez.theme->header_font); m5.lcd.drawString(ez.clipString(_title, w - ez.theme->header_hmargin), x + ez.theme->header_hmargin, ez.theme->header_tmargin); } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // C A N V A S // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// uint8_t ezCanvas::_y, ezCanvas::_top, ezCanvas::_bottom; uint16_t ezCanvas::_x, ezCanvas::_left, ezCanvas::_right, ezCanvas::_lmargin; const GFXfont* ezCanvas::_font; uint16_t ezCanvas::_color; bool ezCanvas::_wrap, ezCanvas::_scroll; std::vector ezCanvas::_printed; uint32_t ezCanvas::_next_scroll; void ezCanvas::begin() { _left = 0; _right = TFT_W - 1; _top = 0; _bottom = TFT_H - 1; ez.addEvent(ez.canvas.loop); reset(); } void ezCanvas::reset() { _wrap = true; _scroll = false; _font = ez.theme->print_font; _color = ez.theme->print_color; _lmargin = 0; _next_scroll = 0; clear(); } void ezCanvas::clear() { m5.lcd.fillRect(left(), top(), width(), height(), ez.screen.background()); _x = _lmargin; _y = 0; _printed.clear(); } uint8_t ezCanvas::top() { return _top; } uint8_t ezCanvas::bottom() { return _bottom; } uint16_t ezCanvas::left() { return _left; } uint16_t ezCanvas::right() { return _right; } uint8_t ezCanvas::height() { return _bottom - _top + 1;} uint16_t ezCanvas::width() { return _right - _left + 1; } bool ezCanvas::scroll() { return _scroll; } void ezCanvas::scroll(bool s) { _scroll = s; } bool ezCanvas::wrap() { return _wrap; } void ezCanvas::wrap(bool w) { _wrap = w; } uint16_t ezCanvas::lmargin() { return _lmargin; } void ezCanvas::lmargin(uint16_t newmargin) { if (_x < newmargin) _x = newmargin; _lmargin = newmargin; } void ezCanvas::font(const GFXfont* font) { _font = font; } const GFXfont* ezCanvas::font() { return _font; } void ezCanvas::color(uint16_t color) { _color = color; } uint16_t ezCanvas::color() { return _color; } void ezCanvas::pos(uint16_t x, uint8_t y) { _x = x; _y = y; } uint16_t ezCanvas::x() { return _x; } void ezCanvas::x(uint16_t x) { _x = x; } uint8_t ezCanvas::y() { return _y; } void ezCanvas::y(uint8_t y) { _y = y; } void ezCanvas::top(uint8_t newtop) { if (_y < newtop) _y = newtop; _top = newtop; } void ezCanvas::bottom(uint8_t newbottom) { _bottom = newbottom; } size_t ezCanvas::write(uint8_t c) { String tmp = String((char)c); _print(tmp); return 1; } size_t ezCanvas::write(const char *str) { String tmp = String(str); _print(tmp); return sizeof(str); } size_t ezCanvas::write(const uint8_t *buffer, size_t size) { String tmp; tmp.reserve(size); for (uint16_t n = 0; n < size ; n++) tmp += (char)*(buffer + n); _print(tmp); return size; } uint16_t ezCanvas::loop() { if (_next_scroll && millis() >= _next_scroll) { ez.setFont(_font); uint8_t h = ez.fontHeight(); uint8_t scroll_by = _y - _bottom; if (_x > _lmargin) scroll_by += h; const GFXfont* hold_font = _font; const uint16_t hold_color = _color; for (uint16_t n = 0; n < _printed.size(); n++) { _printed[n].y -= scroll_by; } m5.lcd.fillRect(left(), top(), width(), height(), ez.screen.background()); // m5.lcd.fillRect(0, 0, 320, 240, ez.screen.background()); for (uint16_t n = 0; n < _printed.size(); n++) { if (_printed[n].y >= _top) { if (_printed[n].font != _font) ez.setFont(_printed[n].font); if (_printed[n].color != _color) m5.lcd.setTextColor(_printed[n].color); m5.lcd.drawString(_printed[n].text, _printed[n].x, _printed[n].y); } } _y -= scroll_by; _font = hold_font; _color = hold_color; _next_scroll = 0; std::vector clean_copy; for (uint16_t n = 0; n < _printed.size(); n++) { if (_printed[n].y >= 0) clean_copy.push_back(_printed[n]); } _printed = clean_copy; Serial.println(ESP.getFreeHeap()); } return 10; } void ezCanvas::_print(String text) { ez.setFont(_font); m5.lcd.setTextDatum(TL_DATUM); m5.lcd.setTextColor(_color, ez.theme->background); uint8_t h = ez.fontHeight(); if (_y + h > _bottom) { if (!_scroll) return; if (!_next_scroll) _next_scroll = millis() + 200; } int16_t crlf = text.indexOf("\r\n"); String remainder = ""; if (crlf != -1) { remainder = text.substring(crlf + 2); text = text.substring(0,crlf); } if (_x + m5.lcd.textWidth(text) <= _right) { if (text != "") _putString(text); } else { for (uint16_t n = 0; n < text.length(); n++) { if (_x + m5.lcd.textWidth(text.substring(0, n + 1)) > _right) { if (n) { _putString(text.substring(0, n)); } if (_wrap) { _x = _lmargin; _y += h; _print(text.substring(n)); } break; } } } if (crlf != -1) { _x = _lmargin; _y += h; if (remainder != "") _print (remainder); } } void ezCanvas::_putString(String text) { ez.setFont(_font); uint8_t h = ez.fontHeight(); if (_scroll) { print_t p; p.font = _font; p.color = _color; p.x = _x; p.y = _y; p.text = text; _printed.push_back(p); } if (_y + h > _bottom) { _x += m5.lcd.textWidth(text); } else{ _x += m5.lcd.drawString(text, _x, _y); } } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // B U T T O N S // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// String ezButtons::_btn_a_s, ezButtons::_btn_a_l; String ezButtons::_btn_b_s, ezButtons::_btn_b_l; String ezButtons::_btn_c_s, ezButtons::_btn_c_l; String ezButtons::_btn_ab, ezButtons::_btn_bc, ezButtons::_btn_ac; bool ezButtons::_key_release_wait; bool ezButtons::_lower_button_row, ezButtons::_upper_button_row; void ezButtons::begin() { clear(false); } void ezButtons::show(String buttons) { buttons.trim(); std::vector buttonVector; ez.chopString(buttons, "#", buttonVector, true); switch (buttonVector.size()) { case 1: _drawButtons("", "", buttons, "", "", "", "", "", ""); break; case 3: // Three elements, so shortpress only _drawButtons(buttonVector[0], "", buttonVector[1], "", buttonVector[2], "", "", "", ""); break; case 6: // Six elements, so all buttons long and short _drawButtons(buttonVector[0], buttonVector[1], buttonVector[2], buttonVector[3], buttonVector[4], buttonVector[5], "", "", ""); break; case 9: // Nine elements, so all buttons long and short plus the top row of three multi-keys _drawButtons(buttonVector[0], buttonVector[1], buttonVector[2], buttonVector[3], buttonVector[4], buttonVector[5], buttonVector[6], buttonVector[7], buttonVector[8]); break; } } void ezButtons::clear(bool wipe /* = true */) { if (wipe && (_lower_button_row || _upper_button_row)) { m5.lcd.fillRect(0, ez.canvas.bottom() + 1, TFT_H - ez.canvas.bottom() - 1, TFT_W, ez.screen.background()); } _btn_a_s = _btn_a_l = _btn_b_s = _btn_b_l = _btn_c_s = _btn_c_l = ""; _btn_ab = _btn_bc = _btn_ac = ""; _lower_button_row = false; _upper_button_row = false; ez.canvas.bottom(TFT_H - 1); } void ezButtons::_drawButtons(String btn_a_s, String btn_a_l, String btn_b_s, String btn_b_l, String btn_c_s, String btn_c_l, String btn_ab, String btn_bc, String btn_ac) { int16_t btnwidth = int16_t( (TFT_W - 4 * ez.theme->button_gap ) / 3); // See if any buttons are used on the bottom row if (btn_a_s != "" || btn_a_l != "" || btn_b_s != "" || btn_b_l != "" || btn_c_s != "" || btn_c_l != "") { if (!_lower_button_row) { // If the lower button row wasn't there before, clear the area first m5.lcd.fillRect(0, TFT_H - ez.theme->button_height - ez.theme->button_gap, TFT_W, ez.theme->button_height + ez.theme->button_gap, ez.screen.background()); } // Then draw the three buttons there. (drawButton erases single buttons if unused.) if (_btn_a_s != btn_a_s || _btn_a_l != btn_a_l) { _drawButton(1, ez.rightOf(btn_a_s, "|", true), ez.rightOf(btn_a_l, "|", true), ez.theme->button_gap, btnwidth); _btn_a_s = btn_a_s; _btn_a_l = btn_a_l; } if (_btn_b_s != btn_b_s || _btn_b_l != btn_b_l) { _drawButton(1, ez.rightOf(btn_b_s, "|", true), ez.rightOf(btn_b_l, "|", true), btnwidth + 2 * ez.theme->button_gap, btnwidth); _btn_b_s = btn_b_s; _btn_b_l = btn_b_l; } if (_btn_c_s != btn_c_s || _btn_c_l != btn_c_l) { _drawButton(1, ez.rightOf(btn_c_s, "|", true), ez.rightOf(btn_c_l, "|", true), 2 * btnwidth + 3 * ez.theme->button_gap, btnwidth); _btn_c_s = btn_c_s; _btn_c_l = btn_c_l; } _lower_button_row = true; } else { if (_lower_button_row) { // If there was a lower button row before and it's now gone, clear the area m5.lcd.fillRect(0, TFT_H - ez.theme->button_height - ez.theme->button_gap, TFT_W, ez.theme->button_height + ez.theme->button_gap, ez.screen.background()); _btn_a_s = _btn_a_l = _btn_b_s = _btn_b_l = _btn_c_s = _btn_c_l = ""; _lower_button_row = false; } } //Now check if there are multi-buttons used (top row) if (btn_ab != "" || btn_bc != "" || btn_ac != "") { if (!_upper_button_row) { // If the upper button row wasn't there before, clear the area first m5.lcd.fillRect(0, TFT_H - 2 * (ez.theme->button_height + ez.theme->button_gap), TFT_W, ez.theme->button_height + ez.theme->button_gap, ez.screen.background()); } // Then draw the buttons if (_btn_ab != btn_ab) { _drawButton(2, ez.rightOf(btn_ab, "|", true), "", ez.theme->button_gap + (btnwidth / 2), btnwidth); _btn_ab = btn_ab; } if (_btn_bc != btn_bc) { _drawButton(2, ez.rightOf(btn_bc, "|", true), "", (2 * ez.theme->button_gap) + btnwidth + (btnwidth / 2), btnwidth); _btn_bc = btn_bc; } if (_btn_ac != btn_ac) { // Two halves of the same button // ugly in code, prettier on the screen: making the buttons square on the screen edges to signal wrap-around m5.lcd.fillRect(0, TFT_H - 2 * ez.theme->button_height - ez.theme->button_gap, btnwidth / 4, ez.theme->button_height, ez.theme->button_bgcolor_t); m5.lcd.fillRect(TFT_W - (btnwidth / 4), TFT_H - 2 * ez.theme->button_height - ez.theme->button_gap, btnwidth / 4, ez.theme->button_height, ez.theme->button_bgcolor_t); _drawButton(2, ez.rightOf(btn_ac, "|", true), "", (3 * ez.theme->button_gap) + (2 * btnwidth) + (btnwidth / 2), (btnwidth / 2)); _drawButton(2, ez.rightOf(btn_ac, "|", true), "", 0, (btnwidth / 2)); _btn_ac = btn_ac; } _upper_button_row = true; } else { if (_upper_button_row) { // If there was an upper button row before and it's now gone, clear the area m5.lcd.fillRect(0, TFT_H - 2 * (ez.theme->button_height + ez.theme->button_gap), TFT_W, ez.theme->button_height + ez.theme->button_gap, ez.screen.background()); _btn_ab = _btn_bc = _btn_ac = ""; _upper_button_row = false; } } uint8_t button_rows = _upper_button_row ? 2 : (_lower_button_row ? 1 : 0); ez.canvas.bottom(TFT_H - (button_rows * (ez.theme->button_height + ez.theme->button_gap))); } void ezButtons::_drawButton(int16_t row, String text_s, String text_l, int16_t x, int16_t w) { // row = 1 for lower and 2 for upper row int16_t y, bg_color; if (row == 1) { y = TFT_H - ez.theme->button_height; bg_color = ez.theme->button_bgcolor_b; } else { y = TFT_H - 2 * ez.theme->button_height - ez.theme->button_gap; bg_color = ez.theme->button_bgcolor_t; } if (text_s != "" || text_l != "") { ez.setFont(ez.theme->button_font); m5.lcd.fillRoundRect(x, y, w, ez.theme->button_height, ez.theme->button_radius, bg_color); if (text_l != "") { _drawButtonString(text_s, x + ez.theme->button_hmargin, y + ez.theme->button_tmargin, ez.theme->button_fgcolor, TL_DATUM); } else { _drawButtonString(text_s, x + int16_t(w / 2), y + ez.theme->button_tmargin, ez.theme->button_fgcolor, TC_DATUM); } _drawButtonString(text_l, x + w - ez.theme->button_hmargin, y + ez.theme->button_tmargin, ez.theme->button_longcolor, TR_DATUM); } else { m5.lcd.fillRect(x, y, w, ez.theme->button_height, ez.screen.background()); } } void ezButtons::_drawButtonString(String text, int16_t x, int16_t y, uint16_t color, int16_t datum) { if (text == "~") return; if (text == "up" || text == "down" || text == "left" || text == "right") { y+=2; int16_t w = m5.lcd.textWidth("A") * 1.2; int16_t h = ez.fontHeight() * 0.6; if (datum == TR_DATUM) x = x - w; if (datum == TC_DATUM) x = x - w/2; if (text == "up") m5.lcd.fillTriangle(x, y + h, x + w, y + h, x + w/2 ,y , color); if (text == "down") m5.lcd.fillTriangle(x, y, x + w, y, x + w/2 ,y + h, color); if (text == "right") m5.lcd.fillTriangle(x, y, x, y + h, x + w, y + h/2, color); if (text == "left") m5.lcd.fillTriangle(x + w, y, x + w, y + h, x, y + h/2, color); } else { m5.lcd.setTextColor(color); m5.lcd.setTextDatum(datum); m5.lcd.drawString(text, x, y); } } void ezButtons::releaseWait() { _key_release_wait = true; } String ezButtons::poll() { String keystr = ""; ez.yield(); if (!_key_release_wait) { if (_btn_ab != "" && m5.BtnA.isPressed() && m5.BtnB.isPressed() ) { keystr = ez.leftOf(_btn_ab, "|", true); _key_release_wait = true; } if (_btn_bc != "" && m5.BtnB.isPressed() && m5.BtnC.isPressed() ) { keystr = ez.leftOf(_btn_bc, "|", true); _key_release_wait = true; } if (_btn_ac != "" && m5.BtnA.isPressed() && m5.BtnC.isPressed() ) { keystr = ez.leftOf(_btn_ac, "|", true); _key_release_wait = true; } if (_btn_a_l != "" && m5.BtnA.pressedFor(ez.theme->longpress_time) ) { keystr = ez.leftOf(_btn_a_l, "|", true); _key_release_wait = true; } if (_btn_a_s != "" && m5.BtnA.wasReleased() ) { keystr = ez.leftOf(_btn_a_s, "|", true); } if (_btn_b_l != "" && m5.BtnB.pressedFor(ez.theme->longpress_time) ) { keystr = ez.leftOf(_btn_b_l, "|", true); _key_release_wait = true; } if (_btn_b_s != "" && m5.BtnB.wasReleased() ) { keystr = ez.leftOf(_btn_b_s, "|", true); } if (_btn_c_l != "" && m5.BtnC.pressedFor(ez.theme->longpress_time) ) { keystr = ez.leftOf(_btn_c_l, "|", true); _key_release_wait = true; } if (_btn_c_s != "" && m5.BtnC.wasReleased() ) { keystr = ez.leftOf(_btn_c_s, "|", true); } } if (m5.BtnA.isReleased() && m5.BtnB.isReleased() && m5.BtnC.isReleased() ) { _key_release_wait = false; } if (keystr == "~") keystr = ""; #ifdef M5EZ_BACKLIGHT if (keystr != "") ez.backlight.activity(); #endif return keystr; } String ezButtons::wait(String buttons /* = "" */) { if (buttons != "") show(buttons); String keystr = ""; while (keystr == "") { keystr = ez.buttons.poll(); } return keystr; } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // S E T T I N G S // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ezMenu ezSettings::menuObj ("Settings menu"); void ezSettings::begin() { menuObj.txtSmall(); menuObj.buttons("up#Back#select##down#"); #ifdef M5EZ_WIFI ez.wifi.begin(); #endif #ifdef M5EZ_BLE ez.ble.begin(); #endif #ifdef M5EZ_BATTERY ez.battery.begin(); #endif #ifdef M5EZ_CLOCK ez.clock.begin(); #endif #ifdef M5EZ_BACKLIGHT ez.backlight.begin(); #endif #ifdef M5EZ_FACES ez.faces.begin(); #endif if (ez.themes.size() > 1) { ez.settings.menuObj.addItem("Theme chooser", ez.theme->menu); } ez.settings.menuObj.addItem("Factory defaults", ez.settings.defaults); } void ezSettings::menu() { menuObj.run(); } void ezSettings::defaults() { if (ez.msgBox("Reset to defaults?", "Are you sure you want to reset all settings to factory defaults?", "yes##no") == "yes") { Preferences prefs; prefs.begin("M5ez"); prefs.clear(); prefs.end(); ESP.restart(); } } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // B A C K L I G H T // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifdef M5EZ_BACKLIGHT uint8_t ezBacklight::_brightness; uint8_t ezBacklight::_inactivity; uint32_t ezBacklight::_last_activity; bool ezBacklight::_backlight_off = false; void ezBacklight::begin() { ez.addEvent(ez.backlight.loop); ez.settings.menuObj.addItem("Backlight settings", ez.backlight.menu); Preferences prefs; prefs.begin("M5ez", true); // read-only _brightness = prefs.getUChar("brightness", 128); _inactivity = prefs.getUChar("inactivity", NEVER); prefs.end(); m5.lcd.setBrightness(_brightness); } void ezBacklight::menu() { uint8_t start_brightness = _brightness; uint8_t start_inactivity = _inactivity; ezMenu blmenu("Backlight settings"); blmenu.txtSmall(); blmenu.buttons("up#Back#select##down#"); blmenu.addItem("Backlight brightness"); blmenu.addItem("Inactivity timeout"); while(true) { switch (blmenu.runOnce()) { case 1: { ezProgressBar bl ("Backlight brightness", "Set brightness", "left#ok#right"); while (true) { String b = ez.buttons.poll(); if (b == "right" && _brightness <= 240) _brightness += 16; if (!_brightness) _brightness = 255; if (b == "left" && _brightness > 16) _brightness -= 16; if (_brightness == 239) _brightness = 240; bl.value((float)(_brightness / 2.55)); m5.lcd.setBrightness(_brightness); if (b == "ok") break; } } break; case 2: { String disp_val; while (true) { if (!_inactivity) { disp_val = "Backlight will not turn off"; } else if (_inactivity == 1) { disp_val = "Backlight will turn off after 30 seconds of inactivity"; } else if (_inactivity == 2) { disp_val = "Backlight will turn off after a minute of inactivity"; } else { disp_val = "Backlight will turn off after " + String(_inactivity / 2) + ((_inactivity % 2) ? ".5 " : "") + " minutes of inactivity"; } ez.msgBox("Inactivity timeout", disp_val, "-#--#ok##+#++", false); String b = ez.buttons.wait(); if (b == "-" && _inactivity) _inactivity--; if (b == "+" && _inactivity < 254) _inactivity++; if (b == "--") { if (_inactivity < 20) { _inactivity = 0; } else { _inactivity -= 20; } } if (b == "++") { if (_inactivity > 234) { _inactivity = 254; } else { _inactivity += 20; } } if (b == "ok") break; } } break; case 0: if (_brightness != start_brightness || _inactivity != start_inactivity) { Preferences prefs; prefs.begin("M5ez"); prefs.putUChar("brightness", _brightness); prefs.putUChar("inactivity", _inactivity); prefs.end(); } return; // } } } void ezBacklight::inactivity(uint8_t half_minutes) { if (half_minutes == USER_SET) { Preferences prefs; prefs.begin("M5ez", true); _inactivity = prefs.getUShort("inactivity", 0); prefs.end(); } else { _inactivity = half_minutes; } } void ezBacklight::activity() { _last_activity = millis(); } uint16_t ezBacklight::loop() { if (!_backlight_off && _inactivity) { if (millis() > _last_activity + 30000 * _inactivity) { _backlight_off = true; m5.lcd.setBrightness(0); while (true) { if (m5.BtnA.wasPressed() || m5.BtnB.wasPressed() || m5.BtnC.wasPressed()) break; ez.yield(); delay(10); } ez.buttons.releaseWait(); // Make sure the key pressed to wake display gets ignored m5.lcd.setBrightness(_brightness); activity(); _backlight_off = false; } } return 1000; } #endif ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // C L O C K // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifdef M5EZ_CLOCK Timezone ezClock::tz; bool ezClock::_on; String ezClock::_timezone; bool ezClock::_clock12; bool ezClock::_am_pm; String ezClock::_datetime; bool ezClock::_starting = true; void ezClock::begin() { Preferences prefs; prefs.begin("M5ez", true); // read-only _on = prefs.getBool("clock_on", true); _timezone = prefs.getString("timezone", "GeoIP"); _clock12 = prefs.getBool("clock12", false); _am_pm = prefs.getBool("ampm", false); prefs.end(); ez.settings.menuObj.addItem("Clock settings", ez.clock.menu); ez.addEvent(ez.clock.loop); ez.clock.restart(); } void ezClock::restart() { ez.header.remove("clock"); uint8_t length; if (_on) { if (_clock12) { if (_am_pm) { _datetime = "g:ia"; length = 7; } else { _datetime = "g:i"; length = 5; } } else { _datetime = "H:i"; length = 5; } ez.setFont(ez.theme->clock_font); uint8_t width = length * m5.lcd.textWidth("5") + ez.theme->header_hmargin * 2; ez.header.insert(RIGHTMOST, "clock", width, ez.clock.draw); } } void ezClock::menu() { bool on_orig = _on; bool clock12_orig = _clock12; bool am_pm_orig = _am_pm; String tz_orig = _timezone; while(true) { ezMenu clockmenu("Clock settings"); clockmenu.txtSmall(); clockmenu.buttons("up#Back#select##down#"); clockmenu.addItem("on|Display clock\t" + (String)(_on ? "on" : "off")); if (_on) { clockmenu.addItem("tz|Timezone\t" + _timezone); clockmenu.addItem("1224|12/24 hour\t" + (String)(_clock12 ? "12" : "24")); if (_clock12) { clockmenu.addItem("ampm|am/pm indicator\t" + (String)(_am_pm ? "on" : "off")); } } switch (clockmenu.runOnce()) { case 1: _on = !_on; ez.clock.restart(); break; case 2: _timezone = ez.textInput("Enter timezone"); if (_timezone == "") _timezone = "GeoIP"; if (tz.setLocation(_timezone)) _timezone = tz.getOlsen(); break; case 3: _clock12 = !_clock12; ez.clock.restart(); break; case 4: _am_pm = !_am_pm; ez.clock.restart(); break; case 0: if (_am_pm != am_pm_orig || _clock12 != clock12_orig || _on != on_orig || _timezone != tz_orig) { _writePrefs(); } return; // } } } uint16_t ezClock::loop() { ezt::events(); if (_starting && timeStatus() != timeNotSet) { _starting = false; if (tz.setLocation(_timezone)) { if (tz.getOlsen() != _timezone) { _timezone = tz.getOlsen(); _writePrefs(); } } ez.header.draw("clock"); } else { if (_on && ezt::minuteChanged()) ez.header.draw("clock"); } return 250; } void ezClock::draw(uint16_t x, uint16_t w) { if (_starting) return; m5.lcd.fillRect(x, 0, w, ez.theme->header_height, ez.theme->header_bgcolor); ez.setFont(ez.theme->clock_font); m5.lcd.setTextColor(ez.theme->header_fgcolor); m5.lcd.setTextDatum(TL_DATUM); m5.lcd.drawString(tz.dateTime(_datetime), x + ez.theme->header_hmargin, ez.theme->header_tmargin + 2); } void ezClock::_writePrefs() { Preferences prefs; prefs.begin("M5ez"); prefs.putBool("clock_on", _on); prefs.putString("timezone", _timezone); prefs.putBool("clock12", _clock12); prefs.putBool("ampm", _am_pm); prefs.end(); } bool ezClock::waitForSync(const uint16_t timeout /* = 0 */) { unsigned long start = millis(); ez.msgBox("Clock sync", "Waiting for clock synchronisation", "", false); while (ezt::timeStatus() != timeSet) { if ( timeout && (millis() - start) / 1000 > timeout ) return false; delay(25); ez.yield(); } return true; } #endif ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // F A C E S // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifdef M5EZ_FACES bool ezFACES::_on; void ezFACES::begin() { Preferences prefs; prefs.begin("M5ez", true); // read-only _on = prefs.getBool("faces_on", false); prefs.end(); if (_on) { Wire.begin(); pinMode(5, INPUT); digitalWrite(5,HIGH); Wire.flush(); } ez.settings.menuObj.addItem("FACES keyboard", ez.faces.menu); } void ezFACES::menu() { bool start_state = _on; while (true) { ezMenu facesmenu ("FACES keyboard"); facesmenu.txtSmall(); facesmenu.buttons("up#Back#select##down#"); facesmenu.addItem("on|FACES keyboard\t" + (String)(_on ? "attached" : "not attached")); switch (facesmenu.runOnce()) { case 1: _on = !_on; if (_on) { pinMode(5, INPUT); digitalWrite(5,HIGH); Wire.flush(); } break; case 0: if (_on != start_state) { Preferences prefs; prefs.begin("M5ez"); prefs.putBool("faces_on", _on); prefs.end(); } return; // } } } String ezFACES::poll() { if (digitalRead(5) == LOW) { Wire.requestFrom(0x88, 1); String out = ""; while (Wire.available()) { out += (char) Wire.read(); } #ifdef M5EZ_BACKLIGHT ez.backlight.activity(); #endif return out; } return ""; } bool ezFACES::on() { return _on; } #endif ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // W I F I // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifdef M5EZ_WIFI WifiState_t ezWifi::_state; uint8_t ezWifi::_current_from_scan; uint32_t ezWifi::_wait_until; uint32_t ezWifi::_widget_time; std::vector ezWifi::networks; ezProgressBar* ezWifi::_update_progressbar; String ezWifi::_update_error; bool ezWifi::autoConnect; #ifdef M5EZ_WPS WiFiEvent_t ezWifi::_WPS_event; String ezWifi::_WPS_pin; bool ezWifi::_WPS_new_event; #endif void ezWifi::begin() { #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: Initialising"); #endif WiFi.mode(WIFI_MODE_STA); WiFi.setAutoConnect(false); // We have our own multi-AP version of this WiFi.setAutoReconnect(false); // So we turn off the ESP32's versions WiFi.setHostname("M5Stack"); ez.wifi.readFlash(); _state = EZWIFI_IDLE; const uint8_t cutoffs[] = { 0, 20, 40, 70 }; ez.settings.menuObj.addItem("Wifi settings", ez.wifi.menu); ez.header.insert(RIGHTMOST, "wifi", sizeof(cutoffs) * (ez.theme->signal_bar_width + ez.theme->signal_bar_gap) + 2 * ez.theme->header_hmargin, ez.wifi._drawWidget); // For handling issue #50, when initial connection attempt fails in this specific mode but will succeed if tried again. WiFi.onEvent([](WiFiEvent_t event, WiFiEventInfo_t info){ if(WIFI_REASON_ASSOC_FAIL == info.disconnected.reason) { #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: Special case: Disconnect w/ ASSOC_FAIL. Setting _state to EZWIFI_SCANNING;"); #endif _state = EZWIFI_SCANNING; } }, WiFiEvent_t::SYSTEM_EVENT_STA_DISCONNECTED); ez.addEvent(ez.wifi.loop); } void ezWifi::_drawWidget(uint16_t x, uint16_t w) { const uint8_t cutoffs[] = { 0, 20, 40, 70 }; uint8_t max_bars = sizeof(cutoffs); uint8_t bars; uint16_t left_offset = x + ez.theme->header_hmargin; bars = 0; if (WiFi.isConnected()) { uint8_t signal = map(100 + WiFi.RSSI(), 5, 90, 0, 100); for (uint8_t n = 0; n < sizeof(cutoffs); n++) { // Determine how many bars signal is. if (signal >= cutoffs[n]) bars = n + 1; } } uint8_t top = ez.theme->header_height / 10; uint8_t max_len = ez.theme->header_height * 0.8; uint8_t this_len; for (uint8_t n = 0; n < max_bars; n++) { this_len = ((float) (n + 1) / max_bars) * max_len; m5.lcd.fillRect(left_offset + n * (ez.theme->signal_bar_width + ez.theme->signal_bar_gap), top + max_len - this_len, ez.theme->signal_bar_width, this_len, (n + 1 <= bars ? ez.theme->header_fgcolor : ez.theme->header_bgcolor) ); } } void ezWifi::add(String ssid, String key){ WifiNetwork_t new_net; new_net.SSID = ssid; new_net.key = key; networks.push_back(new_net); } bool ezWifi::remove(int8_t index) { if (index < 0 || index >= networks.size()) return false; networks.erase(networks.begin() + index); return true; } bool ezWifi::remove(String ssid) { return remove(indexForSSID(ssid)); } int8_t ezWifi::indexForSSID(String ssid) { for (uint8_t n = 0; n < networks.size(); n++) { if (networks[n].SSID == ssid) return n; } return -1; } void ezWifi::readFlash() { Preferences prefs; networks.clear(); prefs.begin("M5ez", true); // true: read-only autoConnect = prefs.getBool("autoconnect_on", true); #ifdef M5EZ_WIFI_DEBUG Serial.println("wifiReadFlash: Autoconnect is " + (String)(autoConnect ? "ON" : "OFF")); #endif WifiNetwork_t new_net; String idx; uint8_t index = 1; while (true) { idx = "SSID" + (String)index; String ssid = prefs.getString(idx.c_str(), ""); idx = "key" + (String)index; String key = prefs.getString(idx.c_str(), ""); if (ssid != "") { new_net.SSID = ssid; new_net.key = key; networks.push_back(new_net); #ifdef M5EZ_WIFI_DEBUG Serial.println("wifiReadFlash: Read ssid:" + ssid + " key:" + key); #endif index++; } else { break; } } prefs.end(); } void ezWifi::writeFlash() { Preferences prefs; String idx; uint8_t n = 1; prefs.begin("M5ez", false); // Remove unknown number of items from NVS, sequentially named SSID1 to SSIDN, and key1 to keyN where N // is the total number of WiFi Networks stored (which may be different than networks.size() at this point.) while (true) { idx = "SSID" + (String)n; if(!prefs.remove(idx.c_str())) break; idx = "key" + (String)n; prefs.remove(idx.c_str()); n++; } prefs.putBool("autoconnect_on", autoConnect); #ifdef M5EZ_WIFI_DEBUG Serial.println("wifiWriteFlash: Autoconnect is " + (String)(autoConnect ? "ON" : "OFF")); #endif for (n = 0; n < networks.size(); n++) { idx = "SSID" + (String)(n + 1); prefs.putString(idx.c_str(), networks[n].SSID); if (networks[n].key != "") { idx = "key" + (String)(n + 1); prefs.putString(idx.c_str(), networks[n].key); #ifdef M5EZ_WIFI_DEBUG Serial.println("wifiWriteFlash: Wrote ssid:" + networks[n].SSID + " key:" + networks[n].key); #endif } } prefs.end(); } void ezWifi::menu() { _state = EZWIFI_AUTOCONNECT_DISABLED; #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: Disabling autoconnect while in Wifi menu."); #endif ezMenu wifimain ("Wifi settings"); wifimain.txtSmall(); wifimain.addItem("onoff | Autoconnect\t" + (String)(autoConnect ? "ON" : "OFF"), NULL, _onOff); wifimain.addItem("connection | " + (String)(WiFi.isConnected() ? "Connected: " + WiFi.SSID() : "Join a network"), NULL, _connection); wifimain.addItem("Manage autoconnects", _manageAutoconnects); wifimain.buttons("up#Back#select##down#"); wifimain.run(); _state = EZWIFI_IDLE; #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: Enabling autoconnect exiting Wifi menu."); #endif } bool ezWifi::_onOff(ezMenu* callingMenu) { autoConnect = !autoConnect; callingMenu->setCaption("onoff", "Autoconnect\t" + (String)(autoConnect ? "ON" : "OFF")); ez.wifi.writeFlash(); return true; } void ezWifi::_manageAutoconnects() { ezMenu autoconnect("Managing autoconnects"); if (!networks.size()) { ez.msgBox("No autoconnects", "You have no saved autoconnect networks.", "OK"); return; } for (uint8_t n = 0; n < networks.size(); n++) { autoconnect.addItem(networks[n].SSID, NULL, _autoconnectSelected); } autoconnect.txtSmall(); autoconnect.buttons("up#Back#Forget##down#"); autoconnect.run(); } bool ezWifi::_autoconnectSelected(ezMenu* callingMenu) { if (callingMenu->pickButton() == "Forget") { if (ez.msgBox("Forgetting wifi network", "Are you sure you want | to forget wifi network | " + callingMenu->pickName() + " ?", "Yes##No") == "Yes") { ez.wifi.remove(callingMenu->pick() - 1); callingMenu->deleteItem(callingMenu->pick()); ez.wifi.writeFlash(); } } return false; } bool ezWifi::_connection(ezMenu* callingMenu) { if (WiFi.isConnected()) { const uint8_t tab = 140; ez.screen.clear(); ez.header.show("Current wifi connection"); ez.canvas.font(&FreeSans9pt7b); ez.canvas.lmargin(10); ez.canvas.y(ez.canvas.top() + 5); ez.canvas.print("SSID:"); ez.canvas.x(tab); ez.canvas.println(WiFi.SSID()); ez.canvas.print("Key:"); ez.canvas.x(tab); ez.canvas.println(WiFi.psk()); ez.canvas.print("My IP:"); ez.canvas.x(tab); ez.canvas.println(WiFi.localIP().toString()); ez.canvas.print("My MAC:"); ez.canvas.x(tab); ez.canvas.println(WiFi.macAddress()); ez.canvas.print("My hostname:"); ez.canvas.x(tab); ez.canvas.println(WiFi.getHostname()); ez.canvas.print("Router IP:"); ez.canvas.x(tab); ez.canvas.println(WiFi.gatewayIP().toString()); ez.canvas.print("Router BSSID:"); ez.canvas.x(tab); ez.canvas.println(WiFi.BSSIDstr()); ez.canvas.print("DNS IP:"); ez.canvas.x(tab); ez.canvas.println(WiFi.dnsIP(0).toString()); if (WiFi.dnsIP(1)) { ez.canvas.x(tab); ez.canvas.println(WiFi.dnsIP(1).toString()); } String pressed = ez.buttons.wait("Back#Disconnect#"); if (pressed == "Back") return true; if (pressed == "Disconnect") { WiFi.disconnect(); while(WiFi.isConnected()) {} } } else { String SSID = "", key = ""; ezMenu joinmenu("Joining a network"); joinmenu.txtSmall(); joinmenu.addItem("Scan and join"); joinmenu.addItem("SmartConfig"); #ifdef M5EZ_WPS joinmenu.addItem("WPS Button"); joinmenu.addItem("WPS Pin Code"); #endif joinmenu.buttons("up#Back#select##down#"); joinmenu.runOnce(); if (joinmenu.pickName() == "Scan and join") { ez.msgBox("WiFi setup menu", "Scanning ...", ""); WiFi.disconnect(); WiFi._setStatus(WL_IDLE_STATUS); delay(100); int16_t n = WiFi.scanNetworks(); if (n == 0) { ez.msgBox("WiFi setup menu", "No networks found", "OK"); } else { ezMenu networks("Select your netork"); networks.txtSmall(); for (uint16_t i = 0; i < n; ++i) { // No duplicates (multiple BSSIDs on same SSID) // because we're only picking an SSID here if (!networks.getItemNum(WiFi.SSID(i))) { networks.addItem(WiFi.SSID(i)); } } networks.buttons("up#Back#select##down#"); if (networks.runOnce()) { SSID = networks.pickName(); if ( WiFi.encryptionType(networks.pick() - 1) == WIFI_AUTH_OPEN) { WiFi.mode(WIFI_MODE_STA); WiFi.begin(SSID.c_str()); } else { key = ez.textInput("Enter wifi password"); WiFi.mode(WIFI_MODE_STA); WiFi.begin(SSID.c_str(), key.c_str()); } ez.msgBox("WiFi setup menu", "Connecting ...", "Abort", false); String button; int16_t status; while (button = ez.buttons.poll()) { if (button == "Abort") { WiFi.disconnect(); break; } status = WiFi.status(); if (status == WL_CONNECTED) { break; } if (status == WL_CONNECT_FAILED || status == WL_NO_SSID_AVAIL) { ez.msgBox("WiFi setup menu", "Connect failed. | | (Wrong password?)", "OK"); break; } } } WiFi.scanDelete(); } } if (joinmenu.pickName() == "SmartConfig") { ez.msgBox("SmartConfig setup", "Waiting for SmartConfig", "Abort", false); WiFi.mode(WIFI_MODE_STA); WiFi.beginSmartConfig(); bool done_already = false; while (!WiFi.isConnected()) { if (ez.buttons.poll() == "Abort") { WiFi.stopSmartConfig(); break; } if (WiFi.smartConfigDone() && !done_already) { ez.msgBox("SmartConfig setup", "SmartConfig received | Connecting ...", "Abort", false); done_already = true; } } } #ifdef M5EZ_WPS if (joinmenu.pickName().substring(0,3) == "WPS") { ez.msgBox("WPS setup", "Waiting for WPS", "Abort", false); WiFi.mode(WIFI_MODE_STA); static esp_wps_config_t config; config.crypto_funcs = &g_wifi_default_wps_crypto_funcs; strcpy(config.factory_info.manufacturer, "ESPRESSIF"); strcpy(config.factory_info.model_number, "ESP32"); strcpy(config.factory_info.model_name, "ESPRESSIF IOT"); strcpy(config.factory_info.device_name, "ESP STATION"); if (joinmenu.pickName() == "WPS Button") { config.wps_type = WPS_TYPE_PBC; } else { config.wps_type = WPS_TYPE_PIN; } WiFi.onEvent(_WPShelper); esp_wifi_wps_enable(&config); esp_wifi_wps_start(0); _WPS_new_event = false; while (!WiFi.isConnected()) { if (ez.buttons.poll() == "Abort") { esp_wifi_wps_disable(); break; } if (_WPS_new_event) { switch(_WPS_event) { case SYSTEM_EVENT_STA_WPS_ER_SUCCESS: ez.msgBox("WPS setup", "WPS successful | Connecting ...", "Abort", false); esp_wifi_wps_disable(); delay(10); WiFi.begin(); break; case SYSTEM_EVENT_STA_WPS_ER_FAILED: case SYSTEM_EVENT_STA_WPS_ER_TIMEOUT: ez.msgBox("WPS setup", "WPS failed or timed out | Retrying ...", "Abort", false); esp_wifi_wps_disable(); esp_wifi_wps_enable(&config); esp_wifi_wps_start(0); break; case SYSTEM_EVENT_STA_WPS_ER_PIN: ez.msgBox("WPS setup", "WPS PIN: " + _WPS_pin, "Abort", false); break; default: break; } _WPS_new_event = false; } } } #endif if (WiFi.isConnected()) _askAdd(); } callingMenu->setCaption("connection", (String)(WiFi.isConnected() ? "Connected: " + WiFi.SSID() : "Join a network")); return true; } #ifdef M5EZ_WPS void ezWifi::_WPShelper(WiFiEvent_t event, system_event_info_t info) { _WPS_event = event; _WPS_new_event = true; if (event == SYSTEM_EVENT_STA_WPS_ER_PIN) { char wps_pin[9]; for (int8_t i = 0; i < 8; i++) { wps_pin[i] = info.sta_er_pin.pin_code[i]; } wps_pin[8] = '\0'; _WPS_pin = String(wps_pin); } } #endif void ezWifi::_askAdd() { for (uint8_t n = 0; n < networks.size(); n++) { if (networks[n].SSID == WiFi.SSID()) return; } if (ez.msgBox("Wifi settings", "Save this network | to your autoconnects?", "no##yes") == "yes") { ez.wifi.add(WiFi.SSID(), WiFi.psk()); ez.wifi.writeFlash(); } } uint16_t ezWifi::loop() { if (millis() > _widget_time + ez.theme->signal_interval) { ez.header.draw("wifi"); _widget_time = millis(); } if (WiFi.isConnected() && _state != EZWIFI_AUTOCONNECT_DISABLED && _state != EZWIFI_IDLE) { _state = EZWIFI_IDLE; #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: Connected, returning to IDLE state"); #endif } if (!autoConnect || WiFi.isConnected() || networks.size() == 0) return 250; int8_t scanresult; switch(_state) { case EZWIFI_WAITING: #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: State Machine: _state = EZWIFI_WAITING"); #endif if (millis() < _wait_until) return 250; // intentional fall-through case EZWIFI_IDLE: #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: State Machine: _state = EZWIFI_IDLE"); Serial.println("EZWIFI: Starting scan"); #endif WiFi.mode(WIFI_MODE_STA); WiFi.scanNetworks(true); _current_from_scan = 0; _state = EZWIFI_SCANNING; _wait_until = millis() + 10000; break; case EZWIFI_SCANNING: #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: State Machine: _state = EZWIFI_SCANNING"); #endif scanresult = WiFi.scanComplete(); switch(scanresult) { case WIFI_SCAN_RUNNING: break; case WIFI_SCAN_FAILED: #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: Scan failed"); #endif _state = EZWIFI_WAITING; _wait_until = millis() + 60000; WiFi.scanDelete(); return 250; default: #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: Scan got " + (String)scanresult + " networks"); #endif for (uint8_t n = _current_from_scan; n < scanresult; n++) { for (uint8_t m = 0; m < networks.size(); m++) { String ssid = networks[m].SSID; String key = networks[m].key; if (ssid == WiFi.SSID(n)) { #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: Match: " + WiFi.SSID(n) + ", connecting..."); #endif WiFi.mode(WIFI_MODE_STA); WiFi.begin(ssid.c_str(), key.c_str()); _state = EZWIFI_CONNECTING; _wait_until = millis() + 7000; return 250; } } } #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: No (further) matches, waiting..."); #endif _state = EZWIFI_WAITING; _wait_until = millis() + 60000; WiFi.scanDelete(); // } case EZWIFI_CONNECTING: #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: State Machine: _state = EZWIFI_CONNECTING"); #endif if (millis() > _wait_until) { #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: Connect timed out..."); #endif WiFi.disconnect(); _current_from_scan++; _state = EZWIFI_SCANNING; } break; case EZWIFI_AUTOCONNECT_DISABLED: #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: State Machine: _state = EZWIFI_AUTOCONNECT_DISABLED"); #endif break; default: #ifdef M5EZ_WIFI_DEBUG Serial.println("EZWIFI: State Machine: default case! _state = " + String(_state)); #endif break; } return 250; } bool ezWifi::update(String url, const char* root_cert, ezProgressBar* pb /* = NULL */) { _update_progressbar = pb; if (!WiFi.isConnected()) { _update_error = "No WiFi connection."; return false; } if (!url.startsWith("https://")) { _update_error = "URL must start with 'https://'"; return false; } url = url.substring(8); String host, file; uint16_t port; int16_t first_slash_pos = url.indexOf("/"); if (first_slash_pos == -1) { host = url; file = "/"; } else { host = url.substring(0, first_slash_pos); file = url.substring(first_slash_pos); } int16_t colon = host.indexOf(":"); if (colon == -1) { port = 443; } else { host = host.substring(0, colon); port = host.substring(colon + 1).toInt(); } WiFiClientSecure client; client.setTimeout(20000); client.setCACert(root_cert); int contentLength = 0; if (!client.connect(host.c_str(), port)) { _update_error = "Connection to " + String(host) + " failed."; return false; } client.print(String("GET ") + file + " HTTP/1.1\r\n" + "Host: " + host + "\r\n" + "Cache-Control: no-cache\r\n" + "Connection: close\r\n\r\n"); unsigned long timeout = millis(); while (!client.available()) { if (millis() - timeout > 10000) { _update_error = "Client Timeout"; client.stop(); return false; } } // Process header while (client.available()) { String line = client.readStringUntil('\n'); line.trim(); if (!line.length()) break; // empty line, assume headers done if (line.startsWith("HTTP/1.1")) { String http_response = line.substring(line.indexOf(" ") + 1); http_response.trim(); if (http_response.indexOf("200") == -1) { _update_error = "Got response: \"" + http_response + "\", must be 200"; return false; } } if (line.startsWith("Content-Length: ")) { contentLength = atoi(line.substring( line.indexOf(":") + 1 ).c_str()); if (contentLength <= 0) { _update_error = "Content-Length zero"; return false; } } if (line.startsWith("Content-Type: ")) { String contentType = line.substring(line.indexOf(":") + 1); contentType.trim(); if (contentType != "application/octet-stream") { _update_error = "Content-Type must be \"application/octet-stream\", got \"" + contentType + "\""; return false; } } } // Process payload Update.onProgress(_update_progress); if (!Update.begin(contentLength)) { _update_error = "Not enough space to begin OTA"; client.flush(); return false; } size_t written = Update.writeStream(client); if (!Update.end()) { _update_error = "Error: " + String(_update_err2str(Update.getError())) + " | (after " + String(written) + " of " + String(contentLength) + " bytes)"; return false; } if (!Update.isFinished()) { _update_error = "Update not finished. Something went wrong."; return false; } return true; } void ezWifi::_update_progress(int done, int total) { if (ez.buttons.poll() != "") { Update.abort(); } else { if (total && _update_progressbar != NULL) { _update_progressbar->value((done * 100) / total); } } } String ezWifi::updateError() { return _update_error; } // Stupid Updater library only wants to print readable errors to a Stream object, // so we just copied its _err2str function. Bleh... String ezWifi::_update_err2str(uint8_t _error) { if(_error == UPDATE_ERROR_OK){ return ("No Error"); } else if(_error == UPDATE_ERROR_WRITE){ return ("Flash Write Failed"); } else if(_error == UPDATE_ERROR_ERASE){ return ("Flash Erase Failed"); } else if(_error == UPDATE_ERROR_READ){ return ("Flash Read Failed"); } else if(_error == UPDATE_ERROR_SPACE){ return ("Not Enough Space"); } else if(_error == UPDATE_ERROR_SIZE){ return ("Bad Size Given"); } else if(_error == UPDATE_ERROR_STREAM){ return ("Stream Read Timeout"); } else if(_error == UPDATE_ERROR_MD5){ return ("MD5 Check Failed"); } else if(_error == UPDATE_ERROR_MAGIC_BYTE){ return ("Wrong Magic Byte"); } else if(_error == UPDATE_ERROR_ACTIVATE){ return ("Could Not Activate The Firmware"); } else if(_error == UPDATE_ERROR_NO_PARTITION){ return ("Partition Could Not be Found"); } else if(_error == UPDATE_ERROR_BAD_ARGUMENT){ return ("Bad Argument"); } else if(_error == UPDATE_ERROR_ABORT){ return ("Aborted"); } return ("UNKNOWN"); } #endif ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // B L E // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifdef M5EZ_BLE class M5ezClientCallback : public BLEClientCallbacks { void onConnect(BLEClient*) {} void onDisconnect(BLEClient*) { ez.ble._cleanup(); } } _bleClientCallback; // https://www.bluetooth.com/specifications/gatt/services/ const std::vector> ezBLE::_gattUuids = { { 0x1800, "Generic Access" }, { 0x1811, "Alert Notification Service" }, { 0x1815, "Automation IO" }, { 0x180F, "Battery Service" }, { 0x183B, "Binary Sensor" }, { 0x1810, "Blood Pressure" }, { 0x181B, "Body Composition" }, { 0x181E, "Bond Management Service" }, { 0x181F, "Continuous Glucose Monitoring" }, { 0x1805, "Current Time Service" }, { 0x1818, "Cycling Power" }, { 0x1816, "Cycling Speed and Cadence" }, { 0x180A, "Device Information" }, { 0x183C, "Emergency Configuration" }, { 0x181A, "Environmental Sensing" }, { 0x1826, "Fitness Machine" }, { 0x1801, "Generic Attribute" }, { 0x1808, "Glucose" }, { 0x1809, "Health Thermometer" }, { 0x180D, "Heart Rate" }, { 0x1823, "HTTP Proxy" }, { 0x1812, "Human Interface Device" }, { 0x1802, "Immediate Alert" }, { 0x1821, "Indoor Positioning" }, { 0x183A, "Insulin Delivery" }, { 0x1820, "Internet Protocol Support Service" }, { 0x1803, "Link Loss" }, { 0x1819, "Location and Navigation" }, { 0x1827, "Mesh Provisioning Service" }, { 0x1828, "Mesh Proxy Service" }, { 0x1807, "Next DST Change Service" }, { 0x1825, "Object Transfer Service" }, { 0x180E, "Phone Alert Status Service" }, { 0x1822, "Pulse Oximeter Service" }, { 0x1829, "Reconnection Configuration" }, { 0x1806, "Reference Time Update Service" }, { 0x1814, "Running Speed and Cadence" }, { 0x1813, "Scan Parameters" }, { 0x1824, "Transport Discovery" }, { 0x1804, "Tx Power" }, { 0x181C, "User Data" }, { 0x181D, "Weight Scale" }, }; bool ezBLE::_on = false; bool ezBLE::_initialized = false; std::vector ezBLE::_clients; void ezBLE::begin() { ez.ble.readFlash(); ez.settings.menuObj.addItem("BLE settings", ez.ble.menu); if (_on) { _refresh(); } } void ezBLE::readFlash() { Preferences prefs; prefs.begin("M5ez", true); // true: read-only _on = prefs.getBool("ble_on", false); prefs.end(); } void ezBLE::writeFlash() { Preferences prefs; prefs.begin("M5ez"); prefs.putBool("ble_on", _on); prefs.end(); } void ezBLE::menu() { bool on_orig = _on; while(true) { ezMenu blemenu("BLE Settings"); blemenu.txtSmall(); blemenu.addItem("on|Turn On\t" + (String)(_on ? "on" : "off")); if (_on) { blemenu.addItem("Scan and connect", NULL, _scan); blemenu.addItem("Clients", NULL, _listClients); } blemenu.buttons("up#Back#select##down#"); switch (blemenu.runOnce()) { case 1: _on = !_on; _refresh(); break; case 0: if (_on != on_orig) { writeFlash(); } return; } } } void ezBLE::disconnect() { for (auto& client : _clients) { if (client->isConnected()) client->disconnect(); } _clients.clear(); } BLEClient* ezBLE::getClient(uint16_t index) { if (index >= _clients.size()) return nullptr; return _clients[index]; } uint16_t ezBLE::getClientCount() { return static_cast(_clients.size()); } bool ezBLE::_scan(ezMenu* callingMenu) { BLEScan* bleScan = BLEDevice::getScan(); //create new scan bleScan->setActiveScan(true); //active scan uses more power, but get results faster bleScan->setInterval(100); bleScan->setWindow(99); // less or equal setInterval value ez.msgBox("Bluetooth", "Scanning ...", ""); BLEScanResults foundDevices = bleScan->start(5, false); ezMenu devicesmenu("Found " + String(foundDevices.getCount()) + " devices"); devicesmenu.txtSmall(); for (int i = 0; i < foundDevices.getCount(); i++) { const char* name = nullptr; if (foundDevices.getDevice(i).getName().size() == 0) name = foundDevices.getDevice(i).getAddress().toString().c_str(); else name = foundDevices.getDevice(i).getName().c_str(); devicesmenu.addItem(name); } devicesmenu.buttons("up#Back#select##down#"); if (devicesmenu.runOnce()) { BLEAdvertisedDevice device = foundDevices.getDevice(devicesmenu.pick() - 1); _connect(device); } bleScan->clearResults(); return true; } void ezBLE::_connect(class BLEAdvertisedDevice& device) { ez.msgBox("Bluetooth", "Connecting ...", ""); BLEClient* client = BLEDevice::createClient(); client->setClientCallbacks(&_bleClientCallback); if (client->connect(&device)) { _clients.push_back(client); ez.msgBox("Bluetooth", "Device connected."); } else { delete client; ez.msgBox("Bluetooth", "Connection failed!"); } } bool ezBLE::_listClients(ezMenu* callingMenu) { ezMenu clientsmenu("Clients"); clientsmenu.txtSmall(); for (auto& client : _clients) { clientsmenu.addItem(client->getPeerAddress().toString().c_str()); } clientsmenu.buttons("up#Back#select##down#"); while (clientsmenu.runOnce()) { if (!_showClient(_clients[clientsmenu.pick() - 1])) return false; } return true; } bool ezBLE::_showClient(BLEClient* client) { ezMenu clientmenu(String(client->getPeerAddress().toString().c_str())); clientmenu.txtSmall(); clientmenu.buttons("up#Back#select##down#"); auto& services = *client->getServices(); for (auto& service : services) { bool found = false; for (auto& pair : _gattUuids) { if (BLEUUID(pair.first).equals(service.second->getUUID())) { clientmenu.addItem(pair.second); found = true; break; } } if (!found) clientmenu.addItem(service.first.c_str()); } clientmenu.addItem("Disconnect"); while (clientmenu.runOnce()) { if (clientmenu.pickName() == "Disconnect") { client->disconnect(); return false; } } return true; } void ezBLE::_cleanup() { if (_clients.size() > 0) { _clients.erase(std::remove_if(_clients.begin(), _clients.end(), [](BLEClient* client) { bool shouldRemove = !client->isConnected(); if (shouldRemove) delete client; return shouldRemove; }), _clients.end()); } } void ezBLE::_refresh() { if (_on) { if (!_initialized) { _initialized = true; BLEDevice::init(M5EZ_BLE_DEVICE_NAME); } } else { disconnect(); if (_initialized) { _initialized = false; _cleanup(); BLEDevice::deinit(false); } } } #endif ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // B A T T E R Y // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifdef M5EZ_BATTERY bool ezBattery::_on = false; #define BATTERY_CHARGING_OFF (255) uint8_t ezBattery::_numChargingBars = BATTERY_CHARGING_OFF; void ezBattery::begin() { Wire.begin(); ez.battery.readFlash(); ez.settings.menuObj.addItem("Battery settings", ez.battery.menu); if (_on) { _refresh(); } } void ezBattery::readFlash() { Preferences prefs; prefs.begin("M5ez", true); // true: read-only _on = prefs.getBool("battery_icon_on", false); prefs.end(); } void ezBattery::writeFlash() { Preferences prefs; prefs.begin("M5ez"); prefs.putBool("battery_icon_on", _on); prefs.end(); } void ezBattery::menu() { bool on_orig = _on; while(true) { ezMenu clockmenu("Battery settings"); clockmenu.txtSmall(); clockmenu.buttons("up#Back#select##down#"); clockmenu.addItem("on|Display battery\t" + (String)(_on ? "on" : "off")); switch (clockmenu.runOnce()) { case 1: _on = !_on; _refresh(); break; case 0: if (_on != on_orig) { writeFlash(); } return; } } } uint16_t ezBattery::loop() { if (!_on) return 0; ez.header.draw("battery"); return (_numChargingBars != BATTERY_CHARGING_OFF ? 1000 : 5000); } //Transform the M5Stack built in battery level into an internal format. // From [100, 75, 50, 25, 0] to [4, 3, 2, 1, 0] uint8_t ezBattery::getTransformedBatteryLevel() { switch (m5.Power.getBatteryLevel()) { case 100: return 4; case 75: return 3; case 50: return 2; case 25: return 1; default: return 0; } } //Return the theme based battery bar color according to its level uint32_t ezBattery::getBatteryBarColor(uint8_t batteryLevel) { switch (batteryLevel) { case 0: return ez.theme->battery_0_fgcolor; case 1: return ez.theme->battery_25_fgcolor; case 2: return ez.theme->battery_50_fgcolor; case 3: return ez.theme->battery_75_fgcolor; case 4: return ez.theme->battery_100_fgcolor; default: return ez.theme->header_fgcolor; } } void ezBattery::_refresh() { if (_on) { ez.header.insert(RIGHTMOST, "battery", ez.theme->battery_bar_width + 2 * ez.theme->header_hmargin, ez.battery._drawWidget); ez.addEvent(ez.battery.loop); } else { ez.header.remove("battery"); ez.removeEvent(ez.battery.loop); } } void ezBattery::_drawWidget(uint16_t x, uint16_t w) { uint8_t currentBatteryLevel = getTransformedBatteryLevel(); if((M5.Power.isChargeFull() == false) && (M5.Power.isCharging() == true)) { if(_numChargingBars < currentBatteryLevel) { _numChargingBars++; } else { _numChargingBars = 0; } } else { _numChargingBars = BATTERY_CHARGING_OFF; } uint16_t left_offset = x + ez.theme->header_hmargin; uint8_t top = ez.theme->header_height / 10; uint8_t height = ez.theme->header_height * 0.8; m5.lcd.fillRoundRect(left_offset, top, ez.theme->battery_bar_width, height, ez.theme->battery_bar_gap, ez.theme->header_bgcolor); m5.lcd.drawRoundRect(left_offset, top, ez.theme->battery_bar_width, height, ez.theme->battery_bar_gap, ez.theme->header_fgcolor); uint8_t bar_width = (ez.theme->battery_bar_width - ez.theme->battery_bar_gap * 5) / 4.0; uint8_t bar_height = height - ez.theme->battery_bar_gap * 2; left_offset += ez.theme->battery_bar_gap; for (uint8_t n = 0; n < (_numChargingBars != BATTERY_CHARGING_OFF ? _numChargingBars : currentBatteryLevel); n++) { m5.lcd.fillRect(left_offset + n * (bar_width + ez.theme->battery_bar_gap), top + ez.theme->battery_bar_gap, bar_width, bar_height, getBatteryBarColor(currentBatteryLevel)); } } #endif ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // E Z // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// std::vector M5ez::themes; ezTheme* M5ez::theme = NULL; ezScreen M5ez::screen; constexpr ezScreen& M5ez::s; ezHeader M5ez::header; constexpr ezHeader& M5ez::h; ezCanvas M5ez::canvas; constexpr ezCanvas& M5ez::c; ezButtons M5ez::buttons; constexpr ezButtons& M5ez::b; ezSettings M5ez::settings; ezMenu* M5ez::_currentMenu = nullptr; bool M5ez::_in_event = false; #ifdef M5EZ_WIFI ezWifi M5ez::wifi; constexpr ezWifi& M5ez::w; #endif #ifdef M5EZ_BLE ezBLE M5ez::ble; #endif #ifdef M5EZ_BATTERY ezBattery M5ez::battery; #endif #ifdef M5EZ_BACKLIGHT ezBacklight M5ez::backlight; #endif #ifdef M5EZ_CLOCK ezClock M5ez::clock; #endif #ifdef M5EZ_FACES ezFACES M5ez::faces; #endif std::vector M5ez::_events; // ez.textInput int16_t M5ez::_text_cursor_x, M5ez::_text_cursor_y, M5ez::_text_cursor_h, M5ez::_text_cursor_w; bool M5ez::_text_cursor_state; long M5ez::_text_cursor_millis; void M5ez::begin() { m5.begin(); ezTheme::begin(); ez.screen.begin(); ez.settings.begin(); } void M5ez::yield() { ::yield(); // execute the Arduino yield in the root namespace M5.update(); if(M5ez::_in_event) return; // prevent reentrancy for (uint8_t n = 0; n< _events.size(); n++) { if (millis() > _events[n].when) { M5ez::_in_event = true; // prevent reentrancy uint16_t r = (_events[n].function)(); M5ez::_in_event = false; // prevent reentrancy if (r) { _events[n].when = millis() + r - 1; } else { _events.erase(_events.begin() + n); break; // make sure we don't go beyond _events.size() after deletion } } } #ifdef M5EZ_CLOCK events(); //TMP #endif } void M5ez::addEvent(uint16_t (*function)(), uint32_t when /* = 1 */) { event_t n; n.function = function; n.when = millis() + when - 1; _events.push_back(n); } void M5ez::removeEvent(uint16_t (*function)()) { uint8_t n = 0; while (n < _events.size()) { if (_events[n].function == function) { _events.erase(_events.begin() + n); } n++; } } bool M5ez::_redraw; void M5ez::redraw() { _redraw = true; } ezMenu* M5ez::getCurrentMenu() { return _currentMenu; } static const char * _keydefs[] PROGMEM = { "KB3|qrstu.#SP#KB4|vwxyz,#Del#KB5|More#LCK:|Lock#KB1|abcdefgh#KB2|ijklmnop#Done", //KB0 "c#d#e#f#g#h#a#b#Back", //KB1 "k#l#m#n#o#p#i#j#Back", //KB2 "s#t#u#.###q#r#Back", //KB3 "x#y#z#,###v#w#Back", //KB4 "KB8|Q-U.#SP#KB9|V-Z,#Del#KB10|More#LCK:CAPS|Lock#KB6|A-H#KB7|I-P#Done", //KB5 "C#D#E#F#G#H#A#B#Back", //KB6 "K#L#M#N#O#P#I#J#Back", //KB7 "S#T#U#.###Q#R#Back", //KB8 "X#Y#Z#,###V#W#Back", //KB9 "KB11|1-5.#SP#KB12|6-0,#Del#KB13|More#LCK:NUM|Lock###Done", //KB10 "1#2#3#4#5#,###Back", //KB11 "6#7#8#9#0#.###Back", //KB12 "KB14|!?:;\\#$^&#SP#KB15|*()_-+=\\|#Del#KB0|More#LCK:SYM|Lock#KB16|'\"`@%\\/#KB17|<>{}[]()#Done", //KB13 "!#?#:#;#\\##$#^#&#Back", //KB14 "*#(#)#_#-#+#=#\\|#Back", //KB15 "'#\"#`#@#%#/###Back", //KB16 "<#>#{#}#[#]#(#)#Back", //KB17 ".#,#Del##Done#" //KB18 }; // ez.msgBox String M5ez::msgBox(String header, String msg, String buttons /* = "OK" */, const bool blocking /* = true */, const GFXfont* font /* = NULL */, uint16_t color /* = NO_COLOR */) { if (ez.header.title() != header) { ez.screen.clear(); if (header != "") ez.header.show(header); } else { ez.canvas.clear(); } if (!font) font = ez.theme->msg_font; if (color == NO_COLOR) color = ez.theme->msg_color; ez.buttons.show(buttons); std::vector lines; msg.replace("|", (String)char(13)); m5.lcd.setTextDatum(CC_DATUM); m5.lcd.setTextColor(color); ez.setFont(font); _fitLines(msg, ez.canvas.width() - 2 * ez.theme->msg_hmargin, ez.canvas.width() / 3, lines); int16_t font_h = ez.fontHeight(); for (int8_t n = 0; n < lines.size(); n++) { int16_t y = ez.canvas.top() + ez.canvas.height() / 2 - ( (lines.size() - 1) * font_h / 2) + n * font_h; m5.lcd.drawString(lines[n].line, TFT_W / 2, y); } if (buttons != "" && blocking) { String ret = ez.buttons.wait(); ez.screen.clear(); return ret; } else { return ""; } } // ez.textInput String M5ez::textInput(String header /* = "" */, String defaultText /* = "" */) { int16_t current_kb = 0, prev_kb = 0, locked_kb = 0; #ifdef M5EZ_FACES if (ez.faces.on()) { current_kb = locked_kb = prev_kb = ez.theme->input_faces_btns; ez.faces.poll(); // flush key buffer in FACES } #endif String tmpstr; String text = defaultText; ez.screen.clear(); if (header != "") ez.header.show(header); _drawTextInputBox(text); String key; ez.buttons.show(_keydefs[current_kb]); while (true) { key = ez.buttons.poll(); #ifdef M5EZ_FACES if (ez.faces.on() && key == "") key = ez.faces.poll(); #endif if (key == "Done" || key == (String)char(13)) return text; if (key.substring(0, 2) == "KB") { prev_kb = current_kb; tmpstr = key.substring(2); current_kb = tmpstr.toInt(); ez.buttons.show(_keydefs[current_kb]); key = ""; } if (key.substring(0, 4) == "LCK:") { if (locked_kb != current_kb) { _drawTextInputLockString( key.substring(4) ); locked_kb = current_kb; } else { _drawTextInputLockString( "" ); locked_kb = 0; current_kb = 0; ez.buttons.show(_keydefs[current_kb]); } key = ""; } if (key == "Back") { current_kb = prev_kb; ez.buttons.show(_keydefs[current_kb]); key = ""; } if (key == "Del" || key == (String)char(8) || key == (String)char(127)) { text = text.substring(0, text.length() - 1); _drawTextInputBox(text); key = ""; } if (key == "SP") key = " "; if (key >= " " && key <= "~") { current_kb = locked_kb; ez.buttons.show(_keydefs[current_kb]); text += key; _drawTextInputBox(text); } _textCursor(); } } void M5ez::_drawTextInputLockString(String text) { m5.lcd.setTextColor(TFT_RED); ez.setFont(ez.theme->input_keylock_font); m5.lcd.setTextDatum(TR_DATUM); int16_t text_h = ez.fontHeight(); m5.lcd.fillRect(0, _text_cursor_y + ez.theme->input_vmargin + 10 + text_h, TFT_W, text_h, ez.screen.background()); m5.lcd.drawString(text, TFT_W - ez.theme->input_hmargin - 10, _text_cursor_y + ez.theme->input_vmargin + text_h + 10); } void M5ez::_drawTextInputBox(String text) { int16_t text_w; int16_t box_w = TFT_W - 2 * ez.theme->input_hmargin; ez.setFont(ez.theme->input_font); int16_t text_h = ez.fontHeight(); _text_cursor_y = ez.canvas.top() + ez.theme->input_top + ez.theme->input_vmargin; _text_cursor_h = text_h; _text_cursor_w = m5.lcd.textWidth("A"); m5.lcd.fillRoundRect(ez.theme->input_hmargin, ez.canvas.top() + ez.theme->input_top, box_w, text_h + ez.theme->input_vmargin * 2, 8, ez.theme->input_bgcolor); _text_cursor_y = ez.canvas.top() + ez.theme->input_top + ez.theme->input_vmargin; m5.lcd.setTextColor(ez.theme->input_fgcolor); String disp_text = text; // chop off characters from the beginning of displayed string until it fits while (true) { text_w = M5.lcd.textWidth(disp_text); if (text_w + _text_cursor_w > box_w) { disp_text = disp_text.substring(1); } else { break; } } // For some reason the text rendering prints a monospace font with a space at the end with a very narrow space if (disp_text.substring(disp_text.length() - 1) == " ") disp_text += " "; m5.lcd.setTextDatum(TC_DATUM); m5.lcd.drawString(disp_text, TFT_W / 2 - _text_cursor_w / 2, ez.canvas.top() + ez.theme->input_top + ez.theme->input_vmargin); _text_cursor_x = TFT_W / 2 + text_w / 2 - _text_cursor_w / 2 + 2; _textCursor (true); // draw the cursor block } void M5ez::_textCursor() { if (ez.theme->input_cursor_blink > 0) { if (millis() - _text_cursor_millis > ez.theme->input_cursor_blink) { _textCursor(!_text_cursor_state); } } } void M5ez::_textCursor(bool state) { if (state) M5.lcd.fillRect(_text_cursor_x, _text_cursor_y, _text_cursor_w, _text_cursor_h, ez.theme->input_fgcolor); if (!state) M5.lcd.fillRect(_text_cursor_x, _text_cursor_y, _text_cursor_w, _text_cursor_h, ez.theme->input_bgcolor); _text_cursor_state = state; _text_cursor_millis = millis(); } String M5ez::textBox(String header /*= ""*/, String text /*= "" */, bool readonly /*= false*/, String buttons /*= "up#Done#down"*/, const GFXfont* font /* = NULL */, uint16_t color /* = NO_COLOR */) { if (!font) font = ez.theme->tb_font; if (color == NO_COLOR) color = ez.theme->tb_color; #ifdef M5EZ_FACES if (ez.faces.on()) { ez.faces.poll(); // flush key buffer in FACES } else { readonly = true; } #endif std::vector lines; ez.screen.clear(); uint16_t cursor_pos = text.length(); bool cursor_state = false; long cursor_time = 0; if (header != "") ez.header.show(header); int8_t per_line_h = ez.fontHeight(); String tmp_buttons = buttons; tmp_buttons.replace("up", ""); tmp_buttons.replace("down", ""); ez.buttons.show(tmp_buttons); //we need to draw the buttons here to make sure ez.canvas.height() is correct uint8_t lines_per_screen = (ez.canvas.height()) / per_line_h; uint8_t remainder = (ez.canvas.height()) % per_line_h; _wrapLines(text, ez.canvas.width() - 2 * ez.theme->tb_hmargin, lines); uint16_t offset = 0; bool redraw = true; ez.setFont(font); uint8_t cursor_width = m5.lcd.textWidth("|"); uint8_t cursor_height = per_line_h * 0.8; int16_t cursor_x = 0; int16_t cursor_y = 0; while (true) { if (redraw) { if (!readonly && cursor_x && cursor_y) m5.lcd.fillRect(cursor_x, cursor_y, cursor_width, cursor_height, ez.screen.background()); //Remove current cursor cursor_x = cursor_y = 0; tmp_buttons = buttons; if (offset >= lines.size() - lines_per_screen) { tmp_buttons.replace("down", ""); } if (offset <= 0) { offset = 0; tmp_buttons.replace("up", ""); } ez.buttons.show(tmp_buttons); ez.setFont(font); m5.lcd.setTextColor(color, ez.screen.background()); m5.lcd.setTextDatum(TL_DATUM); uint16_t x, y; int16_t sol, eol; String this_line; if (lines.size() > 0) { for (int8_t n = offset; n < offset + lines_per_screen; n++) { if (n < lines.size() - 1) { this_line = lines[n].line; sol = lines[n].position; eol = lines[n + 1].position - 1; } else if (n == lines.size() - 1) { this_line = lines[n].line; sol = lines[n].position; eol = text.length(); } else { this_line = ""; sol = -1; eol = text.length(); } y = ez.canvas.top() + remainder * 0.7 + (n - offset) * per_line_h; x = ez.theme->tb_hmargin; if (!readonly && sol != -1 && cursor_pos >= sol && cursor_pos <= eol && n < lines.size()) { // if cursor is on current line x += m5.lcd.drawString(this_line.substring(0, cursor_pos - sol), x, y); cursor_x = x; cursor_y = y; x += cursor_width; x += m5.lcd.drawString(this_line.substring(cursor_pos - sol), x, y); } else { x += m5.lcd.drawString(this_line, x, y); } m5.lcd.fillRect(x, y, ez.canvas.width() - x, per_line_h, ez.screen.background()); } redraw = false; } } if (!readonly && cursor_x && cursor_y && millis() - cursor_time > ez.theme->input_cursor_blink) { cursor_time = millis(); if (cursor_state) { m5.lcd.fillRect(cursor_x, cursor_y, cursor_width, cursor_height, ez.screen.background()); cursor_state = false; } else { m5.lcd.fillRect(cursor_x, cursor_y, cursor_width, cursor_height, color); cursor_state = true; } } String key = ez.buttons.poll(); #ifdef M5EZ_FACES if (ez.faces.on() && key == "") key = ez.faces.poll(); #endif if (key == "down") { offset += lines_per_screen; ez.canvas.clear(); redraw = true; key = ""; } if (key == "up") { offset -= lines_per_screen; ez.canvas.clear(); redraw = true; key = ""; } if (key == "Done") { ez.screen.clear(); return text; } if (key == (String)char(8)) { // Delete if (cursor_pos > 0) { text = text.substring(0, cursor_pos - 1) + text.substring(cursor_pos); cursor_pos--; _wrapLines(text, ez.canvas.width() - 2 * ez.theme->tb_hmargin, lines); redraw = true; } key = ""; } if (key == (String)char(191)) { // left arrow on FACES keyboard if (cursor_pos > 0) { cursor_pos--; redraw = true; } key = ""; } if (key == (String)char(193)) { // right arrow on FACES keyboard if (cursor_pos < text.length()) { cursor_pos++; redraw = true; } key = ""; } if (key == (String)char(183) || key == (String)char(192)) { // up or down arrow on FACES keyboard uint16_t cursor_line = lines.size() - 1; for (uint16_t n = 0; n < lines.size(); n++) { if (cursor_pos < lines[n].position) { cursor_line = n - 1; break; } } float relative_pos = (float)(cursor_pos - lines[cursor_line].position) / lines[cursor_line].line.length(); if (key == (String)char(183)) { //up if (cursor_line >= 1) { cursor_pos = lines[cursor_line - 1].position + lines[cursor_line - 1].line.length() * relative_pos; redraw = true; } } else { //down if (cursor_line < lines.size() - 1) { cursor_pos = lines[cursor_line + 1].position + lines[cursor_line + 1].line.length() * relative_pos; redraw = true; } } key = ""; } if (!readonly) { if (key >= " " && key <= "~") { if (cursor_pos == text.length()) { text = text + key; } else { text = text.substring(0, cursor_pos) + key + text.substring(cursor_pos); } cursor_pos++; _wrapLines(text, ez.canvas.width() - 2 * ez.theme->tb_hmargin, lines); redraw = true; } } } } void M5ez::_wrapLines(String text, uint16_t width, std::vector& lines) { lines.clear(); int16_t offset = 0; int16_t last_space = 0; int16_t cur_space = 0; int16_t newline = 0; bool all_done = false; line_t new_line; //If there are no return chars, it's either a single line, //Or it's using linux/mac line endings which are a single char char nlchar = 13; if (text.indexOf(13)==-1) nlchar = 10; while (!all_done) { cur_space = text.indexOf(" ", last_space + 1); if (cur_space == -1) { cur_space = text.length(); all_done = true; } newline = text.indexOf(char(nlchar), last_space + 1); if (newline != -1 && newline < cur_space) cur_space = newline; if (m5.lcd.textWidth(text.substring(offset, cur_space)) > width || text.substring(last_space, last_space + 1) == (String)char(nlchar)) { if (m5.lcd.textWidth(text.substring(offset, last_space)) <= width) { new_line.position = offset; new_line.line = text.substring(offset, last_space); lines.push_back(new_line); offset = last_space + 1; last_space = cur_space; } else { for (uint16_t n = offset; n < text.length(); n++) { if (m5.lcd.textWidth(text.substring(offset, n + 1)) > width) { new_line.position = offset; new_line.line = text.substring(offset, n); lines.push_back(new_line); offset = n; break; } } } } else { last_space = cur_space; } //Special case handle the last line if (all_done && offset < text.length()) { while(text.indexOf(char(nlchar), offset) > offset) { if(offset < text.length()) { new_line.line = text.substring(offset, text.indexOf(char(nlchar), offset)); new_line.position = offset; offset = text.indexOf(char(nlchar), offset); lines.push_back(new_line); } else { break; } } } if (all_done && offset < text.length()) { new_line.position = offset; new_line.line = text.substring(offset); lines.push_back(new_line); } } } void M5ez::_fitLines(String text, uint16_t max_width, uint16_t min_width, std::vector& lines) { uint8_t prev_num_lines = 100; for (int16_t n = max_width; n > min_width; n -= 10) { _wrapLines(text, n, lines); if (lines.size() > prev_num_lines) { _wrapLines(text, n + 10, lines); return; } prev_num_lines = lines.size(); } } // Some generic String object helper functions. Made public because they might be useful in user code String M5ez::rightOf(String input, String separator, bool trim /* = true */ ) { input.replace("\\" + separator, (String)char(255)); // allow for backslash escaping of the separator int16_t sep_pos = input.indexOf(separator); input.replace((String)char(255), separator); String out = input.substring(sep_pos + 1); if (trim) out.trim(); return out; } String M5ez::leftOf(String input, String separator, bool trim /* = true */ ) { input.replace("\\" + separator, (String)char(255)); // allow for backslash escaping of the separator int16_t sep_pos = input.indexOf(separator); input.replace((String)char(255), separator); if (sep_pos == -1) sep_pos = input.length(); String out = input.substring(0, sep_pos); if (trim) out.trim(); return out; } int16_t M5ez::chopString(String input, String separator, std::vector& chops, bool trim /* = true */) { input.replace("\\" + separator, (String)char(255)); // allow for backslash escaping of the separator int16_t next_sep, offset = 0; bool done = false; while (!done) { next_sep = input.indexOf(separator, offset); if (next_sep == -1) { next_sep = input.length(); done = true; } String chop = input.substring(offset, next_sep); chop.replace((String)char(255), separator); if (trim) chop.trim(); chops.push_back(chop); offset = next_sep + 1; } return chops.size(); } int16_t M5ez::charsFit(String input, int16_t cutoff) { int16_t measured; for (int16_t n = input.length(); n >= 0; n--) { measured = m5.lcd.textWidth(input.substring(0, n)); if (measured <= cutoff) { return n; } } return 0; } String M5ez::clipString(String input, int16_t cutoff, bool dots /* = true */ ) { if (m5.lcd.textWidth(input) <= cutoff) { return input; } else { for (int16_t n = input.length(); n >= 0; n--) { String toMeasure = input.substring(0, n); if (dots) toMeasure = toMeasure + ".."; if (m5.lcd.textWidth(toMeasure) <= cutoff) return toMeasure; } return ""; } } bool M5ez::isBackExitOrDone(String str) { if (str == "back" || str == "exit" || str == "done" || str == "Back" || str == "Exit" || str == "Done") return true; return false; } // Font related m5.lcd wrappers void M5ez::setFont(const GFXfont* font) { long ptrAsInt = (long) font; int16_t size = 1; if (ptrAsInt <= 16) { if (ptrAsInt > 8) { ptrAsInt -= 8; size++; } m5.lcd.setTextFont(ptrAsInt); } else { m5.lcd.setFreeFont(font); } m5.lcd.setTextSize(size); } int16_t M5ez::fontHeight() { return m5.lcd.fontHeight(m5.lcd.textfont); } String M5ez::version() { return M5EZ_VERSION; } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // M E N U // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ezMenu::ezMenu(String hdr /* = "" */) { _img_background = NO_COLOR; _offset = 0; _selected = -1; _header = hdr; _buttons = ""; _font = NULL; _img_from_top = 0; _img_caption_location = TC_DATUM; _img_caption_font = &FreeSansBold12pt7b; _img_caption_color = TFT_RED; _img_caption_hmargin = 10; _img_caption_vmargin = 10; _sortFunction = NULL; } ezMenu::~ezMenu() { if(this == M5ez::_currentMenu) M5ez::_currentMenu = nullptr; } void ezMenu::txtBig() { _font = ez.theme->menu_big_font; } void ezMenu::txtSmall() { _font = ez.theme->menu_small_font; } void ezMenu::txtFont(const GFXfont* font) { _font = font; } bool ezMenu::addItem(String nameAndCaption, void (*simpleFunction)() /* = NULL */, bool (*advancedFunction)(ezMenu* callingMenu) /* = NULL */, void (*drawFunction)(ezMenu* callingMenu, int16_t x, int16_t y, int16_t w, int16_t h) /* = NULL */) { return addItem(NULL, nameAndCaption, simpleFunction, advancedFunction, drawFunction); } bool ezMenu::addItem(const char *image, String nameAndCaption , void (*simpleFunction)() /* = NULL */, bool (*advancedFunction)(ezMenu* callingMenu) /* = NULL */, void (*drawFunction)(ezMenu* callingMenu, int16_t x, int16_t y, int16_t w, int16_t h) /* = NULL */) { MenuItem_t new_item; new_item.image = image; new_item.fs = NULL; new_item.nameAndCaption = nameAndCaption; new_item.simpleFunction = simpleFunction; new_item.advancedFunction = advancedFunction; new_item.drawFunction = drawFunction; if (_selected == -1) _selected = _items.size(); _items.push_back(new_item); _sortItems(); M5ez::_redraw = true; return true; } bool ezMenu::addItem(fs::FS &fs, String path, String nameAndCaption, void (*simpleFunction)() /* = NULL */, bool (*advancedFunction)(ezMenu* callingMenu) /* = NULL */, void (*drawFunction)(ezMenu* callingMenu, int16_t x, int16_t y, int16_t w, int16_t h) /* = NULL */) { MenuItem_t new_item; new_item.image = NULL; new_item.fs = &fs; new_item.path = path; new_item.nameAndCaption = nameAndCaption; new_item.simpleFunction = simpleFunction; new_item.advancedFunction = advancedFunction; new_item.drawFunction = drawFunction; if (_selected == -1) _selected = _items.size(); _items.push_back(new_item); _sortItems(); M5ez::_redraw = true; return true; } bool ezMenu::deleteItem(int16_t index) { if (index < 1 || index > _items.size()) return false; index--; // internally we work with zero-referenced items _items.erase(_items.begin() + index); if (_selected >= _items.size()) _selected = _items.size() - 1; _fixOffset(); M5ez::_redraw = true; return true; } bool ezMenu::deleteItem(String name) { return deleteItem(getItemNum(name)); } String ezMenu::getTitle() { return _header; } bool ezMenu::setCaption(int16_t index, String caption) { if (index < 1 || index > _items.size()) return false; index--; // internally we work with zero-referenced items String currentName = ez.leftOf(_items[index].nameAndCaption, "|"); String currentCaption = ez.rightOf(_items[index].nameAndCaption, "|"); _items[index].nameAndCaption = currentName + "|" + caption; M5ez::_redraw = true; return true; } bool ezMenu::setCaption(String name, String caption) { return setCaption(getItemNum(name), caption); } int16_t ezMenu::getItemNum(String name) { String itemName; for (int16_t n = 0; n < _items.size(); n++) { itemName = ez.leftOf(_items[n].nameAndCaption, "|"); if (itemName == name) return n + 1; } return 0; } void ezMenu::setSortFunction(bool (*sortFunction)(const char* s1, const char* s2)) { _sortFunction = sortFunction; _sortItems(); // In case the menu is already populated } void ezMenu::buttons(String bttns) { _buttons = bttns; } void ezMenu::upOnFirst(String nameAndCaption) { _up_on_first = nameAndCaption; } void ezMenu::leftOnFirst(String nameAndCaption) { _up_on_first = nameAndCaption; } void ezMenu::downOnLast(String nameAndCaption) { _down_on_last = nameAndCaption; } void ezMenu::rightOnLast(String nameAndCaption) { _down_on_last = nameAndCaption; } void ezMenu::run() { while (runOnce()) {} } int16_t ezMenu::runOnce() { int16_t result; M5ez::_currentMenu = this; if(_items.size() == 0) return 0; if (_selected == -1) _selected = 0; if (!_font) _font = ez.theme->menu_big_font; // Cannot be in constructor: ez.theme not there yet for (int16_t n = 0; n < _items.size(); n++) { if (_items[n].image != NULL || _items[n].fs != NULL) { result = _runImagesOnce(); if(0 == result) M5ez::_currentMenu = nullptr; return result; } } result = _runTextOnce(); if(0 == result) M5ez::_currentMenu = nullptr; return result; } int16_t ezMenu::_runTextOnce() { if (_buttons == "") _buttons = "up # select # down"; ez.screen.clear(); if (_header != "") ez.header.show(_header); ez.setFont(_font); _per_item_h = ez.fontHeight(); ez.buttons.show(_buttons); //we need to draw the buttons here to make sure ez.canvas.height() is correct _items_per_screen = (ez.canvas.height() - 5) / _per_item_h; _drawItems(); while (true) { int16_t old_selected = _selected; int16_t old_offset = _offset; String tmp_buttons = _buttons; if (_selected <= 0) tmp_buttons.replace("up", _up_on_first); if (_selected >= _items.size() - 1) tmp_buttons.replace("down", _down_on_last); ez.buttons.show(tmp_buttons); String name = ez.leftOf(_items[_selected].nameAndCaption, "|"); String pressed; while (true) { pressed = ez.buttons.poll(); if (M5ez::_redraw) _drawItems(); if (pressed != "") break; } if (pressed == "up") { _selected--; _fixOffset(); } else if (pressed == "down") { _selected++; _fixOffset(); } else if (pressed == "first") { _selected = 0; _offset = 0; } else if (pressed == "last") { _selected = _items.size() - 1; _offset = 0; _fixOffset(); } else if ( (ez.isBackExitOrDone(name) && !_items[_selected].advancedFunction) || ez.isBackExitOrDone(pressed) ) { _pick_button = pressed; _selected = -1; ez.screen.clear(); return 0; } else { // Some other key must have been pressed. We're done here! ez.screen.clear(); _pick_button = pressed; if (_items[_selected].simpleFunction) { (_items[_selected].simpleFunction)(); } if (_items[_selected].advancedFunction) { if (!(_items[_selected].advancedFunction)(this)) return 0; } return _selected + 1; // We return items starting at one, but work starting at zero internally } // Flicker prevention, only redraw whole menu if scrolled if (_offset == old_offset) { int16_t top_item_h = ez.canvas.top() + (ez.canvas.height() % _per_item_h) / 2; // remainder of screen left over by last item not fitting split to center menu if (_items[old_selected].drawFunction) { ez.setFont(_font); (_items[old_selected].drawFunction)(this, ez.theme->menu_lmargin, top_item_h + (old_selected - _offset) * _per_item_h, TFT_W - ez.theme->menu_lmargin - ez.theme->menu_rmargin, _per_item_h); } else { _drawItem(old_selected - _offset, ez.rightOf(_items[old_selected].nameAndCaption, "|"), false); }; if (_items[_selected].drawFunction) { ez.setFont(_font); (_items[_selected].drawFunction)(this, ez.theme->menu_lmargin, top_item_h + (_selected - _offset) * _per_item_h, TFT_W - ez.theme->menu_lmargin - ez.theme->menu_rmargin, _per_item_h); } else { _drawItem(_selected - _offset, ez.rightOf(_items[_selected].nameAndCaption, "|"), true); }; } else { ez.canvas.clear(); _drawItems(); } } } void ezMenu::_drawItems() { for (int16_t n = 0; n < _items_per_screen; n++) { int16_t item_ref = _offset + n; if (item_ref < _items.size()) { if (_items[item_ref].drawFunction) { int16_t top_item_h = ez.canvas.top() + (ez.canvas.height() % _per_item_h) / 2; // remainder of screen left over by last item not fitting split to center menu ez.setFont(_font); (_items[item_ref].drawFunction)(this, ez.theme->menu_lmargin, top_item_h + n * _per_item_h, TFT_W - ez.theme->menu_lmargin - ez.theme->menu_rmargin, _per_item_h); } else { _drawItem(n, ez.rightOf(_items[item_ref].nameAndCaption, "|"), (item_ref == _selected)); } } } _Arrows(); M5ez::_redraw = false; } void ezMenu::_drawItem(int16_t n, String text, bool selected) { uint16_t fill_color; ez.setFont(_font); int16_t top_item_h = ez.canvas.top() + (ez.canvas.height() % _per_item_h) / 2; // remainder of screen left over by last item not fitting split to center menu m5.lcd.setTextDatum(CL_DATUM); if (selected) { fill_color = ez.theme->menu_sel_bgcolor; m5.lcd.setTextColor(ez.theme->menu_sel_fgcolor); } else { fill_color = ez.screen.background(); m5.lcd.setTextColor(ez.theme->menu_item_color); } text = ez.clipString(text, TFT_W - ez.theme->menu_lmargin - 2 * ez.theme->menu_item_hmargin - ez.theme->menu_rmargin); m5.lcd.fillRoundRect(ez.theme->menu_lmargin, top_item_h + n * _per_item_h, TFT_W - ez.theme->menu_lmargin - ez.theme->menu_rmargin, _per_item_h, ez.theme->menu_item_radius, fill_color); m5.lcd.drawString(ez.leftOf(text, "\t"), ez.theme->menu_lmargin + ez.theme->menu_item_hmargin, top_item_h + _per_item_h / 2 + n * _per_item_h - 2); if (text.indexOf("\t") != -1) { m5.lcd.setTextDatum(CR_DATUM); m5.lcd.drawString(ez.rightOf(text, "\t"), TFT_W - ez.theme->menu_rmargin - ez.theme->menu_item_hmargin, top_item_h + _per_item_h / 2 + n * _per_item_h - 2); } } void ezMenu::imgBackground(uint16_t color) { _img_background = color; } void ezMenu::imgFromTop(int16_t offset) { _img_from_top = offset; } void ezMenu::imgCaptionFont(const GFXfont* font) { _img_caption_font = font; } void ezMenu::imgCaptionLocation(uint8_t datum) { _img_caption_location = datum; } void ezMenu::imgCaptionColor(uint16_t color) { _img_caption_color = color; } void ezMenu::imgCaptionMargins(int16_t hmargin, int16_t vmargin) { _img_caption_hmargin = hmargin; _img_caption_vmargin = vmargin; } void ezMenu::imgCaptionMargins(int16_t margin) { _img_caption_hmargin = margin; _img_caption_vmargin = margin; } int16_t ezMenu::_runImagesOnce() { if (_buttons == "") _buttons = "left # select # right"; if (_img_background == NO_COLOR) _img_background = ez.theme->background; ez.screen.clear(_img_background); String tmp_buttons = _buttons; tmp_buttons.replace("left", ""); tmp_buttons.replace("right", ""); ez.buttons.show(tmp_buttons); ez.screen.clear(_img_background); if (_header != "") ez.header.show(_header); _drawImage(_items[_selected]); _drawCaption(); while (true) { tmp_buttons = _buttons; if (_selected <= 0) tmp_buttons.replace("left", ""); if (_selected >= _items.size() - 1) tmp_buttons.replace("right", ""); ez.buttons.show(tmp_buttons); String name = ez.leftOf(_items[_selected].nameAndCaption, "|"); String pressed; while (true) { pressed = ez.buttons.poll(); if (pressed != "") break; } if (pressed == "left") { _selected--; ez.canvas.clear(); _drawImage(_items[_selected]); _drawCaption(); } else if (pressed == "right") { _selected++; ez.canvas.clear(); _drawImage(_items[_selected]); _drawCaption(); } else if ( (ez.isBackExitOrDone(name) && !_items[_selected].advancedFunction) || ez.isBackExitOrDone(pressed) ) { _pick_button = pressed; _selected = -1; ez.screen.clear(); return 0; } else { // Some other key must have been pressed. We're done here! ez.screen.clear(); _pick_button = pressed; if (_items[_selected].simpleFunction != NULL) { (_items[_selected].simpleFunction)(); ez.screen.clear(); } if (_items[_selected].advancedFunction != NULL) { if (!(_items[_selected].advancedFunction)(this)) { ez.screen.clear(); return 0; } else { ez.screen.clear(); } } return _selected + 1; // We return items starting at one, but work starting at zero internally } } } void ezMenu::_drawImage(MenuItem_t &item) { if (item.image) { m5.lcd.drawJpg((uint8_t *)item.image, (sizeof(item.image) / sizeof(item.image[0])), 0, ez.canvas.top() + _img_from_top, TFT_W, ez.canvas.height() - _img_from_top); } if (item.fs) { m5.lcd.drawJpgFile(*(item.fs), item.path.c_str(), 0, ez.canvas.top() + _img_from_top, TFT_W, ez.canvas.height() - _img_from_top); } } void ezMenu::_drawCaption() { int16_t x, y; String caption = ez.rightOf(_items[_selected].nameAndCaption, "|"); if (_img_caption_font == NULL || caption == "") return; ez.setFont(_img_caption_font); m5.lcd.setTextColor(_img_caption_color); m5.lcd.setTextDatum(_img_caption_location); // Set X and Y for printing caption seperately, less code duplication switch(_img_caption_location) { case TL_DATUM: case ML_DATUM: case BL_DATUM: x = ez.canvas.left() + _img_caption_hmargin; break; case TC_DATUM: case MC_DATUM: case BC_DATUM: x = ez.canvas.left() + ez.canvas.width() / 2; break; case TR_DATUM: case MR_DATUM: case BR_DATUM: default: x = ez.canvas.right() - _img_caption_hmargin; break; return; // } switch(_img_caption_location) { case TL_DATUM: case TC_DATUM: case TR_DATUM: y = ez.canvas.top() + _img_caption_vmargin; break; case ML_DATUM: case MC_DATUM: case MR_DATUM: y = ez.canvas.top() + ez.canvas.height() / 2; break; case BL_DATUM: case BC_DATUM: case BR_DATUM: default: y = ez.canvas.bottom() - _img_caption_vmargin; break; // } m5.lcd.drawString(caption, x, y); } void ezMenu::_fixOffset() { if (_selected != -1) { if (_selected >= _offset + _items_per_screen) _offset = _selected - _items_per_screen + 1; if (_selected < _offset) _offset = _selected; // If there's stuff above the current screen and screen is not full (can only happen after deleteItem) if (_offset > 0 && _offset + _items_per_screen > _items.size()) { _offset = _items.size() - _items_per_screen; } } else { _offset = 0; } } int16_t ezMenu::pick() { return _selected + 1; } String ezMenu::pickName() { return ez.leftOf(_items[_selected].nameAndCaption, "|"); } String ezMenu::pickCaption() { return ez.rightOf(_items[_selected].nameAndCaption, "|"); } String ezMenu::pickButton() { return _pick_button; } void ezMenu::_Arrows() { uint16_t fill_color; int16_t top = ez.canvas.top(); int16_t height = ez.canvas.height(); // Up arrow if (_offset > 0) { fill_color = ez.theme->menu_item_color; } else { fill_color = ez.screen.background(); } static uint8_t l = ez.theme->menu_arrows_lmargin; m5.lcd.fillTriangle(l, top + 25, l + 10, top + 25, l + 5, top + 10, fill_color); // Down arrow if (_items.size() > _offset + _items_per_screen) { fill_color = ez.theme->menu_item_color; } else { fill_color = ez.screen.background(); } m5.lcd.fillTriangle(l, top + height - 25, l + 10, top + height - 25, l + 5, top + height - 10, fill_color); } bool ezMenu::_sortWrapper(MenuItem_t& item1, MenuItem_t& item2) { // Be sure to set _sortFunction before calling _sortWrapper(), as _sortItems ensures. return _sortFunction(item1.nameAndCaption.c_str(), item2.nameAndCaption.c_str()); } void ezMenu::_sortItems() { if(_sortFunction && _items.size() > 1) { using namespace std::placeholders; // For _1, _2 sort(_items.begin(), _items.end(), std::bind(&ezMenu::_sortWrapper, this, _1, _2)); M5ez::_redraw = true; } } // For sorting by Names as quickly as possible bool ezMenu::sort_asc_name_cs (const char* s1, const char* s2) { return 0 > strcmp(s1, s2); } bool ezMenu::sort_asc_name_ci (const char* s1, const char* s2) { return 0 > strcasecmp(s1, s2); } bool ezMenu::sort_dsc_name_cs (const char* s1, const char* s2) { return 0 < strcmp(s1, s2); } bool ezMenu::sort_dsc_name_ci (const char* s1, const char* s2) { return 0 < strcasecmp(s1, s2); } // For sorting by Caption if there is one, falling back to sorting by Name if no Caption is provided (all purpose) const char* captionSortHelper(const char* nameAndCaption) { char* sub = strchr(nameAndCaption, '|'); // Find the separator if(nullptr == sub) return nameAndCaption; // If none, return the entire string sub++; // move past the separator while(isspace(sub[0])) sub++; // trim whitespace return sub; } bool ezMenu::sort_asc_caption_cs (const char* s1, const char* s2) { return 0 > strcmp(captionSortHelper(s1), captionSortHelper(s2)); } bool ezMenu::sort_asc_caption_ci (const char* s1, const char* s2) { return 0 > strcasecmp(captionSortHelper(s1), captionSortHelper(s2)); } bool ezMenu::sort_dsc_caption_cs (const char* s1, const char* s2) { return 0 < strcmp(captionSortHelper(s1), captionSortHelper(s2)); } bool ezMenu::sort_dsc_caption_ci (const char* s1, const char* s2) { return 0 < strcasecmp(captionSortHelper(s1), captionSortHelper(s2)); } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // P R O G R E S S B A R // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ezProgressBar::ezProgressBar(String header /* = "" */, String msg /* = "" */, String buttons /* = "" */, const GFXfont* font /* = NULL */, uint16_t color /* = NO_COLOR */, uint16_t bar_color /* = NO_COLOR */, bool show_val /* = false */, uint16_t val_color /* = NO_COLOR */) { if (!font) font = ez.theme->msg_font; if (color == NO_COLOR) color = ez.theme->msg_color; if (bar_color == NO_COLOR) bar_color = ez.theme->progressbar_color; if (val_color == NO_COLOR) val_color = ez.theme->progressbar_val_color; _bar_color = bar_color; _show_val = show_val; _val_color = val_color; _old_val = -1; ez.screen.clear(); if (header != "") ez.header.show(header); ez.buttons.show(buttons); std::vector lines; msg.replace("|", (String)char(13)); m5.lcd.setTextDatum(CC_DATUM); m5.lcd.setTextColor(color); ez.setFont(font); ez._fitLines(msg, ez.canvas.width() - 2 * ez.theme->msg_hmargin, ez.canvas.width() / 3, lines); uint8_t font_h = ez.fontHeight(); uint8_t num_lines = lines.size() + 2; for (uint8_t n = 0; n < lines.size(); n++) { int16_t y = ez.canvas.top() + ez.canvas.height() / 2 - ( (num_lines - 1) * font_h / 2) + n * font_h; m5.lcd.drawString(lines[n].line, TFT_W / 2, y); } _bar_y = ez.canvas.top() + ez.canvas.height() / 2 + ( (num_lines - 1) * font_h / 2) - ez.theme->progressbar_width / 2; for (uint8_t n = 0; n < ez.theme->progressbar_line_width; n++) { m5.lcd.drawRect(ez.canvas.left() + ez.theme->msg_hmargin + n, _bar_y + n, ez.canvas.width() - 2 * ez.theme->msg_hmargin - 2 * n, ez.theme->progressbar_width - 2 * n, bar_color); } } void ezProgressBar::value(float val) { // Prevent flickering if (_old_val == val) { return; } _old_val = val; uint16_t left = ez.canvas.left() + ez.theme->msg_hmargin + ez.theme->progressbar_line_width; uint16_t width = (int16_t)(ez.canvas.width() - 2 * ez.theme->msg_hmargin - 2 * ez.theme->progressbar_line_width); m5.lcd.fillRect(left, _bar_y + ez.theme->progressbar_line_width, width * val / 100, ez.theme->progressbar_width - 2 * ez.theme->progressbar_line_width, _bar_color); m5.lcd.fillRect(left + (width * val / 100), _bar_y + ez.theme->progressbar_line_width, width - (width * val / 100), ez.theme->progressbar_width - 2 * ez.theme->progressbar_line_width, ez.screen.background()); if (_show_val == true) { m5.lcd.setTextDatum(CC_DATUM); m5.lcd.setTextColor(_val_color); ez.setFont(ez.theme->msg_font); m5.lcd.drawFloat(val, 0, TFT_W / 2, _bar_y + ez.theme->progressbar_width / 2 - 1); } } M5ez ez; ================================================ FILE: src/M5ez.h ================================================ #ifndef _M5EZ_H_ #define _M5EZ_H_ #define M5EZ_VERSION "2.3.0" // Comment out the line below to disable WPS. #define M5EZ_WPS // Turn this off to compile without WiFi (no) OTA updates, no clock) #define M5EZ_WIFI // Turn this off if you don't have a battery attached #define M5EZ_BATTERY // Turn this off to compile without BLE (Bluetooth Low Energy) // #define M5EZ_BLE #ifdef M5EZ_BLE #define M5EZ_BLE_DEVICE_NAME "M5ez" #endif // Have the autoconnect logic print debug messages on the serial port // #define M5EZ_WIFI_DEBUG // Determines whether the backlight is settable #define M5EZ_BACKLIGHT // Compile in ezTime and create a settings menu for clock display #define M5EZ_CLOCK // FACES settings menu #define M5EZ_FACES #include // std::vector #ifdef M5EZ_WIFI #include // WiFiEvent_t, system_event_info_t #endif #include // GFXfont* #ifdef M5EZ_CLOCK #include // events, on-screen clock #endif // Special fake font pointers to access the older non FreeFonts in a unified way. // Only valid if passed to ez.setFont // (Note that these need to be specified without the & in front, unlike the FreeFonts) #define mono6x8 (GFXfont*) 1 #define sans16 (GFXfont*) 2 #define sans26 (GFXfont*) 4 #define numonly48 (GFXfont*) 6 #define numonly7seg48 (GFXfont*) 7 #define numonly75 (GFXfont*) 8 // The following fonts are just scaled up from previous ones (textSize 2) // But they might still be useful. #define mono12x16 (GFXfont*) 9 #define sans32 (GFXfont*) 10 #define sans52 (GFXfont*) 12 #define numonly96 (GFXfont*) 14 #define numonly7seg96 (GFXfont*) 15 #define numonly150 (GFXfont*) 16 #define NO_COLOR TFT_TRANSPARENT #define TFT_W 320 #define TFT_H 240 struct line_t { int16_t position; String line; }; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // T H E M E // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// class ezTheme { public: static void begin(); void add(); static bool select(String name); static void menu(); String name = "Default"; // Change this when making theme uint16_t background = 0xEF7D; uint16_t foreground = TFT_BLACK; uint8_t header_height = 23; const GFXfont* header_font = &FreeSansBold9pt7b; uint8_t header_hmargin = 5; uint8_t header_tmargin = 3; uint16_t header_bgcolor = TFT_BLUE; uint16_t header_fgcolor = TFT_WHITE; const GFXfont* print_font = mono6x8; uint16_t print_color = foreground; const GFXfont* clock_font = mono12x16; uint16_t longpress_time = 250; //milliseconds uint8_t button_height = 19; const GFXfont* button_font = &FreeSans9pt7b; uint8_t button_tmargin = 1; uint8_t button_hmargin = 5; uint8_t button_gap = 3; uint8_t button_radius = 8; uint16_t button_bgcolor_b = TFT_BLUE; uint16_t button_bgcolor_t = TFT_PURPLE; uint16_t button_fgcolor = TFT_WHITE; uint16_t button_longcolor = TFT_CYAN; uint8_t input_top = 50; // pixels below ez.canvas.top() uint8_t input_hmargin = 10; // The distance between text box and edge of screen uint8_t input_vmargin = 10; // Vertical margin _inside_ the text box const GFXfont* input_font = &FreeMonoBold12pt7b; const GFXfont* input_keylock_font = &FreeSansBold9pt7b; uint16_t input_bgcolor = TFT_BLACK; uint16_t input_fgcolor = TFT_GREEN; uint16_t input_cursor_blink = 500; // milliseconds uint8_t input_faces_btns = 18; const GFXfont* tb_font = &FreeSans9pt7b; uint16_t tb_color = foreground; uint8_t tb_hmargin = 5; uint8_t menu_lmargin = 20; uint8_t menu_rmargin = 10; uint8_t menu_arrows_lmargin = 5; uint16_t menu_item_color = foreground; uint16_t menu_sel_bgcolor = foreground; uint16_t menu_sel_fgcolor = background; const GFXfont* menu_big_font = &FreeSans12pt7b; const GFXfont* menu_small_font = &FreeSans9pt7b; uint8_t menu_item_hmargin = 10; uint8_t menu_item_radius = 8; const GFXfont* msg_font = &FreeSans12pt7b; uint16_t msg_color = foreground; uint8_t msg_hmargin = 20; uint8_t progressbar_line_width = 4; uint8_t progressbar_width = 25; uint16_t progressbar_color = foreground; uint16_t progressbar_val_color = TFT_DARKGREY; uint16_t signal_interval = 2000; uint8_t signal_bar_width = 4; uint8_t signal_bar_gap = 2; uint8_t battery_bar_width = 26; uint8_t battery_bar_gap = 2; uint32_t battery_0_fgcolor = TFT_RED; uint32_t battery_25_fgcolor = TFT_ORANGE; uint32_t battery_50_fgcolor = TFT_YELLOW; uint32_t battery_75_fgcolor = TFT_GREENYELLOW; uint32_t battery_100_fgcolor = TFT_GREEN; // }; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // S C R E E N // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// class ezScreen { public: static void begin(); static void clear(); static void clear(uint16_t color); static uint16_t background(); private: static uint16_t _background; // }; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // H E A D E R // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// struct header_widget_t { String name; bool leftover; // widget gets all leftover width. Used by title, only one widget can have this property uint16_t x; uint16_t w; void (*function)(uint16_t x, uint16_t w); }; #define LEFTMOST 0 #define RIGHTMOST 255 class ezHeader { private: static std::vector _widgets; static bool _shown; static String _title; static void _drawTitle(uint16_t x, uint16_t w); static void _recalculate(); public: static void begin(); static void show(String t = ""); static bool shown(); static void clear(bool wipe = true); static void insert(uint8_t position, String name, uint16_t width, void (*function)(uint16_t x, uint16_t w), bool leftover = false); static void remove(String name); static uint8_t position(String name); static void draw(String name = ""); static String title(); static void title(String title); // }; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // C A N V A S // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// struct print_t { const GFXfont* font; uint16_t color; uint16_t x; int16_t y; String text; }; class ezCanvas : public Print { friend class ezHeader; friend class ezButtons; public: static void begin(); static void reset(); static void clear(); static uint8_t top(); static uint8_t bottom(); static uint16_t left(); static uint16_t right(); static uint8_t height(); static uint16_t width(); static bool scroll(); static void scroll(bool s); static bool wrap(); static void wrap(bool w); static uint16_t lmargin(); static void lmargin(uint16_t newmargin); static void font(const GFXfont* font); static const GFXfont* font(); static void color(uint16_t color); static uint16_t color(); static void pos(uint16_t x, uint8_t y); static uint16_t x(); static void x(uint16_t newx); static uint8_t y(); static void y(uint8_t newy); virtual size_t write(uint8_t c); // These three are used to inherint print and println from Print class virtual size_t write(const char *str); virtual size_t write(const uint8_t *buffer, size_t size); static uint16_t loop(); private: static std::vector _printed; static uint32_t _next_scroll; static void top(uint8_t newtop); static void bottom(uint8_t newbottom); static uint8_t _y, _top, _bottom; static uint16_t _x, _left, _right, _lmargin; static bool _wrap, _scroll; static const GFXfont* _font; static uint16_t _color; static void _print(String text); static void _putString(String text); // }; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // B U T T O N S // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// class ezButtons { public: static void begin(); static void show(String buttons); static void clear(bool wipe = true); static void releaseWait(); static String poll(); static String wait(String Buttons = ""); private: static String _btn_a_s, _btn_a_l; static String _btn_b_s, _btn_b_l; static String _btn_c_s, _btn_c_l; static String _btn_ab, _btn_bc, _btn_ac; static bool _key_release_wait; static bool _lower_button_row, _upper_button_row; static void _drawButtons(String btn_a_s, String btn_a_l, String btn_b_s, String btn_b_l, String btn_c_s, String btn_c_l, String btn_ab, String btn_bc, String btn_ac); static void _drawButton(int16_t row, String text_s, String text_l, int16_t x, int16_t w); static void _drawButtonString(String text, int16_t x, int16_t y, uint16_t color, int16_t datum); // }; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // M E N U // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// class ezMenu { public: ezMenu(String hdr = ""); ~ezMenu(); bool addItem(String nameAndCaption, void (*simpleFunction)() = NULL, bool (*advancedFunction)(ezMenu* callingMenu) = NULL, void (*drawFunction)(ezMenu* callingMenu, int16_t x, int16_t y, int16_t w, int16_t h) = NULL); bool addItem(const char *image, String nameAndCaption, void (*simpleFunction)() = NULL, bool (*advancedFunction)(ezMenu* callingMenu) = NULL, void (*drawFunction)(ezMenu* callingMenu, int16_t x, int16_t y, int16_t w, int16_t h) = NULL); bool addItem(fs::FS &fs, String path, String nameAndCaption, void (*simpleFunction)() = NULL, bool (*advancedFunction)(ezMenu* callingMenu) = NULL, void (*drawFunction)(ezMenu* callingMenu, int16_t x, int16_t y, int16_t w, int16_t h) = NULL); bool deleteItem(int16_t index); bool deleteItem(String name); bool setCaption(int16_t index, String caption); bool setCaption(String name, String caption); void setSortFunction(bool (*sortFunction)(const char* s1, const char* s2)); void buttons(String bttns); void upOnFirst(String nameAndCaption); void leftOnFirst(String nameAndCaption); void downOnLast(String nameAndCaption); void rightOnLast(String nameAndCaption); String getTitle(); int16_t getItemNum(String name); int16_t pick(); String pickName(), pickCaption(), pickButton(); void run(); int16_t runOnce(); void txtBig(); void txtSmall(); void txtFont(const GFXfont* font); void imgBackground(uint16_t color); void imgFromTop(int16_t offset); void imgCaptionFont(const GFXfont* font); void imgCaptionLocation(uint8_t datum); void imgCaptionColor(uint16_t color); void imgCaptionMargins(int16_t hmargin, int16_t vmargin); void imgCaptionMargins(int16_t margin); static bool sort_asc_name_cs (const char* s1, const char* s2); static bool sort_asc_name_ci (const char* s1, const char* s2); static bool sort_dsc_name_cs (const char* s1, const char* s2); static bool sort_dsc_name_ci (const char* s1, const char* s2); static bool sort_asc_caption_cs (const char* s1, const char* s2); static bool sort_asc_caption_ci (const char* s1, const char* s2); static bool sort_dsc_caption_cs (const char* s1, const char* s2); static bool sort_dsc_caption_ci (const char* s1, const char* s2); private: struct MenuItem_t { String nameAndCaption; const char *image; fs::FS *fs; String path; void (*simpleFunction)(); bool (*advancedFunction)(ezMenu* callingMenu); void (*drawFunction)(ezMenu* callingMenu, int16_t x, int16_t y, int16_t w, int16_t h); }; std::vector _items; int16_t _selected, _offset; bool _redraw; String _header, _buttons, _pick_button; String _up_on_first, _down_on_last; int16_t _per_item_h, _vmargin; int16_t _items_per_screen; uint16_t _old_background; void _drawImage(MenuItem_t &item); void _drawCaption(); const GFXfont* _font; int16_t _runImagesOnce(); int16_t _runTextOnce(); void _fixOffset(); void _drawItems(); void _drawItem(int16_t n, String text, bool selected); void _Arrows(); int16_t _img_from_top; uint8_t _img_caption_location; uint16_t _img_caption_color; uint16_t _img_background; const GFXfont* _img_caption_font; int16_t _img_caption_hmargin, _img_caption_vmargin; bool (*_sortFunction)(const char* s1, const char* s2); void _sortItems(); bool _sortWrapper(MenuItem_t& item1, MenuItem_t& item2); // }; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // P R O G R E S S B A R // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// class ezProgressBar { public: ezProgressBar(String header = "", String msg = "", String buttons = "", const GFXfont* font = NULL, uint16_t color = NO_COLOR, uint16_t bar_color = NO_COLOR, bool show_val = false, uint16_t val_color = NO_COLOR); void value(float val); private: int16_t _bar_y; uint16_t _bar_color; bool _show_val; uint16_t _val_color; float _old_val; }; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // S E T T I N G S // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// class ezSettings { public: static void begin(); static void menu(); static void defaults(); static ezMenu menuObj; // }; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // B A C K L I G H T // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifdef M5EZ_BACKLIGHT #define NEVER 0 #define USER_SET 255 class ezBacklight { public: static void begin(); static void menu(); static void inactivity(uint8_t half_minutes); static void activity(); static uint16_t loop(); private: static uint8_t _brightness; static uint8_t _inactivity; static uint32_t _last_activity; static bool _backlight_off; // }; #endif ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // C L O C K // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifdef M5EZ_CLOCK class ezClock { public: static Timezone tz; static void begin(); static void restart(); static void menu(); static uint16_t loop(); static void clear(); static void draw(uint16_t x, uint16_t w); static bool waitForSync(const uint16_t timeout = 0); private: static void _writePrefs(); static bool _on; static String _timezone; static bool _clock12; static bool _am_pm; static String _datetime; static bool _starting; // }; #endif ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // F A C E S // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifdef M5EZ_FACES class ezFACES { public: static void begin(); static void menu(); static String poll(); static bool on(); private: static bool _on; // }; #endif ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // W I F I // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifdef M5EZ_WIFI enum WifiState_t { EZWIFI_NOT_INIT, EZWIFI_WAITING, EZWIFI_IDLE, EZWIFI_SCANNING, EZWIFI_CONNECTING, EZWIFI_AUTOCONNECT_DISABLED }; struct WifiNetwork_t { String SSID; String key; }; class ezWifi { public: static std::vector networks; static bool autoConnect; static void begin(); static void add(String ssid, String key); static bool remove(int8_t index); static bool remove(String ssid); static int8_t indexForSSID(String ssid); static void readFlash(); static void writeFlash(); static void menu(); static uint16_t loop(); static bool update(String url, const char* root_cert, ezProgressBar* pb = NULL); static String updateError(); private: static WifiState_t _state; static uint8_t _current_from_scan; static uint32_t _wait_until, _widget_time; static void _drawWidget(uint16_t x, uint16_t w); static bool _onOff(ezMenu* callingMenu); static void _manageAutoconnects(); static bool _autoconnectSelected(ezMenu* callingMenu); static void _askAdd(); static bool _connection(ezMenu* callingMenu); static void _update_progress(int done, int total); static String _update_err2str(uint8_t _error); static ezProgressBar* _update_progressbar; static String _update_error; #ifdef M5EZ_WPS static void _WPShelper(WiFiEvent_t event, system_event_info_t info); static WiFiEvent_t _WPS_event; static String _WPS_pin; static bool _WPS_new_event; #endif // }; #endif ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // B L E // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifdef M5EZ_BLE class ezBLE { public: static void begin(); static void readFlash(); static void writeFlash(); static void menu(); static void disconnect(); static class BLEClient* getClient(uint16_t index); static uint16_t getClientCount(); private: static const std::vector> _gattUuids; static bool _on; static bool _initialized; static std::vector _clients; static bool _scan(ezMenu* callingMenu); static void _connect(class BLEAdvertisedDevice& device); static bool _listClients(ezMenu* callingMenu); static bool _showClient(class BLEClient* client); static void _cleanup(); static void _refresh(); friend class M5ezClientCallback; }; #endif ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // B A T T E R Y // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifdef M5EZ_BATTERY class ezBattery { public: static void begin(); static void readFlash(); static void writeFlash(); static void menu(); static uint16_t loop(); static uint8_t getTransformedBatteryLevel(); static uint32_t getBatteryBarColor(uint8_t batteryLevel); private: static bool _on; static void _refresh(); static void _drawWidget(uint16_t x, uint16_t w); static uint8_t _numChargingBars; }; #endif ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // E Z // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// struct event_t { uint16_t (*function)(); uint32_t when; }; class M5ez { friend class ezProgressBar; friend class ezHeader; // TMP? friend class ezMenu; // For _redraw public: static std::vector themes; static ezTheme* theme; static ezScreen screen; static constexpr ezScreen& s = screen; static ezHeader header; static constexpr ezHeader& h = header; static ezCanvas canvas; static constexpr ezCanvas& c = canvas; static ezButtons buttons; static constexpr ezButtons& b = buttons; static ezSettings settings; #ifdef M5EZ_WIFI static ezWifi wifi; static constexpr ezWifi& w = wifi; #endif #ifdef M5EZ_BLE static ezBLE ble; #endif #ifdef M5EZ_BATTERY static ezBattery battery; #endif #ifdef M5EZ_BACKLIGHT static ezBacklight backlight; #endif #ifdef M5EZ_CLOCK static ezClock clock; #endif #ifdef M5EZ_FACES static ezFACES faces; #endif static void begin(); static void yield(); static void addEvent(uint16_t (*function)(), uint32_t when = 1); static void removeEvent(uint16_t (*function)()); static void redraw(); static ezMenu* getCurrentMenu(); // ez.msgBox static String msgBox(String header, String msg, String buttons = "OK", const bool blocking = true, const GFXfont* font = NULL, uint16_t color = NO_COLOR); // ez.textInput static String textInput(String header = "", String defaultText = ""); //ez.textBox static String textBox(String header = "", String text = "", bool readonly = false, String buttons = "up#Done#down", const GFXfont* font = NULL, uint16_t color = NO_COLOR); // Generic String object helper functions static String rightOf(String input, String separator, bool trim = true); static String leftOf(String input, String separator, bool trim = true); static int16_t countStringInString(String haystack, String needle); static int16_t chopString(String input, String separator, std::vector& chops, bool trim = true); static int16_t charsFit(String input, int16_t cutoff); static String clipString(String input, int16_t cutoff, bool dots = true); static bool isBackExitOrDone(String str); // m5.lcd wrappers that make fonts easier static void setFont(const GFXfont* font); static int16_t fontHeight(); static String version(); private: static std::vector _events; static bool _redraw; static ezMenu* _currentMenu; static bool _in_event; // ez.textInput static int16_t _text_cursor_x, _text_cursor_y, _text_cursor_h, _text_cursor_w; static bool _text_cursor_state; static void _drawTextInputLockString(String text); static void _drawTextInputBox(String text); static void _textCursor(); static void _textCursor(bool state); static long _text_cursor_millis; // ez.textBox static void _wrapLines(String text, uint16_t width, std::vector& lines); static void _fitLines(String text, uint16_t max_width, uint16_t min_width, std::vector& lines); // }; extern M5ez ez; #endif //_M5EZ_H_ ================================================ FILE: src/themes/dark.h ================================================ // This is the dark theme. See how little you need to change for a different look? { ezTheme theme; theme.name = "Dark"; // Change this when making theme theme.background = TFT_BLACK; theme.foreground = TFT_WHITE; // theme.header_height = 23; // theme.GFXfont* header_font = &FreeSansBold9pt7b; // theme.header_hmargin = 5; // theme.header_tmargin = 3; theme.header_bgcolor = TFT_DARKGREY; theme.header_fgcolor = TFT_WHITE; // theme.GFXfont* print_font = mono6x8; theme.print_color = theme.foreground; // theme.GFXfont* clock_font = mono12x16; // theme.longpress_time = 250; //milliseconds // theme.button_height = 19; // theme.GFXfont* button_font = &FreeSans9pt7b; // theme.button_tmargin = 1; // theme.button_hmargin = 5; // theme.button_gap = 3; // theme.button_radius = 8; // theme.button_bgcolor_b = TFT_BLUE; // theme.button_bgcolor_t = TFT_PURPLE; // theme.button_fgcolor = TFT_WHITE; // theme.button_longcolor = TFT_CYAN; // theme.input_top = 50; // pixels below ez.canvas.top() // theme.input_hmargin = 10; // The distance between text box and edge of screen // theme.input_vmargin = 10; // Vertical margin _inside_ the text box // theme.GFXfont* input_font = &FreeMonoBold12pt7b; // theme.GFXfont* input_keylock_font = &FreeSansBold9pt7b; theme.input_bgcolor = TFT_DARKGREY; // theme.input_fgcolor = TFT_GREEN; // theme.input_cursor_blink = 500; // milliseconds // theme.input_faces_btns = 18; // theme.GFXfont* tb_font = &FreeSans9pt7b; theme.tb_color = theme.foreground; // theme.tb_hmargin = 5; // theme.menu_lmargin = 20; // theme.menu_rmargin = 10; // theme.menu_arrows_lmargin = 5; theme.menu_item_color = theme.foreground; theme.menu_sel_bgcolor = theme.foreground; theme.menu_sel_fgcolor = theme.background; // theme.GFXfont* menu_big_font = &FreeSans12pt7b; // theme.GFXfont* menu_small_font = &FreeSans9pt7b; // theme.menu_item_hmargin = 10; // theme.menu_item_radius = 8; // theme.GFXfont* msg_font = &FreeSans12pt7b; theme.msg_color = theme.foreground; // theme.msg_hmargin = 20; // theme.progressbar_line_width = 4; // theme.progressbar_width = 25; theme.progressbar_color = theme.foreground; // theme.signal_interval = 2000; // theme.signal_bar_width = 4; // theme.signal_bar_gap = 2; // theme.battery_bar_width = 26; // theme.battery_bar_gap = 2; // theme.battery_0_fgcolor = TFT_RED; // theme.battery_25_fgcolor = TFT_ORANGE; // theme.battery_50_fgcolor = TFT_YELLOW; // theme.battery_75_fgcolor = TFT_GREENYELLOW; // theme.battery_100_fgcolor = TFT_GREEN; theme.add(); } ================================================ FILE: src/themes/default.h ================================================ // This is the default theme. The values you see are all commented out because they are the defaults so you // do not need to specify them. Take a look at the dark.h theme file to see how another theme works. // // (You only need to #include this file if you offer more than one theme and want the theme chooser in the // settings to also offer the default theme. The original active theme at startup is the last one you // included until the user has saved one in the settings.) { ezTheme theme; // theme.name = "Default"; // Change this when making theme // theme.background = 0xEF7D; // theme.foreground = TFT_BLACK; // theme.header_height = 23; // theme.GFXfont* header_font = &FreeSansBold9pt7b; // theme.header_hmargin = 5; // theme.header_tmargin = 3; // theme.header_bgcolor = TFT_BLUE; // theme.header_fgcolor = TFT_WHITE; // theme.GFXfont* print_font = mono6x8; // theme.print_color = theme.foreground; // theme.GFXfont* clock_font = mono12x16; // theme.longpress_time = 250; //milliseconds // theme.button_height = 19; // theme.GFXfont* button_font = &FreeSans9pt7b; // theme.button_tmargin = 1; // theme.button_hmargin = 5; // theme.button_gap = 3; // theme.button_radius = 8; // theme.button_bgcolor_b = TFT_BLUE; // theme.button_bgcolor_t = TFT_PURPLE; // theme.button_fgcolor = TFT_WHITE; // theme.button_longcolor = TFT_CYAN; // theme.input_top = 50; // pixels below ez.canvas.top() // theme.input_hmargin = 10; // The distance between text box and edge of screen // theme.input_vmargin = 10; // Vertical margin _inside_ the text box // theme.GFXfont* input_font = &FreeMonoBold12pt7b; // theme.GFXfont* input_keylock_font = &FreeSansBold9pt7b; // theme.input_bgcolor = TFT_BLACK; // theme.input_fgcolor = TFT_GREEN; // theme.input_cursor_blink = 500; // milliseconds // theme.input_faces_btns = 18; // theme.GFXfont* tb_font = &FreeSans9pt7b; // theme.tb_color = theme.foreground; // theme.tb_hmargin = 5; // theme.menu_lmargin = 20; // theme.menu_rmargin = 10; // theme.menu_arrows_lmargin = 5; // theme.menu_item_color = theme.foreground; // theme.menu_sel_bgcolor = theme.foreground; // theme.menu_sel_fgcolor = theme.background; // theme.GFXfont* menu_big_font = &FreeSans12pt7b; // theme.GFXfont* menu_small_font = &FreeSans9pt7b; // theme.menu_item_hmargin = 10; // theme.menu_item_radius = 8; // theme.GFXfont* msg_font = &FreeSans12pt7b; // theme.msg_color = theme.foreground; // theme.msg_hmargin = 20; // theme.progressbar_line_width = 4; // theme.progressbar_width = 25; // theme.progressbar_color = theme.foreground; // theme.signal_interval = 2000; // theme.signal_bar_width = 4; // theme.signal_bar_gap = 2; // theme.battery_bar_width = 26; // theme.battery_bar_gap = 2; // theme.battery_0_fgcolor = TFT_RED; // theme.battery_25_fgcolor = TFT_ORANGE; // theme.battery_50_fgcolor = TFT_YELLOW; // theme.battery_75_fgcolor = TFT_GREENYELLOW; // theme.battery_100_fgcolor = TFT_GREEN; theme.add(); } ================================================ FILE: tech_notes/converting_from_M5ez_1.x.md ================================================ ## Converting from M5ez 1.x This section deals with conversion of code that was written for the 1.x versions of M5ez. Since it's now 2020 and the last 1.x was released in September of 2018, this section has been moved from the user manual to a tech note. This document is of no use if you've never used M5ez 1.x. ### What's new in M5ez 2.x ? > *Kept here just to show what wasn't there in 1.x* * Many user-selectable settings, including backlight, clock/timezone, FACES keyboard, etc. * Theme values can be changed at runtime, multiple thmes can be loaded; a theme chooser then shows up in the settings * Header can have user-defined widgets (internally used for clock and wifi signal display) * The canvas now inherits from the Print class, so everything print and println could do, you can now also do on the canvas. * The canvas scrolls (if you want it to) * you can create your own events that get ran in the M5ez button wait loops * Many bugs got fixed * Code is a lot cleaner now, easier to add things without the sometimes ad-hoc and organically grown constructs of M5ez 1.x However, all of this comes with some changes to the names of common functions in M5ez. Generally things are more consistent now, but that does mean they are different: your M5ez 1.x code will not run without modifications. I am not planning an M5ez 3.0 at this time, so expect no further modifications to be needed to existing code for a while. ### Converting code from M5ez 1.x to 2.x To convert code form 1.x to 2.x, first remove the `m5.begin()` at the start of your code, and replace it by `ez.begin()`. Then it is recommended you replace the following functions: | M5ez 1.x | | M5ez 2.x | |:---------|:--:|:---------| | `ez.clearScreen()` | **—>** | `ez.screen.clear()` | `ez.background()` | **—>** | `ez.screen.background()` | `ez.drawHeader(` | **—>** | `ez.header.show(` | `ez.removeHeader()` | **—>** | `ez.header.hide()` | `ez.clearCanvas()` | **—>** | `ez.canvas.clear()` | `ez.canvasTop()` | **—>** | `ez.canvas.top()` | `ez.canvasBottom()` | **—>** | `ez.canvas.bottom()` | `ez.canvasLeft()` | **—>** | `ez.canvas.left()` | `ez.canvasRight()` | **—>** | `ez.canvas.right()` | `ez.canvasWidth()` | **—>** | `ez.canvas.width()` | `ez.canvasHeight()` | **—>** | `ez.canvas.height()` | `ez.print(` | **—>** | `ez.canvas.print(` | `ez.println(` | **—>** | `ez.canvas.println(` | `ez.drawButtons(` | **—>** | `ez.buttons.show(` | `ez.getButtons(` | **—>** | `ez.buttons.poll(` | `ez.waitForButtons(` | **—>** | `ez.buttons.wait(` Then, check all your print functions: they no longer support the setting of font, location or color in the statement itself: these need to be done with `ez.canvas.font`, `ez.canvas.color` etc. (Print is much nicer now because the canvas object inherited from the Print class, and because the canvas can scroll now.) Then simply fix any remaining problems by first fixing any compiler complaints with this document in hand, and then walk through all of your program's functionality to see if everything works as expected. ================================================ FILE: tech_notes/obscure_errors_and_resolutions.md ================================================ ### WPS error By default, M5ez supports "WPS pushbutton" and "WPS pincode" as ways to connect to Wifi. If you run into an error saying ... ``` Documents\Arduino\libraries\M5ez-master\src\M5ez.cpp:1319:19: error: 'struct esp_wps_config_t' has no member named 'factory_info' ``` ... it probably means your ESP32 library is out of date. Espressif (the ESP32 people) changed how WPS is done in late June 2018. If this happens to you and you would like to have WPS, simply follow the instructions [here](https://github.com/espressif/arduino-esp32/blob/master/docs/arduino-ide/boards_manager.md) to make sure you have the latest ESP32 Arduino support and the problem should go away. > *Alternatively, if you do not plan to use WPS, you can also comment out `#define M5EZ_WPS` in the `M5ez.h` file in the library's directory.** ================================================ FILE: tech_notes/settings_persistence.md ================================================ # M5ez Settings Persistence M5ez provides UI for managing a number of settings which are persisted in NVS (Non-Volatile Storage) memory, and are accessible from other programs. All settings share a single NVS namespace: > NVS NameSpace: "M5ez" ## Wifi Settings The WiFi settings include Autoconnect, SSIDs, and passwords. SSIDs and passwords are grouped in pairs, but stored as individual strings. The association between SSID and password is established by a numeric suffix, starting at one and incrementing for each pair. | Key Name | Type | Purpose | | :------------- | :------ | :---------------------------------------------- | | autoconnect_on | boolean | True if ezWiFi should connect to strongest SSID | | SSID1 | String | Name of first stored network (if any) | | key1 | String | Password of first stored network (if any) | | ... | | SSIDn | String | Name of last stored network | | keyn | String | Password of last stored network | ## Battery Settings The Battery settings contains only a single flag which indicates whether or not the battery icon is displayed in the header. | Key Name | Type | Purpose | | :-------------- | :------ | :------------------------------------------------ | | battery_icon_on | boolean | True if battery icon is to be displayed in header | ## Clock Settings The Clock settings include 4 items. The timezone names are described [here](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). | Key Name | Type | Purpose | | :-------------- | :------ | :------------------------------------------------- | | clock_on | boolean | True if time is to be displayed in header | | timezone | String | Name or description of selected timezone | | clock12 | boolean | True if time should be displayed in 12 hr format | | ampm | boolean | True if am/pm should be displayed after 12 hr time | ## Backlight Settings The Backlight settings are stored as two unsigned characters (0 - 255) representing brightness and inactivity timeout. | Key Name | Type | Purpose | | :-------------- | :-------- | :--------------------------------------------------------- | | brightness | uint8_t | Lcd brightness. Default is 128. | | inactivity | uint8_t | Time until Lcd is blanked. 0 = never, else n * 30 seconds. | ## FACES Settings The Faces settings group currently contains a single member. | Key Name | Type | Purpose | | :-------------- | :------ | :--------------------------------------------------------- | | faces_on | boolean | True if the keyboard Face should be used for text input. | ## Theme Settings The Theme settings group also contains a single member. | Key Name | Type | Purpose | | :-------------- | :------ | :--------------------------------------------------------- | | theme | String | Name of the selected theme (if any.) | --- ## Accessing Settings Using the Arduino Framework, access NVS settings using the Preferences library. Reading preferences: ``` #include Preferences prefs; ... // Read preferences prefs.begin("M5ez", true); // Namespace = "M5ez", true means ReadOnly. No reason to modify settings when we're reading them. String theme = prefs.getString("theme", "Default"); // Type = String, Key name = "theme", default value if missing = "Default" (can be omitted) uint8_t brightness = prefs.getUChar("brightness", 128); // Type = uint8_t (UChar), Key name = "brightness", default value if missing = 128 (can be omitted) prefs.end(); // Always close preferences promptly, open it only when needed. ``` Writing preferences. Be certain to write using the correct data type or an error will result. ``` #include Preferences prefs; ... // Write preferences prefs.begin("M5ez", false); // Namespace = "M5ez", false means ReadWrite. Cannot change NVS otherwise. prefs.putBool("autoconnect_on", true); // Type = bool, Key name = "autoconnect_on", value = true prefs.end(); // Always close preferences promptly, especially when in read/write mode. ``` ================================================ FILE: tools/get_cert ================================================ #!/bin/sh # This script will take an https URL as an argument. It will do the following: # # It will find whether this URL is the "effective URL", or whether it redirects # (possibly multiple times) to something else. It will output this "effective URL". # # It will then take the host part of that URL, connect to port 443 on it, and get the # certificate chain. It will take the last certificate on the chain (the root cert) # and obtain the issuer details as well as the notAfter date. # # The certicate is then saved in a format that can be included in an Arduino sketch # or any C/C++ environment to provide a "const char * root_cert" variable to hold # the entire root certificate. URL=`curl -w "%{url_effective}\n" -I -L -s -S $1 -o /dev/null` HOST=`echo $URL | awk -F[/:] '{print $4}'` FILENAME=`echo $HOST | sed -e 's/\./_/g'`.h TMPFILE=/tmp/cert.get_cert openssl s_client -showcerts -connect $HOST:443 < /dev/null 2>/dev/null| sed -n 'H; /^-----BEGIN CERTIFICATE-----/h; ${g;p;}' |sed -e '/-----END CERTIFICATE-----/q' > $TMPFILE NOTAFTER=`cat $TMPFILE | openssl x509 -noout -dates | grep 'notAfter'` ISSUER=`cat $TMPFILE | openssl x509 -noout -issuer` echo "The effective download URL (after resolving forwards) is:" echo " $URL" cat > $FILENAME <> $FILENAME rm $TMPFILE echo "" echo "The root certificate include file is saved as:" echo " $FILENAME" ================================================ FILE: tools/gh-md-toc ================================================ #!/usr/bin/env bash # # Steps: # # 1. Download corresponding html file for some README.md: # curl -s $1 # # 2. Discard rows where no substring 'user-content-' (github's markup): # awk '/user-content-/ { ... # # 3.1 Get last number in each row like ' ... sitemap.js.*<\/h/)+2, RLENGTH-5) # # 5. Find anchor and insert it inside "(...)": # substr($0, match($0, "href=\"[^\"]+?\" ")+6, RLENGTH-8) # gh_toc_version="0.5.0" gh_user_agent="gh-md-toc v$gh_toc_version" # # Download rendered into html README.md by its url. # # gh_toc_load() { local gh_url=$1 if type curl &>/dev/null; then curl --user-agent "$gh_user_agent" -s "$gh_url" elif type wget &>/dev/null; then wget --user-agent="$gh_user_agent" -qO- "$gh_url" else echo "Please, install 'curl' or 'wget' and try again." exit 1 fi } # # Converts local md file into html by GitHub # # ➥ curl -X POST --data '{"text": "Hello world github/linguist#1 **cool**, and #1!"}' https://api.github.com/markdown #

Hello world github/linguist#1 cool, and #1!

'" gh_toc_md2html() { local gh_file_md=$1 URL=https://api.github.com/markdown/raw TOKEN="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/token.txt" if [ -f "$TOKEN" ]; then URL="$URL?access_token=$(cat $TOKEN)" fi curl -s --user-agent "$gh_user_agent" \ --data-binary @"$gh_file_md" -H "Content-Type:text/plain" \ $URL } # # Is passed string url # gh_is_url() { case $1 in https* | http*) echo "yes";; *) echo "no";; esac } # # TOC generator # gh_toc(){ local gh_src=$1 local gh_src_copy=$1 local gh_ttl_docs=$2 local need_replace=$3 if [ "$gh_src" = "" ]; then echo "Please, enter URL or local path for a README.md" exit 1 fi # Show "TOC" string only if working with one document if [ "$gh_ttl_docs" = "1" ]; then echo "Table of Contents" echo "=================" echo "" gh_src_copy="" fi if [ "$(gh_is_url "$gh_src")" == "yes" ]; then gh_toc_load "$gh_src" | gh_toc_grab "$gh_src_copy" if [ "$need_replace" = "yes" ]; then echo echo "!! '$gh_src' is not a local file" echo "!! Can't insert the TOC into it." echo fi else local toc=`gh_toc_md2html "$gh_src" | gh_toc_grab "$gh_src_copy"` echo "$toc" if [ "$need_replace" = "yes" ]; then local ts="<\!--ts-->" local te="<\!--te-->" local dt=`date +'%F_%H%M%S'` local ext=".orig.${dt}" local toc_path="${gh_src}.toc.${dt}" local toc_footer="" # http://fahdshariff.blogspot.ru/2012/12/sed-mutli-line-replacement-between-two.html # clear old TOC sed -i${ext} "/${ts}/,/${te}/{//!d;}" "$gh_src" # create toc file echo "${toc}" > "${toc_path}" echo -e "\n${toc_footer}\n" >> "$toc_path" # insert toc file if [[ "`uname`" == "Darwin" ]]; then sed -i "" "/${ts}/r ${toc_path}" "$gh_src" else sed -i "/${ts}/r ${toc_path}" "$gh_src" fi echo echo "!! TOC was added into: '$gh_src'" echo "!! Origin version of the file: '${gh_src}${ext}'" echo "!! TOC added into a separate file: '${toc_path}'" echo fi fi } # # Grabber of the TOC from rendered html # # $1 — a source url of document. # It's need if TOC is generated for multiple documents. # gh_toc_grab() { # if closed is on the new line, then move it on the prev line # for example: # was: The command foo1 # # became: The command foo1 sed -e ':a' -e 'N' -e '$!ba' -e 's/\n<\/h/<\/h/g' | # find strings that corresponds to template grep -E -o '//' | sed 's/<\/code>//' | # now all rows are like: # ... .*<\/h/)+2, RLENGTH-5)"](" gh_url substr($0, match($0, "href=\"[^\"]+?\" ")+6, RLENGTH-8) ")"}' | sed 'y/+/ /; s/%/\\x/g')" } # # Returns filename only from full path or url # gh_toc_get_filename() { echo "${1##*/}" } # # Options hendlers # gh_toc_app() { local app_name="gh-md-toc" local need_replace="no" if [ "$1" = '--help' ] || [ $# -eq 0 ] ; then echo "GitHub TOC generator ($app_name): $gh_toc_version" echo "" echo "Usage:" echo " $app_name [--insert] src [src] Create TOC for a README file (url or local path)" echo " $app_name - Create TOC for markdown from STDIN" echo " $app_name --help Show help" echo " $app_name --version Show version" return fi if [ "$1" = '--version' ]; then echo "$gh_toc_version" return fi if [ "$1" = "-" ]; then if [ -z "$TMPDIR" ]; then TMPDIR="/tmp" elif [ -n "$TMPDIR" -a ! -d "$TMPDIR" ]; then mkdir -p "$TMPDIR" fi local gh_tmp_md gh_tmp_md=$(mktemp $TMPDIR/tmp.XXXXXX) while read input; do echo "$input" >> "$gh_tmp_md" done gh_toc_md2html "$gh_tmp_md" | gh_toc_grab "" return fi if [ "$1" = '--insert' ]; then need_replace="yes" shift fi for md in "$@" do echo "" gh_toc "$md" "$#" "$need_replace" done echo "" echo "Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)" } # # Entry point # gh_toc_app "$@" ================================================ FILE: tools/include_file ================================================ #!/bin/sh INPUT_PATH=$1 INPUT_FILE=`basename $1` # The byte array is named like the file, but in lower case with dots replaced by underscores ARRAYNAME=`echo $INPUT_FILE | sed -e 's/\\./_/g'` OUTPUT_FILE=$ARRAYNAME.h BYTES=`wc -c $INPUT_PATH | awk '{print $1}'` echo "Converting input file:" echo " $INPUT_PATH" echo "Creating include file:" echo " $OUTPUT_FILE" cat > $OUTPUT_FILE <> $OUTPUT_FILE echo "};" >> $OUTPUT_FILE