blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
8b986a2c9445430e3971983b23efd3db08102926
634f1740953424708885082bd5b478ea4484a21a
/src/lldpix.cpp
8a40d38658c12a3084a68e9928908261c734a2d4
[ "BSD-3-Clause" ]
permissive
pullmoll/lualept
6029748c0de362e678f92c9c2ba0e13312281c3b
bfe6da74088e23fc895faa30dfb1cbde9d42a53d
refs/heads/master
2021-06-05T01:41:44.694247
2020-09-16T14:56:42
2020-09-16T14:57:04
133,794,327
2
0
null
null
null
null
UTF-8
C++
false
false
31,597
cpp
/************************************************************************ * Copyright (c) Jürgen Buchmüller <pullmoll@t-online.de> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. Neither the name of the copyright holder nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *************************************************************************/ #include "modules.h" /** * \file lldpix.cpp * \class DPix * * A 2-D pixels array of doubles (l_float64). */ /** Set TNAME to the class name used in this source file */ #define TNAME LL_DPIX /** Define a function's name (_fun) with prefix DPix */ #define LL_FUNC(x) FUNC(TNAME "." x) /** * \brief Destroy a DPix* (%dpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * </pre> * \param L Lua state. * \return 0 for nothing on the Lua stack. */ static int Destroy(lua_State *L) { LL_FUNC("Destroy"); DPix *dpix = ll_take_udata<DPix>(_fun, L, 1, TNAME); DBG(LOG_DESTROY, "%s: '%s' %s = %p, %s = %d\n", _fun, TNAME, "dpix", reinterpret_cast<void *>(dpix), "refcount", dpixGetRefcount(dpix)); dpixDestroy(&dpix); return 0; } /** * \brief Printable string for a DPix* (%dpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * </pre> * \param L Lua state. * \return 1 string on the Lua stack. */ static int toString(lua_State* L) { LL_FUNC("toString"); char *str = ll_calloc<char>(_fun, L, LL_STRBUFF); DPix *dpix = ll_check_DPix(_fun, L, 1); luaL_Buffer B; void *data; l_int32 w, h, wpl, refcnt, xres, yres; long size; luaL_buffinit(L, &B); if (!dpix) { luaL_addstring(&B, "nil"); } else if (dpixGetDimensions(dpix, &w, &h)) { luaL_addstring(&B, "invalid"); } else { snprintf(str, LL_STRBUFF, TNAME "*: %p", reinterpret_cast<void *>(dpix)); luaL_addstring(&B, str); wpl = dpixGetWpl(dpix); snprintf(str, LL_STRBUFF, "\n %s = %d, %s = %d, %s = %d", "width", w, "height", h, "wpl", wpl); luaL_addstring(&B, str); refcnt = dpixGetRefcount(dpix); dpixGetResolution(dpix, &xres, &yres); snprintf(str, LL_STRBUFF, "\n %s = %d, %s = %d, %s = %d", "xres", xres, "yres", yres, "refcnt", refcnt); luaL_addstring(&B, str); #if defined(LUALEPT_INTERNALS) && (LUALEPT_INTERNALS > 0) size = static_cast<long>(sizeof(l_float64)) * wpl * h; data = dpixGetData(dpix); snprintf(str, LL_STRBUFF, "\n %s = %p, %s = %#" PRIx64, "data", data, "size", size); luaL_addstring(&B, str); #endif } luaL_pushresult(&B); ll_free(str); return 1; } /** * \brief Multiply by a constant (%multc), then add a constant (%addc) to each pixel of DPix* (%dpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * Arg #2 is expected to be a l_float64 (addc). * Arg #3 is expected to be a l_float64 (multc). * * Leptonica's Notes: * (1) This is an in-place operation. * (2) It can be used to multiply each pixel by a constant, * and also to add a constant to each pixel. Multiplication * is done first. * </pre> * \param L Lua state. * \return 1 boolean on the Lua stack. */ static int AddMultConstant(lua_State *L) { LL_FUNC("AddMultConstant"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_float64 addc = ll_check_l_float64(_fun, L, 2); l_float64 multc = ll_check_l_float64(_fun, L, 3); return ll_push_boolean(_fun, L, 0 == dpixAddMultConstant(dpix, addc, multc)); } /** * \brief Modify the reference count of DPix* (%dpix) by a value (%delta). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * Arg #2 is expected to be a l_int32 (delta). * </pre> * \param L Lua state. * \return 1 boolean on the Lua stack. */ static int ChangeRefcount(lua_State *L) { LL_FUNC("ChangeRefcount"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_int32 delta = ll_check_l_int32(_fun, L, 2); return ll_push_boolean(_fun, L, 0 == dpixChangeRefcount(dpix, delta)); } /** * \brief Clone a DPix* (%dpixs). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpixs). * * Leptonica's Notes: * (1) See pixClone() for definition and usage. * </pre> * \param L Lua state. * \return 1 DPix* on the Lua stack. */ static int Clone(lua_State *L) { LL_FUNC("Clone"); DPix *dpixs = ll_check_DPix(_fun, L, 1); DPix *dpix = dpixClone(dpixs); return ll_push_DPix(_fun, L, dpix); } /** * \brief Convert a DPix* (%dpix) to a FPix* (%fpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * </pre> * \param L Lua state. * \return 1 FPix* on the Lua stack. */ static int ConvertToFPix(lua_State *L) { LL_FUNC("ConvertToFPix"); DPix *dpix = ll_check_DPix(_fun, L, 1); FPix *fpix = dpixConvertToFPix(dpix); return ll_push_FPix(_fun, L, fpix); } /** * \brief Convert a DPix* (%dpix) to a Pix* (%pix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpixs). * Arg #2 is expected to be a l_int32 (outdepth). * Arg #3 is expected to be a l_int32 (negvals). * Arg #4 is expected to be a l_int32 (errorflag). * * Leptonica's Notes: * (1) Use %outdepth = 0 to programmatically determine the * output depth. If no values are greater than 255, * it will set outdepth = 8; otherwise to 16 or 32. * (2) Because we are converting a float to an unsigned int * with a specified dynamic range (8, 16 or 32 bits), errors * can occur. If errorflag == TRUE, output the number * of values out of range, both negative and positive. * (3) If a pixel value is positive and out of range, clip to * the maximum value represented at the outdepth of 8, 16 * or 32 bits. * </pre> * \param L Lua state. * \return 1 Pix* on the Lua stack. */ static int ConvertToPix(lua_State *L) { LL_FUNC("ConvertToPix"); DPix *dpixs = ll_check_DPix(_fun, L, 1); l_int32 outdepth = ll_opt_l_int32(_fun, L, 2, 0); l_int32 negvals = ll_check_negvals(_fun, L, 3); l_int32 errorflag = ll_opt_boolean(_fun, L, 4); Pix *pix = dpixConvertToPix(dpixs, outdepth, negvals, errorflag); return ll_push_Pix(_fun, L, pix); } /** * \brief Copy a DPix* (%dpixs) to a DPix* (%dpixd). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpixd). * Arg #2 is expected to be a DPix* (dpixs). * * Leptonica's Notes: * (1) There are three cases: * (a) dpixd == null (makes a new dpix; refcount = 1) * (b) dpixd == dpixs (no-op) * (c) dpixd != dpixs (data copy; no change in refcount) * If the refcount of dpixd > 1, case (c) will side-effect * these handles. * (2) The general pattern of use is: * dpixd = dpixCopy(dpixd, dpixs); * This will work for all three cases. * For clarity when the case is known, you can use: * (a) dpixd = dpixCopy(NULL, dpixs); * (c) dpixCopy(dpixd, dpixs); * (3) For case (c), we check if dpixs and dpixd are the same size. * If so, the data is copied directly. * Otherwise, the data is reallocated to the correct size * and the copy proceeds. The refcount of dpixd is unchanged. * (4) This operation, like all others that may involve a pre-existing * dpixd, will side-effect any existing clones of dpixd. * </pre> * \param L Lua state. * \return 1 on the Lua stack. */ static int Copy(lua_State *L) { LL_FUNC("Copy"); DPix *dpixd = ll_check_DPix(_fun, L, 1); DPix *dpixs = ll_check_DPix(_fun, L, 2); DPix *dpix = dpixCopy(dpixd, dpixs); return ll_push_DPix(_fun, L, dpix); } /** * \brief Copy the resolution from a DPix* (%dpixs) to a DPix* (%dpixd). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpixd). * Arg #2 is expected to be a DPix* (dpixs). * </pre> * \param L Lua state. * \return 1 boolean on the Lua stack. */ static int CopyResolution(lua_State *L) { LL_FUNC("CopyResolution"); DPix *dpixd = ll_check_DPix(_fun, L, 1); DPix *dpixs = ll_check_DPix(_fun, L, 2); return ll_push_boolean(_fun, L, 0 == dpixCopyResolution(dpixd, dpixs)); } /** * \brief Create a new DPix* (%dpix) with width (%width) times height (%height) pixels. * <pre> * Arg #1 is expected to be a l_int32 (width). * Arg #2 is expected to be a l_int32 (height). * * Leptonica's Notes: * (1) Makes a DPix of specified size, with the data array * allocated and initialized to 0. * (2) The number of pixels must be less than 2^28. * </pre> * \param L Lua state. * \return 1 DPix* on the Lua stack. */ static int Create(lua_State *L) { LL_FUNC("Create"); l_int32 width = ll_opt_l_int32(_fun, L, 1, 1); l_int32 height = ll_opt_l_int32(_fun, L, 2, 1); DPix *dpix = dpixCreate(width, height); return ll_push_DPix(_fun, L, dpix); } /** * \brief Create a DPix* (%dpix) of the same size as input DPix* (%dpixs). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpixs). * * Leptonica's Notes: * (1) Makes a DPix of the same size as the input DPix, with the * data array allocated and initialized to 0. * (2) Copies the resolution. * </pre> * \param L Lua state. * \return 1 on the Lua stack. */ static int CreateTemplate(lua_State *L) { LL_FUNC("CreateTemplate"); DPix *dpixs = ll_check_DPix(_fun, L, 1); DPix *dpix = dpixCreateTemplate(dpixs); return ll_push_DPix(_fun, L, dpix); } /** * \brief Swap bytes in the DPix* (%dpixs) data to little endian. * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpixd). * Arg #2 is expected to be a DPix* (dpixs). * * Leptonica's Notes: * (1) On big-endian hardware, this does byte-swapping on each of * the 4-byte words in the dpix data. On little-endians, * the data is unchanged. This is used for serialization * of dpix; the data is serialized in little-endian byte * order because most hardware is little-endian. * (2) The operation can be either in-place or, if dpixd == NULL, * a new dpix is made. If not in-place, caller must catch * the returned pointer. * </pre> * \param L Lua state. * \return 1 on the Lua stack. */ static int EndianByteSwap(lua_State *L) { LL_FUNC("EndianByteSwap"); DPix *dpixd = ll_check_DPix(_fun, L, 1); DPix *dpixs = ll_check_DPix(_fun, L, 2); DPix *dpix = dpixEndianByteSwap(dpixd, dpixs); return ll_push_DPix(_fun, L, dpix); } /** * \brief Get the DPix* (%dpix) data as a 2D table array of numbers. * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * </pre> * \param L Lua state. * \return 1 2D table array of l_float64 on the Lua stack. */ static int GetData(lua_State *L) { LL_FUNC("GetData"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_float64 *data = dpixGetData(dpix); l_int32 wpl = dpixGetWpl(dpix); l_int32 w = 0; l_int32 h = 0; if (dpixGetDimensions(dpix, &w, &h)) return ll_push_nil(_fun, L); return ll_pack_Darray_2d(_fun, L, data, wpl, h); } /** * \brief Get the dimensions (%w, %h) of DPix* (%dpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * </pre> * \param L Lua state. * \return 2 l_int32 (%w, %h) on the Lua stack. */ static int GetDimensions(lua_State *L) { LL_FUNC("GetDimensions"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_int32 w = 0; l_int32 h = 0; if (dpixGetDimensions(dpix, &w, &h)) return ll_push_nil(_fun, L); ll_push_l_int32(_fun, L, w); ll_push_l_int32(_fun, L, h); return 2; } /** * \brief Get the maximum value (%maxval) and location (%xmaxloc, %ymaxloc) of DPix* (%dpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * </pre> * \param L Lua state. * \return 3 value (%maxval) and location (%xmaxloc, %ymaxloc) on the Lua stack. */ static int GetMax(lua_State *L) { LL_FUNC("GetMax"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_float64 maxval = 0; l_int32 xmaxloc = 0; l_int32 ymaxloc = 0; if (dpixGetMax(dpix, &maxval, &xmaxloc, &ymaxloc)) return ll_push_nil(_fun, L); ll_push_l_float64(_fun, L, maxval); ll_push_l_int32(_fun, L, xmaxloc); ll_push_l_int32(_fun, L, ymaxloc); return 3; } /** * \brief Get the minimum value (%minval) and location (%xminloc, %yminloc) of DPix* (%dpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * </pre> * \param L Lua state. * \return 3 value (%minval) and location (%xminloc, %yminloc) on the Lua stack. */ static int GetMin(lua_State *L) { LL_FUNC("GetMin"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_float64 minval = 0; l_int32 xminloc = 0; l_int32 yminloc = 0; if (dpixGetMin(dpix, &minval, &xminloc, &yminloc)) return ll_push_nil(_fun, L); ll_push_l_float64(_fun, L, minval); ll_push_l_int32(_fun, L, xminloc); ll_push_l_int32(_fun, L, yminloc); return 3; } /** * \brief Get the value (%val) of pixel at (%x, %y) from DPix* (%dpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * Arg #2 is expected to be a l_int32 (x). * Arg #3 is expected to be a l_int32 (y). * </pre> * \param L Lua state. * \return 1 l_float64 (%val) on the Lua stack. */ static int GetPixel(lua_State *L) { LL_FUNC("GetPixel"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_int32 x = ll_check_l_int32(_fun, L, 2); l_int32 y = ll_check_l_int32(_fun, L, 3); l_float64 val = 0; if (dpixGetPixel(dpix, x, y, &val)) return ll_push_nil(_fun, L); return ll_push_l_float64(_fun, L, val); } /** * \brief Get the reference count of DPix* (%dpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * </pre> * \param L Lua state. * \return 1 l_int32 (%refcount) on the Lua stack. */ static int GetRefcount(lua_State *L) { LL_FUNC("GetRefcount"); DPix *dpix = ll_check_DPix(_fun, L, 1); return ll_push_l_int32(_fun, L, dpixGetRefcount(dpix)); } /** * \brief Get the resolution (%xres, %yres) of DPix* (%dpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * </pre> * \param L Lua state. * \return 2 integers (%xres, %yres) on the Lua stack. */ static int GetResolution(lua_State *L) { LL_FUNC("GetResolution"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_int32 xres = 0; l_int32 yres = 0; if (dpixGetResolution(dpix, &xres, &yres)) return ll_push_nil(_fun, L); ll_push_l_int32(_fun, L, xres); ll_push_l_int32(_fun, L, yres); return 2; } /** * \brief Get the words-per-line value (%wpl) for DPix* (%dpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * </pre> * \param L Lua state. * \return 1 integer (%wpl) on the Lua stack.. */ static int GetWpl(lua_State *L) { LL_FUNC("GetWpl"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_int32 result = dpixGetWpl(dpix); return ll_push_l_int32(_fun, L, result); } /** * \brief Compute the pixelwise linear combination (%a) * (%dpixs1) + (%b) * (%dpixs2). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpixd). * Arg #2 is expected to be a DPix* (dpixs1). * Arg #3 is expected to be a DPix* (dpixs2). * Arg #4 is expected to be a l_float32 (a). * Arg #5 is expected to be a l_float32 (b). * * Leptonica's Notes: * (1) Computes pixelwise linear combination: a * src1 + b * src2 * (2) Alignment is to UL corner. * (3) There are 3 cases. The result can go to a new dest, * in-place to dpixs1, or to an existing input dest: * * dpixd == null: (src1 + src2) --> new dpixd * * dpixd == dpixs1: (src1 + src2) --> src1 (in-place) * * dpixd != dpixs1: (src1 + src2) --> input dpixd * (4) dpixs2 must be different from both dpixd and dpixs1. * </pre> * \param L Lua state. * \return 1 DPix* (%dpix) on the Lua stack. */ static int LinearCombination(lua_State *L) { LL_FUNC("LinearCombination"); DPix *dpixd = ll_check_DPix(_fun, L, 1); DPix *dpixs1 = ll_check_DPix(_fun, L, 2); DPix *dpixs2 = ll_check_DPix(_fun, L, 3); l_float32 a = ll_check_l_float32(_fun, L, 4); l_float32 b = ll_check_l_float32(_fun, L, 5); DPix *dpix = dpixLinearCombination(dpixd, dpixs1, dpixs2, a, b); return ll_push_DPix(_fun, L, dpix); } /** * \brief Read a DPix* (%dpix) from an external file (%filename). * <pre> * Arg #1 is expected to be a string (filename). * </pre> * \param L Lua state. * \return 1 DPix* (%dpix) on the Lua stack. */ static int Read(lua_State *L) { LL_FUNC("Read"); const char *filename = ll_check_string(_fun, L, 1); DPix *result = dpixRead(filename); return ll_push_DPix(_fun, L, result); } /** * \brief Read a DPix* (%dpix) from memory (%data, %size). * <pre> * Arg #1 (i.e. self) is expected to be a lstring (str). * </pre> * \param L Lua state. * \return 1 DPix* (%dpix) on the Lua stack. */ static int ReadMem(lua_State *L) { LL_FUNC("ReadMem"); size_t size = 0; const l_uint8 *data = ll_check_lbytes(_fun, L, 1, &size); DPix *dpix = dpixReadMem(data, size); return ll_push_DPix(_fun, L, dpix); } /** * \brief Read a DPix* (%dpix) from a Lua io stream (%stream). * <pre> * Arg #1 is expected to be a luaL_Stream* (stream). * </pre> * \param L Lua state. * \return 1 DPix* (%dpix) on the Lua stack. */ static int ReadStream(lua_State *L) { LL_FUNC("ReadStream"); luaL_Stream *stream = ll_check_stream(_fun, L, 1); DPix *result = dpixReadStream(stream->f); return ll_push_DPix(_fun, L, result); } /** * \brief Resize the image data of DPix* (%dpixd) to that of DPix* (%dpixs). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpixd). * Arg #2 is expected to be a DPix* (dpixs). * </pre> * \param L Lua state. * \return 1 boolean on the Lua stack. */ static int ResizeImageData(lua_State *L) { LL_FUNC("ResizeImageData"); DPix *dpixd = ll_check_DPix(_fun, L, 1); DPix *dpixs = ll_check_DPix(_fun, L, 2); return ll_push_boolean(_fun, L, 0 == dpixResizeImageData(dpixd, dpixs)); } /** * \brief Scale a DPix* (%dpixs) by an integer factor (%factor). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpixs). * Arg #2 is expected to be a l_int32 (factor). * * Leptonica's Notes: * (1) The width wd of dpixd is related to ws of dpixs by: * wd = factor * (ws - 1) + 1 (and ditto for the height) * We avoid special-casing boundary pixels in the interpolation * by constructing fpixd by inserting (factor - 1) interpolated * pixels between each pixel in fpixs. Then * wd = ws + (ws - 1) * (factor - 1) (same as above) * This also has the advantage that if we subsample by %factor, * throwing out all the interpolated pixels, we regain the * original low resolution dpix. * </pre> * \param L Lua state. * \return 1 DPix* (%dpixd) on the Lua stack. */ static int ScaleByInteger(lua_State *L) { LL_FUNC("ScaleByInteger"); DPix *dpixs = ll_check_DPix(_fun, L, 1); l_int32 factor = ll_check_l_int32(_fun, L, 2); DPix *dpixd = dpixScaleByInteger(dpixs, factor); return ll_push_DPix(_fun, L, dpixd); } /** * \brief Set all pixels in DPix* (%dpix) to arbitrary value (%inval). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * Arg #2 is expected to be a l_float64 (inval). * </pre> * \param L Lua state. * \return 1 boolean on the Lua stack. */ static int SetAllArbitrary(lua_State *L) { LL_FUNC("SetAllArbitrary"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_float64 inval = ll_check_l_float64(_fun, L, 2); return ll_push_boolean(_fun, L, 0 == dpixSetAllArbitrary(dpix, inval)); } /** * \brief Set data in a DPix (%dpix) from a 2D table array (%data, %wpl, %h). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * </pre> * \param L Lua state. * \return 1 2D table array of l_float64 on the Lua stack. */ static int SetData(lua_State *L) { LL_FUNC("SetData"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_int32 wpl = dpixGetWpl(dpix); l_int32 w = 0; l_int32 h = 0; if (dpixGetDimensions(dpix, &w, &h)) return ll_push_nil(_fun, L); l_float64 *data = ll_unpack_Darray_2d(_fun, L, 2, wpl, h); if (nullptr == data) return ll_push_nil(_fun, L); if (dpixSetData(dpix, data)) return ll_push_nil(_fun, L); ll_free(data); return 1; } /** * \brief Set the dimensions of DPix* (%dpix) to width (%w) and height (%h). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * Arg #2 is expected to be a l_int32 (w). * Arg #3 is expected to be a l_int32 (h). * </pre> * \param L Lua state. * \return 1 boolean on the Lua stack. */ static int SetDimensions(lua_State *L) { LL_FUNC("SetDimensions"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_int32 w = ll_check_l_int32(_fun, L, 2); l_int32 h = ll_check_l_int32(_fun, L, 3); return ll_push_boolean(_fun, L, 0 == dpixSetDimensions(dpix, w, h)); } /** * \brief Set a pixel at (%x, %y) in DPix* (%dpix) to value (%val). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * Arg #2 is expected to be a l_int32 (x). * Arg #3 is expected to be a l_int32 (y). * Arg #4 is expected to be a l_float64 (val). * </pre> * \param L Lua state. * \return 1 boolean on the Lua stack. */ static int SetPixel(lua_State *L) { LL_FUNC("SetPixel"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_int32 x = ll_check_l_int32(_fun, L, 2); l_int32 y = ll_check_l_int32(_fun, L, 3); l_float64 val = ll_check_l_float64(_fun, L, 4); return ll_push_boolean(_fun, L, 0 == dpixSetPixel(dpix, x, y, val)); } /** * \brief Set the resolution (%xres, %yres) for DPix* (%dpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * Arg #2 is expected to be a l_int32 (xres). * Arg #3 is expected to be a l_int32 (yres). * </pre> * \param L Lua state. * \return 1 boolean on the Lua stack. */ static int SetResolution(lua_State *L) { LL_FUNC("SetResolution"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_int32 xres = ll_check_l_int32(_fun, L, 2); l_int32 yres = ll_check_l_int32(_fun, L, 3); return ll_push_boolean(_fun, L, 0 == dpixSetResolution(dpix, xres, yres)); } /** * \brief Set the words-per-line (%wpl) for DPix* (%dpix). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * Arg #2 is expected to be a l_int32 (wpl). * </pre> * \param L Lua state. * \return 1 boolean on the Lua stack. */ static int SetWpl(lua_State *L) { LL_FUNC("SetWpl"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_int32 wpl = ll_check_l_int32(_fun, L, 2); return ll_push_boolean(_fun, L, 0 == dpixSetWpl(dpix, wpl)); } /** * \brief Write a DPix* (%dpix) to an external file (%filename). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * Arg #2 is expected to be a string (filename). * </pre> * \param L Lua state. * \return 1 boolean on the Lua stack. */ static int Write(lua_State *L) { LL_FUNC("Write"); DPix *dpix = ll_check_DPix(_fun, L, 1); const char *filename = ll_check_string(_fun, L, 2); return ll_push_boolean(_fun, L, 0 == dpixWrite(filename, dpix)); } /** * \brief Write a DPix* (%dpix) to memory (%data, %size). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * * Leptonica's Notes: * (1) Serializes a dpix in memory and puts the result in a buffer. * </pre> * \param L Lua state. * \return 2 on the Lua stack. */ static int WriteMem(lua_State *L) { LL_FUNC("WriteMem"); DPix *dpix = ll_check_DPix(_fun, L, 1); l_uint8 *data = nullptr; size_t size = 0; if (dpixWriteMem(&data, &size, dpix)) return ll_push_nil(_fun, L); ll_push_bytes(_fun, L, data, size); ll_free(data); return 1; } /** * \brief Write a DPix* (%dpix) to a Lua io stream (%stream). * <pre> * Arg #1 (i.e. self) is expected to be a DPix* (dpix). * Arg #2 is expected to be a luaL_Stream* (stream). * </pre> * \param L Lua state. * \return 1 boolean on the Lua stack. */ static int WriteStream(lua_State *L) { LL_FUNC("WriteStream"); DPix *dpix = ll_check_DPix(_fun, L, 1); luaL_Stream *stream = ll_check_stream(_fun, L, 2); return ll_push_boolean(_fun, L, 0 == dpixWriteStream(stream->f, dpix)); } /** * \brief Check Lua stack at index (%arg) for user data of class DPix*. * \param _fun calling function's name * \param L Lua state. * \param arg index where to find the user data (usually 1) * \return pointer to the DPix* contained in the user data. */ DPix * ll_check_DPix(const char *_fun, lua_State *L, int arg) { return *ll_check_udata<DPix>(_fun, L, arg, TNAME); } /** * \brief Optionally expect a DPix* at index (%arg) on the Lua stack. * \param _fun calling function's name * \param L Lua state. * \param arg index where to find the user data (usually 1) * \return pointer to the DPix* contained in the user data. */ DPix * ll_opt_DPix(const char *_fun, lua_State *L, int arg) { if (!ll_isudata(_fun, L, arg, TNAME)) return nullptr; return ll_check_DPix(_fun, L, arg); } /** * \brief Push DPix* to the Lua stack and set its meta table. * \param _fun calling function's name * \param L Lua state. * \param cd pointer to the L_DPix * \return 1 DPix* on the Lua stack. */ int ll_push_DPix(const char *_fun, lua_State *L, DPix *cd) { if (!cd) return ll_push_nil(_fun, L); return ll_push_udata(_fun, L, TNAME, cd); } /** * \brief Create and push a new DPix*. * \param L Lua state. * \return 1 DPix* on the Lua stack. */ int ll_new_DPix(lua_State *L) { FUNC("ll_new_DPix"); DPix *dpix = nullptr; l_int32 width = 1; l_int32 height = 1; if (ll_isudata(_fun, L, 1, LL_DPIX)) { DPix *dpixs = ll_opt_DPix(_fun, L, 1); DBG(LOG_NEW_PARAM, "%s: create for %s* = %p\n", _fun, TNAME, reinterpret_cast<void *>(dpixs)); dpix = dpixCreateTemplate(dpixs); } if (!dpix && ll_isudata(_fun, L, 1, LUA_FILEHANDLE)) { luaL_Stream *stream = ll_check_stream(_fun, L, 1); DBG(LOG_NEW_PARAM, "%s: create for %s* = %p\n", _fun, LUA_FILEHANDLE, reinterpret_cast<void *>(stream)); dpix = dpixReadStream(stream->f); } if (!dpix && ll_isinteger(_fun, L, 1) && ll_isinteger(_fun, L, 2)) { width = ll_opt_l_int32(_fun, L, 1, width); height = ll_opt_l_int32(_fun, L, 2, height); DBG(LOG_NEW_PARAM, "%s: create for %s = %d, %s = %d\n", _fun, "width", width, "height", height); dpix = dpixCreate(width, height); } if (!dpix && ll_isstring(_fun, L, 1)) { const char* filename = ll_check_string(_fun, L, 1); DBG(LOG_NEW_PARAM, "%s: create for %s = '%s'\n", _fun, "filename", filename); dpix = dpixRead(filename); } if (!dpix && ll_isstring(_fun, L, 1)) { size_t size = 0; const l_uint8 *data = ll_check_lbytes(_fun, L, 1, &size); DBG(LOG_NEW_PARAM, "%s: create for %s* = %p, %s = %llu\n", _fun, "data", reinterpret_cast<const void *>(data), "size", static_cast<l_uint64>(size)); dpix = dpixReadMem(data, size); } if (!dpix) { DBG(LOG_NEW_PARAM, "%s: create for %s = %d, %s = %d\n", _fun, "width", width, "height", height); dpix = dpixCreate(1,1); } DBG(LOG_NEW_CLASS, "%s: created %s* %p\n", _fun, TNAME, reinterpret_cast<void *>(dpix)); return ll_push_DPix(_fun, L, dpix); } /** * \brief Register the DPix methods and functions in the DPix meta table. * \param L Lua state. * \return 1 table on the Lua stack. */ int ll_open_DPix(lua_State *L) { static const luaL_Reg methods[] = { {"__gc", Destroy}, {"__new", ll_new_DPix}, {"__tostring", toString}, {"AddMultConstant", AddMultConstant}, {"ChangeRefcount", ChangeRefcount}, {"Clone", Clone}, {"ConvertToFPix", ConvertToFPix}, {"ConvertToPix", ConvertToPix}, {"Copy", Copy}, {"CopyResolution", CopyResolution}, {"Create", Create}, {"Create", Create}, {"CreateTemplate", CreateTemplate}, {"Destroy", Destroy}, {"Destroy", Destroy}, {"EndianByteSwap", EndianByteSwap}, {"GetData", GetData}, {"GetDimensions", GetDimensions}, {"GetMax", GetMax}, {"GetMin", GetMin}, {"GetPixel", GetPixel}, {"GetRefcount", GetRefcount}, {"GetResolution", GetResolution}, {"GetWpl", GetWpl}, {"LinearCombination", LinearCombination}, {"Read", Read}, {"ReadMem", ReadMem}, {"ReadStream", ReadStream}, {"ResizeImageData", ResizeImageData}, {"ScaleByInteger", ScaleByInteger}, {"SetAllArbitrary", SetAllArbitrary}, {"SetData", SetData}, {"SetDimensions", SetDimensions}, {"SetPixel", SetPixel}, {"SetResolution", SetResolution}, {"SetWpl", SetWpl}, {"Write", Write}, {"WriteMem", WriteMem}, {"WriteStream", WriteStream}, LUA_SENTINEL }; LO_FUNC(TNAME); ll_set_global_cfunct(_fun, L, TNAME, ll_new_DPix); ll_register_class(_fun, L, TNAME, methods); return 1; }
[ "pullmoll@t-online.de" ]
pullmoll@t-online.de
083aafdf2f3a9e3703a832a423ef77a2cc960262
e79baefb428af70be149dab2eb5f8b02322d4279
/epoc32/include/etelpckt.inl
64fe750e5e12b64eaec54163010b9d0291d6a109
[]
no_license
EKA2L1/oss.API_REF.Public_API
24e8bdef672b6d7dfaafc38790591bfbdfcbefe7
bc81f066aa6ffc3e41775a34ededbcf76da2ccfe
refs/heads/master
2020-03-30T16:57:46.945926
2009-11-24T13:55:44
2009-11-24T13:55:44
151,434,948
0
0
null
null
null
null
UTF-8
C++
false
false
13
inl
etelpckt.inl
[ "williamr@symbian.org" ]
williamr@symbian.org
250a629b0a8dd3c5185c6191bd14344db5d9428a
bc8561adde1e6c1201e995306739512e4e68438c
/FM_Server/log/AppendFile.cpp
558f867cf0558297b392f54f05ab83e78f3ed18f
[]
no_license
fanminy/FM_Server
5471c0ecbeb9aeea371d804083684413cb7c0502
49dda788766361c12295c94e95baa2449e306d65
refs/heads/master
2020-06-24T13:33:54.392826
2019-08-19T06:52:45
2019-08-19T06:52:45
198,975,839
0
0
null
null
null
null
UTF-8
C++
false
false
757
cpp
#include "AppendFile.h" using namespace FM_Server; AppendFile::AppendFile(const char* filename):fp_(fopen(filename,"ae")),writenBytes_(0) { assert(fp_); setbuffer(fp_,buffer_,sizeof(buffer_)); } AppendFile::~AppendFile() { fclose(fp_); } void AppendFile::append(const char* line,int len) { size_t n = fwrite_unlocked(line,1,len,fp_); size_t remain = len - n; while(remain > 0) { size_t x = fwrite_unlocked(line+n,1,remain,fp_); if(x == 0) { //int err = ferror(fp_); printf("write error"); abort(); break; } n += x; remain = len - n; } fflush(fp_); writenBytes_ += len; } void AppendFile::flush() { fflush(fp_); }
[ "643832944@qq.com" ]
643832944@qq.com
bdc6a04ea6ab624da3bf86137c9b56b7d346219c
17f1d3b525a73b7071f7cc12c21b90de8c508c56
/include/caffe/layers/parameter_layer.hpp
51999e51595aad42b88faea68f2d1b9c388e92e3
[]
no_license
avBuffer/miniCaffe_ssd
2486584a4ab04047b647eb7e1456478b461372f2
f334d3df174cd9ce8dd66bba0ffec14edf26c3a7
refs/heads/master
2022-12-18T06:16:29.455642
2020-09-22T08:07:19
2020-09-22T08:07:19
297,577,851
1
0
null
null
null
null
UTF-8
C++
false
false
1,393
hpp
#ifndef CAFFE_PARAMETER_LAYER_HPP_ #define CAFFE_PARAMETER_LAYER_HPP_ #include <vector> #include "caffe/layer.hpp" namespace caffe { template <typename Dtype> class ParameterLayer : public Layer<Dtype> { public: explicit ParameterLayer(const LayerParameter& param) : Layer<Dtype>(param) {} virtual void LayerSetUp(const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top) { if (this->blobs_.size() > 0) { LOG(INFO) << "Skipping parameter initialization"; } else { this->blobs_.resize(1); this->blobs_[0].reset(new Blob<Dtype>()); this->blobs_[0]->Reshape(this->layer_param_.parameter_param().shape()); } top[0]->Reshape(this->layer_param_.parameter_param().shape()); } virtual void Reshape(const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top) { } virtual inline const char* type() const { return "Parameter"; } virtual inline int ExactNumBottomBlobs() const { return 0; } virtual inline int ExactNumTopBlobs() const { return 1; } protected: virtual void Forward_cpu(const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top) { top[0]->ShareData(*(this->blobs_[0])); top[0]->ShareDiff(*(this->blobs_[0])); } virtual void Backward_cpu(const vector<Blob<Dtype>*>& top, const vector<bool>& propagate_down, const vector<Blob<Dtype>*>& bottom) { } }; } // namespace caffe #endif
[ "jalymo@126.com" ]
jalymo@126.com
fe5f481459bdacd14064a66703a4de49fd25ae9a
7452457bf715cf50f251d086c5c9bfe0821b1538
/include/Furrovine++/Vendor/fbxsdk/scene/geometry/fbxtrimnurbssurface.h
f6d7801b0a956ce2247f29bd67aa32f2bd9d414f
[ "MIT" ]
permissive
bananu7/Furropen
3d91c49b5b833f5f269cf5516a8f8c7cf1385cdc
968351c1268d8994116cd8312f067dd2cacdbf5b
refs/heads/master
2021-01-10T20:44:17.606000
2014-02-13T22:28:09
2014-02-13T22:28:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,425
h
/**************************************************************************************** Copyright (C) 2013 Autodesk, Inc. All rights reserved. Use of this software is subject to the terms of the Autodesk license agreement provided at the time of installation or download, or which otherwise accompanies this software in either electronic or hard copy form. ****************************************************************************************/ //! \file fbxtrimnurbssurface.h #ifndef _FBXSDK_SCENE_GEOMETRY_TRIM_NURBS_SURFACE_H_ #define _FBXSDK_SCENE_GEOMETRY_TRIM_NURBS_SURFACE_H_ #include <fbxsdk/fbxsdk_def.h> #include <fbxsdk/scene/geometry/fbxgeometry.h> #include <fbxsdk/scene/geometry/fbxnurbscurve.h> #include <fbxsdk/scene/geometry/fbxnurbssurface.h> #include <fbxsdk/fbxsdk_nsbegin.h> /** FbxBoundary describes a trimming boundary for a trimmed NURBS object. * Note:Outer boundaries run counter-clockwise in UV space and inner * boundaries run clockwise. An outer boundary represents the outer edges * of the trimmed surface whereas the inner boundaries define "holes" in * the surface. */ class FBXSDK_DLL FbxBoundary : public FbxGeometry { FBXSDK_OBJECT_DECLARE(FbxBoundary, FbxGeometry); public: //! Properties static const char* sOuterFlag; /** This property handles outer flag. * * Default value is false. */ FbxPropertyT<FbxBool> OuterFlag; /** Adds an edge to this boundary. * \param pCurve The curve to be appended to the end of this boundary */ void AddCurve( FbxNurbsCurve* pCurve ); /** Returns the number of edges within this boundary. * \return The number of edges within this boundary */ int GetCurveCount() const; /** Returns the edge at the specified index. * \param pIndex The specified index, no bound checking is done. * \return The edge at the specified index if * pIndex is in the range [0, GetEdgeCount() ), * otherwise the return value is undefined. */ FbxNurbsCurve* GetCurve( int pIndex ); /** Returns the edge at the specified index. * \param pIndex The specified index, no bound checking is done. * \return The edge at the specified index if * pIndex is in the range [0, GetEdgeCount() ), * otherwise, the return value is undefined. */ FbxNurbsCurve const* GetCurve( int pIndex ) const; //! Returns the type of node attribute. virtual FbxNodeAttribute::EType GetAttributeType() const; /** Detects if the point is in the boundary's control hull. * \param pPoint The point to be detected. * \return \c True if the point is in the boundary's control hull, returns \c false if it is not in the control hull. */ bool IsPointInControlHull(const FbxVector4& pPoint ); /** Computes the origin point in the boundary * \return The origin point. */ FbxVector4 ComputePointInBoundary(); /***************************************************************************************************************************** ** WARNING! Anything beyond these lines is for internal use, may not be documented and is subject to change without notice! ** *****************************************************************************************************************************/ #ifndef DOXYGEN_SHOULD_SKIP_THIS virtual FbxObject& Copy(const FbxObject& pObject); protected: virtual void Construct(const FbxBoundary* pFrom); void Reset(); bool LineSegmentIntersect( const FbxVector4 & pStart1, const FbxVector4 & pEnd1, const FbxVector4 & pStart2, const FbxVector4 & pEnd2 ) const; public: void ClearCurves(); void CopyCurves( FbxBoundary const& pOther ); bool IsValid(bool mustClosed = true); bool IsCounterClockwise(); #endif /* !DOXYGEN_SHOULD_SKIP_THIS *****************************************************************************************/ }; /** FbxTrimNurbsSurface describes a NURBS surface with regions trimmed or cut away with trimming boundaries. */ class FBXSDK_DLL FbxTrimNurbsSurface : public FbxGeometry { FBXSDK_OBJECT_DECLARE(FbxTrimNurbsSurface,FbxGeometry); public: //! Returns the type of node attribute. virtual FbxNodeAttribute::EType GetAttributeType() const; /** Returns the number of regions on this trimmed NURBS surface. * Note: There is always at least one region. * \return The number of regions */ int GetTrimRegionCount() const; /** Calls this function before adding boundaries to a new trim region. * The number of regions is incremented on this call. */ void BeginTrimRegion(); /** Calls this function after the last boundary for a given region is added. * If no boundaries are added between the calls to BeginTrimRegion * and EndTrimRegion, the last region is removed. */ void EndTrimRegion(); /** Appends a trimming boundary to the set of trimming boundaries. * The first boundary specified for a given trim region should be * the outer boundary. All other boundaries are inner boundaries. * This must be called after a call to BeginTrimRegion(). Boundaries * cannot be shared among regions. Duplicate the boundary if necessary. * \param pBoundary The boundary to add. * \return \c True if the boundary is added successfully. * If the boundary is not added successfully, returns \c false. */ bool AddBoundary( FbxBoundary* pBoundary ); /** Returns the boundary at a given index for the specified region * \param pIndex The index of the boundary to retrieve, no bound checking is done. * \param pRegionIndex The index of the region which is bordered by the boundary. * \return The trimming boundary at index pIndex, * if pIndex is in the range [0, GetBoundaryCount() ), * otherwise the result is undefined. */ FbxBoundary* GetBoundary( int pIndex, int pRegionIndex = 0 ); /** Returns the boundary at a given index for the specified region * \param pIndex The index of the boundary to retrieve, no bound checking is done. * \param pRegionIndex The index of the region which is bordered by the boundary. * \return The trimming boundary at index pIndex, * if pIndex is in the range [0, GetBoundaryCount() ), * otherwise the result is undefined. */ FbxBoundary const* GetBoundary( int pIndex, int pRegionIndex = 0 ) const; /** Returns the number of boundaries for a given region. * \param pRegionIndex The index of the region. * \return The number of trim boundaries for the given region. */ int GetBoundaryCount(int pRegionIndex = 0) const; /** Sets the NURBS surface that is trimmed by the trimming boundaries. * \param pNurbs The NURBS surface to be trimmed. */ void SetNurbsSurface( FbxNurbsSurface const* pNurbs ); /** Returns the NURBS surface that is trimmed by the trim boundaries. * \return A pointer to the (untrimmed) NURBS surface. */ FbxNurbsSurface* GetNurbsSurface(); /** Returns the NURBS surface that is trimmed by the trim boundaries. * \return A pointer to the (untrimmed) NURBS surface. */ FbxNurbsSurface const* GetNurbsSurface() const; /** Sets the flag which indicates whether the surface normals are flipped. * You can flip the normals of the surface to reverse the surface. * \param pFlip If \c true, the surface is reversed. If it is false, the surface is not reversed. */ inline void SetFlipNormals( bool pFlip ) { mFlipNormals = pFlip; } /** Checks if the normals are flipped. * \return \c True if normals are flipped, returns \c false if they are not flipped. */ inline bool GetFlipNormals() const { return mFlipNormals; } virtual int GetControlPointsCount() const; /** Sets the control point and the normal values for a specified index. * \param pCtrlPoint The value of the control point. * \param pNormal The value of the normal. * \param pIndex The specified index. */ virtual void SetControlPointAt(FbxVector4 &pCtrlPoint, FbxVector4 &pNormal , int pIndex); /** Returns the NURBS surface's control points. * \param pStatus The FbxStatus object to hold error codes. */ virtual FbxVector4* GetControlPoints(FbxStatus* pStatus = NULL) const; /***************************************************************************************************************************** ** WARNING! Anything beyond these lines is for internal use, may not be documented and is subject to change without notice! ** *****************************************************************************************************************************/ #ifndef DOXYGEN_SHOULD_SKIP_THIS virtual FbxObject& Copy(const FbxObject& pObject); /** * \param mustClosed boundary curve must be closed */ bool IsValid(bool mustClosed = true); void ClearBoundaries(); void CopyBoundaries( FbxTrimNurbsSurface const& pOther ); bool IsValid(int pRegion, bool mustClosed = true); void RebuildRegions(); protected: virtual void Construct(const FbxTrimNurbsSurface* pFrom); private: bool mFlipNormals; FbxArray<int> mRegionIndices; bool mNewRegion; #endif /* !DOXYGEN_SHOULD_SKIP_THIS *****************************************************************************************/ }; #include <fbxsdk/fbxsdk_nsend.h> #endif /* _FBXSDK_SCENE_GEOMETRY_TRIM_NURBS_SURFACE_H_ */
[ "phdofthehouse@gmail.com" ]
phdofthehouse@gmail.com
1103567b818d14a19f05334b21ae2b168437d6fd
83787c5cbdef6fdd204fb8f18039bec4679698a7
/栈/栈/源.cpp
a860bf631c11292307702dac284c0e41b4823f4a
[]
no_license
Kilig-C/C-
458e5be8f98ebebbee3ef2ba35285a9ac7bc9583
c9baeaec67d38c5d1ffcc8201aee367053d4d490
refs/heads/master
2020-09-29T00:40:31.890533
2020-03-14T10:56:17
2020-03-14T10:56:17
226,903,923
0
0
null
null
null
null
GB18030
C++
false
false
6,300
cpp
/* #include<cstdio> #include<cstdlib> #define OK 1 #define ERROR 0 #define MAXSIZE 1024 typedef int Status; typedef int SElemType; //SElemtype 类型根据实际情况而定,这里假设为int typedef struct { SElemType data[MAXSIZE]; int top; //用于栈顶指针 }SqStack; /* //========================= #define OK 1 #define ERROR 0 typedef int Status; #define MAXSIZE 1024 typedef int SElemType; //两栈共享空间结构 typedef struct { SElemType data[MAXSIZE]; int top1; //栈1栈顶指针 int top2; //栈2栈顶指针 }SqDoubleStack; //插入元素e为新的栈顶元素 Status Push(SqDoubleStack *S, int e,int StackNumber) { if (S->top1 + 1 == S->top2) //栈已满,不能再push新元素了 { return ERROR; } if (StackNumber == 1)//栈1有元素进栈 { S->data[++S->top1] = e; //若栈1则先top1+1后给数组元素赋值 } if (StackNumber == 2) //栈2有元素进栈 { S->data[--S->top2] = e; //若栈2则先top2-1后给数组元素赋值 } return OK; } //若栈不空,则删除S的栈顶元素,用e返回其值,并返回OK,否则返回ERROR Status Pop(SqDoubleStack *S, SElemType *e, int StackNumber) { if (StackNumber == 1) { if (S->top1 == -1) { return ERROR; //说明栈1已经是空栈,溢出 } *e = S->data[S->top1--]; //将栈1的栈顶元素出栈 } else if (StackNumber == 2) { if (S->top2 == MAXSIZE) { return ERROR; //说明栈2已经是空栈,溢出 } *e = S->data[S->top2++]; //将栈2的栈顶元素出栈 } return OK; } //============================= //初始化栈 void InitStack(SqStack **S) { *S = (SqStack *)malloc(sizeof(SqStack)); if (S == NULL) //判断申请内存空间是否成功 失败值为NULL 成功反之 { printf("申请内存空间失败,初始化失败!\n"); } else { (*S)->top = -1;//将顺序栈的栈顶设为-1,表示栈为空栈 printf("初始化成功!\n"); } } //创建栈 void CreateStack(SqStack *S) { printf("请输入元素(输入最后一个元素后,请直接换行):"); for (int i = S->top+1; i < MAXSIZE; ++i)//i值小于数组最大长度MAXSIZE { scanf("%d", &S->data[i]); S->top++; if (getchar() == '\n')//条件成立说明元素都已经录入完毕,跳出循环,结束输入 { break; } } printf("创建完毕!\n"); } //输出栈的元素个数 void LengthStack(SqStack *S) { if (S->top == -1) { printf("栈为空栈,元素个数为0\n"); } else { printf("栈的元素个数为:%d\n", S->top + 1); } } //输出栈顶元素 void OutTop(SqStack *S) { if (S->top == -1) { printf("栈为空栈,没有栈顶元素!\n"); } else { printf("栈顶元素为:%d\n", S->data[S->top]); } } //入栈操作 //插入元素e到栈顶 Status Push(SqStack *S, SElemType e) { if (S->top >= MAXSIZE - 1) { printf("栈已满,插入元素失败!\n"); return ERROR; } else { S->top++; S->data[S->top] = e; printf("插入元素成功!\n"); return OK; } } //出栈操作pop //若栈不空,则删除S的栈顶元素,用e返回其值,并返回OK,否则返回ERROR Status Pop(SqStack *S, SElemType *e) { if (S->top == -1) { printf("栈为空栈,没有栈顶元素可删除!\n"); return ERROR; } *e = S->data[S -> top]; //将要删除的栈顶元素赋值给e S->top--; //栈顶指针减一 return OK; } //输出顺序栈各个元素 void OutValue(SqStack *S) { if (S->top != -1) { printf("栈中的各个元素为:"); for (int i = 0; i < S->top + 1; ++i)//从栈底元素开始输出 { printf("%d ", S->data[i]); } printf("\n其中%d为栈顶元素\n", S->data[S->top]); } else { printf("栈为空栈,没有元素!\n"); } } //清空顺序栈 void ClearStack(SqStack *S) { if (S->top == -1) { printf("栈为空栈,请勿重复执行此操作!\n"); } else { S->top = -1; printf("清空栈成功!\n"); } } //顺序栈是否为空 bool StackEmpty(SqStack *S) { if (S->top == -1) { return true; } return false; } //菜单界面 void Menu() { system("cls"); //清空屏幕 printf("\n"); printf("\t\t-------------------欢迎使用顺序栈的基本操作----------------------\n"); printf("\t\t|\t\t 1 初始化顺序栈 \t\t|\n"); printf("\t\t|\t\t 2 建立顺序栈 \t\t|\n"); printf("\t\t|\t\t 3 输出顺序栈的元素个数 \t\t|\n"); printf("\t\t|\t\t 4 输出顺序栈栈顶元素 \t\t|\n"); printf("\t\t|\t\t 5 插入指定元素到栈顶 \t\t|\n"); printf("\t\t|\t\t 6 删除栈顶元素 \t\t|\n"); printf("\t\t|\t\t 7 输出顺序栈各个元素 \t\t|\n"); printf("\t\t|\t\t 8 清空顺序栈 \t\t|\n"); printf("\t\t|\t\t 9 顺序栈是否为空 \t\t|\n"); printf("\t\t|\t\t 10 退出系统 \t\t|\n"); printf("\t\t-----------------------------------------------------------------\n"); printf("\t\t请选择(1-10):"); } int main() { SqStack *S; int quit = 0; int select; SElemType e; while (1) { Menu(); //调用菜单函数 scanf("%d", &select); switch (select) { case 1: InitStack(&S); break; //初始化顺序栈 case 2: CreateStack(S); break; //建立顺序栈 case 3: LengthStack(S); break; //输出顺序栈的元素个数 case 4: OutTop(S); break; //输出顺序栈栈顶元素 case 5: //插入指定元素到栈顶 printf("要插入的元素的值为:"); scanf("%d", &e); Push(S, e); break; case 6: //删除栈顶元素 if (Pop(S, &e)) { printf("删除成功!\n删除的栈顶元素的值为:%d\n", e); } break; case 7: OutValue(S); break; //输出顺序栈各个元素 case 8: ClearStack(S); break; //清空顺序栈 case 9: //顺序栈是否为空 if (StackEmpty(S)) { printf("栈为空栈!\n"); } else { printf("栈不为空!\n"); } break; case 10: quit = 1; break;//退出系统 default:printf("请输入1-10之间的数字\n"); break; } if (quit == 1) { break; } printf("按任意键返回主菜单!\n"); if (select != 2) { getchar(); //提取缓冲区中的回车键 } getchar(); //起到暂停的作用 } free(S);//释放S printf("程序结束!\n"); return 0; } */
[ "1650041116@qq.com" ]
1650041116@qq.com
cb35f56624a2d779dd85a5fb30774e169556db24
01e431819060cd3f923389094b6251a860696e63
/software/ros/workspaces/master/src/valter/src/obsolete/test_cmd_vel_subscriber.cpp
010189a10982ec943d0a4139146e3abc0ee220b0
[]
no_license
wercool/valter
f2e7cb177e0dfd2bdccbcdf2bb094877267595dd
baf7721614316f12860dafcaa8429faa7e642e8a
refs/heads/master
2021-12-19T16:04:35.107446
2021-12-08T16:33:39
2021-12-08T16:33:39
43,814,219
3
1
null
null
null
null
UTF-8
C++
false
false
2,457
cpp
#include <ros/ros.h> #include <sensor_msgs/Joy.h> #include <geometry_msgs/Twist.h> #include <ros/console.h> #include<iostream> //cout #include<stdio.h> //printf #include<string.h> //strlen #include<string> //string #include<sys/socket.h> //socket #include<arpa/inet.h> //inet_addr #include<netdb.h> //hostent //missing string printf //this is safe and convenient but not exactly efficient inline std::string format(const char* fmt, ...) { int size = 512; char* buffer = 0; buffer = new char[size]; va_list vl; va_start(vl, fmt); int nsize = vsnprintf(buffer, size, fmt, vl); if(size<=nsize){ //fail delete buffer and try again delete[] buffer; buffer = 0; buffer = new char[nsize+1]; //+1 for /0 nsize = vsnprintf(buffer, size, fmt, vl); } std::string ret(buffer); va_end(vl); delete[] buffer; return ret; } geometry_msgs::Twist cmd_vel; void CmdVelCallback(const geometry_msgs::Twist::ConstPtr& msg) { cmd_vel = *msg; } int main(int argc, char** argv) { ros::init(argc, argv, "cmd_vel_subscriber"); ros::NodeHandle n; ros::Subscriber cmd_vel_sub = n.subscribe<geometry_msgs::Twist>("/cmd_vel", 100, CmdVelCallback); float prevLin, prevAng; ros::Time prevSentTime; ros::Rate r(30.0); while(n.ok()) { ros::spinOnce(); // check for incoming messages if (fabs(prevLin - cmd_vel.linear.x) > 0.001 || fabs(prevAng - cmd_vel.angular.z) > 0.001) { ROS_INFO("linVel = %f, angVel = %f", cmd_vel.linear.x, cmd_vel.angular.z); std::string cmdVelTaskScriptLine = format("T_PCP1_CmdVelTask_%.2f_%.2f", cmd_vel.linear.x, cmd_vel.angular.z); ROS_INFO("%s", cmdVelTaskScriptLine.c_str()); int sock = socket(AF_INET , SOCK_STREAM , 0); struct sockaddr_in server; server.sin_addr.s_addr = inet_addr("192.168.0.100"); server.sin_family = AF_INET; server.sin_port = htons(55555); //Connect to remote server if (connect(sock , (struct sockaddr *)&server , sizeof(server)) < 0) { perror("connect failed. Error"); } else { //Send some data if( send(sock , cmdVelTaskScriptLine.c_str() , strlen( cmdVelTaskScriptLine.c_str() ) , 0) < 0) { perror("Send failed : "); } close(sock); } prevLin = cmd_vel.linear.x; prevAng = cmd_vel.angular.z; } r.sleep(); } }
[ "maska@devstation" ]
maska@devstation
a492e3dc158f2fd9e3e753ec2efb1bd364fd8cdd
a84b013cd995870071589cefe0ab060ff3105f35
/webdriver/branches/chrome/chrome/src/cpp/include/net/base/load_flags.h
7175713f6fc96cd116ee29179cbca0c2b65293a6
[ "Apache-2.0" ]
permissive
vdt/selenium
137bcad58b7184690b8785859d77da0cd9f745a0
30e5e122b068aadf31bcd010d00a58afd8075217
refs/heads/master
2020-12-27T21:35:06.461381
2009-08-18T15:56:32
2009-08-18T15:56:32
13,650,409
1
0
null
null
null
null
UTF-8
C++
false
false
2,864
h
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_BASE_LOAD_FLAGS_H__ #define NET_BASE_LOAD_FLAGS_H__ namespace net { // These flags provide metadata about the type of the load request. They are // intended to be OR'd together. enum { LOAD_NORMAL = 0, // This is "normal reload", meaning an if-none-match/if-modified-since query LOAD_VALIDATE_CACHE = 1 << 0, // This is "shift-reload", meaning a "pragma: no-cache" end-to-end fetch LOAD_BYPASS_CACHE = 1 << 1, // This is a back/forward style navigation where the cached content should // be preferred over any protocol specific cache validation. LOAD_PREFERRING_CACHE = 1 << 2, // This is a navigation that will fail if it cannot serve the requested // resource from the cache (or some equivalent local store). LOAD_ONLY_FROM_CACHE = 1 << 3, // This is a navigation that will not use the cache at all. It does not // impact the HTTP request headers. LOAD_DISABLE_CACHE = 1 << 4, // This is a navigation that will not be intercepted by any registered // URLRequest::Interceptors. LOAD_DISABLE_INTERCEPT = 1 << 5, // If present, upload progress messages should be provided to initiator. LOAD_ENABLE_UPLOAD_PROGRESS = 1 << 6, // If present, try to download the resource to a standalone file. LOAD_ENABLE_DOWNLOAD_FILE = 1 << 7, // If present, ignores certificate mismatches with the domain name. // (The default behavior is to trigger an OnSSLCertificateError callback.) LOAD_IGNORE_CERT_COMMON_NAME_INVALID = 1 << 8, // If present, ignores certificate expiration dates // (The default behavior is to trigger an OnSSLCertificateError callback). LOAD_IGNORE_CERT_DATE_INVALID = 1 << 9, // If present, trusts all certificate authorities // (The default behavior is to trigger an OnSSLCertificateError callback). LOAD_IGNORE_CERT_AUTHORITY_INVALID = 1 << 10, // If present, ignores certificate revocation // (The default behavior is to trigger an OnSSLCertificateError callback). LOAD_IGNORE_CERT_REVOCATION = 1 << 11, // If present, ignores wrong key usage of the certificate // (The default behavior is to trigger an OnSSLCertificateError callback). LOAD_IGNORE_CERT_WRONG_USAGE = 1 << 12, // This load will not make any changes to cookies, including storing new // cookies or updating existing ones. LOAD_DO_NOT_SAVE_COOKIES = 1 << 13, // An SDCH dictionary was advertised, and an SDCH encoded response is // possible. LOAD_SDCH_DICTIONARY_ADVERTISED = 1 << 14, // Do not resolve proxies. This override is used when downloading PAC files // to avoid having a circular dependency. LOAD_BYPASS_PROXY = 1 << 15, }; } // namespace net #endif // NET_BASE_LOAD_FLAGS_H__
[ "noel.gordon@07704840-8298-11de-bf8c-fd130f914ac9" ]
noel.gordon@07704840-8298-11de-bf8c-fd130f914ac9
47ff39db7b948614bc370a2736594355767d7e00
fad65172e9ba5c3b3f97e13f785304552e4b8427
/src/GlueXHitDIRCflash.cc
355243e1b00e9be092330b5622365043c7c27238
[]
no_license
billlee77/HDGeant4
666bb56280bb159117ca99d1517ea5e69581eb5b
1420b57f4601ad639e148523a3a4f89d0050942e
refs/heads/master
2020-03-19T00:07:47.741734
2018-05-12T00:13:48
2018-05-12T00:13:48
135,455,083
0
1
null
null
null
null
UTF-8
C++
false
false
3,364
cc
// // GlueXHitDIRCflash - class implementation // // author: richard.t.jones at uconn.edu // version: november 26, 2016 // /////////////////////////////////////////////////////////////////// // NOTICE - This is not a real hits class for the DIRC detector. // It was created during the DIRC conceptual design phase to measure // the impact of the DIRC on GlueX physics channels. This needs to // be retired as soon as the technical design is complete, and in // its place a new class should be introduced with a name like // GlueXHitDIRCtube that represents a single detected DIRC photon. // // DO NOT EDIT THIS FILE TO IMPLEMENT A REALISTIC DIRC HITS SCHEME, // clone it instead, and give the new class a more sensible name! // You also need to add a tag in event.xml to contain the new hit. /////////////////////////////////////////////////////////////////// #include "GlueXHitDIRCflash.hh" G4ThreadLocal G4Allocator<GlueXHitDIRCflash>* GlueXHitDIRCflashAllocator = 0; GlueXHitDIRCflash::GlueXHitDIRCflash(G4int bar) : G4VHit(), bar_(bar) {} int GlueXHitDIRCflash::operator==(const GlueXHitDIRCflash &right) const { if (bar_ != right.bar_) return 0; else if (hits.size() != right.hits.size()) return 0; for (int ih=0; ih < (int)hits.size(); ++ih) { if (hits[ih].E_GeV != right.hits[ih].E_GeV || hits[ih].t_ns != right.hits[ih].t_ns || hits[ih].x_cm != right.hits[ih].x_cm || hits[ih].y_cm != right.hits[ih].y_cm || hits[ih].z_cm != right.hits[ih].z_cm) { return 0; } } return 1; } GlueXHitDIRCflash &GlueXHitDIRCflash::operator+=(const GlueXHitDIRCflash &right) { if (bar_ != right.bar_) { G4cerr << "Error in GlueXHitDIRCflash::operator+=() - " << "illegal attempt to merge hits from two different flashs!" << G4endl; return *this; } std::vector<GlueXHitDIRCflash::hitinfo_t>::iterator hiter = hits.begin(); std::vector<GlueXHitDIRCflash::hitinfo_t>::const_iterator hitsrc; for (hitsrc = right.hits.begin(); hitsrc != right.hits.end(); ++hitsrc) { for (; hiter != hits.end(); ++hiter) { if (hiter->t_ns > hitsrc->t_ns) break; } hiter = hits.insert(hiter, *hitsrc); } return *this; } void GlueXHitDIRCflash::Draw() const { // not yet implemented } void GlueXHitDIRCflash::Print() const { G4cout << "GlueXHitDIRCflash: " << " bar = " << bar_ << G4endl; std::vector<hitinfo_t>::const_iterator hiter; for (hiter = hits.begin(); hiter != hits.end(); ++hiter) { G4cout << " E = " << hiter->E_GeV << " GeV" << G4endl << " t = " << hiter->t_ns << " ns" << G4endl << " x = " << hiter->x_cm << " cm" << G4endl << " y = " << hiter->y_cm << " cm" << G4endl << " z = " << hiter->z_cm << " cm" << G4endl << G4endl; } } void printallhits(GlueXHitsMapDIRCflash *hitsmap) { std::map<int, GlueXHitDIRCflash*> *map = hitsmap->GetMap(); std::map<int, GlueXHitDIRCflash*>::const_iterator iter; G4cout << "G4THitsMap " << hitsmap->GetName() << " with " << hitsmap->entries() << " entries:" << G4endl; for (iter = map->begin(); iter != map->end(); ++iter) { G4cout << " key=" << iter->first << " "; iter->second->Print(); } }
[ "rjones30@gmail.com" ]
rjones30@gmail.com
41d26aa54e3eb52c3ad360fe654e9c3fa6cdca18
c21a826d92c7b6777343ecb0555162c363233b5a
/src/OpenGL renderer/World/Lights/Light.hpp
f71d66413f9a1537d5988dddc9a62be108ee1dd0
[ "MIT" ]
permissive
Jesse-V/Multibrot-3D
bcb748b25c317219e57c109ee72ebafec105b7c4
4edbd99c659f98a3ed8d9e3c4529812c837ede39
refs/heads/master
2020-04-05T23:00:24.912602
2014-04-07T04:12:04
2014-04-07T04:12:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,676
hpp
/******************************************************************************\ This file is part of Multibrot Renderer, a program that displays 3D views of the Multibrot fractal Copyright (c) 2013, Jesse Victors This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/ For information regarding this software email: Jesse Victors jvictors@jessevictors.com \******************************************************************************/ #ifndef LIGHT #define LIGHT #include "Modeling/Shading/ShaderUtilizer.hpp" #include <GL/glew.h> #include "glm/glm.hpp" class Light : public ShaderUtilizer { public: virtual void setEmitting(bool emitting) = 0; bool isEmitting() const; virtual void sync(GLuint handle) = 0; virtual SnippetPtr getVertexShaderGLSL() = 0; virtual SnippetPtr getFragmentShaderGLSL() = 0; protected: void setEmittingInternal(bool emitting); bool emitting_; }; #endif
[ "jvictors@jessevictors.com" ]
jvictors@jessevictors.com
e4287a3d47d5009a0111198220050b42d5c48da4
92ada3eabb986350da3f4919a1d75c71a170854d
/autoupdate/common/3rd/boost/mpl/list/aux_/O1_size.hpp
78455ef58337c074ecc70c9404d8f6457595cfd6
[]
no_license
jjzhang166/autoupdate
126e52be7d610fe121b615c0998af69dcbe70104
7a54996619f03b0febd762c007d5de0c85045a31
refs/heads/master
2021-05-05T20:09:44.330623
2015-08-27T08:57:52
2015-08-27T08:57:52
103,895,533
0
1
null
null
null
null
UTF-8
C++
false
false
771
hpp
#ifndef BOOST_MPL_LIST_AUX_O1_SIZE_HPP_INCLUDED #define BOOST_MPL_LIST_AUX_O1_SIZE_HPP_INCLUDED // Copyright Aleksey Gurtovoy 2000-2004 // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/mpl for documentation. // $Source: /repo/3rd/boost/mpl/list/aux_/O1_size.hpp,v $ // $Date: 2010/04/29 03:06:06 $ // $Revision: 1.1.1.1 $ #include <boost/mpl/O1_size_fwd.hpp> #include <boost/mpl/list/aux_/tag.hpp> namespace boost { namespace mpl { template<> struct O1_size_impl< aux::list_tag > { template< typename List > struct apply : List::size { }; }; }} #endif // BOOST_MPL_LIST_AUX_O1_SIZE_HPP_INCLUDED
[ "269221745@qq.com" ]
269221745@qq.com
1b7e2cc2b047938900de67169d9c6b7eb42d1bcb
45a51d6ebcc19c772a2748135addadc9e7d9dd45
/main.cpp
d4d63861a802a3d73fd569d4b02138d34e1ece3f
[]
no_license
jabathehutprogramer/acc_cpp_ch4
d5e83e14a26c441e9b1dd778a33713156a006991
e9bc3eda9aadce2c61bd2cbe640d2c7a0a8ae61d
refs/heads/master
2023-04-04T02:33:34.106000
2021-04-24T21:32:24
2021-04-24T21:32:24
361,230,268
0
0
null
null
null
null
UTF-8
C++
false
false
419
cpp
#include <vector> // vector ops #include <string> // needed for string ops #include <iostream> // needed for cout and cin #include "readWord.h" #include "displayWords.h" using namespace std; //using std::cout; using std::cin; using std::endl; int main() { vector<words_count> wordList; readWord (wordList); displayWords (wordList); cout << "Number of unique words = " << wordList.size() << endl; return 0; }
[ "prog_man123@yahoo.com" ]
prog_man123@yahoo.com
4129e8d87c0bb35f662c051be1a118a496ce0d99
87421b5912b9cb158a2e0d9396e1367a296c1dd0
/src/test/netbase_tests.cpp
d3997108722c6b73ab0f07026bf8dec1a6e2e85e
[ "MIT" ]
permissive
hendry19901990/babycoin
a76b4330e3b235ec989d87e5f01b07b0c81e11fe
c973192d7e877249b0c58127f10ea95083309993
refs/heads/master
2020-11-29T14:39:59.640269
2019-12-25T18:35:42
2019-12-25T18:35:42
230,134,399
0
0
null
null
null
null
UTF-8
C++
false
false
15,542
cpp
// Copyright (c) 2012-2016 The Babycoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "netbase.h" #include "test/test_babycoin.h" #include "utilstrencodings.h" #include <string> #include <boost/test/unit_test.hpp> BOOST_FIXTURE_TEST_SUITE(netbase_tests, BasicTestingSetup) static CNetAddr ResolveIP(const char* ip) { CNetAddr addr; LookupHost(ip, addr, false); return addr; } static CSubNet ResolveSubNet(const char* subnet) { CSubNet ret; LookupSubNet(subnet, ret); return ret; } static CNetAddr CreateInternal(const char* host) { CNetAddr addr; addr.SetInternal(host); return addr; } BOOST_AUTO_TEST_CASE(netbase_networks) { BOOST_CHECK(ResolveIP("127.0.0.1").GetNetwork() == NET_UNROUTABLE); BOOST_CHECK(ResolveIP("::1").GetNetwork() == NET_UNROUTABLE); BOOST_CHECK(ResolveIP("8.8.8.8").GetNetwork() == NET_IPV4); BOOST_CHECK(ResolveIP("2001::8888").GetNetwork() == NET_IPV6); BOOST_CHECK(ResolveIP("FD87:D87E:EB43:edb1:8e4:3588:e546:35ca").GetNetwork() == NET_TOR); BOOST_CHECK(CreateInternal("foo.com").GetNetwork() == NET_INTERNAL); } BOOST_AUTO_TEST_CASE(netbase_properties) { BOOST_CHECK(ResolveIP("127.0.0.1").IsIPv4()); BOOST_CHECK(ResolveIP("::FFFF:192.168.1.1").IsIPv4()); BOOST_CHECK(ResolveIP("::1").IsIPv6()); BOOST_CHECK(ResolveIP("10.0.0.1").IsRFC1918()); BOOST_CHECK(ResolveIP("192.168.1.1").IsRFC1918()); BOOST_CHECK(ResolveIP("172.31.255.255").IsRFC1918()); BOOST_CHECK(ResolveIP("2001:0DB8::").IsRFC3849()); BOOST_CHECK(ResolveIP("169.254.1.1").IsRFC3927()); BOOST_CHECK(ResolveIP("2002::1").IsRFC3964()); BOOST_CHECK(ResolveIP("FC00::").IsRFC4193()); BOOST_CHECK(ResolveIP("2001::2").IsRFC4380()); BOOST_CHECK(ResolveIP("2001:10::").IsRFC4843()); BOOST_CHECK(ResolveIP("FE80::").IsRFC4862()); BOOST_CHECK(ResolveIP("64:FF9B::").IsRFC6052()); BOOST_CHECK(ResolveIP("FD87:D87E:EB43:edb1:8e4:3588:e546:35ca").IsTor()); BOOST_CHECK(ResolveIP("127.0.0.1").IsLocal()); BOOST_CHECK(ResolveIP("::1").IsLocal()); BOOST_CHECK(ResolveIP("8.8.8.8").IsRoutable()); BOOST_CHECK(ResolveIP("2001::1").IsRoutable()); BOOST_CHECK(ResolveIP("127.0.0.1").IsValid()); BOOST_CHECK(CreateInternal("FD6B:88C0:8724:edb1:8e4:3588:e546:35ca").IsInternal()); BOOST_CHECK(CreateInternal("bar.com").IsInternal()); } bool static TestSplitHost(std::string test, std::string host, int port) { std::string hostOut; int portOut = -1; SplitHostPort(test, portOut, hostOut); return hostOut == host && port == portOut; } BOOST_AUTO_TEST_CASE(netbase_splithost) { BOOST_CHECK(TestSplitHost("www.babycoin.org", "www.babycoin.org", -1)); BOOST_CHECK(TestSplitHost("[www.babycoin.org]", "www.babycoin.org", -1)); BOOST_CHECK(TestSplitHost("www.babycoin.org:80", "www.babycoin.org", 80)); BOOST_CHECK(TestSplitHost("[www.babycoin.org]:80", "www.babycoin.org", 80)); BOOST_CHECK(TestSplitHost("127.0.0.1", "127.0.0.1", -1)); BOOST_CHECK(TestSplitHost("127.0.0.1:9333", "127.0.0.1", 9333)); BOOST_CHECK(TestSplitHost("[127.0.0.1]", "127.0.0.1", -1)); BOOST_CHECK(TestSplitHost("[127.0.0.1]:9333", "127.0.0.1", 9333)); BOOST_CHECK(TestSplitHost("::ffff:127.0.0.1", "::ffff:127.0.0.1", -1)); BOOST_CHECK(TestSplitHost("[::ffff:127.0.0.1]:9333", "::ffff:127.0.0.1", 9333)); BOOST_CHECK(TestSplitHost("[::]:9333", "::", 9333)); BOOST_CHECK(TestSplitHost("::9333", "::9333", -1)); BOOST_CHECK(TestSplitHost(":9333", "", 9333)); BOOST_CHECK(TestSplitHost("[]:9333", "", 9333)); BOOST_CHECK(TestSplitHost("", "", -1)); } bool static TestParse(std::string src, std::string canon) { CService addr(LookupNumeric(src.c_str(), 65535)); return canon == addr.ToString(); } BOOST_AUTO_TEST_CASE(netbase_lookupnumeric) { BOOST_CHECK(TestParse("127.0.0.1", "127.0.0.1:65535")); BOOST_CHECK(TestParse("127.0.0.1:9333", "127.0.0.1:9333")); BOOST_CHECK(TestParse("::ffff:127.0.0.1", "127.0.0.1:65535")); BOOST_CHECK(TestParse("::", "[::]:65535")); BOOST_CHECK(TestParse("[::]:9333", "[::]:9333")); BOOST_CHECK(TestParse("[127.0.0.1]", "127.0.0.1:65535")); BOOST_CHECK(TestParse(":::", "[::]:0")); // verify that an internal address fails to resolve BOOST_CHECK(TestParse("[fd6b:88c0:8724:1:2:3:4:5]", "[::]:0")); // and that a one-off resolves correctly BOOST_CHECK(TestParse("[fd6c:88c0:8724:1:2:3:4:5]", "[fd6c:88c0:8724:1:2:3:4:5]:65535")); } BOOST_AUTO_TEST_CASE(onioncat_test) { // values from https://web.archive.org/web/20121122003543/http://www.cypherpunk.at/onioncat/wiki/OnionCat CNetAddr addr1(ResolveIP("5wyqrzbvrdsumnok.onion")); CNetAddr addr2(ResolveIP("FD87:D87E:EB43:edb1:8e4:3588:e546:35ca")); BOOST_CHECK(addr1 == addr2); BOOST_CHECK(addr1.IsTor()); BOOST_CHECK(addr1.ToStringIP() == "5wyqrzbvrdsumnok.onion"); BOOST_CHECK(addr1.IsRoutable()); } BOOST_AUTO_TEST_CASE(subnet_test) { BOOST_CHECK(ResolveSubNet("1.2.3.0/24") == ResolveSubNet("1.2.3.0/255.255.255.0")); BOOST_CHECK(ResolveSubNet("1.2.3.0/24") != ResolveSubNet("1.2.4.0/255.255.255.0")); BOOST_CHECK(ResolveSubNet("1.2.3.0/24").Match(ResolveIP("1.2.3.4"))); BOOST_CHECK(!ResolveSubNet("1.2.2.0/24").Match(ResolveIP("1.2.3.4"))); BOOST_CHECK(ResolveSubNet("1.2.3.4").Match(ResolveIP("1.2.3.4"))); BOOST_CHECK(ResolveSubNet("1.2.3.4/32").Match(ResolveIP("1.2.3.4"))); BOOST_CHECK(!ResolveSubNet("1.2.3.4").Match(ResolveIP("5.6.7.8"))); BOOST_CHECK(!ResolveSubNet("1.2.3.4/32").Match(ResolveIP("5.6.7.8"))); BOOST_CHECK(ResolveSubNet("::ffff:127.0.0.1").Match(ResolveIP("127.0.0.1"))); BOOST_CHECK(ResolveSubNet("1:2:3:4:5:6:7:8").Match(ResolveIP("1:2:3:4:5:6:7:8"))); BOOST_CHECK(!ResolveSubNet("1:2:3:4:5:6:7:8").Match(ResolveIP("1:2:3:4:5:6:7:9"))); BOOST_CHECK(ResolveSubNet("1:2:3:4:5:6:7:0/112").Match(ResolveIP("1:2:3:4:5:6:7:1234"))); BOOST_CHECK(ResolveSubNet("192.168.0.1/24").Match(ResolveIP("192.168.0.2"))); BOOST_CHECK(ResolveSubNet("192.168.0.20/29").Match(ResolveIP("192.168.0.18"))); BOOST_CHECK(ResolveSubNet("1.2.2.1/24").Match(ResolveIP("1.2.2.4"))); BOOST_CHECK(ResolveSubNet("1.2.2.110/31").Match(ResolveIP("1.2.2.111"))); BOOST_CHECK(ResolveSubNet("1.2.2.20/26").Match(ResolveIP("1.2.2.63"))); // All-Matching IPv6 Matches arbitrary IPv4 and IPv6 BOOST_CHECK(ResolveSubNet("::/0").Match(ResolveIP("1:2:3:4:5:6:7:1234"))); BOOST_CHECK(ResolveSubNet("::/0").Match(ResolveIP("1.2.3.4"))); // All-Matching IPv4 does not Match IPv6 BOOST_CHECK(!ResolveSubNet("0.0.0.0/0").Match(ResolveIP("1:2:3:4:5:6:7:1234"))); // Invalid subnets Match nothing (not even invalid addresses) BOOST_CHECK(!CSubNet().Match(ResolveIP("1.2.3.4"))); BOOST_CHECK(!ResolveSubNet("").Match(ResolveIP("4.5.6.7"))); BOOST_CHECK(!ResolveSubNet("bloop").Match(ResolveIP("0.0.0.0"))); BOOST_CHECK(!ResolveSubNet("bloop").Match(ResolveIP("hab"))); // Check valid/invalid BOOST_CHECK(ResolveSubNet("1.2.3.0/0").IsValid()); BOOST_CHECK(!ResolveSubNet("1.2.3.0/-1").IsValid()); BOOST_CHECK(ResolveSubNet("1.2.3.0/32").IsValid()); BOOST_CHECK(!ResolveSubNet("1.2.3.0/33").IsValid()); BOOST_CHECK(ResolveSubNet("1:2:3:4:5:6:7:8/0").IsValid()); BOOST_CHECK(ResolveSubNet("1:2:3:4:5:6:7:8/33").IsValid()); BOOST_CHECK(!ResolveSubNet("1:2:3:4:5:6:7:8/-1").IsValid()); BOOST_CHECK(ResolveSubNet("1:2:3:4:5:6:7:8/128").IsValid()); BOOST_CHECK(!ResolveSubNet("1:2:3:4:5:6:7:8/129").IsValid()); BOOST_CHECK(!ResolveSubNet("fuzzy").IsValid()); //CNetAddr constructor test BOOST_CHECK(CSubNet(ResolveIP("127.0.0.1")).IsValid()); BOOST_CHECK(CSubNet(ResolveIP("127.0.0.1")).Match(ResolveIP("127.0.0.1"))); BOOST_CHECK(!CSubNet(ResolveIP("127.0.0.1")).Match(ResolveIP("127.0.0.2"))); BOOST_CHECK(CSubNet(ResolveIP("127.0.0.1")).ToString() == "127.0.0.1/32"); CSubNet subnet = CSubNet(ResolveIP("1.2.3.4"), 32); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.3.4/32"); subnet = CSubNet(ResolveIP("1.2.3.4"), 8); BOOST_CHECK_EQUAL(subnet.ToString(), "1.0.0.0/8"); subnet = CSubNet(ResolveIP("1.2.3.4"), 0); BOOST_CHECK_EQUAL(subnet.ToString(), "0.0.0.0/0"); subnet = CSubNet(ResolveIP("1.2.3.4"), ResolveIP("255.255.255.255")); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.3.4/32"); subnet = CSubNet(ResolveIP("1.2.3.4"), ResolveIP("255.0.0.0")); BOOST_CHECK_EQUAL(subnet.ToString(), "1.0.0.0/8"); subnet = CSubNet(ResolveIP("1.2.3.4"), ResolveIP("0.0.0.0")); BOOST_CHECK_EQUAL(subnet.ToString(), "0.0.0.0/0"); BOOST_CHECK(CSubNet(ResolveIP("1:2:3:4:5:6:7:8")).IsValid()); BOOST_CHECK(CSubNet(ResolveIP("1:2:3:4:5:6:7:8")).Match(ResolveIP("1:2:3:4:5:6:7:8"))); BOOST_CHECK(!CSubNet(ResolveIP("1:2:3:4:5:6:7:8")).Match(ResolveIP("1:2:3:4:5:6:7:9"))); BOOST_CHECK(CSubNet(ResolveIP("1:2:3:4:5:6:7:8")).ToString() == "1:2:3:4:5:6:7:8/128"); subnet = ResolveSubNet("1.2.3.4/255.255.255.255"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.3.4/32"); subnet = ResolveSubNet("1.2.3.4/255.255.255.254"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.3.4/31"); subnet = ResolveSubNet("1.2.3.4/255.255.255.252"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.3.4/30"); subnet = ResolveSubNet("1.2.3.4/255.255.255.248"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.3.0/29"); subnet = ResolveSubNet("1.2.3.4/255.255.255.240"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.3.0/28"); subnet = ResolveSubNet("1.2.3.4/255.255.255.224"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.3.0/27"); subnet = ResolveSubNet("1.2.3.4/255.255.255.192"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.3.0/26"); subnet = ResolveSubNet("1.2.3.4/255.255.255.128"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.3.0/25"); subnet = ResolveSubNet("1.2.3.4/255.255.255.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.3.0/24"); subnet = ResolveSubNet("1.2.3.4/255.255.254.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.2.0/23"); subnet = ResolveSubNet("1.2.3.4/255.255.252.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.0.0/22"); subnet = ResolveSubNet("1.2.3.4/255.255.248.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.0.0/21"); subnet = ResolveSubNet("1.2.3.4/255.255.240.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.0.0/20"); subnet = ResolveSubNet("1.2.3.4/255.255.224.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.0.0/19"); subnet = ResolveSubNet("1.2.3.4/255.255.192.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.0.0/18"); subnet = ResolveSubNet("1.2.3.4/255.255.128.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.0.0/17"); subnet = ResolveSubNet("1.2.3.4/255.255.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.0.0/16"); subnet = ResolveSubNet("1.2.3.4/255.254.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.0.0/15"); subnet = ResolveSubNet("1.2.3.4/255.252.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.0.0.0/14"); subnet = ResolveSubNet("1.2.3.4/255.248.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.0.0.0/13"); subnet = ResolveSubNet("1.2.3.4/255.240.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.0.0.0/12"); subnet = ResolveSubNet("1.2.3.4/255.224.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.0.0.0/11"); subnet = ResolveSubNet("1.2.3.4/255.192.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.0.0.0/10"); subnet = ResolveSubNet("1.2.3.4/255.128.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.0.0.0/9"); subnet = ResolveSubNet("1.2.3.4/255.0.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.0.0.0/8"); subnet = ResolveSubNet("1.2.3.4/254.0.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "0.0.0.0/7"); subnet = ResolveSubNet("1.2.3.4/252.0.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "0.0.0.0/6"); subnet = ResolveSubNet("1.2.3.4/248.0.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "0.0.0.0/5"); subnet = ResolveSubNet("1.2.3.4/240.0.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "0.0.0.0/4"); subnet = ResolveSubNet("1.2.3.4/224.0.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "0.0.0.0/3"); subnet = ResolveSubNet("1.2.3.4/192.0.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "0.0.0.0/2"); subnet = ResolveSubNet("1.2.3.4/128.0.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "0.0.0.0/1"); subnet = ResolveSubNet("1.2.3.4/0.0.0.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "0.0.0.0/0"); subnet = ResolveSubNet("1:2:3:4:5:6:7:8/ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"); BOOST_CHECK_EQUAL(subnet.ToString(), "1:2:3:4:5:6:7:8/128"); subnet = ResolveSubNet("1:2:3:4:5:6:7:8/ffff:0000:0000:0000:0000:0000:0000:0000"); BOOST_CHECK_EQUAL(subnet.ToString(), "1::/16"); subnet = ResolveSubNet("1:2:3:4:5:6:7:8/0000:0000:0000:0000:0000:0000:0000:0000"); BOOST_CHECK_EQUAL(subnet.ToString(), "::/0"); subnet = ResolveSubNet("1.2.3.4/255.255.232.0"); BOOST_CHECK_EQUAL(subnet.ToString(), "1.2.0.0/255.255.232.0"); subnet = ResolveSubNet("1:2:3:4:5:6:7:8/ffff:ffff:ffff:fffe:ffff:ffff:ffff:ff0f"); BOOST_CHECK_EQUAL(subnet.ToString(), "1:2:3:4:5:6:7:8/ffff:ffff:ffff:fffe:ffff:ffff:ffff:ff0f"); } BOOST_AUTO_TEST_CASE(netbase_getgroup) { BOOST_CHECK(ResolveIP("127.0.0.1").GetGroup() == std::vector<unsigned char>({0})); // Local -> !Routable() BOOST_CHECK(ResolveIP("257.0.0.1").GetGroup() == std::vector<unsigned char>({0})); // !Valid -> !Routable() BOOST_CHECK(ResolveIP("10.0.0.1").GetGroup() == std::vector<unsigned char>({0})); // RFC1918 -> !Routable() BOOST_CHECK(ResolveIP("169.254.1.1").GetGroup() == std::vector<unsigned char>({0})); // RFC3927 -> !Routable() BOOST_CHECK(ResolveIP("1.2.3.4").GetGroup() == std::vector<unsigned char>({(unsigned char)NET_IPV4, 1, 2})); // IPv4 BOOST_CHECK(ResolveIP("::FFFF:0:102:304").GetGroup() == std::vector<unsigned char>({(unsigned char)NET_IPV4, 1, 2})); // RFC6145 BOOST_CHECK(ResolveIP("64:FF9B::102:304").GetGroup() == std::vector<unsigned char>({(unsigned char)NET_IPV4, 1, 2})); // RFC6052 BOOST_CHECK(ResolveIP("2002:102:304:9999:9999:9999:9999:9999").GetGroup() == std::vector<unsigned char>({(unsigned char)NET_IPV4, 1, 2})); // RFC3964 BOOST_CHECK(ResolveIP("2001:0:9999:9999:9999:9999:FEFD:FCFB").GetGroup() == std::vector<unsigned char>({(unsigned char)NET_IPV4, 1, 2})); // RFC4380 BOOST_CHECK(ResolveIP("FD87:D87E:EB43:edb1:8e4:3588:e546:35ca").GetGroup() == std::vector<unsigned char>({(unsigned char)NET_TOR, 239})); // Tor BOOST_CHECK(ResolveIP("2001:470:abcd:9999:9999:9999:9999:9999").GetGroup() == std::vector<unsigned char>({(unsigned char)NET_IPV6, 32, 1, 4, 112, 175})); //he.net BOOST_CHECK(ResolveIP("2001:2001:9999:9999:9999:9999:9999:9999").GetGroup() == std::vector<unsigned char>({(unsigned char)NET_IPV6, 32, 1, 32, 1})); //IPv6 // baz.net sha256 hash: 12929400eb4607c4ac075f087167e75286b179c693eb059a01774b864e8fe505 std::vector<unsigned char> internal_group = {NET_INTERNAL, 0x12, 0x92, 0x94, 0x00, 0xeb, 0x46, 0x07, 0xc4, 0xac, 0x07}; BOOST_CHECK(CreateInternal("baz.net").GetGroup() == internal_group); } BOOST_AUTO_TEST_SUITE_END()
[ "hendryrodrigu1990@gmail.com" ]
hendryrodrigu1990@gmail.com
8ff9d693e3bc6eefb0ea651cdd0fe0c284d1024b
43963deaade533bc28ed8ca3a00e99bec171046e
/src/kernel/MmDbgFreeMemory.cpp
a4871f68b389168d955502997a1cb5316cbb8929
[]
no_license
mborgerson/OpenXBOX
3bc8dac3b719859b1284b2426b195945bb878b98
126fbd13a51dd09ae3f7cac747dffe1ce1a0e912
refs/heads/master
2023-02-25T16:11:31.497371
2017-12-27T21:08:57
2017-12-27T21:08:57
113,101,895
18
1
null
null
null
null
UTF-8
C++
false
false
416
cpp
#include "common.h" /* * MmDbgFreeMemory * * Import Number: 375 * Calling Convention: stdcall * Parameter 0: PVOID BaseAddress * Parameter 1: SIZE_T NumberOfBytes * Return Type: ULONG */ int Xbox::MmDbgFreeMemory() { K_ENTER_STDCALL(); K_INIT_ARG(PVOID, BaseAddress); K_INIT_ARG(SIZE_T, NumberOfBytes); ULONG rval; K_EXIT_WITH_VALUE(rval); return ERROR_NOT_IMPLEMENTED; }
[ "contact@mborgerson.com" ]
contact@mborgerson.com
ecad27028f4e5714d2665abc29d1bbe618a2a06e
ad0fe9f21d55ec64ff72fabf77da92a442463b7e
/core/src/test/resources/CPP/neopz/Matrix/pzdiffmatrix.h
3149b3664cc1ecad9f5252bb9c1ceaa2b3cbdc0c
[ "MIT" ]
permissive
gems-uff/oceano
91425da8a11aa0268c9b5c1e2db70013f0152bac
a37468dab497c1ffe338bbf06df179bfe27b59d1
refs/heads/master
2020-12-24T19:27:06.468798
2018-11-18T00:20:13
2018-11-18T00:20:13
13,281,731
3
3
MIT
2018-11-18T00:20:13
2013-10-02T20:18:47
Java
UTF-8
C++
false
false
10,609
h
/** * @file * @brief Contains TPZDiffMatrix class which to hold the flux derivatives A B C and diffusive matrix coefficients. */ //$Id: pzdiffmatrix.h,v 1.8 2011-04-05 19:32:54 calle Exp $ #ifndef PZDIFFMATRIX_H #define PZDIFFMATRIX_H #include <ostream> #include "pzmatrix.h" #ifdef _AUTODIFF #include "fadType.h" #endif /** @ingroup matrix */ enum EStatus {EOk = 0, EIncompDim, EZeroPivot}; /** * @ingroup matrix * @brief Matrix class to hold the flux derivatives A B C and diffusive matrix coefficients. \ref matrix "Matrix" * @author Erick Slis * @author Cedric Ayala * @since June 1, 2003. */ template <class T> class TPZDiffMatrix { public: TPZDiffMatrix(); TPZDiffMatrix(const int rows, const int cols); ~TPZDiffMatrix(); /** @brief Resizes and zeroes the matrix. */ void Redim(const int rows, const int cols); /** @brief Multiplies the matrix by a correspondent TPZVec vector. Dimensions are checked. */ void Multiply(TPZVec<T> & In, TPZVec<T> & Out, const T & scale = T(1.)); /** @brief Matrix multiplication. Dimensions are checked. */ void Multiply(TPZDiffMatrix<T> & In, TPZDiffMatrix<T> & Out, const T & scale = T(1.)); /** * @brief Matrix multiplication */ /** * Dimensions are checked. \n * Results are additively contributed to Out */ void MultiplyAdd(TPZDiffMatrix<T> & In, TPZDiffMatrix<T> & Out, const T & scale = T(1.)); /** @brief Copies the matrix, reallocating all coefficients. */ TPZDiffMatrix<T> & operator=(const TPZDiffMatrix<T> & source); /** @brief Adds element by element. */ void Add(TPZDiffMatrix<T> & matrix, const T & scale = T(1.)); /** @brief Matrix data access */ T & operator()(const int i, const int j = 0); void PutVal(const int row,const int col,const T & value ); const T &GetVal(const int row,const int col ) const; /** @brief Transposes the matrix onto the parameter object. */ /** Resizes it if necessary. */ TPZDiffMatrix<T> & Transpose(TPZDiffMatrix<T> & matrix); /** * @brief Performs a specific diffusive divergence operation. * @param gradx: example: {dU0dx0 dU0dx1 dU0dx2 dU1dx0... dU5dx2} * @param varOffset: shall lie between 0 and dim-1. \n * Represents the index of spatial derivative to multiply * the matrix by. * @param dim * @param Divergent: vetor to which the operation shall contribute to. \n * Must be explicitly zeroed before calling this function. */ /** * The object gradx contain the tangent matrix * of the solutions with respect to the dim spatial dimensions. */ void AddAlignDiv(TPZVec<T> & gradx, const int varOffset,const int dim, TPZVec<T> & Divergent); /** * @brief Computes the divergent for diffusion purposes * @param dPhi: the dim number of derivatives of test function * @param U the dim+2 solutions at the given point * @param dim * @param Divergent Vector result containing the computed divergent * The operation is additive, so zero it first * @param dDivergent Computes an approximate derivative of the divergent * with respect to the Ui coefficients. */ void AddDiv(T & dPhi, TPZVec<T> & U, const int dim, TPZVec<T> & Divergent, TPZDiffMatrix<T> & dDivergent); int Cols()const; int Rows()const; EStatus Decompose_LU(); EStatus Substitution( TPZDiffMatrix<T> *B ) const; void Reset(); private: int index(const int i, const int j)const; int fRows, fCols; T * fStore; int fDecomposed; }; /** @brief Re-implements << operator to output of matrices */ template <class T> std::ostream & operator<<(std::ostream & out, TPZDiffMatrix<T> & A) { int i, j; out << "\nTPZDiffMatrix<> " << A.Rows() << " * " << A.Cols(); for(i=0;i<A.Rows();i++) { out << "\n\t"; for(j=0;j<A.Cols();j++) { out << " " << A(i,j); } } out << std::endl; return out; } template <class T> inline TPZDiffMatrix<T>::TPZDiffMatrix():fRows(0), fCols(0), fStore(NULL), fDecomposed(ENoDecompose) { } template <class T> inline TPZDiffMatrix<T>::TPZDiffMatrix(const int rows, const int cols):fRows(0), fCols(0), fStore(NULL), fDecomposed(ENoDecompose) { Redim(rows, cols); } template <class T> inline TPZDiffMatrix<T>::~TPZDiffMatrix() { if(fStore)delete[] fStore; } template <class T> inline void TPZDiffMatrix<T>::Redim(const int rows, const int cols) { if(rows!=fRows || cols!=fCols){ if(fStore)delete[] fStore; fStore = NULL; fRows = rows; fCols = cols; fStore = new T[fRows*fCols]; } int i=fRows*fCols -1; for(;i>=0;i--)fStore[i]=T(0.); } template <class T> inline TPZDiffMatrix<T>& TPZDiffMatrix<T>::Transpose( TPZDiffMatrix<T> & matrix) { matrix.Redim(fCols, fRows); int i, j; for(i=0;i<fRows;i++) for(j=0;j<fCols;j++) matrix(j,i)=operator()(i,j); return matrix; } template <class T> inline int TPZDiffMatrix<T>::index(const int i, const int j)const { if(i<0 || i>=fRows)PZError << "\nTPZDiffMatrix<T>::index error: row out of bounds\n"; if(j<0 || j>=fCols)PZError << "\nTPZDiffMatrix<T>::index error: col out of bounds\n"; return i*fCols+j; } template <class T> inline T & TPZDiffMatrix<T>::operator()(const int i, const int j) { return fStore[index(i,j)]; } template <class T> inline void TPZDiffMatrix<T>::PutVal(const int row,const int col,const T & value ) { fStore[index(row,col)] = value; } template <class T> inline const T & TPZDiffMatrix<T>::GetVal(const int row,const int col ) const { return fStore[index(row,col)]; } template <class T> inline void TPZDiffMatrix<T>::Multiply(TPZVec<T> & In, TPZVec<T> & Out, const T & scale) { if(In.NElements()!=fCols)PZError << "\nTPZDiffMatrix<T>::Multiply error: 'In' vector out of bounds\n"; if(Out.NElements()!=fRows)Out.Resize(fRows); int i, j; for(i=0;i<fRows;i++) { T buff=0.; for(j=0;j<fCols;j++) { buff+=In[j]*operator()(i,j); } buff*=scale; Out[i]=buff; } } template <class T> inline void TPZDiffMatrix<T>::Multiply(TPZDiffMatrix<T> & In, TPZDiffMatrix<T> & Out, const T & scale) { if(fCols!=In.fRows)PZError << "\nTPZDiffMatrix<T>::Multiply error: 'In' matrix out of bounds\n"; Out.Redim(fRows,In.fCols); int i, j, k; for(i=0;i<fRows;i++) { for(j=0;j<In.fCols;j++) { T buff=0.; for(k=0;k<fCols;k++) { buff+=operator()(i,k) * In(k,j); } buff*=scale; Out(i,j)=buff; } } } template <class T> inline void TPZDiffMatrix<T>::MultiplyAdd(TPZDiffMatrix<T> & In, TPZDiffMatrix<T> & Out, const T & scale) { if(fCols!=In.fRows)PZError << "\nTPZDiffMatrix<T>::MultiplyAdd error: 'In' matrix out of bounds\n"; if(Out.fCols!=fCols)PZError << "\nTPZDiffMatrix<T>::MultiplyAdd error: 'Out' matrix out of bounds\n";Out.Redim(fRows,In.fCols); if(In.fRows!=Out.fRows)PZError << "\nTPZDiffMatrix<T>::MultiplyAdd error: 'Out' matrix out of bounds\n";Out.Redim(fRows,In.fCols); int i, j, k; for(i=0;i<fRows;i++) { for(j=0;j<In.fCols;j++) { T buff=0.; for(k=0;k<fCols;k++) { buff+=operator()(i,k) * In(k,j); } buff*=scale; Out(i,j)+=buff; } } } template <class T> inline void TPZDiffMatrix<T>::Add(TPZDiffMatrix<T> & matrix, const T & scale) { if(fRows!=matrix.fRows)PZError << "\nTPZDiffMatrix<T>::Add error: row out of bounds\n"; if(fCols!=matrix.fCols)PZError << "\nTPZDiffMatrix<T>::add error: col out of bounds\n"; int i = fRows * fCols - 1; for(;i>=0;i--)fStore[i]+=matrix.fStore[i]*scale; } template <class T> inline TPZDiffMatrix<T> & TPZDiffMatrix<T>::operator=(const TPZDiffMatrix<T> & source) { Redim(source.fRows, source.fCols); int i = fRows * fCols - 1; for(;i>=0;i--)fStore[i]=source.fStore[i]; fDecomposed = source.fDecomposed; return *this; } template <class T> inline void TPZDiffMatrix<T>::AddAlignDiv(TPZVec<T> & gradx, const int varOffset,const int dim, TPZVec<T> & Divergent) { int nstate = dim+2; if(gradx.NElements()!=(nstate)*dim)PZError << "\nTPZDiffMatrix<T>::AddAlignDiv error: gradx vector of wrong size\n"; if(Divergent.NElements()!=nstate )PZError << "\nTPZDiffMatrix<T>::AddAlignDiv error: Divergent vector of wrong size\n"; //Divergent.Resize(nstate); int i, j; for(i=0;i<nstate;i++) { for(j=0;j<nstate;j++)Divergent[i]+=operator()(i,j)*gradx[j*dim+varOffset]; } } template <class T> inline void TPZDiffMatrix<T>::AddDiv(T & dPhi, TPZVec<T> & U, const int dim, TPZVec<T> & Divergent, TPZDiffMatrix<T> & dDivergent) { int nstate = dim+2; if( U.NElements()!=nstate)PZError << "\nTPZDiffMatrix<T>::AddDiv error: U vector of wrong size\n"; if(Divergent.NElements()!=nstate)PZError << "\nTPZDiffMatrix<T>::AddDiv error: Divergent vector of wrong size\n"; int i, j; for(i=0;i<nstate;i++) { for(j=0;j<nstate;j++) { Divergent[i]+=operator()(i,j)*dPhi*U[j]; dDivergent(i,j)+=operator()(i,j)*dPhi;//? } } } template <class T> inline int TPZDiffMatrix<T>::Cols()const { return fCols; } template <class T> inline int TPZDiffMatrix<T>::Rows()const { return fRows; } template <class T> inline EStatus TPZDiffMatrix<T>::Decompose_LU() { if (fDecomposed == ELU) { PZError << "\npzdiffmatrix.h Attempting to decompose an already decomposed matrix\n"; return EOk; } T nn, pivot; int min = ( Cols() < (Rows()) ) ? Cols() : Rows(); for ( int k = 0; k < min ; k++ ) { if (IsZero( pivot = GetVal(k, k))) return EZeroPivot; for ( int i = k+1; i < Rows(); i++ ) { nn = GetVal( i, k ) / pivot; PutVal( i, k, nn ); for ( int j = k+1; j < Cols(); j++ ) PutVal(i,j,GetVal(i,j)-nn*GetVal(k,j)); } } fDecomposed=ELU; return EOk; } template <class T> inline EStatus TPZDiffMatrix<T>::Substitution( TPZDiffMatrix<T> *B ) const{ int rowb = B->Rows(); int colb = B->Cols(); if ( rowb != Rows() ) return EIncompDim; int i; for ( i = 0; i < rowb; i++ ) { for ( int col = 0; col < colb; col++ ) { for ( int j = 0; j < i; j++ ) { B->PutVal( i, col, B->GetVal(i, col)-GetVal(i, j) * B->GetVal(j, col) ); } } } for (int col=0; col<colb; col++) { for ( i = rowb-1; i >= 0; i-- ) { for ( int j = i+1; j < rowb ; j++ ) { B->PutVal( i, col, B->GetVal(i, col) - GetVal(i, j) * B->GetVal(j, col) ); } if ( IsZero( GetVal(i, i) ) ) { return EZeroPivot; } B->PutVal( i, col, B->GetVal( i, col) / GetVal(i, i) ); } } return EOk; } template <class T> inline void TPZDiffMatrix<T>::Reset() { fDecomposed = ENoDecompose; } #endif
[ "leomurta@ic.uff.br" ]
leomurta@ic.uff.br
4b8d8d3b8a699d468aa29791adde84c3c094d865
44a04b4e49d2f47cc184e479ecee3e90b8b8dc33
/blob_detection/blob_detection.hpp
9220ed2d38d384a6effa57d97d70f4261f2c7ac9
[]
no_license
frferrara/blob_detection
a723c163673667e00d684ed4f50c715f2b58f68f
3ce38391c33995a31bcb2fa9cf28bf3268367e0f
refs/heads/master
2021-01-15T11:29:02.603322
2011-12-21T12:24:25
2011-12-21T12:24:25
3,005,708
3
1
null
null
null
null
UTF-8
C++
false
false
2,556
hpp
/* * blob_detection.hpp * * Created on: Dec 18, 2011 * Author: ferraraf */ #ifndef BLOB_DETECTION_HPP_ #define BLOB_DETECTION_HPP_ // STL #include <iostream> #include <vector> // Computer vision #include <opencv2/opencv.hpp> #include <cvblob.h> // Multi threaded circle detection #include <mt_circdet.hpp> using namespace std; using namespace cv; using namespace cvb; #define VISUALIZE 0 #define VISUALIZE_DET 0 #define FLAG_ROI 1 namespace blob_detection { class BlobDetector { // Image size Size img_size; // HSV Thresholds Scalar hsv_min, hsv_min__ROI, hsv_max, hsv_max__ROI; // Needed images Mat original, hsv, thresholded, filtered, frame, label; // Noise suppressing mask Mat morph_kernel; // Parameters for the circle detection unsigned int num_points, n; // Histograms for the circle detection gsl_histogram * hist_r; gsl_histogram2d * hist__x_c; // Image ROI Rect ROI; // ROI flag bool flag_ROI; // Read the image void read_img( const Mat & original ); // Set the roi void set_roi(); // Detect with ROI bool detect_roi( CvBlobs & blobs, \ size_t & x_c, \ size_t & y_c, \ size_t & r ); // Detect without ROI bool detect( CvBlobs & blobs, \ size_t & x_c, \ size_t & y_c, \ size_t & r ); // Process the image ROI CvBlobs proc_roi( const Mat & original_roi ); // Process the image CvBlobs proc_img(); // Get the blob contour vector< vector< unsigned int > > get_contour( CvBlob * blob ); // Detect the circle in the image void circdet( const vector< vector< unsigned int > > & blob_contour, \ size_t & x_c, \ size_t & y_c, \ size_t & r ); // Transform the blobs from ROI to image coordinates void transform_blobs( CvBlobs & blobs ); // Draw the blob and circle in the ROI void draw_roi( CvBlobs blobs, \ const Point & x_c, \ const size_t & r, \ const Scalar & color ); // Draw the blob and circle void draw( CvBlobs blobs, \ const Point & x_c, \ const size_t & r, \ const Scalar & color ); // Show the images void show_img(); public: // Constructor BlobDetector( const Size & img_size, \ const Scalar & hsv_min, \ const Scalar & hsv_max, \ unsigned int num_points, \ unsigned int n ); // Destructor ~BlobDetector(); // Get the ROI Rect get_roi(); // Blob detection bool blob_detection( const Mat & original, \ size_t & x_c, \ size_t & y_c, \ size_t & r ); }; } #endif /* BLOB_DETECTION_HPP_ */
[ "fr.ferrara@gmail.com" ]
fr.ferrara@gmail.com
ce237a70648158475b4c7bc8710de401e36b39df
68781743f0bb7faeb7ef374e8c1e61b9a73e2f2e
/control_unit.cpp
2b59d19ce80165b02ed3e94cf09f6e186925b486
[]
no_license
roger-willian/mips
4c4caba3bfed1129a7f7178d3ce5fd008436f5fe
59cbe68fda38e00c4009ea930b4027830970cf56
refs/heads/master
2021-01-15T14:29:17.158202
2014-06-30T17:23:21
2014-06-30T17:23:21
19,010,294
1
1
null
null
null
null
UTF-8
C++
false
false
6,750
cpp
#include "systemc.h" #include "functions.h" #include "mips.h" #define X 0 enum states { PRE_FETCH, FETCH, DECODE, ADDR_COMPUTATION, EXECUTION, BRANCH_COMPLETION, JUMP_COMPLETION, MEM_READ_COMPLETION, R_COMPLETION, MEMORY_ACCESS, ADDIU_COMPLETION, IMM_EXECUTION, IMM_COMPLETION }; const char* states_names[] = { "PRE_FETCH", "FETCH", "DECODE", "ADDR_COMPUTATION", "EXECUTION", "BRANCH_COMPLETION", "JUMP_COMPLETION", "MEM_READ_COMPLETION", "R_COMPLETION", "MEMORY_ACCESS", "ADDIU_COMPLETION", "IMM_EXECUTION", "IMM_COMPLETION" }; SC_MODULE (control_unit) { sc_in_clk clock; // PC sc_out< bool > PCWriteCond; // P1 sc_out< bool > PCWrite; // P2 // Memory mux sc_out< bool > IorD; // P3 // Memory signals sc_out< bool > MemRead; // P4 sc_out< bool > MemWrite; // P5 // Instruction register signals sc_out< bool > IRWrite; // P6 sc_in< sc_uint<6> > OpCode; // P7 // Register Bank Write Register Mux sc_out< bool > MemtoReg; // P8: Memory or ALU // Register Bank Write Data Mux sc_out< bool > RegDst; // P9: rd or rt // Register file signals sc_out< bool > RegWrite; // P10: Enable writing // ALUSrcA Mux signals sc_out< bool > ALUSrcA; // P11 // ALUSrcB Mux signals sc_out< sc_uint<2> > ALUSrcB; // P12 // ALU signals sc_out< sc_uint<3> > ALUOp; // P13 // PC Source Mux signals sc_out< sc_uint<2> > PCSource; // P14 sc_in< bool > reset; // P15 sc_signal< sc_uint<8> > curr_st; sc_signal< sc_uint<8> > next_st; void set_signals(bool pcWriteCond, bool pcWrite, bool iord, bool memRead, bool memWrite, bool memToReg, bool irWrite, bool regDst, bool regWrite, bool aluSrcA, sc_uint<2> aluSrcB, sc_uint<6> aluOp, sc_uint<2> pcSrc){ PCWriteCond.write(pcWriteCond); PCWrite.write(pcWrite); IorD.write(iord); MemRead.write(memRead); MemWrite.write(memWrite); MemtoReg.write(memToReg); IRWrite.write(irWrite); RegDst.write(regDst); RegWrite.write(regWrite); ALUSrcA.write(aluSrcA); ALUSrcB.write(aluSrcB); ALUOp.write(aluOp); PCSource.write(pcSrc); } void action (){ curr_st.write(next_st.read()); } int getType (int opCode){ int sr = opCode >> 3; switch(sr){ case 0: if(opCode == 0) return TYPE_R; else return TYPE_B; break; case 1: return TYPE_I; break; case 4: return TYPE_L; break; case 5: return TYPE_S; break; default: return -1; break; } } void logic () { int type = getType(OpCode.read()); switch (curr_st.read()){ case PRE_FETCH: // set_signals(0,0,0,1,0,X,1,X,0,0,1,NOP,X); next_st.write(FETCH); break; case FETCH: // IR <- MEM[PC] // AluOut <- PC + 4 set_signals(0,0,0,1,0,X,1,X,0,0,1,ADD,X); next_st.write(DECODE); break; case DECODE: // A <= Reg[rs] // B <= Reg[rt] // PC <= AluOut // AluOut <= PC + (sign-extend(addr << 2)) set_signals(X,1,X,0,0,X,0,X,0,0,3,ADD,1); switch (type){ case TYPE_R: next_st.write(EXECUTION); break; case TYPE_L: case TYPE_S: next_st.write(ADDR_COMPUTATION); break; case TYPE_I: next_st.write(IMM_EXECUTION); break; case TYPE_B: if(OpCode.read() == JUMP) next_st.write(JUMP_COMPLETION); else next_st.write(BRANCH_COMPLETION); break; default: next_st.write(FETCH); break; } break; case EXECUTION: // AluOut <= A op B set_signals(0,0,X,X,0,X,0,X,0,1,0,RTYPE,X); next_st.write(R_COMPLETION); break; case IMM_EXECUTION: // AluOut <= A op IMM set_signals(0,0,X,X,0,X,0,X,0,1,2,IMM,X); next_st.write(IMM_COMPLETION); break; case R_COMPLETION: // Reg[rd] <= AluOut set_signals(0,0,X,X,0,0,0,1,1,X,X,NOP,X); next_st.write(FETCH); break; case IMM_COMPLETION: // Reg[rt] <= AluOut set_signals(0,0,X,X,0,0,0,0,1,X,X,NOP,X); next_st.write(FETCH); break; case ADDR_COMPUTATION: // AluOut <= A + sign-extend(addr) set_signals(0,0,X,X,0,X,0,X,0,1,2,ADD,X); next_st.write(MEMORY_ACCESS); break; case ADDIU_COMPLETION: // Reg[rt] <= AluOut set_signals(0,0,X,X,0,0,0,0,1,X,X,NOP,X); next_st.write(FETCH); break; case MEMORY_ACCESS: // Load: MDR <= Memory[ALUOut] OR // Store: Memory[ALUOut] <= B if (OpCode.read() == LW) { set_signals(0,0,1,1,0,X,0,X,0,X,X,NOP,X); next_st.write(MEM_READ_COMPLETION); } else { set_signals(0,0,1,X,1,X,0,X,0,X,X,NOP,X); next_st.write(FETCH); } break; case MEM_READ_COMPLETION: // Reg[rt] <= MDR set_signals(0,0,X,X,0,1,0,0,1,X,X,NOP,X); next_st.write(FETCH); break; case BRANCH_COMPLETION: // if(zero) then PC <= AluOut set_signals(1,0,X,X,0,X,0,X,0,1,0,BRANCH,1); next_st.write(FETCH); break; case JUMP_COMPLETION: // PC <= {PC[31,28],IR[25,0]<<2)} set_signals(X,1,X,X,0,X,0,X,0,X,X,NOP,2); next_st.write(FETCH); break; default: log("CONTROL invalid %d\n", (unsigned int)OpCode.read()(31,26)); return; } if(reset.read() == 1) { next_st.write(PRE_FETCH); return; } } void showInfo(){ log("CONTROL: OpCode 0x%08x \n", (unsigned int)OpCode.read()); log("CONTROL: curr_st %s \n", states_names[curr_st.read()]); log("CONTROL: next_st %s \n", states_names[next_st.read()]); } SC_CTOR(control_unit) { SC_METHOD(action); sensitive << clock.pos(); SC_METHOD(logic); sensitive << OpCode; sensitive << reset; sensitive << curr_st; } };
[ "williandmn@gmail.com" ]
williandmn@gmail.com
f2ff33a292c2e23b81d1fae8b22c7edff1f20a6f
5b00f4cf3f872afe4962e5b43458d06b49c42bb3
/BOJProblem/p15460.cpp
8addc2a87877afdce6a78b5d7d38b298e47deb3c
[]
no_license
AllisonLee0507/BOJProblem
4e8884a104c6e4a770a1d1a979cc32b15fa39246
cacb3fed3b6a7ad9be923d25fc876b0c65114202
refs/heads/master
2023-07-10T23:30:25.470586
2021-08-22T04:49:54
2021-08-22T04:49:54
398,716,320
0
0
null
null
null
null
UTF-8
C++
false
false
2,673
cpp
#if 0 #define _CRT_SECURE_NO_WARNINGS #include <cstdio> #include <vector> #include <iostream> using namespace std; typedef long long LL; int main(void) { int n; cin >> n; vector<int> a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } LL s = 0; LL p = 0; LL q = 1; LL x = a.back(); vector<int> k; for (int i = n; i-- > 1; ) { s += a[i]; x = min(x, (LL)a[i]); if (n - i > 1) { if (p * (n - i - 1) < q * (s - x)) { p = s - x; q = n - i - 1; k = { i }; } else if (p * (n - i - 1) == q * (s - x)) { k.push_back(i); } } } for (int i = k.size(); i-- > 0; i ) { cout << k[i] << endl; } return 0; } #endif #if 0 #include <iostream> #include <vector> using namespace std; typedef long long LL; int main(void) { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; vector<int> a(n); for (int i = 0; i < n; ++i) cin >> a[i]; LL s = 0, p = 0, q = 1, x = a.back(); vector<int> k; for (int i = n; i-- > 1; ) { s += a[i]; x = min(x, (LL)a[i]); if (n - i > 1) { if (p * (n - i - 1) < q * (s - x)) p = s - x, q = n - i - 1, k = { i }; else if (p * (n - i - 1) == q * (s - x)) k.push_back(i); } } for (int i = k.size(); i-- > 0; ) cout << k[i] << '\n'; return 0; } #endif #if 0 #include <cstdio> #include <iostream> using namespace std; void fillPrefixSum(int arr[], int n, int prefixSum[]) { prefixSum[0] = arr[0]; for (int i = 1; i < n; i++) { prefixSum[i] = prefixSum[i - 1] + arr[i]; } } int main() { int arr[] = { 10, 4, 16, 20 }; int n = sizeof(arr) / sizeof(arr[0]); int *prefixSum; //prefixSum = (int*)malloc(sizeof(int) * n); prefixSum = new int[n]; fillPrefixSum(arr, n, prefixSum); for (int i = 0; i < n; i++) { cout << prefixSum[i] << " "; } //free(prefixSum); delete[] prefixSum; } #endif #if 0 #include<iostream> using namespace std; const int N = 1e5 + 10; int a[N]; int pf[N]; int main() { int n; cin >> n; for (int i = 0; i < n; i++) { cin >> a[i]; pf[i] = pf[i - 1] + a[i]; } int q; cin >> q; while (q--) { int l, r; cin >> l >> r; cout << pf[r] - pf[l - 1] << endl; } } #endif #if 0 #include <iostream> #include <vector> using namespace std; int find(int m, vector<pair<int, int>> q) { int mx = 0; vector<int> pre(5, 0); for (int i = 0; i < m; i++) { int a = q[i].first, b = q[i].second; pre[a - 1] += 100; pre[b] -= 100; } for (int i = 1; i < 5; i++) { pre[i] += pre[i - 1]; mx = max(mx, pre[i]); } return mx; } int main() { int m = 3; vector<pair<int, int>> q = { {2,4}, {1,3}, {1,2} }; cout << find(m, q); return 0; } #endif
[ "65398946+AllisonLee0507@users.noreply.github.com" ]
65398946+AllisonLee0507@users.noreply.github.com
3b77b5efc083f7ad3ddbf330597db4b31e703e06
a3e15db3f07cc4fbb490293d309ef5b498fd3bf1
/Arrays/Maximum 69 Number.cpp
c94f54b4ee14677e06259437c42dc175808011d3
[]
no_license
shoaib0657/Competitive-Programming-Problems-2020
85ae8e388ccfb2548fedf4e6a234a15170a0da4c
5f1c8be018df8e1b54b1b2796992b0afe2ef9092
refs/heads/master
2023-04-26T14:24:45.149685
2021-05-17T17:45:10
2021-05-17T17:45:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,275
cpp
/* Given a positive integer num consisting only of digits 6 and 9. Return the maximum number you can get by changing at most one digit (6 becomes 9, and 9 becomes 6). Example 1: Input: num = 9669 Output: 9969 Explanation: Changing the first digit results in 6669. Changing the second digit results in 9969. Changing the third digit results in 9699. Changing the fourth digit results in 9666. The maximum number is 9969. */ //APPROACH 1 : Naive - Convert int to string and perform modification class Solution { public: int maximum69Number (int num) { stack<int> stk; string num1 = to_string(num); int len = num1.length(); for(int i = 0; i<len; i++){ if(num1[i] == '6'){ num1[i] = '9'; break; } } return stoi(num1); } }; //APPROACH 2: class Solution { public: int maximum69Number (int num) { stack<int> stk; int temp = num; int i = 0, idx = -1; while (temp) { if (temp%10 == 6) { idx = i; } i++; temp/=10; } if (idx == -1) return num; return num + pow(10, idx)*3; } };
[ "noreply@github.com" ]
noreply@github.com
354016b31cfcfb90ed6c0bbc595e7238182027f6
e5ef91af99b97a7e6c21596faa5f1731fdb27a40
/ProcExplorer/src/ListView.cpp
7a29db20a81656344f999f47c21bd2f4ba2cbf33
[]
no_license
kycgni/FakeProcExplorer
f7642cdee5e47266d497286eae8b9a7f579c598b
15bdd4ce3bd6097e2f43ad30ba7e4c37f2ceb8f7
refs/heads/master
2022-01-11T08:45:43.568710
2019-09-24T03:00:58
2019-09-24T03:00:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,997
cpp
#include "stdafx.h" #include "../ProcExplorer.h" LONG gnCounter = 0; HCURSOR ghCursorArrow = NULL; HCURSOR ghCursorFind = NULL; WNDPROC gOldListWndProc = NULL; void UpdateTooltips(HWND hWndTooltips); ////////////////////////////////////////////////////////////////////////// // // // // // // ////////////////////////////////////////////////////////////////////////// HWND CreateListCtrl(HWND hWndParent, DWORD dwStyle, USHORT* pnWidths, int* pnIDs, ULONG ColumnCount, UINT nCtrlID) { InitCommonControls(); RECT rcClient; GetClientRect(hWndParent, &rcClient); HWND hWndList = CreateWindowEx(0, WC_LISTVIEW, TEXT(""), dwStyle, rcClient.left, rcClient.top, rcClient.right, rcClient.bottom, hWndParent, (HMENU)nCtrlID, ghInstance, NULL); if (!hWndList) return NULL; if (!InitListCtrl(hWndList, pnWidths, pnIDs, ColumnCount)) { DestroyWindow(hWndList); return NULL; } SetClassLong(hWndList, GCLP_HCURSOR, NULL); gOldListWndProc = (WNDPROC)SetWindowLongPtr(hWndList, GWLP_WNDPROC, (LONG_PTR)Proxy_ListCtrlWndProc); DWORD dwExStyle = LVS_EX_HEADERDRAGDROP|LVS_EX_FULLROWSELECT|LVS_EX_LABELTIP; SendMessage(hWndList, LVM_SETEXTENDEDLISTVIEWSTYLE, dwExStyle, dwStyle); HWND hWndHeader = ListView_GetHeader(hWndList); ///(HWND)SendMessage(hWndList, LVM_GETHEADER, 0, 0); HWND hWndTooltips = ListView_GetToolTips(hWndList); /// (HWND)SendMessage(hWndList, LVM_GETTOOLTIPS, 0, 0); UpdateTooltips(hWndTooltips); HIMAGELIST hImageList = InitSortableImageList(); SetWindowLongPtr(hWndList, GWL_STYLE, GetWindowLongPtr(hWndList, GWL_STYLE) | LVS_SHAREIMAGELISTS); SendMessage(hWndList, LVM_SETIMAGELIST, (WPARAM)TRUE, (LPARAM)hImageList); return hWndList; } ////////////////////////////////////////////////////////////////////////// // // // // // // ////////////////////////////////////////////////////////////////////////// BOOL InitListCtrl(HWND hWndList, USHORT* pnWidths, int* pnIDs, ULONG ColumnCount) { return TRUE; } ////////////////////////////////////////////////////////////////////////// // // // // // // ////////////////////////////////////////////////////////////////////////// void UpdateTooltips(HWND hWndTooltips) { Tooltips_SetDelayTime(hWndTooltips,TTDT_INITIAL, 0); Tooltips_SetMaxWidth(hWndTooltips, 4000); Tooltips_SetDelayTime(hWndTooltips, TTDT_AUTOPOP, 1000000); ////SendMessage(hWndTooltips, TTM_SETDELAYTIME, TTDT_INITIAL, 0); ////SendMessage(hWndTooltips, TTM_SETMAXTIPWIDTH, 0, 4000); ////SendMessage(hWndTooltips, TTM_SETDELAYTIME, TTDT_AUTOPOP, 1000000); } ////////////////////////////////////////////////////////////////////////// // // // // // // ////////////////////////////////////////////////////////////////////////// LRESULT CALLBACK Proxy_ListCtrlWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch (msg) { case WM_KEYDOWN: break; case WM_MOUSEMOVE: break; case WM_NOTIFY: break; case WM_SETFOCUS: case WM_KILLFOCUS: if (hWnd == ghWndTreeListView && (HWND)wParam != ghWndTreeListView) InvalidateRect(ghWndTreeListView, NULL, FALSE); break; case WM_ERASEBKGND: { int nItemCount = ListView_GetItemCount(hWnd); if (!nItemCount) break; RECT rcClient; RECT rcItem; GetClientRect(hWnd, &rcClient); //ListView_GetItemRect(hWnd, nItem - 1, &rcItem, ); SendMessage(hWnd, LVM_GETITEMRECT, nItemCount - 1, (LPARAM)&rcItem); HDC hDC = (HDC)wParam; RECT rc; rc.left = rcItem.right; FillRect(hDC, &rc, GetSysColorBrush(COLOR_WINDOW)); } break; case WM_SETCURSOR: if (hWnd == ghWndDllsListCtrl) { SetCursor(ghCursorArrow); return TRUE; } else { if (gnCounter) { SetAppStringCursor(); } else { SetArrowCursor(); } } return TRUE; break; default: break; } return CallWindowProc(gOldListWndProc, hWnd, msg, wParam, lParam); }
[ "noreply@github.com" ]
noreply@github.com
84f3962cd98e682a7cacf033e39b45fa84f01c75
464aa9d7d6c4906b083e6c3da12341504b626404
/src/tools/modeleditor/App/undo_redo.hpp
2a0d890cdbf4418b04807e37a7de96a366e3d874
[]
no_license
v2v3v4/BigWorld-Engine-2.0.1
3a6fdbb7e08a3e09bcf1fd82f06c1d3f29b84f7d
481e69a837a9f6d63f298a4f24d423b6329226c6
refs/heads/master
2023-01-13T03:49:54.244109
2022-12-25T14:21:30
2022-12-25T14:21:30
163,719,991
182
167
null
null
null
null
UTF-8
C++
false
false
1,911
hpp
/****************************************************************************** BigWorld Technology Copyright BigWorld Pty, Ltd. All Rights Reserved. Commercial in confidence. WARNING: This computer program is protected by copyright law and international treaties. Unauthorized use, reproduction or distribution of this program, or any portion of this program, may result in the imposition of civil and criminal penalties as provided by law. ******************************************************************************/ #ifndef UNDO_REDO_HPP #define UNDO_REDO_HPP #include "gizmo/undoredo.hpp" typedef SmartPointer< class XMLSection > XMLSectionPtr; typedef std::pair< std::string, std::string > StringPair; class UndoRedoOp : public UndoRedo::Operation { public: UndoRedoOp( int kind, DataSectionPtr data, DataSectionPtr parent = NULL, bool materialFlagChange = false, StringPair item = StringPair() ); ~UndoRedoOp(); virtual void undo(); virtual bool iseq( const UndoRedo::Operation & oth ) const; const DataSectionPtr data() const { return data_; } private: int kind_; DataSectionPtr data_; DataSectionPtr parent_; XMLSectionPtr state_; bool materialFlagChange_; StringPair item_; }; class UndoRedoMatterName : public UndoRedo::Operation { public: UndoRedoMatterName( const std::string & oldName, const std::string & newName ); ~UndoRedoMatterName(); virtual void undo(); virtual bool iseq( const UndoRedo::Operation & oth ) const; private: std::string oldName_; std::string newName_; }; class UndoRedoTintName : public UndoRedo::Operation { public: UndoRedoTintName( const std::string & matterName, const std::string & oldName, const std::string & newName ); ~UndoRedoTintName(); virtual void undo(); virtual bool iseq( const UndoRedo::Operation & oth ) const; private: std::string matterName_; std::string oldName_; std::string newName_; }; #endif // UNDO_REDO_HPP
[ "terran.erre@mail.ru" ]
terran.erre@mail.ru
6358997d41f903974432093a8e6775553ff8bd21
dbee967e4c128597a37bfd8cc97428eb99e91b09
/outputVedioAudio/PacketQueue.h
045f620fc516a83f21e61179ad2746c14a98c4bc
[]
no_license
sunfacel/FFMpeg
f632cc1c317d8e80ce7c425e9f16225a2d8d1c25
5e218be26c95686deaba53576066466923f4d3a4
refs/heads/master
2021-01-18T19:33:54.480558
2017-04-01T12:54:53
2017-04-01T12:54:53
86,901,997
0
0
null
null
null
null
UTF-8
C++
false
false
406
h
#ifndef PACKET_QUEUE_H #define PACKET_QUEUE_H #include <queue> #include <sdl2/SDL.h> #include <sdl2/SDL_thread.h> extern "C"{ #include <libavcodec\avcodec.h> } struct PacketQueue { std::queue<AVPacket> queue; Uint32 nb_packets; Uint32 size; SDL_mutex *mutex; SDL_cond *cond; PacketQueue(); bool enQueue(const AVPacket *packet); bool deQueue(AVPacket *packet, bool block); }; #endif
[ "sunfacel@163.com" ]
sunfacel@163.com
12f5935fd79b04279969a60632ce0ffd62e38899
bcc776c89ecda609c9627966b70332664f109ded
/andmin.cpp
a81adb7beadca1de8a639ba065f4f51d823d63a6
[]
no_license
realflash08/spoj
f02751c17b3972ddb1348153f0f3d17bd2e2652d
c534128d175949b5f62acb649df8fabad04414ec
refs/heads/master
2021-01-24T12:57:14.678001
2017-02-06T15:46:43
2017-02-06T15:46:43
54,800,356
0
0
null
null
null
null
UTF-8
C++
false
false
999
cpp
#include<iostream> #include<algorithm> using namespace std; #include<stdio.h> #include<stdlib.h> #include<string.h> #include<math.h> #include <vector> #include<queue> #include<bitset> #include<map> #include<limits> #define ll long long typedef pair<int, int > pii; #define pb push_back #define mk make_pair #define rep(p,q,r) for(int p=q;p<r;p++) #define TEST int t; cin >> t;while(t--) #define si(x) scanf("%d",&x) #define si2(x,y) scanf("%d %d",&x,&y) #define MEM(a,b) memset(a,(b),sizeof(a)) #define sl(x) scanf("%lld",&x) #define prline(x) printf("%lld\n",x) int MAX=numeric_limits<int>::max(); struct node { ll s; void merg(node a,node b) { s=min(a.s,b.s); } }; node seg[600000]; ll lazy[600000]; void update(int l,int r,int pos,ll x) { if(l>en||r<st) { return ; } else { if(l>=st&&r<=en) { if() } } } int main() { TEST { } }
[ "noreply@github.com" ]
noreply@github.com
3f230bb9f42ad5c894031e1b3d1fc8d13c40b329
c3e1fce7a720bb66a3814123727b6f835b54c8fd
/src/OGLSamples_GTruc/samples/gl-400-sampler-gather.cpp
5c52281601528062b95d2fce56c0b9d2abe26da5
[ "MIT" ]
permissive
isabella232/vogl
6df37b32eb5c484a461b50eb50b75f2a95ffb733
172a86d9c4ee08dccbf4e342caa1ba63f1ea2b0e
refs/heads/master
2022-04-18T21:11:14.760227
2014-03-14T21:55:20
2014-03-14T21:55:20
482,027,147
0
0
MIT
2022-04-16T02:59:09
2022-04-15T16:59:45
null
UTF-8
C++
false
false
8,113
cpp
//********************************** // OpenGL Gather // 27/05/2010 //********************************** // Christophe Riccio // ogl-samples@g-truc.net //********************************** // G-Truc Creation // www.g-truc.net //********************************** #include <glf/glf.hpp> namespace { char const * SAMPLE_NAME = "OpenGL Gather"; char const * VERTEX_SHADER_SOURCE("gl-400/gather.vert"); char const * FRAGMENT_SHADER_SOURCE("gl-400/gather.frag"); char const * TEXTURE_DIFFUSE_DXT5( "kueken1-dxt5.dds"); int const SAMPLE_SIZE_WIDTH = 640; int const SAMPLE_SIZE_HEIGHT = 480; int const SAMPLE_MAJOR_VERSION = 4; int const SAMPLE_MINOR_VERSION = 0; glf::window Window(glm::ivec2(SAMPLE_SIZE_WIDTH, SAMPLE_SIZE_HEIGHT)); GLsizei const VertexCount = 4; GLsizeiptr const VertexSize = VertexCount * sizeof(glf::vertex_v2fv2f); glf::vertex_v2fv2f const VertexData[VertexCount] = { glf::vertex_v2fv2f(glm::vec2(-1.0f,-1.0f), glm::vec2(0.0f, 1.0f)), glf::vertex_v2fv2f(glm::vec2( 1.0f,-1.0f), glm::vec2(1.0f, 1.0f)), glf::vertex_v2fv2f(glm::vec2( 1.0f, 1.0f), glm::vec2(1.0f, 0.0f)), glf::vertex_v2fv2f(glm::vec2(-1.0f, 1.0f), glm::vec2(0.0f, 0.0f)) }; GLsizei const ElementCount = 6; GLsizeiptr const ElementSize = ElementCount * sizeof(GLushort); GLushort const ElementData[ElementCount] = { 0, 1, 2, 2, 3, 0 }; enum buffer_type { BUFFER_VERTEX, BUFFER_ELEMENT, BUFFER_MAX }; namespace viewport { enum type { V00, V10, V11, V01, MAX }; }//namespace viewport GLuint VertexArrayName = 0; GLuint ProgramName = 0; GLuint BufferName[BUFFER_MAX]; GLuint Image2DName = 0; GLuint SamplerName = 0; GLint UniformMVP = 0; GLint UniformDiffuse = 0; GLenum SwizzleR[viewport::MAX]; GLenum SwizzleG[viewport::MAX]; GLenum SwizzleB[viewport::MAX]; GLenum SwizzleA[viewport::MAX]; glm::ivec4 Viewport[viewport::MAX]; }//namespace bool initDebugOutput() { bool Validated(true); glEnable(GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB); glDebugMessageControlARB(GL_DONT_CARE, GL_DONT_CARE, GL_DONT_CARE, 0, NULL, GL_TRUE); glDebugMessageCallbackARB(&glf::debugOutput, NULL); return Validated; } bool initProgram() { bool Validated = true; // Create program if(Validated) { GLuint VertShaderName = glf::createShader(GL_VERTEX_SHADER, glf::DATA_DIRECTORY + VERTEX_SHADER_SOURCE); GLuint FragShaderName = glf::createShader(GL_FRAGMENT_SHADER, glf::DATA_DIRECTORY + FRAGMENT_SHADER_SOURCE); Validated = Validated && glf::checkShader(VertShaderName, VERTEX_SHADER_SOURCE); Validated = Validated && glf::checkShader(FragShaderName, FRAGMENT_SHADER_SOURCE); ProgramName = glCreateProgram(); glAttachShader(ProgramName, VertShaderName); glAttachShader(ProgramName, FragShaderName); glDeleteShader(VertShaderName); glDeleteShader(FragShaderName); glLinkProgram(ProgramName); Validated = Validated && glf::checkProgram(ProgramName); } if(Validated) { UniformMVP = glGetUniformLocation(ProgramName, "MVP"); UniformDiffuse = glGetUniformLocation(ProgramName, "Diffuse"); } return Validated && glf::checkError("initProgram"); } bool initVertexBuffer() { glGenBuffers(BUFFER_MAX, BufferName); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, BufferName[BUFFER_ELEMENT]); glBufferData(GL_ELEMENT_ARRAY_BUFFER, ElementSize, ElementData, GL_STATIC_DRAW); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0); glBindBuffer(GL_ARRAY_BUFFER, BufferName[BUFFER_VERTEX]); glBufferData(GL_ARRAY_BUFFER, VertexSize, VertexData, GL_STATIC_DRAW); glBindBuffer(GL_ARRAY_BUFFER, 0); return glf::checkError("initArrayBuffer"); } bool initTexture2D() { glGenTextures(1, &Image2DName); glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_2D, Image2DName); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_BASE_LEVEL, 0); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 1000); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SWIZZLE_R, GL_RED); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SWIZZLE_G, GL_GREEN); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SWIZZLE_B, GL_BLUE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SWIZZLE_A, GL_ALPHA); gli::texture2D Texture(gli::loadStorageDDS(glf::DATA_DIRECTORY + TEXTURE_DIFFUSE_DXT5)); for(std::size_t Level = 0; Level < Texture.levels(); ++Level) { glCompressedTexImage2D( GL_TEXTURE_2D, GLint(Level), GL_COMPRESSED_RGBA_S3TC_DXT5_EXT, GLsizei(Texture[Level].dimensions().x), GLsizei(Texture[Level].dimensions().y), 0, GLsizei(Texture[Level].size()), Texture[Level].data()); } return glf::checkError("initTexture2D"); } bool initVertexArray() { glGenVertexArrays(1, &VertexArrayName); glBindVertexArray(VertexArrayName); glBindBuffer(GL_ARRAY_BUFFER, BufferName[BUFFER_VERTEX]); glVertexAttribPointer(glf::semantic::attr::POSITION, 2, GL_FLOAT, GL_FALSE, sizeof(glf::vertex_v2fv2f), GLF_BUFFER_OFFSET(0)); glVertexAttribPointer(glf::semantic::attr::TEXCOORD, 2, GL_FLOAT, GL_FALSE, sizeof(glf::vertex_v2fv2f), GLF_BUFFER_OFFSET(sizeof(glm::vec2))); glEnableVertexAttribArray(glf::semantic::attr::POSITION); glEnableVertexAttribArray(glf::semantic::attr::TEXCOORD); glBindVertexArray(0); return glf::checkError("initVertexArray"); } bool initSampler() { glGenSamplers(1, &SamplerName); glSamplerParameteri(SamplerName, GL_TEXTURE_MIN_FILTER, GL_NEAREST); glSamplerParameteri(SamplerName, GL_TEXTURE_MAG_FILTER, GL_NEAREST); glSamplerParameteri(SamplerName, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); glSamplerParameteri(SamplerName, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); glSamplerParameteri(SamplerName, GL_TEXTURE_WRAP_R, GL_CLAMP_TO_EDGE); glSamplerParameterfv(SamplerName, GL_TEXTURE_BORDER_COLOR, &glm::vec4(0.0f)[0]); glSamplerParameterf(SamplerName, GL_TEXTURE_MIN_LOD, -1000.f); glSamplerParameterf(SamplerName, GL_TEXTURE_MAX_LOD, 1000.f); glSamplerParameterf(SamplerName, GL_TEXTURE_LOD_BIAS, 0.0f); glSamplerParameteri(SamplerName, GL_TEXTURE_COMPARE_MODE, GL_NONE); glSamplerParameteri(SamplerName, GL_TEXTURE_COMPARE_FUNC, GL_LEQUAL); return glf::checkError("initSampler"); } bool begin() { bool Validated = glf::checkGLVersion(SAMPLE_MAJOR_VERSION, SAMPLE_MINOR_VERSION); if(Validated && glf::checkExtension("GL_ARB_debug_output")) Validated = initDebugOutput(); if(Validated) Validated = initProgram(); if(Validated) Validated = initVertexBuffer(); if(Validated) Validated = initVertexArray(); if(Validated) Validated = initTexture2D(); if(Validated) Validated = initSampler(); return Validated && glf::checkError("begin"); } bool end() { glDeleteBuffers(BUFFER_MAX, BufferName); glDeleteProgram(ProgramName); glDeleteTextures(1, &Image2DName); glDeleteSamplers(1, &SamplerName); glDeleteVertexArrays(1, &VertexArrayName); glDeleteSamplers(1, &SamplerName); return glf::checkError("end"); } void display() { glm::mat4 Projection = glm::perspective(45.0f, 4.0f / 3.0f, 0.1f, 1000.0f); glm::mat4 ViewTranslate = glm::translate(glm::mat4(1.0f), glm::vec3(0.0f, 0.0f, -Window.TranlationCurrent.y)); glm::mat4 ViewRotateX = glm::rotate(ViewTranslate, Window.RotationCurrent.y, glm::vec3(1.f, 0.f, 0.f)); glm::mat4 View = glm::rotate(ViewRotateX, Window.RotationCurrent.x, glm::vec3(0.f, 1.f, 0.f)); glm::mat4 Model = glm::mat4(1.0f); glm::mat4 MVP = Projection * View * Model; glViewport(0, 0, Window.Size.x, Window.Size.y); glClearBufferfv(GL_COLOR, 0, &glm::vec4(1.0f, 0.5f, 0.0f, 1.0f)[0]); glUseProgram(ProgramName); glUniformMatrix4fv(UniformMVP, 1, GL_FALSE, &MVP[0][0]); glUniform1i(UniformDiffuse, 0); glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_2D, Image2DName); glBindSampler(0, SamplerName); glBindVertexArray(VertexArrayName); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, BufferName[BUFFER_ELEMENT]); glDrawElementsInstancedBaseVertex(GL_TRIANGLES, ElementCount, GL_UNSIGNED_SHORT, NULL, 1, 0); glf::checkError("display"); glf::swapBuffers(); } int main(int argc, char* argv[]) { return glf::run( argc, argv, glm::ivec2(::SAMPLE_SIZE_WIDTH, ::SAMPLE_SIZE_HEIGHT), GLF_CONTEXT_CORE_PROFILE_BIT, ::SAMPLE_MAJOR_VERSION, ::SAMPLE_MINOR_VERSION); }
[ "mikesart@gmail.com" ]
mikesart@gmail.com
bf1b279adaf809ebc1031159e9d591b5bc7073ee
adac3837d0242936ee697daa7dc2a8ffdf4da08b
/examples/NDDSQuoter/withWaitsetListenerFiltering/Quoter_subscriber.cxx
f323bf73e04a7c2223f86525524eb0b9ed686ab1
[]
no_license
DOCGroup/DDS_Test
7fb89d13df0b3fc775f794212b58aa3550620eec
1f82d597f35ea74d46784e27c8b9bae78370c9fc
refs/heads/master
2023-07-22T20:43:17.811097
2008-10-23T17:37:34
2008-10-23T17:37:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,305
cxx
/* Quoter_subscriber.cxx A subscription example This file is derived from code automatically generated by the nddsgen command: nddsgen -language C++ -example <arch> Quoter.idl Example subscription of type Quoter automatically generated by 'nddsgen'. To test them follow these steps: (1) Compile this file and the example publication. (2) Start the subscription on the same domain used for RTI Data Distribution Service with the command objs/<arch>/Quoter_subscriber <domain_id> <sample_count> (3) Start the publication on the same domain used for RTI Data Distribution with the command objs/<arch>/Quoter_publisher <domain_id> <sample_count> (4) [Optional] Specify the list of discovery initial peers and multicast receive addresses via an environment variable or a file (in the current working directory) called NDDS_DISCOVERY_PEERS. You can run any number of publishers and subscribers programs, and can add and remove them dynamically from the domain. Example: To run the example application on domain <domain_id>: On Unix: objs/<arch>/Quoter_publisher <domain_id> objs/<arch>/Quoter_subscriber <domain_id> On Windows: objs\<arch>\Quoter_publisher <domain_id> objs\<arch>\Quoter_subscriber <domain_id> modification history ------------ ------- */ #include <stdio.h> #include <stdlib.h> #include "ndds/ndds_cpp.h" #include "Quoter.h" #include "QuoterSupport.h" class QuoterListener : public DDSDataReaderListener { public: virtual void on_requested_deadline_missed( DDSDataReader* /*reader*/, const DDS_RequestedDeadlineMissedStatus& /*status*/) {} virtual void on_requested_incompatible_qos( DDSDataReader* /*reader*/, const DDS_RequestedIncompatibleQosStatus& /*status*/) {} virtual void on_sample_rejected( DDSDataReader* /*reader*/, const DDS_SampleRejectedStatus& /*status*/) {} virtual void on_liveliness_changed( DDSDataReader* /*reader*/, const DDS_LivelinessChangedStatus& /*status*/) {} virtual void on_sample_lost( DDSDataReader* /*reader*/, const DDS_SampleLostStatus& /*status*/) {} virtual void on_subscription_matched( DDSDataReader* /*reader*/, const DDS_SubscriptionMatchedStatus& /*status*/) {} virtual void on_data_available(DDSDataReader* reader); }; void QuoterListener::on_data_available(DDSDataReader* reader) { QuoterDataReader *Quoter_reader = NULL; QuoterSeq data_seq; DDS_SampleInfoSeq info_seq; DDS_ReturnCode_t retcode; int i; Quoter_reader = QuoterDataReader::narrow(reader); if (Quoter_reader == NULL) { printf("DataReader narrow error\n"); return; } retcode = Quoter_reader->take( data_seq, info_seq, DDS_LENGTH_UNLIMITED, DDS_ANY_SAMPLE_STATE, DDS_ANY_VIEW_STATE, DDS_ANY_INSTANCE_STATE); if (retcode == DDS_RETCODE_NO_DATA) { return; } else if (retcode != DDS_RETCODE_OK) { printf("take error %d\n", retcode); return; } for (i = 0; i < data_seq.length(); ++i) { if (info_seq[i].valid_data) { QuoterTypeSupport::print_data(&data_seq[i]); } } retcode = Quoter_reader->return_loan(data_seq, info_seq); if (retcode != DDS_RETCODE_OK) { printf("return loan error %d\n", retcode); } } /* Delete all entities */ static int subscriber_shutdown( DDSDomainParticipant *participant) { DDS_ReturnCode_t retcode; int status = 0; if (participant != NULL) { retcode = participant->delete_contained_entities(); if (retcode != DDS_RETCODE_OK) { printf("delete_contained_entities error %d\n", retcode); status = -1; } retcode = DDSTheParticipantFactory->delete_participant(participant); if (retcode != DDS_RETCODE_OK) { printf("delete_participant error %d\n", retcode); status = -1; } } /* RTI Data Distribution Service provides finalize_instance() method for people who want to release memory used by the participant factory singleton. Uncomment the following block of code for clean destruction of the participant factory singleton. */ /* retcode = DDSDomainParticipantFactory::finalize_instance(); if (retcode != DDS_RETCODE_OK) { printf("finalize_instance error %d\n", retcode); status = -1; } */ return status; } extern "C" int subscriber_main(int domainId, int sample_count) { DDSDomainParticipant *participant = NULL; DDSSubscriber *subscriber = NULL; DDSTopic *topic = NULL; QuoterListener *reader_listener = NULL; DDSDataReader *reader = NULL; DDS_ReturnCode_t retcode; const char *type_name = NULL; int count = 0; struct DDS_Duration_t receive_period = {4,0}; int status = 0; /* To customize participant QoS, use DDSTheParticipantFactory->get_default_participant_qos() instead */ participant = DDSTheParticipantFactory->create_participant( domainId, DDS_PARTICIPANT_QOS_DEFAULT, NULL /* listener */, DDS_STATUS_MASK_NONE); if (participant == NULL) { printf("create_participant error\n"); subscriber_shutdown(participant); return -1; } /* To customize subscriber QoS, use participant->get_default_subscriber_qos() instead */ subscriber = participant->create_subscriber( DDS_SUBSCRIBER_QOS_DEFAULT, NULL /* listener */, DDS_STATUS_MASK_NONE); if (subscriber == NULL) { printf("create_subscriber error\n"); subscriber_shutdown(participant); return -1; } /* Register type before creating topic */ type_name = QuoterTypeSupport::get_type_name(); retcode = QuoterTypeSupport::register_type( participant, type_name); if (retcode != DDS_RETCODE_OK) { printf("register_type error %d\n", retcode); subscriber_shutdown(participant); return -1; } /* To customize topic QoS, use participant->get_default_topic_qos() instead */ topic = participant->create_topic( "Example Quoter", type_name, DDS_TOPIC_QOS_DEFAULT, NULL /* listener */, DDS_STATUS_MASK_NONE); if (topic == NULL) { printf("create_topic error\n"); subscriber_shutdown(participant); return -1; } /* Create data reader listener */ reader_listener = new QuoterListener(); if (reader_listener == NULL) { printf("listener instantiation error\n"); subscriber_shutdown(participant); return -1; } /* To customize data reader QoS, use subscriber->get_default_datareader_qos() instead */ reader = subscriber->create_datareader( topic, DDS_DATAREADER_QOS_DEFAULT, reader_listener, DDS_STATUS_MASK_ALL); if (reader == NULL) { printf("create_datareader error\n"); subscriber_shutdown(participant); delete reader_listener; return -1; } /* Main loop */ for (count=0; (sample_count == 0) || (count < sample_count); ++count) { printf("Quoter subscriber sleeping for %d sec...\n", receive_period.sec); NDDSUtility::sleep(receive_period); } /* Delete all entities */ status = subscriber_shutdown(participant); delete reader_listener; return status; } #if !defined(RTI_VXWORKS) && !defined(RTI_PSOS) int main(int argc, char *argv[]) { int domainId = 0; int sample_count = 0; /* infinite loop */ if (argc >= 2) { domainId = atoi(argv[1]); } if (argc >= 3) { sample_count = atoi(argv[2]); } /* Uncomment this to turn on additional logging NDDSConfigLogger::get_instance()-> set_verbosity_by_category(NDDS_CONFIG_LOG_CATEGORY_API, NDDS_CONFIG_LOG_VERBOSITY_STATUS_ALL); */ return subscriber_main(domainId, sample_count); } #endif
[ "mxiong@b83e41e9-5108-4780-9bb0-1723f710b6d8" ]
mxiong@b83e41e9-5108-4780-9bb0-1723f710b6d8
4838c147a4a50cc2351aaf299de6891427ede852
2482d7f225d0e2a30fd86fc884d1b09f0f709a67
/source/interface/test_interface.cpp
9b2ec4798b1ced558331329a33bd32fea3d88d82
[]
no_license
EduardGomezEscandell/ConsoleChess
0f194683b6e6aad16d562077bbf9b132c999d639
bc2a2ef7e262b320633f4120b2ec0a8597f55b93
refs/heads/master
2023-04-27T13:13:18.258816
2021-05-10T17:01:38
2021-05-10T17:01:38
356,655,820
0
0
null
null
null
null
UTF-8
C++
false
false
174
cpp
#include "test_interface.h" #include "interface.h" #include <string> namespace ConsoleChess { namespace InterfaceTests { } CHESS_TEST_LIST(InterfaceTestSuite) { } }
[ "eduard.gomez.escandell@gmail.com" ]
eduard.gomez.escandell@gmail.com
e4fdacdc8682fac4e3087b7c99df757a5178d864
879fc5574b6dd2c683b4c12e39ba51e44e6dc942
/src/lib/utils/backend.h
74614be26fad9b92dd9593069e53f8027dee0b7d
[ "MIT" ]
permissive
carlzhangweiwen/gazelle_mpc
a48072cf296dd106ee0dd8d010e728d579f2f522
45818ccf6375100a8fe2680f44f37d713380aa5c
refs/heads/master
2020-09-24T13:38:33.186719
2019-12-06T02:15:48
2019-12-06T02:15:48
225,770,500
0
0
MIT
2019-12-04T03:25:50
2019-12-04T03:25:49
null
UTF-8
C++
false
false
766
h
/* * backend.h * * Created on: Aug 25, 2017 * Author: chiraag * */ #ifndef LBCRYPTO_MATH_BACKEND_H #define LBCRYPTO_MATH_BACKEND_H #include <inttypes.h> #include <vector> /** * @namespace lbcrypto * The namespace of lbcrypto */ namespace lbcrypto { typedef int32_t si32; typedef uint32_t ui32; typedef int64_t si64; typedef uint64_t ui64; typedef __uint128_t ui128; typedef std::vector<si32> sv32; typedef std::vector<ui32> uv32; typedef std::vector<si64> sv64; typedef std::vector<ui64> uv64; typedef std::vector<ui128> uv128; /** * @brief Lists all modes for RLWE schemes, such as BGV and FV */ enum MODE { RLWE = 0, OPTIMIZED = 1 }; } // namespace lbcrypto ends #endif
[ "chiraag@mit.edu" ]
chiraag@mit.edu
77d47c8ccd8865c7a0dc50055b658e4de84bd1da
dffec5fe339883a8b84be0122eef6a3c64a4fa07
/src/ctrl/progressbar.cpp
bb67bf6339b1b1ceb1d34dd8e1eb37915dee8cc0
[]
no_license
ongbe/Memmon
0e346b161c9b6538f6135eb87a60c14648de7e27
6bfbc6158a9b6d0d39ff4795a47501071855454f
refs/heads/master
2021-01-18T14:29:45.299538
2013-02-17T14:51:01
2013-02-17T14:51:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,690
cpp
#include "progressbar.h" #include <QDebug> ProgressBar::ProgressBar(QWidget *parent) : QWidget(parent) { _min = 0; _max = 100; _value = 0; _textAlignment = PB::Center; setFixedHeight(PB::Constant::Height); } /// /// /// void ProgressBar::paintEvent(QPaintEvent *) { QPainter painter(this); painter.setRenderHints(QPainter::Antialiasing); drawBackground(&painter); drawForeground(&painter); drawText(&painter); } void ProgressBar::drawBackground(QPainter *painter) { painter->save(); setupBrush(painter,PB::Color::Normal_Start,PB::Color::Normal_Middle,PB::Color::Normal_Stop); painter->drawRoundedRect(rect(),PB::Constant::RoundRadius,PB::Constant::RoundRadius); painter->restore(); } void ProgressBar::drawForeground(QPainter *painter) { qreal xPos = (qreal)_value/(_max - _min) * width(); qDebug() << xPos; QRectF theRect(rect().topLeft(),QPointF(xPos,height())); painter->save(); setupBrush(painter,PB::Color::Busy_Start,PB::Color::Busy_Middle,PB::Color::Busy_Stop); painter->drawRoundedRect(theRect,PB::Constant::RoundRadius,PB::Constant::RoundRadius); painter->restore(); } void ProgressBar::drawText(QPainter *painter) { painter->save(); QFont textFont; textFont.setBold(true); painter->setFont(textFont); QRectF textRect(QPointF(PB::Constant::TextExtraSpace,0),QPointF(width() - PB::Constant::TextExtraSpace,height())); switch(_textAlignment) { case PB::Left: painter->drawText(textRect,tr("%1%").arg(_value),Qt::AlignLeft|Qt::AlignVCenter); break; case PB::Center: painter->drawText(textRect,tr("%1%").arg(_value),Qt::AlignVCenter|Qt::AlignHCenter); break; case PB::Right: painter->drawText(textRect,tr("%1%").arg(_value),Qt::AlignRight|Qt::AlignVCenter); break; } painter->restore(); } void ProgressBar::setupBrush(QPainter *painter, const QColor &startColor, const QColor &middleColor, const QColor &stopColor) { painter->setPen(Qt::NoPen); QLinearGradient bgGradient(rect().topLeft(),rect().bottomLeft()); bgGradient.setColorAt(0.0,startColor); bgGradient.setColorAt(0.2,middleColor); bgGradient.setColorAt(1.0,stopColor); painter->setBrush(bgGradient); } /// /// private utility functions /// /// /// public interfaces /// void ProgressBar::setRange(int min,int max) { _min = min; _max = max; update(); } void ProgressBar::setValue(int value) { _value = value; update(); } int ProgressBar::value() const { return _value; } int ProgressBar::minimum() const { return _min; } int ProgressBar::maximum() const { return _max; }
[ "Administrator@PC-20121115RAMD.(none)" ]
Administrator@PC-20121115RAMD.(none)
9d91889b0075d886e8e08db32e92a906277019c6
0e986df223a073666515642a57c36a8fc426c535
/pizjuce/midiChords/JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h
6e9cc6d05fca75ce65a8e34f9e2c69b528ecec2a
[]
no_license
CptanPanic/pizmidi
49878f9312bce3f64cc51ee55092103db57acde7
9daf55ceff5d146dbbcc44ae6e78aea137598ebe
refs/heads/master
2021-01-19T15:38:55.441104
2015-03-24T15:36:58
2015-03-24T15:36:58
32,807,602
2
0
null
null
null
null
UTF-8
C++
false
false
4,999
h
/* ============================================================================== This file is part of the JUCE library - "Jules' Utility Class Extensions" Copyright 2004-11 by Raw Material Software Ltd. ------------------------------------------------------------------------------ JUCE can be redistributed and/or modified under the terms of the GNU General Public License (Version 2), as published by the Free Software Foundation. A copy of the license is included in the JUCE distribution, or can be found online at www.gnu.org/licenses. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. ------------------------------------------------------------------------------ To release a closed-source product which uses JUCE, commercial licenses are available: visit www.rawmaterialsoftware.com/juce for more information. ============================================================================== */ #ifndef __JUCE_STANDARDHEADER_JUCEHEADER__ #define __JUCE_STANDARDHEADER_JUCEHEADER__ //============================================================================== /** Current JUCE version number. See also SystemStats::getJUCEVersion() for a string version. */ #define JUCE_MAJOR_VERSION 2 #define JUCE_MINOR_VERSION 0 #define JUCE_BUILDNUMBER 25 /** Current Juce version number. Bits 16 to 32 = major version. Bits 8 to 16 = minor version. Bits 0 to 8 = point release. See also SystemStats::getJUCEVersion() for a string version. */ #define JUCE_VERSION ((JUCE_MAJOR_VERSION << 16) + (JUCE_MINOR_VERSION << 8) + JUCE_BUILDNUMBER) //============================================================================== #include "juce_TargetPlatform.h" // (sets up the various JUCE_WINDOWS, JUCE_MAC, etc flags) #include "juce_PlatformDefs.h" //============================================================================== // Now we'll include some common OS headers.. #if JUCE_MSVC #pragma warning (push) #pragma warning (disable: 4514 4245 4100) #endif #include <cstdlib> #include <cstdarg> #include <climits> #include <limits> #include <cmath> #include <cwchar> #include <stdexcept> #include <typeinfo> #include <cstring> #include <cstdio> #include <iostream> #include <vector> #if JUCE_USE_INTRINSICS #include <intrin.h> #endif #if JUCE_MAC || JUCE_IOS #include <libkern/OSAtomic.h> #endif #if JUCE_LINUX #include <signal.h> #if __INTEL_COMPILER #if __ia64__ #include <ia64intrin.h> #else #include <ia32intrin.h> #endif #endif #endif #if JUCE_MSVC && JUCE_DEBUG #include <crtdbg.h> #endif #if JUCE_MSVC #pragma warning (pop) #endif #if JUCE_ANDROID #include <sys/atomics.h> #include <byteswap.h> #endif // undef symbols that are sometimes set by misguided 3rd-party headers.. #undef check #undef TYPE_BOOL #undef max #undef min //============================================================================== // DLL building settings on Windows #if JUCE_MSVC #ifdef JUCE_DLL_BUILD #define JUCE_API __declspec (dllexport) #pragma warning (disable: 4251) #elif defined (JUCE_DLL) #define JUCE_API __declspec (dllimport) #pragma warning (disable: 4251) #endif #ifdef __INTEL_COMPILER #pragma warning (disable: 1125) // (virtual override warning) #endif #elif defined (__GNUC__) && ((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) #ifdef JUCE_DLL_BUILD #define JUCE_API __attribute__ ((visibility("default"))) #endif #endif //============================================================================== #ifndef JUCE_API #define JUCE_API /**< This macro is added to all juce public class declarations. */ #endif /** This macro is added to all juce public function declarations. */ #define JUCE_PUBLIC_FUNCTION JUCE_API JUCE_CALLTYPE #if (! defined (JUCE_CATCH_DEPRECATED_CODE_MISUSE)) && JUCE_DEBUG && ! DOXYGEN /** This turns on some non-essential bits of code that should prevent old code from compiling in cases where method signatures have changed, etc. */ #define JUCE_CATCH_DEPRECATED_CODE_MISUSE 1 #endif #ifndef DOXYGEN #define JUCE_NAMESPACE juce // This old macro is deprecated: you should just use the juce namespace directly. #endif //============================================================================== // Now include some common headers... namespace juce { extern JUCE_API bool JUCE_CALLTYPE juce_isRunningUnderDebugger(); #if JUCE_LOG_ASSERTIONS extern JUCE_API void logAssertion (const char* file, int line) noexcept; #endif #include "../memory/juce_Memory.h" #include "../maths/juce_MathsFunctions.h" #include "../memory/juce_ByteOrder.h" #include "../logging/juce_Logger.h" #include "../memory/juce_LeakedObjectDetector.h" } #endif // __JUCE_STANDARDHEADER_JUCEHEADER__
[ "reuben.vinal@gmail.com" ]
reuben.vinal@gmail.com
124fcd2a19117f3add7bcf80ca7db68e83e38e68
4296ad62fc2d1c0111af5e9c9ef5b8336256674e
/src/typicalDP/d.cpp
b39f69da7bdb31105a64eb43968a10eeaf5730df
[]
no_license
emakryo/cmpro
8aa50db1d84fb85e515546f37e675121be9de5c2
81db478cc7da06a9b99a7888e39952ddb82cdbe5
refs/heads/master
2023-02-09T12:36:47.893287
2023-01-23T12:07:03
2023-01-23T12:07:03
79,899,196
0
0
null
null
null
null
UTF-8
C++
false
false
1,904
cpp
#include<bits/stdc++.h> using namespace std; typedef long long ll; template<typename T> ostream& operator<<(ostream &os, vector<T> &v){ string sep = " "; if(v.size()) os << v[0]; for(int i=1; i<v.size(); i++) os << sep << v[i]; return os; } template<typename T> istream& operator>>(istream &is, vector<T> &v){ for(int i=0; i<v.size(); i++) is >> v[i]; return is; } #ifdef DBG void debug_(){ cout << endl; } template<typename T, typename... Args> void debug_(T&& x, Args&&... xs){ cout << x << " "; debug_(forward<Args>(xs)...); } #define dbg(...) debug_(__VA_ARGS__) #else #define dbg(...) #endif int main() { ios_base::sync_with_stdio(false); cout << setprecision(20) << fixed; int n; ll d; cin >> n >> d; map<int, int> cnt; for(int p: {2, 3, 5}){ while(d%p==0){ cnt[p]++; d /= p; } } if(d>1){ cout << 0 << endl; return 0; } vector<vector<vector<double>>> dp(201, vector<vector<double>>(101, vector<double>(101))); vector<vector<vector<double>>> next(201, vector<vector<double>>(101, vector<double>(101))); dp[0][0][0] = 1; for(int i=0; i<n; i++){ for(int j2=0; j2<201; j2++) for(int j3=0; j3<101; j3++) for(int j5=0; j5<101; j5++){ next[j2][j3][j5] = dp[j2][j3][j5]; } for(int j2=0; j2<201; j2++) for(int j3=0; j3<101; j3++) for(int j5=0; j5<101; j5++){ if(j2+1<201) next[j2+1][j3][j5] += dp[j2][j3][j5]; if(j3+1<101) next[j2][j3+1][j5] += dp[j2][j3][j5]; if(j2+2<201) next[j2+2][j3][j5] += dp[j2][j3][j5]; if(j5+1<101) next[j2][j3][j5+1] += dp[j2][j3][j5]; if(j2+1<201&&j3+1<101) next[j2+1][j3+1][j5] += dp[j2][j3][j5]; } swap(dp, next); } double ans = 0; int p2 = cnt[2]; int p3 = cnt[3]; int p5 = cnt[5]; for(int j2=0; j2<201; j2++) for(int j3=0; j3<101; j3++) for(int j5=0; j5<101; j5++){ if(j2>=p2 && j3>=p3 && j5>=p5) ans += dp[j2][j3][j5]; } for(int i=0; i<n; i++) ans /= 6; cout << ans << endl; return 0; }
[ "ryosuke.kamesawa@dena.jp" ]
ryosuke.kamesawa@dena.jp
00a2a46e1e62ab641983437bb1a246b48359fb1c
365affa0132d4a46af9aed84c472b2fe369a6be3
/src/TTPCUtils.cxx
8d0577c1a67bbe920c5ec25ebbdc37c47ebe9f3f
[]
no_license
davehadley/trex
be0f36a2c13201ed68e37be60e1e1fa487a1673c
6233fb6ab5e88a296b446744803522f879453995
refs/heads/master
2023-01-06T12:13:13.690164
2020-11-05T11:02:06
2020-11-05T11:02:06
308,296,749
0
0
null
null
null
null
UTF-8
C++
false
false
5,918
cxx
#include "TTPCUtils.hxx" #include "TTRExHVCluster.hxx" #include "TTPCHitPad.hxx" #include "TTPCLayout.hxx" namespace TTPCUtils { bool Curvature_to_MomentumAndCharge(const TVector3& pos, const TVector3& dir, double curv, double& p, double& q) { //***************************************************************************** trex::TTPCLayout layout; double B = layout.GetBField(); // project into the bending plane double factor = -(0.3 * B) / sqrt(1. - dir.X() * dir.X()); if (fabs(curv) > 0 && factor != 0) { p = fabs(factor / curv); q = -curv / fabs(curv); return true; } return false; } bool MomentumAndCharge_to_Curvature(const TVector3& pos, const TVector3& dir, double p, double q, double& curv){ trex::TTPCLayout layout; double B = layout.GetBField(); // project into the bending plane double factor = -(0.3*B)/sqrt(1.-dir.X()*dir.X()); if (p > 0){ curv = q*factor/fabs(p); return true; } return false; } //***************************************************************************** bool SafeSort( double first, double second ){ // Use int because I don't trust the ordering of doubles // since the bug 871 was discovered. // Millimeter precision is enough. return ( int(first) < int(second) ); } //***************************************************************************** int SenseFromTwoClusters(trex::TTRExPath& Path2, trex::TTRExHVCluster& ChosenClu){ //***************************************************************************** int sense = 0; if (Path2.GetClusters().size() < 2) return 0; trex::TTRExHVCluster* tmpClu; trex::TTRExHVCluster* tmprClu; trex::TTRExHVCluster* nextClu; auto Clu = Path2.GetClusters().begin(); auto rClu = Path2.GetClusters().rbegin(); tmpClu = *Clu; tmprClu = *rClu; if (&ChosenClu == tmpClu){ Clu++; nextClu = *Clu; } else if (&ChosenClu == tmprClu){ rClu++; nextClu = *rClu; } else { // PROBLEM. That will probably be a bigger problem outside of this function regardless of the sense. return 0; } // Find the crude track "sense" in z(y) when the first two clusters are vertical(horizontal). // If the first two clusters have different orientation, just use 0 and deal with it later. if ( ChosenClu.IsVertical() == nextClu->IsVertical()){ if (ChosenClu.IsVertical()){ sense = nextClu->Z() - ChosenClu.Z(); }else{ sense = nextClu->Y() - ChosenClu.Y(); } } return sense; } //***************************************************************************** void FindClosestEnds(trex::TTRExPath& PathA, trex::TTRExPath& PathB, unsigned int &EndA, unsigned int &EndB){ // TODO: Add check on the presence of clusters and use exception if not there. trex::TTRExHVCluster& FirstCluA = **(PathA.GetClusters().begin()); trex::TTRExHVCluster& LastCluA = **(PathA.GetClusters().rbegin()); trex::TTRExHVCluster& FirstCluB = **(PathB.GetClusters().begin()); trex::TTRExHVCluster& LastCluB = **(PathB.GetClusters().rbegin()); std::vector<double> Sorter; double FtFt = (FirstCluA.GetPosition() - FirstCluB.GetPosition()).Mag(); double FtLt = (FirstCluA.GetPosition() - LastCluB.GetPosition()).Mag(); double LtLt = (LastCluA.GetPosition() - LastCluB.GetPosition()).Mag(); double LtFt = (LastCluA.GetPosition() - FirstCluB.GetPosition()).Mag(); Sorter.push_back( FtFt ); Sorter.push_back( FtLt ); Sorter.push_back( LtLt ); Sorter.push_back( LtFt ); std::stable_sort(Sorter.begin(), Sorter.end(), TTPCUtils::SafeSort); double MinDist = *(Sorter.begin()); if (MinDist == FtFt || MinDist == FtLt){ EndA = 0; } else { EndA = 1; } if (MinDist == FtFt || MinDist == LtFt){ EndB = 0; } else { EndB = 1; } } //***************************************************************************** trex::TTRExPath* MergePaths(trex::TTRExPath& PathA, trex::TTRExPath& PathB){ //MDH TODO: Warning - we are creating a path here. trex::TTRExPath* newPath = new trex::TTRExPath(); // Create a new path putting in the clusters from the two matched paths. // BE CAREFUL with the ordering of the clusters ! unsigned int UseEndA, UseEndB; FindClosestEnds(PathA, PathB, UseEndA, UseEndB); std::vector<trex::TTRExHVCluster*>& newClusters = newPath->GetClusters(); if (UseEndA == 1){ std::vector<trex::TTRExHVCluster*>& clusters = PathA.GetClusters(); newClusters = clusters; if (UseEndB == 0 ){ for (auto hit = PathB.GetClusters().begin(); hit != PathB.GetClusters().end(); ++hit) newClusters.push_back(*hit); } else { for (auto hit = PathB.GetClusters().rbegin(); hit != PathB.GetClusters().rend(); ++hit) newClusters.push_back(*hit); } } else { if (UseEndB == 1 ){ std::vector<trex::TTRExHVCluster*>& clusters = PathB.GetClusters(); newClusters = clusters; for (auto hit = PathA.GetClusters().begin(); hit != PathA.GetClusters().end(); ++hit) newClusters.push_back(*hit); } else { for (auto hit = PathB.GetClusters().rbegin(); hit != PathB.GetClusters().rend(); ++hit) newClusters.push_back(*hit); for (auto hit = PathA.GetClusters().begin(); hit != PathA.GetClusters().end(); ++hit) newClusters.push_back(*hit); } } // newPath->SetClusters(newClusters); //MDH TODO: Manage IDs properly (do we use them for anything?) //newPath->SetId(ND::tpcCalibration().GetPathId()); return newPath; } void ReverseStateSenseAndCharge(std::vector<double>& propagState){ //Velocity components propagState[3]*=-1; propagState[4]*=-1; propagState[5]*=-1; //Charge propagState[6]*=-1; } }
[ "phsmaj@soulor.epp.warwick.ac.uk" ]
phsmaj@soulor.epp.warwick.ac.uk
bedc2f4e206df80c8622c4911fe7de41242965dc
f5196fa9f8b1b4eba4c495fde6b2b8b90f39b92f
/libraries/Robot_Control/src/helper.cpp
181c656831f96bcdef737abd7756512072635749
[]
no_license
ArduWellBeingBot/Robot
874c07cf50cee8ecc10b7453ef4ff018dc99153c
0c96730661c72fc75b7cdd6a370f0ce7ed64868c
refs/heads/master
2021-01-01T19:11:17.193528
2014-05-21T21:14:43
2014-05-21T21:14:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,005
cpp
#include "ArduinoRobot.h" void RobotControl::drawBase(){ Arduino_LCD::drawCircle(64,80,50,foreGround); Arduino_LCD::drawLine(64,30,64,20,foreGround); } void RobotControl::drawDire(int16_t dire){ static uint8_t x_old; static uint8_t y_old; static uint8_t x_t_old; static uint8_t y_t_old; uint8_t x=60*sin(dire/360.0*6.28)+64; uint8_t x_t=40*sin(dire/360.0*6.28)+64; uint8_t y=60*cos(dire/360.0*6.28)+80; uint8_t y_t=40*cos(dire/360.0*6.28)+80; Arduino_LCD::drawLine(x_t_old,y_t_old,x_old,y_old,backGround); Arduino_LCD::drawLine(x_t,y_t,x,y,RED); x_old=x; y_old=y; x_t_old=x_t; y_t_old=y_t; } void RobotControl::drawCompass(uint16_t value){ /* drawBase(); drawDire(value); debugPrint(value,57,76);*/ } //display logos void RobotControl::displayLogos(){ /* _drawBMP("lg0.bmp",0,0); delay(2000); _drawBMP("lg1.bmp",0,0); delay(2000); clearScreen();*/ } //wait for a button to be pressed void RobotControl::waitContinue(uint8_t key){ while(!(Robot.keyboardRead()==key)); }
[ "fbrodziak@free.fr" ]
fbrodziak@free.fr
8f208297f65a3f936c0dc94db4107833a64add10
61255bb7724c45ff555497114fdd12941e5df6c9
/Contest/Cuarentena de entrenamiento/Contest 01/B.cpp
aaed4a79c56d5a6ed35926fd04331b4a60ff7c52
[]
no_license
eerick1997/Club
ddcc0a9d3706bb43723718079441fa227b61ea42
5ea13c3a22fafa82751fab25be5cb7f472fa5856
refs/heads/master
2021-11-24T00:17:42.270738
2021-10-28T02:12:40
2021-10-28T02:12:40
164,712,369
3
0
null
null
null
null
UTF-8
C++
false
false
554
cpp
#include <bits/stdc++.h> using namespace std; using lli = long long int; set< lli > number_list; int main(){ ios::sync_with_stdio( false ); cout.tie( nullptr ); cin.tie( nullptr ); lli N; string Xi; cin >> N; for( lli i = 0; i < N; i++ ){ cin >> Xi; if( Xi.size() <= 7 ) number_list.insert( stoll( Xi ) ); } for( lli i = 0; i < 1000001; i++ ){ if( number_list.find( i ) == number_list.end() ){ cout << i << endl; return 0; } } return 0; }
[ "vargas.erick030997@gmail.com" ]
vargas.erick030997@gmail.com
0382c62a019afcf87b820a3a336c1f82a4d05c44
1203005699cf0b765ce1a4ff8487081a7c16b76d
/programming/88.合并两个有序数组.cpp
2da76410b0780d274d86eb5848db90a50c558380
[]
no_license
tuduweb/LeetCode
7192a0b888f89affb6c85d47847c14ed671d9bf6
1c1084ed016eae80eea67f97a72ee8b7635f8f5b
refs/heads/master
2022-10-22T23:48:27.749888
2022-10-12T14:52:53
2022-10-12T14:52:53
195,778,647
0
0
null
null
null
null
UTF-8
C++
false
false
710
cpp
/* * @lc app=leetcode.cn id=88 lang=cpp * * [88] 合并两个有序数组 */ class Solution { public: void merge(vector<int>& nums1, int m, vector<int>& nums2, int n) { #if 1 /** * √ Accepted √ 59/59 cases passed (4 ms) √ Your runtime beats 99.06 % of cpp submissions √ Your memory usage beats 88.49 % of cpp submissions (8.6 MB) */ //倒序合并. int pos = m + n - 1, i = m - 1, j = n - 1; while(j >= 0)//需要把nums2(j)中的元素全部放到nums1中. { nums1[pos--] = (i >= 0 && nums1[i] > nums2[j]) ? nums1[i--] : nums2[j--]; } #endif } };
[ "tuduweb@qq.com" ]
tuduweb@qq.com
e3a984e3b822d86af7b4ec04b064105f0f18c03a
a1b3263ec03b59e81cac8cea0fa682ccf3ef4e7e
/libseq64/include/daemonize.hpp
8d14de8adc4f1b71139faf30f5dc818e46a99736
[]
no_license
jean-emmanuel/sequencer64
1bb07c95220cfc8c5a66d10b3ffc3fb6080bdc0d
da7d0341bdec1b7d94e265aa1063eb48619f3330
refs/heads/master
2021-01-20T16:55:41.343642
2017-05-07T17:02:29
2017-05-07T17:02:29
90,858,546
2
0
null
2017-05-10T11:51:12
2017-05-10T11:51:12
null
UTF-8
C++
false
false
1,858
hpp
#ifndef SEQ64_DAEMONIZE_HPP #define SEQ64_DAEMONIZE_HPP /** * \file daemonize.hpp * \author Chris Ahlstrom * \date 2005-07-03 to 2007-08-21 (from xpc-suite project) * \updates 2017-04-22 * \license GNU GPLv2 or above * * Daemonization of POSIX C Wrapper (PSXC) library * Copyright (C) 2005-2017 by Chris Ahlstrom * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. * * This module provides a function to make it easy to run an application * as a daemon. */ #include <string> namespace seq64 { /* * Free functions. * These functions do a lot of the work of dealing with UNIX daemons. */ extern bool check_daemonize (int argc, char * argv []); extern uint32_t daemonize ( const std::string & appname, const std::string & cwd = ".", int mask = 0 ); extern void undaemonize (uint32_t previous_umask); extern std::string get_current_directory (); extern bool reroute_stdio ( const std::string & logfile = "", bool closem = false ); } // namespace seq64 #endif // SEQ64_DAEMONIZE_HPP /* * vim: ts=4 sw=4 et ft=cpp */
[ "ahlstromcj@gmail.com" ]
ahlstromcj@gmail.com
ac596d310e30042fd9874fe403f8f66b4a051956
800e60ddf28c65a990b4d599dcd279f43c84fafa
/gl02/data_types/MutableData.h
4e3716e9b976d238e14e8d17a035bd135ad966c8
[]
no_license
1179432578/gl02
d825a835621a3538472263fad7033825aa10f76c
a566530b744a41e4d0afb4833054b77615c31734
refs/heads/master
2020-12-24T20:33:11.843545
2016-06-03T08:12:10
2016-06-03T08:12:10
56,444,030
1
0
null
null
null
null
UTF-8
C++
false
false
2,731
h
// // MutableData.hpp // LImage // // Created by lewis on 16/4/19. // Copyright © 2016年 lewis. All rights reserved. // #ifndef MutableData_hpp #define MutableData_hpp #include <vector> using namespace std; //可变数据 存放的数据在它看来就是一个个字节 //存储的数据都是有符号的 //磁盘文件-》MutableData-》文件解析结构(psd bitmap png and so on) class MutableData { public: void appendChar(char c); //添加多个字符 void appendChars(char *buf, int length); //解析出多个字符 char* parseChars(int length); void appendShort(short s); short parseShort(); void appendInt(int n); int parseInt(); void appendString(char *string); char* parseString(); void appendFloat(float f); void appendDoubel(double d); void appendBytes(void *, int length); // 从磁盘读文件到内存中 void readFile(const char *filename); // 把内存数据写到磁盘文件中 void writeFile(const char *filename); void printChar(); void printHexadecimal(); //设置解析位置 inline void setPos(int _pos){pos = _pos;} //跳过length个位置 inline void skip(int length){pos += length;} private: vector<char> m_data; int pos = 0; }; #endif /* MutableData_hpp */ //mode: r r+ rb+ w w+ a a+ windows:文件 //1.在windows系统中,文本模式下,文件以"\r\n"代表换行。若以文本模式打开文件,并用fputs等函数写入换行符"\n"时,函数会自动在"\n"前面加上"\r"。即实际写入文件的是"\r\n" 。 //2.在类Unix/Linux系统中文本模式下,文件以"\n"代表换行。所以Linux系统中在文本模式和二进制模式下并无区别。 //FILE * fopen(const char * path,const char * mode); //size是数据项大小 count是数据项个数 返回写入的数据项个数 //size_t fwrite(const void* buffer, size_t size, size_t count, FILE* stream); //返回读的数据项个数 //size_t fread ( void *buffer, size_t size, size_t count, FILE *stream) ; //从文件流中格式化读取数据 //int fscanf(FILE*stream, const char*format, [argument...]); //数据格式化输出到输出流 //int fprintf( FILE *stream, const char *format, [ argument ]...) //把位置指针直到开头 //rewind函数作用等同于 (void)fseek(stream, 0L, SEEK_SET) //fromwhere是指偏移的起始位置, offset是偏移 //stream将指向以fromwhere(偏移起始位置:文件头0(SEEK_SET),当前位置1(SEEK_CUR),文件尾2(SEEK_END))为基准,偏移offset(指针偏移量)个字节的位置 //int fseek(FILE *stream, long offset, int fromwhere); //fclose(File *stream)
[ "lewis.lu@mochang.net" ]
lewis.lu@mochang.net
547efaab7be60c7b3b94db48baad5f6ecd8544bc
5cfcc3288a27ccbcd7951ecf2c37d16808188e17
/src/actors/Dot.cpp
cd285093bdb3955db567777a8162d20f5705ad3b
[]
no_license
Jshbrck/Pong
2da6fe9b3338a16dae0328c46f60e719cbc9f6d8
30d700b0a71c3c419874d67c83404556f3c4ee41
refs/heads/master
2020-03-24T09:02:24.852674
2018-07-28T05:00:23
2018-07-28T05:00:23
140,986,014
0
0
null
null
null
null
UTF-8
C++
false
false
838
cpp
#include "Dot.h" #include <primitives/allegro5/allegro_primitives.h> #include <math.h> Dot::Dot(){ this->radius = 1; this->speed = 1; setPos(10,10); setVelocity(1,-1); } Dot::Dot(float rad, float speed, float x, float y, float vx, float vy){ this->radius = rad; this->speed = speed; setPos(x,y); setVelocity(vx,vy); } void Dot::draw(){ al_draw_filled_circle(x,y,radius,al_map_rgb(255,255,255)); } void Dot::setPos(float x, float y){ this->x = x; this->y = y; } void Dot::move(float dt){ this->x += vx * dt; this->y += vy * dt; } void Dot::multiplyVelocity(float a, float b){ this->vx*=a; this->vy*=b; } void Dot::setVelocity(float nVX, float nVY){ float norm = sqrt(nVX*nVX + nVY*nVY); this->vx = this->speed * nVX/norm; this->vy = this->speed * nVY/norm; }
[ "jshbrck625@hotmail.com" ]
jshbrck625@hotmail.com
c926f112153463c052676378324bb1fea6c4511f
c4f18c1cbda8358a81e8d40ea75dca520ee3e0b0
/src/ray.cpp
ce8788206df5e3b6d2c660d3db28219522be19fe
[]
no_license
chloesnyder/CIS277_FinalProject_MiniMaya
0ea074fd2af45e82d67124dda162e6dded5816de
7c9226f59f5b90ba996f25da7fdd0fd87318aa43
refs/heads/master
2021-07-17T17:14:55.967739
2017-10-23T22:24:19
2017-10-23T22:24:19
108,047,228
0
0
null
null
null
null
UTF-8
C++
false
false
7,329
cpp
#include "ray.h" #include "shaderprogram.h" #include "la.h" #include <iostream> #include <limits.h> #include <math.h> using namespace std; static const int two = 2; Ray::Ray() : bufIdx(QOpenGLBuffer::IndexBuffer), bufPos(QOpenGLBuffer::VertexBuffer), bufNor(QOpenGLBuffer::VertexBuffer), bufCol(QOpenGLBuffer::VertexBuffer){ } Ray::Ray(glm::vec4 eye, glm::vec4 d) { origin = eye; direction = d/glm::length(d); } Ray::~Ray() { } glm::vec4 Ray::getOrigin() { return origin; } glm::vec4 Ray::getDirection() { return direction; } void Ray::create() { GLuint ray_idx[two]; ray_idx[0] = 0; ray_idx[1] = 1; glm::vec4 ray_positions[two]; ray_positions[0] = origin; ray_positions[1] = origin + 1000.f * direction; bufIdx.create(); bufIdx.bind(); bufIdx.setUsagePattern(QOpenGLBuffer::StaticDraw); bufIdx.allocate(ray_idx, two * sizeof(GLuint)); bufPos.create(); bufPos.bind(); bufPos.setUsagePattern(QOpenGLBuffer::StaticDraw); bufPos.allocate(ray_positions, two * sizeof(glm::vec4)); } void Ray::destroy() { bufIdx.destroy(); bufPos.destroy(); bufNor.destroy(); bufCol.destroy(); } GLenum Ray::drawMode() { return GL_LINES; } int Ray::elemCount() { return two; } bool Ray::bindIdx() { return bufIdx.bind(); } bool Ray::bindPos() { return bufPos.bind(); } bool Ray::bindNor() { return bufNor.bind(); } bool Ray::bindCol() { return bufCol.bind(); } //returns point of intersection with a unit cube at the origin glm::vec4 intersectCube(const Ray& r, const glm::mat4& transform) { //create scaled/rotated/translated ray //to treat geometry as unit glm::vec4 dir = glm::inverse(transform) * r.direction; glm::vec4 orig = glm::inverse(transform) * r.origin; float min = -0.5; float max = 0.5; float t_near = - (std::numeric_limits<float>::max()); float t_far = std::numeric_limits<float>::max(); float t_oh; float t_one; //if parallel to any of the axes for (int i = 0; i < 3; i++) { if (dir[i] == 0 && (orig[i] < min || orig[i] > max)) { return glm::vec4(0, 0, 0, 0); } t_oh = (min - orig[i])/dir[i]; t_one = (max - orig[i])/dir[i]; if (t_oh > t_one) { float temp = t_oh; t_oh = t_one; t_one = temp; } if (t_oh > t_near) { t_near = t_oh; } if (t_one < t_far) { t_far = t_one; } } if (t_near > t_far) { return glm::vec4(0, 0, 0, 0); } glm::vec4 p = orig + (t_near * dir); return transform * p; } /* //returns the tvalue against float intersectOctNode(const Ray& r, Octnode& octroot) { vec4 dir = r.direction; vec4 orig = r.origin; float bounds[6]; bounds[0] = octroot.xmin; bounds[1] = octroot.ymin; bounds[2] = octroot.zmin; bounds[3] = octroot.xmax; bounds[4] = octroot.ymax; bounds[5] = octroot.zmax; float t_near = - (std::numeric_limits<float>::max()); float t_far = std::numeric_limits<float>::max(); float t_oh; float t_one; //if parallel to any of the axes for (int i = 0; i < 3; i++) { if (dir[i] == 0 && (orig[i] < bounds[i] || orig[i] > bounds [i + 3])) { return -1; } t_oh = (bounds[i] - orig[i])/dir[i]; t_one = (bounds[i + 3] - orig[i])/dir[i]; if (t_oh > t_one) { float temp = t_oh; t_oh = t_one; t_one = temp; } if (t_oh > t_near) { t_near = t_oh; } if (t_one < t_far) { t_far = t_one; } } if (t_near > t_far) { return -1; } //vec4 p = orig + (t_near * dir); return t_near; } */ //returns point of intersection with a unit cylinder at the origin glm::vec4 intersectCylinder(const Ray& r, const glm::mat4& transform) { glm::vec4 dir = la::inverse(transform) * r.direction; glm::vec4 orig = la::inverse(transform) * r.origin; //testing barrel glm::vec4 Cv = glm::vec4(0, 1, 0, 0); glm::vec4 Cs = glm::vec4(0, -0.5f, 0, 1); glm::vec4 Ce = glm::vec4(0, 0.5f, 0, 1); float radius = 0.5f; glm::vec4 H = glm::vec4(glm::cross(glm::vec3(orig - Cs), glm::vec3(Cv)), 0); glm::vec4 J = glm::vec4(glm::cross(glm::vec3(dir), glm::vec3(Cv)), 0); float K = std::pow(radius, 2) * std::pow(glm::length(Cv), 2); float A = pow(glm::length(J), 2); float B = 2 * glm::dot(H, J); float C = pow(glm::length(H), 2) - K; float discriminant = B*B - 4*A*C; if (discriminant < 0) { return glm::vec4(0, 0, 0, 0); } float t_oh = (-B - sqrt(discriminant))/(2 * A); float t_one = (-B + sqrt(discriminant))/(2 * A); if (t_oh > 0) { glm::vec4 p = orig + (t_oh * dir); if (p[1] >= Cs[1] && p[1] <= Ce[1]) { return transform * p; } } else if (t_one> 0) { glm::vec4 p = orig + (t_one * dir); // std::cout << "this is the point of intersection with cylinder: " << p<< " " << std::endl; if (p[1] >= -0.5f && p[1] <= 0.5f) { return transform * p; } } //testing top endcap glm::vec4 planeNorm = glm::vec4(0, 1, 0, 0); glm::vec4 S = glm::vec4(0.5f, 0.5f, 0, 1); float t = glm::dot(planeNorm, (S - orig))/glm::dot(planeNorm, dir); glm::vec4 P = orig + t * dir; if (glm::length(P - Ce) <= radius) { return P; } else { S = glm::vec4(0.5f, -0.5f, 0, 1); t = glm::dot(planeNorm, (S - orig))/glm::dot(planeNorm, dir); P = orig + t * dir; if (glm::length(P -Cs) <= radius) { return P; } } // std::cout << "no intersection with cylinder: " << std::endl; return glm::vec4(0, 0, 0, 0); } //returns point of intersection with a unit sphere at the origin glm::vec4 intersectSphere(const Ray& r, const glm::mat4& transform, Camera* c) { //scale ray down float n = c->near_clip; glm::vec4 dir = la::inverse(transform) * r.direction; glm::vec4 orig = la::inverse(transform) * r.origin; float x0 = orig[0]; float y0 = orig[1]; float z0 = orig[2]; float xd = dir[0]; float yd = dir[1]; float zd = dir[2]; float A = xd* xd + yd * yd + zd * zd; float B = 2 *(xd * x0 + yd* y0 + zd * z0); float C = x0 * x0 + y0 * y0 + z0 * z0 - 0.25f; float discriminant = B*B - 4*A*C; float t_oh = (-B - sqrt(discriminant))/(2 * A); float t_one = (-B + sqrt(discriminant))/(2 * A); //no intersection when discriminant is zero if (discriminant < 0) { return glm::vec4(0, 0, 0, 0); } else if (t_oh > n) { glm::vec4 p = orig + (t_oh * dir); return transform * p; } else if (t_one > n) { glm::vec4 p = orig + (t_one * dir); return transform * p; } return glm::vec4(0, 0, 0, 0); } // Prints the ray to a stream in a nice format std::ostream &operator<<(std::ostream &o, const Ray &r) { o << std::endl << "origin: " << glm::to_string(r.origin) << std::endl << "direction: " << glm::to_string(r.direction) << std::endl; return o; }
[ "csny@seas.upenn.edu" ]
csny@seas.upenn.edu
29a966322e1e5d33777e92156a89617ee4093b3f
04b1803adb6653ecb7cb827c4f4aa616afacf629
/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.h
6ef7e17924d6badcdd2a7ec3212ec30a95f626e0
[ "BSD-3-Clause" ]
permissive
Samsung/Castanets
240d9338e097b75b3f669604315b06f7cf129d64
4896f732fc747dfdcfcbac3d442f2d2d42df264a
refs/heads/castanets_76_dev
2023-08-31T09:01:04.744346
2021-07-30T04:56:25
2021-08-11T05:45:21
125,484,161
58
49
BSD-3-Clause
2022-10-16T19:31:26
2018-03-16T08:07:37
null
UTF-8
C++
false
false
1,988
h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_FILE_SYSTEM_HELPER_H_ #define CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_FILE_SYSTEM_HELPER_H_ #include <list> #include <map> #include <string> #include "base/callback.h" #include "base/macros.h" #include "chrome/browser/browsing_data/browsing_data_file_system_helper.h" // Mock for BrowsingDataFileSystemHelper. // Use AddFileSystemSamples() or add directly to response_ list, then call // Notify(). class MockBrowsingDataFileSystemHelper : public BrowsingDataFileSystemHelper { public: explicit MockBrowsingDataFileSystemHelper(Profile* profile); // BrowsingDataFileSystemHelper implementation. void StartFetching(FetchCallback callback) override; void DeleteFileSystemOrigin(const url::Origin& origin) override; // Adds a specific filesystem. void AddFileSystem(const url::Origin& origin, bool has_persistent, bool has_temporary, bool has_syncable, int64_t size_persistent, int64_t size_temporary, int64_t size_syncable); // Adds some FilesystemInfo samples. void AddFileSystemSamples(); // Notifies the callback. void Notify(); // Marks all filesystems as existing. void Reset(); // Returns true if all filesystemss since the last Reset() invocation were // deleted. bool AllDeleted(); url::Origin last_deleted_origin_; private: ~MockBrowsingDataFileSystemHelper() override; FetchCallback callback_; // Stores which filesystems exist. std::map<const std::string, bool> file_systems_; std::list<FileSystemInfo> response_; DISALLOW_COPY_AND_ASSIGN(MockBrowsingDataFileSystemHelper); }; #endif // CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_FILE_SYSTEM_HELPER_H_
[ "sunny.nam@samsung.com" ]
sunny.nam@samsung.com
0102c0165b876956cabb440a8f0fb465e0ed0c06
9f4b3edaf1095ed58f5ff2d38d79d27b7e230e92
/alg/teca_temporal_average.cxx
c6ad420e984762ef0c22a646bb5107fd81f02f87
[ "BSD-3-Clause-LBNL" ]
permissive
zhishang72/TECA
dbd954ec48f5d9ad0643d26f5fbb6daf8dfd9842
b8bed845e868133e4fbe01f4da40edd4c34cd775
refs/heads/master
2020-04-21T04:54:35.853007
2019-01-26T18:13:18
2019-01-26T18:13:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,547
cxx
#include "teca_temporal_average.h" #include "teca_mesh.h" #include "teca_array_collection.h" #include "teca_variant_array.h" #include "teca_metadata.h" #include <algorithm> #include <iostream> #include <string> #if defined(TECA_HAS_BOOST) #include <boost/program_options.hpp> #endif using std::string; using std::vector; using std::cerr; using std::endl; //#define TECA_DEBUG // -------------------------------------------------------------------------- teca_temporal_average::teca_temporal_average() : filter_width(3), filter_type(backward) { this->set_number_of_input_connections(1); this->set_number_of_output_ports(1); } // -------------------------------------------------------------------------- teca_temporal_average::~teca_temporal_average() {} #if defined(TECA_HAS_BOOST) // -------------------------------------------------------------------------- void teca_temporal_average::get_properties_description( const string &prefix, options_description &global_opts) { options_description opts("Options for " + (prefix.empty()?"teca_temporal_average":prefix)); opts.add_options() TECA_POPTS_GET(unsigned int, prefix, filter_width, "number of steps to average over") TECA_POPTS_GET(int, prefix, filter_type, "use a backward(0), forward(1) or centered(2) stencil") ; global_opts.add(opts); } // -------------------------------------------------------------------------- void teca_temporal_average::set_properties( const string &prefix, variables_map &opts) { TECA_POPTS_SET(opts, unsigned int, prefix, filter_width) TECA_POPTS_SET(opts, int, prefix, filter_type) } #endif // -------------------------------------------------------------------------- std::vector<teca_metadata> teca_temporal_average::get_upstream_request( unsigned int port, const std::vector<teca_metadata> &input_md, const teca_metadata &request) { #ifdef TECA_DEBUG std::string type = "unknown"; switch(this->filter_type) { case backward: type = "backward"; break; case centered: type = "centered"; break; case forward: type = "forward"; break; } cerr << teca_parallel_id() << "teca_temporal_average::get_upstream_request filter_type=" << type << endl; #endif (void) port; vector<teca_metadata> up_reqs; // get the time values required to compute the average // centered on the requested time long active_step; if (request.get("time_step", active_step)) { TECA_ERROR("request is missing \"time_step\"") return up_reqs; } long num_steps; if (input_md[0].get("number_of_time_steps", num_steps)) { TECA_ERROR("input is missing \"number_of_time_steps\"") return up_reqs; } long first = 0; long last = 0; switch(this->filter_type) { case backward: first = active_step - this->filter_width + 1; last = active_step; break; case centered: { if (this->filter_width % 2 == 0) TECA_ERROR("\"filter_width\" should be odd for centered calculation") long delta = this->filter_width/2; first = active_step - delta; last = active_step + delta; } break; case forward: first = active_step; last = active_step + this->filter_width - 1; break; default: TECA_ERROR("Invalid \"filter_type\" " << this->filter_type) return up_reqs; } for (long i = first; i <= last; ++i) { // make a request for each time that will be used in the // average if ((i >= 0) && (i < num_steps)) { #ifdef TECA_DEBUG cerr << teca_parallel_id() << "request time_step " << i << endl; #endif teca_metadata up_req(request); up_req.insert("time_step", i); up_reqs.push_back(up_req); } } return up_reqs; } // -------------------------------------------------------------------------- const_p_teca_dataset teca_temporal_average::execute( unsigned int port, const std::vector<const_p_teca_dataset> &input_data, const teca_metadata &request) { #ifdef TECA_DEBUG cerr << teca_parallel_id() << "teca_temporal_average::execute" << endl; #endif (void)port; // create output and copy metadata, coordinates, etc p_teca_mesh out_mesh = std::dynamic_pointer_cast<teca_mesh>(input_data[0]->new_instance()); if (!out_mesh) { TECA_ERROR("input data[0] is not a teca_mesh") return nullptr; } // initialize the output array collections from the // first input const_p_teca_mesh in_mesh = std::dynamic_pointer_cast<const teca_mesh>(input_data[0]); if (!in_mesh) { TECA_ERROR("Failed to average. dataset is not a teca_mesh") return nullptr; } size_t n_meshes = input_data.size(); // TODO -- handle cell, edge, face arrays p_teca_array_collection out_arrays = out_mesh->get_point_arrays(); // initialize with a copy of the first dataset out_arrays->copy(in_mesh->get_point_arrays()); size_t n_arrays = out_arrays->size(); size_t n_elem = n_arrays ? out_arrays->get(0)->size() : 0; // accumulate each array from remaining datasets for (size_t i = 1; i < n_meshes; ++i) { in_mesh = std::dynamic_pointer_cast<const teca_mesh>(input_data[i]); const_p_teca_array_collection in_arrays = in_mesh->get_point_arrays(); for (size_t j = 0; j < n_arrays; ++j) { const_p_teca_variant_array in_a = in_arrays->get(j); p_teca_variant_array out_a = out_arrays->get(j); TEMPLATE_DISPATCH( teca_variant_array_impl, out_a.get(), const NT *p_in_a = dynamic_cast<const TT*>(in_a.get())->get(); NT *p_out_a = dynamic_cast<TT*>(out_a.get())->get(); for (size_t q = 0; q < n_elem; ++q) p_out_a[q] += p_in_a[q]; ) } } // scale result by the filter width for (size_t j = 0; j < n_arrays; ++j) { p_teca_variant_array out_a = out_arrays->get(j); TEMPLATE_DISPATCH( teca_variant_array_impl, out_a.get(), NT *p_out_a = dynamic_cast<TT*>(out_a.get())->get(); NT fac = static_cast<NT>(n_meshes); for (size_t q = 0; q < n_elem; ++q) p_out_a[q] /= fac; ) } // get active time step unsigned long active_step; if (request.get("time_step", active_step)) { TECA_ERROR("request is missing \"time_step\"") return nullptr; } // copy metadata and information arrays from the // active step for (size_t i = 0; i < n_meshes; ++i) { in_mesh = std::dynamic_pointer_cast<const teca_mesh>(input_data[i]); unsigned long step; if (in_mesh->get_metadata().get("time_step", step)) { TECA_ERROR("input dataset metadata missing \"time_step\"") return nullptr; } if (step == active_step) { out_mesh->copy_metadata(in_mesh); out_mesh->get_information_arrays()->copy(in_mesh->get_information_arrays()); } } return out_mesh; }
[ "bloring@lbl.gov" ]
bloring@lbl.gov
d843846e2cf871a4d73cf8ab63618d6a66d2b22d
a47c42435fc13360b76d5b74b5c212ba32836c87
/D01/ex04/ex04.cpp
5967ac7fdc32eb27f6ffe86c157e1308e18f54a0
[]
no_license
tcarmet/Piscine_cpp
5121779651698c835aa1a891ae337eba7f8cc74d
170b784385678dab6c084c726cc84d5c4437bcbf
refs/heads/master
2021-01-10T02:52:47.803870
2016-02-04T09:37:43
2016-02-04T09:37:43
51,065,723
0
0
null
null
null
null
UTF-8
C++
false
false
1,179
cpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ex04.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tcarmet <tcarmet@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/09/04 15:05:48 by tcarmet #+# #+# */ /* Updated: 2015/09/04 15:15:56 by tcarmet ### ########.fr */ /* */ /* ************************************************************************** */ #include <iostream> int main(void) { std::string brain = "HI THIS IS BRAIN"; std::string *ptr_brain = &brain; std::string &ref_brain = brain; std::cout << "pointer brain : " << *ptr_brain << std::endl; std::cout << "reference brain : " << ref_brain << std::endl; return (0); }
[ "thomas.carmet@arkena.com" ]
thomas.carmet@arkena.com
c761ebf9cf608338e73af43a60b169e4cb581290
af886cff5033e866c2208f2d179b88ff74d33794
/XDKSamples/Tools/SymbolProxyClient/pch.h
d94b21b2ad98f0a814670430c6e86f057bc1399d
[]
permissive
tunip3/Xbox-ATG-Samples
c1d1d6c0b9f93c453733a1dada074b357bd6577a
27e30925a46ae5777703361409b8395fed0394d3
refs/heads/master
2020-04-14T08:37:00.614182
2018-12-14T02:38:01
2018-12-14T02:38:01
163,739,353
3
0
MIT
2019-01-01T13:38:37
2019-01-01T13:38:37
null
UTF-8
C++
false
false
1,509
h
//-------------------------------------------------------------------------------------- // pch.h // // Header for standard system include files. // // Advanced Technology Group (ATG) // Copyright (C) Microsoft Corporation. All rights reserved. //-------------------------------------------------------------------------------------- #pragma once // Use the C++ standard templated min/max #define NOMINMAX #include <xdk.h> #if _XDK_VER < 0x38100402 /* XDK Edition: 160600 */ #error This sample requires the June 2016 XDK (Preview) or later #endif #include <wrl.h> #include <d3d11_x.h> #include <DirectXMath.h> #include <DirectXColors.h> #include <algorithm> #include <exception> #include <memory> #include <stdexcept> #include <stdio.h> #include <pix.h> #include "GamePad.h" #include "GraphicsMemory.h" #include "SimpleMath.h" #include "SpriteBatch.h" #include "SpriteFont.h" namespace DX { // Helper class for COM exceptions class com_exception : public std::exception { public: com_exception(HRESULT hr) : result(hr) {} virtual const char* what() const override { static char s_str[64] = {}; sprintf_s(s_str, "Failure with HRESULT of %08X", result); return s_str; } private: HRESULT result; }; // Helper utility converts D3D API failures into exceptions. inline void ThrowIfFailed(HRESULT hr) { if (FAILED(hr)) { throw com_exception(hr); } } }
[ "chuckw@windows.microsoft.com" ]
chuckw@windows.microsoft.com
e45495bd9cf8e2725535b91e2efee16b47361c12
19d0bd7f204d9cc5f3aed174f317eee06c421342
/src/numerics/spaces.cpp
7943ecec538ae2172a4652e308e281e5ad79c917
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ORNL-QCI/exatn
cf8ecc2a690dfc2a60cb33f7bf648ccdbef4a1b9
c528f7ec7323ab5f4485b85efcefa016c32e1a2d
refs/heads/devel
2023-08-10T10:02:15.763160
2023-07-19T19:34:07
2023-07-19T19:34:07
151,473,483
55
23
BSD-3-Clause
2023-07-19T19:34:08
2018-10-03T20:05:56
C++
UTF-8
C++
false
false
4,853
cpp
/** ExaTN::Numerics: Spaces/Subspaces REVISION: 2021/03/05 Copyright (C) 2018-2021 Dmitry I. Lyakh (Liakh) Copyright (C) 2018-2021 Oak Ridge National Laboratory (UT-Battelle) **/ #include "spaces.hpp" #include <iostream> namespace exatn{ namespace numerics{ VectorSpace::VectorSpace(DimExtent space_dim): basis_(space_dim), space_name_(""), id_(SOME_SPACE) { } VectorSpace::VectorSpace(DimExtent space_dim, const std::string & space_name): basis_(space_dim), space_name_(space_name), id_(SOME_SPACE) { } VectorSpace::VectorSpace(DimExtent space_dim, const std::string & space_name, const std::vector<SymmetryRange> & symmetry_subranges): basis_(space_dim,symmetry_subranges), space_name_(space_name), id_(SOME_SPACE) { } void VectorSpace::printIt() const { if(space_name_.length() > 0){ std::cout << "VectorSpace{Dim = " << this->getDimension() << "; id = " << id_ << "; Name = " << space_name_ << "}"; }else{ std::cout << "VectorSpace{Dim = " << this->getDimension() << "; id = " << id_ << "; Name = NONE}"; } return; } DimExtent VectorSpace::getDimension() const { return basis_.getDimension(); } const std::string & VectorSpace::getName() const { return space_name_; } const std::vector<SymmetryRange> & VectorSpace::getSymmetrySubranges() const { return basis_.getSymmetrySubranges(); } void VectorSpace::registerSymmetrySubrange(const SymmetryRange subrange) { return basis_.registerSymmetrySubrange(subrange); } SpaceId VectorSpace::getRegisteredId() const { return id_; } void VectorSpace::resetRegisteredId(SpaceId id) { id_ = id; return; } Subspace::Subspace(const VectorSpace * vector_space, DimOffset lower_bound, DimOffset upper_bound): vector_space_(vector_space), lower_bound_(lower_bound), upper_bound_(upper_bound), subspace_name_(""), id_(UNREG_SUBSPACE) { assert(lower_bound_ <= upper_bound_ && upper_bound_ < vector_space_->getDimension()); } Subspace::Subspace(const VectorSpace * vector_space, std::pair<DimOffset,DimOffset> bounds): Subspace(vector_space,std::get<0>(bounds),std::get<1>(bounds)) { } Subspace::Subspace(const VectorSpace * vector_space, DimOffset lower_bound, DimOffset upper_bound, const std::string & subspace_name): vector_space_(vector_space), lower_bound_(lower_bound), upper_bound_(upper_bound), subspace_name_(subspace_name), id_(UNREG_SUBSPACE) { assert(lower_bound_ <= upper_bound_ && upper_bound_ < vector_space_->getDimension()); } Subspace::Subspace(const VectorSpace * vector_space, std::pair<DimOffset,DimOffset> bounds, const std::string & subspace_name): Subspace(vector_space,std::get<0>(bounds),std::get<1>(bounds),subspace_name) { } void Subspace::printIt() const { if(subspace_name_.length() > 0){ std::cout << "Subspace{Space = " << vector_space_->getName() << "; Lbound = " << lower_bound_ << "; Ubound = " << upper_bound_ << "; id = " << id_ << "; Name = " << subspace_name_ << "}"; }else{ std::cout << "Subspace{Space = " << vector_space_->getName() << "; Lbound = " << lower_bound_ << "; Ubound = " << upper_bound_ << "; id = " << id_ << "; Name = NONE}"; } return; } DimExtent Subspace::getDimension() const { return upper_bound_ - lower_bound_ + 1; } DimOffset Subspace::getLowerBound() const { return lower_bound_; } DimOffset Subspace::getUpperBound() const { return upper_bound_; } std::pair<DimOffset,DimOffset> Subspace::getBounds() const { return std::make_pair(lower_bound_,upper_bound_); } const VectorSpace * Subspace::getVectorSpace() const { return vector_space_; } const std::string & Subspace::getName() const { return subspace_name_; } SubspaceId Subspace::getRegisteredId() const { return id_; } void Subspace::resetRegisteredId(SubspaceId id) { id_ = id; return; } std::vector<std::shared_ptr<Subspace>> Subspace::splitUniform(DimExtent num_segments) const { assert(num_segments > 0); std::vector<std::shared_ptr<Subspace>> subspaces(num_segments,nullptr); const auto subspace_extent = getDimension(); const std::string subspace_name = "_" + getName() + "_"; if(num_segments <= subspace_extent){ const auto segment_length = subspace_extent / num_segments; const auto excess = subspace_extent - (num_segments * segment_length); auto lower = lower_bound_; for(DimExtent i = 0; i < num_segments; ++i){ DimOffset upper = lower + segment_length - 1; if(i < excess) ++upper; subspaces[i].reset(new Subspace{vector_space_, lower, upper, subspace_name + std::to_string(i)}); lower = upper + 1; } assert(lower == upper_bound_ + 1); } return subspaces; } } //namespace numerics } //namespace exatn
[ "quant4me@gmail.com" ]
quant4me@gmail.com
d6976ee6f11f71104f091ff13a941bdc80a960ef
54af00da50c3e516c4305d034fe2a43a12374aca
/Bi-directional_Counter.ino
672a89e92181e7bd79ad84a73c5e3343ed2b6aa1
[]
no_license
Sidd5900/Bi-Directional-Counter
19765d3722d90b4b153d5e72bad5fa17c3e5d22b
0e4c191d4386e2af2120a5266cd5da49a9951344
refs/heads/master
2023-04-10T06:46:15.570739
2021-04-14T12:50:12
2021-04-14T12:50:12
357,678,953
0
0
null
null
null
null
UTF-8
C++
false
false
2,449
ino
int count =0;//current count of visitors int lastcount=0; float dist,distR,distF; float time_taken; // declare variables for the Arduino pins to which the sensor, led and buzzer is connected int echo1 = 9, trigger1 = 10; //for front ultrasonic sensor int echo2= 7, trigger2=6;//for rear ultrasonic sensor int led=2; int buzzer=3; void setup() { Serial.begin(9600); // initializing the pin to which echo terminal is connected as input and that to which trig terminal is connected as output pinMode(echo1, INPUT); pinMode(trigger1, OUTPUT); pinMode(echo2, INPUT); pinMode(trigger2, OUTPUT); //initializing the pins for the led and buzzer as output pinMode(led,OUTPUT); pinMode(buzzer,OUTPUT); } //function to calculate the distance of an object placed in front of the ultrasonic sensor void calculate_distance(int trigger, int echo) { digitalWrite(trigger, LOW); delayMicroseconds(10); digitalWrite(trigger, HIGH); delayMicroseconds(10); digitalWrite(trigger, LOW); time_taken = pulseIn(echo, HIGH); dist= time_taken*0.034/2; if (dist>50) dist = 50; } void loop() { if(count > 0) //atleast one visitor present inside digitalWrite(led,HIGH); else digitalWrite(led, LOW); if(count > 5) //count exceeds the threshold value which we have set as 5 tone(buzzer, 1000); // Send 1KHz sound signal else noTone(buzzer); calculate_distance(trigger1,echo1); distF =dist; //get distance of front sensor if(dist < 50) { for(int i=0;i<6;i++) { calculate_distance(trigger2,echo2); distR =dist; if(dist < 50) { count++; break; } delay(200); } } calculate_distance(trigger2,echo2); distR =dist; //get distance of rear sensor if(distR < 50){ for(int i=0;i < 5;i++) { calculate_distance(trigger1,echo1); distR =dist; if(dist < 50) { count--; break; } delay(200); } } if(count < 0) count cannot be negative count = 0; delay(200); //lastcount stores the count of the previous iteration if(count>lastcount) //when person enters { Serial.println("Welcome"); Serial.print("People in room="); Serial.println(count); } else if(count<lastcount) //when person exits { Serial.println("Thank you for visiting"); Serial.print("People in room="); Serial.println(count); } lastcount=count; }
[ "siddharth_1901me60@iitp.ac.in" ]
siddharth_1901me60@iitp.ac.in
eba17370a2500c0f23bf598ea1b0d9d3f7a7d71a
2ded02bed0db431b80e918b41c644e66478f1c0a
/array/Inversion_of_array.cpp
45cae6f6f237ebb27c24950eaaf3b3910f165603
[]
no_license
itsmegr/next-dsa
e73bbd373c8bfc0e93d84d2870849b764c11abdb
fa50875f3b7a77bf9bfb215c311c5d8a280c3f4e
refs/heads/master
2023-05-15T00:32:12.443113
2021-06-09T17:02:55
2021-06-09T17:02:55
325,457,327
1
0
null
null
null
null
UTF-8
C++
false
false
2,149
cpp
#include <bits/stdc++.h> using namespace std; #define fo(i, n) for (i = 0; i < n; i++) #define Fo(i, k, n) for (i = k; k < n ? i < n : i > n; k < n ? i += 1 : i -= 1) #define ll long long #define ull unsigned long long #define deb(x) cout << #x << "=" << x << endl #define deb2(x, y) cout << #x << "=" << x << "," << #y << "=" << y << endl #define pb push_back #define mp make_pair typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<pii> vpii; typedef vector<pll> vpl; typedef vector<vi> vvi; typedef vector<vl> vvl; void solve(); void takeArrayInput(long long int arr[], int n) { int i; fo(i, n) { cin >> arr[i]; } } int main() { #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int t = 1; cin >> t; while (t--) { solve(); } return 0; } void merge(long long int Arr[], long long int start, long long int mid, long long int end, long long int &total_inversion) { long long int temp[end - start + 1]; long long int i = start, j = mid + 1, k = 0; while (i <= mid && j <= end) { if (Arr[i] <= Arr[j]) { temp[k] = Arr[i]; k += 1; i += 1; } else { // deb2(i, mid); total_inversion = total_inversion + mid - i + 1; // deb(total_inversion); temp[k] = Arr[j]; k += 1; j += 1; } } while (i <= mid) { temp[k] = Arr[i]; k += 1; i += 1; } while (j <= end) { temp[k] = Arr[j]; k += 1; j += 1; } for (i = start; i <= end; i += 1) { Arr[i] = temp[i - start]; } } void mergeSort(long long int Arr[], long long int start, long long int end, long long int &total_inversion) { if (start < end) { long long int mid = (start + end) / 2; mergeSort(Arr, start, mid, total_inversion); mergeSort(Arr, mid + 1, end, total_inversion); merge(Arr, start, mid, end, total_inversion); } } void solve() { long long int i, j, n, m, total_inversion = 0; cin >> n; long long int arr[n]; takeArrayInput(arr, n); mergeSort(arr, 0, n - 1, total_inversion); cout << total_inversion << endl; }
[ "unigovind@gmail.com" ]
unigovind@gmail.com
46f3dfab6653e270231651806deca8371b61393e
c9cf0586ace11aa32fa67606d237a130a06364ee
/circular-cylinder-10-1/19.5/p
51d0c1b1e651eb051dc80a9c46910ccbab7bb730
[]
no_license
jezvonek/CFD-Final-Project
c74cfa21f22545c27d97d85cf30eb6dc8c824dc1
7c9a7fb032d74f20888effa0a0b75b212bf899f4
refs/heads/master
2022-07-05T14:43:52.967657
2020-05-14T03:40:56
2020-05-14T03:40:56
262,370,756
1
1
null
null
null
null
UTF-8
C++
false
false
26,265
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "19.5"; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 2400 ( -0.394468 -0.380985 -0.372954 -0.366375 -0.359869 -0.353479 -0.347282 -0.341238 -0.335364 -0.330801 -0.407987 -0.393577 -0.384599 -0.376883 -0.369145 -0.361525 -0.354161 -0.347028 -0.340088 -0.334898 -0.42552 -0.409508 -0.399136 -0.389868 -0.380516 -0.371317 -0.362456 -0.353895 -0.34565 -0.339884 -0.447367 -0.428974 -0.41681 -0.405539 -0.394166 -0.383014 -0.372304 -0.361961 -0.352003 -0.345449 -0.473936 -0.452095 -0.43787 -0.424098 -0.410281 -0.396801 -0.383871 -0.371349 -0.359218 -0.351609 -0.505462 -0.479455 -0.46222 -0.445687 -0.429079 -0.412912 -0.397403 -0.382278 -0.367432 -0.358368 -0.541578 -0.511293 -0.490326 -0.470543 -0.450809 -0.431658 -0.413272 -0.395172 -0.377006 -0.365827 -0.582651 -0.547541 -0.522256 -0.49883 -0.475688 -0.453307 -0.431789 -0.410341 -0.388006 -0.373402 -0.628897 -0.588001 -0.558023 -0.530705 -0.50398 -0.478185 -0.453177 -0.427467 -0.398717 -0.377382 -0.679753 -0.632415 -0.597563 -0.56637 -0.536334 -0.50773 -0.480121 -0.451147 -0.416715 -0.386638 -1.14985 -1.13336 -1.1043 -1.06503 -1.01779 -0.964771 -0.90808 -0.849601 -0.790987 -0.733791 -1.05155 -1.03676 -1.01058 -0.975151 -0.932601 -0.885009 -0.834326 -0.782305 -0.730466 -0.680121 -0.969467 -0.958439 -0.936478 -0.905579 -0.867779 -0.825093 -0.779419 -0.732472 -0.685733 -0.64043 -0.891752 -0.885628 -0.868831 -0.843148 -0.810481 -0.77275 -0.7318 -0.689326 -0.646822 -0.605512 -0.815677 -0.814708 -0.803427 -0.783358 -0.75619 -0.723675 -0.687534 -0.649382 -0.610708 -0.572734 -0.743684 -0.747512 -0.741568 -0.727094 -0.705523 -0.67837 -0.647139 -0.61325 -0.578088 -0.542792 -0.677192 -0.685111 -0.683958 -0.67473 -0.658607 -0.636841 -0.610641 -0.581082 -0.549257 -0.516022 -0.616628 -0.627863 -0.630825 -0.626333 -0.615374 -0.598979 -0.578055 -0.553175 -0.524749 -0.492597 -0.561861 -0.575765 -0.582259 -0.582071 -0.576104 -0.565296 -0.550393 -0.531505 -0.507814 -0.475645 -0.512842 -0.528089 -0.536901 -0.539982 -0.538258 -0.532774 -0.524492 -0.513788 -0.49978 -0.475679 -0.43473 -0.569994 -0.695527 -0.808389 -0.907408 -0.990801 -1.05722 -1.10599 -1.13708 -1.15118 -0.385168 -0.510117 -0.62654 -0.73254 -0.825249 -0.903118 -0.965074 -1.01056 -1.0396 -1.05283 -0.31923 -0.437276 -0.548071 -0.649367 -0.738576 -0.814399 -0.875627 -0.921576 -0.952129 -0.967731 -0.250551 -0.361229 -0.46608 -0.56273 -0.649358 -0.723981 -0.785455 -0.833007 -0.866332 -0.885642 -0.187699 -0.290488 -0.388896 -0.48062 -0.563712 -0.636436 -0.697588 -0.746304 -0.78213 -0.805071 -0.134019 -0.229086 -0.321013 -0.407433 -0.486445 -0.556584 -0.616613 -0.665674 -0.703215 -0.729106 -0.0895825 -0.177542 -0.263398 -0.34453 -0.41926 -0.486303 -0.544525 -0.593131 -0.631508 -0.65946 -0.0526959 -0.133914 -0.214349 -0.290573 -0.361149 -0.425051 -0.48115 -0.528793 -0.567312 -0.596544 -0.0217858 -0.0962704 -0.171904 -0.243744 -0.31048 -0.371259 -0.425361 -0.471924 -0.510136 -0.540062 -0.00294947 -0.0732867 -0.144397 -0.211171 -0.273045 -0.329402 -0.380232 -0.424862 -0.461503 -0.490722 0.538359 0.559296 0.581633 0.604577 0.627623 0.650098 0.671034 0.689804 0.711679 0.751077 0.511595 0.529845 0.549726 0.569777 0.589315 0.607603 0.623592 0.636691 0.652525 0.686645 0.477363 0.491957 0.50856 0.524796 0.539754 0.552655 0.562418 0.568588 0.577221 0.604866 0.43593 0.446027 0.458627 0.470202 0.479595 0.486016 0.488398 0.486522 0.486923 0.506969 0.387692 0.392611 0.4006 0.406771 0.409736 0.40873 0.402754 0.391912 0.383252 0.394753 0.333141 0.332403 0.335323 0.335481 0.331311 0.322122 0.307028 0.286546 0.268235 0.270442 0.272861 0.266226 0.263813 0.257513 0.245684 0.227771 0.203058 0.172541 0.144255 0.136627 0.207601 0.195112 0.187313 0.174262 0.154437 0.1275 0.0929408 0.0522944 0.0139852 -0.00379181 0.13823 0.12062 0.107566 0.0874727 0.0594245 0.0233648 -0.0210008 -0.0715713 -0.119663 -0.147688 0.063677 0.0433792 0.025419 -0.00164857 -0.0376513 -0.0825449 -0.136349 -0.196313 -0.253667 -0.292081 0.391009 0.394996 0.405536 0.41381 0.420322 0.426772 0.434752 0.446625 0.465204 0.487922 0.439684 0.444865 0.456661 0.468015 0.478419 0.489032 0.501101 0.516652 0.539099 0.568253 0.478877 0.487618 0.501945 0.516765 0.531216 0.546029 0.562149 0.581259 0.607223 0.642079 0.511192 0.523876 0.541058 0.559174 0.577387 0.596121 0.61601 0.638354 0.667331 0.706973 0.536864 0.553166 0.573052 0.594106 0.615617 0.637778 0.660917 0.685932 0.717203 0.760627 0.555783 0.575045 0.597188 0.62062 0.644775 0.66965 0.695286 0.72219 0.75487 0.800938 0.56793 0.589255 0.612907 0.637945 0.663904 0.690586 0.717758 0.745563 0.778605 0.826079 0.57196 0.594986 0.619463 0.64533 0.672182 0.699637 0.727219 0.754769 0.786997 0.834571 0.568802 0.592043 0.616598 0.642408 0.66909 0.696134 0.722858 0.748863 0.779003 0.825337 0.557496 0.580077 0.60397 0.628833 0.654258 0.679653 0.704172 0.727261 0.753971 0.797664 0.347168 0.302512 0.251455 0.199654 0.148506 0.099259 0.0494582 0.00377708 -0.0386072 -0.0779274 0.351238 0.303593 0.250616 0.196078 0.141999 0.0895317 0.03881 -0.0083663 -0.0519917 -0.0919874 0.3548 0.301449 0.244887 0.187538 0.131082 0.076642 0.0249442 -0.0230248 -0.0668991 -0.106498 0.357502 0.299136 0.238948 0.178689 0.119874 0.0636615 0.0108763 -0.0376415 -0.0814548 -0.120405 0.35935 0.296575 0.232838 0.169695 0.108596 0.050775 -0.00289738 -0.0516877 -0.0952054 -0.133367 0.361325 0.294363 0.227158 0.161283 0.0980623 0.0388434 -0.0155313 -0.0644486 -0.107617 -0.145064 0.365085 0.294234 0.223727 0.155142 0.0900712 0.0295202 -0.0256404 -0.0748892 -0.118046 -0.155253 0.373164 0.298776 0.225121 0.153959 0.0866852 0.0243851 -0.0321475 -0.0824748 -0.126492 -0.164414 0.387628 0.309134 0.231587 0.156525 0.0855747 0.0198955 -0.0397329 -0.0928727 -0.139412 -0.179561 0.403636 0.317878 0.232903 0.150668 0.0727372 0.000423947 -0.0653171 -0.123908 -0.175149 -0.219163 -0.114149 -0.147313 -0.177653 -0.205502 -0.231256 -0.255318 -0.277981 -0.299242 -0.319558 -0.329823 -0.12828 -0.160883 -0.19004 -0.216084 -0.239393 -0.260324 -0.279064 -0.295426 -0.309072 -0.313454 -0.141816 -0.172909 -0.200103 -0.223814 -0.244505 -0.262622 -0.278467 -0.292087 -0.303448 -0.309295 -0.154597 -0.184169 -0.209571 -0.231339 -0.250044 -0.266239 -0.280358 -0.292641 -0.303129 -0.309965 -0.166413 -0.194571 -0.218435 -0.238653 -0.255888 -0.270773 -0.283815 -0.295322 -0.30529 -0.31255 -0.177176 -0.204257 -0.227029 -0.246217 -0.262537 -0.276644 -0.289052 -0.300059 -0.309626 -0.317035 -0.187024 -0.213699 -0.236079 -0.254923 -0.27094 -0.28476 -0.296857 -0.307487 -0.316608 -0.323804 -0.196829 -0.224052 -0.246915 -0.266159 -0.282453 -0.296376 -0.308349 -0.31859 -0.327087 -0.333644 -0.21387 -0.242672 -0.26677 -0.286887 -0.303676 -0.317685 -0.329301 -0.338734 -0.346026 -0.351126 -0.256231 -0.287095 -0.31242 -0.332999 -0.349576 -0.362753 -0.372935 -0.380351 -0.385127 -0.38728 -0.386644 -0.354122 -0.338272 -0.328866 -0.321667 -0.315534 -0.309287 -0.300388 -0.284715 -0.269791 -0.384881 -0.355524 -0.341356 -0.33261 -0.325606 -0.319378 -0.313082 -0.305093 -0.293147 -0.284728 -0.382345 -0.35578 -0.343372 -0.335415 -0.3289 -0.323084 -0.31735 -0.310701 -0.302248 -0.297833 -0.379524 -0.35539 -0.344732 -0.337556 -0.331577 -0.32622 -0.321006 -0.315255 -0.308578 -0.305385 -0.376564 -0.355262 -0.345847 -0.339398 -0.333952 -0.329033 -0.324308 -0.319313 -0.313788 -0.310912 -0.374097 -0.355888 -0.347181 -0.341338 -0.336309 -0.331721 -0.327348 -0.322903 -0.317905 -0.31495 -0.373253 -0.357268 -0.349226 -0.343787 -0.338991 -0.334542 -0.330272 -0.32596 -0.321482 -0.318384 -0.374493 -0.359989 -0.352423 -0.347144 -0.342348 -0.337814 -0.333434 -0.329056 -0.324663 -0.321372 -0.37825 -0.364574 -0.357186 -0.351791 -0.346728 -0.341857 -0.337132 -0.332449 -0.327831 -0.324207 -0.384882 -0.371447 -0.363901 -0.358085 -0.352464 -0.346985 -0.341662 -0.33643 -0.331323 -0.327284 -0.324266 -0.267832 -0.239033 -0.194535 -0.161614 -0.129837 -0.10472 -0.083909 -0.0679 -0.0557968 -0.0467034 -0.03992 -0.0340317 -0.0283771 -0.022187 -0.0154974 -0.0131351 -0.00845808 -0.00710392 -5.94454e-05 -0.330206 -0.269816 -0.240662 -0.195695 -0.162251 -0.1301 -0.104626 -0.0836512 -0.0676648 -0.0557955 -0.0470839 -0.0407015 -0.0349709 -0.0291902 -0.0223892 -0.0150145 -0.0122098 -0.00774284 -0.007167 -0.00036806 -0.337939 -0.272552 -0.242939 -0.197452 -0.163364 -0.13081 -0.104918 -0.0837146 -0.0676754 -0.055969 -0.0475644 -0.0415033 -0.0358925 -0.0299725 -0.0225951 -0.0145778 -0.0113359 -0.0070744 -0.00723062 -0.000679729 -0.347531 -0.275954 -0.245732 -0.19977 -0.164949 -0.131976 -0.105612 -0.0841198 -0.0679507 -0.0563227 -0.048136 -0.0423227 -0.0367852 -0.030718 -0.0228076 -0.0141973 -0.0105265 -0.00646133 -0.0072939 -0.000991875 -0.358684 -0.280127 -0.248954 -0.202618 -0.167001 -0.1336 -0.106714 -0.0848754 -0.0684979 -0.0568574 -0.048796 -0.0431515 -0.037642 -0.0314243 -0.0230302 -0.0138808 -0.0097917 -0.00590978 -0.00735599 -0.00130186 -0.370947 -0.285209 -0.252522 -0.205943 -0.169492 -0.135658 -0.108213 -0.085973 -0.0693103 -0.0575661 -0.0495367 -0.0439821 -0.0384588 -0.0320911 -0.0232661 -0.0136338 -0.00913889 -0.00542381 -0.00741589 -0.00160754 -0.38385 -0.291411 -0.25643 -0.20971 -0.172413 -0.138143 -0.110108 -0.0874111 -0.0703858 -0.0584446 -0.0503515 -0.0448081 -0.0392328 -0.03272 -0.0235215 -0.0134646 -0.00857743 -0.00500699 -0.00747225 -0.00190651 -0.397107 -0.299539 -0.261151 -0.214204 -0.176002 -0.14124 -0.112545 -0.0892985 -0.0717982 -0.0595358 -0.0512597 -0.0456351 -0.0399667 -0.0333182 -0.023813 -0.0133929 -0.00812586 -0.00466612 -0.00752298 -0.00219543 -0.408469 -0.310443 -0.267316 -0.219819 -0.180541 -0.145159 -0.115681 -0.0917465 -0.0736264 -0.0608969 -0.0523055 -0.0464997 -0.0406899 -0.0339053 -0.0241459 -0.0134132 -0.00777716 -0.0043973 -0.00756825 -0.00247479 -0.406701 -0.318848 -0.272148 -0.224342 -0.184183 -0.148386 -0.118319 -0.0938602 -0.0752614 -0.0621759 -0.0533507 -0.0474011 -0.0414442 -0.0344859 -0.0244153 -0.0133589 -0.00737433 -0.00412949 -0.00761912 -0.00276275 -0.37903 -0.316713 -0.27181 -0.224974 -0.184685 -0.149105 -0.119004 -0.0945202 -0.0759153 -0.0629285 -0.0542894 -0.0485068 -0.0425175 -0.0353095 -0.0246114 -0.0129725 -0.00649657 -0.00362157 -0.00771466 -0.00320586 -0.363303 -0.310812 -0.266687 -0.222432 -0.183744 -0.149624 -0.120364 -0.0963517 -0.0778818 -0.0647941 -0.0559034 -0.0497567 -0.0433673 -0.0357677 -0.0247258 -0.0129174 -0.00609754 -0.00353723 -0.0078169 -0.00365099 -0.343871 -0.298657 -0.256435 -0.216553 -0.18108 -0.149324 -0.12155 -0.0983925 -0.0802358 -0.0670312 -0.0577302 -0.050993 -0.0440554 -0.0360312 -0.0248281 -0.0131006 -0.00605803 -0.00375196 -0.00789121 -0.00404199 -0.314021 -0.279494 -0.242042 -0.207904 -0.176964 -0.148389 -0.122646 -0.100652 -0.082941 -0.0695999 -0.0597735 -0.0523002 -0.0447271 -0.0362692 -0.0250408 -0.013564 -0.00637728 -0.00423364 -0.00791083 -0.00435914 -0.274222 -0.253528 -0.224259 -0.196723 -0.171151 -0.146539 -0.123427 -0.102962 -0.0858773 -0.0724254 -0.0619958 -0.053671 -0.0454006 -0.0365258 -0.0254333 -0.0143889 -0.00714284 -0.0049996 -0.00784147 -0.00454892 -0.23244 -0.22338 -0.204091 -0.183687 -0.163696 -0.143504 -0.123528 -0.104965 -0.0887384 -0.0752874 -0.0642773 -0.0550798 -0.0461103 -0.0368665 -0.0260549 -0.015592 -0.00835102 -0.00599443 -0.00765609 -0.00456416 -0.194105 -0.193515 -0.183274 -0.169813 -0.155164 -0.139344 -0.122713 -0.106324 -0.0911824 -0.0779097 -0.0664553 -0.0564908 -0.0469007 -0.0373603 -0.0269006 -0.0170739 -0.00985975 -0.007095 -0.00736903 -0.00439255 -0.162687 -0.166973 -0.16381 -0.156428 -0.146502 -0.134556 -0.121058 -0.106875 -0.0929593 -0.08005 -0.0683546 -0.0578257 -0.0477588 -0.0380033 -0.0278684 -0.0186125 -0.0114166 -0.00815055 -0.00705695 -0.00408266 -0.139993 -0.146655 -0.148075 -0.145198 -0.138955 -0.130035 -0.11905 -0.10676 -0.0940051 -0.0815565 -0.0698079 -0.0589403 -0.0485634 -0.0386716 -0.0287684 -0.0199242 -0.0127291 -0.00900385 -0.0068196 -0.0037445 -0.127354 -0.134937 -0.13861 -0.138215 -0.134143 -0.127024 -0.117541 -0.106428 -0.0944479 -0.0823589 -0.070648 -0.0596304 -0.0491022 -0.0391441 -0.0293697 -0.0207314 -0.0135327 -0.00950434 -0.00671395 -0.00350737 -0.442988 -0.455604 -0.462948 -0.465515 -0.464157 -0.460181 -0.455475 -0.45265 -0.456682 -0.480303 -0.363455 -0.376902 -0.387456 -0.395618 -0.402052 -0.407563 -0.413009 -0.419112 -0.425979 -0.439818 -0.298278 -0.311376 -0.32295 -0.333183 -0.34221 -0.350109 -0.356921 -0.362819 -0.367789 -0.377887 -0.242881 -0.254494 -0.26505 -0.274598 -0.283196 -0.290944 -0.298021 -0.304743 -0.311131 -0.319764 -0.196778 -0.206846 -0.216214 -0.224929 -0.233045 -0.240616 -0.247692 -0.254323 -0.260432 -0.266762 -0.159426 -0.168038 -0.176163 -0.183811 -0.190994 -0.197722 -0.204004 -0.209862 -0.215307 -0.220437 -0.129937 -0.137227 -0.144154 -0.150713 -0.156905 -0.16273 -0.168194 -0.173303 -0.17806 -0.182413 -0.107641 -0.113871 -0.119814 -0.125458 -0.130796 -0.135824 -0.140539 -0.144943 -0.149033 -0.152781 -0.092163 -0.0976144 -0.102825 -0.107781 -0.112475 -0.116898 -0.121048 -0.124923 -0.128521 -0.131837 -0.0837758 -0.0887382 -0.0934877 -0.0980141 -0.10231 -0.106372 -0.110195 -0.113779 -0.117124 -0.120231 -0.0144764 -0.0799192 -0.143705 -0.198831 -0.24889 -0.2946 -0.335028 -0.37125 -0.401077 -0.424856 -0.0346974 -0.0850318 -0.132931 -0.17345 -0.210077 -0.244222 -0.275385 -0.30237 -0.326364 -0.346716 -0.0470669 -0.0870332 -0.121962 -0.151543 -0.178529 -0.203805 -0.227019 -0.247688 -0.266553 -0.283412 -0.052446 -0.0829649 -0.10739 -0.128295 -0.148065 -0.16697 -0.184656 -0.200935 -0.216153 -0.230131 -0.0513526 -0.073737 -0.0909768 -0.106112 -0.12098 -0.135546 -0.14943 -0.162502 -0.174541 -0.185988 -0.0460937 -0.0622452 -0.0749044 -0.086392 -0.097897 -0.10931 -0.120321 -0.130821 -0.140785 -0.150329 -0.0395897 -0.051381 -0.0611077 -0.0702197 -0.0793932 -0.0885391 -0.0974549 -0.106059 -0.114331 -0.122297 -0.0334876 -0.0423859 -0.050209 -0.0577281 -0.0652847 -0.0728208 -0.0802174 -0.0874159 -0.0943922 -0.101141 -0.0286737 -0.0358117 -0.0424689 -0.0489741 -0.0554777 -0.0619475 -0.0683176 -0.0745464 -0.0806089 -0.0864877 -0.0258721 -0.0322275 -0.0383711 -0.0443984 -0.0503726 -0.0562799 -0.0620837 -0.0677549 -0.0732721 -0.078615 0.215139 0.216135 0.218538 0.22182 0.226312 0.229613 0.232092 0.222033 0.197923 0.0903734 0.206841 0.207371 0.208719 0.210265 0.211921 0.211154 0.207191 0.188937 0.152487 0.0546819 0.196943 0.196989 0.197196 0.196879 0.195629 0.190963 0.181452 0.158219 0.117232 0.036156 0.185316 0.184833 0.183814 0.18157 0.17743 0.169251 0.155152 0.129314 0.0868068 0.0186265 0.172013 0.170999 0.16878 0.164722 0.158008 0.14702 0.129718 0.103002 0.0617277 0.00442823 0.157347 0.155855 0.152586 0.147008 0.13831 0.12542 0.106533 0.0803851 0.0429081 -0.00436322 0.142005 0.140134 0.136076 0.129411 0.119475 0.105657 0.0866737 0.0622229 0.0298109 -0.00865102 0.127156 0.125039 0.120507 0.113246 0.102814 0.0889179 0.0708368 0.0486421 0.0211583 -0.0101708 0.11454 0.11231 0.107593 0.100164 0.0897724 0.076307 0.0594686 0.0394416 0.0158619 -0.0102821 0.106575 0.104321 0.0995952 0.0922188 0.0820449 0.0690505 0.0531548 0.0345689 0.0132889 -0.00996324 0.250782 0.252946 0.258525 0.267242 0.280901 0.299022 0.326188 0.361188 0.413911 0.481371 0.248262 0.250351 0.255742 0.264134 0.277301 0.294616 0.32057 0.353478 0.402549 0.463904 0.24551 0.24752 0.252703 0.260733 0.273341 0.289714 0.314247 0.344532 0.389102 0.442283 0.24254 0.244468 0.249425 0.257059 0.269046 0.284349 0.307264 0.334401 0.373699 0.416524 0.239365 0.24121 0.245926 0.253135 0.264439 0.278558 0.299664 0.323139 0.356491 0.386662 0.236 0.237763 0.242225 0.248983 0.259545 0.272377 0.291484 0.310814 0.337645 0.352749 0.232462 0.234147 0.238349 0.24464 0.254408 0.265872 0.282795 0.297553 0.317374 0.314885 0.22877 0.230394 0.234345 0.240174 0.249128 0.259196 0.273792 0.283651 0.296029 0.273159 0.224938 0.226512 0.230222 0.235596 0.243717 0.252374 0.264482 0.269167 0.273547 0.226667 0.220954 0.222408 0.225755 0.230504 0.237502 0.244415 0.253366 0.252396 0.247414 0.173543 0.262302 0.264833 0.270976 0.280855 0.295616 0.314655 0.341212 0.369956 0.407944 0.417512 0.262246 0.264785 0.270972 0.280676 0.295716 0.315723 0.343562 0.375015 0.419036 0.445384 0.261957 0.264472 0.270669 0.280442 0.295373 0.315102 0.344317 0.377506 0.425434 0.465436 0.261435 0.263926 0.270132 0.279928 0.294949 0.314721 0.344094 0.37979 0.431031 0.481812 0.260672 0.263137 0.269331 0.279093 0.294155 0.31411 0.34356 0.381249 0.435341 0.494424 0.25966 0.262093 0.268248 0.277939 0.292953 0.312944 0.342581 0.379453 0.437514 0.503459 0.258394 0.260788 0.266879 0.27646 0.29135 0.311235 0.340871 0.378666 0.435637 0.509383 0.256872 0.259219 0.265221 0.274651 0.289344 0.308999 0.338386 0.376387 0.43379 0.504685 0.255094 0.257387 0.263273 0.272509 0.286933 0.306224 0.335111 0.372646 0.42965 0.502301 0.253062 0.255294 0.261039 0.270037 0.284116 0.302898 0.331045 0.367587 0.423003 0.494418 0.216962 0.215541 0.212542 0.207772 0.201 0.192004 0.180467 0.1662 0.148844 0.128533 0.221965 0.22073 0.218093 0.213826 0.207614 0.199115 0.187856 0.173495 0.155404 0.133651 0.229435 0.228543 0.226599 0.223328 0.218304 0.210977 0.200603 0.186494 0.167533 0.143489 0.237501 0.237087 0.236137 0.234339 0.231189 0.225883 0.217369 0.204324 0.184996 0.158323 0.24495 0.245098 0.245358 0.24541 0.244751 0.242327 0.236909 0.226171 0.207743 0.178608 0.251129 0.251863 0.253424 0.255527 0.257785 0.258956 0.257875 0.250972 0.235557 0.204746 0.255814 0.2571 0.25993 0.264093 0.269429 0.274635 0.2789 0.277359 0.267624 0.236715 0.259058 0.260823 0.264798 0.270864 0.279179 0.288537 0.298748 0.303888 0.302315 0.272952 0.261056 0.263211 0.268155 0.275854 0.286815 0.300087 0.31631 0.329185 0.337874 0.311047 0.262064 0.26449 0.27019 0.279197 0.292356 0.308977 0.33088 0.352191 0.37452 0.356206 0.113717 0.107547 0.101275 0.0949485 0.0885433 0.0820584 0.0755143 0.0689366 0.0623505 0.0557714 0.117371 0.110514 0.10351 0.0965014 0.0894181 0.0822244 0.0749402 0.0676016 0.0602464 0.0528888 0.124569 0.116205 0.107582 0.0991407 0.090721 0.0821914 0.0735552 0.0648651 0.0561958 0.0475191 0.135875 0.125171 0.11395 0.103282 0.0928574 0.0823501 0.071724 0.061062 0.0504478 0.0398476 0.152073 0.138116 0.123116 0.109297 0.0961212 0.0829241 0.0696052 0.0563129 0.0430144 0.02981 0.174046 0.155841 0.13563 0.117563 0.100774 0.0840632 0.0672437 0.0505947 0.0339711 0.0174747 0.202866 0.179449 0.152333 0.128687 0.107163 0.0857816 0.0642969 0.0436177 0.0229383 0.00246482 0.238933 0.209566 0.173943 0.143503 0.116118 0.089066 0.0623904 0.0356869 0.00978926 -0.0153144 0.281849 0.245486 0.20038 0.162117 0.127094 0.0924244 0.0590745 0.0261243 -0.0054406 -0.0355439 0.331115 0.286967 0.233663 0.186297 0.141229 0.0969272 0.0540758 0.0135134 -0.0241425 -0.0590964 0.0492188 0.0427141 0.0362766 0.0299228 0.0236677 0.0175252 0.0115078 0.00562654 -0.000108451 -0.00568741 0.0455564 0.0382793 0.0310832 0.0239906 0.0170219 0.0101964 0.00353098 -0.00295947 -0.00926183 -0.0153402 0.0388707 0.0302927 0.0218143 0.0134573 0.00524177 -0.00281334 -0.0106906 -0.0183755 -0.0258566 -0.0330427 0.0292991 0.0188418 0.00850068 -0.00170631 -0.0117631 -0.0216547 -0.0313677 -0.0408912 -0.050223 -0.0592261 0.0167246 0.00376531 -0.0090607 -0.0217441 -0.0342758 -0.0466493 -0.0588634 -0.0709223 -0.0828565 -0.0947102 0.00117029 -0.0149419 -0.030886 -0.0466849 -0.0623598 -0.0779328 -0.0934255 -0.108846 -0.124252 -0.140406 -0.0176701 -0.0374791 -0.0570076 -0.0762973 -0.0954027 -0.114411 -0.133448 -0.152622 -0.172268 -0.194219 -0.0398223 -0.0638475 -0.0874557 -0.110695 -0.133594 -0.156172 -0.178486 -0.200642 -0.223915 -0.251097 -0.0643526 -0.0919904 -0.118626 -0.144522 -0.170021 -0.195502 -0.221298 -0.247688 -0.276886 -0.309177 -0.0913931 -0.121015 -0.148114 -0.173093 -0.196633 -0.219692 -0.243382 -0.269171 -0.302871 -0.34734 -0.0189741 -0.0378873 -0.0542174 -0.0670129 -0.0756475 -0.079966 -0.0801665 -0.0768381 -0.0706662 -0.0626276 -0.0535752 -0.0445889 -0.0365852 -0.0304424 -0.0267712 -0.0243411 -0.0213495 -0.0150129 -0.00649363 -0.000659961 -0.0301737 -0.049832 -0.0656159 -0.0770837 -0.083982 -0.0864045 -0.0847503 -0.0797675 -0.07222 -0.0631021 -0.0532362 -0.0436779 -0.0354086 -0.0293605 -0.0262918 -0.0245373 -0.0220764 -0.0155167 -0.00621095 -0.000209939 -0.0506697 -0.0711401 -0.0853958 -0.0941217 -0.0977213 -0.0967282 -0.0919296 -0.0842374 -0.0745099 -0.0637119 -0.052576 -0.0421025 -0.0333914 -0.0274732 -0.0254416 -0.0248173 -0.0232776 -0.016389 -0.00586691 0.000499577 -0.0799646 -0.100367 -0.111618 -0.115865 -0.114511 -0.108919 -0.10006 -0.0891218 -0.0769182 -0.0642646 -0.0517125 -0.0401931 -0.0309495 -0.0251659 -0.0243379 -0.0250387 -0.0246005 -0.0173831 -0.00562041 0.00128349 -0.116456 -0.135163 -0.141994 -0.139921 -0.132199 -0.121017 -0.107768 -0.0935852 -0.0790438 -0.0647034 -0.0508563 -0.0383713 -0.0286064 -0.0228979 -0.0231255 -0.0249817 -0.0256309 -0.0182239 -0.00554713 0.00197416 -0.156232 -0.171945 -0.173463 -0.163362 -0.148213 -0.131354 -0.114041 -0.0970514 -0.0806257 -0.0650048 -0.0502028 -0.0370068 -0.0268296 -0.0210897 -0.0219757 -0.0245746 -0.0261118 -0.0187142 -0.00563596 0.00247028 -0.193149 -0.206408 -0.201914 -0.182779 -0.16066 -0.138998 -0.118371 -0.0992568 -0.0815445 -0.0651393 -0.0498036 -0.0362296 -0.0258229 -0.019982 -0.0210645 -0.023888 -0.0260133 -0.0187791 -0.00582931 0.00274431 -0.222938 -0.235447 -0.2241 -0.196655 -0.169381 -0.143972 -0.120893 -0.100347 -0.0818835 -0.0651177 -0.0496146 -0.0359679 -0.0255221 -0.0195807 -0.0204747 -0.023079 -0.0254652 -0.0184626 -0.00606564 0.00282208 -0.247801 -0.258399 -0.239484 -0.206021 -0.175114 -0.146864 -0.122102 -0.100648 -0.0817998 -0.0649534 -0.0495355 -0.0360434 -0.0257101 -0.0196881 -0.0201714 -0.0222581 -0.024655 -0.0178741 -0.00630163 0.00275408 -0.27401 -0.274435 -0.248647 -0.211208 -0.17795 -0.147744 -0.121977 -0.100023 -0.0810806 -0.0644083 -0.0493493 -0.0362969 -0.026287 -0.0202237 -0.0201481 -0.0214151 -0.0236452 -0.0170183 -0.00650484 0.00257576 -0.308932 -0.277548 -0.248933 -0.210856 -0.177396 -0.146581 -0.120523 -0.0984259 -0.0796418 -0.0634089 -0.0490469 -0.0368204 -0.0274545 -0.0215557 -0.0205284 -0.0205728 -0.0220322 -0.0158984 -0.00662944 0.00231657 -0.321942 -0.277338 -0.247529 -0.208167 -0.174669 -0.143796 -0.118047 -0.0962824 -0.0779207 -0.0621646 -0.0483479 -0.0366909 -0.02776 -0.0219073 -0.0206307 -0.0200934 -0.0212758 -0.0152168 -0.00667218 0.00214828 -0.325214 -0.275014 -0.245278 -0.204883 -0.171587 -0.140852 -0.115522 -0.0941443 -0.0762174 -0.0609223 -0.0476216 -0.0365021 -0.0279864 -0.0223287 -0.0207324 -0.0196785 -0.0205674 -0.0145626 -0.00669627 0.0019792 -0.324926 -0.272703 -0.243234 -0.202082 -0.169061 -0.138409 -0.11338 -0.0922931 -0.0747337 -0.0598731 -0.0470896 -0.0365137 -0.0283966 -0.0228858 -0.0208727 -0.0192278 -0.0197785 -0.0138675 -0.00672963 0.0017881 -0.323366 -0.270771 -0.241383 -0.199599 -0.166887 -0.136266 -0.111442 -0.0905858 -0.0733635 -0.0589413 -0.0466995 -0.0366896 -0.0289629 -0.0235407 -0.0210358 -0.0187323 -0.018915 -0.0131292 -0.00677182 0.00157409 -0.321331 -0.268221 -0.239882 -0.197568 -0.165061 -0.134398 -0.109722 -0.0890002 -0.072083 -0.0581028 -0.0464197 -0.0369889 -0.029642 -0.0242645 -0.0212119 -0.0182072 -0.0179996 -0.0123614 -0.00681908 0.0013401 -0.319234 -0.266443 -0.239058 -0.196233 -0.163582 -0.132738 -0.108289 -0.0875756 -0.0709186 -0.0573719 -0.0462518 -0.0374 -0.0304141 -0.0250423 -0.0213977 -0.0176633 -0.0170466 -0.0115751 -0.00687012 0.00108809 -0.317829 -0.266052 -0.237037 -0.193814 -0.162019 -0.131248 -0.106704 -0.0862722 -0.0698969 -0.0567641 -0.0461985 -0.0379135 -0.0312575 -0.0258592 -0.0215905 -0.0171098 -0.0160686 -0.0107804 -0.00692462 0.000819755 -0.318001 -0.26611 -0.237326 -0.193718 -0.16156 -0.130464 -0.105833 -0.0852222 -0.0690315 -0.0562917 -0.0462586 -0.0385157 -0.0321555 -0.0266982 -0.0217875 -0.0165567 -0.0150802 -0.00998821 -0.0069821 0.00053735 -0.320105 -0.26658 -0.238072 -0.193935 -0.161417 -0.129983 -0.105156 -0.0844467 -0.0683561 -0.0559657 -0.0464286 -0.0391901 -0.0330883 -0.0275425 -0.0219866 -0.0160153 -0.014097 -0.00921016 -0.00704208 0.000243323 ) ; boundaryField { inlet { type freestreamPressure; freestreamValue uniform 0; value nonuniform List<scalar> 40 ( 0.215139 0.206841 0.196943 0.185316 0.172013 0.157347 0.142005 0.127156 0.11454 0.106575 0.250782 0.248262 0.24551 0.24254 0.239365 0.236 0.232462 0.22877 0.224938 0.220954 0.262302 0.262246 0.261957 0.261435 0.260672 0.25966 0.258394 0.256872 0.255094 0.253062 0.216962 0.221965 0.229435 0.237501 0.24495 0.251129 0.255814 0.259058 0.261056 0.262064 ) ; } outlet { type freestreamPressure; freestreamValue uniform 0; value nonuniform List<scalar> 40 ( -2.5266e-07 -3.73618e-07 -4.96845e-07 -5.88421e-07 -6.08279e-07 -5.33728e-07 -3.83135e-07 -2.12749e-07 -7.91895e-08 -8.86237e-09 -5.63866e-10 -1.00823e-09 -3.94516e-11 -1.29071e-09 -7.94166e-09 -2.23457e-08 -4.57962e-08 -7.83844e-08 -1.19228e-07 -1.68082e-07 4.23314e-07 3.62788e-07 3.01071e-07 2.38222e-07 1.77664e-07 1.23111e-07 7.74305e-08 4.24001e-08 1.852e-08 4.91174e-09 -4.7287e-10 -1.5797e-09 1.2365e-08 7.05306e-08 1.88363e-07 3.4141e-07 4.77291e-07 5.53142e-07 5.58789e-07 5.06736e-07 ) ; } top { type symmetryPlane; } bottom { type symmetryPlane; } cylinder { type zeroGradient; } frontandback { type empty; } } // ************************************************************************* //
[ "jezvonek@gmail.com" ]
jezvonek@gmail.com
39d8f4989852c44ff8c5f718c301a5c3c6063fed
ab14bcc581a0762ca900e1cf725ec4ed744e5cd8
/slam6d-code/.svn/pristine/39/39d8f4989852c44ff8c5f718c301a5c3c6063fed.svn-base
560a03fa0fde18b007f9c0a1aeb8f65f26908f4b
[]
no_license
Shitong91/HNSW
1d1549b3bfaf504a86005a4c7875321aba6cf15f
fe271bb471214149a557fdc47531bc581647a4f6
refs/heads/master
2020-07-01T03:37:02.071330
2019-08-07T11:25:33
2019-08-07T11:25:33
201,035,224
0
0
null
null
null
null
UTF-8
C++
false
false
3,652
/** * @file * @brief * * @author Thomas Escher */ #ifndef CACHE_MANAGER_H #define CACHE_MANAGER_H #include <vector> #include <string> #if defined(_WINDEF_) && defined(__CYGWIN__) #error boost-interprocess is incompatible with windef.h on cygwin #endif // segment manager, allocators, pointers, ... #include <boost/interprocess/managed_shared_memory.hpp> #include <boost/interprocess/allocators/allocator.hpp> // hide the boost namespace and shorten others namespace { namespace ip = boost::interprocess; // the segment manager providing the allocations typedef ip::managed_shared_memory::segment_manager SegmentManager; } #include "scanserver/cache/cacheObject.h" #include "scanserver/cache/cacheHandler.h" /** * @brief Central cache management for CacheObjects, handling cache misses and calling CacheHandlers and allocating memory for contents. * * The CacheManager creates and handles CacheObjects in the shared memory given by the segment manager in the constructor. It also opens a shared memory exclusively for CacheObjects' contents. * Cache misses in CacheObject should invoke loadCacheObject to have it loaded into memory. This CacheObject's CacheHandler is called, which in turn requests memory via allocateCacheObject. This function tries to allocate enough memory and flushes out other CacheObjects which are not read-locked in order to do the former. * The flushing behaviour determines which CacheObjects are to be removed first and can be altered. (TODO) */ class CacheManager { public: /** * The SegmentManager comes from another shared memory where COs have to be created in. * A CacheManager owned shared memory will be opened to create the CO contents in. */ CacheManager(SegmentManager* sm, const char* shm_name, std::size_t cache_size); /** * Deletes all CacheObjects and closes the shared memory. */ ~CacheManager(); /** * Allocates a CacheObject in shared memory. */ CacheObject* createCacheObject(); /** * Request a CacheObject to be loaded into memory, causing its CacheHandler to be called. * If no resource was to be found, the function returns false. If an error occured (e.g. IO/stream/conversion errors) it will throw. * @return if the CacheObject was loaded successfully * @throws when no memory could be allocated (see allocateCacheObject) or an error occured in the CacheHandler implementation */ bool loadCacheObject(CacheObject* obj); /** * Allocates enough space for a cache object. This will flush other CacheObjects if the exclusive shared memory is full. * @return Pointer to the allocated space in the object * @throws when no memory could be allocated because removing all remaining (non read-locked) CacheObjects removed didn't free enough memory. */ unsigned char* allocateCacheObject(CacheObject* obj, unsigned int size); /** * Invalidate a CacheObject and its handler. */ void invalidateCacheObject(CacheObject* obj); /** * Change the flushing behaviour by setting a specific heuristic. */ // TODO private: SegmentManager* m_segment_manager; ip::managed_shared_memory* m_msm; std::string m_shm_name; std::vector<CacheObject*> m_objects, m_loaded; /** * Allocates memory for a CO. Will throw a bad_alloc if it fails so. * Only to be called within allocateCacheObject. */ unsigned char* load(CacheObject* obj, unsigned int size); /** * Removes cached data from a CO and marks it as unloaded. * Only to be called when an exclusive lock has been obtained inside allocateCacheObject. */ void unload(CacheObject* obj); }; #endif //CACHE_MANAGER_H
[ "dust_1028@163.com" ]
dust_1028@163.com
1459e3c786fe88152ce94089b37555da49aec6e1
02f60304adef1ae14e4517dc264b731e25fa8132
/findMedianSortedArrays.cpp
2464be279dd5f501da5feea601ad7b32238eaa63
[]
no_license
raytroop/leetcode365
896043f66567e2cddb01c0fee27114306ddf97c3
ad1457c010c1e6393ba423372be3cdec1ee7735a
refs/heads/master
2022-03-23T23:35:30.215849
2020-01-03T04:42:18
2020-01-03T04:42:18
175,425,053
0
0
null
null
null
null
UTF-8
C++
false
false
2,002
cpp
// https://leetcode.com/problems/median-of-two-sorted-arrays/ /* There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). */ /* Binary Search Template [l, r] def binary_search(l, r): while l < r: m = l + (r - l) // 2 if f(m): return m # optional if g(m): r = m # new range [l, m) else: l = m + 1 # new range [m+1, r] return l # or not found, MAKE SURE RETURN `l` find the smallest index to satisfy `g(index)` */ #include <vector> #include <climits> #include <algorithm> using std::vector; // https://zxi.mytechroad.com/blog/algorithms/binary-search/leetcode-4-median-of-two-sorted-arrays/ // Binary Search double findMedianSortedArrays(vector<int> &nums1, vector<int> &nums2) { const int n1 = nums1.size(); const int n2 = nums2.size(); // Make sure n1 <= n2 if (n1 > n2) return findMedianSortedArrays(nums2, nums1); const int k = (n1 + n2 + 1) / 2; // ceil, ceil((n1 + n2) / 2) int l = 0; int r = n1; // binary search in nums1 while (l < r) { // fetch `m1` numbers from nums1, `k - m1` numbers from nums2 // nums1[0, 1, 2, ... m1-1 | m1, ...] // nums2[0, 1, 2, ... k - m1 - 1 | m2, ...] const int m1 = l + (r - l) / 2; const int m2 = k - m1; if (nums1[m1] >= nums2[m2 - 1]) // `mid` worked as index r = m1; else l = m1 + 1; } const int m1 = l; // `l` is the smallest index so that `nums1[index] >= nums2[k - index - 1]` const int m2 = k - l; const int c1 = std::max(m1 == 0 ? INT_MIN : nums1[m1 - 1], m2 == 0 ? INT_MIN : nums2[m2 - 1]); if ((n1 + n2) % 2 == 1) return c1; const int c2 = std::min(m1 == n1 ? INT_MAX : nums1[m1], m2 == n2 ? INT_MAX : nums2[m2]); return (c1 + c2) * 0.5; }
[ "raytroop@gmail.com" ]
raytroop@gmail.com
bf937be3f71c7bf1aeaf3b2fea99c74e0cb8bd6b
3841f7991232e02c850b7e2ff6e02712e9128b17
/小浪底泥沙三维/EV_Xld/jni/src/EV_Graphic_CSharp/wrapper/edgelistbuilder_wrapper.cpp
fd0e516a674797c555ca48caffcf32f4dc10a72d
[]
no_license
15831944/BeijingEVProjects
62bf734f1cb0a8be6fed42cf6b207f9dbdf99e71
3b5fa4c4889557008529958fc7cb51927259f66e
refs/heads/master
2021-07-22T14:12:15.106616
2017-10-15T11:33:06
2017-10-15T11:33:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
42,608
cpp
/* This file is produced by the P/Invoke AutoWrapper Utility Copyright (c) 2012 by EarthView Image Inc */ #include "stableheaders.h" #include "graphic/edgelistbuilder.h" namespace EarthView { namespace World { namespace Core { } } } namespace EarthView { namespace World { namespace Graphic { extern "C" EV_DLL_EXPORT ev_uint64 _stdcall Get_EarthView_World_Graphic_CEdgeData_CTriangle_indexSet( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::CTriangle* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::CTriangle*) pObjectXXXX; ev_uint64 objXXXX = ptrNativeObject->indexSet; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_CTriangle_indexSet( void *pObjectXXXX, ev_uint64 value ) { ((EarthView::World::Graphic::CEdgeData::CTriangle*)pObjectXXXX)->indexSet = value; } extern "C" EV_DLL_EXPORT ev_uint64 _stdcall Get_EarthView_World_Graphic_CEdgeData_CTriangle_vertexSet( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::CTriangle* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::CTriangle*) pObjectXXXX; ev_uint64 objXXXX = ptrNativeObject->vertexSet; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_CTriangle_vertexSet( void *pObjectXXXX, ev_uint64 value ) { ((EarthView::World::Graphic::CEdgeData::CTriangle*)pObjectXXXX)->vertexSet = value; } extern "C" EV_DLL_EXPORT ev_uint64* _stdcall Get_EarthView_World_Graphic_CEdgeData_CTriangle_vertIndex( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::CTriangle* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::CTriangle*) pObjectXXXX; ev_uint64 *objXXXX = ptrNativeObject->vertIndex; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_CTriangle_vertIndex( void *pObjectXXXX, ev_uint64* value ) { memcpy(((EarthView::World::Graphic::CEdgeData::CTriangle*)pObjectXXXX)->vertIndex, value, sizeof((EarthView::World::Graphic::CEdgeData::CTriangle*)pObjectXXXX)->vertIndex); } extern "C" EV_DLL_EXPORT ev_uint64* _stdcall Get_EarthView_World_Graphic_CEdgeData_CTriangle_sharedVertIndex( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::CTriangle* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::CTriangle*) pObjectXXXX; ev_uint64 *objXXXX = ptrNativeObject->sharedVertIndex; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_CTriangle_sharedVertIndex( void *pObjectXXXX, ev_uint64* value ) { memcpy(((EarthView::World::Graphic::CEdgeData::CTriangle*)pObjectXXXX)->sharedVertIndex, value, sizeof((EarthView::World::Graphic::CEdgeData::CTriangle*)pObjectXXXX)->sharedVertIndex); } extern "C" EV_DLL_EXPORT ev_uint64* _stdcall Get_EarthView_World_Graphic_CEdgeData_CEdge_triIndex( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::CEdge* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::CEdge*) pObjectXXXX; ev_uint64 *objXXXX = ptrNativeObject->triIndex; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_CEdge_triIndex( void *pObjectXXXX, ev_uint64* value ) { memcpy(((EarthView::World::Graphic::CEdgeData::CEdge*)pObjectXXXX)->triIndex, value, sizeof((EarthView::World::Graphic::CEdgeData::CEdge*)pObjectXXXX)->triIndex); } extern "C" EV_DLL_EXPORT ev_uint64* _stdcall Get_EarthView_World_Graphic_CEdgeData_CEdge_vertIndex( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::CEdge* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::CEdge*) pObjectXXXX; ev_uint64 *objXXXX = ptrNativeObject->vertIndex; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_CEdge_vertIndex( void *pObjectXXXX, ev_uint64* value ) { memcpy(((EarthView::World::Graphic::CEdgeData::CEdge*)pObjectXXXX)->vertIndex, value, sizeof((EarthView::World::Graphic::CEdgeData::CEdge*)pObjectXXXX)->vertIndex); } extern "C" EV_DLL_EXPORT ev_uint64* _stdcall Get_EarthView_World_Graphic_CEdgeData_CEdge_sharedVertIndex( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::CEdge* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::CEdge*) pObjectXXXX; ev_uint64 *objXXXX = ptrNativeObject->sharedVertIndex; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_CEdge_sharedVertIndex( void *pObjectXXXX, ev_uint64* value ) { memcpy(((EarthView::World::Graphic::CEdgeData::CEdge*)pObjectXXXX)->sharedVertIndex, value, sizeof((EarthView::World::Graphic::CEdgeData::CEdge*)pObjectXXXX)->sharedVertIndex); } extern "C" EV_DLL_EXPORT ev_bool _stdcall Get_EarthView_World_Graphic_CEdgeData_CEdge_degenerate( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::CEdge* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::CEdge*) pObjectXXXX; ev_bool objXXXX = ptrNativeObject->degenerate; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_CEdge_degenerate( void *pObjectXXXX, ev_bool value ) { ((EarthView::World::Graphic::CEdgeData::CEdge*)pObjectXXXX)->degenerate = value; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_push_back_void_CVector4(void *pObjectXXXX, _in void* t ) { EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; ptrNativeObject->push_back(*(EarthView::World::Spatial::Math::CVector4*)t); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_pop_back_void(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; ptrNativeObject->pop_back(); } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_front_CVector4(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; EarthView::World::Spatial::Math::CVector4& objXXXX = ptrNativeObject->front(); EarthView::World::Spatial::Math::CVector4 *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_back_CVector4(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; EarthView::World::Spatial::Math::CVector4& objXXXX = ptrNativeObject->back(); EarthView::World::Spatial::Math::CVector4 *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_swap_void_TriangleFaceNormalList(void *pObjectXXXX, _inout void* rhs ) { EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; ptrNativeObject->swap(*(EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*)rhs); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_insert_void_ev_uint32_CVector4(void *pObjectXXXX, _in ev_uint32 pos, _in void* t ) { EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; ptrNativeObject->insert(pos, *(EarthView::World::Spatial::Math::CVector4*)t); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_remove_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 pos ) { EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; ptrNativeObject->remove(pos); } extern "C" EV_DLL_EXPORT ev_bool _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_empty_ev_bool(void *pObjectXXXX ) { const EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; ev_bool objXXXX = ptrNativeObject->empty(); return objXXXX; } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_OperatorIndex_CVector4_ev_size_t(void *pObjXXXX, _in ev_uint64 n ) { EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList& objYYYY = *(EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjXXXX; EarthView::World::Spatial::Math::CVector4& objXXXX = objYYYY[n]; EarthView::World::Spatial::Math::CVector4 *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_at_CVector4_ev_size_t(void *pObjectXXXX, _in ev_uint64 n ) { EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; EarthView::World::Spatial::Math::CVector4& objXXXX = ptrNativeObject->at(n); EarthView::World::Spatial::Math::CVector4 *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT ev_uint64 _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_size_ev_size_t(void *pObjectXXXX ) { const EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; ev_size_t objXXXX = ptrNativeObject->size(); return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_resize_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 newSize ) { EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; ptrNativeObject->resize(newSize); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_reserve_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 count ) { EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; ptrNativeObject->reserve(count); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleFaceNormalList_clear_void(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*) pObjectXXXX; ptrNativeObject->clear(); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_push_back_void_ev_char(void *pObjectXXXX, _in ev_char& t ) { EarthView::World::Graphic::CEdgeData::TriangleLightFacingList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjectXXXX; ptrNativeObject->push_back(t); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_pop_back_void(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::TriangleLightFacingList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjectXXXX; ptrNativeObject->pop_back(); } extern "C" EV_DLL_EXPORT ev_char& _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_front_ev_char(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::TriangleLightFacingList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjectXXXX; ev_char& objXXXX = ptrNativeObject->front(); return objXXXX; } extern "C" EV_DLL_EXPORT ev_char& _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_back_ev_char(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::TriangleLightFacingList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjectXXXX; ev_char& objXXXX = ptrNativeObject->back(); return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_insert_void_ev_uint32_ev_char(void *pObjectXXXX, _in ev_uint32 pos, _in ev_char& t ) { EarthView::World::Graphic::CEdgeData::TriangleLightFacingList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjectXXXX; ptrNativeObject->insert(pos, t); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_remove_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 pos ) { EarthView::World::Graphic::CEdgeData::TriangleLightFacingList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjectXXXX; ptrNativeObject->remove(pos); } extern "C" EV_DLL_EXPORT ev_bool _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_empty_ev_bool(void *pObjectXXXX ) { const EarthView::World::Graphic::CEdgeData::TriangleLightFacingList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjectXXXX; ev_bool objXXXX = ptrNativeObject->empty(); return objXXXX; } extern "C" EV_DLL_EXPORT ev_char& _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_OperatorIndex_ev_char_ev_size_t(void *pObjXXXX, _in ev_uint64 n ) { EarthView::World::Graphic::CEdgeData::TriangleLightFacingList& objYYYY = *(EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjXXXX; ev_char& objXXXX = objYYYY[n]; return objXXXX; } extern "C" EV_DLL_EXPORT ev_char& _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_at_ev_char_ev_size_t(void *pObjectXXXX, _in ev_uint64 n ) { EarthView::World::Graphic::CEdgeData::TriangleLightFacingList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjectXXXX; ev_char& objXXXX = ptrNativeObject->at(n); return objXXXX; } extern "C" EV_DLL_EXPORT ev_uint64 _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_size_ev_size_t(void *pObjectXXXX ) { const EarthView::World::Graphic::CEdgeData::TriangleLightFacingList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjectXXXX; ev_size_t objXXXX = ptrNativeObject->size(); return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_resize_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 newSize ) { EarthView::World::Graphic::CEdgeData::TriangleLightFacingList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjectXXXX; ptrNativeObject->resize(newSize); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_reserve_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 count ) { EarthView::World::Graphic::CEdgeData::TriangleLightFacingList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjectXXXX; ptrNativeObject->reserve(count); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleLightFacingList_clear_void(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::TriangleLightFacingList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*) pObjectXXXX; ptrNativeObject->clear(); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_push_back_void_CTriangle(void *pObjectXXXX, _in void* t ) { EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; ptrNativeObject->push_back(*(EarthView::World::Graphic::CEdgeData::CTriangle*)t); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_pop_back_void(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; ptrNativeObject->pop_back(); } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_front_CTriangle(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::CTriangle& objXXXX = ptrNativeObject->front(); EarthView::World::Graphic::CEdgeData::CTriangle *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_back_CTriangle(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::CTriangle& objXXXX = ptrNativeObject->back(); EarthView::World::Graphic::CEdgeData::CTriangle *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_swap_void_TriangleList(void *pObjectXXXX, _inout void* rhs ) { EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; ptrNativeObject->swap(*(EarthView::World::Graphic::CEdgeData::TriangleList*)rhs); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_insert_void_ev_uint32_CTriangle(void *pObjectXXXX, _in ev_uint32 pos, _in void* t ) { EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; ptrNativeObject->insert(pos, *(EarthView::World::Graphic::CEdgeData::CTriangle*)t); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_remove_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 pos ) { EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; ptrNativeObject->remove(pos); } extern "C" EV_DLL_EXPORT ev_bool _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_empty_ev_bool(void *pObjectXXXX ) { const EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; ev_bool objXXXX = ptrNativeObject->empty(); return objXXXX; } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_OperatorIndex_CTriangle_ev_size_t(void *pObjXXXX, _in ev_uint64 n ) { EarthView::World::Graphic::CEdgeData::TriangleList& objYYYY = *(EarthView::World::Graphic::CEdgeData::TriangleList*) pObjXXXX; EarthView::World::Graphic::CEdgeData::CTriangle& objXXXX = objYYYY[n]; EarthView::World::Graphic::CEdgeData::CTriangle *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_at_CTriangle_ev_size_t(void *pObjectXXXX, _in ev_uint64 n ) { EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::CTriangle& objXXXX = ptrNativeObject->at(n); EarthView::World::Graphic::CEdgeData::CTriangle *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT ev_uint64 _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_size_ev_size_t(void *pObjectXXXX ) { const EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; ev_size_t objXXXX = ptrNativeObject->size(); return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_resize_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 newSize ) { EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; ptrNativeObject->resize(newSize); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_reserve_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 count ) { EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; ptrNativeObject->reserve(count); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_TriangleList_clear_void(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::TriangleList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::TriangleList*) pObjectXXXX; ptrNativeObject->clear(); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_push_back_void_CEdge(void *pObjectXXXX, _in void* t ) { EarthView::World::Graphic::CEdgeData::EdgeList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeList*) pObjectXXXX; ptrNativeObject->push_back(*(EarthView::World::Graphic::CEdgeData::CEdge*)t); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_pop_back_void(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeList*) pObjectXXXX; ptrNativeObject->pop_back(); } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_front_CEdge(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeList*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::CEdge& objXXXX = ptrNativeObject->front(); EarthView::World::Graphic::CEdgeData::CEdge *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_back_CEdge(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeList*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::CEdge& objXXXX = ptrNativeObject->back(); EarthView::World::Graphic::CEdgeData::CEdge *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_insert_void_ev_uint32_CEdge(void *pObjectXXXX, _in ev_uint32 pos, _in void* t ) { EarthView::World::Graphic::CEdgeData::EdgeList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeList*) pObjectXXXX; ptrNativeObject->insert(pos, *(EarthView::World::Graphic::CEdgeData::CEdge*)t); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_remove_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 pos ) { EarthView::World::Graphic::CEdgeData::EdgeList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeList*) pObjectXXXX; ptrNativeObject->remove(pos); } extern "C" EV_DLL_EXPORT ev_bool _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_empty_ev_bool(void *pObjectXXXX ) { const EarthView::World::Graphic::CEdgeData::EdgeList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeList*) pObjectXXXX; ev_bool objXXXX = ptrNativeObject->empty(); return objXXXX; } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_OperatorIndex_CEdge_ev_size_t(void *pObjXXXX, _in ev_uint64 n ) { EarthView::World::Graphic::CEdgeData::EdgeList& objYYYY = *(EarthView::World::Graphic::CEdgeData::EdgeList*) pObjXXXX; EarthView::World::Graphic::CEdgeData::CEdge& objXXXX = objYYYY[n]; EarthView::World::Graphic::CEdgeData::CEdge *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_at_CEdge_ev_size_t(void *pObjectXXXX, _in ev_uint64 n ) { EarthView::World::Graphic::CEdgeData::EdgeList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeList*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::CEdge& objXXXX = ptrNativeObject->at(n); EarthView::World::Graphic::CEdgeData::CEdge *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT ev_uint64 _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_size_ev_size_t(void *pObjectXXXX ) { const EarthView::World::Graphic::CEdgeData::EdgeList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeList*) pObjectXXXX; ev_size_t objXXXX = ptrNativeObject->size(); return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_resize_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 newSize ) { EarthView::World::Graphic::CEdgeData::EdgeList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeList*) pObjectXXXX; ptrNativeObject->resize(newSize); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_reserve_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 count ) { EarthView::World::Graphic::CEdgeData::EdgeList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeList*) pObjectXXXX; ptrNativeObject->reserve(count); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeList_clear_void(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeList*) pObjectXXXX; ptrNativeObject->clear(); } extern "C" EV_DLL_EXPORT ev_uint64 _stdcall Get_EarthView_World_Graphic_CEdgeData_EdgeGroup_vertexSet( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeGroup* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroup*) pObjectXXXX; ev_size_t objXXXX = ptrNativeObject->vertexSet; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_EdgeGroup_vertexSet( void *pObjectXXXX, ev_uint64 value ) { ((EarthView::World::Graphic::CEdgeData::EdgeGroup*)pObjectXXXX)->vertexSet = value; } extern "C" EV_DLL_EXPORT const EarthView::World::Graphic::CVertexData* _stdcall Get_EarthView_World_Graphic_CEdgeData_EdgeGroup_vertexData( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeGroup* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroup*) pObjectXXXX; const EarthView::World::Graphic::CVertexData* objXXXX = ptrNativeObject->vertexData; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_EdgeGroup_vertexData( void *pObjectXXXX, const EarthView::World::Graphic::CVertexData* value ) { ((EarthView::World::Graphic::CEdgeData::EdgeGroup*)pObjectXXXX)->vertexData = value; } extern "C" EV_DLL_EXPORT ev_uint64 _stdcall Get_EarthView_World_Graphic_CEdgeData_EdgeGroup_triStart( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeGroup* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroup*) pObjectXXXX; ev_size_t objXXXX = ptrNativeObject->triStart; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_EdgeGroup_triStart( void *pObjectXXXX, ev_uint64 value ) { ((EarthView::World::Graphic::CEdgeData::EdgeGroup*)pObjectXXXX)->triStart = value; } extern "C" EV_DLL_EXPORT ev_uint64 _stdcall Get_EarthView_World_Graphic_CEdgeData_EdgeGroup_triCount( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeGroup* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroup*) pObjectXXXX; ev_size_t objXXXX = ptrNativeObject->triCount; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_EdgeGroup_triCount( void *pObjectXXXX, ev_uint64 value ) { ((EarthView::World::Graphic::CEdgeData::EdgeGroup*)pObjectXXXX)->triCount = value; } extern "C" EV_DLL_EXPORT void* _stdcall Get_EarthView_World_Graphic_CEdgeData_EdgeGroup_edges( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeGroup* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroup*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::EdgeList &objXXXX = ptrNativeObject->edges; EarthView::World::Graphic::CEdgeData::EdgeList *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_EdgeGroup_edges( void *pObjectXXXX, void* value ) { ((EarthView::World::Graphic::CEdgeData::EdgeGroup*)pObjectXXXX)->edges = *(EarthView::World::Graphic::CEdgeData::EdgeList*)value; } extern "C" EV_DLL_EXPORT void* _stdcall Get_EarthView_World_Graphic_CEdgeData_EdgeGroup_localMatrix( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeGroup* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroup*) pObjectXXXX; EarthView::World::Spatial::Math::CMatrix4 &objXXXX = ptrNativeObject->localMatrix; EarthView::World::Spatial::Math::CMatrix4 *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_EdgeGroup_localMatrix( void *pObjectXXXX, void* value ) { ((EarthView::World::Graphic::CEdgeData::EdgeGroup*)pObjectXXXX)->localMatrix = *(EarthView::World::Spatial::Math::CMatrix4*)value; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_push_back_void_EdgeGroup(void *pObjectXXXX, _in void* t ) { EarthView::World::Graphic::CEdgeData::EdgeGroupList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjectXXXX; ptrNativeObject->push_back(*(EarthView::World::Graphic::CEdgeData::EdgeGroup*)t); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_pop_back_void(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeGroupList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjectXXXX; ptrNativeObject->pop_back(); } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_front_EdgeGroup(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeGroupList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::EdgeGroup& objXXXX = ptrNativeObject->front(); EarthView::World::Graphic::CEdgeData::EdgeGroup *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_back_EdgeGroup(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeGroupList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::EdgeGroup& objXXXX = ptrNativeObject->back(); EarthView::World::Graphic::CEdgeData::EdgeGroup *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_insert_void_ev_uint32_EdgeGroup(void *pObjectXXXX, _in ev_uint32 pos, _in void* t ) { EarthView::World::Graphic::CEdgeData::EdgeGroupList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjectXXXX; ptrNativeObject->insert(pos, *(EarthView::World::Graphic::CEdgeData::EdgeGroup*)t); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_remove_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 pos ) { EarthView::World::Graphic::CEdgeData::EdgeGroupList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjectXXXX; ptrNativeObject->remove(pos); } extern "C" EV_DLL_EXPORT ev_bool _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_empty_ev_bool(void *pObjectXXXX ) { const EarthView::World::Graphic::CEdgeData::EdgeGroupList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjectXXXX; ev_bool objXXXX = ptrNativeObject->empty(); return objXXXX; } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_OperatorIndex_EdgeGroup_ev_size_t(void *pObjXXXX, _in ev_uint64 n ) { EarthView::World::Graphic::CEdgeData::EdgeGroupList& objYYYY = *(EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjXXXX; EarthView::World::Graphic::CEdgeData::EdgeGroup& objXXXX = objYYYY[n]; EarthView::World::Graphic::CEdgeData::EdgeGroup *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void* _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_at_EdgeGroup_ev_size_t(void *pObjectXXXX, _in ev_uint64 n ) { EarthView::World::Graphic::CEdgeData::EdgeGroupList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::EdgeGroup& objXXXX = ptrNativeObject->at(n); EarthView::World::Graphic::CEdgeData::EdgeGroup *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT ev_uint64 _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_size_ev_size_t(void *pObjectXXXX ) { const EarthView::World::Graphic::CEdgeData::EdgeGroupList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjectXXXX; ev_size_t objXXXX = ptrNativeObject->size(); return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_resize_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 newSize ) { EarthView::World::Graphic::CEdgeData::EdgeGroupList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjectXXXX; ptrNativeObject->resize(newSize); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_reserve_void_ev_size_t(void *pObjectXXXX, _in ev_uint64 count ) { EarthView::World::Graphic::CEdgeData::EdgeGroupList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjectXXXX; ptrNativeObject->reserve(count); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_EdgeGroupList_clear_void(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData::EdgeGroupList* ptrNativeObject = (EarthView::World::Graphic::CEdgeData::EdgeGroupList*) pObjectXXXX; ptrNativeObject->clear(); } extern "C" EV_DLL_EXPORT void* _stdcall Get_EarthView_World_Graphic_CEdgeData_triangles( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData* ptrNativeObject = (EarthView::World::Graphic::CEdgeData*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::TriangleList &objXXXX = ptrNativeObject->triangles; EarthView::World::Graphic::CEdgeData::TriangleList *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_triangles( void *pObjectXXXX, void* value ) { ((EarthView::World::Graphic::CEdgeData*)pObjectXXXX)->triangles = *(EarthView::World::Graphic::CEdgeData::TriangleList*)value; } extern "C" EV_DLL_EXPORT void* _stdcall Get_EarthView_World_Graphic_CEdgeData_triangleFaceNormals( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData* ptrNativeObject = (EarthView::World::Graphic::CEdgeData*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList &objXXXX = ptrNativeObject->triangleFaceNormals; EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_triangleFaceNormals( void *pObjectXXXX, void* value ) { ((EarthView::World::Graphic::CEdgeData*)pObjectXXXX)->triangleFaceNormals = *(EarthView::World::Graphic::CEdgeData::TriangleFaceNormalList*)value; } extern "C" EV_DLL_EXPORT void* _stdcall Get_EarthView_World_Graphic_CEdgeData_triangleLightFacings( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData* ptrNativeObject = (EarthView::World::Graphic::CEdgeData*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::TriangleLightFacingList &objXXXX = ptrNativeObject->triangleLightFacings; EarthView::World::Graphic::CEdgeData::TriangleLightFacingList *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_triangleLightFacings( void *pObjectXXXX, void* value ) { ((EarthView::World::Graphic::CEdgeData*)pObjectXXXX)->triangleLightFacings = *(EarthView::World::Graphic::CEdgeData::TriangleLightFacingList*)value; } extern "C" EV_DLL_EXPORT void* _stdcall Get_EarthView_World_Graphic_CEdgeData_edgeGroups( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData* ptrNativeObject = (EarthView::World::Graphic::CEdgeData*) pObjectXXXX; EarthView::World::Graphic::CEdgeData::EdgeGroupList &objXXXX = ptrNativeObject->edgeGroups; EarthView::World::Graphic::CEdgeData::EdgeGroupList *pXXXX = &objXXXX; return (void*)pXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_edgeGroups( void *pObjectXXXX, void* value ) { ((EarthView::World::Graphic::CEdgeData*)pObjectXXXX)->edgeGroups = *(EarthView::World::Graphic::CEdgeData::EdgeGroupList*)value; } extern "C" EV_DLL_EXPORT ev_bool _stdcall Get_EarthView_World_Graphic_CEdgeData_isClosed( void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeData* ptrNativeObject = (EarthView::World::Graphic::CEdgeData*) pObjectXXXX; ev_bool objXXXX = ptrNativeObject->isClosed; return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_World_Graphic_CEdgeData_isClosed( void *pObjectXXXX, ev_bool value ) { ((EarthView::World::Graphic::CEdgeData*)pObjectXXXX)->isClosed = value; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_updateTriangleLightFacing_void_CVector4(void *pObjectXXXX, _in const void* lightPos ) { EarthView::World::Graphic::CEdgeData* ptrNativeObject = (EarthView::World::Graphic::CEdgeData*) pObjectXXXX; ptrNativeObject->updateTriangleLightFacing(*(EarthView::World::Spatial::Math::CVector4*)lightPos); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_updateFaceNormals_void_ev_size_t_CHardwareVertexBufferSharedPtr(void *pObjectXXXX, _in ev_uint64 vertexSet, _in const void* positionBuffer ) { EarthView::World::Graphic::CEdgeData* ptrNativeObject = (EarthView::World::Graphic::CEdgeData*) pObjectXXXX; ptrNativeObject->updateFaceNormals(vertexSet, *(EarthView::World::Graphic::CHardwareVertexBufferSharedPtr*)positionBuffer); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeData_log_void_CLogger(void *pObjectXXXX, _in EarthView::World::Core::CLogger* ptLog ) { EarthView::World::Graphic::CEdgeData* ptrNativeObject = (EarthView::World::Graphic::CEdgeData*) pObjectXXXX; ptrNativeObject->log(ptLog); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeListBuilder_addVertexData_void_CVertexData_CMatrix4(void *pObjectXXXX, _in const EarthView::World::Graphic::CVertexData* ref_vertexData, _in const void* mat ) { EarthView::World::Graphic::CEdgeListBuilder* ptrNativeObject = (EarthView::World::Graphic::CEdgeListBuilder*) pObjectXXXX; ptrNativeObject->addVertexData(ref_vertexData, *(EarthView::World::Spatial::Math::CMatrix4*)mat); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeListBuilder_addIndexData_void_CIndexData_ev_size_t_OperationType(void *pObjectXXXX, _in const EarthView::World::Graphic::CIndexData* ref_indexData, _in ev_uint64 vertexSet, _in int opType ) { EarthView::World::Graphic::CEdgeListBuilder* ptrNativeObject = (EarthView::World::Graphic::CEdgeListBuilder*) pObjectXXXX; ptrNativeObject->addIndexData(ref_indexData, vertexSet, (EarthView::World::Graphic::CRenderOperation::OperationType)opType); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeListBuilder_addIndexData_void_CIndexData_ev_size_t(void *pObjectXXXX, _in const EarthView::World::Graphic::CIndexData* ref_indexData, _in ev_uint64 vertexSet ) { EarthView::World::Graphic::CEdgeListBuilder* ptrNativeObject = (EarthView::World::Graphic::CEdgeListBuilder*) pObjectXXXX; ptrNativeObject->addIndexData(ref_indexData, vertexSet); } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeListBuilder_addIndexData_void_CIndexData(void *pObjectXXXX, _in const EarthView::World::Graphic::CIndexData* ref_indexData ) { EarthView::World::Graphic::CEdgeListBuilder* ptrNativeObject = (EarthView::World::Graphic::CEdgeListBuilder*) pObjectXXXX; ptrNativeObject->addIndexData(ref_indexData); } extern "C" EV_DLL_EXPORT EarthView::World::Graphic::CEdgeData* _stdcall EarthView_World_Graphic_CEdgeListBuilder_build_CEdgeData(void *pObjectXXXX ) { EarthView::World::Graphic::CEdgeListBuilder* ptrNativeObject = (EarthView::World::Graphic::CEdgeListBuilder*) pObjectXXXX; EarthView::World::Graphic::CEdgeData* objXXXX = ptrNativeObject->build(); if(objXXXX != NULL) { ((EarthView::World::Core::CBaseObject*)objXXXX)->setExternFree(true); } return objXXXX; } extern "C" EV_DLL_EXPORT void _stdcall EarthView_World_Graphic_CEdgeListBuilder_log_void_CLogger(void *pObjectXXXX, _in EarthView::World::Core::CLogger* ptLog ) { EarthView::World::Graphic::CEdgeListBuilder* ptrNativeObject = (EarthView::World::Graphic::CEdgeListBuilder*) pObjectXXXX; ptrNativeObject->log(ptLog); } } } }
[ "yanguanqi@aliyun.com" ]
yanguanqi@aliyun.com
7f4e89b27df33e9145ad1ad09ada1c802641e372
a63e739155d5b07bb9252501b64bf0d5de275087
/Ejercicio 3/src/TesteadorRespuesta.cpp
3f193251d87286ca8324ce3f1f75ec23409862c3
[]
no_license
dario-ramos/testers-distribuidos7574
677b79588aadeb547d85f5f31f6c3912828cc8e4
5a8e992960f069a80491d49d270e52c4a8b95db6
refs/heads/master
2016-09-05T21:52:37.730168
2015-03-09T16:59:22
2015-03-09T16:59:22
33,097,578
0
0
null
null
null
null
UTF-8
C++
false
false
1,733
cpp
#include <cstdlib> #include "common/AtendedorTesters.h" #include "common/Programa.h" #include "common/common.h" #include "common/Resultado.h" #include "common/iPlanillaTesterRespuesta.h" #include "common/Configuracion.h" #include "common/DespachadorTesters.h" #include "logger/Logger.h" using namespace std; int main(int argc, char** argv) { Logger::initialize(Constantes::ARCHIVO_LOG.c_str(), Logger::LOG_DEBUG); Configuracion config; if (!config.LeerDeArchivo()) { Logger::error("Archivo de configuracion no encontrado", __FILE__); return 1; } // El primer parametro es el id del tester int id = config.ObtenerParametroEntero("TesterRtaIdOffset") + atoi(argv[1]); // Obtengo comunicacion con los dispositivos AtendedorTesters atendedor(config); // Obtengo planilla general de sync con otros tester iPlanillaTesterRespuesta planilla(id, config); // Obtengo comunicacion con los tecnicos DespachadorTesters despachador(config); while (true) { resultado_test_t resultado = atendedor.recibirResultado(id); Logger::notice("Se recibio un Resultado", __FILE__); int orden; if (Resultado::esGrave(resultado.result)) { despachador.enviarOrden(resultado.dispositivo); orden = Constantes::ORDEN_APAGADO; } else { orden = Constantes::ORDEN_REINICIO; } atendedor.enviarOrden(resultado.dispositivo, orden); Logger::notice("Se envio una orden", __FILE__); planilla.iniciarProcesamientoDeResultados(); planilla.eliminarDispositivo(resultado.dispositivo); planilla.procesarSiguiente(); } return 0; }
[ "Lucho0s@gmail.com@18dcfaaf-94c9-9b71-9433-3f00c941b258" ]
Lucho0s@gmail.com@18dcfaaf-94c9-9b71-9433-3f00c941b258
3df6050ebcec47ffc8508cfd204af611e0ac4005
7bce219fbeb5ca4894e84eac7cc36eff90479dc3
/TCommand.cc
3133ecce623c4ce4a5a8f2f8a3e3a4974d1b72ff
[]
no_license
GodblessPatrick/Quadris
dfccc85bb4046cffd5656860e5f8b53a30f2b2f1
5a3f26c670d1782262b9ab943be734fd8b184b0d
refs/heads/master
2020-09-04T22:26:35.570142
2019-11-06T04:44:35
2019-11-06T04:44:35
219,908,754
0
1
null
null
null
null
UTF-8
C++
false
false
434
cc
#include "TCommand.h" #include "Model.h" #include "BlockFactory.h" #include "Cell.h" #include <string> using namespace std; void TCommand::execute(Model &model, const string &args) const { Cell upperLeftCell = ReplaceCommand::findOffset(model.getUndroppedBlock()); int tx = upperLeftCell.getX(), ty = upperLeftCell.getY(); model.setUndroppedBlock(BlockFactory::createBlock('T', model.getUndroppedBlock().getLevelId(), tx, ty)); }
[ "boyan@DESKTOP-PDFQR19.localdomain" ]
boyan@DESKTOP-PDFQR19.localdomain
6039d1bb11eeef8c84da7cd587c7144a39d6a535
0d94846c0117fbec5b9053ee367871bfa8bb9bb1
/src/libtsduck/tsDescriptorList.h
e6e1bab218362d320d7c7d45f5ba756207e69c35
[ "WTFPL", "LicenseRef-scancode-public-domain", "BSD-2-Clause" ]
permissive
rtk4616/tsduck
83b118d2058d878c6595833f0a82fee598ceec66
791507d329781e03bcec16dadfb78e0c5cec009f
refs/heads/master
2020-04-14T23:05:40.102166
2019-01-04T16:56:51
2019-01-04T16:56:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
17,929
h
//---------------------------------------------------------------------------- // // TSDuck - The MPEG Transport Stream Toolkit // Copyright (c) 2005-2019, Thierry Lelegard // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // 1. Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // 2. Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF // THE POSSIBILITY OF SUCH DAMAGE. // //---------------------------------------------------------------------------- //! //! @file //! List of MPEG PSI/SI descriptors //! //---------------------------------------------------------------------------- #pragma once #include "tsDescriptor.h" namespace ts { class AbstractTable; //! //! List of MPEG PSI/SI descriptors. //! @ingroup mpeg //! class TSDUCKDLL DescriptorList { public: //! //! Basic constructor. //! @param [in] table Parent table. A descriptor list is always attached to a table it is part of. //! Use zero for a descriptor list object outside a table. There is no default value because //! zero is considered as an unusual use case and we want to avoid missing table pointer in //! constructors of the various tables. //! explicit DescriptorList(const AbstractTable* table); //! //! Basic copy-like constructor. //! We forbid a real copy constructor because we want to copy the descriptors only, //! while the parent table is usually different. //! The descriptors objects are shared between the two lists. //! @param [in] table Parent table. A descriptor list is always attached to a table it is part of. //! Use zero for a descriptor list object outside a table. //! @param [in] dl Another instance to copy. //! DescriptorList(const AbstractTable* table, const DescriptorList& dl); //! //! Assignment operator. //! The descriptors objects are shared between the two lists. //! The parent table remains unchanged. //! @param [in] dl Another instance to copy. //! @return A reference to this object. //! DescriptorList& operator=(const DescriptorList& dl); //! //! Check if the descriptor list is empty. //! @return True if the descriptor list is empty. //! bool empty() const { return _list.empty(); } //! //! Get the number of descriptors in the list (same as count()). //! @return The number of descriptors in the list. //! size_t size() const { return _list.size(); } //! //! Get the number of descriptors in the list (same as size()). //! @return The number of descriptors in the list. //! size_t count() const { return _list.size(); } //! //! Get the table id of the parent table. //! @return The table id of the parent table or TID_NULL if there is none. //! TID tableId() const; //! //! Get the parent table. //! @return The parent table or zero if there is none. //! const AbstractTable* table() const { return _table; } //! //! Comparison operator. //! @param [in] other Another instance to compare. //! @return True if the two descriptor lists are identical. //! bool operator==(const DescriptorList& other) const; //! //! Comparison operator. //! @param [in] other Another instance to compare. //! @return True if the two descriptor lists are different. //! bool operator!=(const DescriptorList& other) const { return !(*this == other); } //! //! Get a reference to the descriptor at a specified index. //! @param [in] index Index in the list. Valid index are 0 to count()-1. //! @return A reference to the descriptor at @a index. //! const DescriptorPtr& operator[](size_t index) const { assert(index < _list.size()); return _list[index].desc; } //! //! Return the "private data specifier" associated to a descriptor in the list. //! @param [in] index Index of a descriptor in the list. Valid index are 0 to count()-1. //! @return The "private data specifier" associated to a descriptor at @a index. //! PDS privateDataSpecifier(size_t index) const { assert(index < _list.size()); return _list[index].pds; } //! //! Add one descriptor at end of list //! @param [in] desc The binary descriptor to add. //! void add(const DescriptorPtr& desc); //! //! Add one descriptor at end of list //! @param [in] desc The descriptor to add. //! void add(const AbstractDescriptor& desc); //! //! Add another list of descriptors at end of list. //! The descriptors objects are shared between the two lists. //! @param [in] dl The descriptor list to add. //! void add(const DescriptorList& dl) { _list.insert(_list.end(), dl._list.begin(), dl._list.end()); } //! //! Add descriptors from a memory area at end of list //! @param [in] addr Address of descriptors in memory. //! @param [in] size Size in bytes of descriptors in memory. //! void add(const void* addr, size_t size); //! //! Add one descriptor from a memory area at end of list. //! The size is extracted from the descriptor header. //! @param [in] addr Address of the descriptor in memory. //! void add(const void* addr) { const uint8_t* data(reinterpret_cast<const uint8_t*>(addr)); add(data, size_t(data[1]) + 2); } //! //! Add a private_data_specifier descriptor if necessary at end of list. //! If the current private data specifier at end of list is not @a pds, //! a private_data_specifier descriptor is added. If @a pds is already //! the current private data specifier, the list is unchanged. //! @param [in] pds A private data specifier. //! void addPrivateDataSpecifier(PDS pds); //! //! Remove the descriptor at the specified index in the list. //! A private_data_specifier descriptor can be removed only if //! it is not necessary (no private descriptor ahead). //! @param [in] index Index of the descriptor to remove. //! @return True on success, false on error (index out of range //! or required private_data_specifier descriptor). //! bool removeByIndex(size_t index); //! //! Remove all descriptors with the specified tag. //! A private_data_specifier descriptor can be removed only if //! it is not necessary (no private descriptor ahead). //! @param [in] tag Tag of descriptors to remove. //! @param [in] pds Private data specifier. //! If @a pds is non-zero and @a tag is >= 0x80, remove only //! descriptors with the corresponding private data specifier. //! @return The number of removed descriptors. //! size_t removeByTag(DID tag, PDS pds = 0); //! //! Remove all private descriptors without preceding private_data_specifier_descriptor. //! @return The number of removed descriptors. //! size_t removeInvalidPrivateDescriptors(); //! //! Clear the content of the descriptor list. //! void clear() { _list.clear(); } //! //! Search a descriptor with the specified tag. //! @param [in] tag Tag of descriptor to search. //! @param [in] start_index Start searching at this index. //! @param [in] pds Private data specifier. //! If @a pds is non-zero and @a tag is >= 0x80, return only //! a descriptor with the corresponding private data specifier. //! @return The index of the descriptor in the list or count() if no such descriptor is found. //! size_t search(DID tag, size_t start_index = 0, PDS pds = 0) const; //! //! Search a language descriptor for the specified language. //! @param [in] language The 3-character language name to search. //! @param [in] start_index Start searching at this index. //! @return The index of the descriptor in the list or count() if no such descriptor is found. //! size_t searchLanguage(const UString& language, size_t start_index = 0) const; //! //! Search any kind of subtitle descriptor. //! @param [in] language The language name to search. //! If @a language is non-empty, look only for a subtitle //! descriptor matching the specified language. In this case, if some //! kind of subtitle descriptor exists in the list but none matches the //! language, return count()+1. //! @param [in] start_index Start searching at this index. //! @return The index of the descriptor in the list or count() if no such descriptor is found. //! size_t searchSubtitle(const UString& language = UString(), size_t start_index = 0) const; //! //! Search a descriptor with the specified tag. //! @tparam DESC A subclass of AbstractDescriptor. //! @param [in] tag Tag of descriptor to search. //! @param [out] desc When a descriptor with the specified tag is found, //! it is deserialized into @a desc. Always check desc.isValid() on return //! to check if the deserialization was successful. //! @param [in] start_index Start searching at this index. //! @param [in] pds Private data specifier. //! If @a pds is non-zero and @a tag is >= 0x80, return only //! a descriptor with the corresponding private data specifier. //! @return The index of the descriptor in the list or count() if no such descriptor is found. //! template <class DESC> size_t search(DID tag, DESC& desc, size_t start_index = 0, PDS pds = 0) const; //! //! Total number of bytes that is required to serialize the list of descriptors. //! @return The total number of bytes that is required to serialize the list of descriptors. //! size_t binarySize() const; //! //! Serialize the content of the descriptor list. //! @param [in,out] addr Address of the memory area where the descriptors //! are serialized. Upon return, @a addr is updated to contain the next //! address in memory, after the last serialized byte. //! @param [in,out] size Size in bytes of the memory area where the descriptors //! are serialized. Upon return, @a size is updated to the remaining size //! of the buffer. Descriptors are written one by one until either the end //! of the list or until one descriptor does not fit. //! @param [in] start Start searializing at this index. //! @return The index of the first descriptor that could not be serialized //! (or count() if all descriptors were serialized). In the first case, //! the returned index can be used as @a start parameter to serialized the //! rest of the list (in another section for instance). //! size_t serialize(uint8_t*& addr, size_t& size, size_t start = 0) const; //! //! Serialize the content of the descriptor list in a byte block. //! @param [in,out] bb A byte block into which the descriptor list is appended. //! @param [in] start Start searializing at this index. //! @return The size in bytes of the serialized data. //! size_t serialize(ByteBlock& bb, size_t start = 0) const; //! //! Same as serialize(), but prepend a 2-byte length field before the descriptor list. //! The 2-byte length field has 4 reserved bits and 12 bits for the length of the descriptor list. //! @param [in,out] addr Address of the memory area where the descriptors //! are serialized. Upon return, @a addr is updated to contain the next //! address in memory, after the last serialized byte. //! @param [in,out] size Size in bytes of the memory area where the descriptors //! are serialized. Upon return, @a size is updated to the remaining size //! of the buffer. Descriptors are written one by one until either the end //! of the list or until one descriptor does not fit. //! @param [in] start Start serializing at this index in the descriptor list. //! @param [in] reserved_bits Upper 4 bits of the length field. //! @return The index of the first descriptor that could not be serialized //! (or count() if all descriptors were serialized). In the first case, //! the returned index can be used as @a start parameter to serialized the //! rest of the list (in another section for instance). //! size_t lengthSerialize(uint8_t*& addr, size_t& size, size_t start = 0, uint8_t reserved_bits = 0x0F) const; //! //! This method converts a descriptor list to XML. //! @param [in,out] parent The parent node for the XML descriptors. //! @param [in] charset If not zero, default character set to use. //! @return True on success, false on error. //! bool toXML(xml::Element* parent, const DVBCharset* charset = nullptr) const; //! //! This method decodes an XML list of descriptors. //! @param [out] others Returned list of non-descriptor XML elements. //! All these elements are not null and their names are in @a allowedOthers. //! @param [in] parent The XML element containing all descriptors. //! @param [in] allowedOthers A list of allowed element names inside @a parent which are not descriptors. //! @param [in] charset If not zero, character set to use without explicit table code. //! @return True on success, false on error. //! bool fromXML(xml::ElementVector& others, const xml::Element* parent, const UStringList& allowedOthers, const DVBCharset* charset = nullptr); //! //! This method decodes an XML list of descriptors. //! @param [out] others Returned list of non-descriptor XML elements. //! All these elements are not null and their names are in @a allowedOthers. //! @param [in] parent The XML element containing all descriptors. //! @param [in] allowedOthers A comma-separated list of allowed element names inside @a parent which are not descriptors. //! @param [in] charset If not zero, character set to use without explicit table code. //! @return True on success, false on error. //! bool fromXML(xml::ElementVector& others, const xml::Element* parent, const UString& allowedOthers, const DVBCharset* charset = nullptr); //! //! This method decodes an XML list of descriptors. //! @param [in] parent The XML element containing all descriptors. //! All children must be valid descriptors. //! @return True on success, false on error. //! bool fromXML(const xml::Element* parent); private: // Each entry contains a descriptor and its corresponding private data specifier. struct Element { // Public members: DescriptorPtr desc; PDS pds; // Constructor: Element(const DescriptorPtr& desc_ = DescriptorPtr(), PDS pds_ = 0) : desc(desc_), pds(pds_) {} }; typedef std::vector <Element> ElementVector; // Private members const AbstractTable* const _table; // Parent table (zero for descriptor list object outside a table). ElementVector _list; // Vector of smart pointers to descriptors. // Prepare removal of a private_data_specifier descriptor. // Return true if can be removed, false if it cannot (private descriptors ahead). // When it can be removed, the current PDS of all subsequent descriptors is updated. bool prepareRemovePDS(const ElementVector::iterator&); // Inaccessible operations. DescriptorList() = delete; DescriptorList(const DescriptorList&) = delete; }; } #include "tsDescriptorListTemplate.h"
[ "thierry@lelegard.fr" ]
thierry@lelegard.fr
f4abdc123fdcec98c85b0789d6adddf7d7327b8d
9fa0b7e6ceda7aec7019a8f8bd0e43417e69f5f0
/src/qt/optionsmodel.cpp
f3160cdbe765c5ca20cef9566dae21f0fe9b1c24
[ "MIT" ]
permissive
Vladyazh/binarium
a94d455c7e20d259a609112f1fed0c42c45c9c2e
a412348dbc3d56df9f1d39fe04630e37d63ff3de
refs/heads/master
2020-03-17T17:31:25.688249
2018-05-16T12:59:13
2018-05-16T12:59:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
23,415
cpp
// Copyright (c) 2011-2015 The Bitcoin Core developers // Copyright (c) 2014-2017 The Dash Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include "config/binarium-config.h" #endif #include "optionsmodel.h" #include "bitcoinunits.h" #include "guiutil.h" #include "amount.h" #include "init.h" #include "validation.h" // For DEFAULT_SCRIPTCHECK_THREADS #include "net.h" #include "netbase.h" #include "txdb.h" // for -dbcache defaults #ifdef ENABLE_WALLET #include "wallet/wallet.h" #include "wallet/walletdb.h" #include "masternodeconfig.h" #include "privatesend-client.h" #endif #include <QNetworkProxy> #include <QSettings> #include <QStringList> OptionsModel::OptionsModel(QObject *parent, bool resetSettings) : QAbstractListModel(parent) { Init(resetSettings); } void OptionsModel::addOverriddenOption(const std::string &option) { strOverriddenByCommandLine += QString::fromStdString(option) + "=" + QString::fromStdString(mapArgs[option]) + " "; } // Writes all missing QSettings with their default values void OptionsModel::Init(bool resetSettings) { if (resetSettings) Reset(); this->resetSettings = resetSettings; QSettings settings; // Ensure restart flag is unset on client startup setRestartRequired(false); // These are Qt-only settings: // Window if (!settings.contains("fHideTrayIcon")) settings.setValue("fHideTrayIcon", false); fHideTrayIcon = settings.value("fHideTrayIcon").toBool(); Q_EMIT hideTrayIconChanged(fHideTrayIcon); if (!settings.contains("fMinimizeToTray")) settings.setValue("fMinimizeToTray", false); fMinimizeToTray = settings.value("fMinimizeToTray").toBool() && !fHideTrayIcon; if (!settings.contains("fMinimizeOnClose")) settings.setValue("fMinimizeOnClose", false); fMinimizeOnClose = settings.value("fMinimizeOnClose").toBool(); if (!settings.contains("bConfirmQuit")) settings.setValue("bConfirmQuit", true); // Display if (!settings.contains("nDisplayUnit")) settings.setValue("nDisplayUnit", BitcoinUnits::BINARIUM); nDisplayUnit = settings.value("nDisplayUnit").toInt(); if (!settings.contains("strThirdPartyTxUrls")) settings.setValue("strThirdPartyTxUrls", ""); strThirdPartyTxUrls = settings.value("strThirdPartyTxUrls", "").toString(); if (!settings.contains("theme")) settings.setValue("theme", ""); #ifdef ENABLE_WALLET if (!settings.contains("fCoinControlFeatures")) settings.setValue("fCoinControlFeatures", false); fCoinControlFeatures = settings.value("fCoinControlFeatures", false).toBool(); if (!settings.contains("digits")) settings.setValue("digits", "2"); if (!settings.contains("fShowMasternodesTab")) settings.setValue("fShowMasternodesTab", masternodeConfig.getCount()); if (!settings.contains("fShowAdvancedPSUI")) settings.setValue("fShowAdvancedPSUI", false); fShowAdvancedPSUI = settings.value("fShowAdvancedPSUI", false).toBool(); if (!settings.contains("fLowKeysWarning")) settings.setValue("fLowKeysWarning", true); #endif // ENABLE_WALLET // These are shared with the core or have a command-line parameter // and we want command-line parameters to overwrite the GUI settings. // // If setting doesn't exist create it with defaults. // // If SoftSetArg() or SoftSetBoolArg() return false we were overridden // by command-line and show this in the UI. // Main if (!settings.contains("nDatabaseCache")) settings.setValue("nDatabaseCache", (qint64)nDefaultDbCache); if (!SoftSetArg("-dbcache", settings.value("nDatabaseCache").toString().toStdString())) addOverriddenOption("-dbcache"); if (!settings.contains("nThreadsScriptVerif")) settings.setValue("nThreadsScriptVerif", DEFAULT_SCRIPTCHECK_THREADS); if (!SoftSetArg("-par", settings.value("nThreadsScriptVerif").toString().toStdString())) addOverriddenOption("-par"); if (!settings.contains("strDataDir")) { //sDataDir = settings.value("strDataDir", "").toString(); settings.setValue ( "strDataDir", "" ); } if ( ! settings.contains ( "bGenerateBlocks" ) ) { //bGenerateBlocks = settings.value ( "bGenerateBlocks", true ).toBool (); settings.setValue ( "bGenerateBlocks", true ); } /*if (!settings.contains("nDatabaseCache")) settings.setValue("nDatabaseCache", (qint64)nDefaultDbCache); if (!SoftSetArg("-dbcache", settings.value("nDatabaseCache").toString().toStdString())) addOverriddenOption("-dbcache");*/ // Wallet #ifdef ENABLE_WALLET if (!settings.contains("bSpendZeroConfChange")) settings.setValue("bSpendZeroConfChange", true); if (!SoftSetBoolArg("-spendzeroconfchange", settings.value("bSpendZeroConfChange").toBool())) addOverriddenOption("-spendzeroconfchange"); // PrivateSend if (!settings.contains("nPrivateSendRounds")) settings.setValue("nPrivateSendRounds", DEFAULT_PRIVATESEND_ROUNDS); if (!SoftSetArg("-privatesendrounds", settings.value("nPrivateSendRounds").toString().toStdString())) addOverriddenOption("-privatesendrounds"); privateSendClient.nPrivateSendRounds = settings.value("nPrivateSendRounds").toInt(); if (!settings.contains("nPrivateSendAmount")) { // for migration from old settings if (!settings.contains("nAnonymizeBinariumAmount")) settings.setValue("nPrivateSendAmount", DEFAULT_PRIVATESEND_AMOUNT); else settings.setValue("nPrivateSendAmount", settings.value("nAnonymizeBinariumAmount").toInt()); } if (!SoftSetArg("-privatesendamount", settings.value("nPrivateSendAmount").toString().toStdString())) addOverriddenOption("-privatesendamount"); privateSendClient.nPrivateSendAmount = settings.value("nPrivateSendAmount").toInt(); if (!settings.contains("fPrivateSendMultiSession")) settings.setValue("fPrivateSendMultiSession", DEFAULT_PRIVATESEND_MULTISESSION); if (!SoftSetBoolArg("-privatesendmultisession", settings.value("fPrivateSendMultiSession").toBool())) addOverriddenOption("-privatesendmultisession"); privateSendClient.fPrivateSendMultiSession = settings.value("fPrivateSendMultiSession").toBool(); #endif // Network if (!settings.contains("fUseUPnP")) settings.setValue("fUseUPnP", DEFAULT_UPNP); if (!SoftSetBoolArg("-upnp", settings.value("fUseUPnP").toBool())) addOverriddenOption("-upnp"); if (!settings.contains("fListen")) settings.setValue("fListen", DEFAULT_LISTEN); if (!SoftSetBoolArg("-listen", settings.value("fListen").toBool())) addOverriddenOption("-listen"); if (!settings.contains("fUseProxy")) settings.setValue("fUseProxy", false); if (!settings.contains("addrProxy")) settings.setValue("addrProxy", "127.0.0.1:9050"); // Only try to set -proxy, if user has enabled fUseProxy if (settings.value("fUseProxy").toBool() && !SoftSetArg("-proxy", settings.value("addrProxy").toString().toStdString())) addOverriddenOption("-proxy"); else if(!settings.value("fUseProxy").toBool() && !GetArg("-proxy", "").empty()) addOverriddenOption("-proxy"); if (!settings.contains("fUseSeparateProxyTor")) settings.setValue("fUseSeparateProxyTor", false); if (!settings.contains("addrSeparateProxyTor")) settings.setValue("addrSeparateProxyTor", "127.0.0.1:9050"); // Only try to set -onion, if user has enabled fUseSeparateProxyTor if (settings.value("fUseSeparateProxyTor").toBool() && !SoftSetArg("-onion", settings.value("addrSeparateProxyTor").toString().toStdString())) addOverriddenOption("-onion"); else if(!settings.value("fUseSeparateProxyTor").toBool() && !GetArg("-onion", "").empty()) addOverriddenOption("-onion"); // Display if (!settings.contains("language")) settings.setValue("language", ""); if (!SoftSetArg("-lang", settings.value("language").toString().toStdString())) addOverriddenOption("-lang"); language = settings.value("language").toString(); } void OptionsModel::Reset() { QSettings settings; // Remove all entries from our QSettings object settings.clear(); resetSettings = true; // Needed in binarium.cpp during shotdown to also remove the window positions // default setting for OptionsModel::StartAtStartup - disabled if (GUIUtil::GetStartOnSystemStartup()) GUIUtil::SetStartOnSystemStartup(false); } int OptionsModel::rowCount(const QModelIndex & parent) const { return OptionIDRowCount; } // read QSettings values and return them QVariant OptionsModel::data(const QModelIndex & index, int role) const { if(role == Qt::EditRole) { QSettings settings; switch(index.row()) { case StartAtStartup: return GUIUtil::GetStartOnSystemStartup(); case HideTrayIcon: return fHideTrayIcon; case MinimizeToTray: return fMinimizeToTray; case bConfirmQuit : return settings.value("bConfirmQuit"); case MapPortUPnP: #ifdef USE_UPNP return settings.value("fUseUPnP"); #else return false; #endif case MinimizeOnClose: return fMinimizeOnClose; // default proxy case ProxyUse: return settings.value("fUseProxy", false); case ProxyIP: { // contains IP at index 0 and port at index 1 QStringList strlIpPort = settings.value("addrProxy").toString().split(":", QString::SkipEmptyParts); return strlIpPort.at(0); } case ProxyPort: { // contains IP at index 0 and port at index 1 QStringList strlIpPort = settings.value("addrProxy").toString().split(":", QString::SkipEmptyParts); return strlIpPort.at(1); } // separate Tor proxy case ProxyUseTor: return settings.value("fUseSeparateProxyTor", false); case ProxyIPTor: { // contains IP at index 0 and port at index 1 QStringList strlIpPort = settings.value("addrSeparateProxyTor").toString().split(":", QString::SkipEmptyParts); return strlIpPort.at(0); } case ProxyPortTor: { // contains IP at index 0 and port at index 1 QStringList strlIpPort = settings.value("addrSeparateProxyTor").toString().split(":", QString::SkipEmptyParts); return strlIpPort.at(1); } #ifdef ENABLE_WALLET case SpendZeroConfChange: fprintf(stdout, "OptionsModel.data () : bSpendZeroConfChange = %s.\n", settings.value ( "bSpendZeroConfChange" ).toString ().toUtf8 ().data () ); return settings.value("bSpendZeroConfChange"); case ShowMasternodesTab: return settings.value("fShowMasternodesTab"); case ShowAdvancedPSUI: return fShowAdvancedPSUI; case LowKeysWarning: return settings.value("fLowKeysWarning"); case PrivateSendRounds: return settings.value("nPrivateSendRounds"); case PrivateSendAmount: return settings.value("nPrivateSendAmount"); case PrivateSendMultiSession: return settings.value("fPrivateSendMultiSession"); #endif case DisplayUnit: return nDisplayUnit; case ThirdPartyTxUrls: return strThirdPartyTxUrls; #ifdef ENABLE_WALLET case Digits: return settings.value("digits"); #endif // ENABLE_WALLET case Theme: fprintf(stdout, "OptionsModel.data () : theme = %s.\n", settings.value ( "theme" ).toString ().toUtf8 ().data () ); return settings.value("theme"); case Language: return settings.value("language"); #ifdef ENABLE_WALLET case CoinControlFeatures: return fCoinControlFeatures; #endif // ENABLE_WALLET case DatabaseCache: return settings.value("nDatabaseCache"); case ThreadsScriptVerif: return settings.value("nThreadsScriptVerif"); case Listen: fprintf(stdout, "OptionsModel.data () : fListen = %s.\n", settings.value ( "fListen" ).toString ().toUtf8 ().data () ); return settings.value("fListen"); case sDataDir : fprintf(stdout, "OptionsModel.data () : sDataDir = %s.\n", settings.value ( "strDataDir" ).toString ().toUtf8 ().data () ); return settings.value ( "strDataDir" ); case bGenerateBlocks : fprintf(stdout, "OptionsModel.data () : bGenerateBlocks = %s.\n", settings.value ( "bGenerateBlocks" ).toString ().toUtf8 ().data () ); return settings.value ( "bGenerateBlocks" ); default: return QVariant(); } } return QVariant(); } // write QSettings values bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, int role) { bool successful = true; /* set to false on parse error */ if(role == Qt::EditRole) { QSettings settings; switch(index.row()) { case StartAtStartup: successful = GUIUtil::SetStartOnSystemStartup(value.toBool()); break; case HideTrayIcon: fHideTrayIcon = value.toBool(); settings.setValue("fHideTrayIcon", fHideTrayIcon); Q_EMIT hideTrayIconChanged(fHideTrayIcon); break; case MinimizeToTray: fMinimizeToTray = value.toBool(); settings.setValue("fMinimizeToTray", fMinimizeToTray); break; case MapPortUPnP: // core option - can be changed on-the-fly settings.setValue("fUseUPnP", value.toBool()); MapPort(value.toBool()); break; case MinimizeOnClose: fMinimizeOnClose = value.toBool(); settings.setValue("fMinimizeOnClose", fMinimizeOnClose); break; case bConfirmQuit: settings.setValue ( "bConfirmQuit", value.toBool () ); break; case sDataDir : fprintf(stdout, "OptionsModel.setData () : strDataDir = %s.\n", value.toString ().toUtf8 ().data () ); settings.setValue ( "strDataDir", value.toString () ); setRestartRequired(true); break; case bGenerateBlocks : fprintf(stdout, "OptionsModel.setData () : bGenerateBlocks = %s.\n", value.toString ().toUtf8 ().data () ); settings.setValue ( "bGenerateBlocks", value.toBool () ); setRestartRequired(true); break; // default proxy case ProxyUse: if (settings.value("fUseProxy") != value) { settings.setValue("fUseProxy", value.toBool()); setRestartRequired(true); } break; case ProxyIP: { // contains current IP at index 0 and current port at index 1 QStringList strlIpPort = settings.value("addrProxy").toString().split(":", QString::SkipEmptyParts); // if that key doesn't exist or has a changed IP if (!settings.contains("addrProxy") || strlIpPort.at(0) != value.toString()) { // construct new value from new IP and current port QString strNewValue = value.toString() + ":" + strlIpPort.at(1); settings.setValue("addrProxy", strNewValue); setRestartRequired(true); } } break; case ProxyPort: { // contains current IP at index 0 and current port at index 1 QStringList strlIpPort = settings.value("addrProxy").toString().split(":", QString::SkipEmptyParts); // if that key doesn't exist or has a changed port if (!settings.contains("addrProxy") || strlIpPort.at(1) != value.toString()) { // construct new value from current IP and new port QString strNewValue = strlIpPort.at(0) + ":" + value.toString(); settings.setValue("addrProxy", strNewValue); setRestartRequired(true); } } break; // separate Tor proxy case ProxyUseTor: if (settings.value("fUseSeparateProxyTor") != value) { settings.setValue("fUseSeparateProxyTor", value.toBool()); setRestartRequired(true); } break; case ProxyIPTor: { // contains current IP at index 0 and current port at index 1 QStringList strlIpPort = settings.value("addrSeparateProxyTor").toString().split(":", QString::SkipEmptyParts); // if that key doesn't exist or has a changed IP if (!settings.contains("addrSeparateProxyTor") || strlIpPort.at(0) != value.toString()) { // construct new value from new IP and current port QString strNewValue = value.toString() + ":" + strlIpPort.at(1); settings.setValue("addrSeparateProxyTor", strNewValue); setRestartRequired(true); } } break; case ProxyPortTor: { // contains current IP at index 0 and current port at index 1 QStringList strlIpPort = settings.value("addrSeparateProxyTor").toString().split(":", QString::SkipEmptyParts); // if that key doesn't exist or has a changed port if (!settings.contains("addrSeparateProxyTor") || strlIpPort.at(1) != value.toString()) { // construct new value from current IP and new port QString strNewValue = strlIpPort.at(0) + ":" + value.toString(); settings.setValue("addrSeparateProxyTor", strNewValue); setRestartRequired(true); } } break; #ifdef ENABLE_WALLET case SpendZeroConfChange: if (settings.value("bSpendZeroConfChange") != value) { settings.setValue("bSpendZeroConfChange", value); setRestartRequired(true); } break; case ShowMasternodesTab: if (settings.value("fShowMasternodesTab") != value) { settings.setValue("fShowMasternodesTab", value); setRestartRequired(true); } break; case ShowAdvancedPSUI: fShowAdvancedPSUI = value.toBool(); settings.setValue("fShowAdvancedPSUI", fShowAdvancedPSUI); Q_EMIT advancedPSUIChanged(fShowAdvancedPSUI); break; case LowKeysWarning: settings.setValue("fLowKeysWarning", value); break; case PrivateSendRounds: if (settings.value("nPrivateSendRounds") != value) { privateSendClient.nPrivateSendRounds = value.toInt(); settings.setValue("nPrivateSendRounds", privateSendClient.nPrivateSendRounds); Q_EMIT privateSendRoundsChanged(); } break; case PrivateSendAmount: if (settings.value("nPrivateSendAmount") != value) { privateSendClient.nPrivateSendAmount = value.toInt(); settings.setValue("nPrivateSendAmount", privateSendClient.nPrivateSendAmount); Q_EMIT privateSentAmountChanged(); } break; case PrivateSendMultiSession: if (settings.value("fPrivateSendMultiSession") != value) { privateSendClient.fPrivateSendMultiSession = value.toBool(); settings.setValue("fPrivateSendMultiSession", privateSendClient.fPrivateSendMultiSession); } break; #endif case DisplayUnit: setDisplayUnit(value); break; case ThirdPartyTxUrls: if (strThirdPartyTxUrls != value.toString()) { strThirdPartyTxUrls = value.toString(); settings.setValue("strThirdPartyTxUrls", strThirdPartyTxUrls); setRestartRequired(true); } break; #ifdef ENABLE_WALLET case Digits: if (settings.value("digits") != value) { settings.setValue("digits", value); setRestartRequired(true); } break; #endif // ENABLE_WALLET case Theme: if (settings.value("theme") != value) { settings.setValue("theme", value); fprintf(stdout, "OptionsModel.setData () : theme = %s.\n", settings.value ( "theme" ).toString ().toUtf8 ().data () ); setRestartRequired(true); } break; case Language: if (settings.value("language") != value) { settings.setValue("language", value); setRestartRequired(true); } break; #ifdef ENABLE_WALLET case CoinControlFeatures: fCoinControlFeatures = value.toBool(); settings.setValue("fCoinControlFeatures", fCoinControlFeatures); Q_EMIT coinControlFeaturesChanged(fCoinControlFeatures); break; #endif // ENABLE_WALLET case DatabaseCache: if (settings.value("nDatabaseCache") != value) { settings.setValue("nDatabaseCache", value); setRestartRequired(true); } break; case ThreadsScriptVerif: if (settings.value("nThreadsScriptVerif") != value) { settings.setValue("nThreadsScriptVerif", value); setRestartRequired(true); } break; case Listen: if (settings.value("fListen") != value) { settings.setValue("fListen", value); setRestartRequired(true); } break; default: break; } } Q_EMIT dataChanged(index, index); return successful; } /** Updates current unit in memory, settings and emits displayUnitChanged(newUnit) signal */ void OptionsModel::setDisplayUnit(const QVariant &value) { if (!value.isNull()) { QSettings settings; nDisplayUnit = value.toInt(); settings.setValue("nDisplayUnit", nDisplayUnit); Q_EMIT displayUnitChanged(nDisplayUnit); } } bool OptionsModel::getProxySettings(QNetworkProxy& proxy) const { // Directly query current base proxy, because // GUI settings can be overridden with -proxy. proxyType curProxy; if (GetProxy(NET_IPV4, curProxy)) { proxy.setType(QNetworkProxy::Socks5Proxy); proxy.setHostName(QString::fromStdString(curProxy.proxy.ToStringIP())); proxy.setPort(curProxy.proxy.GetPort()); return true; } else proxy.setType(QNetworkProxy::NoProxy); return false; } void OptionsModel::setRestartRequired(bool fRequired) { QSettings settings; return settings.setValue("fRestartRequired", fRequired); } bool OptionsModel::isRestartRequired() { QSettings settings; return settings.value("fRestartRequired", false).toBool(); }
[ "RodionKarimov@yandex.ru" ]
RodionKarimov@yandex.ru
c72f57058d49e042efe14e1770221af8a1d9d686
53853c2b5f52129498020c1b945bac0c2161ece6
/MK_Protocol.h
806268746aeae0399906b844fa8ae271331d7dcb
[]
no_license
ctraabe/MKDataLogger
b439c8ab6541dfb7a1b953f821f7f01d851eecd8
f8055c0d8da5ed38f1c451c13b5f60e85f982ffe
refs/heads/master
2021-01-25T05:35:08.029845
2013-01-05T08:13:53
2013-01-05T08:13:53
7,380,740
0
0
null
null
null
null
UTF-8
C++
false
false
1,258
h
/* * MikroKopter Protocol * This code is based on the MikroKopter NaviCtrl firmware, Copyright MikroKopter. */ #ifndef __MKPROTOCOL_H #define __MKPROTOCOL_H #include <cstdint> // slave addresses #define ANY_ADDRESS 0 #define FC_ADDRESS 1 #define NC_ADDRESS 2 #define MK3MAG_ADDRESS 3 #define MKOSD_ADDRESS 4 #define BL_ADDRESS 5 typedef struct { uint8_t* pData; uint16_t Size; uint16_t DataBytes; uint16_t Position; uint8_t Locked; } __attribute__((packed)) Buffer_t; void Buffer_Init(Buffer_t* pBuffer, uint8_t* pDataBuffer, uint16_t DataBufferSize); void Buffer_Clear(Buffer_t* pBuffer); uint8_t Buffer_Copy(Buffer_t* pSrcBuffer, Buffer_t* pDstBuffer); typedef struct { uint8_t Address; uint8_t CmdID; uint8_t* pData; uint16_t DataLen; } __attribute__((packed)) SerialMsg_t; uint8_t MKProtocol_CollectSerialFrame(Buffer_t* pRxBuff, uint8_t c); uint8_t MKProtocol_CreateSerialFrame(Buffer_t* pTxBuff, uint8_t CmdID, uint8_t Address, uint8_t numofbuffers , ...); //uint8_t *data, uint8_t len, ....; void MKProtocol_DecodeSerialFrameHeader(Buffer_t* pRxBuff, SerialMsg_t* pSerialMsg); void MKProtocol_DecodeSerialFrameData(Buffer_t* pRxBuff, SerialMsg_t* pSerialMsg); #endif // __MKPROTOCOL_H
[ "chris@raabe.nospam" ]
chris@raabe.nospam
92b21961d9bc697bbadd11f1c0b3ebbc5a11ccce
9bde0e9e7e611e38eacfc7000b40e2694c2832bb
/ProjetPAC/ProjetPAC/CMagnetField.cpp
ec669c6c3103d0a52848c1f80f4c20b737095a4f
[]
no_license
Cyossnarf/hapticLaplace
1b75e82821beefb725a1526f91fa726b8834ce74
080b4f4154554af7d43e0828b394b080a92f78c4
refs/heads/master
2020-06-13T11:49:36.365755
2018-02-02T17:34:47
2018-02-02T17:34:47
75,384,090
0
0
null
null
null
null
UTF-8
C++
false
false
4,713
cpp
#include "CMagnetField.h" #include "graphics\CPrimitives.h" #include <iostream> #include <cmath> #define MU_0 (4 * C_PI * 1e-7) chai3d::cMagnetField::cMagnetField(const cVector3d &pos, double in_radius, double out_radius, double intensity, double len) : cMesh() { // set properties of the field this->fieldEnabled = true; this->direction = cVector3d(1.0, 0.0, 0.0); this->radial = cVector3d(0.0, 1.0, 0.0); this->intensity = intensity; this->innerRadius = in_radius; this->outerRadius = out_radius; this->length = len; cVector3d currentPos(pos); double height_sp = 0.008; double gap_sp = 0.015; // create the first turn cCreateCylinder(this, len, in_radius);//cCreatePipe(this, height_sp, in_radius, out_radius); setLocalPos(currentPos); // set the appearance of the first turn //cTexture2dPtr turnTexture = cTexture2d::create(); //turnTexture->loadFromFile("../resources/images/magnet-color.png"); //setTexture(turnTexture); //setUseTexture(true); /* // create the rest of the turns (18 en 2015) for (int i = 0; i < 2; i++) { currentPos.add(gap_sp * direction); cMesh* mesh = new cMesh(); turns.push_back(mesh); this->addChild(mesh); mesh->setLocalPos(currentPos); cCreatePipe(mesh, height_sp, innerRadius, outerRadius); mesh->m_material->setBlueLightSky(); mesh->setTexture(turnTexture); mesh->setUseTexture(true); mesh->rotateAboutGlobalAxisDeg(cVector3d(0.0, 0.0, 1.0), 50 * cSinRad((i + 1) * C_PI / 18)); } */ /* cCreateCylinder(this, height_sp, in_radius ); tube->m_material->setBlueLightSky(); tube->setLocalPos(currentPos); */ // accelerator torus cMesh* ring = new cMesh(); this->addChild(ring); cCreateRing(ring, 0.12, 0.6); ring->setLocalPos(0, 0.6, 0.2); ring->rotateAboutLocalAxisRad(cVector3d(0.0, 1.0, 0.0), C_PI_DIV_2); ring->setTransparencyLevel(0); ring->setEnabled(false); // disable haptic effects setHapticEnabled(false); // configure the appearance setTransparency(1); // set the orientation of the field rotateAboutGlobalAxisRad(cVector3d(0.0, 1.0, 0.0), C_PI_DIV_2); //rotateAround(cVector3d(0.0, 1.0, 0.0), C_PI_DIV_2); } chai3d::cMagnetField::~cMagnetField() { clear(); } /*void chai3d::cMagnetField::rotateAround(cVector3d &rotationAxis, double rotation) { // compute the new direction of the field cVector3d cross; rotationAxis.crossr(direction, cross); direction = cCosRad(rotation) * direction + (1 - cCosRad(rotation)) * (direction.dot(rotationAxis)) * rotationAxis + cSinRad(rotation) * cross; rotationAxis.crossr(radial, cross); radial = cCosRad(rotation) * radial + (1 - cCosRad(rotation)) * (radial.dot(rotationAxis)) * rotationAxis + cSinRad(rotation) * cross; // rotate rotateAboutGlobalAxisRad(rotationAxis, rotation); }*/ bool chai3d::cMagnetField::contain(const cGenericObject &obj) const { cVector3d ortho; radial.crossr(direction, ortho); cVector3d objPos = obj.getLocalPos(); cVector3d diff = objPos - getLocalPos(); cVector3d projOrth = diff.dot(radial) * radial + diff.dot(ortho) * ortho; return projOrth.length() < innerRadius; } chai3d::cVector3d chai3d::cMagnetField::magnetForce(const cGenericObject &obj, double charge, const cVector3d &vel, bool enabled) { cVector3d force(0.0, 0.0, 0.0); if (enabled && contain(obj)) { force = charge*vel; force.cross((MU_0 * 18 * 1e4 * intensity) * getDirection());//((MU_0 * turns.size() * 1e4 * intensity) * getDirection()); } return force; } void chai3d::cMagnetField::setCurrentIntensity(double value) { value = (cAbs(value) < 1e-8) ? 0.0 : value; /* if (value == 0 && intensity > 0) { for (int i = 0; i < 18; i++)//turns.size->18 { turns[i]->rotateAboutGlobalAxisDeg(cVector3d(0.0, 0.0, -1.0), 50 * cSinRad((i + 1) * C_PI / 18)); } } if (value == 0 && intensity < 0) { for (int i = 0; i < 18; i++)//turns.size->18 { turns[i]->rotateAboutGlobalAxisDeg(cVector3d(0.0, 0.0, 1.0), 50 * cSinRad((i + 1) * C_PI / 18)); } } if (value > 0 && intensity == 0) { for (int i = 0; i < 18; i++)//turns.size->18 { turns[i]->rotateAboutGlobalAxisDeg(cVector3d(0.0, 0.0, 1.0), 50 * cSinRad((i + 1) * C_PI / 18)); } } if (value < 0 && intensity == 0) { for (int i = 0; i < 18; i++)//turns.size->18 { turns[i]->rotateAboutGlobalAxisDeg(cVector3d(0.0, 0.0, -1.0), 50 * cSinRad((i + 1) * C_PI / 18)); } } */ intensity = value; } void chai3d::cMagnetField::setTransparency(const double value) { transparency = std::max(0.0, std::min(1.0, value)); setTransparencyLevel(transparency); } void chai3d::cMagnetField::setTorusTransparency(const double value) { transparency = std::max(0.0, std::min(1.0, value)); getChild(0)->setTransparencyLevel(transparency); }
[ "francois.buet@depinfonancy.net" ]
francois.buet@depinfonancy.net
e761115655f1933f78c9a4f0cc10ca963c550c45
0353daa3b9ad5cc18d10f20c0795d735cc58dda0
/CapacitiveSensorSketch/CapacitiveSensorSketch.ino
d773ecb6a4bb6c864870544b19f0fbff7320d360
[]
no_license
awwdang/Capacitive_touch
3e9366b3435746087eb208268b2961626aef6adf
c0af1383c725f5782da1669b85f7a6da01c886e4
refs/heads/master
2016-08-12T02:31:03.549227
2015-10-27T05:28:26
2015-10-27T05:28:26
45,018,886
0
0
null
null
null
null
UTF-8
C++
false
false
1,154
ino
#include "CapacitiveSensor.h" CapacitiveSensor cs_4_2 = CapacitiveSensor(4,2); //2.0 MQ resistor between pin 4 and 2, pin 2 is the sensor pin CapacitiveSensor cs_4_6 = CapacitiveSensor(4,6); //2.0 MQ resistor between pin 4 and 6, pin 6 is the sensor pin CapacitiveSensor cs_4_8 = CapacitiveSensor(4,8); //2.0 MQ resistor between pin 4 and 8, pin 8 is the sensor pin CapacitiveSensor cs_4_10 = CapacitiveSensor(4,10); void setup() { // put your setup code here, to run once: cs_4_2.set_CS_AutocaL_Millis(0xFFFFFFFF); // turn off autocalibrate on channel 1 as example Serial.begin(9600); } void loop() { long start = millis(); long total1 = cs_4_2.capacitiveSensor(30); long total2 = cs_4_6.capacitiveSensor(30); long total3 = cs_4_8.capacitiveSensor(30); long total4 = cs_4_10.capacitiveSensor(30); Serial.print(millis() - start); Serial.print("\t"); Serial.print(total1); Serial.print("\t"); Serial.print(total2); Serial.print("\t"); Serial.print(total3); Serial.print("\t"); Serial.println(total4); delay(250); // put your main code here, to run repeatedly: }
[ "alvisblu@csu.fullerton.edu" ]
alvisblu@csu.fullerton.edu
152b6d41dc9fe9061c15f5b90e28a45ea9dfbe1f
8612e10b38ac783fc36cd0d3e6daf787378440bf
/affineklt.cpp
0bd73be8f81fc8520775453be646385b8675baf2
[ "MIT" ]
permissive
jonathanventura/affineklt
592d6da86fbf1ac10c5657cebb3805183c6329d1
2dd05753fe679f5938cb084c068e167a7bcd1834
refs/heads/main
2023-03-16T17:47:49.869036
2021-03-01T04:51:50
2021-03-01T04:51:50
342,773,551
0
0
null
null
null
null
UTF-8
C++
false
false
7,952
cpp
#include "affineklt.h" #include <opencv2/imgproc.hpp> #include <opencv2/highgui.hpp> #include <iostream> namespace affineklt { AffineKLT::AffineKLT( const AffineKLTParameters &_params ) : params(_params) { // pre-compute window weights windowSize = cv::Size(params.windowSize,params.windowSize); half_size = (params.windowSize-1)/2; weightsx = cv::Mat(windowSize,CV_32F); for ( int i = 0; i < params.windowSize; i++ ) for ( int j = 0; j < params.windowSize; j++ ) weightsx.at<float>(i,j) = j-half_size; weightsy = cv::Mat(windowSize,CV_32F); for ( int i = 0; i < params.windowSize; i++ ) for ( int j = 0; j < params.windowSize; j++ ) weightsy.at<float>(i,j) = i-half_size; weightsx2 = weightsx.mul(weightsx); weightsxy = weightsx.mul(weightsy); weightsy2 = weightsy.mul(weightsy); } void buildPyramid( const cv::Mat &image, const int nlevels, std::vector<cv::Mat> &pyramid ) { pyramid.resize(nlevels); image.convertTo(pyramid[0],CV_32FC1, 1.0/255.0); for ( int i = 1; i < nlevels; i++ ) cv::pyrDown(pyramid[i-1],pyramid[i]); } void AffineKLT::track( const cv::Mat &image0, const std::vector<cv::Point2f> &keypoints0, const cv::Mat &image1, std::vector<cv::Point2f> &keypoints1, std::vector<cv::Matx22f> &affine ) { // build pyramid std::vector<cv::Mat> pyramid0; std::vector<cv::Mat> pyramid1; buildPyramid(image0,params.nlevels,pyramid0); buildPyramid(image1,params.nlevels,pyramid1); // initialize transformations std::vector<cv::Matx21f> points1(keypoints0.size()); affine.resize(keypoints0.size()); for ( int i = 0; i < keypoints0.size(); i++ ) { affine[i](0,0) = 1; affine[i](0,1) = 0; affine[i](1,0) = 0; affine[i](1,1) = 1; } // initialize keypoints1 keypoints1.resize(keypoints0.size()); float scale = pow(2.f,-(params.nlevels-1)); for ( int i = 0; i < keypoints0.size(); i++ ) { keypoints1[i] = keypoints0[i]*scale; } // iterate over pyramid std::vector<cv::Point2f> level_points0(keypoints0.size()); for ( int l = params.nlevels-1; l >= 0; l-- ) { float scale = pow(2.f,-l); for ( int i = 0; i < keypoints0.size(); i++ ) { level_points0[i].x = keypoints0[i].x*scale; level_points0[i].y = keypoints0[i].y*scale; } refine_tracks( pyramid0[l], level_points0, pyramid1[l], keypoints1, affine ); if ( l == 0 ) break; // move up pyramid for ( int i = 0; i < keypoints0.size(); i++ ) { keypoints1[i] *= 2; } } } void AffineKLT::refine_tracks( const cv::Mat &image0, const std::vector<cv::Point2f> &points0, const cv::Mat &image1, std::vector<cv::Point2f> &points1, std::vector<cv::Matx22f> &affine ) { // compute image derivatives cv::Mat Ix,Iy; cv::Scharr(image0,Ix,-1,1,0); cv::Scharr(image0,Iy,-1,0,1); const cv::Mat Ix2 = Ix.mul(Ix); const cv::Mat IxIy = Ix.mul(Iy); const cv::Mat Iy2 = Iy.mul(Iy); cv::parallel_for_(cv::Range(0, points0.size()), [&](const cv::Range& range){ for ( int i = range.start; i < range.end; i++ ) { // get windows cv::Mat I, wIx, wIy, wIx2, wIxIy, wIy2; cv::getRectSubPix(image0,windowSize,points0[i],I,CV_32F); cv::getRectSubPix(Ix,windowSize,points0[i],wIx,CV_32F); cv::getRectSubPix(Iy,windowSize,points0[i],wIy,CV_32F); cv::getRectSubPix(Ix2,windowSize,points0[i],wIx2,CV_32F); cv::getRectSubPix(IxIy,windowSize,points0[i],wIxIy,CV_32F); cv::getRectSubPix(Iy2,windowSize,points0[i],wIy2,CV_32F); // spatial gradient matrix cv::Matx<float,6,6> G; G(0,0) = cv::sum(wIx2)[0]; G(0,1) = cv::sum(wIxIy)[0]; G(0,2) = cv::sum(weightsx.mul(wIx2))[0]; G(0,3) = cv::sum(weightsy.mul(wIx2))[0]; G(0,4) = cv::sum(weightsx.mul(wIxIy))[0]; G(0,5) = cv::sum(weightsy.mul(wIxIy))[0]; G(1,0) = G(1,0); G(1,1) = cv::sum(wIy2)[0]; G(1,2) = cv::sum(weightsx.mul(wIxIy))[0]; G(1,3) = cv::sum(weightsy.mul(wIxIy))[0]; G(1,4) = cv::sum(weightsx.mul(wIy2))[0]; G(1,5) = cv::sum(weightsy.mul(wIy2))[0]; G(2,0) = G(0,2); G(2,1) = G(1,2); G(2,2) = cv::sum(weightsx2.mul(wIx2))[0]; G(2,3) = cv::sum(weightsxy.mul(wIx2))[0]; G(2,4) = cv::sum(weightsx2.mul(wIxIy))[0]; G(2,5) = cv::sum(weightsxy.mul(wIxIy))[0]; G(3,0) = G(0,3); G(3,1) = G(1,3); G(3,2) = G(2,3); G(3,3) = cv::sum(weightsy2.mul(wIx2))[0]; G(3,4) = cv::sum(weightsxy.mul(wIxIy))[0]; G(3,5) = cv::sum(weightsy2.mul(wIxIy))[0]; G(4,0) = G(0,4); G(4,1) = G(1,4); G(4,2) = G(2,4); G(4,3) = G(3,4); G(4,4) = cv::sum(weightsx2.mul(wIy2))[0]; G(4,5) = cv::sum(weightsxy.mul(wIy2))[0]; G(5,0) = G(0,5); G(5,1) = G(1,5); G(5,2) = G(2,5); G(5,3) = G(3,5); G(5,4) = G(4,5); G(5,5) = cv::sum(weightsy2.mul(wIy2))[0]; cv::SVD svdG(G); for ( int iter = 0; iter < params.maxIter; iter++ ) { // warping of second image cv::Matx<float,2,3> M; M(0,0) = affine[i](0,0); M(0,1) = affine[i](0,1); M(0,2) = points1[i].x-half_size; M(1,0) = affine[i](1,0); M(1,1) = affine[i](1,1); M(1,2) = points1[i].y-half_size; cv::Mat J; cv::warpAffine(image1,J,M,windowSize,cv::INTER_LINEAR|cv::WARP_INVERSE_MAP,cv::BORDER_REPLICATE); // calculate difference cv::Mat diff; cv::subtract(I,J,diff,cv::noArray(),CV_32F); // calculate image mismatch vector cv::Matx<float,6,1> b; b(0,0) = cv::sum(wIx.mul(diff))[0]; b(1,0) = cv::sum(wIy.mul(diff))[0]; b(2,0) = cv::sum(weightsx.mul(wIx.mul(diff)))[0]; b(3,0) = cv::sum(weightsy.mul(wIx.mul(diff)))[0]; b(4,0) = cv::sum(weightsx.mul(wIy.mul(diff)))[0]; b(5,0) = cv::sum(weightsy.mul(wIy.mul(diff)))[0]; // calculate inv(G)*b cv::Matx<float,6,1> update; svdG.backSubst(b,update); // update point points1[i].x += affine[i](0,0) * update(0,0) + affine[i](0,1) * update(1,0); points1[i].y += affine[i](1,0) * update(0,0) + affine[i](1,1) * update(1,0); // update affine cv::Matx<float,2,2> Aupdate; Aupdate(0,0) = 1+update(2,0); Aupdate(0,1) = update(3,0); Aupdate(1,0) = update(4,0); Aupdate(1,1) = 1+update(5,0); affine[i] = affine[i] * Aupdate; // check convergence if ( update(0,0)*update(0,0)+update(1,0)*update(1,0) < params.resolutionThresh*params.resolutionThresh ) break; } } }); // end of parallel for } }
[ "jventu09@calpoly.edu" ]
jventu09@calpoly.edu
8bc8c9bf1e5193da8b92691b54ea3d5ac02400c4
13ec9f32b46154115a15327b9add3f85bad4fd88
/k-diff.cpp
8d13601839739d77076c8ade64968c1526484fb0
[]
no_license
fenghuo/cs160homework1
a1baa5fbbe29ca3067fe401b34456e66fc7449ca
f4e256dffafe85f6a2c4b324b1c3bbfb69c4b88f
refs/heads/master
2016-09-06T04:55:46.964732
2014-10-03T21:09:51
2014-10-03T21:09:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
386
cpp
#include<iostream> using namespace std; void f(int* arr,int n,int k) { int*brr=new int[n]; for(int i=0;i<n;i++) brr[n-i-1]=-arr[i]; int i=0; int j=n-1; while(i<n && j>=0) { int sum=(brr[i]+arr[j]); if(sum==k) { cout<<(-brr[i])<<" "<<arr[j]<<endl; i++;j--; } else if(sum<k) i++; else j--; } } main() { int arr[]={1,3,4,6,7,9,11,12}; f(arr,8,-2); }
[ "372615958@qq.com" ]
372615958@qq.com
4468d849eeec5ff22fe7718bcfea558f7694df75
e55386e18276db602b3cbb84c30bd790657a0eaa
/ExitCommand.h
5b589d4050e3a7eff974b4daaccd59e847cd32c1
[]
no_license
yaaraF/flightSimulatorWorking
aa4a7b704525edaea3d514fc01199fcdc1603ce6
81da832f3c5994d5a3cfa600946df01f60acf7fd
refs/heads/master
2020-04-13T15:52:15.308177
2018-12-27T15:31:38
2018-12-27T15:31:38
163,304,345
0
0
null
null
null
null
UTF-8
C++
false
false
229
h
#ifndef HOPEGOOD_EXITCOMMAND_H #define HOPEGOOD_EXITCOMMAND_H #include "Command.h" class ExitCommand : public Command { public: ExitCommand(MySocket *mySocket); void doCommand(); }; #endif //HOPEGOOD_EXITCOMMAND_H
[ "yaaraf245@gmail.com" ]
yaaraf245@gmail.com
4e0897d6f3916bef946bff8444e754cc98786240
7cc4bd5ce79fcbaa5fa2a58558aa05f89df0f7a4
/attic/library - Copy/chips/gf-hd44780-fast.hpp
b4d6e68a24ca80ac6abf857a4a61525b23d11785
[]
no_license
wovo/godafoss-c-
5bde98b077bfd3a2bb0cbe9057abf5b7b0c3ebf4
77be6d2661be47af6b6591a944c169021ee71020
refs/heads/master
2023-03-17T07:17:15.014692
2021-03-27T10:16:18
2021-03-27T10:16:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,485
hpp
// ========================================================================== // // file : hwcpp-hd44780.hpp // // ========================================================================== // // This file is part of HwCpp, // a C++ library for close-to-the-hardware programming. // // Copyright Wouter van Ooijen 2017 // // Distributed under the Boost Software License, Version 1.0. // (See the accompanying LICENSE_1_0.txt in the root directory of this // library, or a copy at http://www.boost.org/LICENSE_1_0.txt) // // ========================================================================== template< can_pin_out rs, can_pin_out e, can_port_out port, uint32_t size_x, uint32_t size_y, typename timing > struct _hd44780_rs_e_d_x_y_timing { private: using xy_t = uint_fast8_t; public: static constexpr auto size = xy( size_x, size_y ); static inline xy cursor; private: static void write4( uint_fast8_t d ){ port::write( d ); // minimum tDBW timing::template ns< 200 >::wait(); e::write( 1 ); rs::flush(); port::flush(); e::flush(); // minimum PW-EH timing::template ns< 500 >::wait(); direct< e >::write( 0 ); // minumum TcycE = 1000 ns - PW-EH // snark: must be enlarged to get things working?? timing::template ns< 100L * 500 >::wait(); } static void write8( bool is_data, uint_fast8_t d ){ rs::write( is_data ); write4( d >> 4 ); write4( d ); // enough for most instructions // if an instruction needs more, that is his responsibilitty timing::template us< 100 >::wait(); } public: static void GODAFOSS_INLINE command( uint_fast8_t cmd ){ write8( 0, cmd ); } static void GODAFOSS_INLINE data( uint_fast8_t chr ){ write8( 1, chr ); } static void clear(){ command( 0x01 ); timing::template us< 5'000 >::wait(); goto_xy( xy( 0, 0 )); } static void goto_xy( xy target ){ if( size.y == 1 ){ // 1-line LCDs have a split after the 8'th char if( target.x < 8 ){ command( 0x80 + target.x ); } else { command( 0x80 + 0x40 + ( target.x - 8 )); } } else { if( size.y == 2 ){ command( 0x80 + (( target.y > 0 ) ? 0x40 : 0x00 ) + ( target.x ) ); } else { command( 0x80 + (( target.y & 0x01 ) ? 0x40 : 0x00 ) + (( target.y & 0x02 ) ? 0x14 : 0x00 ) + ( target.x ) ); } } cursor = target; } static bool GODAFOSS_INLINE write_blocks(){ return false; } static void GODAFOSS_INLINE flush(){} static void write( char chr ){ if( size.y == 1 ){ if( cursor.x == 8 ){ goto_xy( cursor ); } } data( chr ); ++cursor.x; } static void init(){ // init the dependencies rs::init(); e:: init(); port::init(); timing::init(); // give LCD time to wake up direct< e >::write( 0 ); direct< rs >::write( 0 ); timing::template ms< 40 >::wait(); // interface initialization: make sure the LCD is in 4 bit mode // (magical sequence, taken from the HD44780 data-sheet) write4( 0x03 ); timing::template ms< 5 >::wait(); write4( 0x03 ); timing::template us< 100 >::wait(); write4( 0x03 ); write4( 0x02 ); // now we are in 4 bit mode // functional initialization command( 0x28 ); // 4 bit mode, 2 lines, 5x8 font command( 0x0C ); // display on, no cursor, no blink clear(); // clear display, 'cursor' home goto_xy( xy( 0, 0 ) ); // 'cursor' home } }; // class _hd44780_rs_e_d_x_y_timing_foundation template< can_pin_out rs, can_pin_out e, can_port_out port, uint32_t size_x, uint32_t size_y, typename timing > using hd44780_rs_e_d_x_y_timing = terminal< _hd44780_rs_e_d_x_y_timing< rs, e, port, size_x, size_y, timing > >;
[ "wouter@voti.nl" ]
wouter@voti.nl
0fda1b6958b728bdf3221b00683eefb536c6203f
1fddc0f5ebe01106ebe718ad1dc2475dbdcfc47e
/SPOJ/P185SUMJ - ROUND 5J-nha-hang.cpp
9896bc902a4419a39e076292286fc341de9f60da
[]
no_license
not-a-wjbu-war/Source-Code
15e253334c0a7a81a8218ef14f0a4d6d14005984
3eec0a26e665ebda5c6cbf0dc178100076d00a64
refs/heads/master
2023-06-01T11:12:29.844593
2021-06-14T17:44:51
2021-06-14T17:44:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
511
cpp
//https://www.spoj.com/PTIT/problems/P185SUMJ/ // Code By CodeWar :3 #include <bits/stdc++.h> #define pb push_back; typedef long long i64; typedef long i32; const int mod = 1e9+7; const int nMax = 1e6+5; using namespace std; string s; void input(){ cin >> s; } void solve(){ cout << 26 + 25*s.length(); } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int t = 1; //cin >> t; while(t--){ input(); solve(); } return 0; } // Code By CodeWar :3
[ "bbaotrung372k@gmail.com" ]
bbaotrung372k@gmail.com
6687e936e7052dbbb1bf0197e4ed4b9b54730efc
13500b849db6d62ac7ee94e32ddd76681af79d6b
/100003/递推解法.cpp
e8a932814ebe327a993a8682dfe7929df6726a7f
[]
no_license
syjsu/noip-with-vue.js
055a90d13dedd2c00b2d449a39fa4f3128270480
6076cd41b5343dd3ff18b4c4afec207021f8c78b
refs/heads/master
2020-03-17T20:15:42.362689
2018-05-24T05:10:27
2018-05-24T05:10:27
133,900,801
0
0
null
null
null
null
UTF-8
C++
false
false
178
cpp
#include<iostream> using namespace std; int main(){ int n,i; int a[35]; cin>>n; a[1]=1; a[2]=2; for(i=3;i<=n;i++){ a[i]=a[i-1]+a[i-2]; } cout<<a[n]<<endl; }
[ "syjsu@qq.com" ]
syjsu@qq.com
68e20d49bd52b58f49cf50dfe158e77269b7f949
8fc5c21d3bdb2e22530f9cac0af8a700b64c306e
/Proyecto 1/Framework/Win32Framework.h
151f2b7a56a6c92835132055265fb1ac65a4f5b1
[]
no_license
Danelo13/CamusWork
520f004ab7e3b2a2a8b381d899e180d5fa670ae6
5f55ea4c2c5b233516e3b68b01acbf76e548f97f
refs/heads/master
2021-01-15T21:30:29.662936
2018-01-06T20:11:17
2018-01-06T20:11:17
99,868,941
0
0
null
null
null
null
UTF-8
C++
false
false
561
h
#ifndef UAD_WIN32FRAMEWORK_H #define UAD_WIN32FRAMEWORK_H #include "Core.h" #include "BaseDriver.h" #include <memory> class Win32Framework : public RootFramework { public: Win32Framework(AppBase *pBaseApp) : RootFramework(pBaseApp), m_alive(true) { pBaseApp->SetParentFramework(this); } void InitGlobalVars(); void OnCreateApplication(); void OnDestroyApplication(); void OnInterruptApplication(); void OnResumeApplication(); void UpdateApplication(); void ProcessInput(); void ResetApplication(); ~Win32Framework() { } bool m_alive; }; #endif
[ "danelo130@gmail.com" ]
danelo130@gmail.com
72ee64f4953f8b75a93214c31aa95554a314940f
7487baa200db22dea823989ac539a31f4d5d784f
/src/Communication/HttpClient.cpp
f2f4e1e0458605cc1fcedaef6930f882c98a74f4
[]
no_license
korbdev/Krybot
ef2bc0c1cb0c076e02f00cf1072d38b88e8b4516
4da696435ba87896802a4e91452ed5c6df965bbd
refs/heads/master
2016-08-10T09:00:56.004546
2015-07-07T01:06:21
2015-07-07T01:06:21
36,465,000
0
0
null
null
null
null
UTF-8
C++
false
false
1,296
cpp
/* * HttpClient.cpp * * Created on: 06.07.2015 * Author: rkorb */ #include <Communication/HttpClient.h> #include <curl/curl.h> #include <Communication/Message.h> #include <stdlib.h> #include <stdio.h> #include <string> #include <cstring> #include <iostream> bool HttpClient::initializeConnection(){ handle = curl_easy_init(); if(handle){ return true; } else{ return false; } } bool HttpClient::closeConnection(){ curl_easy_cleanup(handle); return true; } Message HttpClient::read(){ CURLcode res; CurlMessage msg; msg.buffer = (char*) malloc(1); msg.size = 0; curl_easy_setopt(handle, CURLOPT_URL, "127.0.0.1:5000"); curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, HttpClient::write_data); curl_easy_setopt(handle, CURLOPT_WRITEDATA, (void*) &msg); res = curl_easy_perform(handle); std::string message = msg.buffer; Message recv(message); free(msg.buffer); return recv; } bool HttpClient::write(Message message){ return true; } size_t HttpClient::write_data(void *buffer, size_t size, size_t nmemb, void *userp){ size_t real = size*nmemb; CurlMessage* msg = (CurlMessage*) userp; msg->buffer = (char*) realloc(msg->buffer, msg->size + real + 1); msg->size += real; memcpy(msg->buffer, buffer, real); msg->buffer[msg->size] = 0; return real; }
[ "mail@rudolfkorb.de" ]
mail@rudolfkorb.de
3030c48e8b6acca8c3ae50806ea0d11aad56b683
550f5785302177eb785896ed1e3bac47a8595c60
/LaLiPC/Regression.cpp
b4adf0f5ff253aec364a1dbeff1011245347ae87
[]
no_license
niuqun/LaLiPC
85c8adb8b1de4f7e02b4c213acdd6fcad477c6fe
b7a3cfd2ae46f1062a9dccfe5385420d85dc62df
refs/heads/master
2020-05-18T05:45:42.758805
2014-12-31T07:22:14
2014-12-31T07:22:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
710
cpp
#include "Regression.h" int Regression::CountPeopleNumber(double variables[], int length) { /*double theta[] = {0.7234, -0.0044, -0.0001, -0.0244, 0.0012, 0.0126, -0.7263, 0.5693, -0.0046};*/ /*double theta[] = { -1.1395, -0.0021, 0.0007, -0.2361, 0.0211, 0.0221, 5.2605, 0.9037, 0.0188};*/ double theta[] = { 4.6739, -0.0237, 0.0011, 0.1517, -0.1312, 0.0649, -8.9738, 1.1162, 0.0152}; double regress_result = 0.0; int people_number = 0; for (int i = 0; i < length; ++i) { regress_result += theta[i] * variables[i]; } people_number = static_cast<int>(floor(regress_result + 0.5)); if (people_number <= 0) { throw RegressResultException(); } else { return people_number; } }
[ "1328983175@qq.com" ]
1328983175@qq.com
af6e5f7b32d297c0d01df7890e20431833a0bdb9
cac78ef398d26d558abc04ea957c1f8ff7194864
/components/printing/common/printer_capabilities.h
d02e65f638315120cba669309bec6e52f2c51fbd
[ "BSD-3-Clause" ]
permissive
Honor6/chromium
ba8ce9c370a0635803c3efe5845a91c0512b2af6
db3bb0cb2a5adb5cf63cb70c785f182c1562d0b5
refs/heads/master
2023-02-26T12:50:06.015506
2019-01-08T13:29:48
2019-01-08T13:29:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,516
h
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_PRINTING_COMMON_PRINTER_CAPABILITIES_H_ #define COMPONENTS_PRINTING_COMMON_PRINTER_CAPABILITIES_H_ #include <memory> #include <string> #include <utility> #include "base/memory/scoped_refptr.h" #include "base/values.h" #include "printing/backend/print_backend.h" namespace printing { struct PrinterBasicInfo; extern const char kPrinter[]; // Extracts the printer display name and description from the // appropriate fields in |printer| for the platform. std::pair<std::string, std::string> GetPrinterNameAndDescription( const PrinterBasicInfo& printer); // Returns the JSON representing printer capabilities for the device registered // as |device_name| in the PrinterBackend. The returned dictionary is suitable // for passage to the WebUI. The settings are obtained using |print_backend| if // it is provided. If |print_backend| is null, uses a new PrintBackend instance // with default settings. // Data from |basic_info| and |additional_papers| are incorporated into the // returned dictionary. base::Value GetSettingsOnBlockingPool( const std::string& device_name, const PrinterBasicInfo& basic_info, const PrinterSemanticCapsAndDefaults::Papers& additional_papers, scoped_refptr<PrintBackend> print_backend); } // namespace printing #endif // COMPONENTS_PRINTING_COMMON_PRINTER_CAPABILITIES_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
ca5111c43f6ed02d71c05da0a8f29e8c414a6408
48e41323e4c15025c505d8300f970a6159085f67
/kv.cpp
87d085e227517fdcaf9ae728c875dbc04d8d54e5
[]
no_license
Cool-Stone/KV-Based-Server
0d3d2e0133160a37f613e1690388d549697a4d6b
f2d6fe477fc88f4e8c3a10b92f123d6e8b63841c
refs/heads/master
2020-03-22T16:58:50.753940
2018-07-10T02:16:24
2018-07-10T02:16:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
19,531
cpp
/** * KV.cpp * * Referred to Bitcask technique */ #include "kv.h" /** Map **/ Map::Map() { maps.resize(BucketSize); lockset.resize(BucketSize); for (auto& lock : lockset) { lock = PTHREAD_RWLOCK_INITIALIZER; } } uint32_t Map::hash(const string& key) { uint32_t bucketno = 0; for (auto& ch : key) { bucketno += (unsigned)ch * (unsigned)ch; } return bucketno % BucketSize; } Status Map::rdlock_key(const string& key) { Status s; uint32_t bucketno = hash(key); if (pthread_rwlock_rdlock(&lockset[bucketno]) != 0) { return s.IOError("Rdlock failed"); } return s; } Status Map::wrlock_key(const string& key) { Status s; uint32_t bucketno = hash(key); if (pthread_rwlock_wrlock(&lockset[bucketno]) != 0) { return s.IOError("Wrlock failed"); } return s; } Status Map::unlock_key(const string& key) { Status s; uint32_t bucketno = hash(key); if (pthread_rwlock_unlock(&lockset[bucketno]) != 0) { return s.IOError("Unlock failed"); } return s; } bool Map::has(const string& key) { uint32_t bucketno = hash(key); return (maps[bucketno].count(key) > 0); } uint64_t Map::size() { uint64_t total = 0; for (auto& _map : maps) { total += _map.size(); } return total; } bool Map::empty() { return (size() == 0); } void Map::clear() { for (auto& _map : maps) { _map.clear(); } } void Map::copyTo(unordered_map<string, Index>& _whole_index) { _whole_index.clear(); for (auto& _map : maps) { for (auto& p : _map) { _whole_index.insert(p); } } } Status Map::set(const string& key, const Index& index) { Status s; uint32_t bucketno = hash(key); wrlock_key(key); maps[bucketno][key] = index; unlock_key(key); return s; } Status Map::get(const string& key, Index& index) { Status s; uint32_t bucketno = hash(key); rdlock_key(key); if (!has(key)) { unlock_key(key); return s.IOError("Key " + key + " not found."); } index = maps[bucketno][key]; unlock_key(key); return s; } Status Map::del(const string& key) { Status s; uint32_t bucketno = hash(key); wrlock_key(key); if (!has(key)) { unlock_key(key); return s.IOError("Key " + key + " not found."); } maps[bucketno].erase(key); unlock_key(key); return s; } /** Cache **/ Cache::Cache(uint32_t c) { _capacity = c; _size = 0; head = new Node("head", ""); tail = new Node("tail", ""); head->next = tail; tail->prev = head; _lock = PTHREAD_MUTEX_INITIALIZER; } Cache::~Cache() { Node *node = head, *next = nullptr; while (node) { next = node->next; delete node; node = next; } } void Cache::pop(Node *node) { node->next->prev = node->prev; node->prev->next = node->next; } void Cache::put_front(Node *node) { head->next->prev = node; node->next = head->next; head->next = node; node->prev = head; } Status Cache::set(const string& key, const string& value) { Status s; lock(); if (table.count(key)) { Node *node = table[key]; node->val = value; pop(node); put_front(node); } else { if (_size < _capacity) { // if not full, add to front Node *node = new Node(key, value); ++_size; put_front(node); table[key] = node; } else { // else kick out the tail Node *node = tail->prev; table.erase(node->key); pop(node); node->key = key; node->val = value; put_front(node); table[key] = node; } } unlock(); return s; } Status Cache::get(const string& key, string& value) { Status s; lock(); if (table.count(key)) { value = table[key]->val; Node *node = table[key]; pop(node); put_front(node); unlock(); return s; } else { unlock(); return s.NotFound("key " + key + " not found in cache."); } } Status Cache::del(const string& key) { Status s; lock(); if (table.count(key)) { Node *node = table[key]; pop(node); delete node; table.erase(key); --_size; unlock(); return s; } else { unlock(); return s.NotFound("key " + key + " not found in cache."); } } /** Env **/ Status Env::createDir(const string& name) { // create directory Status s; if (mkdir(name.c_str(), 0755) != 0) { return s.IOError("Create directory " + name + " failed."); } return s; } Status Env::lock(const string& name, FileLock** l) { Status s; *l = nullptr; int fd; if ((fd = ::open(name.c_str(), O_RDWR | O_CREAT, 0644)) < 0) { return s.IOError("Lock file " + name + " failed, error: " + strerror(errno)); } else if (lockUnlock(fd, true) == -1) { ::close(fd); return s.IOError("Lock file " + name + " failed, error: " + strerror(errno)); } else { FileLock* m_lock = new FileLock; m_lock->fd = fd; m_lock->name = name; *l = m_lock; return s; } } Status Env::unlock(FileLock* l) { Status s; if (lockUnlock(l->fd, false) == -1) { return s.IOError("Unlock file " + l->name + " failed."); } ::close(l->fd); return s; } int Env::lockUnlock(int fd, bool lock) { errno = 0; struct flock f; memset(&f, 0, sizeof(f)); f.l_type = (lock ? F_WRLCK : F_UNLCK); f.l_whence = SEEK_SET; f.l_start = 0; f.l_len = 0; return fcntl(fd, F_SETLK, &f); } Status Env::getChildren(const string& name, vector<string>& files) { Status s; DIR* dir; struct dirent* ent; files.clear(); if ((dir = opendir(name.c_str())) == nullptr) { return s.IOError("Open directory " + name + " failed."); } while ((ent = readdir(dir)) != nullptr) { if (strcmp(ent->d_name, "..") == 0 || strcmp(ent->d_name, ".") == 0) { continue; } files.push_back(ent->d_name); } closedir(dir); return s; } uint32_t Env::getMaxId(const vector<string>& files, const string& base) { uint32_t id = 0, tmp = 0; for (auto& file : files) { sscanf(file.c_str(), (base + "%d").c_str(), &tmp); id = std::max(id, tmp); } return id; } bool Env::existFile(const string& name) { return access(name.c_str(), F_OK) == 0; } /** * DB */ DB::DB() : active_id(0), hint_id(0), cache(100), lock(nullptr), env(nullptr) { _disk_lock = PTHREAD_RWLOCK_INITIALIZER; } DB::~DB() { close(); delete env; delete lock; } Status DB::open(const string& name) { dbname = name; return init(); } Status DB::close() { Status s; if (active_ofs.is_open()) { active_ofs.close(); } if (hint_ofs.is_open()) { hint_ofs.close(); } //s = env->unlock(lock); return s; } Status DB::init() { Status s; vector<string> index_files, data_files; if (!env->existFile(dbname)) { env->createDir(dbname); } s = env->lock(dbname + LockFileName, &lock); if (!s.ok()) { return s; } if (env->existFile(dbname + IndexDirectory)) { s = env->getChildren(dbname + IndexDirectory, index_files); if (!s.ok()) { return s; } } else { env->createDir(dbname + IndexDirectory); } hint_id = env->getMaxId(index_files, HintFileName); // load index for (auto& file : index_files) { s = loadIndex(file); if (!s.ok()) { std::cout << s.toString() << std::endl; } } if (env->existFile(dbname + DataDirectory)) { s = env->getChildren(dbname + DataDirectory, data_files); if (!s.ok()) { return s; } else { active_id = env->getMaxId(data_files, DataFileName); } } else { env->createDir(dbname + DataDirectory); } s = newFileStream(active_ofs, active_id, active_size, DataDirectory, DataFileName); if (!s.ok()) { return s; } s = newFileStream(hint_ofs, hint_id, hint_size, IndexDirectory, HintFileName); if (!s.ok()) { return s; } return s; } Status DB::disk_rdlock() { Status s; if (pthread_rwlock_rdlock(&_disk_lock) != 0) { return s.IOError("Disk rdlock failed."); } return s; } Status DB::disk_wrlock() { Status s; if (pthread_rwlock_wrlock(&_disk_lock) != 0) { return s.IOError("Disk wrlock failed."); } return s; } Status DB::disk_unlock() { Status s; if (pthread_rwlock_unlock(&_disk_lock) != 0) { return s.IOError("Disk unlock failed."); } return s; } Status DB::newFileStream(ofstream& ofs, uint32_t& id, uint64_t& size, const string& dir, const string& filename) { Status s; if (ofs.is_open()) { ofs.close(); } ofs.open(dbname + dir + "/" + filename + std::to_string(id), std::ios::in | std::ios::out | std::ios::app | std::ios::ate | std::ios::binary); size = ofs.tellp(); if (ofs.is_open()) { return s; } else { return s.IOError("Open fstream failed."); } } Status DB::set(const string& key, const string& value) { Status s; Data data; Index index; data.time_stamp = env->timeStamp(); data.key_size = static_cast<uint32_t>(key.size()); data.val_size = static_cast<uint32_t>(value.size()); data.key = key; data.value = value; data.crc = 0; // NOT implement crc & magic here data.magic = 0; index.time_stamp = env->timeStamp(); index.key_size = static_cast<uint32_t>(key.size()); index.key = key; // write to disk disk_wrlock(); uint64_t off = syncData(data); if (off < 0) { disk_unlock(); return s.IOError("Write data failed."); } index.id = active_id; index.offset = off; index.valid = true; s = syncIndex(index); if (!s.ok()) { disk_unlock(); return s; } disk_unlock(); // update index _index.set(key, index); // update cache cache.set(key, value); return s; } uint64_t DB::syncData(const Data& data) { uint64_t off = active_size; if (active_size < MaxDataFileSize) { // if not full active_ofs.write((char*)&data.time_stamp, sizeof(data.time_stamp)); active_ofs.write((char*)&data.key_size, sizeof(data.key_size)); active_ofs.write((char*)&data.val_size, sizeof(data.val_size)); active_ofs.write(data.key.c_str(), data.key_size); active_ofs.write(data.value.c_str(), data.val_size); active_ofs.write((char*)&data.crc, sizeof(data.crc)); active_ofs.write((char*)&data.magic, sizeof(data.magic)); active_size += sizeof(time_t) + sizeof(uint32_t) * 4 + data.key_size + data.val_size; active_ofs.flush(); return off; } else { active_ofs.close(); Status s; s = newFileStream(active_ofs, ++active_id, active_size, DataDirectory, DataFileName); if (!s.ok()) { return -1; } return syncData(data); } } Status DB::syncIndex(const Index& index) { Status s; if (hint_size < MaxHintFileSize) { // if not full hint_ofs.write((char*)&index.time_stamp, sizeof(index.time_stamp)); hint_ofs.write((char*)&index.key_size, sizeof(index.key_size)); hint_ofs.write(index.key.c_str(), index.key_size); hint_ofs.write((char*)&index.id, sizeof(index.id)); hint_ofs.write((char*)&index.offset, sizeof(index.offset)); hint_ofs.write((char*)&index.valid, sizeof(index.valid)); hint_size += sizeof(time_t) + sizeof(uint32_t) * 2 + sizeof(uint64_t) + index.key_size + sizeof(bool); hint_ofs.flush(); return s; } else { hint_ofs.close(); s = newFileStream(hint_ofs, ++hint_id, hint_size, IndexDirectory, HintFileName); if (!s.ok()) { return s; } return syncIndex(index); } } Status DB::get(const string& key, string& value) { Status s; Index index; // firstly search in cache s = cache.get(key, value); if (s.ok()) { return s; } // if not found, search in index if (_index.has(key)) { _index.get(key, index); uint32_t id = index.id; uint64_t offset = index.offset; time_t ts; disk_rdlock(); s = retrieve(key, id, offset, ts, value); disk_unlock(); return s; } else { return s.NotFound("Key " + key + " not found."); } } Status DB::del(const string& key) { Status s; Index index; // delete in cache cache.del(key); // delete in disk if (_index.has(key)) { _index.get(key, index); index.time_stamp = env->timeStamp(); index.valid = false; disk_wrlock(); s = syncIndex(index); disk_unlock(); _index.del(key); return s; } else { return s.NotFound("Key " + key + " not found."); } } Status DB::retrieve(const string& key, const uint32_t id, const uint64_t offset, time_t& ts, string& value) { Status s; ifstream ifs; ifs.open(dbname + DataDirectory + "/" + DataFileName + std::to_string(id), std::ios::out | std::ios::binary); ifs.seekg(offset, std::ios::beg); uint32_t key_size = 0, val_size = 0; ifs.read((char*)&ts, sizeof(ts)); ifs.read((char*)&key_size, sizeof(key_size)); ifs.read((char*)&val_size, sizeof(val_size)); char *read_key = new char[key_size + 1], *read_val = new char[val_size + 1]; ifs.read(read_key, key_size); ifs.read(read_val, val_size); read_key[key_size] = '\0'; read_val[val_size] = '\0'; value = string(read_val); delete[] read_key; delete[] read_val; ifs.close(); return s; } Status DB::loadIndex(const string& file) { Status s; ifstream ifs; ifs.open(dbname + IndexDirectory + "/" + file, std::ios::out | std::ios::binary); ifs.seekg(0, std::ios::beg); if (!ifs.is_open()) { return s.IOError("open " + dbname + DataDirectory + "/" + file + " failed."); } while (ifs) { Index index; ifs.read((char*)&index.time_stamp, sizeof(time_t)); if (ifs.eof()) break; ifs.read((char*)&index.key_size, sizeof(index.key_size)); char *read_key = new char[index.key_size + 1]; ifs.read(read_key, index.key_size); read_key[index.key_size] = '\0'; index.key = string(read_key); delete[] read_key; ifs.read((char*)&index.id, sizeof(index.id)); ifs.read((char*)&index.offset, sizeof(index.offset)); ifs.read((char*)&index.valid, sizeof(bool)); if (index.valid) { _index.set(index.key, index); } else { if (_index.has(index.key)) { _index.del(index.key); } } } ifs.close(); return s; } string DB::exec(const string& cmd) { stringstream ss(cmd); string op, k, v; Status s; ss >> op; if (op == "set") { ss >> k >> v; s = set(k, v); if (!s.ok()) { return "set failed"; } else { return "set success"; } } else if (op == "get") { ss >> k; s = get(k, v); if (!s.ok()) { return s.toString(); } else { return v; } } else if (op == "del") { ss >> k; s = del(k); if (!s.ok()) { return s.toString(); } else { return "del success"; } } else { return "invalid command"; } } Status DB::merge() { Status s; string val; unordered_map<string, Index> _whole_index; unordered_map<string, string> kv; vector<string> index_files, data_files; _index.copyTo(_whole_index); for (auto& p : _whole_index) { s = get(p.first, val); if (!s.ok()) { return s; } kv[p.first] = val; } s = env->getChildren(dbname + IndexDirectory, index_files); if (!s.ok()) { return s.IOError("Get children of " + dbname + IndexDirectory + " failed."); } for (auto& file : index_files) { if (remove((dbname + IndexDirectory + "/" + file).c_str()) != 0) { return s.IOError("Remove file " + dbname + IndexDirectory + "/" + file + " failed."); } } s = env->getChildren(dbname + DataDirectory, data_files); if (!s.ok()) { return s.IOError("Get children of " + dbname + DataDirectory + " failed."); } for (auto& file : data_files) { if (remove((dbname + DataDirectory + "/" + file).c_str()) != 0) { return s.IOError("Remove file " + dbname + DataDirectory + "/" + file + " failed."); } } s = newFileStream(active_ofs, active_id = 0, active_size, DataDirectory, DataFileName); if (!s.ok()) { return s; } s = newFileStream(hint_ofs, hint_id = 0, hint_size, IndexDirectory, HintFileName); if (!s.ok()) { return s; } _index.clear(); for (auto& p : kv) { set(p.first, p.second); } std::cout << "Database size: " << _index.size() << std::endl; return s; } /** Debugger **/ Debugger::Debugger() { srand((unsigned)time(nullptr)); } string Debugger::genString() { int len = 10 + rand() % 20; string res(len, 'a'); for (auto& ch : res) { ch += rand() % 26; } return res; } void Debugger::test_db() { Status s; s = db.open("tmp___"); if (!s.ok()) { cout << s.toString() << endl; system("rm -rf tmp___"); return; } cout << "====== Test set ======" << endl; // generate random kv pair unordered_map<string, string> kv; for (int i = 0; i < 5000; ++i) { string k = genString(), v = genString(); kv[k] = v; s = db.set(k, v); if (!s.ok()) { cout << s.toString() << endl; cout << "Set failed" << endl; system("rm -rf tmp___"); return; } cout << "Case " << i << " ok" << endl; } cout << "====== Set ok ======" << endl; cout << "====== Test merge & get ======" << endl; db.merge(); s = db.merge(); if (!s.ok()) { cout << s.toString() << endl; system("rm -rf tmp___"); return; } for (auto& p : kv) { string k = p.first, v; s = db.get(k, v); if (!s.ok()) { cout << "Get failed" << endl; system("rm -rf tmp___"); return; } } cout << "====== Merge & Get ok ======" << endl; cout << "====== Test random get ======" << endl; for (int i = 0; i < 1000; ++i) { string k = genString(), v; s = db.get(k, v); if (kv.count(k) && s.IsNotFound() || !kv.count(k) && s.ok()) { cout << "Random get failed" << endl; system("rm -rf tmp___"); return; } cout << "Case " << i << " ok" << endl; } cout << "====== Random get ok ======" << endl; cout << "====== Test del ======" << endl; for (auto& p : kv) { string k = p.first; s = db.del(k); if (!s.ok()) { cout << s.toString() << endl; cout << "Del failed" << endl; system("rm -rf tmp___"); return; } } cout << "====== Del ok ======" << endl; cout << "====== Check empty ======" << endl; if (!db._index.empty()) { cout << "Not empty! size: " << db._index.size() << endl; system("rm -rf tmp___"); return; } cout << "====== All test pass ======" << endl; system("rm -rf tmp___"); } void Debugger::ui() { string cmd; Status s; s = db.open("tmp___"); if (!s.ok()) { cout << s.toString() << endl; system("rm -rf tmp___"); return; } while (getline(cin, cmd)) { cout << db.exec(cmd) << endl; } system("rm -rf tmp___"); } void* work(void* arg) { Job *job = (Job*)arg; string k, v; Status s; while (!job->kv->empty()) { // get next job pthread_mutex_lock(job->_lock); if (job->kv->empty()) break; auto it = job->kv->begin(); k = it->first; v = it->second; job->kv->erase(k); pthread_mutex_unlock(job->_lock); switch (job->op) { case Job::SET: s = job->db->set(k, v); break; case Job::GET: s = job->db->get(k, v); break; case Job::DEL: s = job->db->del(k); break; default: break; } if (!s.ok()) { cout << s.toString() << endl; } } return nullptr; } void Debugger::test_concurrency() { int thread_num = 20, request_num = 50; pthread_mutex_t _lock = PTHREAD_MUTEX_INITIALIZER; pthread_t *pids = new pthread_t[thread_num]; unordered_map<string, string> kv, cmp; Status s; auto clean = [&pids]() { // cleaner delete[] pids; system("rm -rf tmp___"); }; s = db.open("tmp___"); if (!s.ok()) { cout << s.ok() << endl; clean(); return; } cout << "====== Concurrency test ======" << endl; // randomly generate kv cout << "Generating random kv pair" << endl; for (int i = 0; i < 2000; ++i) { string k = genString(), v = genString(); kv[k] = v; cmp[k] = v; } Job job = { &db, &kv, &_lock, Job::SET }; for (int i = 0; i < thread_num; ++i) { pthread_create(&pids[i], nullptr, work, (void*)&job); } for (int i = 0; i < thread_num; ++i) { pthread_join(pids[i], nullptr); } cout << "Checking results" << endl; // check results unordered_map<string, string> result; unordered_map<string, Index> _whole_index; db._index.copyTo(_whole_index); for (auto& p : _whole_index) { string value; s = db.get(p.first, value); if (!s.ok()) { cout << s.toString() << endl; break; } result[p.first] = value; } if (result == cmp) { cout << "====== Concurrency test success ======" << endl; } else { cout << "<!> Concurrency test failed" << endl; } clean(); }
[ "458880375@qq.com" ]
458880375@qq.com
687e33a3b719286ff1c7e3a7abd26ae71cf4ceac
245afd9f4adb8d868fa1228ac5898083e4140d4a
/Figures/Rectangle.h
0227defcfa318efa25b210643a7e08cc3d55ff29
[]
no_license
Ars-eniy-Cheis/ProgramLanguages
3e50c5eaa7d0f2c2bcdda7651d873484c912c78e
3b79cef726a347188bb25d468b092e0c59ef6ecf
refs/heads/master
2021-01-01T11:29:51.555886
2020-12-21T16:58:16
2020-12-21T16:58:16
239,254,881
0
0
null
null
null
null
UTF-8
C++
false
false
229
h
#pragma once #include "Figure.h" class Rectangle : public Figure { private: float a, b; public: Rectangle(); Rectangle(float new_a, float new_b); Rectangle(float new_a); virtual float Area(); virtual Figure* Clone(); };
[ "mr.4eis@yandex.ru" ]
mr.4eis@yandex.ru
91f1fcd0c126927bbd4654733c4bb632c59174da
600df3590cce1fe49b9a96e9ca5b5242884a2a70
/third_party/WebKit/Source/bindings/core/v8/custom/V8IntersectionObserverCustom.cpp
f494eb2f6a04487207752cef846d537bb623b212
[ "BSD-3-Clause", "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "MIT", "Apache-2.0" ]
permissive
metux/chromium-suckless
efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a
72a05af97787001756bae2511b7985e61498c965
refs/heads/orig
2022-12-04T23:53:58.681218
2017-04-30T10:59:06
2017-04-30T23:35:58
89,884,931
5
3
BSD-3-Clause
2022-11-23T20:52:53
2017-05-01T00:09:08
null
UTF-8
C++
false
false
2,770
cpp
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "bindings/core/v8/V8IntersectionObserver.h" #include "bindings/core/v8/ExceptionMessages.h" #include "bindings/core/v8/ExceptionState.h" #include "bindings/core/v8/V8Binding.h" #include "bindings/core/v8/V8DOMWrapper.h" #include "bindings/core/v8/V8GCController.h" #include "bindings/core/v8/V8IntersectionObserverCallback.h" #include "bindings/core/v8/V8IntersectionObserverInit.h" namespace blink { void V8IntersectionObserver::constructorCustom( const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(info.GetIsolate(), ExceptionState::ConstructionContext, "IntersectionObserver"); if (UNLIKELY(info.Length() < 1)) { exceptionState.throwTypeError( ExceptionMessages::notEnoughArguments(1, info.Length())); return; } v8::Local<v8::Object> wrapper = info.Holder(); if (!info[0]->IsFunction()) { exceptionState.throwTypeError( "The callback provided as parameter 1 is not a function."); return; } if (info.Length() > 1 && !isUndefinedOrNull(info[1]) && !info[1]->IsObject()) { exceptionState.throwTypeError("parameter 2 ('options') is not an object."); return; } IntersectionObserverInit intersectionObserverInit; V8IntersectionObserverInit::toImpl(info.GetIsolate(), info[1], intersectionObserverInit, exceptionState); if (exceptionState.hadException()) return; IntersectionObserverCallback* callback = new V8IntersectionObserverCallback( v8::Local<v8::Function>::Cast(info[0]), wrapper, ScriptState::current(info.GetIsolate())); IntersectionObserver* observer = IntersectionObserver::create( intersectionObserverInit, *callback, exceptionState); if (exceptionState.hadException()) return; ASSERT(observer); v8SetReturnValue(info, V8DOMWrapper::associateObjectWithWrapper( info.GetIsolate(), observer, &wrapperTypeInfo, wrapper)); } void V8IntersectionObserver::visitDOMWrapperCustom( v8::Isolate* isolate, ScriptWrappable* scriptWrappable, const v8::Persistent<v8::Object>& wrapper) { IntersectionObserver* observer = scriptWrappable->toImpl<IntersectionObserver>(); for (auto& observation : observer->observations()) { Element* target = observation->target(); if (!target) continue; v8::UniqueId id(reinterpret_cast<intptr_t>( V8GCController::opaqueRootForGC(isolate, target))); isolate->SetReferenceFromGroup(id, wrapper); } } } // namespace blink
[ "enrico.weigelt@gr13.net" ]
enrico.weigelt@gr13.net
04ae0709faaccdf422019005c8121affb7647ba3
d2190cbb5ea5463410eb84ec8b4c6a660e4b3d0e
/old_hydra/hydra/tags/v8_21/online/hlocalcont.cc
ce05dbff1a5edabb6bb0a51efd99866646403b72
[]
no_license
wesmail/hydra
6c681572ff6db2c60c9e36ec864a3c0e83e6aa6a
ab934d4c7eff335cc2d25f212034121f050aadf1
refs/heads/master
2021-07-05T17:04:53.402387
2020-08-12T08:54:11
2020-08-12T08:54:11
149,625,232
0
0
null
null
null
null
UTF-8
C++
false
false
10,164
cc
//*-- Author : Dmitry Vasiliev (vassili@lns.infn.it) /* * Copyright P.Finocchiaro and D.Vasiliev (INFN-LNS, Catania) HADES collaboration */ //------------------------------------------------------------------------- // // File name: hlocalcont.cc // Subject: Container of local conditions. // Author: D.Vasiliev (INFN-LNS, Catania) "vassili@lns.infn.it" // Date: January 2000 // //------------------------------------------------------------------------- // // Description: // // This file contains the source code for the member functions of // the class HLocalCont. // This class serves as a container of local conditions. // All detector sets are stored in an array which is a TObjArray object. // //------------------------------------------------------------------------- using namespace std; #include "hlocalcont.h" #include "hlocalcondition.h" #include "herror.h" #include "honlinecontrol.h" #include "hconsistency.h" #include <iostream> #include <iomanip> //_HADES_CLASS_DESCRIPTION //////////////////////////////////////////////////////////////////////// // This class serves as a container of local conditions. // All detector sets are stored in an array which is a TObjArray object. //////////////////////////////////////////////////////////////////////// ClassImp(HLocalCont) //--------------------------------------------------------------------- //****** HLocalCont::HLocalCont() // // Constructor of the class HLocalCont. // //--------------------------------------------------------------------- HLocalCont::HLocalCont() : TObject() { // // Constructor of the class HLocalCont. // fLocalAr = 0; } //--------------------------------------------------------------------- //****** HLocalCont::~HLocalCont() // // Destructor of the class HLocalCont. // //--------------------------------------------------------------------- HLocalCont::~HLocalCont() { // // Destructor of the class HLocalCont. // if(fLocalAr) { for(Int_t i=0; i<getEntries(); i++) removeAt(i); delete fLocalAr; } } //--------------------------------------------------------------------- //****** Bool_t HLocalCont::init() // // This function makes initialization of array fLocalAr (actual container // of local conditions). // //--------------------------------------------------------------------- Bool_t HLocalCont::init() { // // This function makes initialization of array fLocalAr (actual container // of local conditions). // if(fLocalAr) { for(Int_t i=0; i<getEntries(); i++) removeAt(i); delete fLocalAr; fLocalAr = 0; } fLocalAr = new TObjArray(500); if(!fLocalAr) return kFALSE; return kTRUE; } //--------------------------------------------------------------------- //****** Bool_t HLocalCont::add(HLocalCondition *p) // // This function adds to the list of local conditions a new condition at // the next empty slot. // //--------------------------------------------------------------------- Bool_t HLocalCont::add(HLocalCondition *p) { // // This function adds to the list of local conditions a new condition at // the next empty slot. // if(!fLocalAr) { return kFALSE; } if(!p) return kFALSE; Int_t i; HLocalCondition *pLocal; for(i=0; i < getEntries(); i++) { pLocal = at(i); if(pLocal) { if(!strcmp(pLocal->GetName(),p->GetName())) return kFALSE; } } for(i=0; i < getEntries(); i++) { pLocal = at(i); if(!pLocal) { fLocalAr->AddAt(p,i); return kTRUE; } } fLocalAr->Add(p); return kTRUE; } //--------------------------------------------------------------------- //****** Bool_t HLocalCont::addAt(HLocalCondition *p, Int_t idx) // // This function adds to the list of local conditions a new condition at // the position idx. // //--------------------------------------------------------------------- Bool_t HLocalCont::addAt(HLocalCondition *p, Int_t idx) { // // This function adds to the list of local conditions a new condition at // the position idx. // if(!fLocalAr) { return kFALSE; } if(!p) return kFALSE; if(idx < 0) return kFALSE; Int_t i; HLocalCondition *pLocal; for(i=0; i < getEntries(); i++) { pLocal = at(i); if(pLocal) { if(!strcmp(pLocal->GetName(),p->GetName())) return kFALSE; } } fLocalAr->AddAt(p,idx); return kTRUE; } //--------------------------------------------------------------------- //****** void HLocalCont::removeAt(Int_t idx, Bool_t kSulSerio = kTRUE) // // This function removes from the list of local conditions the one with // index idx. It also takes care of actual deleting the object in case // the flag kSulSerio is true. // //--------------------------------------------------------------------- void HLocalCont::removeAt(Int_t idx, Bool_t kSulSerio) { // // This function removes from the list of local conditions the one with // index idx. It also takes care of actual deleting the object in case // the flag kSulSerio is true. // if(!fLocalAr) { return; } if(idx < 0) return; HLocalCondition *pDel; pDel = (HLocalCondition*) fLocalAr->RemoveAt(idx); if(kSulSerio) { if(pDel) { delete pDel; pDel = 0; } } } //--------------------------------------------------------------------- //****** Int_t HLocalCont::getEntries() // // This function returns number of entries in array fLocalAr. // Returns -1 if the array is not initialized. // //--------------------------------------------------------------------- Int_t HLocalCont::getEntries() { // // This function returns number of entries in array fLocalAr. // Returns -1 if the array is not initialized. // if(!fLocalAr) { return -1; } return (fLocalAr->GetLast() + 1); } //--------------------------------------------------------------------- //****** HLocalCondition* HLocalCont::at(Int_t idx) // // This function returns address of the local condition stored at position // idx in fLocalAr. // Returns 0 in case fLocalAr is not initialized or idx is out of bounds. // //--------------------------------------------------------------------- HLocalCondition* HLocalCont::at(Int_t idx) { // // This function returns address of the local condition stored at position // idx in fLocalAr. // Returns 0 in case fLocalAr is not initialized or idx is out of bounds. // if(!fLocalAr) { return 0; } if(idx < 0) return 0; return ((HLocalCondition*) fLocalAr->At(idx)); } //--------------------------------------------------------------------- //****** Int_t HLocalCont::find(const Char_t* name) // // This function finds (in the list of local conditions) and returns index // of the local condition. Input argument is the name of the condition to // be found. In case of no condition found the function returns -1. // //--------------------------------------------------------------------- Int_t HLocalCont::find(const Char_t* name) { // // This function finds (in the list of local conditions) and returns index // of the local condition. Input argument is the name of the condition to // be found. In case of no condition found the function returns -1. // if(!fLocalAr) { return -1; } Int_t i; HLocalCondition *pLocal; for(i=0; i < getEntries(); i++) { pLocal = at(i); if(pLocal) { if(!strcmp(name,pLocal->GetName())) return i; } } return -1; } //--------------------------------------------------------------------- //****** void HLocalCont::checkConsistency() // // This function calls checkConsistency() functions of all local conditions // that are stored in the list fLocal. // All found inconsistent local conditions are stored in array fLCIdx of // the class HConsistency (fConsistency). // //--------------------------------------------------------------------- void HLocalCont::checkConsistency() { // // This function calls checkConsistency() functions of all local conditions // that are stored in the list fLocal. // All found inconsistent local conditions are stored in array fLCIdx of // the class HConsistency (fConsistency). // if(!gOnline) return (HError::message("gOnline not initialized")); if(!gOnline->getConsistency()) return (HError::message("fConsistency not initialized")); if(!fLocalAr) return (HError::message("Container of local conditions not initialized")); HLocalCondition *pLocal; for(Int_t i=0; i<getEntries(); i++) { pLocal = at(i); if(pLocal) { if(!pLocal->checkConsistency()) (*(gOnline->getConsistency())).fLCIdx[i] = 1; else (*(gOnline->getConsistency())).fLCIdx[i] = 0; } } } /* //--------------------------------------------------------------------- // Int_t HLocalCont::checkConsistency() // // This function calls checkConsistency() functions of all local conditions // that are stored in the list fLocal. // The return value has the following meanings: // //-1 - container of local conditions is not initialized (error status) // 0 - all local conditions have passed consistency check // 1 - there are inconsistent conditions but the user has clicked OK button // on the panel with the warning message // 2 - there are inconsistent conditions and the user has clicked Cancel button // on the panel with the warning message // //--------------------------------------------------------------------- Int_t HLocalCont::checkConsistency() { Bool_t kCheckResult = kFALSE; Bool_t kWasInconsistent = kFALSE; if(!fLocalAr) { HError::message("container of local conditions is not initialized"); return -1; } HLocalCondition *pLocal; Text_t msg[5000]; Text_t tmp[5000]; Int_t count = 0; for(Int_t i=0; i<getEntries(); i++) { pLocal = at(i); if(pLocal) { kCheckResult = pLocal->checkConsistency(); if(!kCheckResult) { if(count == 0) sprintf(msg,"%s","Following conditions will be inconsistent:"); sprintf(tmp,"%s",msg); count++; if(count%5 != 1) sprintf(msg,"%s%s%s",tmp,"\t",pLocal->GetName()); else sprintf(msg,"%s%s%s",tmp,"\n",pLocal->GetName()); kWasInconsistent = kTRUE; } } } if(kWasInconsistent) return (HError::warning(msg)); return 0; } */
[ "waleed.physics@gmail.com" ]
waleed.physics@gmail.com
6265d7ebefc348cd2014b0db2bd59818a7459329
e5b4f917bcc70d60607adb5863d9b93b5a522f00
/channel_shuffle_gui/droparea.h
d4d144f3f95170ba9455b0890c66584f24976b4e
[ "Unlicense" ]
permissive
S-ed/channel_shuffle
68cba9c6a29ba1b84de90f569a8923d11292f784
0901374bd173c48c2c2dd2b45bbadc53a07186ec
refs/heads/master
2023-04-22T18:03:11.348233
2021-05-05T15:49:58
2021-05-05T15:49:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
927
h
#ifndef DROPAREA_H #define DROPAREA_H #include <QLabel> #include <QFile> #include "qmessagebox.h" QT_BEGIN_NAMESPACE class QMimeData; QT_END_NAMESPACE class DropArea : public QLabel { Q_OBJECT public: DropArea(QWidget *parent = 0); QString *outPath; QString *originalFile; QString *inputPath; int *activePreview; void dropEvent(QDropEvent *event) Q_DECL_OVERRIDE; private slots: void clear(); void previewComplete(int exitStatus); void thumbnailComplete(); void tgaThumbnailComplete(); signals: void changed(const QMimeData *mimeData = 0); protected: void dragEnterEvent(QDragEnterEvent *event) Q_DECL_OVERRIDE; void dragMoveEvent(QDragMoveEvent *event) Q_DECL_OVERRIDE; void dragLeaveEvent(QDragLeaveEvent *event) Q_DECL_OVERRIDE; void mouseMoveEvent(QMouseEvent*); void leaveEvent(QEvent*); private: QString *clearText; }; #endif // DROPAREA_H
[ "lukas@orsvarn.com" ]
lukas@orsvarn.com
a28bc58badc87e8b5b5b55bffa65cd7e92913077
67c06d47a9f5d7146db73d39b372ecaae54bb79b
/src/Led.hpp
9427bef2ae2a75b95430df1603afe7f1c46bc976
[]
no_license
MatthijsMud/Themaopdracht-Devices
63c57e6e6a84448f3f0bab4e7ae16e04fb420ed7
698dc395eb6c0f9dd201c26b99d405028e20602c
refs/heads/master
2018-09-19T16:20:45.498560
2018-08-22T10:04:32
2018-08-22T10:04:32
120,743,079
0
0
null
null
null
null
UTF-8
C++
false
false
353
hpp
#ifndef DEVICES_LED_HPP #define DEVICES_LED_HPP #include <stdint.h> #include "hwlib.hpp" //! class to set the d2 pin to the right configuration and set it on and off class Led{ public: //! turn the led on pin d2 on void on(); //! turn the led on pin d off void off(); private: hwlib::target::d2_36kHz led{}; }; #endif // DEVICES_LED_HPP
[ "r.zegers@xs4all.nl" ]
r.zegers@xs4all.nl
6db149e33907403c4a98e5c6545aefdfcc507839
a57184efee5b6ffd902d347042bcf1ad0f11f399
/src/Stone.cpp
4dc7741d38083b36899e9e32c27768d7e414f0f3
[]
no_license
mcabioch/CppLib
a4cf0e39114eb6ec031ef93f52fa6bdb08e4c138
0d38d006c7e1a3854195ff10347543e544d4b681
refs/heads/master
2021-07-08T03:46:24.345657
2020-11-18T13:48:10
2020-11-18T13:48:10
206,850,983
0
0
null
null
null
null
UTF-8
C++
false
false
281
cpp
#include "C++/Stone.hpp" namespace mcd::entities { Stone::Stone(Map* map, Point pt, ContraptionAttr attr) : Object(map, pt, attr) {} Stone::~Stone() {} void Stone::printInfos(std::ostream& stream) const { Object::printInfos(stream); } } // namespace mcd::entities
[ "mathias.cabiochdelalande@gmail.com" ]
mathias.cabiochdelalande@gmail.com
4fe00562d11846500cef3d3b790388d35ce229d2
a0967fb856ef54124187716b39523d1206a1c007
/19-5-16-3(百钱问题,1元可以换成1,2,5分有多少中换法)/19-5-16-3(百钱问题,1元可以换成1,2,5分有多少中换法)/源.cpp
e5a572899933bbb128115f5a2529338ffdb8a6c4
[]
no_license
yyaihh/Cpp
21b4d0da4ef351b9d97f1fb47c11f055b6690622
dbfa2361ae8e1a31ce6c29bb286507d36da5099d
refs/heads/master
2020-09-21T23:22:23.464218
2020-04-20T15:31:30
2020-04-20T15:31:30
224,968,447
0
0
null
null
null
null
GB18030
C++
false
false
917
cpp
#include<iostream> #include<stdlib.h> using namespace std; #if 0 int main() { //为简化计算,将其都扩大100倍 int count = 0;//换法 for (int i = 0; i <= 50; ++i) { for (int j = 0; j <= 20; ++j) { if (2 * i + 5 * j <= 100) {//只要2元和5元的总和加起来不大于100,剩下的都换1元 ++count; } } } cout << "换法有" << count << "种\n"; system("pause"); return 0; } #endif #if 1 int main() { int count = 0;//换法 int temp; int m = 100;//总钱数 int a = 1;//1元面值 int b = 2;//2元面值 int c = 5;//5元面值 //a, b, c的值还可以是10,20,50 for (int i = 0; i <= m / b; ++i) { for (int j = 0; j <= m / c; ++j) { temp = m - (b * i + c * j); if (temp >= 0 && temp % a == 0) {//只要2元和5元的总和加起来不大于100,剩下的都换1元 ++count; } } } cout << "换法有" << count << "种\n"; system("pause"); return 0; } #endif
[ "1903870154@qq.com" ]
1903870154@qq.com
d5525f5e6713dc8f07ed2acaf8d921be4a4e4421
428d67ecc116dc26021662d177c971c062b095fe
/src/neo/optional.test.cpp
53a0aa7cc81a2ced84bb93ea5a6a88504bfeaaa8
[ "BSL-1.0" ]
permissive
ExternalRepositories/neo-fun
a4b7a2b0b6e922f6e59367027c79b7553c610959
95fecb48df3d0706909eb321cfe85732934bd654
refs/heads/master
2023-02-19T08:30:38.270728
2021-01-19T04:46:40
2021-01-19T04:46:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,776
cpp
#include "./optional.hpp" #include "./test_concept.hpp" #include <catch2/catch.hpp> struct trivial { int i; }; struct trivial_default_constructible { int i; ~trivial_default_constructible() {} }; struct trivial_destructible { int i = 0; }; struct nontrivial { int i = 0; ~nontrivial() {} }; NEO_TEST_CONCEPT(std::is_trivially_destructible_v<neo::nano_opt_storage<trivial>>); NEO_TEST_CONCEPT(std::is_trivially_default_constructible_v<neo::nano_opt_storage<trivial>>); /// XXX: Bug in language/compilers sees a non-trivial destructor as invalidating /// trivial_default_constructible. As such, these checks will fail: // NEO_TEST_CONCEPT(std::is_trivially_default_constructible_v<trivial_default_constructible>); // NEO_TEST_CONCEPT(std::is_trivially_default_constructible_v< // neo::nano_opt_storage<trivial_default_constructible>>); /// Refer: https://cplusplus.github.io/LWG/issue2116 and /// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51452 NEO_TEST_CONCEPT( !std::is_trivially_destructible_v<neo::nano_opt_storage<trivial_default_constructible>>); NEO_TEST_CONCEPT(!std::is_trivially_default_constructible_v<neo::nano_opt_storage<nontrivial>>); NEO_TEST_CONCEPT(!std::is_trivially_destructible_v<neo::nano_opt_storage<nontrivial>>); // Check that nano_opt is constexpr-able constexpr neo::nano_opt<int> get_const_opt() { auto ret = neo::nano_opt<int>(std::in_place, 41); ++ret.get(); return ret; } constexpr neo::nano_opt<int> get_const_opt_2() { neo::nano_opt<int> ret; ret = {33}; return ret; } TEST_CASE("Constexpr nano_opt") { constexpr auto opt = get_const_opt(); static_assert(opt.get() == 42); constexpr auto opt_2 = get_const_opt_2(); CHECK(opt_2.get() == 33); }
[ "vectorofbool@gmail.com" ]
vectorofbool@gmail.com
96a32d5a2ee997b0f927d7843539af951806ec9d
f68ff080c187bcc1b199b6d1a4e3080f36cbe15b
/TransmitQCM.ino
f60f0d3914f3266f0adc375b4825e236477f6c70
[]
no_license
harriwijaya/sensor-to-plotly
dc89a38856e9b5e8ddec576ff8a880853a376973
fb09de523741c85ae07b0b1d9a9d8e5a0004f1a9
refs/heads/master
2020-04-16T04:14:17.035139
2019-01-11T14:52:34
2019-01-11T14:52:34
165,259,887
0
0
null
null
null
null
UTF-8
C++
false
false
2,568
ino
/* Receiver: Arduino Uno */ // I2C for receive data from QCM #include <Wire.h> // for RF24 module #include <SPI.h> #include <nRF24L01.h> #include <RF24.h> #define DBG_LOG // for debuging purpose // radio object RF24 radio(7, 8); //const byte rxAddr[6] = "00002"; const uint64_t rxAddr = 0xB3B4B5B6F1LL; void setup() { // put your setup code here, to run once: Wire.begin(8); // join i2c bus with address #8 Wire.onReceive(receiveEvent); // register event #ifdef DBG_LOG Serial.begin(9600); #endif radio.begin(); radio.setRetries(15, 15); radio.openWritingPipe(rxAddr); radio.stopListening(); } #define MSG_SIZE (4+1+4+2+1) void loop() { // do nothing, just wait // delay(100); } // event function void receiveEvent(int howMany) { /* NOTE: * somehow arduino compiler do not promote ((byte) << 8) to higher type, * so, keep byte component as 4-bytes (or original). */ unsigned long Count0, Count1, Count2, Count3; unsigned long CountAll; int Tempr0, Tempr1; int TemprAll; /* format: RAW [] [] * 123-4567-89 */ // message structure char charMsg[MSG_SIZE]; /* Components: * 0-3 : "Tag " * 4 : reserved * 5-8 : (unsigned long) counter * 9-10 : (int) temperature * 11 : '\0' * * Note: * integer size is 2 bytes, * float size is 4 bytes, */ /*while ( 6 < Wire.available() ) { char c = Wire.read(); Serial.print(c); }*/ char aa = Wire.read(); // R char bb = Wire.read(); // A char cc = Wire.read(); // W #ifdef DBG_LOG Serial.println(aa); Serial.println(bb); Serial.println(cc); #endif Count0 = Wire.read(); Count1 = Wire.read(); Count2 = Wire.read(); Count3 = Wire.read(); CountAll = 0; CountAll |= (unsigned long)(Count0 ); CountAll |= (unsigned long)(Count1 << 8); CountAll |= (unsigned long)(Count2 << 16); CountAll |= (unsigned long)(Count3 << 24); #ifdef DBG_LOG char buf[8]; // integer to string sprintf(buf, "%08lu", CountAll); Serial.println(buf); #endif Tempr0 = Wire.read(); Tempr1 = Wire.read(); TemprAll = (int)( (Tempr1 << 8) | (Tempr0)); //Serial.println(TemprAll); charMsg[0] = 'T'; charMsg[1] = 'a'; charMsg[2] = 'g'; charMsg[3] = ' '; charMsg[4] = (byte)Count0; charMsg[5] = (byte)Count1; charMsg[6] = (byte)Count2; charMsg[7] = (byte)Count3; charMsg[8] = (byte)Tempr0; charMsg[9] = (byte)Tempr1; charMsg[MSG_SIZE-1] = '\0'; #ifdef DBG_LOG Serial.println(charMsg); #endif radio.write(&charMsg, sizeof(charMsg)); }
[ "noreply@github.com" ]
noreply@github.com
809dc3ef619d53a0bab5c4318697b6ee2f195c34
15e4869938d8f3659c047d7ae21b8072b80271bb
/Unit Test Time - ООП/Unit Test Time - ООП/main.cpp
8ac86083d02e45a4c46a969bda4d26771699991e
[]
no_license
balabaev00/OOP
1841f7d1abc5aecf555f179ef41fead64a3fc5ab
662711fa23b1045fb3fb1501b9563f0b5796eec2
refs/heads/master
2021-01-01T10:45:35.581409
2020-04-09T03:05:09
2020-04-09T03:05:09
239,242,351
0
0
null
null
null
null
UTF-8
C++
false
false
197
cpp
 #include "pch.h" #include "TimeTests.h" #include <iostream> int main() { test_Time_Consturctor(); test_Time_setTime(); test_Time_AddTime(); test_Time_TransferTime(); test_Time_opr(); }
[ "balabaev00@yandex.ru" ]
balabaev00@yandex.ru
f43ef399d413093a4859253e324bf6425dcd1f5a
491c18a853fa8c0960077df6bac047cb4420fc42
/src/gui/vtkwidgetoverlaycallback.cpp
a26cc35297fc90d1f23561ae2683984d5e5a1442
[ "MIT" ]
permissive
lxgwd1983/Asclepios-DICOM-Viewer
5c4e3030fc4a6bb0a32368bd170d11385d00fe26
2aeb90ae4fcbdfcf0fe1b714f31e2b1c8fd6a8ed
refs/heads/master
2023-03-14T10:05:34.528082
2020-09-01T08:29:49
2020-09-01T08:29:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
420
cpp
#include "vtkwidgetoverlaycallback.h" #include "vtkwidgetoverlay.h" vtkStandardNewMacro(asclepios::gui::vtkWidgetOverlayCallback); void asclepios::gui::vtkWidgetOverlayCallback::Execute([[maybe_unused]] vtkObject* caller, const unsigned long eventId, [[maybe_unused]] void* callData) { if (eventId == ModifiedEvent) { m_widgetOverlay->positionOverlay(); } }
[ "eddiegavrilovici@gmail.com" ]
eddiegavrilovici@gmail.com
6c64fe69faaefc4796b1168edddc3cea86ff0919
9147045752826ba2f071d3be815097885031149b
/CMinus/CMinus/type/pointer_type.cpp
2350147eb030e89c7515148b9f491531a5faa28d
[ "MIT" ]
permissive
benbraide/CMinus
2ef2c8a7568c61e6dacc3f4b89538afc7edeb777
3b845e0bc22840b549f108bf6600f1f34d865e7b
refs/heads/master
2020-07-02T18:14:58.810073
2019-09-06T23:03:44
2019-09-06T23:03:44
201,617,703
0
0
null
null
null
null
UTF-8
C++
false
false
6,441
cpp
#include "pointer_type.h" #include "primitive_type.h" #include "class_type.h" cminus::type::raw_pointer::raw_pointer(object *raw_base_type) : raw_base_type_(raw_base_type){} cminus::type::raw_pointer::~raw_pointer() = default; bool cminus::type::raw_pointer::converts_auto(const object &target) const{ if (object::converts_auto(target)) return true; auto pointer_target = dynamic_cast<const raw_pointer *>(&target); return (pointer_target != nullptr && raw_base_type_->converts_auto(*pointer_target->raw_base_type_)); } void cminus::type::raw_pointer::print(logic::runtime &runtime, bool is_qualified) const{ raw_base_type_->print(runtime, is_qualified); runtime.writer.write_buffer(" *", 2u); } void cminus::type::raw_pointer::print_value(logic::runtime &runtime, std::shared_ptr<memory::reference> data) const{ if (auto target_address = data->read_scalar<unsigned __int64>(runtime); target_address == 0u) runtime.writer.write_buffer("nullptr", 7u); else//Not null runtime.writer.write_scalar(logic::to_hex_string<unsigned __int64>::get(target_address)); } std::size_t cminus::type::raw_pointer::get_size() const{ return sizeof(void *); } bool cminus::type::raw_pointer::is_exact(logic::runtime &runtime, const type::object &target) const{ auto type_target = dynamic_cast<const raw_pointer *>(&target); return (type_target != nullptr && raw_base_type_->is_exact(runtime, *type_target->raw_base_type_)); } cminus::type::object::score_result_type cminus::type::raw_pointer::get_score(logic::runtime &runtime, const object &target, bool is_ref) const{ if (converts_auto(target)) return score_result_type::assignable; auto type_target = dynamic_cast<const raw_pointer *>(&target); if (type_target == nullptr) return score_result_type::nil; if (auto primitive_base_type = dynamic_cast<primitive *>(type_target->raw_base_type_); primitive_base_type != nullptr && primitive_base_type->get_id() == primitive::id_type::void_) return score_result_type::assignable; switch (raw_base_type_->get_score(runtime, *type_target->raw_base_type_, is_ref)){ case score_result_type::exact: return score_result_type::exact; case score_result_type::assignable: case score_result_type::ancestor: return score_result_type::assignable; case score_result_type::class_compatible: return score_result_type::class_compatible; default: break; } return score_result_type::nil; } std::shared_ptr<cminus::memory::reference> cminus::type::raw_pointer::get_default_value(logic::runtime &runtime) const{ return runtime.global_storage->get_named_constant(node::named_constant::constant_type::nullptr_); } std::shared_ptr<cminus::memory::reference> cminus::type::raw_pointer::cast(logic::runtime &runtime, std::shared_ptr<memory::reference> data, std::shared_ptr<object> target_type, cast_type type) const{ if (type != cast_type::static_ && type != cast_type::ref_static && type != cast_type::rval_static && type != cast_type::reinterpret) return nullptr;//Not supported auto pointer_target_type = dynamic_cast<const raw_pointer *>(target_type.get()); if (pointer_target_type != nullptr){ if (type == cast_type::reinterpret) return runtime.global_storage->create_scalar(data->read_scalar<unsigned __int64>(runtime)); if (type != cast_type::static_ && type != cast_type::rval_static) return nullptr; if (raw_base_type_->is_exact(runtime, *pointer_target_type->raw_base_type_)){//Same type if (type != cast_type::static_) return data; return runtime.global_storage->create_scalar(data->read_scalar<unsigned __int64>(runtime)); } if (auto base_class_type = dynamic_cast<class_ *>(raw_base_type_); base_class_type != nullptr && base_class_type->is_ancestor(*pointer_target_type->raw_base_type_)){//Cast to base type pointer auto address = (data->read_scalar<unsigned __int64>(runtime) + raw_base_type_->compute_base_offset(*pointer_target_type->raw_base_type_)); return runtime.global_storage->create_scalar(address); } if (type != cast_type::static_) return nullptr; auto primitive_target_base_target_type = dynamic_cast<const primitive *>(pointer_target_type->raw_base_type_); if (primitive_target_base_target_type != nullptr && primitive_target_base_target_type->get_id() == primitive::id_type::void_) return runtime.global_storage->create_scalar(data->read_scalar<unsigned __int64>(runtime)); auto primitive_base_target_type = dynamic_cast<const primitive *>(raw_base_type_); if (primitive_base_target_type != nullptr && primitive_base_target_type->get_id() == primitive::id_type::void_) return runtime.global_storage->create_scalar(data->read_scalar<unsigned __int64>(runtime)); return nullptr; } if (type != cast_type::reinterpret) return nullptr; auto primitive_target_type = dynamic_cast<const primitive *>(target_type.get()); if (primitive_target_type == nullptr) return nullptr; switch (primitive_target_type->get_id()){ case primitive::id_type::int16_: return runtime.global_storage->create_scalar(static_cast<__int16>(data->read_scalar<unsigned __int64>(runtime))); case primitive::id_type::uint16_: return runtime.global_storage->create_scalar(static_cast<unsigned __int16>(data->read_scalar<unsigned __int64>(runtime))); case primitive::id_type::int32_: return runtime.global_storage->create_scalar(static_cast<__int32>(data->read_scalar<unsigned __int64>(runtime))); case primitive::id_type::uint32_: return runtime.global_storage->create_scalar(static_cast<unsigned __int32>(data->read_scalar<unsigned __int64>(runtime))); case primitive::id_type::int64_: return runtime.global_storage->create_scalar(static_cast<__int64>(data->read_scalar<unsigned __int64>(runtime))); case primitive::id_type::uint64_: return runtime.global_storage->create_scalar(data->read_scalar<unsigned __int64>(runtime)); default: break; } return nullptr; } std::shared_ptr<cminus::evaluator::object> cminus::type::raw_pointer::get_evaluator(logic::runtime &runtime) const{ return runtime.global_storage->get_evaluator(evaluator::id::pointer); } cminus::type::object *cminus::type::raw_pointer::get_raw_base_type() const{ return raw_base_type_; } cminus::type::pointer::pointer(std::shared_ptr<object> base_type) : raw_pointer(base_type.get()), base_type_(base_type){} cminus::type::pointer::~pointer() = default; std::shared_ptr<cminus::type::object> cminus::type::pointer::get_base_type() const{ return base_type_; }
[ "benbraide@yahoo.com" ]
benbraide@yahoo.com
b858e8160859c4aa3edeb09cc438cfc5e2646ed9
c497942b041a006719d2dc57d37e5bcb5048b44e
/past_question_C/ABC166C2.cpp
51349dbdb62fb479a64fc09c920c4a7f9cae3de0
[]
no_license
esakiryota/atcoder
174743a27abe2918223930743a34fc01a9ee6f01
d2ddd653ab4aac6091074cf183ecb5a16052a267
refs/heads/master
2023-04-25T12:28:57.154176
2021-05-18T02:27:46
2021-05-18T02:27:46
345,285,876
0
0
null
null
null
null
UTF-8
C++
false
false
487
cpp
#include <stdio.h> #include<iostream> #include <vector> #define rep(i,n) for (int i = 0; i < (n); i++) using namespace std; const int INF = 1001001001; int main() { int n, m; cin >> n >> m; vector<int> h(n); vector<bool> ok(n, true); rep(i,n) cin >> h[i]; rep(i,m) { int a, b; cin >> a >> b; --a; --b; if (h[a] <= h[b]) ok[a] = false; if (h[b] <= h[a]) ok[b] = false; } int ans = 0; rep(i,n) if (ok[i]) ans++; cout << ans << endl; return 0; }
[ "esaki1217@gmail.com" ]
esaki1217@gmail.com
5ca8c91053b04318b4baace7f8fadefc9f43cbaf
f6591e71706f8a730867515b7cce2c258aed8c42
/src/test/pmt_tests.cpp
46372295c155e583525798c9b8b4a2455ef8e5df
[ "MIT" ]
permissive
weirdboy79/dfs
5a76f334e6c609ca07c371242770c3c7964e434c
98b28991fca53fe99378b2972864694f188e92db
refs/heads/master
2020-03-26T16:07:32.764838
2018-08-09T21:21:56
2018-08-09T21:21:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,646
cpp
// Copyright (c) 2012-2013 The Bitcoin Core developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "merkleblock.h" #include "serialize.h" #include "streams.h" #include "uint256.h" #include "version.h" #include <vector> #include <boost/test/unit_test.hpp> using namespace std; class CPartialMerkleTreeTester : public CPartialMerkleTree { public: // flip one bit in one of the hashes - this should break the authentication void Damage() { unsigned int n = rand() % vHash.size(); int bit = rand() % 256; uint256 &hash = vHash[n]; hash ^= ((uint256)1 << bit); } }; BOOST_AUTO_TEST_SUITE(pmt_tests) BOOST_AUTO_TEST_CASE(pmt_test1) { static const unsigned int nTxCounts[] = {1, 4, 7, 17, 56, 100, 127, 256, 312, 513, 1000, 4095}; for (int n = 0; n < 12; n++) { unsigned int nTx = nTxCounts[n]; // build a block with some dummy transactions CBlock block; for (unsigned int j=0; j<nTx; j++) { CMutableTransaction tx; tx.nLockTime = rand(); // actual transaction data doesn't matter; just make the nLockTime's unique block.vtx.push_back(CTransaction(tx)); } // calculate actual merkle root and height uint256 merkleRoot1 = block.BuildMerkleTree(); std::vector<uint256> vTxid(nTx, 0); for (unsigned int j=0; j<nTx; j++) vTxid[j] = block.vtx[j].GetHash(); int nHeight = 1, nTx_ = nTx; while (nTx_ > 1) { nTx_ = (nTx_+1)/2; nHeight++; } // check with random subsets with inclusion chances 1, 1/2, 1/4, ..., 1/128 for (int att = 1; att < 15; att++) { // build random subset of txid's std::vector<bool> vMatch(nTx, false); std::vector<uint256> vMatchTxid1; for (unsigned int j=0; j<nTx; j++) { bool fInclude = (rand() & ((1 << (att/2)) - 1)) == 0; vMatch[j] = fInclude; if (fInclude) vMatchTxid1.push_back(vTxid[j]); } // build the partial merkle tree CPartialMerkleTree pmt1(vTxid, vMatch); // serialize CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss << pmt1; // verify CPartialMerkleTree's size guarantees unsigned int n = std::min<unsigned int>(nTx, 1 + vMatchTxid1.size()*nHeight); BOOST_CHECK(ss.size() <= 10 + (258*n+7)/8); // deserialize into a tester copy CPartialMerkleTreeTester pmt2; ss >> pmt2; // extract merkle root and matched txids from copy std::vector<uint256> vMatchTxid2; uint256 merkleRoot2 = pmt2.ExtractMatches(vMatchTxid2); // check that it has the same merkle root as the original, and a valid one BOOST_CHECK(merkleRoot1 == merkleRoot2); BOOST_CHECK(merkleRoot2 != 0); // check that it contains the matched transactions (in the same order!) BOOST_CHECK(vMatchTxid1 == vMatchTxid2); // check that random bit fldfs break the authentication for (int j=0; j<4; j++) { CPartialMerkleTreeTester pmt3(pmt2); pmt3.Damage(); std::vector<uint256> vMatchTxid3; uint256 merkleRoot3 = pmt3.ExtractMatches(vMatchTxid3); BOOST_CHECK(merkleRoot3 != merkleRoot1); } } } } BOOST_AUTO_TEST_SUITE_END()
[ "email@example.com" ]
email@example.com
0159b12e8ef0eee89ead87063c8875d515ec06d0
7abac4eff68f53c1bfadfe235e39a2bb1dd24d18
/PerseusLib/Primitives/Vector4D.h
d950d548143141c1893f8d4707e0b7b7f0644977
[]
no_license
GuoChris/PWP3D-paper-code
5956ab6af1a35bfa863b2e8a00f64ad4d042c977
87bc1af4f3171145ddd0490916bc59dff5464f1d
refs/heads/master
2021-05-20T18:48:51.136547
2015-05-26T02:51:54
2015-05-26T02:51:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,555
h
#pragma once namespace PerseusLib { namespace Primitives { template <typename T> class Vector4D { public: T x, y, z, w; const Vector4D& Vector4D::operator+= (Vector4D &p){ x += p.x; y += p.y; z += p.z; z += p.w; return *this; } const Vector4D& Vector4D::operator-= (Vector4D &p){ x -= p.x; y -= p.y; z -= p.z; z += p.w; return *this; } Vector4D Vector4D::operator* (T f) const{ Vector4D r(x * f, y * f, z * f, w * f); return r; } Vector4D& Vector4D::operator*= (T f){ x *= f; y *= f; z *= f; z *= w; return *this; } friend Vector4D operator+ (const Vector4D &lp, const Vector4D &rp){ Vector4D r = Vector4D(lp.x + rp.x, lp.y + rp.y, lp.z + rp.z, lp.w + rp.w); return r; } friend Vector4D operator- (const Vector4D &lp, const Vector4D &rp){ Vector4D r = Vector4D(lp.x - rp.x, lp.y - rp.y, lp.z - rp.z, lp.w + rp.w); return r; } //friend Vector4D operator& (const Vector4D &a, const Vector4D &b){ // //cross product // Vector4D r = Vector4D( // a.y*(b.z*cw - cz*b.w) - a.z*(b.y*cw - cy*b.w) + a.w*(b.y*cz - cy*b.z), // -a.x*(b.z*cw - cz*b.w) + a.z*(b.x*cw - cx*b.w) - a.w*(b.x*cz - cx*b.z), // a.x*(b.y*cw - cy*b.w) - a.y*(b.x*cw - cx*b.w) + a.w*(b.x*cy - cx*b.y), // -a.x*(b.y*cz - cy*b.z) + a.y*(b.x*cz - cx*b.z) - a.z*(b.x*cy - cx*b.y) // ); // return r; //} friend T operator| (const Vector4D &a, const Vector4D &b){ //dot product return (T) (a.x*b.x + a.y*b.y + a.z*b.z + a.w*b.w); } friend bool operator== (const Vector4D &lp, const Vector4D &rp){ return ((lp.x == rp.x) && (lp.y == rp.y) && (lp.z == rp.z) && (lp.w == rp.w)); } Vector4D(float *f){ x = (T) f[0]; y = (T) f[1]; z = (T) f[2]; w = (T) f[3]; } Vector4D(double *d) { x = (T) d[0]; y = (T) d[1]; z = (T) d[2]; w = (T) d[3]; } Vector4D(long double *d) { x = (T) d[0]; y = (T) d[1]; z = (T) d[2]; w = (T) d[3]; } Vector4D(int *i) { x = (T) i[0]; y = (T) i[1]; z = (T) i[2]; w = (T) i[3]; } Vector4D(float v0, float v1, float v2, float v3) { x = (T)v0; y = (T)v1; z = (T)v2; w = (T)v3; } Vector4D(double v0, double v1, double v2, double v3){ x = (T) v0; y = (T) v1; z = (T) v2; w = (T) v3; } Vector4D(long double v0, long double v1, long double v2, long double v3) { x = (T) v0; y = (T) v1; z = (T) v2; w = (T) v3; } Vector4D(int v0, int v1, int v2, int v3) { x = (T) v0; y = (T) v1; z = (T) v2; w = (T) v3; } Vector4D(void) { x = 0; y = 0; z = 0; w = 0; } ~Vector4D(void) {} }; } }
[ "qiannihuang@gmail.com" ]
qiannihuang@gmail.com
0a9a70504e8d3ca64ded488ba08af0452b330370
a2206795a05877f83ac561e482e7b41772b22da8
/Source/PV/build/VTK/Wrapping/Python/vtkLODActorPython.cxx
c54f4f53be375e8610ea77da0e56deef13c76d15
[]
no_license
supreethms1809/mpas-insitu
5578d465602feb4d6b239a22912c33918c7bb1c3
701644bcdae771e6878736cb6f49ccd2eb38b36e
refs/heads/master
2020-03-25T16:47:29.316814
2018-08-08T02:00:13
2018-08-08T02:00:13
143,947,446
0
0
null
null
null
null
UTF-8
C++
false
false
17,833
cxx
// python wrapper for vtkLODActor // #define VTK_WRAPPING_CXX #define VTK_STREAMS_FWD_ONLY #include "vtkPythonArgs.h" #include "vtkPythonOverload.h" #include "vtkConfigure.h" #include <vtksys/ios/sstream> #include "vtkIndent.h" #include "vtkLODActor.h" #if defined(VTK_BUILD_SHARED_LIBS) # define VTK_PYTHON_EXPORT VTK_ABI_EXPORT # define VTK_PYTHON_IMPORT VTK_ABI_IMPORT #else # define VTK_PYTHON_EXPORT VTK_ABI_EXPORT # define VTK_PYTHON_IMPORT VTK_ABI_EXPORT #endif extern "C" { VTK_PYTHON_EXPORT void PyVTKAddFile_vtkLODActor(PyObject *, const char *); } extern "C" { VTK_PYTHON_EXPORT PyObject *PyVTKClass_vtkLODActorNew(const char *); } #ifndef DECLARED_PyVTKClass_vtkActorNew extern "C" { PyObject *PyVTKClass_vtkActorNew(const char *); } #define DECLARED_PyVTKClass_vtkActorNew #endif static const char **PyvtkLODActor_Doc(); static PyObject * PyvtkLODActor_GetClassName(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetClassName"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); PyObject *result = NULL; if (op && ap.CheckArgCount(0)) { const char *tempr = (ap.IsBound() ? op->GetClassName() : op->vtkLODActor::GetClassName()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkLODActor_IsA(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "IsA"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); char *temp0 = NULL; PyObject *result = NULL; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { int tempr = (ap.IsBound() ? op->IsA(temp0) : op->vtkLODActor::IsA(temp0)); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkLODActor_NewInstance(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "NewInstance"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); PyObject *result = NULL; if (op && ap.CheckArgCount(0)) { vtkLODActor *tempr = (ap.IsBound() ? op->NewInstance() : op->vtkLODActor::NewInstance()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); if (result && PyVTKObject_Check(result)) { PyVTKObject_GetObject(result)->UnRegister(0); PyVTKObject_SetFlag(result, VTK_PYTHON_IGNORE_UNREGISTER, 1); } } } return result; } static PyObject * PyvtkLODActor_SafeDownCast(PyObject *, PyObject *args) { vtkPythonArgs ap(args, "SafeDownCast"); vtkObject *temp0 = NULL; PyObject *result = NULL; if (ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkObject")) { vtkLODActor *tempr = vtkLODActor::SafeDownCast(temp0); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkLODActor_Render(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "Render"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); vtkRenderer *temp0 = NULL; vtkMapper *temp1 = NULL; PyObject *result = NULL; if (op && ap.CheckArgCount(2) && ap.GetVTKObject(temp0, "vtkRenderer") && ap.GetVTKObject(temp1, "vtkMapper")) { if (ap.IsBound()) { op->Render(temp0, temp1); } else { op->vtkLODActor::Render(temp0, temp1); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkLODActor_RenderOpaqueGeometry(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "RenderOpaqueGeometry"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); vtkViewport *temp0 = NULL; PyObject *result = NULL; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkViewport")) { int tempr = (ap.IsBound() ? op->RenderOpaqueGeometry(temp0) : op->vtkLODActor::RenderOpaqueGeometry(temp0)); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkLODActor_ReleaseGraphicsResources(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "ReleaseGraphicsResources"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); vtkWindow *temp0 = NULL; PyObject *result = NULL; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkWindow")) { if (ap.IsBound()) { op->ReleaseGraphicsResources(temp0); } else { op->vtkLODActor::ReleaseGraphicsResources(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkLODActor_AddLODMapper(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "AddLODMapper"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); vtkMapper *temp0 = NULL; PyObject *result = NULL; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkMapper")) { if (ap.IsBound()) { op->AddLODMapper(temp0); } else { op->vtkLODActor::AddLODMapper(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkLODActor_SetLowResFilter(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetLowResFilter"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); vtkPolyDataAlgorithm *temp0 = NULL; PyObject *result = NULL; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkPolyDataAlgorithm")) { if (ap.IsBound()) { op->SetLowResFilter(temp0); } else { op->vtkLODActor::SetLowResFilter(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkLODActor_SetMediumResFilter(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetMediumResFilter"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); vtkPolyDataAlgorithm *temp0 = NULL; PyObject *result = NULL; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkPolyDataAlgorithm")) { if (ap.IsBound()) { op->SetMediumResFilter(temp0); } else { op->vtkLODActor::SetMediumResFilter(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkLODActor_GetLowResFilter(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetLowResFilter"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); PyObject *result = NULL; if (op && ap.CheckArgCount(0)) { vtkPolyDataAlgorithm *tempr = (ap.IsBound() ? op->GetLowResFilter() : op->vtkLODActor::GetLowResFilter()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkLODActor_GetMediumResFilter(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetMediumResFilter"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); PyObject *result = NULL; if (op && ap.CheckArgCount(0)) { vtkPolyDataAlgorithm *tempr = (ap.IsBound() ? op->GetMediumResFilter() : op->vtkLODActor::GetMediumResFilter()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkLODActor_GetNumberOfCloudPoints(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetNumberOfCloudPoints"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); PyObject *result = NULL; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetNumberOfCloudPoints() : op->vtkLODActor::GetNumberOfCloudPoints()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkLODActor_SetNumberOfCloudPoints(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetNumberOfCloudPoints"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); int temp0; PyObject *result = NULL; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetNumberOfCloudPoints(temp0); } else { op->vtkLODActor::SetNumberOfCloudPoints(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkLODActor_GetLODMappers(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetLODMappers"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); PyObject *result = NULL; if (op && ap.CheckArgCount(0)) { vtkMapperCollection *tempr = (ap.IsBound() ? op->GetLODMappers() : op->vtkLODActor::GetLODMappers()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkLODActor_Modified(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "Modified"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); PyObject *result = NULL; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->Modified(); } else { op->vtkLODActor::Modified(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkLODActor_ShallowCopy(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "ShallowCopy"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkLODActor *op = static_cast<vtkLODActor *>(vp); vtkProp *temp0 = NULL; PyObject *result = NULL; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkProp")) { if (ap.IsBound()) { op->ShallowCopy(temp0); } else { op->vtkLODActor::ShallowCopy(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyMethodDef PyvtkLODActor_Methods[] = { {(char*)"GetClassName", PyvtkLODActor_GetClassName, METH_VARARGS, (char*)"V.GetClassName() -> string\nC++: const char *GetClassName()\n\n"}, {(char*)"IsA", PyvtkLODActor_IsA, METH_VARARGS, (char*)"V.IsA(string) -> int\nC++: int IsA(const char *name)\n\n"}, {(char*)"NewInstance", PyvtkLODActor_NewInstance, METH_VARARGS, (char*)"V.NewInstance() -> vtkLODActor\nC++: vtkLODActor *NewInstance()\n\n"}, {(char*)"SafeDownCast", PyvtkLODActor_SafeDownCast, METH_VARARGS | METH_STATIC, (char*)"V.SafeDownCast(vtkObject) -> vtkLODActor\nC++: vtkLODActor *SafeDownCast(vtkObject* o)\n\n"}, {(char*)"Render", PyvtkLODActor_Render, METH_VARARGS, (char*)"V.Render(vtkRenderer, vtkMapper)\nC++: virtual void Render(vtkRenderer *, vtkMapper *)\n\nThis causes the actor to be rendered. It, in turn, will render\nthe actor's property and then mapper.\n"}, {(char*)"RenderOpaqueGeometry", PyvtkLODActor_RenderOpaqueGeometry, METH_VARARGS, (char*)"V.RenderOpaqueGeometry(vtkViewport) -> int\nC++: int RenderOpaqueGeometry(vtkViewport *viewport)\n\nThis method is used internally by the rendering process. We\noveride the superclass method to properly set the estimated\nrender time.\n"}, {(char*)"ReleaseGraphicsResources", PyvtkLODActor_ReleaseGraphicsResources, METH_VARARGS, (char*)"V.ReleaseGraphicsResources(vtkWindow)\nC++: void ReleaseGraphicsResources(vtkWindow *)\n\nRelease any graphics resources that are being consumed by this\nactor. The parameter window could be used to determine which\ngraphic resources to release.\n"}, {(char*)"AddLODMapper", PyvtkLODActor_AddLODMapper, METH_VARARGS, (char*)"V.AddLODMapper(vtkMapper)\nC++: void AddLODMapper(vtkMapper *mapper)\n\nAdd another level of detail. They do not have to be in any order\nof complexity.\n"}, {(char*)"SetLowResFilter", PyvtkLODActor_SetLowResFilter, METH_VARARGS, (char*)"V.SetLowResFilter(vtkPolyDataAlgorithm)\nC++: virtual void SetLowResFilter(vtkPolyDataAlgorithm *)\n\nYou may plug in your own filters to decimate/subsample the input.\nThe default is to use a vtkOutlineFilter (low-res) and\nvtkMaskPoints (medium-res).\n"}, {(char*)"SetMediumResFilter", PyvtkLODActor_SetMediumResFilter, METH_VARARGS, (char*)"V.SetMediumResFilter(vtkPolyDataAlgorithm)\nC++: virtual void SetMediumResFilter(vtkPolyDataAlgorithm *)\n\nYou may plug in your own filters to decimate/subsample the input.\nThe default is to use a vtkOutlineFilter (low-res) and\nvtkMaskPoints (medium-res).\n"}, {(char*)"GetLowResFilter", PyvtkLODActor_GetLowResFilter, METH_VARARGS, (char*)"V.GetLowResFilter() -> vtkPolyDataAlgorithm\nC++: vtkPolyDataAlgorithm *GetLowResFilter()\n\nYou may plug in your own filters to decimate/subsample the input.\nThe default is to use a vtkOutlineFilter (low-res) and\nvtkMaskPoints (medium-res).\n"}, {(char*)"GetMediumResFilter", PyvtkLODActor_GetMediumResFilter, METH_VARARGS, (char*)"V.GetMediumResFilter() -> vtkPolyDataAlgorithm\nC++: vtkPolyDataAlgorithm *GetMediumResFilter()\n\nYou may plug in your own filters to decimate/subsample the input.\nThe default is to use a vtkOutlineFilter (low-res) and\nvtkMaskPoints (medium-res).\n"}, {(char*)"GetNumberOfCloudPoints", PyvtkLODActor_GetNumberOfCloudPoints, METH_VARARGS, (char*)"V.GetNumberOfCloudPoints() -> int\nC++: int GetNumberOfCloudPoints()\n\nSet/Get the number of random points for the point cloud.\n"}, {(char*)"SetNumberOfCloudPoints", PyvtkLODActor_SetNumberOfCloudPoints, METH_VARARGS, (char*)"V.SetNumberOfCloudPoints(int)\nC++: void SetNumberOfCloudPoints(int a)\n\nSet/Get the number of random points for the point cloud.\n"}, {(char*)"GetLODMappers", PyvtkLODActor_GetLODMappers, METH_VARARGS, (char*)"V.GetLODMappers() -> vtkMapperCollection\nC++: vtkMapperCollection *GetLODMappers()\n\nAll the mappers for different LODs are stored here. The order is\nnot important.\n"}, {(char*)"Modified", PyvtkLODActor_Modified, METH_VARARGS, (char*)"V.Modified()\nC++: void Modified()\n\nWhen this objects gets modified, this method also modifies the\nobject.\n"}, {(char*)"ShallowCopy", PyvtkLODActor_ShallowCopy, METH_VARARGS, (char*)"V.ShallowCopy(vtkProp)\nC++: void ShallowCopy(vtkProp *prop)\n\nShallow copy of an LOD actor. Overloads the virtual vtkProp\nmethod.\n"}, {NULL, NULL, 0, NULL} }; static vtkObjectBase *PyvtkLODActor_StaticNew() { return vtkLODActor::New(); } PyObject *PyVTKClass_vtkLODActorNew(const char *modulename) { PyObject *cls = PyVTKClass_New(&PyvtkLODActor_StaticNew, PyvtkLODActor_Methods, "vtkLODActor", modulename, NULL, NULL, PyvtkLODActor_Doc(), PyVTKClass_vtkActorNew(modulename)); return cls; } const char **PyvtkLODActor_Doc() { static const char *docstring[] = { "vtkLODActor - an actor that supports multiple levels of detail\n\n", "Superclass: vtkActor\n\n", "vtkLODActor is an actor that stores multiple levels of detail (LOD)\nand can automatically switch between them. It selects which level of\ndetail to use based on how much time it has been allocated to render.\nCurrently a very simple method of TotalTime/NumberOfActors is used.\n(In the future this should be modified to dynamically allocate the\nrendering time between different actors based on their nee", "ds.)\n\nThere are three levels of detail by default. The top level is just\nthe normal data. The lowest level of detail is a simple bounding box\noutline of the actor. The middle level of detail is a point cloud of\na fixed number of points that have been randomly sampled from the\nmapper's input data. Point attributes are copied over to the point\ncloud. These two lower levels of detail are accomplished", " by creating\ninstances of a vtkOutlineFilter (low-res) and vtkMaskPoints\n(medium-res). Additional levels of detail can be add using the\nAddLODMapper() method.\n\nTo control the frame rate, you typically set the\nvtkRenderWindowInteractor DesiredUpdateRate and StillUpdateRate. This\nthen will cause vtkLODActor to adjust its LOD to fulfill the\nrequested update rate.\n\nFor greater control on levels of det", "ail, see also vtkLODProp3D. That\nclass allows arbitrary definition of each LOD.\n\nCaveats:\n\nIf you provide your own mappers, you are responsible for setting its\nivars correctly, such as ScalarRange, LookupTable, and so on.\n\nOn some systems the point cloud rendering (the default, medium level\nof detail) can result in points so small that they can hardly be\nseen. In this case, use the GetProperty()->", "SetPointSize() method to\nincrease the rendered size of the points.\n\nSee Also:\n\nvtkActor vtkRenderer vtkLODProp3D\n\n", NULL }; return docstring; } void PyVTKAddFile_vtkLODActor( PyObject *dict, const char *modulename) { PyObject *o; o = PyVTKClass_vtkLODActorNew(modulename); if (o && PyDict_SetItemString(dict, (char *)"vtkLODActor", o) != 0) { Py_DECREF(o); } }
[ "mpasVM@localhost.org" ]
mpasVM@localhost.org
532f59e6f3b54ee720a391134a4f22a2b878c310
a5aacf14e66d02d0116ab2584b5725106b25884e
/329.cpp
a8ac9c0032dd3fc3f79ef042dd9bf2e56ced8781
[]
no_license
Rash-598/leetcodesolutions
a27aab75af39508bdcc47d7e3343f095d0972fa5
e8aaa4e841487a8e51196088582db9809d6ef18d
refs/heads/master
2021-11-28T09:22:38.545059
2019-01-16T10:35:39
2019-01-16T10:35:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,169
cpp
class Solution { public: int dp[1000][1000]; int cal(int i,int j,int n,int m,vector<vector<int> >& arr) { if(i<0||j<0||i>=n||j>=m) return 0; if(dp[i][j]!=0) return dp[i][j]; int maxer=0; dp[i][j]=1; int a1=0,a2=0,a3=0,a4=0; if(i-1>=0&&arr[i-1][j]>arr[i][j]) a1=max(dp[i][j],1+cal(i-1,j,n,m,arr)); if(j-1>=0&&arr[i][j-1]>arr[i][j]) a2=max(dp[i][j],1+cal(i,j-1,n,m,arr)); if(i+1<n&&arr[i+1][j]>arr[i][j]) a3=max(dp[i][j],1+cal(i+1,j,n,m,arr)); if(j+1<m&&arr[i][j+1]>arr[i][j]) a4=max(dp[i][j],1+cal(i,j+1,n,m,arr)); maxer=max(max(a1,a2),max(a3,a4)); dp[i][j]=max(dp[i][j],maxer); return dp[i][j]; } int longestIncreasingPath(vector<vector<int>>& matrix) { int n=matrix.size(); if(n==0) return 0; int m=matrix.front().size(),i,j,ans=0; for(i=0;i<n;++i) for(j=0;j<m;++j) cal(i,j,n,m,matrix); for(i=0;i<n;++i) for(j=0;j<m;++j) ans=max(ans,dp[i][j]); return ans; } };
[ "rahul5982439@gmail.com" ]
rahul5982439@gmail.com
3fc6997a6d9f9a318b37d65688641455206a9519
494fc35b2dbe5705bdf81e6b5d2615d1198c8559
/DbTables/inc/ValGroups.hh
94b5388d9988236645f079840be1c34c836eb335
[ "Apache-2.0" ]
permissive
shadowbehindthebread/Offline
36f71913ac789b9381db5143b0fc0bd7349c155e
57b5055641a4c626a695f3d83237c79758956b6a
refs/heads/master
2022-11-05T17:44:25.761755
2020-06-15T18:07:16
2020-06-15T18:07:16
273,599,835
1
0
Apache-2.0
2020-06-19T22:48:25
2020-06-19T22:48:24
null
UTF-8
C++
false
false
1,687
hh
#ifndef DbTables_ValGroups_hh #define DbTables_ValGroups_hh #include <string> #include <iomanip> #include <sstream> #include <map> #include "DbTables/inc/DbTable.hh" namespace mu2e { class ValGroups : public DbTable { public: class Row { public: Row(int gid, std::string create_time, std::string create_user): _gid(gid),_create_time(create_time),_create_user(create_user) {} int gid() const { return _gid;} std::string const& create_time() const { return _create_time; } std::string const& create_user() const { return _create_user; } private: int _gid; std::string _create_time; std::string _create_user; }; ValGroups():DbTable("ValGroups","val.groups", "gid,create_time,create_user") {} const Row& rowAt(const std::size_t index) const { return _rows.at(index);} const Row& row(const int gid) const { return _rows.at(_index.at(gid)); } std::vector<Row> const& rows() const {return _rows;} std::size_t nrow() const { return _rows.size(); }; size_t size() const { return sizeof(this) + _csv.capacity() + nrow()*44; }; void addRow(const std::vector<std::string>& columns) { _rows.emplace_back(std::stoi(columns[0]), columns[1],columns[2]); _index[_rows.back().gid()] = _rows.size()-1; } void rowToCsv(std::ostringstream& sstream, std::size_t irow) const { Row const& r = _rows.at(irow); sstream << r.gid()<<","; sstream << r.create_time()<<","; sstream << r.create_user(); } virtual void clear() { _csv.clear(); _rows.clear(); } private: std::vector<Row> _rows; std::map<int,std::size_t> _index; }; }; #endif
[ "rlc@fnal.gov" ]
rlc@fnal.gov
ab80cd536771fbeb7e326550c121fa39cebcaade
1b61800c1c1da2aae190e7a460415da7d0536a39
/msvc_robot/debug/qrc_image.cpp
84d86dad97bc2cc7af4ac46cf619552652115cb9
[]
no_license
betamake/robot
bcd47f3968a27cb8b6f49cc3cd26c5ec40f047ae
8f874fc8fcc88ed3d26eeab3774929903e2eb608
refs/heads/master
2020-08-15T08:59:35.901898
2020-07-23T10:33:44
2020-07-23T10:33:44
215,312,436
0
0
null
null
null
null
UTF-8
C++
false
false
951,258
cpp
/**************************************************************************** ** Resource object code ** ** Created by: The Resource Compiler for Qt version 5.13.2 ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ static const unsigned char qt_resource_data[] = { // C:/Users/betamake/Documents/robot/backgrand.jpeg 0x0,0x2,0xcd,0x86, 0xff, 0xd8,0xff,0xe0,0x0,0x10,0x4a,0x46,0x49,0x46,0x0,0x1,0x1,0x1,0x0,0x60,0x0, 0x60,0x0,0x0,0xff,0xe1,0x10,0x66,0x45,0x78,0x69,0x66,0x0,0x0,0x4d,0x4d,0x0, 0x2a,0x0,0x0,0x0,0x8,0x0,0x3,0x1,0x12,0x0,0x3,0x0,0x0,0x0,0x1,0x0, 0x6,0x0,0x0,0x87,0x69,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x8,0x3e,0xea, 0x1c,0x0,0x7,0x0,0x0,0x8,0xc,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x1c, 0xea,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xea,0x1c,0x0, 0x7,0x0,0x0,0x8,0xc,0x0,0x0,0x8,0x50,0x0,0x0,0x0,0x0,0x1c,0xea,0x0, 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe1,0x8,0xdd,0x68, 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63, 0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x0,0x3c,0x3f,0x78,0x70, 0x61,0x63,0x6b,0x65,0x74,0x20,0x62,0x65,0x67,0x69,0x6e,0x3d,0x27,0xef,0xbb,0xbf, 0x27,0x20,0x69,0x64,0x3d,0x27,0x57,0x35,0x4d,0x30,0x4d,0x70,0x43,0x65,0x68,0x69, 0x48,0x7a,0x72,0x65,0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64,0x27,0x3f, 0x3e,0xd,0xa,0x3c,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x20,0x78,0x6d, 0x6c,0x6e,0x73,0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a,0x6e,0x73,0x3a, 0x6d,0x65,0x74,0x61,0x2f,0x22,0x3e,0x3c,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x20, 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39, 0x39,0x2f,0x30,0x32,0x2f,0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74, 0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x2f,0x3e,0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70, 0x6d,0x65,0x74,0x61,0x3e,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, 0x20,0x65,0x6e,0x64,0x3d,0x27,0x77,0x27,0x3f,0x3e,0xff,0xdb,0x0,0x43,0x0,0x8, 0x6,0x6,0x7,0x6,0x5,0x8,0x7,0x7,0x7,0x9,0x9,0x8,0xa,0xc,0x14,0xd, 0xc,0xb,0xb,0xc,0x19,0x12,0x13,0xf,0x14,0x1d,0x1a,0x1f,0x1e,0x1d,0x1a,0x1c, 0x1c,0x20,0x24,0x2e,0x27,0x20,0x22,0x2c,0x23,0x1c,0x1c,0x28,0x37,0x29,0x2c,0x30, 0x31,0x34,0x34,0x34,0x1f,0x27,0x39,0x3d,0x38,0x32,0x3c,0x2e,0x33,0x34,0x32,0xff, 0xdb,0x0,0x43,0x1,0x9,0x9,0x9,0xc,0xb,0xc,0x18,0xd,0xd,0x18,0x32,0x21, 0x1c,0x21,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32, 0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32, 0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32, 0x32,0x32,0x32,0x32,0xff,0xc0,0x0,0x11,0x8,0x5,0xa,0x3,0xca,0x3,0x1,0x22, 0x0,0x2,0x11,0x1,0x3,0x11,0x1,0xff,0xc4,0x0,0x1f,0x0,0x0,0x1,0x5,0x1, 0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x3, 0x4,0x5,0x6,0x7,0x8,0x9,0xa,0xb,0xff,0xc4,0x0,0xb5,0x10,0x0,0x2,0x1, 0x3,0x3,0x2,0x4,0x3,0x5,0x5,0x4,0x4,0x0,0x0,0x1,0x7d,0x1,0x2,0x3, 0x0,0x4,0x11,0x5,0x12,0x21,0x31,0x41,0x6,0x13,0x51,0x61,0x7,0x22,0x71,0x14, 0x32,0x81,0x91,0xa1,0x8,0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,0x24,0x33,0x62, 0x72,0x82,0x9,0xa,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,0x0,0x1f,0x1,0x0,0x3,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xa,0xb, 0xff,0xc4,0x0,0xb5,0x11,0x0,0x2,0x1,0x2,0x4,0x4,0x3,0x4,0x7,0x5,0x4, 0x4,0x0,0x1,0x2,0x77,0x0,0x1,0x2,0x3,0x11,0x4,0x5,0x21,0x31,0x6,0x12, 0x41,0x51,0x7,0x61,0x71,0x13,0x22,0x32,0x81,0x8,0x14,0x42,0x91,0xa1,0xb1,0xc1, 0x9,0x23,0x33,0x52,0xf0,0x15,0x62,0x72,0xd1,0xa,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,0x0,0xc,0x3,0x1,0x0,0x2,0x11, 0x3,0x11,0x0,0x3f,0x0,0xf6,0x8d,0x6f,0x5b,0xfe,0xc6,0xf2,0x3f,0xd1,0xfc,0xef, 0x37,0x77,0xf1,0xed,0xc6,0x31,0xec,0x7d,0x6b,0x23,0xfe,0x13,0x7f,0xfa,0x87,0xff, 0x0,0xe4,0x6f,0xfe,0xc6,0x8f,0x1b,0xff,0x0,0xcb,0x8f,0xfd,0xb4,0xff,0x0,0xd9, 0x6b,0x91,0x26,0xbd,0x2a,0x14,0x29,0xce,0x9a,0x94,0x96,0xa7,0x87,0x8c,0xc6,0x56, 0xa7,0x5a,0x50,0x84,0xb4,0xf9,0x76,0x3a,0xe3,0xe3,0x8f,0xfa,0x87,0x7f,0xe4,0x7f, 0xfe,0xc6,0x8f,0xf8,0x4e,0x3f,0xea,0x1d,0xff,0x0,0x91,0xff,0x0,0xfb,0x1a,0xe4, 0x28,0xad,0x7e,0xab,0x4b,0xb7,0xe6,0x73,0x7f,0x68,0x62,0x7f,0x9b,0xf0,0x5f,0xe4, 0x75,0xff,0x0,0xf0,0x9c,0x7f,0xd4,0x3b,0xff,0x0,0x23,0xff,0x0,0xf6,0x34,0xf, 0x1c,0x7f,0xd4,0x3b,0xff,0x0,0x23,0xff,0x0,0xf6,0x35,0xc8,0x51,0x47,0xd5,0x69, 0x76,0xfc,0xc3,0xfb,0x43,0x13,0xfc,0xdf,0x82,0xff,0x0,0x23,0xaf,0x3e,0x38,0xff, 0x0,0xa8,0x77,0xfe,0x47,0xff,0x0,0xec,0x68,0xff,0x0,0x84,0xe3,0xfe,0xa1,0xdf, 0xf9,0x1f,0xff,0x0,0xb1,0xae,0x42,0x8a,0x3e,0xab,0x4b,0xb7,0xe6,0x1f,0xda,0x18, 0x8f,0xe6,0xfc,0x17,0xf9,0x1d,0xa4,0x1e,0x31,0x13,0x38,0x5f,0xb0,0xed,0xcf,0xfd, 0x36,0xff,0x0,0xec,0x6a,0xf9,0xd6,0xe7,0x29,0xba,0x3b,0x10,0xfe,0xde,0x76,0x3f, 0xa5,0x79,0xe8,0x24,0x1c,0x83,0x83,0x5a,0xd6,0x3a,0xcb,0xc3,0x88,0xe5,0xc1,0x5e, 0xc6,0xb3,0x9e,0x16,0x2b,0x58,0xa3,0x7a,0x39,0x85,0x46,0xed,0x39,0x7e,0x46,0xec, 0xbe,0x2f,0x92,0x6,0xd9,0x2e,0x96,0xea,0xf9,0xc6,0xc,0xbd,0x7f,0x1d,0xb4,0x4f, 0xe3,0x9,0x6d,0x99,0x56,0x6d,0x30,0xa1,0x61,0x90,0xc,0xfd,0xbf,0xef,0x9a,0x75, 0xb5,0xe4,0x77,0x60,0x10,0x1,0x3e,0xe2,0xab,0x6a,0xfa,0x3c,0x97,0xfb,0x5e,0x22, 0x82,0x45,0x18,0xe7,0xab,0x56,0x4a,0x34,0xb9,0xad,0x28,0xfe,0x67,0x44,0xe7,0x88, 0xe5,0xe6,0x84,0xef,0xf2,0x5f,0xe4,0x3b,0xfe,0x13,0x8f,0xfa,0x87,0x7f,0xe4,0x7f, 0xfe,0xc6,0x8f,0xf8,0x4e,0x3f,0xea,0x1d,0xff,0x0,0x91,0xff,0x0,0xfb,0x1a,0xc9, 0x87,0xc3,0x77,0xb2,0x39,0x13,0x6c,0x85,0x40,0xfb,0xc4,0xe7,0x35,0x52,0xf7,0x49, 0xba,0xb2,0x7f,0x99,0xb,0xa7,0xf7,0xd4,0x56,0xca,0x8e,0x1d,0xbb,0x24,0x72,0xcb, 0x13,0x8d,0x8a,0xbb,0x7f,0x82,0xff,0x0,0x23,0xa1,0xff,0x0,0x84,0xe3,0xfe,0xa1, 0xdf,0xf9,0x1f,0xff,0x0,0xb1,0xa3,0xfe,0x13,0x8f,0xfa,0x87,0x7f,0xe4,0x7f,0xfe, 0xc6,0xb9,0xa,0x2b,0x4f,0xaa,0xd2,0xed,0xf9,0x99,0x7f,0x68,0x62,0x7f,0x9b,0xf0, 0x5f,0xe4,0x75,0xdf,0xf0,0x9c,0x7f,0xd4,0x3b,0xff,0x0,0x23,0xff,0x0,0xf6,0x34, 0x7f,0xc2,0x71,0xff,0x0,0x50,0xef,0xfc,0x8f,0xff,0x0,0xd8,0xd7,0x22,0x68,0x14, 0xbe,0xab,0x4b,0xb7,0xe6,0x1f,0xda,0x18,0x9f,0xe6,0xfc,0x17,0xf9,0x1d,0x7f,0xfc, 0x27,0x1f,0xf5,0xe,0xff,0x0,0xc8,0xff,0x0,0xfd,0x8d,0x1f,0xf0,0x9c,0x7f,0xd4, 0x3b,0xff,0x0,0x23,0xff,0x0,0xf6,0x35,0xc8,0x51,0x47,0xd5,0x69,0x76,0xfc,0xc3, 0xfb,0x43,0x13,0xfc,0xdf,0x82,0xff,0x0,0x23,0xaf,0xff,0x0,0x84,0xe3,0xfe,0xa1, 0xdf,0xf9,0x1f,0xff,0x0,0xb1,0xa3,0xfe,0x13,0x8f,0xfa,0x87,0x7f,0xe4,0x7f,0xfe, 0xc6,0xb9,0xa,0x33,0x47,0xd5,0x69,0x76,0xfc,0xc3,0xfb,0x43,0x13,0xfc,0xdf,0x82, 0xff,0x0,0x23,0xaf,0xff,0x0,0x84,0xe3,0xfe,0xa1,0xdf,0xf9,0x1f,0xff,0x0,0xb1, 0xa3,0xfe,0x13,0x8f,0xfa,0x87,0x7f,0xe4,0x7f,0xfe,0xc6,0xb9,0xc,0xd1,0x9a,0x3e, 0xab,0x4b,0xb7,0xe6,0x1f,0xda,0x18,0x9f,0xe6,0xfc,0x17,0xf9,0x1d,0x78,0xf1,0xc6, 0x7f,0xe6,0x1d,0xff,0x0,0x91,0xff,0x0,0xfb,0x1a,0xdc,0xd3,0x35,0x6f,0xed,0x18, 0xf7,0x79,0x3e,0x5f,0xb6,0xfc,0xff,0x0,0x4a,0xf3,0x4c,0xd6,0xd6,0x91,0xab,0x9b, 0x32,0x15,0x8f,0xcb,0x59,0x56,0xc2,0xc1,0x46,0xf0,0x47,0x46,0x1b,0x30,0xa8,0xe7, 0x6a,0x92,0xd3,0xe4,0x7a,0x1,0x7c,0x75,0x15,0x8b,0x7f,0xe2,0x44,0xb2,0x9f,0xca, 0x16,0xfe,0x61,0x1d,0xf7,0xe3,0xfa,0x55,0x49,0xbc,0x44,0xa6,0x3c,0x2f,0x71,0x8c, 0xd7,0x39,0x79,0x3f,0x9b,0x39,0x60,0x73,0xf5,0xac,0x28,0xe1,0xee,0xfd,0xf3,0xaf, 0x13,0x8d,0xb4,0x7f,0x76,0xce,0xce,0xc3,0x5d,0xfb,0x71,0x3,0xec,0xdb,0x33,0xfe, 0xde,0x7f,0xa5,0x6a,0x87,0xcf,0x6a,0xe2,0x34,0x5b,0xa1,0x14,0xc0,0x31,0xae,0xca, 0x29,0x4,0x8a,0x8,0x22,0xb3,0xaf,0x4f,0x95,0xe8,0x8d,0xf0,0x95,0x9d,0x48,0x5e, 0x4f,0x52,0x6d,0xde,0xd4,0x6e,0xf6,0xa6,0xe6,0x8a,0xc0,0xeb,0x1d,0xbb,0xda,0x8d, 0xde,0xd4,0xda,0x28,0x1,0xdb,0xbd,0xa8,0xdd,0xed,0x4d,0xa2,0x80,0x1d,0xbb,0xda, 0x8d,0xde,0xd4,0xda,0x28,0x1,0xdb,0xbd,0xa8,0xdd,0xed,0x4d,0xa2,0x80,0x1d,0xbf, 0xda,0x8d,0xfe,0xd4,0xd3,0x49,0x40,0x87,0xef,0xf6,0xa3,0x77,0xb5,0x34,0x51,0x40, 0xc7,0x6f,0xf6,0xa3,0x77,0xb5,0x36,0x96,0x80,0x1d,0xbb,0xda,0x8d,0xde,0xd4,0xda, 0x28,0x1,0xdb,0xbd,0xa8,0xdd,0xed,0x4d,0xcd,0x26,0x68,0x10,0xfd,0xd4,0x6e,0xa6, 0x52,0xd0,0x31,0xdb,0xbd,0xa9,0x37,0x7b,0x52,0x52,0x1a,0x4,0x3b,0x77,0xb5,0x5, 0xfd,0xa9,0x86,0x8a,0x0,0x7e,0xff,0x0,0x6a,0x4d,0xfe,0xd4,0xdc,0xd2,0x1a,0x0, 0x7e,0xff,0x0,0x6a,0x37,0xfb,0x54,0x74,0x66,0x98,0x5c,0x93,0x7f,0xb5,0x1e,0x67, 0xb5,0x47,0x9a,0x33,0x40,0x5c,0x93,0x7f,0xb5,0x2e,0xff,0x0,0x6a,0x8b,0x34,0x66, 0x80,0x25,0xdf,0xed,0x49,0xbf,0xda,0xa3,0xcd,0x19,0xa0,0x9,0x3c,0xcf,0x6a,0x3c, 0xcf,0x6a,0x8f,0x34,0x84,0xd0,0x17,0x24,0xf3,0x7d,0xbf,0x5a,0x4f,0x3f,0xfd,0x9f, 0xd6,0xa2,0xcd,0x34,0x9a,0x2c,0x2b,0x93,0x1b,0x8c,0x7f,0xf,0xeb,0x4d,0xfb,0x57, 0xfb,0x1f,0xad,0x40,0x4d,0x37,0x34,0xec,0x2b,0xb2,0xcf,0xda,0xbf,0xd8,0xfd,0x69, 0xbf,0x6c,0xff,0x0,0x63,0xf5,0xaa,0xc4,0xd3,0x9,0xa7,0x64,0x2e,0x66,0x5c,0xfb, 0x67,0xfd,0x33,0xfd,0x69,0x45,0xde,0x7f,0x83,0xf5,0xaa,0x42,0xa4,0x5a,0x1a,0x40, 0xa4,0xcb,0x62,0xe3,0x3f,0xc3,0xfa,0xd3,0xbc,0xef,0xf6,0x7f,0x5a,0xae,0xb4,0xfa, 0x92,0xae,0x4d,0xe6,0xfb,0x7e,0xb4,0xbe,0x67,0xb5,0x45,0x4e,0xa4,0x31,0xfe,0x67, 0xb5,0x1b,0xfd,0xa9,0x98,0xa5,0xa0,0x7,0x6f,0xf6,0xa4,0x32,0x63,0xb5,0x25,0x35, 0xba,0x50,0x17,0x29,0xde,0xeb,0xb,0x66,0xa4,0xf9,0x5b,0xf1,0xfe,0xd6,0x3f,0xa5, 0x63,0x37,0x8d,0x76,0x92,0x3f,0xb3,0xf3,0xff,0x0,0x6d,0xbf,0xfb,0x1a,0x7e,0xb9, 0x19,0xa,0xc7,0xda,0xb9,0x9,0x3e,0xf1,0xae,0xfa,0x14,0x61,0x38,0xde,0x48,0xf2, 0x31,0x98,0xaa,0xd4,0xe5,0x68,0x3f,0xc8,0xea,0xbf,0xe1,0x37,0xff,0x0,0xa8,0x77, 0xfe,0x46,0xff,0x0,0xec,0x68,0xff,0x0,0x84,0xdf,0xfe,0xa1,0xdf,0xf9,0x1b,0xff, 0x0,0xb1,0xae,0x46,0x96,0xba,0x7e,0xab,0x4b,0xb7,0xe6,0x71,0x7f,0x68,0x62,0x7f, 0x9b,0xf0,0x5f,0xe4,0x76,0x3,0xc6,0x8b,0xb7,0x26,0xc7,0x7,0xb0,0xf3,0xbf,0xfb, 0x1a,0x6f,0xfc,0x26,0xdf,0xf5,0xf,0xff,0x0,0xc8,0xdf,0xfd,0x8d,0x72,0x59,0xa4, 0xa5,0xf5,0x5a,0x5d,0xbf,0x31,0xff,0x0,0x68,0x62,0x3f,0x9b,0xf0,0x5f,0xe4,0x75, 0xdf,0xf0,0x9b,0xff,0x0,0xd4,0x3f,0xff,0x0,0x23,0x7f,0xf6,0x34,0x7f,0xc2,0x6f, 0xff,0x0,0x50,0xff,0x0,0xfc,0x8d,0xff,0x0,0xd8,0xd7,0x23,0x45,0x1f,0x55,0xa5, 0xdb,0xf3,0x17,0xf6,0x86,0x27,0xf9,0xbf,0x5,0xfe,0x47,0x5d,0xff,0x0,0x9,0xb7, 0xfd,0x43,0xff,0x0,0xf2,0x37,0xff,0x0,0x63,0x47,0xfc,0x26,0xdf,0xf5,0xf,0xff, 0x0,0xc8,0xdf,0xfd,0x8d,0x72,0x54,0x51,0xf5,0x5a,0x5d,0xbf,0x30,0xfe,0xd0,0xc4, 0xff,0x0,0x37,0xe0,0xbf,0xc8,0xeb,0x7f,0xe1,0x36,0xff,0x0,0xa8,0x7f,0xfe,0x46, 0xff,0x0,0xec,0x69,0x7f,0xe1,0x36,0xff,0x0,0xa8,0x7f,0xfe,0x46,0xff,0x0,0xec, 0x6b,0x92,0x14,0x51,0xf5,0x5a,0x5d,0xbf,0x30,0xfe,0xd0,0xc4,0xff,0x0,0x37,0xe0, 0xbf,0xc8,0xeb,0x7f,0xe1,0x36,0xff,0x0,0xa8,0x7f,0xfe,0x46,0xff,0x0,0xec,0x68, 0xff,0x0,0x84,0xd7,0xfe,0xa1,0xff,0x0,0xf9,0x1b,0xff,0x0,0xb1,0xae,0x4a,0x8a, 0x3e,0xab,0x4b,0xb7,0xe6,0x1f,0xda,0x18,0x8f,0xe6,0xfc,0x17,0xf9,0x1d,0x6f,0xfc, 0x26,0xbf,0xf5,0xf,0xff,0x0,0xc8,0xdf,0xfd,0x8d,0x1f,0xf0,0x9a,0xff,0x0,0xd4, 0x3f,0xff,0x0,0x23,0x7f,0xf6,0x35,0xc9,0xd1,0x47,0xd5,0x69,0x76,0xfc,0xc3,0xfb, 0x43,0x11,0xfc,0xdf,0x82,0xff,0x0,0x23,0xac,0xff,0x0,0x84,0xd7,0xfe,0xa1,0xff, 0x0,0xf9,0x1b,0xff,0x0,0xb1,0xa3,0xfe,0x13,0x5f,0xfa,0x87,0xff,0x0,0xe4,0x6f, 0xfe,0xc6,0xb9,0x3a,0x28,0xfa,0xad,0x2e,0xdf,0x98,0x7f,0x68,0x62,0x3f,0x9b,0xf0, 0x5f,0xe4,0x75,0x9f,0xf0,0x9a,0xff,0x0,0xd4,0x3f,0xff,0x0,0x23,0x7f,0xf6,0x34, 0x7f,0xc2,0x6b,0xff,0x0,0x50,0xff,0x0,0xfc,0x8d,0xff,0x0,0xd8,0xd7,0x27,0x45, 0x1f,0x55,0xa5,0xdb,0xf3,0xf,0xed,0xc,0x47,0xf3,0x7e,0xb,0xfc,0x8e,0xb3,0xfe, 0x13,0x5f,0xfa,0x87,0xff,0x0,0xe4,0x6f,0xfe,0xc6,0x8f,0xf8,0x4d,0x7f,0xea,0x1f, 0xff,0x0,0x91,0xbf,0xfb,0x1a,0xe4,0xe8,0xcd,0x1f,0x55,0xa5,0xdb,0xf3,0xf,0xed, 0xc,0x47,0xf3,0x7e,0xb,0xfc,0x8e,0xb3,0xfe,0x13,0x5f,0xfa,0x87,0xff,0x0,0xe4, 0x6f,0xfe,0xc6,0x8f,0xf8,0x4d,0x7f,0xea,0x1f,0xff,0x0,0x91,0xbf,0xfb,0x1a,0xe4, 0xe8,0xa3,0xea,0xb4,0xbb,0x7e,0x61,0xfd,0xa1,0x89,0xfe,0x6f,0xc1,0x7f,0x91,0xd6, 0x7f,0xc2,0x6b,0xff,0x0,0x50,0xff,0x0,0xfc,0x8d,0xff,0x0,0xd8,0xd1,0xff,0x0, 0x9,0xaf,0xfd,0x43,0xff,0x0,0xf2,0x37,0xff,0x0,0x63,0x5c,0x9d,0x14,0x7d,0x56, 0x97,0x6f,0xcc,0x3f,0xb4,0x31,0x3f,0xcd,0xf8,0x2f,0xf2,0x3a,0xcf,0xf8,0x4d,0x7f, 0xea,0x1f,0xff,0x0,0x91,0xbf,0xfb,0x1a,0x3f,0xe1,0x35,0xff,0x0,0xa8,0x7f,0xfe, 0x46,0xff,0x0,0xec,0x6b,0x93,0xa2,0x8f,0xaa,0xd2,0xed,0xf9,0x87,0xf6,0x86,0x27, 0xf9,0xbf,0x5,0xfe,0x47,0x59,0xff,0x0,0x9,0xaf,0xfd,0x43,0xff,0x0,0xf2,0x37, 0xff,0x0,0x63,0x47,0xfc,0x26,0xbf,0xf5,0xf,0xff,0x0,0xc8,0xdf,0xfd,0x8d,0x72, 0x74,0x66,0x8f,0xaa,0xd2,0xed,0xf9,0x87,0xf6,0x86,0x23,0xf9,0xbf,0x5,0xfe,0x47, 0x59,0xff,0x0,0x9,0xaf,0xfd,0x43,0xff,0x0,0xf2,0x37,0xff,0x0,0x63,0x4b,0xff, 0x0,0x9,0xaf,0xfd,0x43,0xff,0x0,0xf2,0x37,0xff,0x0,0x63,0x5c,0x95,0x2e,0x68, 0xfa,0xad,0x2e,0xdf,0x98,0x7f,0x68,0x62,0x3f,0x9b,0xf0,0x5f,0xe4,0x75,0x7f,0xf0, 0x9a,0xff,0x0,0xd4,0x3f,0xff,0x0,0x23,0x7f,0xf6,0x34,0x7f,0xc2,0x6b,0xff,0x0, 0x50,0xff,0x0,0xfc,0x8d,0xff,0x0,0xd8,0xd7,0x27,0x45,0x1f,0x55,0xa5,0xdb,0xf3, 0xf,0xed,0xc,0x47,0xf3,0x7e,0xb,0xfc,0x8e,0xb3,0xfe,0x13,0x5f,0xfa,0x87,0xff, 0x0,0xe4,0x6f,0xfe,0xc6,0x8f,0xf8,0x4d,0x7f,0xea,0x1f,0xff,0x0,0x91,0xbf,0xfb, 0x1a,0xe4,0xe9,0x7a,0x51,0xf5,0x5a,0x5d,0xbf,0x30,0xfe,0xd0,0xc4,0x7f,0x37,0xe0, 0xbf,0xc8,0xf4,0x1d,0x17,0x5a,0xfe,0xd8,0xf3,0xff,0x0,0xd1,0xfc,0x9f,0x2b,0x6f, 0xf1,0xee,0xce,0x73,0xec,0x3d,0x2b,0x5a,0xb9,0x3f,0x5,0x7f,0xcb,0xf7,0xfd,0xb3, 0xff,0x0,0xd9,0xab,0xac,0xaf,0x3a,0xbc,0x54,0x2a,0x38,0xc7,0x63,0xdc,0xc1,0xd4, 0x95,0x4a,0x31,0x9c,0xde,0xbf,0xf0,0x4e,0x47,0xc7,0x7,0x1f,0x61,0xff,0x0,0xb6, 0x9f,0xfb,0x2d,0x72,0x6,0xbd,0x7,0xc4,0x9a,0x5f,0xf6,0x94,0x50,0xed,0x72,0xaf, 0x18,0x6d,0xa3,0xb1,0xce,0x3f,0xc2,0xb8,0xcb,0xcd,0x2a,0xea,0xc6,0x31,0x24,0xca, 0x36,0x9e,0xeb,0xce,0x2b,0xbb,0xb,0x52,0x3e,0xcd,0x45,0x9e,0x46,0x61,0x46,0x6e, 0xb4,0xa4,0x96,0x9a,0x7e,0x45,0x1a,0x2a,0x69,0x6d,0x66,0x85,0x15,0xe4,0x8c,0xaa, 0xb7,0x42,0x7b,0xd4,0x35,0xd4,0xb5,0xd8,0xf3,0x9a,0x6b,0x70,0xa2,0x8a,0x29,0x88, 0x28,0xa2,0x8a,0x2,0xc1,0x45,0x1f,0xce,0x8a,0x2,0xcd,0x1a,0xda,0x35,0xe8,0x86, 0x71,0x1c,0x87,0x0,0xf4,0x35,0xd7,0x2c,0x81,0x94,0x1f,0xd6,0xb8,0xad,0x2e,0x8, 0x26,0x95,0xda,0x76,0xc0,0x4c,0x10,0x3d,0x6b,0xa9,0xb5,0xb9,0x8a,0xe2,0x30,0x62, 0x60,0x40,0x18,0xc7,0xa5,0x71,0x62,0x23,0xae,0x87,0xaf,0x82,0xa8,0xd4,0x35,0x2e, 0x97,0x3,0xa5,0x55,0xbd,0xb8,0xf2,0xac,0xa6,0x62,0x37,0x61,0x4f,0x15,0x21,0xa4, 0xf2,0xf2,0x8,0x20,0x10,0x7a,0x82,0x33,0x5c,0xf1,0xd1,0xdc,0xec,0x9d,0xe4,0x9a, 0x38,0x1c,0xe7,0xd3,0x27,0x9c,0x3,0x45,0x76,0x37,0x5a,0x4d,0xb5,0xc4,0xc,0x8b, 0x12,0xa3,0xf6,0x60,0x31,0x5c,0x94,0xd1,0x34,0x13,0x34,0x6d,0x8c,0xa9,0xc1,0x35, 0xe8,0xd3,0xa8,0xa7,0xa2,0x3c,0x4a,0xf4,0x25,0x4b,0x56,0x47,0x45,0x39,0x11,0xa5, 0x70,0x91,0xa9,0x66,0x3d,0x0,0x1c,0xd0,0xf1,0xba,0x31,0x57,0x46,0x56,0x7,0x18, 0x23,0x9a,0xd0,0xc2,0xcf,0xa2,0x1b,0x45,0x48,0x21,0x7f,0x31,0x51,0xc7,0x96,0x4f, 0xf7,0xf8,0xa6,0xc8,0x9b,0x1c,0xae,0xe0,0xd8,0xee,0xa7,0x20,0xfd,0x29,0x27,0x71, 0x34,0xd6,0xe3,0x28,0xa2,0x8a,0x60,0x14,0x51,0x45,0x0,0x14,0xe5,0xeb,0x4d,0xa5, 0x6,0x81,0xa2,0xd2,0x33,0x3e,0x14,0x7e,0x54,0x9d,0xcf,0xb5,0x46,0x8c,0x54,0xe4, 0x75,0xa9,0xd1,0x1e,0x56,0xc2,0xa9,0x24,0xfa,0x54,0x3d,0x35,0x34,0x8e,0xba,0x8, 0x92,0x34,0x6d,0xb8,0x1a,0xdb,0xd3,0xf5,0xb6,0x88,0x85,0x66,0xe2,0xb2,0xdf,0x4f, 0xb8,0x45,0xdc,0x50,0xe2,0xa1,0x30,0xc8,0x14,0xb1,0x53,0x81,0x59,0x4a,0x30,0xa8, 0xac,0x6f,0x4e,0x75,0x29,0x3d,0xe,0xe2,0xdf,0x59,0x82,0x60,0x1,0x60,0xd,0x68, 0x43,0x32,0x4c,0xb9,0x43,0x91,0x5c,0x5,0x8d,0xac,0xf7,0x37,0x29,0x1c,0x40,0x90, 0x4f,0x27,0xda,0xbb,0xeb,0x58,0x16,0x8,0x55,0x17,0xb0,0xe6,0xb8,0x2b,0xd3,0x8c, 0x36,0x3d,0x9c,0x2d,0x79,0xd5,0x5a,0xa2,0x6c,0x52,0xe2,0x8a,0x2b,0x9c,0xed,0xc, 0x52,0x52,0xf4,0xa4,0xa0,0x41,0x45,0x26,0x68,0xcd,0x0,0x2d,0x26,0x68,0x26,0x9b, 0x40,0xe,0xcd,0x14,0xda,0x33,0x40,0xf,0xa2,0x9a,0xd,0x3a,0x80,0xa,0xd,0x14, 0x86,0x98,0x5,0x6,0x92,0x8a,0x2,0xe2,0xd1,0xf8,0xd3,0x68,0xcd,0x2,0x1d,0x40, 0x34,0xd0,0x69,0x45,0x3,0x17,0x34,0x52,0x1a,0x4c,0xd2,0x1,0x4f,0xd6,0x93,0xf1, 0xa4,0xcd,0x34,0xb5,0x0,0x3c,0xfd,0x69,0x33,0x4c,0x2d,0x4c,0xdd,0x4e,0xc2,0xb9, 0x29,0x6a,0x4c,0xd4,0x7b,0xa8,0xdd,0x4e,0xc2,0x1f,0x9a,0x50,0x6a,0x3c,0xd2,0xe6, 0x80,0x24,0xcd,0x14,0xc0,0xd4,0xa0,0xd0,0x31,0xd4,0x51,0x9a,0x33,0x48,0x2,0x92, 0x82,0x69,0xa4,0xd0,0x0,0x4d,0x30,0x9a,0x9,0xa6,0x13,0x4c,0x40,0x4d,0x37,0x34, 0x84,0xd2,0x55,0x24,0x4b,0x60,0x4d,0x37,0x34,0xea,0x6d,0x31,0xe,0x6,0xa4,0x5a, 0x88,0x54,0xab,0x49,0x8d,0x12,0xad,0x3e,0x98,0xb4,0xf1,0x50,0x58,0xea,0x5c,0xd2, 0x50,0x28,0x18,0xe0,0x69,0x69,0xb4,0xb9,0xc5,0x20,0x16,0x90,0x8e,0xd,0x1,0x81, 0xee,0x28,0x27,0x8e,0x29,0x86,0x87,0x3b,0xae,0xce,0xbb,0xa,0xf7,0xc5,0x71,0xce, 0x72,0xc4,0xd7,0xa2,0x6a,0x56,0x10,0x5e,0xc0,0x56,0x41,0x83,0xea,0x2b,0x85,0xbf, 0xd3,0xe4,0xb2,0x94,0x83,0xf3,0x2f,0x66,0xaf,0x47,0xb,0x38,0xda,0xc7,0x87,0x98, 0xd2,0x9a,0x7c,0xdd,0xa,0x54,0xa2,0x93,0x14,0x57,0x69,0xe5,0xa1,0x68,0xa4,0xa2, 0x81,0xb,0x45,0x14,0x50,0x2,0xd1,0x45,0x14,0x0,0xa2,0x8a,0x5,0x14,0xc,0x28, 0xa2,0x8a,0x0,0x5a,0x28,0xcd,0x19,0xa0,0x2,0x8a,0x33,0x46,0x68,0x0,0x34,0x94, 0x51,0x40,0x5,0x14,0x51,0x40,0x85,0x14,0x50,0x28,0xa0,0x2,0x8a,0x28,0xa0,0x2, 0x8a,0x28,0xa0,0x61,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1, 0x45,0x14,0x50,0x7,0x59,0xe0,0xaf,0xf9,0x7e,0xff,0x0,0xb6,0x7f,0xfb,0x35,0x75, 0x95,0xc9,0xf8,0x2b,0xfe,0x5f,0xbf,0xed,0x9f,0xfe,0xcd,0x5d,0x65,0x79,0x18,0xaf, 0xe2,0xbf,0xeb,0xa1,0xf4,0xb9,0x7f,0xfb,0xb4,0x7e,0x7f,0x9b,0x2a,0xde,0x67,0xe4, 0xfc,0x6a,0x9c,0x91,0xac,0x8b,0xb5,0xd4,0x30,0xf4,0x22,0xae,0xdd,0xff,0x0,0x7, 0xe3,0x55,0xaa,0x23,0xa2,0x34,0xa9,0xf1,0x14,0x6f,0x74,0xe8,0x6f,0xa2,0x9,0x2e, 0x40,0x5e,0x46,0x38,0xc5,0x72,0x9a,0xae,0x90,0xfa,0x69,0x56,0xe,0x1a,0x13,0xc0, 0x3d,0xf3,0x5d,0xcd,0x64,0x78,0x82,0xcc,0xdd,0x58,0x12,0xa7,0x6,0x33,0xba,0xba, 0x68,0xd5,0x6a,0x56,0x38,0x71,0x54,0x23,0x38,0x36,0xb7,0x38,0xba,0x29,0xd1,0xc6, 0xf2,0x36,0x11,0x49,0x38,0xcf,0xf8,0xd3,0x6b,0xd1,0x5e,0x47,0x88,0xee,0xb7,0xa, 0x3d,0xa8,0xa2,0x80,0x2c,0x6f,0xb6,0x36,0x58,0x2a,0xc2,0x70,0x7a,0xd5,0xe8,0xbc, 0x3d,0x75,0x35,0xaa,0xca,0xac,0x81,0x98,0x64,0x29,0xef,0x59,0x3f,0x9d,0x6f,0x69, 0x9a,0xff,0x0,0x91,0x1c,0x76,0xf3,0xa1,0x20,0x1c,0x7,0x7,0xa0,0xfa,0x56,0x55, 0x5c,0xd2,0xbc,0x4e,0x8a,0xa,0x9c,0xa5,0x6a,0x9a,0x15,0xff,0x0,0xb2,0xaf,0x74, 0xf7,0x5b,0x83,0x12,0x48,0x17,0x92,0x1,0xcf,0x15,0x5e,0x1d,0x49,0xad,0xf5,0x3, 0x71,0x1a,0x6d,0x52,0x79,0x41,0x5d,0x8d,0xca,0x99,0xed,0x59,0x22,0x7c,0x17,0x1c, 0x13,0xcf,0xe3,0x5c,0x8c,0xfa,0x44,0xd6,0x97,0x8,0xb3,0x9c,0xc4,0x4f,0x2e,0xb5, 0x95,0x2a,0x8a,0x77,0xe7,0x37,0xaf,0x46,0x54,0xad,0xec,0xf6,0x3a,0x5b,0x2d,0x46, 0xda,0xf4,0x7e,0xed,0xb9,0x3,0x24,0x1e,0x2b,0x40,0x15,0x61,0x81,0x5c,0xdc,0xd1, 0xd9,0xe9,0xc1,0x58,0xe4,0xe,0xa8,0x7,0x56,0x35,0x3d,0x8e,0xa7,0x1c,0xf9,0xa, 0xdb,0x5c,0x9f,0xba,0x6b,0x19,0x53,0xbe,0xab,0x63,0xae,0x9d,0x7b,0x7b,0xb3,0x7a, 0x9b,0x4c,0xa0,0x75,0xaa,0xad,0xa6,0xda,0xcb,0x26,0xf9,0x21,0x46,0x27,0xb9,0xa4, 0x2d,0x21,0x5c,0xe6,0xa2,0x82,0x6b,0x9f,0x3f,0xc,0x6,0xc1,0xde,0xa2,0x29,0xad, 0x8d,0x5c,0xa2,0xdd,0x9a,0x34,0x61,0xb4,0xb7,0x83,0x98,0xa1,0x8d,0xf,0xaa,0x8e, 0x6a,0xad,0xe5,0xbd,0x8c,0x32,0xfd,0xbe,0xe2,0x25,0x25,0x7,0x2d,0x8a,0xb7,0x14, 0x9b,0x96,0xa2,0xd4,0x61,0x6b,0x9d,0x3a,0xe2,0x14,0x19,0x66,0x42,0x0,0xa8,0x4d, 0xa7,0xab,0x2e,0x51,0x8f,0x2d,0xd2,0x2b,0xcd,0x5,0x8e,0xbb,0x66,0x18,0x1c,0x81, 0xc2,0xb8,0x18,0x2a,0x7d,0x3e,0x95,0xc6,0x5d,0x41,0xf6,0x6b,0xa9,0x61,0xde,0xad, 0xb1,0x8a,0xee,0x1d,0xea,0xd5,0xbb,0x6a,0x76,0xc9,0x2c,0x30,0xa4,0xaa,0x1b,0xef, 0x8d,0xb5,0x6b,0x4f,0xd0,0xa6,0xbc,0x8a,0x49,0x67,0x2f,0x16,0x7e,0xe8,0x61,0xcb, 0x1f,0x7a,0xed,0xa7,0x6a,0x5b,0xbd,0xf,0x2a,0xab,0x75,0xec,0xa3,0x1d,0x4c,0x5a, 0x2a,0x46,0x86,0x48,0xe5,0xf2,0x9d,0x8,0x70,0x71,0x82,0x39,0xa4,0x91,0xa,0x3e, 0xc6,0x1f,0x30,0xea,0x7,0x6a,0xe9,0x56,0x38,0xad,0x6d,0x6,0x51,0x9a,0x43,0x45, 0x31,0xb,0x9a,0x51,0x4d,0xa7,0x52,0x4,0x48,0x83,0x2c,0x5,0x77,0x1a,0x1e,0x97, 0x12,0x5b,0x24,0xac,0xb9,0x63,0x5c,0x4d,0xbb,0x84,0x9d,0x18,0xf4,0x4,0x1a,0xf4, 0x6d,0x36,0x74,0x9a,0xd5,0xa,0x90,0x3d,0xab,0x8f,0x17,0x26,0xa3,0xa1,0xea,0xe5, 0xb0,0x8c,0xa4,0xf9,0x8b,0xf,0x6d,0x13,0xa9,0x52,0x83,0x1f,0x4a,0xe7,0x75,0x1d, 0x3c,0x89,0x4c,0x71,0x80,0x1,0xae,0x9f,0x3d,0x6b,0x37,0x52,0x78,0xd5,0xd7,0x73, 0x1,0x5c,0x34,0xe7,0x24,0xf4,0x3d,0x5a,0xf4,0xe3,0x28,0xdd,0x8d,0xd1,0xec,0x92, 0xda,0xdf,0x38,0x1b,0xba,0x67,0x15,0xab,0x54,0xad,0xee,0x62,0x68,0xc0,0x57,0x53, 0xf4,0xab,0x3e,0x62,0xfa,0xd4,0xce,0xed,0xdd,0x97,0x4d,0x45,0x46,0xc9,0x92,0x52, 0x52,0xe,0x69,0x6a,0xd,0x40,0x9a,0x69,0x39,0xa5,0x34,0xda,0x4,0x26,0x68,0xdd, 0x48,0xc6,0x98,0x4d,0x31,0x12,0x6e,0xa4,0x2d,0x50,0x96,0xa3,0x75,0x3b,0x5,0xc9, 0x77,0x51,0x9a,0x8b,0x75,0x38,0x1a,0x56,0xb,0x92,0x83,0x4e,0xcd,0x46,0xd,0x3b, 0x34,0x58,0x7,0x66,0x8c,0xd3,0x73,0x4b,0x40,0xb,0x9a,0x4a,0x28,0xa0,0x2,0x92, 0x96,0x90,0xd0,0x1,0x9a,0x33,0x4d,0x26,0x9b,0x9a,0x2,0xe4,0x9b,0xa9,0xbb,0xaa, 0x32,0xd5,0x1b,0x3d,0x34,0x84,0xe4,0x4a,0xcf,0x8a,0x8c,0xc9,0x51,0x16,0xcd,0x34, 0xb5,0x55,0x88,0x72,0x25,0xdf,0x46,0x7d,0xea,0x2c,0xd1,0x9a,0x2c,0x17,0x25,0xdd, 0xef,0x4b,0xba,0xa2,0xcd,0x2e,0x69,0xd8,0x77,0x25,0xd,0x46,0x6a,0x2c,0xd3,0x81, 0xa5,0x60,0xb9,0x20,0x34,0xf0,0x73,0x50,0xd3,0xc1,0xa4,0x52,0x64,0xa0,0xd2,0xd3, 0x1,0xa7,0x52,0x18,0x13,0x4c,0x34,0xe3,0x4c,0x34,0x0,0xd3,0x4d,0xa7,0x66,0x9b, 0x9a,0xa4,0x84,0x34,0xd2,0x52,0xe2,0x92,0x82,0x58,0x52,0x11,0x4b,0x45,0x31,0x8, 0x2a,0x45,0xa6,0x52,0x83,0x48,0x64,0xc0,0xd3,0x81,0xa8,0x73,0x4e,0xcd,0x2b,0xd, 0x32,0x6c,0xd2,0x83,0x51,0x3,0x4f,0x15,0x2d,0x14,0x38,0xb0,0x51,0x92,0x78,0xac, 0xbb,0xfd,0x55,0x6d,0xd4,0xe3,0x91,0xeb,0x46,0xa9,0x75,0xe4,0xc4,0xd8,0x35,0xc6, 0xdd,0xde,0xc9,0x36,0xe4,0x27,0x2a,0x6b,0xaa,0x85,0xe,0x77,0x73,0x83,0x17,0x8a, 0x54,0xd5,0x91,0xb1,0x3e,0xb4,0xce,0xb,0xa4,0x98,0x1e,0xc6,0xab,0xaf,0x89,0x6e, 0xe3,0xc6,0x18,0x32,0xfb,0xf5,0xac,0x2a,0x2b,0xbb,0xea,0xf1,0x5d,0xf,0x22,0x58, 0xca,0x8f,0x54,0xce,0x90,0x78,0xa0,0xba,0xe1,0xd7,0x6,0xa9,0xdd,0xea,0x42,0xe5, 0x48,0xe3,0x9a,0xc7,0xa5,0xcd,0x35,0x46,0x31,0x77,0x42,0x96,0x2e,0xa4,0xd5,0x9b, 0x1c,0xd8,0x27,0x8a,0x6d,0x0,0xd1,0x5a,0x9c,0xe1,0x45,0x14,0x50,0x21,0x68,0xa2, 0x8a,0x0,0x51,0x45,0x2,0x8a,0x0,0x5a,0x29,0x33,0x45,0x0,0x2d,0x14,0x51,0x40, 0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40, 0xa,0x28,0xa0,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51, 0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x19,0xa2,0x8c,0x50,0x7,0x59, 0xe0,0xaf,0xf9,0x7e,0xff,0x0,0xb6,0x7f,0xfb,0x35,0x75,0x95,0xc9,0xf8,0x2b,0xfe, 0x5f,0xbf,0xed,0x9f,0xfe,0xcd,0x5d,0x65,0x79,0x18,0xaf,0xe2,0xbf,0xeb,0xa1,0xf4, 0xd9,0x7f,0xfb,0xb4,0x7e,0x7f,0x9b,0x2b,0x5d,0xff,0x0,0x7,0xe3,0x55,0xb3,0x56, 0x6e,0xff,0x0,0x83,0xf1,0xaa,0xb5,0x11,0xd8,0xd6,0x7f,0x10,0x66,0x93,0x0,0xf5, 0xe9,0x4b,0x46,0x2a,0x88,0x32,0x75,0x78,0x12,0xdf,0x4f,0x9e,0xe2,0xda,0x28,0xd2, 0x6c,0x60,0xb0,0x1d,0xab,0x8b,0xef,0xd6,0xb7,0xf5,0x78,0xf5,0x89,0x3c,0xff,0x0, 0x35,0x58,0xdb,0x83,0x9e,0x3b,0xa,0xc0,0xeb,0xd3,0x1c,0xf6,0xaf,0x47,0xe,0xac, 0xae,0xd9,0xe1,0xe2,0xe5,0xcd,0x35,0x65,0x60,0xa2,0xb5,0xe1,0xf0,0xe5,0xec,0xa8, 0x1f,0x31,0xa8,0x3d,0x32,0xd5,0x99,0x3c,0x12,0x5b,0xca,0xd1,0x4a,0xa5,0x5c,0x76, 0x35,0xaa,0x9c,0x5e,0x89,0x9c,0xf2,0xa7,0x38,0xab,0xb4,0x47,0x45,0x14,0x55,0x19, 0x97,0x17,0x54,0xbc,0x4b,0x61,0x6e,0xb3,0x15,0x41,0xd0,0x8e,0xbf,0x9d,0x47,0x25, 0xf5,0xcc,0xa1,0x44,0x93,0x33,0x2a,0xf2,0x1,0xaa,0xf4,0x54,0xf2,0x47,0xb1,0x6e, 0xa4,0x9f,0x52,0x59,0xee,0x25,0xb9,0x70,0xd2,0xb6,0xe2,0x6,0x7,0x1c,0x53,0xac, 0x88,0x17,0x90,0xe4,0x90,0x37,0xe,0xf5,0x5,0x0,0xe0,0xe4,0x1c,0x11,0xd2,0x9b, 0x4a,0xd6,0x12,0x95,0x9d,0xce,0xe4,0xe0,0xf7,0xa5,0x2,0xb2,0xb4,0xeb,0xf8,0xa6, 0xb5,0x45,0x79,0x40,0x97,0xa1,0x6,0xaf,0x2d,0xf5,0xa4,0x47,0x64,0xb3,0xa2,0xb0, 0xec,0x4d,0x70,0x4a,0x2d,0x1e,0xcc,0x2a,0x42,0x49,0x3b,0x97,0x63,0xf9,0x69,0xb3, 0xea,0x56,0x96,0xd2,0x8,0xe6,0x9d,0x55,0xbd,0x33,0x50,0x35,0xfd,0xab,0xc6,0xc2, 0x3b,0x84,0xdd,0x8e,0x30,0x6b,0x8a,0x9d,0x99,0xa7,0x90,0xbb,0x17,0x3b,0x8f,0x27, 0xbd,0x3a,0x54,0x79,0xde,0xa4,0x57,0xc5,0x7b,0x25,0xee,0xea,0x75,0x57,0x1e,0x26, 0xb5,0x42,0xc9,0x12,0x3b,0x9f,0x50,0x0,0x7,0xf1,0xac,0xeb,0x2f,0x10,0xc9,0x14, 0xae,0x2e,0x32,0xf0,0xb6,0x71,0xea,0xb5,0x88,0x18,0xec,0xda,0x71,0x81,0x49,0x9a, 0xe9,0x54,0x21,0x6b,0x1c,0x12,0xc5,0xd4,0x72,0xbd,0xcb,0x97,0xf7,0xad,0x7b,0x7a, 0xd7,0x38,0xd8,0x4f,0xb,0xea,0x5,0x41,0x1c,0xcd,0x13,0x33,0xc,0x12,0xe0,0x86, 0x2c,0x33,0x9a,0x8b,0x34,0x56,0xa9,0x24,0xac,0x73,0xb9,0x39,0x3b,0xb0,0xc7,0x4f, 0x6a,0x31,0x45,0x14,0xc9,0xc,0x52,0x8a,0x4a,0x51,0x40,0xc7,0x2,0x7b,0x56,0xe6, 0x91,0xac,0xfd,0x8c,0x6c,0x73,0x91,0x58,0x34,0xe0,0x6a,0x2a,0x41,0x4d,0x59,0x9a, 0xd2,0xab,0x2a,0x6e,0xf1,0x3b,0xcf,0xf8,0x48,0x6d,0xcc,0x7d,0x79,0xac,0x5b,0xfb, 0xe3,0x7e,0xc4,0x83,0xf2,0x57,0x3c,0x1c,0x81,0xd6,0x9e,0xb2,0x95,0x5d,0xa3,0xa5, 0x63,0x1c,0x32,0x8e,0xa8,0xeb,0x9e,0x3e,0x75,0x15,0x99,0xb3,0x69,0x23,0xc1,0xc0, 0x7c,0x8c,0xfa,0xd6,0xed,0x95,0xd3,0x4a,0xe0,0x7a,0x57,0x10,0x25,0x60,0x78,0x62, 0x3e,0x95,0xb5,0xa5,0x5e,0x18,0xdb,0x25,0xfd,0x33,0x9a,0x9a,0xb4,0x6f,0x1b,0x97, 0x86,0xc4,0xd9,0xa4,0xce,0xde,0x33,0x95,0xa7,0xd5,0x4b,0x59,0x84,0x91,0x82,0xe, 0x6a,0xc6,0xe1,0xeb,0x5e,0x63,0x56,0x7a,0x9e,0xec,0x5d,0xd6,0x83,0x89,0xa6,0x9a, 0x4d,0xd4,0xc9,0x24,0x54,0xea,0xc2,0x84,0xaf,0xb0,0x36,0x4,0xd3,0xd,0x34,0x4a, 0xad,0xd0,0xd0,0x4d,0x55,0x84,0x21,0xa6,0xd2,0xd1,0x8a,0x4,0x26,0x71,0x4f,0xd, 0x4c,0xc5,0x2f,0x34,0x1,0x28,0x6a,0x76,0x6a,0x10,0x4d,0x28,0x63,0x40,0xee,0x4c, 0xe,0x69,0xd9,0xa8,0x41,0xa7,0x6,0xa5,0x60,0xb9,0x26,0x68,0xcd,0x33,0x75,0x19, 0xa0,0x77,0x1c,0x4d,0x26,0x69,0xb9,0xa4,0xcd,0x2,0xb8,0xb9,0xa6,0x33,0x50,0x4d, 0x46,0x73,0x4d,0x12,0xc0,0xb5,0x44,0xc6,0x95,0xb2,0x2a,0x33,0x9a,0xa4,0x43,0x62, 0xe6,0x93,0x34,0x94,0x95,0x42,0x1e,0x28,0xa6,0xd2,0x83,0x48,0x68,0x75,0x14,0x82, 0x9c,0x5,0x3,0x1,0x4f,0x14,0xdc,0x53,0x85,0x21,0xa1,0xd4,0xb9,0xa4,0xa5,0xa9, 0x65,0x21,0xc0,0xd3,0xb3,0x4c,0x14,0xa2,0x81,0x8f,0xa6,0x9a,0x5c,0xd3,0x4d,0x0, 0x36,0x9b,0x4e,0xa6,0xd3,0x40,0x14,0xda,0x75,0x21,0x14,0x12,0xc4,0xa5,0x14,0x62, 0x8a,0x0,0xd,0x25,0x14,0xb8,0xa0,0x5,0x14,0xb4,0x94,0xea,0x43,0x42,0x8a,0x7e, 0xec,0xc,0xd3,0x45,0x56,0xba,0x9f,0x64,0x67,0x14,0xd2,0xbb,0x13,0x7c,0xa9,0xb3, 0x17,0x5c,0xb8,0x1f,0x30,0x6,0xb9,0x66,0x39,0x35,0xb9,0xa9,0x45,0x2c,0xa8,0x64, 0xe4,0xfb,0x56,0x23,0xa3,0x2b,0x60,0x8c,0x1a,0xf5,0x28,0x24,0x91,0xf3,0xd8,0xb7, 0x29,0x4f,0x61,0xb4,0x52,0xe2,0x92,0xb7,0x38,0xec,0x14,0x51,0x45,0x16,0x1,0x45, 0x14,0xa,0x28,0x0,0xa2,0x8a,0x29,0x80,0xb9,0xa2,0x81,0x45,0x20,0x14,0x51,0x40, 0xa2,0x80,0xa,0x28,0xa2,0x80,0x16,0x8a,0x28,0xa0,0x2,0x97,0x14,0x94,0xb9,0xa0, 0x62,0x51,0x45,0x14,0x8,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x51,0x45,0x2, 0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2, 0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x83,0x40,0x1d,0x67,0x82,0xbf,0xe5,0xfb, 0xfe,0xd9,0xff,0x0,0xec,0xd5,0xd6,0x57,0x27,0xe0,0x9f,0xf9,0x7e,0xff,0x0,0xb6, 0x7f,0xfb,0x35,0x75,0x95,0xe4,0x62,0xbf,0x8a,0xff,0x0,0xae,0x87,0xd3,0x65,0xff, 0x0,0xee,0xd1,0xf9,0xfe,0x6c,0xad,0x77,0xfc,0x1f,0x8d,0x55,0xab,0x57,0x7f,0xc1, 0xf8,0xd5,0x5a,0x88,0xec,0x6b,0x3f,0x88,0x28,0xdc,0xf,0x42,0xf,0x63,0x45,0x46, 0xd0,0xa9,0xe9,0xc7,0x39,0x38,0xef,0x54,0xad,0x72,0x1d,0xd6,0xc4,0x77,0x53,0xc1, 0x15,0xa4,0xad,0x23,0x2e,0xc0,0xa4,0x1e,0x6b,0x85,0xb5,0x85,0xae,0x6f,0x52,0x28, 0x46,0xb,0x3f,0xca,0xf,0xa5,0x74,0x17,0xbe,0x1f,0xb8,0x9a,0x59,0x5e,0x3b,0x81, 0xb1,0xb9,0x8,0xc6,0xb0,0xa,0xcf,0xa7,0xde,0x70,0x40,0x96,0x23,0xf5,0x15,0xdd, 0x41,0x25,0x16,0xa2,0xf5,0x67,0x91,0x8b,0x94,0xdc,0x93,0x94,0x6c,0x8e,0xf5,0x7e, 0x58,0xc6,0xe3,0xd0,0x7e,0x15,0xc6,0x6b,0x97,0xc9,0x7b,0x7c,0x7c,0xb5,0xc2,0xc7, 0xf2,0x67,0xd4,0xd3,0xae,0xb5,0x5d,0x45,0xf1,0x2b,0x17,0x8e,0x32,0xbb,0x78,0x18, 0x18,0xac,0xa3,0xd7,0xa5,0x14,0x68,0xf2,0x3b,0xb2,0x71,0x58,0xaf,0x68,0x94,0x12, 0xa,0x28,0xa2,0xba,0xce,0x0,0xa2,0x8a,0x29,0x0,0x52,0x52,0x9a,0x4a,0x4,0xc5, 0xcf,0x39,0xfd,0x45,0x4,0x92,0x72,0x4e,0x4f,0xa9,0xa4,0xa4,0x34,0xc7,0x76,0x2e, 0x4f,0x63,0x45,0x20,0xa5,0xa4,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45, 0x14,0x50,0x20,0xa3,0x34,0x51,0x40,0xb,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x30, 0xa7,0xa4,0x8c,0x84,0x60,0xd3,0x28,0xa0,0x17,0x73,0x62,0xdf,0x5d,0x9e,0x4,0xda, 0x3f,0x9d,0x5d,0x8b,0xc4,0x6c,0x40,0xde,0x79,0xae,0x6b,0x34,0xb9,0xac,0x9d,0x18, 0x3e,0x87,0x4c,0x31,0x75,0x63,0xd4,0xea,0xdb,0xc4,0x8a,0xab,0xc1,0xaa,0x9f,0xdb, 0xde,0x64,0xd9,0x7c,0xe2,0xb9,0xf0,0x69,0x33,0x53,0xf5,0x68,0xa4,0x5b,0xc7,0x55, 0x7a,0x9e,0x8f,0xa7,0x3a,0x4f,0x6c,0xae,0x8,0x39,0xab,0x25,0x45,0x70,0x76,0x3a, 0xe5,0xcd,0x9a,0x4,0x5c,0x15,0x15,0xb1,0x65,0xe2,0x6f,0x32,0x4d,0xb3,0xe1,0x47, 0xa9,0xae,0x2a,0x98,0x79,0xa7,0x74,0x7a,0x94,0x71,0xd4,0x9a,0x49,0xee,0x74,0x7b, 0x68,0x2b,0x55,0xa3,0xd4,0xed,0x64,0x0,0xac,0x83,0x9a,0x90,0xdd,0xc2,0x7f,0x8c, 0x56,0x1c,0xad,0x6e,0x8e,0xdf,0x69,0x7,0xb3,0x24,0xc5,0x18,0x15,0xf,0xda,0x62, 0x27,0x1,0x86,0x7e,0xb4,0xfd,0xfc,0x51,0x6b,0x6e,0xa,0x49,0xec,0x3f,0x14,0x95, 0x5d,0xe6,0x28,0x32,0xd,0x56,0x93,0x50,0x2b,0x4d,0x45,0xb2,0x25,0x52,0x28,0xd1, 0xa5,0xe6,0xb2,0x93,0x55,0x1,0xc0,0x7e,0x95,0xa5,0x1c,0xf1,0xca,0xbb,0x91,0x81, 0x14,0x38,0xb4,0x11,0xa9,0x19,0xf,0x4,0xd3,0x85,0x20,0xe6,0x9c,0x2a,0xd,0x0, 0xd2,0x52,0xf4,0xa8,0x9a,0x4d,0xa7,0x8a,0x76,0x15,0xec,0x3f,0x15,0x13,0x32,0x83, 0x82,0x40,0x35,0x5,0xce,0xa0,0x96,0xf1,0x6f,0x6c,0x67,0xb0,0x35,0xcf,0x5f,0x6b, 0x8f,0x36,0x2,0xa2,0x8c,0x1e,0xa0,0xf5,0xad,0x69,0xd2,0x94,0x8c,0x2b,0x62,0x29, 0xd3,0xdd,0x9d,0x31,0xe6,0x93,0x6d,0x72,0x90,0x6b,0x72,0x6,0x0,0x9c,0xf,0xad, 0x6e,0xd9,0xea,0x31,0xdc,0x28,0xc9,0xaa,0x95,0x19,0x44,0xca,0x9e,0x2a,0x9d,0x4d, 0x99,0x70,0xad,0x26,0xda,0x90,0x32,0x91,0x90,0x45,0x35,0x9d,0x17,0xab,0xa,0xce, 0xec,0xe9,0xd1,0x75,0x19,0xb6,0x94,0x2d,0x39,0x5d,0x1b,0xa3,0xa,0x90,0x63,0xd4, 0x50,0xc1,0x24,0xc8,0xc2,0xd3,0xd5,0x6a,0x4c,0xa,0x1,0x15,0x2d,0xbe,0x85,0x58, 0x6e,0xca,0x36,0x62,0xa5,0x18,0x34,0xbb,0x69,0x5c,0xab,0x11,0x62,0x9d,0x8a,0x78, 0x5a,0x5d,0xb4,0x5c,0x2c,0x47,0x8a,0x5c,0x53,0xc8,0xa6,0x93,0x48,0x62,0x53,0x4d, 0x19,0xa4,0xcd,0x30,0x2,0x29,0xa4,0x53,0xf1,0x41,0x14,0x1,0x1d,0x18,0xa7,0x62, 0x97,0x14,0xee,0x21,0x98,0xa0,0xa,0x90,0x25,0x28,0x4a,0x2e,0x2b,0x11,0xed,0xa5, 0xc5,0x49,0xb6,0x94,0x2d,0x2b,0x8e,0xc4,0x61,0x69,0xc1,0x6a,0x40,0xb4,0xb8,0xa5, 0x71,0x91,0x15,0x24,0x62,0xa3,0x6b,0x41,0x20,0xc1,0xab,0x41,0x69,0xc0,0x50,0xa5, 0x61,0x38,0xdc,0xcb,0x9b,0x4f,0x1e,0x59,0x5c,0x64,0x56,0xd,0xc6,0x8c,0xcf,0x29, 0x6d,0xb5,0xd9,0x91,0x9a,0x67,0x94,0xbe,0x82,0xb4,0x8d,0x67,0x13,0x1a,0x98,0x68, 0x4c,0xe1,0xa4,0xd1,0x9d,0x57,0x21,0x6b,0x36,0xe2,0xd5,0xe2,0x3c,0x8a,0xf4,0x87, 0x81,0x18,0x60,0xa8,0xac,0x3d,0x57,0x4d,0x52,0x8c,0x42,0xd7,0x55,0x2c,0x55,0xdd, 0x99,0xc1,0x5f,0x0,0x94,0x6f,0x13,0x8a,0x23,0x14,0x54,0xd3,0xc4,0x63,0x90,0x8a, 0x86,0xbb,0xd3,0xbe,0xc7,0x90,0xd5,0x9d,0x85,0x14,0x50,0x28,0xa0,0x90,0xa2,0x8a, 0x29,0xa0,0xdc,0x51,0x45,0x1f,0x95,0x28,0x19,0x38,0xe6,0x8d,0x7,0xf2,0x1,0x45, 0x58,0x86,0xc6,0xe6,0x75,0x2d,0x1c,0x2e,0xc0,0x77,0xc5,0x31,0xa0,0x92,0x36,0x2a, 0xea,0x41,0x1d,0xaa,0x79,0x91,0x5e,0xce,0x56,0xbd,0x88,0xa8,0xa7,0x15,0x34,0xdc, 0x53,0x26,0xc2,0xd1,0x45,0x14,0x8,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28, 0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x51,0x45,0x25,0x2d,0x0,0x14,0x51,0x45,0x0, 0x6,0x93,0xa5,0x2d,0x25,0x0,0x14,0x51,0x45,0x30,0x16,0x8a,0x5,0x14,0x80,0x28, 0xa2,0x8a,0x0,0x29,0x29,0x68,0xc5,0x0,0x75,0x9e,0x9,0xff,0x0,0x97,0xef,0xfb, 0x67,0xff,0x0,0xb3,0x57,0x59,0x5c,0x9f,0x82,0xbf,0xe5,0xfb,0xfe,0xd9,0xff,0x0, 0xec,0xd5,0xd6,0x57,0x91,0x8a,0xfe,0x2b,0xfe,0xba,0x1f,0x4d,0x97,0xff,0x0,0xbb, 0x47,0xe7,0xf9,0xb2,0xb5,0xdf,0xf0,0x7e,0x35,0x56,0xad,0xdc,0x8c,0xed,0xfc,0x6a, 0xbe,0xda,0xce,0x2f,0x43,0x59,0xa7,0xcc,0x33,0x14,0x77,0xa7,0x11,0x8a,0x4c,0x55, 0x5c,0x8b,0x3b,0x8d,0xed,0x5c,0xfd,0xe6,0x91,0x35,0xd6,0xbc,0xb2,0x88,0xc7,0x90, 0x48,0x2c,0x6b,0xa1,0xa5,0xab,0x84,0xdc,0x5d,0xd1,0x94,0xe8,0xaa,0x8a,0xcc,0x8e, 0x6b,0x68,0x2e,0x20,0x31,0x32,0x29,0x8f,0xa6,0xdc,0x57,0x1f,0xa8,0xe8,0x93,0x5b, 0x5c,0x15,0xb7,0x89,0xe4,0x88,0xf2,0xf,0x5c,0x57,0x65,0xb4,0x6,0xc8,0xeb,0x4e, 0xe2,0xaa,0x95,0x59,0x41,0x93,0x5b,0xf,0xa,0xa9,0x79,0x1e,0x7f,0x35,0x9c,0x91, 0x46,0xbb,0xa0,0x91,0x58,0xfa,0x8a,0x8d,0x2c,0xee,0x24,0x4,0xa4,0x2e,0x71,0xed, 0x5e,0x86,0x54,0x11,0xce,0xd,0x57,0xbb,0xb8,0x4b,0x5b,0x77,0x91,0x80,0x1b,0x46, 0x45,0x6e,0xb1,0x52,0x7a,0x58,0xe3,0x9e,0x2,0x2b,0xde,0x72,0x3c,0xf8,0x82,0x9, 0x7,0x82,0xe,0x8,0x34,0x95,0x35,0xcc,0xbe,0x7c,0xef,0x2e,0xdd,0xa5,0x8e,0x70, 0x2a,0x1a,0xed,0x4e,0xe7,0x96,0xd2,0x4e,0xc8,0x28,0xc5,0x14,0x50,0x20,0xc5,0x21, 0x14,0xb4,0x50,0x2,0x1,0x46,0x29,0x68,0x23,0x34,0x0,0x98,0xa3,0x15,0xa9,0x6d, 0xfd,0x99,0x72,0x8b,0x14,0x89,0x24,0x32,0x63,0x1b,0xf3,0xc6,0x6a,0x1d,0x42,0xc0, 0x59,0x4a,0xaa,0xb3,0x2c,0xaa,0xc3,0x23,0x1d,0x45,0x42,0x9a,0xbd,0x8d,0x1d,0x26, 0xa3,0xcc,0x52,0xc5,0x18,0xa5,0xc7,0x19,0xed,0x49,0x56,0x67,0xa8,0x62,0x8c,0x51, 0x45,0x0,0x18,0xa3,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x4c,0x2, 0x83,0x45,0x14,0x80,0x5,0x14,0x51,0x40,0x5,0x25,0x3a,0x90,0x8a,0x0,0x4a,0x5c, 0xd0,0x46,0x29,0x29,0x88,0x91,0x27,0x92,0x33,0xf2,0xb1,0x15,0x37,0xdb,0xee,0x3f, 0xbe,0x6a,0xad,0x15,0x3c,0xab,0xb1,0x6a,0x72,0x5d,0x4b,0x91,0x6a,0x13,0x2c,0xa1, 0x8b,0x9a,0xda,0x8f,0x5c,0xf9,0x30,0xcd,0x5c,0xcf,0xd2,0x8c,0x9a,0x89,0x52,0x8c, 0x8d,0x69,0xe2,0x6a,0x40,0xda,0x7d,0x6a,0x4f,0x3f,0xef,0x65,0x7b,0xd2,0x4b,0xaa, 0xa4,0xa7,0x81,0x58,0xf9,0xa0,0x1f,0x7a,0x15,0x18,0xa0,0x78,0x99,0xbd,0xd9,0xa0, 0x6f,0x58,0xb1,0x0,0x56,0xae,0x9f,0x33,0x33,0x0,0xaf,0xcf,0x71,0x9a,0xe7,0x43, 0x90,0x38,0xad,0xb,0x1b,0xb8,0xa0,0x40,0x49,0x20,0xf7,0xa9,0xa9,0x4e,0xeb,0x43, 0x4a,0x15,0xda,0x96,0xac,0xeb,0xe3,0xb8,0xc7,0x5,0xb3,0x56,0x56,0x65,0x23,0x83, 0x5c,0xe5,0xb6,0xa5,0x4,0x9c,0x29,0xfc,0xea,0xcb,0x6a,0x31,0x43,0xd6,0x40,0x2b, 0x82,0x54,0x5d,0xed,0x63,0xd7,0x8e,0x26,0x36,0xdc,0xd5,0x9a,0xe9,0x63,0x52,0x49, 0xc6,0x2b,0x2e,0x4d,0x5e,0x12,0x48,0xe,0x33,0xf5,0xac,0x5d,0x47,0x55,0x13,0x23, 0x22,0x31,0xe7,0xbd,0x64,0x64,0xfa,0xd7,0x45,0x3c,0x37,0x73,0x8b,0x11,0x8f,0x77, 0xe5,0x89,0xa7,0xab,0x5f,0x19,0xe4,0xa,0xad,0x90,0x3d,0xd,0x66,0x13,0x9a,0x42, 0x73,0x45,0x75,0xc6,0x2a,0x2a,0xc8,0xf3,0x67,0x51,0xcd,0xf3,0x31,0x73,0x52,0xc3, 0x73,0x24,0x27,0xe5,0x63,0x50,0xd1,0x54,0xd2,0x6b,0x52,0x54,0x9a,0xd8,0xd5,0x4d, 0x6a,0x65,0x50,0x37,0x1a,0x64,0x9a,0xb4,0xaf,0xdc,0xd6,0x66,0x69,0x73,0x51,0xec, 0xe3,0xd8,0xd3,0xdb,0xcf,0xb9,0xa0,0x9a,0xa4,0xe8,0x72,0x1a,0xad,0xc7,0xae,0xce, 0x3a,0xb5,0x62,0xd2,0x83,0x49,0xd2,0x8b,0xdd,0xe,0x38,0x8a,0x8b,0xa9,0xbc,0x75, 0xe9,0x48,0xc6,0x45,0x4b,0x69,0xab,0xcb,0x24,0x80,0x13,0x5c,0xe6,0xea,0xb1,0x6b, 0x31,0x8d,0xc5,0x44,0xa8,0xc7,0x97,0x44,0x6d,0xc,0x54,0xdc,0x95,0xd9,0xe8,0x56, 0xae,0x64,0x8c,0x1a,0xb1,0x8e,0x2b,0x1b,0x4b,0xbd,0x6,0x35,0xc9,0xad,0x85,0x75, 0x6e,0x86,0xbc,0xb9,0xc6,0xcc,0xf7,0xe8,0xcd,0x4a,0x22,0xe2,0x8c,0x52,0xd1,0x50, 0x6a,0x30,0xd3,0xd,0x48,0x69,0x87,0x8a,0x10,0x98,0xcc,0x50,0x5,0x3a,0x80,0x6a, 0x85,0x70,0xc5,0x3b,0x6e,0x68,0xc8,0xa7,0xa,0x40,0x37,0x6d,0x1b,0x69,0xff,0x0, 0x85,0x2e,0x28,0x1,0xa1,0x69,0x71,0x4e,0xc5,0x18,0xa4,0x50,0xdc,0x51,0x8a,0x7e, 0x29,0xd,0x20,0x1a,0x29,0x69,0x69,0x3a,0x53,0x10,0xb4,0x66,0x93,0x34,0xb9,0xa0, 0x62,0xe6,0x8c,0xd2,0x51,0x40,0xc5,0x3c,0x8a,0xab,0x78,0x81,0xa0,0x6c,0xd5,0x9e, 0x95,0x5e,0xe8,0xfe,0xe5,0x80,0xea,0x69,0xc7,0x72,0x25,0x6e,0x56,0x70,0x5a,0x9a, 0x85,0x9c,0xd6,0x79,0xab,0xfa,0x93,0x66,0xe1,0xc1,0xec,0x6a,0x86,0x9,0x3c,0x57, 0xb5,0x4f,0xe1,0x47,0xcb,0xd6,0x5e,0xfb,0x1,0x45,0x1b,0x4f,0x4c,0x73,0x5a,0x7a, 0x7e,0x8f,0x35,0xe4,0xa8,0x8,0x21,0x9,0xc9,0x35,0x52,0x92,0x8a,0xbb,0x22,0x14, 0xe5,0x51,0xda,0x3b,0x99,0xf1,0xc4,0xf3,0x48,0x12,0x35,0x2c,0xc7,0xb0,0xad,0xa8, 0x7c,0x2f,0x7a,0xe8,0x19,0x8a,0xa9,0x3d,0xbd,0xab,0xa4,0xd3,0xb4,0x4b,0x6b,0x7, 0x32,0x28,0x2c,0xfe,0xfd,0xab,0x53,0x15,0xc1,0x57,0x16,0xf6,0x81,0xec,0x50,0xcb, 0x12,0x57,0xa8,0x65,0x5b,0x68,0x16,0x50,0xc1,0x1c,0x6f,0x12,0xb3,0x28,0xe4,0xfa, 0xd5,0x88,0xf4,0x5b,0x4,0x93,0x78,0x81,0x72,0x3a,0x66,0xaf,0x62,0x94,0x57,0x23, 0xa9,0x37,0xbb,0x3d,0x18,0xd0,0xa7,0x15,0xa2,0x1a,0xb1,0x22,0x2e,0xd5,0x50,0x7, 0xa0,0x15,0x4a,0xf7,0x49,0x82,0xef,0x2c,0x7e,0x56,0xf5,0xad,0xa,0x43,0x53,0x19, 0x34,0xee,0x99,0x72,0xa7,0x19,0x2b,0x34,0x71,0x9a,0x9e,0x8a,0xb6,0x91,0x82,0xad, 0xb8,0xf7,0x15,0x83,0x22,0x6c,0x38,0xf4,0xaf,0x49,0xb9,0x85,0x26,0x52,0x1c,0x3, 0xc7,0x19,0xae,0x26,0xfe,0xca,0x43,0x70,0x56,0x34,0x2c,0x73,0xd8,0x57,0xa1,0x87, 0xad,0xcc,0xad,0x26,0x78,0xd8,0xdc,0x2a,0x8b,0xe6,0x89,0x93,0x45,0x39,0x94,0xab, 0x95,0x3c,0x11,0xda,0x9b,0x5d,0xa7,0x92,0x14,0x51,0x45,0x0,0x14,0x51,0x45,0x0, 0x14,0x51,0x45,0x0,0x14,0x51,0x45,0x30,0xa,0x51,0x49,0x45,0x0,0x2d,0x14,0x94, 0xa2,0x80,0x3,0x49,0x4b,0x46,0x29,0x0,0x94,0x51,0x45,0x0,0x28,0xa2,0x81,0x45, 0x0,0x14,0x1a,0xd,0x25,0x0,0x2e,0x68,0xcd,0x25,0x2e,0x28,0x3,0xac,0xf0,0x57, 0xfc,0xbf,0x7f,0xdb,0x3f,0xfd,0x9a,0xba,0xca,0xe4,0xfc,0x15,0xff,0x0,0x2f,0xdf, 0xf6,0xcf,0xff,0x0,0x66,0xae,0xb2,0xbc,0x8c,0x57,0xf1,0x5f,0xf5,0xd0,0xfa,0x6c, 0xbf,0xfd,0xda,0x3f,0x3f,0xcd,0x90,0xcf,0xfc,0x35,0xe,0x2a,0x79,0x87,0xdd,0xa8, 0xb1,0x59,0x2d,0x8e,0x89,0x2d,0x48,0xc8,0xcd,0x21,0x5a,0x93,0x14,0x98,0xa6,0x4b, 0x44,0x58,0xa4,0xc6,0x2a,0x6c,0x62,0x90,0xf4,0xa7,0x71,0x38,0x90,0xd2,0x16,0xa, 0xa4,0x93,0x81,0xde,0x9f,0x8e,0xb5,0x42,0x5b,0xc8,0x9a,0x46,0x83,0xe6,0xc,0x78, 0xe9,0x54,0x95,0xd9,0x9c,0xe4,0xa3,0xa3,0x33,0x57,0x56,0x23,0x52,0x62,0x92,0xaf, 0xd9,0x7,0xd,0xba,0xaf,0x5f,0xc3,0x1e,0xab,0x64,0x52,0x19,0x46,0x18,0xe4,0x1e, 0xb5,0x9b,0x37,0x87,0x4c,0xb7,0x4,0xc5,0x2e,0xd8,0x8f,0x3f,0x8d,0x3b,0x4d,0xd1, 0xa5,0xb5,0xbd,0xdd,0x21,0xca,0x2f,0xa1,0xeb,0x5d,0x2d,0x43,0x49,0x45,0xea,0x8e, 0x8,0x3a,0xd7,0xe4,0x9c,0x74,0x66,0x15,0xfd,0x99,0xb2,0xb9,0xf2,0x4b,0x6,0xc0, 0xea,0x5,0x55,0x23,0x6,0xbb,0x4d,0x62,0xce,0x19,0x6c,0xda,0x49,0x30,0xac,0x3f, 0x8b,0x15,0xc6,0xb8,0x1,0xc8,0x53,0xb8,0x7a,0xd7,0x4d,0x1a,0xbc,0xf1,0xd4,0xe1, 0xc4,0xd1,0xf6,0x53,0xb2,0x19,0x8a,0xbd,0x16,0x8f,0x7d,0x2a,0x2b,0xac,0x4,0x2b, 0x72,0x9,0x35,0x2e,0x8f,0xa6,0xae,0xa5,0x33,0x86,0x72,0x11,0x6,0x4e,0x2b,0xb3, 0x8e,0x31,0x14,0x49,0x18,0xe7,0x6a,0x81,0x93,0x51,0x5e,0xbf,0x23,0xb2,0x35,0xc3, 0x60,0xfd,0xa2,0xe6,0xa9,0xa2,0x38,0x3b,0xdd,0x3e,0x6b,0x9,0x15,0x26,0x2b,0xb8, 0x8c,0xfc,0xa7,0x35,0x5d,0x62,0x67,0xfb,0xa3,0x35,0xaf,0xad,0x59,0x5e,0xb5,0xeb, 0xca,0xd1,0xb4,0x88,0x7a,0x15,0x1d,0x5,0x64,0x11,0xb4,0xed,0x3c,0x7d,0x6b,0x6a, 0x72,0xe6,0x8e,0xfa,0x9c,0xd5,0x60,0xa1,0x36,0xad,0xa1,0x29,0xb2,0x9f,0x6e,0xe0, 0x9b,0xbd,0x94,0xe4,0xd3,0xa2,0xd3,0xae,0xe7,0x24,0x24,0x12,0x7e,0x2b,0x8a,0x2d, 0x6e,0x64,0xb3,0x98,0x4b,0x1e,0x33,0xe9,0x5a,0x67,0xc4,0xb3,0xf0,0x4,0x9,0xf9, 0x9a,0x99,0x3a,0x8b,0x64,0x55,0x38,0xd1,0x7f,0x13,0x66,0x43,0x5a,0xce,0x84,0x83, 0xb,0x8c,0x75,0xc0,0xa8,0x73,0xeb,0xd6,0xba,0x58,0xfc,0x49,0x19,0x1f,0xbc,0x80, 0xaf,0xae,0x39,0xcd,0x38,0x47,0xa3,0xea,0x4a,0x76,0x95,0x8d,0xcf,0x5c,0x1d,0xa6, 0x97,0xb5,0x92,0xf8,0x91,0xa3,0xc3,0xc2,0x4b,0xdc,0x9f,0xc8,0xe6,0xd2,0x57,0x55, 0x28,0xa7,0x83,0xd4,0x62,0x99,0x5d,0x4,0xfa,0x56,0x9d,0x65,0x9,0x96,0x5b,0x87, 0x74,0x3c,0x2e,0x1b,0x9a,0xce,0x9e,0xca,0xdc,0xb4,0x4b,0x6b,0x72,0x24,0x32,0x1c, 0x5,0x3c,0x11,0xf5,0xab,0x55,0x22,0xcc,0x65,0x42,0x71,0xd1,0x94,0x28,0xab,0x37, 0x76,0x37,0x16,0x32,0x4,0x9d,0x40,0xcf,0x42,0xe,0x41,0xaa,0xd8,0xeb,0x54,0x9a, 0x7b,0x19,0x34,0xd6,0xe1,0x45,0x14,0x53,0x10,0x51,0xc5,0x18,0xae,0x8b,0x47,0xb7, 0xd3,0x27,0xb4,0x9,0x28,0x43,0x39,0xeb,0xbb,0xaf,0xe1,0x51,0x39,0xf2,0x2b,0xb3, 0x5a,0x54,0xfd,0xa3,0xb2,0x39,0xda,0x30,0x6b,0xa4,0xbb,0xf0,0xd8,0xda,0x4d,0xac, 0x9e,0xfb,0x58,0xd6,0x6e,0x9b,0xa5,0x3d,0xec,0xf2,0xc4,0xec,0x50,0x46,0x30,0x4f, 0xbd,0x28,0xd6,0x83,0x57,0xb9,0x52,0xc3,0x54,0x8c,0x94,0x5a,0xdc,0xcd,0xa0,0xd6, 0xfb,0xf8,0x62,0x70,0xe,0xdb,0x84,0x62,0x7,0x19,0x18,0xcd,0x65,0x5d,0xe9,0xf7, 0x36,0x44,0x79,0xf1,0x95,0x53,0xd1,0xbb,0x51,0x1a,0xb0,0x96,0xcc,0x53,0xa1,0x56, 0x3b,0xa2,0xa8,0xa5,0xa3,0xf1,0x14,0x56,0x86,0x21,0x45,0x14,0x50,0x21,0xd,0x25, 0x3a,0x92,0x98,0x9,0x4a,0x7,0x34,0x51,0x40,0xc9,0x42,0x21,0xc7,0x38,0xc9,0xc5, 0x46,0xe8,0x15,0xc8,0x7,0x20,0x77,0xa4,0xa2,0x90,0x36,0xac,0x21,0xa0,0x52,0xd1, 0x40,0x83,0xbd,0x28,0x3c,0x52,0x52,0xd3,0x0,0x4,0x83,0x90,0x79,0xa5,0x2c,0x5b, 0xa9,0xcd,0x25,0x14,0xe,0xec,0x3a,0x52,0x52,0xd1,0x8a,0x4,0x25,0x14,0xb8,0xa3, 0x14,0xc,0x4a,0x29,0x71,0x49,0x40,0x6,0x28,0xc5,0x14,0x50,0x21,0x68,0xa4,0x34, 0x50,0x31,0x7a,0xfa,0xfe,0x15,0xab,0xa7,0x59,0x33,0x3e,0x1f,0x1c,0x9e,0x95,0x93, 0x5a,0x56,0x3a,0x81,0xb6,0x56,0x43,0x8f,0x98,0xf5,0x3d,0x6b,0x3a,0x97,0xb6,0x86, 0xb4,0x5c,0x54,0xaf,0x23,0xa1,0x48,0x96,0x20,0x2,0xf0,0x5,0x5f,0xb6,0xb8,0x51, 0x8c,0x9a,0xe6,0x64,0xd4,0x8f,0x96,0xc7,0xcd,0x4,0x9f,0x4a,0xaf,0x6b,0xa9,0xc8, 0xb3,0x7c,0xcd,0xf2,0xd7,0x23,0xa1,0x29,0x26,0x7a,0x6b,0x17,0x8,0x34,0x91,0xe8, 0xa,0xca,0xc3,0x20,0xd3,0xb1,0x9a,0xc5,0xb0,0xbe,0x57,0x51,0xf3,0x56,0xb2,0x4c, 0x8c,0x33,0xb8,0x57,0xc,0xa2,0xe2,0xf5,0x3d,0x5a,0x75,0x23,0x35,0x74,0xc1,0xce, 0xd1,0x9a,0xae,0x65,0x24,0xfa,0x52,0x5d,0xdd,0xc7,0x1a,0x1f,0x9b,0x9a,0xcc,0x6d, 0x40,0x2e,0x46,0x73,0x57,0x8,0x37,0xd0,0xce,0xa5,0x58,0xc7,0xa9,0xa2,0xd2,0xe3, 0xbd,0x57,0x92,0xf1,0x50,0x12,0x5b,0x1f,0x5a,0xa3,0x25,0xf0,0x31,0x16,0x3c,0x57, 0x3b,0x77,0x7d,0x24,0xae,0xcb,0xb8,0x95,0xae,0x8a,0x74,0x1b,0xdc,0xe3,0xaf,0x8b, 0x54,0xd5,0xd1,0xd4,0x2e,0xab,0x19,0x1c,0x48,0x3f,0x3a,0x70,0xd5,0x30,0xd8,0xdd, 0xd7,0xa5,0x71,0x7b,0xc9,0xe6,0x9e,0x97,0xe,0xac,0x3e,0x63,0x5b,0x3c,0x2a,0x39, 0x16,0x3e,0x57,0x3b,0x8f,0xed,0x1d,0xa0,0x12,0xd5,0x66,0x1b,0xd5,0x7e,0xa6,0xb8, 0x94,0xd4,0x13,0x70,0xde,0x5a,0xad,0xd,0x59,0x3a,0x29,0x22,0xb2,0x96,0x18,0xe9, 0x86,0x3b,0xb9,0xda,0x2c,0xe8,0x71,0xf3,0xa,0x94,0x1a,0xe5,0xad,0x16,0xe6,0x75, 0x12,0x21,0x3b,0x7d,0x6b,0x72,0x26,0x99,0x62,0xf9,0x8e,0x4d,0x73,0x4e,0x9f,0x2f, 0x53,0xb6,0x9d,0x67,0x3e,0x85,0xec,0xd2,0x55,0x1f,0x36,0xe8,0x8c,0xec,0xe2,0x99, 0xe6,0xdc,0x9e,0xc7,0xf2,0xa8,0xe5,0x34,0xf6,0xbe,0x46,0x86,0x69,0xf,0x35,0x41, 0xd,0xc9,0x61,0xd7,0x15,0x75,0x37,0x6d,0xf9,0xba,0xd0,0xe3,0x61,0xc6,0x57,0x1d, 0x4c,0xf3,0x14,0x1c,0x13,0x4b,0x23,0xf9,0x68,0x4d,0x63,0xdc,0x5e,0x6d,0x72,0x73, 0xf9,0xd3,0x8c,0x79,0x89,0xa9,0x35,0xd,0xcd,0xa0,0x47,0x63,0x9a,0x52,0x6b,0x29, 0x75,0x8,0xd2,0x3d,0xc6,0x41,0xc0,0xcd,0x44,0xda,0xbc,0x64,0x85,0xd,0xc9,0xe8, 0x3d,0x6a,0xbd,0x94,0xbb,0x13,0xf5,0x88,0x5b,0x46,0x6b,0x97,0x0,0x75,0xac,0xf9, 0xae,0xd0,0xb3,0x22,0xb8,0xcf,0xf2,0xac,0x4d,0x43,0x51,0x99,0x63,0x25,0x98,0xaa, 0x93,0x8f,0x7a,0xc1,0x7b,0xc9,0x89,0x3b,0x5d,0x86,0x6b,0xa2,0x96,0x15,0xc9,0x5c, 0xe3,0xaf,0x8f,0x51,0x76,0x48,0xb9,0xaa,0x4,0x7b,0xf2,0x3,0xc,0x1e,0xf5,0x57, 0xc9,0x51,0x92,0xac,0x9,0x5e,0xf5,0x54,0xb1,0x6e,0xa7,0x3f,0x5a,0x3,0x11,0xf4, 0xae,0xf5,0x16,0x95,0x8f,0x1d,0xd4,0x52,0x6d,0xd8,0xb1,0x6b,0x18,0x92,0xee,0x30, 0xdd,0xcd,0x7a,0x15,0x85,0xba,0x45,0x2,0x90,0x2b,0xce,0xa2,0x93,0x64,0xa8,0xd9, 0xc6,0xd,0x77,0x3a,0x5e,0xab,0x4,0x90,0x2a,0x33,0x8d,0xc2,0xb8,0xf1,0x71,0x93, 0x5a,0x1e,0x8e,0x59,0x38,0x26,0xf9,0x8d,0x81,0xd2,0x8a,0x88,0x4f,0x1b,0x74,0x6c, 0xd2,0xef,0xc8,0xe2,0xbc,0xfb,0x1e,0xd5,0xd3,0x24,0x6,0x96,0xa2,0xc9,0xa6,0xbc, 0xc5,0x7,0x20,0xd1,0x6b,0x85,0xc9,0xf3,0x41,0x35,0x9e,0xda,0x88,0x53,0x8c,0x1a, 0x8d,0xb5,0xc,0x8e,0x98,0xaa,0x54,0xd9,0x2e,0xac,0x52,0xd4,0xbf,0x23,0xc,0x1e, 0x6a,0x84,0xcc,0x90,0xc4,0xce,0x54,0x64,0x3,0xcd,0x64,0x5e,0x6b,0x46,0x16,0xc7, 0x7f,0x4a,0xcc,0x9f,0x5b,0x96,0x65,0x2a,0x46,0x1,0xf7,0xae,0x88,0x61,0xe5,0xb9, 0xc3,0x57,0x1b,0x4d,0x26,0x8a,0xba,0x81,0x57,0xbd,0x67,0x45,0x0,0x11,0x55,0xf, 0x5a,0x57,0x91,0xa4,0x62,0x49,0xa6,0xd7,0xa7,0x15,0x65,0x63,0xc1,0x9c,0xb9,0xa4, 0xd8,0x51,0x45,0x14,0xc9,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2, 0x80,0xa,0x28,0xa2,0x98,0x5,0x14,0x51,0x40,0xb,0x9a,0x33,0x49,0x45,0x20,0xa, 0x28,0xa2,0x98,0x5,0x2e,0x69,0x28,0xa0,0x2,0x8a,0x28,0xa4,0x1,0x4b,0x49,0x45, 0x0,0x75,0xbe,0xa,0xff,0x0,0x97,0xef,0xfb,0x67,0xff,0x0,0xb3,0x57,0x59,0x5c, 0x97,0x82,0x7f,0xe5,0xfb,0xfe,0xd9,0xff,0x0,0xec,0xd5,0xd6,0xd7,0x91,0x8a,0xfe, 0x2b,0xfe,0xba,0x1f,0x4d,0x97,0xff,0x0,0xbb,0x47,0xe7,0xf9,0xb2,0x39,0x7b,0x54, 0x75,0x24,0xbd,0xaa,0x3a,0xc1,0x1d,0x4f,0x70,0xa6,0x9a,0x75,0x36,0xa8,0x43,0x68, 0xc6,0x68,0xa8,0xe4,0x90,0xa2,0xee,0x3,0x38,0xeb,0x45,0x89,0x7a,0xf,0x2b,0x50, 0xb4,0x4a,0x4e,0x4a,0x8c,0xfa,0xe2,0xa5,0x8e,0x41,0x22,0x86,0x1d,0x29,0xc4,0xa, 0xad,0x89,0xb2,0x64,0x21,0x47,0xa5,0x1b,0x79,0xa9,0x36,0xd1,0x8a,0x5,0xca,0x57, 0xb8,0xb7,0x8e,0xe6,0x23,0x1c,0xcb,0xb9,0x4f,0x51,0x55,0x22,0xd1,0xac,0x61,0x4, 0x2c,0xa,0x73,0xeb,0xcd,0x69,0x62,0x90,0xad,0x52,0x9b,0x5a,0x22,0x25,0x4a,0x2d, 0xdd,0xa2,0xbc,0x16,0x90,0x5b,0x67,0xc9,0x89,0x53,0x3d,0x71,0x53,0x1a,0x29,0xf, 0x34,0x5c,0x69,0x28,0xe8,0x88,0xa6,0x91,0x22,0x89,0x9d,0xfe,0xea,0x8c,0x9a,0xe7, 0xa2,0xd3,0x2d,0xb5,0x45,0x92,0xed,0x1d,0xc6,0xe2,0x78,0x6,0xba,0x9,0x63,0xde, 0x30,0x40,0x20,0xf5,0x6,0xa1,0xb5,0xb3,0x16,0xc5,0x82,0x80,0x11,0xbf,0x87,0x1d, 0x2b,0x58,0x4f,0x95,0x69,0xb9,0xcf,0x52,0x9f,0x3b,0xf7,0x96,0x87,0xf,0x3c,0x46, 0x9,0xe4,0x88,0x9c,0xed,0x6c,0x66,0xa2,0xab,0xda,0xb2,0x15,0xd4,0xe6,0xca,0x14, 0x4,0xf1,0x9e,0x86,0xa9,0x62,0xbd,0x18,0x7b,0xd1,0xb9,0xe1,0x54,0x8f,0x2c,0x9a, 0x12,0x8f,0xe7,0x4b,0x8a,0x4a,0xa2,0x5,0xcf,0xf9,0xcd,0x28,0x1c,0x8e,0x69,0xb4, 0xb9,0xa2,0xc3,0x44,0xd2,0xdc,0xdc,0x4a,0xf1,0xb4,0xb2,0x19,0xc,0x63,0x9,0xbb, 0x9a,0x92,0xfa,0xe6,0x1b,0xad,0x92,0x2c,0x46,0x39,0x71,0x86,0xc7,0x43,0x51,0x43, 0x30,0x8d,0xbe,0x65,0x4,0x56,0x8c,0x29,0xa5,0xcf,0x18,0x2e,0xc6,0x37,0xee,0x33, 0x59,0xca,0xd1,0xe8,0x6d,0x1b,0xce,0xea,0xe6,0x41,0xeb,0xd2,0x90,0xf1,0x5a,0xd2, 0xd8,0x5a,0x33,0xed,0x8a,0xe3,0x19,0xf5,0xaa,0xb2,0xe9,0xf3,0x46,0x32,0x36,0xb8, 0xf5,0x53,0x54,0xa6,0x99,0x12,0xa5,0x38,0x94,0xc5,0x39,0x19,0x91,0xc3,0xa9,0x21, 0x87,0x42,0x29,0x30,0x41,0xc1,0x18,0x34,0x7e,0x75,0x5a,0x19,0xde,0xcc,0xd8,0xb6, 0xd6,0xb5,0x9,0xa7,0x86,0x20,0xea,0x72,0xc0,0x74,0xe6,0xba,0xb4,0x45,0x50,0x4a, 0x80,0x37,0x75,0x20,0x75,0xaf,0x3d,0xc,0x54,0x86,0x53,0x82,0x3a,0x11,0xd4,0x56, 0xd6,0x93,0xae,0x1b,0x54,0xf2,0x6e,0x9,0x64,0xea,0x1c,0xf6,0xfa,0xd7,0x2d,0x6a, 0x37,0xd6,0x27,0xa3,0x84,0xc5,0x45,0x3b,0x4d,0x9d,0x5e,0x69,0xb2,0x44,0x93,0x21, 0x49,0x10,0x32,0x9e,0xaa,0xc3,0x8a,0xc2,0xba,0xf1,0x2a,0x23,0x1,0x6d,0x1f,0x99, 0xdc,0x93,0xd3,0xf0,0xa4,0x8f,0xc5,0x11,0x9f,0xf5,0xb6,0xec,0xa7,0xb9,0x53,0x9a, 0xe7,0x54,0x67,0x6b,0xa4,0x76,0xbc,0x55,0x16,0xec,0xd9,0x2d,0xe6,0x85,0x6c,0xe8, 0x2,0x7e,0xef,0x19,0xc6,0x2b,0xa,0xeb,0x4b,0x9e,0xdb,0x9e,0x1d,0x3d,0x45,0x6e, 0xff,0x0,0x6f,0x5a,0x4a,0x76,0x86,0x20,0x9f,0x5a,0x6c,0xb3,0xc5,0x22,0x1c,0x48, 0xa7,0x35,0xb5,0x39,0x54,0x8e,0x8c,0xe5,0xab,0x4e,0x8d,0x44,0xdc,0x4e,0x5b,0xbe, 0x28,0xab,0x37,0xaa,0xa2,0x63,0xb6,0xab,0x57,0x62,0x77,0x3c,0xc6,0xac,0xec,0x14, 0x1a,0x28,0xa0,0x91,0x28,0xa2,0x8a,0x60,0x14,0x51,0x45,0x0,0x14,0x51,0x4a,0x28, 0x1,0x28,0xeb,0x4a,0x68,0xa0,0x0,0x51,0x45,0x2e,0x28,0x1,0x29,0x71,0x46,0x28, 0xa0,0x4,0xa2,0x96,0x83,0x40,0xc4,0xa2,0x8c,0x51,0x8a,0x4,0x2,0x8a,0x5c,0x50, 0x5,0x3,0x10,0xd2,0x53,0xb1,0x41,0x14,0x8,0x6d,0x28,0x34,0x62,0xa4,0x8e,0x32, 0xcc,0x0,0x52,0x73,0x49,0xbb,0xd,0x26,0xc8,0xf2,0x68,0xc9,0xab,0x17,0x16,0xde, 0x41,0x50,0x4f,0x27,0xa8,0xa4,0xb7,0xb5,0x92,0xe5,0xf1,0x1a,0xe4,0x74,0xcd,0x2b, 0xab,0x5c,0x7c,0x8f,0x9a,0xc6,0x8e,0x8d,0x1d,0xcc,0xf2,0x11,0x1b,0x7c,0x80,0xf2, 0x6b,0xa3,0x6b,0x69,0x22,0x4c,0x96,0xcd,0x47,0xa3,0x5b,0x47,0x65,0x9,0x40,0x9, 0x63,0xc9,0x35,0x6a,0xe2,0x49,0x24,0x42,0x2,0x1f,0x4a,0xf3,0xaa,0xcf,0x9a,0x67, 0xbb,0x87,0xa5,0xc9,0x4f,0x57,0xa9,0xcd,0xea,0xb2,0xca,0x67,0xf2,0xd1,0xfe,0xbc, 0xd6,0x72,0x8b,0x92,0xac,0xdf,0x36,0x7,0x7a,0xdf,0x9f,0x46,0x92,0x69,0x4c,0x8d, 0xc7,0x3,0x18,0xad,0x5b,0x7d,0x2e,0x6,0xb5,0x58,0xd9,0x4e,0x0,0xe7,0xde,0xb4, 0xf6,0xd1,0x84,0x6c,0x73,0xac,0x2d,0x4a,0xb2,0x6d,0xe8,0x71,0x2d,0x24,0xae,0x81, 0x72,0x78,0xaa,0xe4,0x11,0xd6,0xbb,0xf8,0xf4,0x58,0x11,0x19,0x2,0xc,0x1e,0xe4, 0x55,0x3b,0xcf,0xe,0xc6,0x53,0x29,0xc9,0x15,0x50,0xc5,0x47,0x62,0x2a,0x65,0xf5, 0x6d,0x73,0x8a,0x14,0x56,0xcd,0xc6,0x89,0x38,0x72,0xc1,0x44,0x68,0x7,0x7a,0xc8, 0x61,0x86,0x20,0x76,0x38,0xae,0xb8,0xcd,0x49,0x68,0x79,0xf5,0x29,0x4e,0x1f,0x12, 0x1b,0x5a,0x5a,0x55,0xa4,0x77,0x2e,0x5a,0x6c,0xec,0x52,0x31,0x59,0xd8,0xab,0x69, 0x7a,0x62,0xb5,0x11,0x44,0x30,0x73,0x92,0xd9,0xa5,0x52,0xed,0x59,0x15,0x45,0xc5, 0x4a,0xec,0xed,0xe0,0x68,0xd2,0x25,0x44,0xc0,0x5e,0x80,0xa,0xb9,0x10,0x7,0xb5, 0x71,0xd6,0xb7,0xd2,0x79,0x68,0x15,0xf7,0x3f,0xf2,0xad,0x9b,0x2d,0x59,0x43,0xe2, 0x79,0x0,0x24,0xe0,0x62,0xbc,0xca,0x94,0x64,0x8f,0x76,0x8e,0x2a,0xe,0xc8,0xde, 0x3,0x8c,0x66,0x82,0xa2,0xa0,0x37,0x71,0x2a,0xee,0x2c,0x31,0x48,0xb7,0xb0,0xbf, 0x46,0x15,0xcf,0xca,0xce,0xce,0x68,0xf7,0x27,0xc0,0xa2,0x9a,0x24,0x53,0xd0,0x83, 0x48,0x5c,0xe,0xf4,0x58,0x63,0x66,0xc7,0x96,0x6b,0x8f,0xd5,0xe5,0xda,0xed,0x8a, 0xe9,0x2f,0xae,0x91,0x22,0x23,0x75,0x71,0xda,0x83,0x6f,0x98,0x82,0xf5,0xd7,0x86, 0x8b,0xb9,0xe6,0x63,0xaa,0x2e,0x5b,0x22,0xac,0x1f,0xbe,0x99,0x56,0x49,0x76,0x2f, 0x72,0x4d,0x74,0x36,0xcd,0xa7,0x5b,0x46,0x36,0xc8,0xac,0xc3,0xb9,0x39,0x35,0xcb, 0x13,0x48,0x2b,0xba,0x74,0xb9,0x96,0xe7,0x97,0x4a,0xbf,0x27,0x43,0x73,0x5a,0xbb, 0x8a,0x74,0xda,0x8e,0xad,0x58,0x66,0x8e,0x3d,0x28,0xaa,0x84,0x14,0x15,0x91,0x95, 0x4a,0x8e,0xa4,0xb9,0x98,0x51,0x45,0x15,0x46,0x6c,0x75,0x5a,0xb4,0xdf,0xe6,0x2, 0xa7,0x1f,0x8d,0x2d,0x94,0x7f,0x36,0xf7,0x40,0x47,0x6c,0xd5,0xfb,0x48,0xa2,0x37, 0x7b,0x9b,0x18,0xac,0xe7,0x2d,0x1a,0x3a,0x29,0x53,0x6d,0xa7,0x73,0xa4,0xd2,0xe1, 0x76,0x8c,0x33,0x1c,0xd6,0xb0,0x50,0x6,0x31,0x55,0x74,0xf6,0x56,0x80,0x6c,0xe0, 0xa,0xba,0x3a,0x57,0x91,0x36,0xee,0x7d,0x35,0x28,0xda,0x28,0x6e,0x29,0xa6,0x30, 0xdd,0x6a,0x4a,0x2b,0x33,0x52,0x94,0xd6,0x21,0xd4,0xec,0x1c,0xd7,0x35,0xac,0xb, 0x9b,0x34,0xe4,0x11,0x93,0x80,0x41,0xae,0xcb,0x19,0xa8,0xe7,0xb7,0x8a,0xe0,0x1, 0x2a,0x6,0x0,0xe4,0x3,0x5a,0xd3,0xad,0xca,0xf5,0x39,0xab,0xd0,0x53,0x56,0x4e, 0xc7,0x98,0xc9,0x23,0xc8,0x72,0xe4,0x93,0x4c,0x3d,0x79,0x35,0xe9,0x5f,0xd9,0x96, 0x44,0xe4,0xdb,0x46,0x78,0xc7,0x4a,0xaa,0xfe,0x1e,0xd3,0x9f,0x77,0xfa,0x38,0x5, 0xbb,0xfa,0x57,0x6a,0xc6,0xc7,0x6b,0x1e,0x5c,0xb2,0xba,0x8f,0x54,0xcf,0x3f,0xef, 0xdb,0xda,0xa5,0xb7,0xb6,0x9a,0xea,0x4d,0x90,0xc6,0x5d,0xbd,0xbb,0x57,0x42,0x7c, 0x24,0xff,0x0,0x6c,0x65,0xf3,0x9,0x83,0xa8,0x23,0xad,0x74,0x5a,0x76,0x99,0x6, 0x9d,0x8,0x48,0x94,0x16,0x3d,0x58,0xf5,0x35,0x55,0x31,0x70,0x4b,0xdd,0xdc,0xce, 0x86,0x5d,0x56,0x72,0xf7,0xf4,0x47,0x1d,0x1f,0x86,0xf5,0x29,0x1,0x3e,0x52,0xaf, 0xd4,0xd5,0x29,0xf4,0xdb,0xcb,0x79,0x36,0x3c,0xf,0x9f,0x61,0x9a,0xf4,0xbc,0x52, 0x14,0x52,0x72,0x40,0x26,0xb9,0xd6,0x32,0x69,0xea,0x8e,0xc9,0x65,0x74,0xda,0xd1, 0xb3,0xce,0x61,0xd1,0xef,0xe7,0xe5,0x2d,0x9f,0x1d,0x72,0x46,0x2a,0xa4,0x91,0x49, 0x13,0x94,0x91,0x4a,0xb0,0x38,0x39,0x15,0xea,0x58,0xe3,0x1d,0xaa,0x9,0xac,0xad, 0xee,0x6,0x25,0x85,0x1b,0xea,0x2a,0xe3,0x8d,0x77,0xd5,0x11,0x2c,0xa9,0x5b,0xdd, 0x96,0xa7,0x98,0xd1,0x5d,0xb5,0xef,0x85,0xad,0x26,0x52,0x6d,0xff,0x0,0x73,0x27, 0xe6,0x2b,0x1d,0xfc,0x29,0x7e,0x9,0xda,0x63,0x60,0x3d,0xeb,0xa6,0x38,0xaa,0x72, 0xea,0x70,0xd4,0xc0,0x57,0x83,0xd1,0x5c,0xc1,0xa2,0xb5,0x4f,0x87,0x35,0x20,0xd8, 0xf2,0x87,0xe7,0x4a,0xfa,0x5,0xd4,0x56,0xef,0x2c,0xca,0x17,0x68,0xe0,0x56,0x9e, 0xd6,0x1d,0x19,0x97,0xd5,0xab,0x75,0x8d,0x8c,0x9a,0x28,0xe9,0x46,0x33,0x57,0x73, 0x0,0xcd,0x19,0xa3,0x14,0x62,0x9d,0xc5,0x70,0xcd,0x19,0xa4,0xa0,0x50,0x31,0x73, 0x45,0x25,0x14,0x0,0xb4,0x51,0x9a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x5c, 0x52,0x3,0xac,0xf0,0x4f,0xfc,0xbf,0x7f,0xdb,0x3f,0xfd,0x9a,0xba,0xca,0xe4,0xfc, 0x15,0xff,0x0,0x2f,0xdf,0xf6,0xcf,0xff,0x0,0x66,0xae,0xb2,0xbc,0x8c,0x57,0xf1, 0x5f,0xf5,0xd0,0xfa,0x6c,0xbf,0xfd,0xda,0x3f,0x3f,0xcd,0x99,0xfa,0xb5,0xd3,0xda, 0xc4,0x8d,0x18,0xcb,0x1c,0xe2,0xb2,0xec,0x35,0xcf,0x36,0x46,0x8e,0xed,0x44,0x4d, 0xd8,0xf6,0xab,0x1e,0x22,0x8c,0xca,0x6d,0x50,0x36,0xdc,0x96,0xe7,0xf2,0xac,0x8b, 0x4d,0x15,0xa6,0x90,0xb5,0xd3,0xfc,0xa0,0xfc,0xb8,0x3d,0x6a,0xe9,0xc2,0x1e,0xce, 0xf2,0x31,0xaf,0x52,0xaa,0xad,0x68,0x6c,0x6e,0xc3,0xa9,0xdb,0xdc,0x19,0x4,0x4e, 0xe,0xce,0xa4,0xd6,0x4d,0xee,0xb9,0x34,0x52,0xed,0x87,0xc,0x3b,0xf1,0x55,0x6f, 0x6c,0xa5,0x86,0x77,0x16,0xf0,0xe2,0x20,0xbd,0x41,0xc6,0x6b,0x38,0x24,0xdb,0x77, 0x79,0x45,0x57,0xd4,0xd6,0xb4,0xe8,0xd3,0x7a,0xdc,0xe7,0xad,0x89,0xab,0xb5,0xb5, 0x36,0xcf,0x88,0x58,0x46,0xf,0x97,0x96,0xee,0x0,0xab,0x7,0x53,0x49,0x6d,0xc4, 0xa4,0xe1,0x80,0xe6,0x3e,0xf5,0x8d,0xa,0x4a,0x6d,0xcc,0x82,0x11,0x81,0xd1,0xa9, 0x1e,0x31,0xbb,0x7c,0x63,0xf7,0xbf,0xc4,0x29,0xba,0x50,0xbe,0x84,0xc6,0xbd,0x5b, 0x6a,0x6a,0xd,0x75,0x40,0x8b,0xca,0x88,0x90,0xcd,0x86,0x7,0xf8,0x6b,0x6d,0x58, 0x30,0xc8,0x39,0xae,0x29,0x82,0xee,0x25,0x81,0xc7,0xb7,0xad,0x74,0x1a,0x72,0x5d, 0xa4,0x6a,0xf2,0xca,0xa,0x60,0x7c,0x87,0xad,0x45,0x6a,0x4a,0x2a,0xe8,0xdb,0xd, 0x88,0x93,0x95,0xa4,0x6b,0x83,0xeb,0xd6,0x96,0xa3,0x1d,0x33,0x4b,0x9a,0xe5,0xb1, 0xe8,0xf,0xa2,0x90,0x52,0xd0,0x32,0x26,0xeb,0x4d,0x3c,0x54,0xe5,0x73,0x51,0x3a, 0x53,0x4c,0x96,0x88,0xf8,0xa5,0xec,0x3b,0xd5,0x7b,0xe0,0xe9,0x69,0x23,0x46,0xd8, 0x60,0x33,0x5c,0xc2,0xeb,0x37,0xe2,0x37,0x4d,0xc0,0xe4,0x63,0x91,0xc8,0xad,0xa3, 0x49,0xcd,0x5d,0x1c,0x95,0x71,0xa,0x8b,0xd5,0x1a,0xde,0x21,0x9a,0xd3,0xec,0xa5, 0x25,0xda,0xd2,0x1f,0xbb,0x8e,0xb5,0xc9,0xe0,0xf7,0xa9,0x4e,0x49,0x2e,0x49,0x63, 0xdf,0x26,0x99,0x5d,0xf4,0xa1,0xc8,0xac,0x78,0xf5,0xea,0xfb,0x49,0x73,0x24,0x30, 0xd2,0x53,0xc8,0xa4,0xda,0x48,0xe0,0x56,0xa6,0x3,0x7a,0xd1,0x83,0x4f,0x9,0xb6, 0x40,0xae,0xa,0xe7,0xd6,0xb7,0x6d,0xf4,0x9,0x19,0x92,0x4f,0x31,0x76,0x1e,0x7a, 0x54,0x4a,0xa2,0x86,0xe6,0x94,0xe8,0xca,0xa3,0xb2,0x39,0xee,0xfd,0xe8,0xae,0xde, 0xdf,0x46,0xb3,0x81,0xcb,0x88,0xc3,0x39,0xee,0xdc,0xd5,0x3b,0x8f,0xd,0x45,0x2c, 0xed,0x2a,0xca,0x50,0x1f,0xe1,0xc5,0x64,0xb1,0x30,0x6e,0xcc,0xe9,0x78,0xa,0x8a, 0x37,0x39,0x4c,0x9e,0xe7,0x35,0x2c,0x53,0xbc,0x6c,0x30,0xc6,0xa7,0xd4,0x74,0xf6, 0xd3,0xa7,0x11,0xb3,0xee,0xcf,0x22,0xa9,0x91,0xd7,0x22,0xb7,0x8b,0x52,0x5a,0x1c, 0x92,0x4e,0x9c,0xac,0xcd,0x2f,0x36,0x39,0xde,0x3f,0x3d,0x57,0x60,0x3c,0xe2,0xa4, 0xbf,0xb7,0xd3,0x8c,0x79,0xb4,0x90,0x7,0xf4,0x6,0xb2,0x87,0xf3,0x1e,0xb4,0x67, 0x3d,0xea,0x39,0x1d,0xee,0x8d,0x15,0x44,0xd6,0xa8,0x56,0x42,0xa7,0xa7,0xe5,0x4d, 0xab,0x11,0xdd,0x34,0x63,0x6e,0x14,0x8f,0x71,0x43,0xcb,0x1b,0xf2,0x50,0x3,0xed, 0x57,0x73,0x26,0x91,0x5e,0x8a,0x7e,0xd0,0xc7,0x83,0x8a,0x46,0x46,0x5e,0x48,0xe3, 0xd6,0x9d,0xd1,0x36,0xd3,0x41,0xb4,0x2,0x41,0xea,0x6a,0xc4,0xf6,0x72,0x5b,0xda, 0xdb,0xcf,0x26,0x31,0x38,0x25,0x40,0xed,0x8c,0x7f,0x8d,0x57,0xa1,0x34,0xd6,0x83, 0x71,0x71,0x76,0x60,0x4f,0xaf,0x5a,0x28,0xa2,0x98,0x82,0x8a,0x28,0xa0,0x2,0x8a, 0x28,0xa0,0x2,0x92,0x96,0x96,0x81,0x8,0x29,0x71,0x45,0x14,0x0,0x62,0x8c,0x51, 0x45,0x0,0x14,0x51,0x45,0x3,0xa,0x29,0x71,0x48,0x68,0x10,0x51,0x45,0x14,0x0, 0xab,0xd6,0x9e,0x8f,0xb1,0xcb,0x0,0x33,0x8c,0x73,0x4c,0x14,0xa6,0x90,0xee,0x7, 0xad,0x25,0x21,0xa0,0x53,0x1,0x68,0xa2,0x8a,0x0,0x70,0x5c,0x9c,0x56,0x85,0x8c, 0x33,0x2c,0x81,0x95,0xb,0x56,0x7e,0x71,0xcd,0x6c,0x69,0x3a,0x8a,0x45,0x2a,0xac, 0xb8,0xc7,0xad,0x65,0x57,0x99,0x46,0xe9,0x1b,0xd0,0x51,0x72,0xb4,0x99,0x1d,0xdd, 0x95,0xdb,0x4d,0xbc,0xdb,0x48,0x57,0xd8,0x66,0xaf,0xe9,0x16,0x93,0x4a,0xfb,0x7c, 0xb3,0x1a,0xf7,0xc8,0xc5,0x75,0x10,0x4a,0x92,0xa0,0x64,0x60,0x47,0xb1,0xa9,0xc0, 0x7,0xb5,0x79,0xf2,0xc4,0xbb,0x72,0xb4,0x7b,0x54,0xf0,0x30,0x52,0xe7,0x52,0xb9, 0xc,0x56,0xe9,0x1a,0xed,0x2,0xa4,0xd8,0xb8,0xc6,0x29,0xdf,0xa5,0x2d,0x73,0x5d, 0x9d,0xea,0x29,0x2d,0x8,0xbc,0xa1,0x4e,0xa,0x0,0xa7,0x1a,0x5,0x20,0xb2,0xa, 0x18,0x71,0x45,0x57,0xba,0x9c,0x43,0x11,0x63,0xd6,0x8b,0x5d,0xd9,0x3,0x6a,0x29, 0xb6,0x53,0xbf,0x7d,0xdf,0x20,0x0,0xfa,0xd7,0x2d,0xab,0x59,0x47,0x1b,0x80,0x80, 0x99,0x5c,0xe7,0x8e,0xd5,0x7a,0x5d,0x58,0x9,0x8e,0xe3,0x93,0x9e,0x95,0x9b,0xa8, 0x5e,0x9,0x64,0xf,0xfc,0x43,0xa6,0x2b,0xd1,0xa1,0x9,0x45,0x9e,0x36,0x2e,0xb5, 0x39,0xc5,0x99,0xac,0x8c,0x8c,0x55,0x86,0x8,0x3d,0x29,0xb9,0xa7,0xbb,0x97,0x72, 0xcd,0xd4,0xd4,0x75,0xdc,0x79,0xf,0xc8,0x9e,0xde,0xe5,0xed,0xcb,0x14,0xc6,0x48, 0xc5,0x33,0xcc,0x62,0xfb,0x89,0xe7,0xad,0x47,0x40,0xa5,0x64,0x3e,0x66,0x5c,0xfe, 0xd1,0xb9,0xdb,0xb4,0xb9,0x34,0xb1,0x6a,0x33,0x46,0x79,0x6c,0xd5,0x2e,0xf4,0xb5, 0x2e,0x11,0xec,0x5a,0xad,0x35,0xd4,0xdc,0x8f,0x5c,0x91,0x47,0x24,0xd4,0x8d,0xae, 0xbb,0x2f,0xde,0x35,0xcf,0xd1,0x9a,0x8f,0x63,0xb,0xde,0xc6,0xab,0x17,0x52,0xdb, 0x97,0xee,0x75,0x9,0x26,0xfe,0x23,0x8a,0xa0,0xcc,0x58,0xe4,0x92,0x4d,0x26,0x68, 0xad,0x23,0x15,0x1d,0x8c,0x67,0x37,0x3d,0x58,0x86,0x8a,0x5a,0x31,0x54,0x40,0x94, 0x55,0xab,0x6d,0x3e,0xea,0xec,0xfe,0xe6,0x17,0x61,0xeb,0x8e,0x28,0xb9,0xd3,0xee, 0xad,0x0,0x33,0xc2,0xca,0x2a,0x79,0xe3,0x7b,0x5c,0xbf,0x67,0x3b,0x73,0x5b,0x42, 0xad,0x14,0x63,0xb7,0x7a,0xd3,0xd3,0xb4,0x2b,0xad,0x46,0x3f,0x31,0x0,0x58,0xc9, 0xc0,0x66,0xef,0x44,0xa4,0xa0,0xae,0xc2,0x9d,0x39,0x54,0x95,0xa0,0xae,0xca,0x4b, 0x3c,0x81,0x76,0x64,0x81,0x53,0xdb,0xc3,0x78,0x7,0x98,0x91,0x48,0x57,0xd7,0x15, 0xda,0xe9,0x7a,0xd,0xb5,0x84,0x43,0x7a,0xac,0xb3,0x77,0x62,0x3f,0x95,0x6a,0xec, 0x5c,0x63,0x68,0xc7,0xd2,0xb8,0x67,0x8c,0x57,0xb2,0x47,0xad,0x4b,0x2d,0x9b,0x57, 0x93,0xb1,0x93,0xa0,0xca,0x24,0xb4,0xf4,0x61,0xd8,0xf5,0xad,0x7c,0xe2,0xb2,0xb5, 0xb,0x69,0xa1,0x65,0x9e,0xc9,0x3e,0x6c,0xfc,0xca,0x7,0x5a,0x9e,0xc4,0xdd,0x3a, 0x16,0xb9,0x5d,0xa7,0x3c,0xa,0xe4,0x9f,0xbd,0xef,0x1e,0x8d,0x26,0xe3,0xee,0x3e, 0x85,0xf1,0x45,0x20,0x18,0xa5,0xac,0x8e,0x81,0x45,0x6,0x92,0x8a,0x62,0xa,0x50, 0x29,0xb9,0xa5,0xcd,0x0,0x3b,0x1e,0xf4,0x62,0x93,0x34,0x52,0x0,0xa2,0x9b,0x9a, 0x50,0x68,0x1,0x68,0x14,0x51,0x40,0x5,0x14,0x13,0x49,0x9a,0x0,0x31,0x51,0xc9, 0x1a,0xc8,0xa5,0x59,0x43,0x3,0xd4,0x1a,0x93,0x34,0x87,0xa5,0xb,0x7b,0x86,0xf7, 0x47,0xf,0xaa,0xe8,0x92,0x45,0x7d,0x21,0x82,0x33,0xe4,0xe3,0x77,0xd2,0xa9,0x47, 0x61,0x23,0x7f,0xd,0x7a,0xb,0x28,0x60,0x41,0x19,0x15,0x1,0xb3,0x8b,0x39,0xa, 0x7,0xe1,0x5d,0xb1,0xc5,0x49,0x2b,0x1e,0x65,0x4c,0xba,0x2e,0x57,0x47,0x12,0x74, 0xd7,0x3,0xee,0xd5,0x69,0x2d,0x1e,0x3e,0xa2,0xbb,0xe3,0x69,0x19,0x18,0xdb,0x59, 0xf7,0x7a,0x62,0xb2,0x9c,0x2d,0x5c,0x71,0x57,0x7a,0x99,0x54,0xcb,0xec,0xae,0x8e, 0x24,0xa9,0x7,0xa5,0x26,0x2b,0x7c,0xe8,0x93,0x3b,0xe4,0x47,0xc5,0x4c,0x3c,0x3c, 0xfb,0x72,0x57,0x15,0xd1,0xf5,0x88,0x77,0x38,0x7e,0xa5,0x55,0xbd,0x8e,0x67,0x19, 0xa7,0x88,0x24,0x79,0x7c,0xb4,0x52,0xed,0x8c,0xe1,0x79,0xad,0x1b,0xcd,0x2a,0x5b, 0x7d,0xc7,0x1c,0x57,0x45,0xa4,0xe9,0xf6,0xf6,0x76,0x91,0xba,0x28,0xf3,0x1d,0x72, 0xcc,0x7b,0xd1,0x3c,0x42,0x8c,0x6e,0xb5,0x2a,0x96,0xa,0x73,0x9f,0x23,0xd0,0xe2, 0x70,0x41,0x20,0xf0,0x47,0x51,0x47,0xe9,0xf5,0xae,0x86,0xff,0x0,0xc3,0xb3,0x49, 0x74,0xf2,0xda,0x94,0x31,0xb7,0x38,0x66,0xe7,0x35,0x25,0xaf,0x85,0x81,0x87,0x37, 0x52,0xb0,0x90,0xf6,0x43,0xc0,0xa6,0xf1,0x10,0xb5,0xee,0x47,0xd4,0xeb,0x39,0x34, 0x91,0xcc,0xf5,0xa0,0x56,0xb6,0xa1,0xa0,0xdc,0xd9,0x44,0xf3,0x6,0x59,0x23,0x5e, 0xe3,0xae,0x2b,0x2b,0x1c,0xd6,0x91,0x9a,0x9a,0xbc,0x4c,0x27,0x4e,0x54,0xdf,0x2c, 0x82,0x9c,0xd,0x36,0x8a,0xa2,0x4e,0xbb,0xc1,0x7f,0xf2,0xfd,0xff,0x0,0x6c,0xff, 0x0,0xf6,0x6a,0xea,0xeb,0x93,0xf0,0x4f,0xfc,0xbf,0x7f,0xdb,0x3f,0xfd,0x9a,0xba, 0xca,0xf2,0x31,0x5f,0xc5,0x7f,0xd7,0x43,0xe9,0x72,0xff,0x0,0xf7,0x68,0xfc,0xff, 0x0,0x36,0x61,0x78,0x8d,0xf6,0x7d,0x99,0xb1,0x91,0xf3,0xff,0x0,0x4a,0xc1,0x7b, 0x99,0x12,0xc,0xa4,0xc7,0x24,0xf4,0xcd,0x6c,0x78,0xad,0xf6,0xad,0xa0,0xf5,0x2f, 0xfd,0x2b,0x9b,0x3e,0x5f,0x92,0x49,0x2d,0xbc,0x13,0xf4,0x35,0xd1,0x42,0x29,0xc1, 0x1c,0x38,0xc9,0xb5,0x56,0x49,0x7f,0x5a,0xb,0xfd,0xa5,0x71,0x19,0x21,0xb0,0xe3, 0xd0,0xd2,0xbe,0xa5,0x24,0x90,0x79,0x7b,0x55,0x47,0x7c,0x55,0x17,0x7d,0xd4,0xdd, 0xde,0xf5,0xd7,0xc8,0x8f,0x39,0xd5,0x96,0xd7,0x2f,0x41,0x7d,0x2c,0x0,0x28,0x39, 0x4f,0xee,0x9a,0x7a,0xdf,0xba,0xce,0xd2,0x85,0x51,0xbb,0xb5,0x67,0xef,0xa4,0xdf, 0x47,0x22,0x5,0x56,0x56,0xdc,0xd0,0xf3,0xcb,0x86,0x2c,0x40,0xcf,0x35,0xb3,0x6d, 0xab,0x24,0x36,0x8b,0xe6,0x0,0x40,0xe3,0x3d,0xeb,0x99,0x56,0xc5,0x3f,0x70,0xc8, 0xe7,0x2,0xa2,0x74,0x94,0x91,0xa5,0x3c,0x43,0x86,0xa8,0xee,0x20,0xbb,0x8a,0xe2, 0x21,0x22,0x92,0x1,0xe9,0x9a,0x9c,0x10,0x79,0xea,0x2b,0x93,0xb1,0xd5,0xa1,0x82, 0x2d,0x92,0x31,0xeb,0xc6,0x5,0x7,0x5e,0x71,0x21,0xd8,0xd8,0x40,0x78,0xc8,0xeb, 0x5c,0x8f,0xf,0x26,0xdd,0x8f,0x49,0x63,0xa0,0x92,0x6d,0x9d,0x80,0x3c,0x74,0xa4, 0x3c,0x56,0x65,0x86,0xaf,0x5,0xe2,0x8f,0x98,0x2b,0xf7,0x15,0xa0,0xd2,0x2a,0x29, 0x67,0x20,0x28,0xef,0x58,0x38,0x34,0xec,0xce,0xd8,0x55,0x84,0xd5,0xd3,0x25,0x7, 0x8c,0xd5,0x4b,0x5b,0xe1,0x79,0x24,0xa1,0x10,0x84,0x8d,0xb6,0x96,0x3d,0xe9,0xd0, 0xde,0xc1,0x38,0xfd,0xd4,0x8a,0xdf,0x8d,0x4d,0x18,0x44,0xdc,0x11,0x42,0xe4,0xe4, 0xe2,0x95,0xad,0x7b,0x8e,0xfc,0xcd,0x72,0xb2,0x29,0xa3,0x12,0x44,0xdb,0x79,0xcf, 0x18,0xae,0x3b,0x50,0xb3,0x7b,0x69,0x89,0x70,0xc9,0x93,0xf8,0x57,0x71,0x90,0x3b, 0x1,0xf4,0xaa,0xf7,0xb6,0x71,0x5f,0x5b,0x98,0xa5,0x7,0x7,0x90,0x7b,0xd6,0x94, 0xaa,0xf2,0x33,0x9f,0x13,0x86,0xf6,0xb1,0xbf,0x53,0x81,0x23,0x35,0x76,0xcb,0x48, 0x96,0xfd,0x19,0xc3,0x8,0xd4,0x74,0x24,0x75,0xa9,0xb5,0x4d,0x35,0x74,0xed,0x9f, 0x39,0x60,0xc7,0x19,0x22,0x8d,0x2b,0x52,0x36,0x6f,0xe5,0x49,0x96,0x47,0x3c,0x63, 0x9c,0x57,0x7c,0xa7,0x29,0x46,0xf1,0x3c,0x88,0xd3,0x50,0xab,0xc9,0x5b,0x42,0xcc, 0x7e,0x1a,0x5c,0x2f,0x99,0x29,0xce,0x72,0x71,0x57,0x17,0x43,0x81,0x32,0x17,0x3c, 0xfa,0xd6,0xb4,0x71,0xb3,0xa8,0x39,0x1c,0x8c,0xd4,0xbe,0x49,0x2,0xb8,0x9d,0x79, 0xbd,0xd9,0xea,0xc7,0xb,0x4d,0x6a,0x91,0x9d,0x16,0x95,0x6b,0x1a,0x80,0xd1,0x2c, 0x84,0x7f,0x13,0xf2,0x6a,0xe0,0x0,0x0,0x0,0xc0,0x1d,0xa9,0xe5,0xf,0xa5,0x37, 0x18,0xac,0xdc,0xb9,0xb7,0x36,0x8c,0x14,0x76,0x42,0x63,0xde,0x96,0x93,0x34,0xb4, 0xc,0xab,0x79,0x61,0x6f,0x7d,0x1e,0xc9,0x93,0x3e,0x87,0xb8,0xaa,0x90,0x68,0x16, 0x30,0x9c,0xf9,0x7b,0xcf,0xfb,0x67,0x35,0xaa,0x68,0x2,0xa9,0x4e,0x49,0x59,0x33, 0x37,0x4a,0xd,0xdd,0xa3,0x9d,0xd7,0x34,0xa4,0x5b,0x61,0x2d,0xac,0xa,0xa5,0x3e, 0xf6,0xd1,0xda,0xb9,0x9f,0xe5,0x5e,0x8e,0xc0,0x30,0x20,0x8e,0x8,0xc1,0xac,0xa1, 0xe1,0xfb,0x11,0x21,0x72,0x84,0xe7,0xb6,0x6b,0xa2,0x8d,0x7e,0x55,0xa9,0xc3,0x89, 0xc1,0x39,0x49,0x4a,0x7,0x1b,0xf9,0x51,0xcf,0xa5,0x75,0x47,0xc3,0x36,0xde,0x76, 0xe1,0x24,0x9b,0x3f,0xb9,0xff,0x0,0xd7,0xa7,0xbf,0x86,0xec,0xdb,0xee,0x6f,0x5f, 0xc6,0xb6,0xfa,0xcc,0xe,0x5f,0xa8,0xd6,0xec,0x72,0x5c,0xd1,0x92,0x4f,0x27,0x38, 0xae,0xbe,0xf,0xf,0xda,0xc4,0x1c,0x15,0x2e,0x58,0x63,0xe6,0xe7,0x15,0x8f,0xa9, 0x68,0x53,0x59,0x0,0xf1,0x16,0x96,0x32,0x71,0x80,0x39,0x15,0x51,0xc4,0x42,0x4e, 0xc4,0xd4,0xc1,0xd4,0x82,0xe6,0x66,0x64,0xb7,0x13,0x4d,0x1c,0x69,0x23,0x96,0x58, 0xc6,0x10,0x1e,0xd5,0x15,0x2b,0x29,0x7,0x4,0x10,0x7d,0x8,0xc6,0x29,0x2b,0x65, 0x65,0xb1,0xcc,0xdb,0x6f,0x50,0xa2,0x97,0x14,0x94,0xc4,0x14,0x51,0x4b,0x8a,0x0, 0x4a,0x5c,0x51,0x45,0x20,0xa,0x28,0xa2,0x98,0x5,0x14,0x51,0x40,0x5,0x14,0xb8, 0xa2,0x80,0x1,0x45,0x14,0x50,0x1,0x45,0x2d,0x14,0x0,0x94,0xb4,0xa,0x28,0x0, 0xa2,0x81,0x4b,0x8a,0x0,0x6e,0x28,0xc5,0x2d,0x14,0x0,0x94,0xa2,0x8a,0x0,0xa0, 0x2,0x8a,0x5c,0x51,0x8a,0x0,0xb7,0x67,0xa9,0xdc,0xd9,0x30,0xf2,0xdf,0x20,0x76, 0x35,0xd3,0xe9,0xfe,0x25,0x8a,0xe3,0x9,0x2a,0xed,0x92,0xb8,0xca,0x50,0x48,0x3c, 0x12,0xd,0x61,0x52,0x84,0x26,0x75,0x51,0xc5,0xd4,0xa5,0xa2,0x7a,0x1e,0x94,0x97, 0x90,0xc9,0xf7,0x5b,0x35,0x28,0x91,0x4f,0x46,0x15,0xe7,0x90,0xea,0x37,0x10,0xc7, 0xb1,0x5f,0x8e,0xd5,0x34,0x7a,0xbd,0xca,0x9c,0x97,0x26,0xb9,0x1e,0xd,0xad,0x99, 0xe9,0x47,0x33,0x8b,0xdd,0x1d,0xf6,0x41,0xe8,0x69,0x6b,0x94,0xb0,0xd6,0x9d,0x99, 0x50,0xb6,0x49,0xad,0x59,0xf5,0x65,0x89,0x70,0x58,0x67,0xda,0xb0,0x95,0x9,0x27, 0x63,0xae,0x18,0xa8,0x4d,0x5e,0xe6,0x9c,0x92,0xac,0x68,0x59,0x8e,0x2b,0x97,0xd5, 0xb5,0x53,0x23,0xb2,0x21,0xc8,0xed,0xcd,0x41,0x7f,0xad,0xb4,0xc0,0xaa,0x92,0x5, 0x61,0x3c,0xac,0xec,0x5b,0x3c,0xd7,0x55,0xc,0x3d,0xb5,0x91,0xe7,0xe2,0xf1,0xc9, 0xab,0x40,0x19,0xc9,0x62,0xd9,0xe4,0xd3,0x9,0x27,0x9c,0xf3,0x45,0x15,0xdc,0xb4, 0x3c,0x96,0xee,0x21,0xe6,0x90,0x8a,0x5a,0x29,0x92,0x20,0x14,0xa0,0x50,0x29,0x7a, 0x50,0x31,0x31,0x46,0x29,0x45,0x28,0x19,0x34,0x86,0x95,0xc6,0x62,0x83,0x57,0x60, 0xb3,0x37,0x1c,0x6,0xc5,0x59,0xfe,0xc0,0xb9,0x65,0xca,0x15,0x3e,0xc6,0xa1,0xce, 0x2b,0x46,0xcb,0x8d,0x9,0x4b,0x58,0xab,0x99,0x14,0x55,0xd9,0xf4,0xbb,0xcb,0x7c, 0xef,0xb7,0x7c,0x7a,0x81,0x9a,0x6d,0x8d,0xb3,0x5c,0xdf,0x45,0xe,0x3f,0x8b,0x24, 0x1a,0x7c,0xf1,0xb5,0xd3,0x12,0xa5,0x3e,0x65,0x16,0x8a,0xde,0x5b,0xed,0xdd,0xb5, 0xb0,0x7a,0x1c,0x75,0xad,0x2d,0x1f,0x4a,0x96,0xf6,0xf6,0x3d,0xd1,0x37,0x94,0xe, 0x58,0x91,0xc5,0x76,0x10,0x69,0x10,0x2c,0x81,0xdd,0x43,0x6d,0xe8,0xb8,0xe2,0xb4, 0x92,0x34,0x41,0x84,0x50,0xa3,0xd8,0x62,0xb8,0xaa,0x63,0x2e,0xac,0x91,0xeb,0x51, 0xca,0xfd,0xe5,0x29,0x31,0x22,0x85,0x21,0x8c,0x24,0x68,0xaa,0xa3,0x80,0x0,0xaa, 0xda,0x84,0x2b,0x2d,0x94,0xaa,0x50,0x31,0xda,0x47,0x4a,0xb8,0x4d,0x31,0x8f,0xb5, 0x70,0xa9,0x35,0x2b,0x9e,0xac,0xa3,0x17,0x1e,0x53,0xce,0x2d,0x74,0xbb,0x9b,0xcb, 0xbf,0x22,0x38,0xd8,0x73,0x82,0xc4,0x70,0xa3,0xd6,0xbd,0x12,0xd6,0xd9,0x2d,0x6d, 0xa3,0x86,0x3f,0xba,0x8a,0x14,0x52,0xc7,0x1a,0x21,0x25,0x54,0xc,0xf5,0xc5,0x49, 0x5a,0x57,0xac,0xea,0x68,0x73,0xe1,0xb0,0x91,0xc3,0xde,0x5d,0x45,0xa0,0xd2,0x13, 0x48,0x4e,0x6b,0x23,0xac,0x5a,0x38,0xa6,0xe6,0x8c,0xd0,0x3,0xe8,0xa4,0x6,0x8c, 0xd2,0x1,0x69,0x9,0xa0,0xd3,0x49,0xa6,0x0,0x4d,0x0,0xd3,0x68,0xa0,0x9,0x33, 0x49,0x9a,0x6e,0x68,0xa0,0x42,0xd2,0x8a,0x6d,0x28,0x34,0x0,0xfa,0x5a,0x68,0xa0, 0xd2,0x18,0xa6,0x90,0x9a,0x33,0x49,0x4c,0x4,0xcd,0x2d,0x26,0x29,0x68,0x0,0xc5, 0x14,0x51,0x48,0x4,0xc0,0xa0,0x0,0x7b,0x53,0xa8,0xa0,0x4,0xa,0x7,0x41,0x4a, 0x45,0x14,0xb9,0xa2,0xe0,0x56,0xb9,0xb4,0x49,0xd0,0x82,0x30,0x4f,0x15,0x81,0xa8, 0x47,0x7d,0x61,0xb,0x47,0x13,0x9f,0x2c,0xf0,0xa7,0x1d,0x2b,0xa8,0x26,0xa3,0x92, 0x35,0x95,0x36,0xb8,0x4,0x56,0x90,0xa9,0x6d,0x19,0x85,0x5a,0x2a,0xa2,0x76,0x76, 0x65,0xb,0x45,0x65,0xb5,0x88,0x31,0xf9,0xb6,0x8c,0xe7,0xd6,0xa5,0x27,0x2,0xac, 0x79,0x23,0x15,0x1b,0xc4,0x7b,0x53,0x6d,0x36,0x3e,0x56,0x92,0x33,0x35,0x68,0xe6, 0xb9,0xd3,0xa4,0x8a,0xf,0xf5,0x8d,0xd0,0x67,0xb5,0x72,0x73,0x69,0x77,0xb6,0xf1, 0x79,0x92,0xc0,0x42,0xe,0xe0,0xe6,0xbb,0xa3,0x19,0x1d,0x69,0x8c,0x80,0x82,0x8, 0xe0,0xf0,0x47,0x63,0x5d,0x14,0xab,0xba,0x7a,0x24,0x71,0x62,0x30,0xb1,0xaa,0xef, 0x27,0xa9,0xe7,0x94,0x57,0x45,0x73,0xe1,0xd7,0x96,0xed,0x9e,0x6,0x54,0x8c,0xf6, 0x3d,0xaa,0xe5,0x8f,0x86,0x61,0x81,0xc4,0x97,0xf,0xe7,0x11,0xfc,0x38,0xc0,0xae, 0xb9,0x62,0x20,0x95,0xd9,0xe6,0xc7,0x3,0x55,0xca,0xd6,0x13,0xc1,0x3f,0xf2,0xfd, 0xff,0x0,0x6c,0xff,0x0,0xf6,0x6a,0xeb,0x2a,0x86,0x9d,0x65,0xd,0xac,0xb3,0xc9, 0x12,0x4,0xf3,0x2,0x82,0x7,0x4e,0x33,0xfe,0x35,0x7e,0xbc,0xca,0xd3,0x53,0x9b, 0x92,0x3d,0xec,0x2d,0x27,0x4a,0x8a,0x83,0xe9,0xfe,0x67,0x35,0xe2,0xd7,0x45,0xfb, 0x18,0x7c,0xe4,0xef,0xc1,0xff,0x0,0xbe,0x6b,0x93,0x92,0x76,0x31,0xf9,0x67,0xee, 0xe4,0x91,0x8a,0xe9,0xbc,0x68,0x7f,0xe3,0xc7,0xfe,0xda,0x7f,0xec,0xb5,0xc9,0x9a, 0xf4,0x30,0xcb,0xf7,0x68,0xf1,0x33,0x9,0x3f,0x6f,0x25,0xe9,0xf9,0x20,0x24,0x9a, 0x4a,0x28,0xae,0xa3,0x80,0x28,0xa2,0x8a,0x0,0x33,0x46,0x49,0xa2,0x8a,0x0,0x29, 0xe,0x7d,0x69,0x68,0xa0,0x0,0x12,0xa4,0x15,0x24,0x11,0xdc,0x55,0xbf,0xed,0x3b, 0xb3,0xf,0x92,0xd2,0x97,0x4f,0xf6,0xaa,0xa1,0xa4,0xa4,0xe2,0x9e,0xe5,0x29,0xca, 0x3b,0x32,0xc4,0x77,0xb3,0xc4,0xdb,0x91,0x82,0xfd,0x5,0x6d,0xe9,0xbe,0x23,0x28, 0xdb,0x2f,0xf,0xcb,0x8f,0xbc,0x5,0x73,0x94,0x54,0x4e,0x94,0x26,0xac,0xcd,0x29, 0x57,0x9d,0x37,0x78,0xb3,0xbd,0x4b,0x85,0xb9,0x74,0xb8,0x8a,0xff,0x0,0x64,0x27, 0x8d,0x84,0xe,0x6a,0xfe,0xe5,0xcf,0x5f,0xc6,0xbc,0xf2,0xd2,0x78,0xe3,0x95,0x45, 0xc0,0x66,0x87,0x39,0x20,0x1e,0x95,0xdb,0x40,0xea,0xf1,0x23,0x46,0x77,0x21,0x1f, 0x29,0x1e,0x95,0xc1,0x5a,0x97,0x21,0xec,0xe1,0x71,0x5e,0xd3,0x4b,0x59,0x95,0x75, 0x7d,0x36,0x7d,0x42,0x54,0x31,0x4a,0xaa,0x7,0x62,0x2a,0x7b,0x1d,0x12,0xd6,0xcd, 0x55,0x8a,0xf9,0x92,0x81,0xcb,0x35,0x5b,0xf,0x8e,0xe6,0x9e,0x1f,0xd2,0xb3,0x73, 0x97,0x2f,0x2a,0x66,0xea,0x94,0x39,0xf9,0xda,0xd4,0x94,0x70,0x31,0xda,0x8c,0xd3, 0x3,0x7a,0x9a,0x5a,0xca,0xc6,0xe9,0x8e,0xcd,0x35,0xa3,0xcf,0x4a,0x5a,0x70,0x34, 0xd,0xa4,0xc8,0x3c,0xb2,0x3a,0xd3,0x48,0xab,0x27,0x15,0x13,0x62,0x9a,0x64,0xb8, 0x91,0x81,0x46,0x29,0xc6,0x93,0x15,0x57,0x26,0xc3,0x29,0x45,0x29,0x4,0xd3,0x71, 0x8a,0x5,0x61,0x71,0x46,0x29,0x1,0x3e,0x94,0xb4,0xa,0xc2,0x1,0x8a,0x70,0xa4, 0xa2,0x81,0xd8,0xcc,0xd5,0x34,0x48,0x6f,0xcf,0x98,0x1c,0xc7,0x28,0x18,0x4,0x74, 0x3f,0x5a,0xe5,0xaf,0x74,0xdb,0x8b,0x17,0x22,0x45,0x4,0x7a,0xad,0x77,0x95,0x5, 0xcd,0xb2,0xdc,0x46,0x55,0xb1,0xcf,0xad,0x74,0x53,0xae,0xe3,0xa3,0xd8,0xe2,0xc4, 0x60,0xe3,0x52,0xee,0x3b,0x9e,0x7d,0x46,0x33,0x8a,0xdb,0xbe,0xd0,0x2e,0x51,0x8b, 0xc2,0xa1,0x97,0xd0,0x75,0xa8,0x34,0xcd,0xe,0xe6,0xfe,0xe4,0xa3,0x2b,0x47,0x1a, 0xfd,0xe6,0x23,0xf4,0xae,0xdf,0x6d,0xb,0x5e,0xe7,0x93,0xf5,0x6a,0x9c,0xca,0x29, 0x19,0x74,0x57,0x6a,0x3c,0x23,0x64,0x2d,0xca,0x19,0x25,0x69,0x31,0x80,0xc4,0xf4, 0x3e,0xb8,0xae,0x4a,0xf6,0xca,0x5b,0xb,0xb7,0xb7,0x98,0x1d,0xcb,0xdf,0xd4,0x7a, 0xd2,0xa7,0x5e,0x15,0x1d,0x91,0x75,0xb0,0xb5,0x68,0x25,0x29,0xad,0xa,0xf4,0x51, 0x45,0x6a,0x73,0x5,0x14,0x51,0x4c,0x2,0x96,0x8a,0x28,0x0,0xa2,0x94,0x51,0x40, 0x9,0x4b,0x8a,0x31,0x45,0x0,0x14,0x51,0x4b,0x48,0x4,0x14,0xb4,0x51,0x4c,0x2, 0x8a,0x28,0xa0,0x2,0x8c,0x51,0x45,0x0,0x18,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28, 0x0,0xa3,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x87,0x24,0x8d,0x1b,0x6e,0x53,0x83, 0x4e,0x33,0x39,0x1c,0xb1,0x3f,0x53,0x51,0xd1,0x49,0xa4,0x52,0x93,0xb0,0xb9,0xa4, 0xa2,0x8a,0x62,0xc,0x52,0x52,0xd1,0x40,0x9,0x45,0x2e,0x29,0x28,0x10,0x50,0x68, 0xa2,0x81,0x89,0x4a,0xe,0x29,0x28,0xa0,0xb,0x16,0xf7,0x4f,0x3,0x2,0x39,0x15, 0xd4,0x69,0x7a,0xc4,0x12,0xed,0x46,0x21,0x5b,0xd2,0xb8,0xfa,0x1,0x2a,0x72,0x9, 0x7,0xd4,0x56,0x35,0x28,0xa9,0xa3,0xa6,0x86,0x2a,0x74,0x65,0xa6,0xc7,0xa8,0xa6, 0xd6,0x5e,0xc7,0x35,0x1b,0x69,0xf6,0xad,0x28,0x97,0xc9,0x50,0xe3,0xa3,0x1,0x8a, 0xe2,0xf4,0xef,0x10,0xdc,0xd9,0x90,0xb2,0x1f,0x31,0x7,0xe7,0x5d,0x7e,0x9f,0xaa, 0x5b,0xdf,0xc4,0x1a,0x27,0xe4,0xf6,0x3c,0x1a,0xf3,0x6a,0xd1,0x9d,0x2d,0x7a,0x1e, 0xe5,0xc,0x4d,0x2a,0xfe,0xa5,0xdc,0x7b,0xd1,0x40,0x39,0xa2,0xb0,0x3b,0x2c,0x6, 0x9a,0x45,0x38,0xd2,0x50,0x3,0x45,0x3b,0x34,0x94,0x86,0x81,0x6c,0x3a,0x90,0x9a, 0x4c,0xd2,0x66,0x81,0x8b,0x45,0x19,0xa2,0x81,0xb,0x9a,0x29,0x28,0xa0,0x5,0x27, 0x14,0xd3,0x4b,0x48,0x68,0x1,0x33,0x47,0x5a,0x5,0x2d,0x0,0x2,0x96,0x81,0x45, 0x0,0x2e,0x29,0x29,0x73,0x49,0x40,0xb,0x9a,0x33,0x49,0x45,0x0,0x3a,0x8c,0xd2, 0x51,0x48,0x62,0xe6,0x8a,0x4a,0x28,0x1,0x68,0xcd,0x14,0x50,0x2,0xd1,0x45,0x14, 0x0,0x52,0x50,0x68,0xa0,0x2,0x96,0x90,0x51,0x40,0xe,0xa4,0x22,0x92,0x8a,0x60, 0x45,0x21,0x3,0xad,0x56,0x67,0x5c,0xd5,0xa7,0x88,0x3f,0x53,0x51,0x7d,0x91,0x7b, 0x1f,0xce,0xae,0x2d,0x19,0xca,0x2d,0xec,0x56,0xf3,0xe3,0x52,0x3,0x11,0x92,0x6a, 0x70,0xe0,0xf0,0xd,0x34,0xe9,0xea,0xcd,0x93,0xdb,0xa5,0x48,0x2d,0xca,0x9e,0xb5, 0x4d,0xa2,0x14,0x66,0x58,0xb7,0xfe,0x2f,0xc2,0xa7,0xa8,0x60,0x18,0xdd,0x53,0x56, 0x4f,0x73,0x78,0xec,0x72,0x9e,0x35,0xff,0x0,0x97,0x1f,0xfb,0x69,0xff,0x0,0xb2, 0xd7,0x27,0x5d,0x67,0x8d,0x3f,0xe5,0xc7,0xfe,0xda,0x7f,0xec,0xb5,0xc9,0xd7,0xad, 0x85,0xfe,0x12,0xfe,0xba,0x9f,0x37,0x98,0x7f,0xbc,0xcb,0xe5,0xf9,0x20,0xc5,0x18, 0xa2,0x8a,0xe8,0x38,0x83,0x14,0x62,0x8a,0x28,0x0,0xc5,0x18,0xa2,0x8a,0x0,0x4a, 0x29,0x68,0x34,0x0,0x94,0x52,0xe2,0x90,0xd0,0x2,0x51,0x4b,0x46,0x29,0xdc,0x4, 0xe9,0x5a,0x1a,0x6e,0xad,0x36,0x9f,0xf2,0x7d,0xf8,0x73,0xca,0xfa,0x7d,0x2a,0x86, 0x29,0x2a,0x65,0x15,0x25,0x66,0x54,0x27,0x2a,0x6e,0xf1,0x3b,0x31,0xac,0xd9,0x18, 0x43,0x89,0x94,0x1c,0x67,0x69,0xeb,0x50,0xae,0xbd,0x6c,0xc8,0xc4,0xb8,0x52,0x3a, 0x67,0xbd,0x72,0x54,0x57,0x3a,0xc3,0x44,0xec,0x78,0xfa,0x87,0x71,0x6b,0xa9,0x2d, 0xc2,0x2,0x8,0xab,0x89,0x76,0xad,0xc0,0x20,0x9a,0xf3,0xe8,0xa5,0x78,0x5b,0x74, 0x6c,0x57,0xe9,0x5b,0x9a,0x4d,0xc3,0xc8,0xfb,0x9d,0xba,0xd6,0x75,0x30,0xe9,0x6a, 0x8e,0x9a,0x38,0xe7,0x27,0x66,0x75,0x6b,0x26,0xe3,0x52,0x3,0x54,0xa2,0x73,0xc6, 0x6a,0xd2,0xb8,0xc5,0x71,0x4a,0x36,0x3d,0x48,0xcd,0x31,0xf4,0xdc,0x53,0xba,0xf4, 0x14,0xda,0x92,0xed,0x71,0xb8,0xc1,0xa5,0x75,0x2c,0xbf,0x2b,0x6d,0x3f,0x4a,0x63, 0xc8,0x14,0xe3,0x4,0x9a,0x6b,0xce,0x10,0x67,0x7,0x8e,0xb4,0xec,0xc8,0xe6,0x48, 0x78,0xdc,0xaa,0x77,0x61,0x8f,0xb0,0xeb,0x51,0xc3,0x2b,0xcc,0xe4,0x35,0xbb,0xa0, 0x1d,0x9,0xef,0x59,0x73,0xf8,0x9a,0xd9,0x14,0x88,0xd1,0xd9,0xfe,0x9c,0x3,0x54, 0x2c,0xfc,0x45,0x71,0xf6,0xcf,0xf4,0x9d,0xa6,0x26,0x38,0xe0,0x72,0x2b,0x68,0xd0, 0x9b,0x8b,0x76,0x39,0xa7,0x8c,0xa5,0x19,0x25,0x73,0xa8,0x28,0x3d,0x28,0x60,0xa1, 0x73,0x9c,0x55,0x3,0xad,0xd8,0x89,0x7c,0xb6,0x9c,0x67,0xd7,0xb5,0x65,0xeb,0x5a, 0xc4,0x4f,0x8,0x8e,0xd2,0x7c,0xc9,0xbb,0x9d,0xbd,0x2a,0x63,0x4e,0x6d,0xda,0xc5, 0xd4,0xc4,0xd2,0x8c,0x6f,0x73,0xa1,0x1c,0x8c,0xe2,0x82,0x3d,0x78,0xae,0x76,0xcb, 0xc4,0xdb,0xe,0xdb,0x98,0xff,0x0,0x76,0x6,0x37,0x20,0xc9,0xfc,0x6b,0x5a,0x3d, 0x66,0xca,0x48,0x43,0xac,0xd9,0xc9,0xc0,0x5f,0xe2,0x3f,0x85,0x39,0x52,0x9c,0x5e, 0xc2,0xa7,0x88,0xa3,0x51,0x5e,0xe5,0xbc,0x53,0x96,0x3c,0x8c,0xe4,0xe2,0xb0,0x6e, 0xfc,0x45,0x71,0x6b,0x3f,0xcf,0x61,0x88,0xdb,0xee,0xe5,0xb9,0x3f,0x97,0x15,0xa1, 0x67,0xaa,0x7d,0xa2,0xcb,0xcf,0xf2,0xb6,0xe7,0x24,0xc,0xf6,0x14,0x3a,0x73,0x4a, 0xe3,0x85,0x7a,0x72,0x97,0x2d,0xf6,0x34,0x4,0x4b,0x8c,0x11,0xcf,0xad,0x4b,0x1c, 0x6b,0x18,0x21,0x40,0xe7,0xaf,0xbd,0x63,0x8d,0x59,0xb7,0xf,0x93,0x83,0xd2,0xac, 0xcd,0xaa,0x47,0x10,0x51,0x8c,0x93,0xe9,0xda,0xa1,0xc2,0x4d,0xd8,0xb8,0xd6,0xa6, 0xee,0xcd,0x30,0x41,0xac,0xed,0x5f,0x46,0x83,0x55,0x83,0x6b,0x7c,0xb2,0x8f,0xb8, 0xe3,0xf9,0x1f,0x6a,0x92,0xde,0xf5,0x67,0x89,0x64,0x3,0xaf,0xbd,0x5a,0x8e,0x65, 0x73,0x8e,0x86,0xa3,0xde,0x83,0xba,0x34,0x7c,0x95,0x63,0x67,0xb3,0x38,0x3d,0x4f, 0xc3,0xd7,0x3a,0x6d,0xbf,0x9e,0xd2,0x47,0x22,0xf,0xbf,0xb7,0x8d,0xb5,0x91,0x8a, 0xef,0xbc,0x51,0x14,0xb2,0x68,0xcf,0xe5,0xe7,0xa,0xc1,0x9c,0x1,0x9c,0x8f,0xf3, 0x8a,0xe0,0x8f,0x53,0xfe,0x7f,0xc8,0xaf,0x53,0xd,0x51,0xd4,0x8d,0xdb,0x3c,0xc, 0x75,0x8,0xd1,0xa8,0x94,0x76,0xc,0x51,0x45,0x15,0xd0,0x70,0x85,0x14,0x52,0xe2, 0x80,0x12,0x94,0x51,0x8a,0x3b,0xa,0x63,0xa,0x5c,0x50,0x28,0xa0,0x2,0x8a,0x28, 0xa0,0x2,0x81,0x4b,0x45,0x20,0xa,0x28,0xa2,0x80,0x3,0x46,0x28,0xa2,0x80,0xa, 0x28,0xa2,0x98,0x1,0xa3,0x14,0x51,0x40,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8c,0x52, 0xe0,0x83,0x83,0xd6,0x90,0x9,0x45,0x2e,0x28,0xc5,0x0,0x25,0x14,0xb8,0xa4,0xa0, 0x2,0x92,0x96,0x8a,0x0,0x4a,0x29,0x4d,0x25,0x30,0x3,0x46,0x28,0xa2,0x80,0x12, 0x83,0x4b,0x49,0x40,0x9,0x45,0x2d,0x25,0x0,0x1d,0xeb,0x46,0xce,0xe0,0xda,0x43, 0xe6,0x6e,0x21,0x89,0xe3,0x15,0x9d,0x46,0x4f,0x3,0x27,0x15,0x32,0x8d,0xd5,0x99, 0x74,0xe7,0xc8,0xee,0x8e,0xc7,0x4b,0xf1,0x1a,0xc9,0x88,0xee,0x1b,0x9f,0x5a,0xe8, 0x23,0x9e,0x39,0x80,0x2a,0xea,0x7f,0x1a,0xf2,0xfc,0x91,0xce,0x4f,0x5a,0xbd,0x67, 0xa8,0xcd,0x3,0xa9,0x12,0x1e,0x4f,0xad,0x71,0x55,0xc2,0x75,0x89,0xe9,0x61,0xf3, 0x29,0x25,0x69,0xa3,0xd1,0x7a,0xd2,0x1a,0xcc,0xb1,0xbf,0x12,0xc6,0xa1,0x8e,0x49, 0xef,0x5a,0x41,0x81,0x15,0xc3,0x28,0xb8,0xbb,0x33,0xda,0x84,0xd4,0xd5,0xd0,0x94, 0x99,0xa5,0x34,0x87,0x8a,0x43,0x13,0x34,0x52,0x1a,0x4c,0xd0,0x21,0xd9,0xa3,0x34, 0xcc,0xd2,0x16,0xa2,0xc2,0xb9,0x26,0xea,0x37,0x54,0x45,0xb1,0x46,0xea,0x2c,0x1c, 0xc4,0xb9,0xa5,0xcd,0x46,0x29,0x73,0x48,0x77,0x1f,0x9a,0x33,0x4d,0xa7,0x1,0x40, 0x5c,0x75,0x14,0x51,0x40,0xc2,0x8a,0x28,0xa0,0x2,0x96,0x92,0x96,0x80,0xa,0x28, 0xa2,0x80,0x13,0x34,0x66,0x92,0x8a,0x2,0xe3,0xa9,0x73,0x4d,0xa5,0xcd,0x0,0x19, 0xa2,0x9a,0x4d,0x26,0xea,0x0,0x7d,0x14,0xd0,0x73,0x46,0x68,0x1d,0xc7,0x52,0xd3, 0x33,0x46,0xea,0x2,0xe3,0xe8,0xa4,0x6,0x96,0x81,0x5,0x14,0x51,0x9a,0x0,0x28, 0xa4,0xcd,0x2e,0x68,0x1,0xf1,0xf7,0xa7,0xd3,0x23,0xef,0x4f,0xa4,0x52,0x39,0x4f, 0x1a,0x7f,0xcb,0x8f,0xfd,0xb4,0xff,0x0,0xd9,0x6b,0x94,0xae,0xaf,0xc6,0x7f,0xf2, 0xe3,0xff,0x0,0x6d,0x3f,0xf6,0x5a,0xe5,0xd,0x7a,0xf8,0x5f,0xe1,0x2f,0xeb,0xa9, 0xf3,0x59,0x87,0xfb,0xc4,0xbe,0x5f,0x92,0xc,0x51,0x8a,0x28,0xad,0xce,0x20,0xc5, 0x18,0xa2,0x8a,0x60,0x18,0xa4,0xa5,0xa2,0x80,0x12,0x8a,0x53,0x46,0x28,0x1,0x28, 0xa2,0x8a,0x0,0x29,0x29,0x68,0xa0,0x4,0xa2,0x8a,0x28,0x0,0x34,0x94,0xb4,0x50, 0x2,0x52,0x86,0x65,0xfb,0xac,0x47,0xd0,0xd1,0x8a,0x43,0x40,0x5c,0x94,0x5c,0xce, 0x3a,0x4d,0x20,0xff,0x0,0x81,0x1a,0xb1,0x16,0xaf,0xa8,0x42,0x0,0x4b,0xb9,0x0, 0x1e,0xb8,0x3f,0xce,0xa9,0x51,0x52,0xe1,0x17,0xba,0x2e,0x35,0x26,0xb6,0x66,0xe4, 0x3e,0x28,0xbd,0x4c,0x9,0x12,0x29,0x3d,0xc8,0x20,0x9a,0xd2,0x83,0xc5,0x56,0xae, 0xa3,0xcf,0x86,0x58,0xdb,0xbe,0x6,0x45,0x72,0x34,0x56,0x52,0xc3,0xd3,0x66,0xf0, 0xc6,0xd6,0x87,0x5b,0x9d,0xa7,0xfc,0x24,0x1a,0x61,0x39,0xf3,0xf0,0x7f,0xdc,0x6f, 0xf0,0xaa,0x1a,0x96,0xbf,0x11,0x4d,0xb6,0xcc,0x5c,0x9e,0xa4,0xa9,0x1f,0xce,0xb9, 0xae,0xbd,0xcf,0xe7,0x45,0x28,0xe1,0xe1,0x17,0x72,0xe7,0x8f,0xa9,0x25,0x66,0xac, 0x39,0x9f,0x2d,0x9c,0xa,0x4,0x9d,0x8e,0x71,0xed,0x4d,0x34,0x95,0xbd,0x93,0x38, 0xd3,0xea,0x4d,0xb9,0x71,0x8e,0x29,0xbb,0x80,0xfa,0x54,0x74,0x53,0xb,0x8f,0xdc, 0x2a,0xde,0x9c,0x2c,0x8d,0xc6,0xeb,0xd7,0xc4,0x63,0xb6,0xd2,0x73,0xf9,0x55,0x1a, 0x2a,0x64,0x93,0x56,0xb9,0x50,0x9f,0x2b,0xbe,0xe6,0xb6,0xb9,0x75,0x69,0x73,0xf6, 0x6f,0xb2,0xc8,0x5f,0x62,0x90,0x72,0xf,0x1d,0x31,0xd6,0x8d,0x27,0x54,0xfb,0x3b, 0x47,0x6d,0x36,0xd1,0x6f,0x9e,0x18,0xff,0x0,0xe,0x7f,0xfa,0xf5,0x93,0x45,0x47, 0xb2,0x4e,0x3c,0xa5,0xfb,0x79,0x3a,0x9c,0xe8,0xec,0xae,0x5a,0xd2,0xd5,0xc0,0xde, 0x19,0x9b,0xd3,0xb5,0x56,0x78,0xda,0x77,0x1b,0x7b,0x9e,0xf,0x6a,0xe5,0xf7,0xb0, 0x18,0xdc,0x71,0xf5,0xa9,0x62,0xbc,0xb8,0x85,0x83,0x47,0x33,0xa9,0x1d,0x39,0xac, 0xd6,0x1d,0xa3,0xa1,0xe3,0x14,0x9e,0xb1,0xb2,0x3b,0x6b,0x38,0xbc,0x98,0x44,0x7d, 0xc5,0x58,0xdc,0x55,0xc3,0x67,0xa5,0x73,0xba,0x4e,0xba,0xf2,0xdc,0x2c,0x17,0x40, 0x12,0xc7,0xe5,0x71,0xc1,0xcf,0xbd,0x74,0x17,0x7,0x6c,0x4c,0x49,0x3,0x3,0x92, 0x4f,0x4a,0xe2,0xa9,0x9,0x46,0x56,0x68,0xf4,0xe8,0xd5,0x8c,0xe1,0x78,0x74,0x34, 0x5d,0xd1,0xa0,0xdc,0xf8,0xd9,0xb7,0x9c,0xf4,0xc7,0x7a,0xf3,0x2b,0xbf,0xb3,0xfd, 0xae,0x5f,0xb3,0x1c,0xc1,0xb8,0xec,0xfa,0x57,0x46,0x26,0x7d,0x5e,0xe4,0x69,0xf1, 0xdd,0x32,0x42,0x46,0x65,0xda,0x7a,0xa8,0xf4,0xad,0xe5,0xd3,0xf4,0xeb,0x4b,0x70, 0x86,0x8,0x82,0xe,0xec,0xa0,0xe4,0xd5,0x53,0x97,0xb0,0x7a,0xee,0xcc,0xeb,0x43, 0xeb,0x8a,0xf1,0xd1,0x2e,0xa7,0x9c,0x51,0x5d,0x56,0xa5,0xe1,0x7f,0x3a,0x53,0x3e, 0x9e,0xf1,0x84,0x6e,0x4c,0x64,0xe0,0xf,0xa5,0x73,0x77,0x36,0xb3,0x59,0xce,0xd0, 0xce,0xbb,0x5d,0x7a,0xfa,0x7e,0x15,0xdf,0x4e,0xb4,0x67,0xb1,0xe4,0xd6,0xc3,0x54, 0xa5,0xf1,0x2d,0x8,0xa9,0xd1,0xc6,0xf3,0x4a,0xb1,0x46,0xa5,0xa4,0x73,0x85,0x51, 0xd6,0x9a,0x6,0x48,0x3,0x19,0xed,0x9e,0x9f,0x8d,0x77,0xfa,0x2e,0x93,0x6f,0x63, 0x69,0x1b,0xec,0x56,0x9d,0x97,0x71,0x93,0xaf,0x5f,0x43,0x4a,0xbd,0x6f,0x65,0x1d, 0x8a,0xc2,0xe1,0x5e,0x22,0x5d,0x92,0x31,0xa3,0xf0,0x84,0x9e,0x52,0xb3,0xdc,0xa8, 0x90,0x90,0x4a,0x8e,0xc3,0xbf,0x3d,0xeb,0x23,0x55,0xd2,0xa4,0xd2,0xee,0x44,0x4c, 0xdb,0x91,0x86,0x51,0xc8,0xc0,0x3e,0xd5,0xe8,0xdd,0xbd,0xab,0x2f,0x5d,0xd3,0xce, 0xa5,0xa7,0x32,0x21,0x2,0x44,0x3b,0xd4,0xf4,0x7,0x1d,0xab,0x8a,0x96,0x2e,0x7c, 0xeb,0x9b,0x63,0xd5,0xaf,0x97,0xd3,0xf6,0x6d,0xc1,0x6a,0x79,0xff,0x0,0x61,0xef, 0xcd,0x14,0x1c,0xe4,0x82,0x39,0x7,0x9a,0x7,0x35,0xea,0x1e,0x3,0xd3,0x74,0x14, 0xb4,0x51,0x48,0x61,0x45,0x14,0xb4,0x0,0x62,0x8a,0x28,0xa0,0x2,0x8a,0x28,0xa0, 0x2,0x8c,0x51,0x45,0x0,0x18,0xa3,0x14,0x51,0x40,0x6,0x28,0xc5,0x14,0x50,0x1, 0x8a,0x3b,0xe7,0xbd,0x14,0x50,0x1,0x45,0x14,0xb8,0xa0,0x4,0xa2,0x97,0x14,0x94, 0x0,0x1a,0x4a,0x5a,0x28,0x1,0x28,0xa5,0xc5,0x25,0x0,0x25,0x14,0xb4,0x94,0xc0, 0x28,0xa2,0x8a,0x0,0x4a,0x29,0x69,0x28,0x0,0xc5,0x25,0x2d,0x14,0x80,0x4a,0x0, 0x14,0xb8,0xa0,0x71,0x47,0x41,0xa3,0x7b,0x4c,0xba,0x8d,0x15,0x55,0x9f,0x91,0x5d, 0x25,0xbd,0xec,0x4c,0x0,0xde,0x3f,0x3a,0xf3,0xe0,0x79,0xcd,0x4f,0xd,0xc3,0xc4, 0xc0,0x86,0x35,0xc9,0x57,0xd,0xcf,0xa9,0xe8,0x61,0xf1,0xae,0x9e,0x96,0x3d,0x19, 0x5d,0x58,0x64,0x1a,0x75,0x71,0x96,0xfa,0xdc,0xb1,0xc,0x16,0xe2,0xb5,0x20,0xd7, 0x83,0xf,0x98,0xd7,0x24,0xb0,0xf2,0x47,0xa7,0xc,0x6d,0x39,0xef,0xa1,0xba,0x45, 0x46,0xdc,0x55,0x11,0xac,0x40,0x46,0x6a,0xa5,0xd6,0xb6,0x8a,0xa4,0x2d,0x42,0xa5, 0x26,0xec,0x6b,0x2c,0x45,0x38,0xab,0xdc,0xd2,0x96,0xe6,0x38,0xbe,0xf3,0xa,0xa1, 0x2e,0xb3,0x4,0x47,0x19,0xcf,0xd2,0xb9,0xbb,0xbd,0x45,0xa7,0x6e,0x9,0x15,0x7b, 0x40,0xb1,0x83,0x52,0x59,0xd6,0xe0,0x16,0x23,0x7,0x20,0xe0,0x8e,0xb5,0xd3,0xec, 0x14,0x23,0x79,0x1c,0x1f,0x5c,0x9d,0x49,0xf2,0x53,0xb1,0xb1,0x67,0x7e,0x75,0x6, 0x6f,0x21,0x9,0x55,0x38,0x2d,0xda,0xaf,0xa2,0xba,0x93,0xbe,0xa7,0xb4,0xb3,0x86, 0xca,0x1,0xc,0x9,0xb1,0x47,0xeb,0x52,0x3a,0xe4,0x70,0x2b,0x96,0x52,0x4d,0xe8, 0x7a,0x30,0xa7,0x24,0xbd,0xfd,0xc8,0x37,0x52,0x83,0x4c,0x2a,0x41,0xe9,0x4e,0x50, 0x73,0x52,0x32,0x41,0x4f,0x14,0xd0,0xbc,0x52,0xd2,0x2d,0xe,0xa2,0x90,0x52,0xd2, 0x18,0x51,0x45,0x28,0xa0,0x3,0x14,0x51,0x45,0x0,0x14,0x51,0x41,0xa0,0x6,0xd1, 0x45,0x14,0x0,0x66,0x82,0x68,0xa4,0x26,0x80,0x10,0x9a,0x6e,0x69,0x4d,0x34,0xd0, 0x3,0x81,0xc5,0x5,0xa9,0x99,0xa6,0x96,0xa7,0x61,0x32,0x4c,0xd2,0x83,0x51,0x6e, 0xa0,0x35,0x16,0x15,0xc9,0xc1,0xa7,0x66,0xa0,0xd,0x4e,0xdd,0xef,0x45,0x82,0xe4, 0xb9,0xa4,0xcd,0x47,0xbb,0xde,0x93,0x75,0x2b,0x5,0xc9,0x73,0x46,0xea,0x88,0xbd, 0x26,0xfa,0x76,0xb,0x96,0xa1,0x39,0xcd,0x4b,0x50,0x5b,0x1c,0xee,0xfc,0x2a,0x7a, 0x4c,0xb5,0xb1,0xca,0x78,0xd3,0xfe,0x5c,0x7f,0xed,0xa7,0xfe,0xcb,0x5c,0xa5,0x75, 0x9e,0x33,0xff,0x0,0x97,0x2f,0xfb,0x69,0xff,0x0,0xb2,0xd7,0x29,0x5e,0xb6,0x17, 0xf8,0x4b,0xfa,0xea,0x7c,0xde,0x61,0xfe,0xf1,0x2f,0x97,0xe4,0x84,0xa5,0xa2,0x8a, 0xdc,0xe2,0xa,0x4a,0x5a,0x28,0x1,0x28,0xa5,0xa2,0x98,0x9,0x45,0x2d,0x25,0x0, 0x14,0x94,0xb4,0x50,0x2,0x51,0x4b,0x8a,0x4a,0x0,0x28,0x34,0x51,0x40,0x9,0x45, 0x2d,0x18,0xa0,0x4,0xa2,0x8a,0x28,0x0,0xa4,0xa5,0xa2,0x80,0x12,0x8a,0x28,0xa0, 0x2,0x8a,0x28,0xa0,0x2,0x8c,0x51,0x45,0x2,0x12,0x8a,0x5a,0x31,0x40,0x9,0x45, 0x14,0x50,0x1,0x45,0x14,0x50,0x0,0x69,0x29,0x69,0x29,0xa1,0xa0,0xab,0x2f,0x7f, 0x75,0x24,0x2,0x7,0x9d,0x8c,0x43,0xa2,0xe6,0xab,0x52,0xd4,0xb4,0x9e,0xe3,0x52, 0x6b,0x44,0x4d,0x6b,0x73,0x25,0x9d,0xca,0xcf,0x9,0x1,0xd7,0x91,0x5a,0xf7,0x7a, 0xbb,0x5d,0x2a,0xc8,0x5f,0x3,0xba,0x13,0xd2,0xb0,0xa8,0xef,0x9a,0x99,0x53,0x8c, 0x9d,0xd9,0xa4,0x2b,0x4e,0x29,0xc5,0x3d,0xe,0xbb,0x47,0xd6,0xa1,0xb6,0xb4,0x97, 0xed,0x12,0xd,0x8a,0x32,0x3d,0x7e,0x98,0xac,0xd,0x5a,0xfc,0x6a,0x57,0xed,0x3a, 0xae,0xd4,0x3,0x62,0x83,0xd7,0x2,0xa8,0x8c,0x67,0xa0,0xab,0x70,0xc9,0x67,0xf6, 0x17,0x8e,0x58,0xdf,0xed,0xc,0xe0,0x87,0x1e,0x83,0xb0,0xf4,0xac,0x95,0x25,0x4e, 0x5c,0xf6,0xdc,0xd9,0xe2,0x67,0x56,0xa,0x9b,0x76,0x48,0xa9,0x8c,0xe7,0xf9,0x56, 0xb5,0x8e,0xbd,0x73,0x67,0x2,0x45,0x8f,0x31,0x17,0xa0,0x2d,0x8a,0xa9,0x34,0x76, 0xb2,0x46,0x8b,0x69,0xe6,0xb4,0x9f,0x79,0xb7,0x1e,0xd5,0x54,0xf5,0xad,0x5a,0x8c, 0xd7,0xbc,0x8c,0x63,0x29,0x52,0x77,0x83,0x3a,0x53,0xe2,0x7c,0xa2,0x95,0x56,0x8d, 0x87,0x51,0x9e,0xb5,0xb,0x78,0xa6,0xe7,0xe6,0xdb,0x1a,0x92,0x78,0xc,0xc7,0x38, 0xac,0xc,0x7b,0x51,0x8a,0x8f,0xab,0xd3,0xec,0x6a,0xf1,0x95,0xbf,0x98,0xb0,0x65, 0x8c,0xc3,0x30,0x9a,0x10,0xf3,0xbb,0x65,0x5f,0x38,0xc7,0xaf,0x15,0x1,0xa2,0x8a, 0xd5,0x24,0x8e,0x66,0xdb,0xdc,0x28,0xa2,0x97,0x14,0xc4,0x2,0x8a,0x0,0xa5,0xc5, 0x0,0x25,0x2e,0x28,0xa2,0x80,0xc,0x51,0x45,0x14,0x0,0x51,0x45,0x14,0x0,0x51, 0xd6,0x8a,0x93,0x62,0x95,0xce,0xef,0xc3,0x14,0xc,0x8f,0x14,0x52,0x85,0x24,0xe0, 0x64,0x9f,0x41,0x49,0x83,0xe9,0xcf,0xa5,0x1,0x60,0xa2,0x97,0x14,0x62,0x81,0x9, 0x45,0x2e,0x28,0xc5,0x0,0x25,0x14,0xb8,0xa3,0x14,0x0,0x86,0x92,0x96,0x8a,0x0, 0x4a,0x29,0x71,0x49,0x40,0x9,0x45,0x2d,0x25,0x0,0x18,0xa4,0xa5,0xa2,0x80,0x12, 0x83,0x45,0x14,0xc0,0x4a,0x29,0x71,0x45,0x20,0x12,0x8a,0x5c,0x52,0x50,0x1,0x4b, 0x9c,0x52,0x1a,0x4a,0x6,0x38,0xb1,0xf5,0xa0,0x3b,0xe,0xe6,0x9b,0x45,0x16,0xb, 0xb2,0x41,0x33,0x8f,0xe2,0x34,0xd2,0xec,0x7a,0x9c,0xd3,0x29,0x68,0xb2,0xe,0x66, 0x15,0xa5,0xa4,0xea,0x4d,0xa6,0xca,0xec,0x17,0x72,0xb8,0x0,0xd6,0x6d,0x3c,0x0, 0x40,0xe7,0xaf,0x14,0xa5,0x15,0x25,0x66,0x38,0x49,0xc2,0x4a,0x51,0xdc,0xf4,0x1d, 0x37,0x50,0x3a,0x94,0x2,0x65,0x42,0x83,0x38,0x20,0xd5,0xfe,0xb5,0xcf,0xf8,0x6e, 0xde,0x55,0xb6,0x13,0x99,0xe,0xd6,0x18,0x9,0x8e,0x95,0xd0,0xe,0x2b,0xc7,0xaa, 0x92,0x93,0x48,0xfa,0x7c,0x34,0xdc,0xe9,0xa9,0x4b,0x70,0xda,0x28,0xda,0x29,0x73, 0x45,0x66,0x6e,0x18,0xa4,0x22,0x96,0x96,0x90,0xd,0xc5,0x21,0xa7,0x91,0x4d,0x22, 0x80,0x12,0x8a,0x28,0xa0,0x5,0xa0,0xd2,0x51,0x40,0x5,0x14,0x51,0x9a,0x0,0xd, 0x21,0xa0,0x9a,0x4c,0xd0,0x2,0x51,0x45,0x14,0xc0,0xd,0x37,0x14,0xb9,0xa4,0xa0, 0x43,0xd,0x46,0xc6,0xa4,0x6a,0x89,0xea,0x90,0x98,0xc2,0xdc,0xd2,0x6e,0xa4,0x3d, 0x69,0x2a,0xac,0x65,0x71,0xfb,0xcd,0x3b,0x7d,0x41,0xbb,0x9a,0x76,0xea,0x56,0x1d, 0xc9,0x77,0xd1,0xbe,0xa2,0xdd,0x46,0xea,0x2c,0x17,0x26,0xf,0x46,0xfa,0x80,0xb5, 0x20,0x7a,0x2c,0x2b,0x9a,0x56,0x4d,0x9d,0xff,0x0,0x87,0xf5,0xab,0x75,0x47,0x4e, 0x39,0xf3,0x3f,0xf,0xeb,0x57,0xab,0x39,0x6e,0x6f,0xf,0x84,0xe5,0x7c,0x67,0xff, 0x0,0x2e,0x5f,0xf6,0xd3,0xff,0x0,0x65,0xae,0x57,0x15,0xd5,0x78,0xcf,0xfe,0x5c, 0xbf,0xed,0xa7,0xfe,0xcb,0x5c,0xad,0x7a,0xd8,0x5f,0xe1,0x2f,0xeb,0xa9,0xf3,0x99, 0x87,0xfb,0xc4,0xbe,0x5f,0x92,0xc,0x51,0x8a,0x28,0xad,0xce,0x21,0x28,0xa5,0xa0, 0xd0,0x2,0x51,0x4b,0x8a,0x31,0x4c,0x4,0xa2,0x97,0x14,0x94,0x0,0x62,0x92,0x96, 0x8a,0x0,0x4a,0x28,0xa2,0x80,0xc,0x52,0x52,0xd0,0x68,0x1,0x28,0xa2,0x8a,0x0, 0x29,0x29,0x68,0xa0,0x4,0xa2,0x8a,0x28,0x0,0xa4,0xa5,0xa2,0x80,0x12,0x8a,0x5c, 0x52,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x49,0x4b,0x45,0x2,0x12, 0x8a,0x28,0xa0,0x2,0x83,0x45,0x14,0x0,0x94,0xa2,0x92,0x94,0x50,0x30,0xa2,0x8a, 0x28,0x1,0x68,0xcf,0x4c,0xf3,0x45,0x14,0xc0,0x50,0x78,0xa7,0x89,0x59,0x47,0x18, 0xfc,0xa9,0x94,0x52,0xb0,0xee,0x38,0xb9,0x63,0xf3,0x1c,0xd2,0x50,0x28,0xa0,0x4f, 0x50,0xa2,0x8a,0x28,0x1,0x45,0x14,0x1,0x4b,0x8a,0x0,0x5,0x14,0x1,0x4b,0x8a, 0x0,0x4a,0x5c,0x50,0x5,0x2e,0x28,0x1,0x31,0x40,0xa5,0xc5,0x18,0xa0,0x0,0x11, 0xdc,0x51,0x45,0x14,0x0,0x86,0x8e,0x94,0xb4,0x1a,0x0,0x54,0x76,0x8d,0xb7,0x29, 0xc1,0xa4,0x24,0x92,0x49,0x24,0x93,0xeb,0x46,0x28,0xc5,0x3,0x2,0x73,0x49,0x4b, 0x8a,0x31,0x40,0x84,0xa2,0x94,0x51,0x40,0x9,0x45,0x2d,0x14,0x0,0x94,0x94,0xe3, 0x48,0x45,0x0,0x25,0x6,0x97,0x14,0x84,0x50,0x2,0x51,0x4b,0x8a,0x4a,0x0,0x4a, 0x29,0x69,0x29,0x80,0x52,0x52,0xd1,0x48,0x4,0xa2,0x8a,0x28,0x0,0xcd,0x25,0x2d, 0x25,0x0,0x14,0x94,0xe0,0x70,0xd,0x14,0xc,0x6d,0x14,0xa6,0x92,0x98,0x82,0x8a, 0x28,0xa0,0x2,0x94,0x1c,0x30,0xf4,0xa4,0xa2,0x8b,0x5d,0xb,0xcc,0xf4,0x1d,0x1e, 0xea,0x3b,0x9d,0x3a,0x37,0x8c,0x4,0xe3,0xc,0xa3,0xb1,0xab,0x8d,0x2a,0xa9,0xae, 0x3b,0xc3,0xb7,0xe6,0xb,0x86,0xb6,0x62,0x36,0x4b,0xc8,0xf6,0x35,0xd2,0x64,0x13, 0x82,0xdf,0x86,0x45,0x79,0x35,0x69,0x5a,0x4d,0x1f,0x43,0x87,0xc4,0xa9,0x53,0x56, 0xdc,0xba,0x27,0x4c,0xe3,0x35,0x21,0x6c,0xe,0x39,0xaa,0x2,0xd4,0xc9,0xce,0xec, 0x3,0x56,0x56,0x36,0x45,0xa,0xe,0x71,0xef,0x58,0xb4,0x91,0xd7,0x19,0x49,0xee, 0x89,0x95,0xf3,0xd6,0xa5,0x15,0x4,0x48,0x40,0xcb,0x72,0x6a,0x71,0x50,0xcd,0x23, 0xa8,0xb4,0xd2,0x29,0xd4,0x52,0x2e,0xc4,0x64,0x52,0x53,0xc8,0xa6,0x91,0x4c,0x96, 0x25,0x14,0x52,0x66,0x81,0x5,0x14,0x51,0x40,0x1,0xa4,0xa5,0xa4,0xa6,0x0,0x69, 0x29,0x4d,0x25,0x0,0x36,0x8a,0x28,0xa0,0x8,0xda,0xa2,0x35,0x31,0x1c,0xd4,0x64, 0x53,0x44,0xb2,0x16,0xa6,0x9e,0x94,0xf6,0x15,0x17,0x39,0xad,0xc,0xec,0x18,0xa5, 0xc5,0x14,0x99,0xa0,0x41,0x45,0x19,0xcd,0x28,0x14,0x0,0x86,0x90,0xf,0x7a,0x93, 0x6d,0x2e,0xdc,0x50,0x16,0x2e,0x69,0xa3,0x1e,0x67,0xe1,0xfd,0x6a,0xf5,0x53,0xb0, 0xff,0x0,0x96,0x9f,0x87,0xf5,0xab,0x95,0x94,0xb7,0x3a,0x21,0xb1,0xca,0xf8,0xcf, 0xfe,0x5c,0xbf,0xed,0xa7,0xfe,0xcb,0x5c,0xad,0x75,0x5e,0x33,0xff,0x0,0x97,0x2f, 0xfb,0x69,0xff,0x0,0xb2,0xd7,0x2b,0x5e,0xae,0x17,0xf8,0x4b,0xfa,0xea,0x7c,0xe6, 0x61,0xfe,0xf1,0x2f,0x97,0xe4,0x82,0x8a,0x28,0xad,0xce,0x30,0xa2,0x8a,0x28,0x10, 0x51,0x45,0x14,0xc0,0x28,0x34,0x52,0x50,0x1,0x45,0x14,0x50,0x0,0x69,0x29,0x4d, 0x25,0x0,0x14,0x94,0xb4,0x94,0x0,0x51,0x45,0x14,0x0,0x51,0x45,0x14,0x0,0x1a, 0x4a,0x28,0xa6,0x1,0x45,0x14,0x52,0x0,0xa0,0xd1,0x49,0x40,0x82,0x8a,0x28,0xa0, 0x61,0x45,0x14,0x66,0x98,0x5,0x14,0x51,0x48,0x2,0x92,0x96,0x92,0x81,0x5,0x14, 0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0xb,0x45,0x14,0xa2,0x98,0xc2, 0x8a,0x28,0xa0,0x5,0xa2,0x8a,0x29,0x0,0x52,0x8a,0x4a,0x51,0x40,0xa,0x28,0xa4, 0xa5,0xa0,0x7,0x29,0xc6,0x69,0x49,0xcd,0x32,0x94,0x50,0x31,0x68,0xa4,0xa5,0xa0, 0x41,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x66,0x80,0xa,0x28,0xa2, 0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0xd,0x14, 0x94,0x0,0x50,0x68,0xa4,0xa0,0x2,0x83,0x45,0x6,0x80,0x12,0x8a,0x28,0x14,0x0, 0x94,0xb8,0xa2,0x8c,0xfb,0x50,0x2,0x52,0x52,0x93,0x49,0x40,0x5,0x26,0x29,0x68, 0x34,0xc0,0x43,0x49,0x4a,0x69,0x28,0x0,0xa2,0x8a,0x5c,0x50,0x2,0x50,0x29,0x71, 0x45,0x2,0xa,0x28,0xa2,0x90,0xd0,0xa0,0x95,0x20,0x82,0x41,0x1d,0xc5,0x5,0x98, 0xb6,0xed,0xcd,0x9f,0x5d,0xc7,0x34,0x94,0x51,0x64,0x34,0xda,0xd8,0xd7,0xd3,0x35, 0xeb,0x8b,0x39,0x2,0x4c,0xe6,0x48,0x8f,0x1f,0x37,0x51,0x5d,0x8d,0xac,0x86,0x74, 0x12,0x6,0xca,0x91,0xc5,0x70,0x3a,0x79,0x8c,0x5c,0x81,0x22,0x86,0xc8,0xe3,0x3d, 0xab,0xb8,0xd2,0xdb,0x16,0xca,0xb9,0xfa,0x71,0x5e,0x7e,0x2a,0x29,0x6a,0x91,0xec, 0xe5,0xd5,0x24,0xf4,0x93,0xd0,0xd2,0x51,0x8a,0x75,0x30,0x1a,0x76,0x6b,0x84,0xf5, 0xc5,0xa2,0x93,0x34,0xb4,0x0,0x51,0x8a,0x28,0xa4,0x31,0xa4,0x53,0x4a,0xd4,0x94, 0x62,0x81,0x58,0x8f,0x6d,0x26,0xda,0x97,0x14,0x62,0x80,0xb1,0xe,0x29,0x31,0x52, 0x95,0xa6,0xed,0xa6,0x2b,0x11,0xd2,0x66,0x9e,0x56,0x98,0x57,0x14,0xc5,0x61,0x28, 0xa2,0x9a,0x68,0x10,0x86,0x98,0x69,0xc6,0x93,0x14,0xc4,0xc8,0xd8,0x53,0x8,0xa9, 0x48,0xa8,0xcd,0x52,0x64,0xb4,0x46,0x69,0xbd,0x69,0xe4,0x50,0x16,0xaa,0xe4,0x5b, 0x51,0xa0,0x53,0xc0,0xa7,0x1,0xed,0x4b,0x8a,0x57,0x29,0x44,0x0,0xa3,0x14,0xe0, 0x29,0x76,0xd2,0xb9,0x56,0x2c,0xd9,0xc,0x6f,0xfc,0x2a,0xdd,0x56,0xb3,0x18,0xdf, 0xf8,0x55,0x9a,0xcd,0xee,0x6b,0x1d,0x8e,0x57,0xc6,0x7f,0xf2,0xe5,0xff,0x0,0x6d, 0x3f,0xf6,0x5a,0xe5,0x6b,0xaa,0xf1,0x9f,0xfc,0xb9,0x7f,0xdb,0x4f,0xfd,0x96,0xb9, 0x5a,0xf5,0xb0,0xbf,0xc2,0x5f,0xd7,0x53,0xe6,0xf3,0xf,0xf7,0x89,0x7c,0xbf,0x24, 0x14,0x51,0x45,0x6e,0x71,0x85,0x14,0x51,0x40,0x82,0x8a,0x28,0xa0,0x4,0xa2,0x8a, 0x29,0x80,0x51,0x45,0x25,0x0,0x14,0x51,0x45,0x0,0x14,0x1a,0x29,0x28,0x0,0xa2, 0x8a,0x28,0x0,0xa0,0xd1,0x49,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x52,0x50,0x1, 0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x49,0x4b,0x41,0xa0,0x0,0x51,0x40,0xa2, 0x80,0x3,0x49,0x4a,0x69,0x28,0x10,0x51,0x45,0x14,0x0,0x51,0x45,0x14,0x0,0x51, 0x45,0x14,0x0,0xb4,0x50,0x28,0xa6,0x2,0xd1,0x40,0xa2,0x81,0x8a,0x28,0xa0,0x51, 0x48,0x2,0x8a,0x28,0xa0,0x5,0xa5,0x14,0x82,0x8a,0x0,0x5a,0x28,0xa2,0x80,0x16, 0x8a,0x4a,0x51,0x40,0xb,0x9a,0x33,0x49,0x45,0x0,0x2e,0x68,0xcd,0x25,0x14,0x0, 0x51,0x45,0x14,0x0,0xa2,0x83,0x49,0x45,0x0,0x2e,0x68,0xcd,0x25,0x14,0x0,0x51, 0x45,0x14,0x0,0x52,0xd2,0x51,0x40,0xb,0x9a,0x4a,0x28,0xcd,0x0,0x21,0x34,0x94, 0xa6,0x92,0x80,0xa,0x28,0xa2,0x80,0x3,0x49,0x45,0x14,0x0,0x51,0x45,0x14,0x0, 0x86,0x8c,0xd0,0x79,0xa4,0xc5,0x30,0x17,0x34,0x94,0x51,0x40,0x1,0xa4,0xa5,0x34, 0xa,0x0,0x28,0xa2,0x94,0x50,0x2,0x52,0x1a,0x7d,0x30,0xd0,0x0,0x29,0x73,0x49, 0x45,0x0,0x2d,0x14,0x94,0x50,0x5,0x9b,0x79,0xd6,0x1,0x9d,0xb9,0x6f,0x5a,0xdd, 0xd2,0x75,0x8c,0xca,0x23,0x6f,0xc2,0xb9,0x9c,0xd3,0x95,0xd9,0x18,0x32,0x12,0x8, 0xac,0xea,0x52,0x53,0x46,0xf4,0x71,0x12,0xa4,0xf4,0x3d,0x36,0x29,0x96,0x45,0x18, 0x3c,0xfa,0x54,0xa0,0xd7,0x9a,0xa6,0xa1,0x77,0x1b,0x89,0x12,0x77,0xc,0x3a,0x1c, 0xd7,0x73,0xa4,0x6a,0x4b,0xa9,0x59,0x2c,0x9d,0x24,0x5e,0x1d,0x7d,0xd,0x79,0x95, 0xb0,0xf2,0xa6,0xae,0x7b,0x98,0x6c,0x6c,0x6b,0x3e,0x4d,0x99,0xa3,0x4b,0x9a,0x6f, 0xe3,0x45,0x60,0x76,0x8e,0xcd,0x2d,0x32,0x9c,0x29,0xe,0xe3,0xa8,0xa3,0x34,0x52, 0x1,0x45,0x14,0x94,0xb9,0xa0,0x61,0x49,0x8a,0x5c,0xd1,0x9a,0x4,0x34,0x8a,0x42, 0xa0,0xd3,0xa8,0xa0,0x8,0x8a,0x67,0xa5,0x30,0xc6,0x6a,0xc5,0x18,0xa7,0x71,0x58, 0xad,0xb2,0x9a,0x56,0xac,0x95,0xa6,0x95,0xa2,0xe2,0xb1,0x54,0xad,0x46,0x56,0xad, 0x95,0xa6,0x98,0xea,0x93,0x15,0x8a,0xbb,0x68,0xb,0x56,0x36,0x51,0xb6,0x8b,0x8b, 0x94,0x88,0x2d,0x2e,0xda,0x94,0x2d,0x38,0x2d,0x17,0x2a,0xc4,0x41,0x69,0x76,0xfb, 0x54,0xd8,0xa0,0xad,0x2b,0x85,0x87,0x5b,0xc,0x6e,0xfc,0x2a,0x7a,0x8a,0x11,0x8d, 0xd5,0x2d,0x4b,0x29,0x1c,0xaf,0x8c,0xff,0x0,0xe5,0xcb,0xfe,0xda,0x7f,0xec,0xb5, 0xca,0xd7,0x53,0xe3,0x4f,0xf9,0x71,0xff,0x0,0xb6,0x9f,0xfb,0x2d,0x72,0xb5,0xeb, 0xe1,0x7f,0x84,0xbf,0xae,0xa7,0xcd,0xe6,0x1f,0xef,0x12,0xf9,0x7e,0x48,0x5a,0x29, 0x28,0xad,0xce,0x31,0x68,0xa4,0xa2,0x81,0xb,0x9a,0x4c,0xd1,0x45,0x30,0xa,0x28, 0xa2,0x81,0x89,0x9a,0x28,0xa2,0x81,0x5,0x14,0x52,0x50,0x1,0x45,0x14,0x50,0x1, 0x45,0x14,0x94,0x0,0x51,0x45,0x14,0x0,0x51,0x45,0x25,0x0,0x14,0x51,0x45,0x0, 0x14,0x51,0x45,0x0,0x14,0xa0,0x13,0xd2,0x92,0x94,0x12,0x3a,0x50,0x2,0x51,0x45, 0x14,0x0,0x51,0x46,0x69,0x28,0x10,0x51,0x45,0x14,0x0,0x51,0x45,0x14,0x0,0x51, 0x45,0x14,0x0,0x52,0xe2,0x81,0x45,0x3,0xa,0x28,0xa2,0x81,0xa,0x28,0xa3,0x14, 0x50,0x30,0xa5,0xa4,0xa5,0x14,0x0,0x51,0x45,0x14,0xc0,0x29,0x69,0x29,0x45,0x20, 0xa,0x5a,0x4a,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0xb,0x9a,0x33, 0x49,0x8a,0x31,0x40,0xec,0x2e,0x68,0xa4,0xa2,0x81,0xb,0x46,0x69,0x28,0xa0,0x5, 0xcd,0x19,0xa4,0xa2,0x80,0x17,0x34,0x66,0x92,0x8a,0x0,0x5a,0x29,0x29,0x68,0x0, 0xa0,0xd1,0x45,0x0,0x25,0x25,0x2d,0x6,0x80,0x12,0x93,0x34,0xb4,0x94,0x0,0x51, 0x45,0x14,0x0,0x52,0x66,0x96,0x92,0x98,0x5,0x14,0x51,0x40,0x84,0xc5,0x14,0xa6, 0x92,0x80,0x3,0x49,0x4b,0x46,0x28,0x1,0x69,0x45,0x25,0x28,0xa4,0x30,0xa6,0x9e, 0xb4,0xea,0x46,0xa0,0x6,0xd1,0x45,0x14,0xc0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a, 0x0,0x51,0x8e,0xf5,0x6e,0xc3,0x51,0xb8,0xd3,0xa6,0xf3,0x21,0x6e,0x4f,0xde,0x7, 0xa1,0xaa,0x94,0x54,0xc9,0x29,0x2b,0x31,0xc6,0x6e,0xd,0x35,0xd0,0xed,0x6d,0x7c, 0x53,0x65,0x32,0x1,0x3e,0xe8,0x64,0xee,0x8,0x24,0x7e,0x75,0x6b,0xfb,0x7a,0xc4, 0x9c,0x2c,0xaa,0xc7,0xb0,0x7,0x9a,0xe0,0x3a,0x7f,0xfa,0xcd,0x28,0x38,0x39,0x1c, 0x1f,0x51,0x5c,0xcf,0x9,0x6,0xf4,0x3d,0x8,0xe6,0x75,0x6d,0xd0,0xf4,0x28,0x75, 0x6b,0x79,0x66,0x58,0xb9,0x56,0x6e,0x99,0xa9,0xe4,0x9c,0xa4,0x83,0x6b,0x2,0xd, 0x79,0xb3,0x12,0xc7,0x24,0x93,0xf5,0xab,0x56,0x9a,0x95,0xcd,0x98,0x2b,0x1b,0x2, 0xa7,0xb1,0x1d,0x2b,0x39,0x60,0xd6,0xf1,0x66,0xb0,0xcc,0xdf,0xdb,0x47,0x7e,0x97, 0x32,0xbb,0x91,0xb0,0xe3,0xd6,0xac,0x47,0x21,0x61,0xf3,0x29,0x15,0x81,0xa5,0x6b, 0xd1,0x5c,0x2a,0x42,0xe0,0xf9,0xbd,0xf0,0x38,0x15,0xbc,0xe,0x79,0x18,0xc7,0xb5, 0x71,0xd4,0x83,0x83,0xb3,0x47,0xa9,0x46,0xaa,0xa8,0xaf,0x16,0x49,0x9a,0x5a,0x68, 0xa3,0x3c,0xd6,0x46,0xfe,0x83,0xb3,0x49,0x91,0x55,0xae,0x6e,0xe1,0xb5,0x88,0xcb, 0x3c,0x81,0x10,0x77,0x26,0xb1,0x4f,0x8a,0xed,0x7c,0xe0,0x12,0x39,0xa,0x67,0x1b, 0xb1,0xd6,0xb4,0x8d,0x29,0xcb,0x64,0x65,0x52,0xbd,0x3a,0x6e,0xd2,0x7a,0x9d,0x25, 0x15,0x42,0xdb,0x52,0x8a,0xe1,0xca,0xaa,0xba,0xf1,0x9e,0x46,0x2a,0xc1,0xb8,0x41, 0xd4,0xe3,0xeb,0x52,0xe2,0xd6,0xe5,0xc6,0x71,0x6b,0x46,0x4f,0x45,0x46,0xb2,0x2b, 0x8c,0xa9,0xc8,0xa7,0x83,0x4a,0xc5,0xb,0x49,0x8a,0x5a,0xd,0x20,0x1a,0x45,0x26, 0x29,0x49,0xa6,0xee,0xa6,0x1,0x8a,0x31,0x48,0x58,0x52,0xe6,0x81,0x6,0x28,0xc5, 0x19,0xcd,0x40,0xf7,0x48,0x8f,0xb7,0x9c,0xd3,0x49,0x83,0x76,0xd5,0x96,0x0,0xa3, 0x15,0x2,0xdd,0x46,0xc7,0x1b,0x86,0x7e,0xb5,0x23,0xca,0x23,0x8c,0xb9,0xc,0x40, 0xfe,0xe8,0x27,0xf9,0x50,0xe2,0xfa,0x89,0x49,0x3d,0x89,0x93,0xbd,0x3e,0xa3,0x85, 0x83,0xa6,0xe0,0x18,0x3,0xfd,0xe1,0x8a,0x92,0xa4,0xa4,0x72,0xbe,0x33,0xff,0x0, 0x97,0x1f,0xfb,0x69,0xff,0x0,0xb2,0xd7,0x29,0x5d,0x5f,0x8c,0xff,0x0,0xe5,0xc7, 0xfe,0xda,0x7f,0xec,0xb5,0xca,0x57,0xaf,0x85,0xfe,0x12,0xfe,0xba,0x9f,0x37,0x98, 0x7f,0xbc,0xcb,0xe5,0xf9,0x20,0xa2,0x8a,0x2b,0x73,0x88,0x28,0xa2,0x8c,0xd0,0x1, 0x46,0x69,0x28,0xa6,0x0,0x68,0xa2,0x8a,0x0,0x28,0xcd,0x6,0x92,0x80,0xa,0x28, 0xa2,0x80,0xa,0x28,0xa4,0xa0,0x2,0x8a,0x28,0xa0,0x2,0x8a,0x29,0x28,0x0,0xa2, 0x8a,0x28,0x0,0xa2,0x8a,0x33,0x40,0x5,0x14,0x66,0x8c,0xd0,0x20,0xa0,0xd2,0x51, 0x40,0xb,0x9a,0x4a,0x28,0xa0,0x2,0x8a,0x28,0xa0,0x2,0x8a,0x28,0xa0,0x2,0x8a, 0x28,0xa0,0x61,0x4b,0x8a,0x28,0xa0,0x2,0x8a,0x28,0xc5,0x1,0x60,0xa2,0x94,0x52, 0xd0,0x16,0x12,0x8a,0x5c,0x52,0xe2,0x80,0xb0,0xda,0x5a,0x5a,0x4a,0x2,0xc1,0x45, 0x14,0x50,0x30,0xa5,0x14,0x82,0x96,0x81,0x5,0x14,0x51,0x40,0xc5,0xa2,0x81,0x4b, 0x8a,0x0,0x4a,0x75,0x36,0x9c,0x28,0x0,0xa2,0x8a,0x29,0x0,0x86,0x92,0x9c,0x69, 0x29,0x80,0x94,0x50,0x68,0xa0,0x41,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x4b, 0x40,0x14,0xec,0xe,0xe6,0x81,0x8d,0xa5,0x2,0x8a,0x5,0x20,0x10,0xd3,0x69,0xc7, 0xad,0x36,0x98,0x82,0x92,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x10,0x66,0x92,0x8a,0x29, 0x80,0x51,0x45,0x14,0x0,0x1a,0x4a,0x53,0x49,0x48,0x2,0x8a,0x28,0xa6,0x2,0x8a, 0x28,0x14,0x52,0x0,0xa0,0xd1,0x4a,0x6,0x68,0x18,0xda,0xd,0x38,0x8a,0x6d,0x0, 0x18,0xa2,0x8a,0x28,0x0,0xa3,0xa5,0x14,0x50,0x1,0x9a,0x28,0xc5,0x14,0x0,0x51, 0x45,0x14,0x5,0x82,0x8a,0x28,0xa0,0xb,0x16,0x33,0xb,0x7b,0xe8,0x64,0x3f,0x74, 0x30,0x7,0x3e,0x95,0xe9,0x28,0x46,0xd1,0x8e,0x9d,0x47,0xd2,0xbc,0xbd,0x70,0x58, 0x67,0x38,0xce,0x4e,0x3a,0xd7,0x5d,0x17,0x89,0x2d,0x20,0xb2,0x1b,0x4b,0xbb,0x1, 0x80,0x98,0xe6,0xb8,0xb1,0x74,0xa5,0x2b,0x34,0x7a,0x99,0x75,0x78,0xd3,0x52,0x53, 0x3a,0x42,0x6b,0x13,0x57,0xf1,0x4,0x36,0xa,0x62,0x84,0xac,0xb7,0x1f,0xdd,0xcf, 0x3,0xeb,0x58,0x17,0xbe,0x26,0xbe,0xb9,0x56,0x48,0xca,0xc2,0x8d,0xfd,0xce,0xbf, 0x9d,0x62,0x9e,0x49,0x24,0xf5,0xe4,0xd4,0xd2,0xc1,0xbb,0xde,0x66,0xb8,0x8c,0xcd, 0x35,0xcb,0x45,0x13,0xdd,0xde,0x4f,0x7d,0x31,0x96,0xe2,0x42,0xcd,0xed,0xd0,0x7d, 0x2a,0x10,0xc4,0x52,0x51,0x5d,0xc9,0x24,0xac,0x8f,0x1d,0xc9,0xb7,0x76,0xcb,0xe7, 0x55,0x9c,0x84,0x18,0x18,0x51,0x8e,0x3b,0xd3,0xd3,0x5a,0xba,0x3f,0x2c,0xaf,0x94, 0xc7,0xa5,0x66,0xd1,0x53,0xec,0xe3,0xd8,0xd1,0x56,0xa8,0xba,0x9d,0x25,0x86,0xb6, 0xf1,0xf3,0x3c,0xc0,0x22,0xf4,0x2,0xb6,0xac,0x75,0xeb,0x5b,0xb9,0x4,0x6a,0xdc, 0xfa,0xd7,0x3,0x4e,0x47,0x64,0x70,0xca,0x48,0x23,0x9a,0xc6,0x78,0x58,0xcb,0x53, 0xaa,0x96,0x3e,0xa4,0x6c,0x9e,0xc7,0xa9,0x86,0xc8,0xcd,0x35,0x9d,0x40,0xc9,0x20, 0xf,0x7a,0xe3,0x6c,0xbc,0x4f,0x22,0x85,0x59,0xbe,0x99,0xa3,0x54,0xd7,0x84,0xe8, 0x63,0x8d,0x8e,0xe1,0xc8,0x22,0xb8,0xbe,0xab,0x2b,0xd8,0xf5,0x3f,0xb4,0x29,0x38, 0x73,0x27,0xa9,0xd4,0xdd,0xdc,0xa4,0x36,0xef,0x26,0x73,0xb4,0x76,0xac,0xab,0x7d, 0x6d,0x6e,0x54,0x0,0x36,0x9e,0x9c,0x9a,0xe6,0x17,0x55,0xb9,0x54,0x65,0x66,0xde, 0x8,0xe8,0x7b,0x55,0x68,0xa6,0xf2,0xe5,0xf3,0x8,0xc9,0xec,0x33,0x8a,0xe9,0x8e, 0x12,0xc9,0xdc,0xe2,0xa9,0x99,0x5e,0x49,0xc7,0x63,0xd0,0x21,0x90,0x31,0xea,0x33, 0xdf,0x9a,0xb3,0xba,0xb8,0x48,0x75,0xab,0x88,0xa4,0x4,0xe3,0x6e,0x79,0xc7,0x5a, 0xea,0x2d,0x75,0x38,0x6e,0xa1,0x57,0xe,0x1,0x23,0xa6,0x79,0xae,0x7a,0x94,0x25, 0x3,0xb2,0x86,0x32,0x15,0x34,0xbe,0xa5,0xe9,0x66,0x8,0x87,0x9e,0x71,0x5c,0xce, 0xa3,0x73,0x71,0x14,0x9f,0x3b,0x7c,0x87,0xa1,0x15,0x36,0xb1,0x7e,0xd6,0xd2,0xab, 0x28,0xc8,0x3e,0xb5,0x87,0x73,0xa9,0x49,0x74,0x80,0x32,0x81,0xce,0x6b,0x6a,0x34, 0x5e,0xec,0xe6,0xc5,0xe2,0x63,0xf0,0xdc,0x57,0xba,0x90,0x1c,0xa4,0x84,0x1f,0xad, 0x68,0x5a,0x78,0x96,0xea,0x17,0x51,0x31,0xf,0x18,0xe3,0xa5,0x61,0x16,0x24,0x9a, 0x33,0x5d,0x8e,0x94,0x64,0xac,0xd1,0xe7,0x47,0x11,0x38,0x3b,0xa6,0x7a,0x2e,0x8b, 0x77,0x2d,0xec,0x72,0xcc,0xe6,0x32,0x84,0x8d,0x9b,0x3f,0x1e,0xb5,0xa9,0x5c,0x97, 0x82,0x49,0xc5,0xf0,0xcf,0x1f,0xbb,0xc0,0xec,0x3e,0xf5,0x75,0xb5,0xe4,0x57,0x87, 0x25,0x47,0x13,0xe8,0xb0,0x95,0x1d,0x4a,0x2a,0x4f,0xfa,0xd4,0xe5,0x7c,0x66,0x33, 0xf6,0x2f,0xfb,0x69,0xff,0x0,0xb2,0xd7,0x29,0x8a,0xed,0x7c,0x51,0x6e,0x66,0x8a, 0xdd,0x80,0xc8,0x4d,0xdf,0xae,0x2b,0x8e,0x92,0x32,0x8d,0xcf,0x15,0xe8,0x61,0x64, 0xbd,0x9a,0x47,0x8b,0x98,0x41,0xfb,0x79,0x4b,0xd3,0xf2,0x44,0x74,0x66,0x83,0x49, 0x5d,0x27,0x0,0x51,0x45,0x14,0x8,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x83,0x4c,0x4, 0xa2,0x8a,0x28,0x0,0xa2,0x8a,0xd,0x0,0x25,0x14,0x51,0x40,0x5,0x14,0x50,0x68, 0x1,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x83,0x40,0x1,0xa4,0xa2,0x8a,0x0,0x28,0xa2, 0x8a,0x0,0x28,0xa2,0x8a,0x4,0x14,0x51,0x45,0x0,0x14,0x51,0x45,0x3,0xa,0x5c, 0x51,0x45,0x1,0x60,0xc5,0x14,0x54,0xe6,0xda,0x44,0xb7,0x13,0xb0,0xc2,0x13,0x81, 0x43,0x76,0x1a,0x8d,0xc8,0x29,0x40,0xa5,0xc5,0x18,0xa0,0x2c,0x0,0x52,0x8a,0x0, 0xa7,0xa,0x57,0x29,0x21,0xb4,0xa2,0x97,0x14,0xb8,0xa5,0x71,0xd8,0x6e,0x28,0xc5, 0x3b,0x14,0xb8,0xa2,0xe1,0x61,0x98,0xa2,0x9f,0x8a,0x31,0x45,0xc5,0x61,0x94,0x94, 0xf2,0x29,0x8,0xa7,0x71,0x58,0x6e,0x28,0xa7,0x62,0x8c,0x51,0x71,0x58,0x40,0x28, 0x2,0x97,0x14,0xb8,0xa2,0xe3,0xb0,0x98,0xa5,0xa0,0xa,0x5c,0x51,0x70,0xb0,0x94, 0x52,0xe2,0x8c,0x50,0x16,0xc,0x52,0x1a,0x5a,0x28,0xb,0x9,0x41,0xa5,0xc5,0x26, 0x28,0xb,0x9,0x8a,0x31,0x4e,0x2,0x8e,0x94,0xa,0xc3,0x28,0xa5,0x34,0x84,0x50, 0x1,0x4a,0x5,0x20,0x14,0xe1,0x40,0x6,0x31,0x4b,0x9a,0x43,0x41,0xa0,0x3,0x34, 0x12,0x3b,0x1a,0x6e,0x69,0xd,0x30,0x14,0x9a,0x4e,0x94,0x94,0x53,0x10,0x51,0x45, 0x14,0x80,0x28,0x34,0x66,0x92,0x98,0x5,0x14,0x51,0x40,0x82,0x8a,0x28,0xa4,0x0, 0x69,0x29,0x69,0x29,0x8c,0x28,0xa2,0x8a,0x4,0x14,0xb4,0x94,0xb4,0x86,0x14,0x51, 0x45,0x0,0x4,0xd2,0x52,0x9a,0x4a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x60, 0x14,0xa1,0x73,0x49,0x4f,0x43,0xcd,0x21,0xa1,0xc,0x64,0xc,0xd3,0x6a,0x72,0x49, 0x1c,0xd4,0x4c,0x39,0xa1,0x3,0x43,0x68,0xa2,0x8a,0x62,0xa,0x32,0x7b,0x71,0xf4, 0xa2,0x92,0x80,0xa,0x28,0xa2,0x90,0x82,0x8a,0x28,0xa6,0x1,0x45,0x14,0x50,0x30, 0xa2,0x8a,0x29,0x8,0x33,0x8a,0x4e,0xd8,0xed,0x4b,0x8a,0x31,0x40,0x8,0x68,0xa5, 0xc5,0x14,0x0,0x80,0x9a,0x92,0x39,0x5e,0x33,0x94,0x62,0xa6,0x99,0x45,0xd,0x5c, 0x69,0xb5,0xb1,0x3c,0xd7,0x92,0xdc,0x46,0xa9,0x23,0x67,0x6f,0x7a,0x83,0xa5,0x14, 0x52,0x49,0x2d,0x10,0xe4,0xdc,0xb5,0x61,0x9a,0x28,0xc5,0x14,0xc4,0x75,0xbe,0x9, 0xff,0x0,0x97,0xef,0xfb,0x67,0xff,0x0,0xb3,0x57,0x5b,0x5c,0x97,0x82,0x7f,0xe5, 0xfb,0xfe,0xd9,0xff,0x0,0xec,0xd5,0xd6,0xd7,0x91,0x8a,0xfe,0x2b,0xfe,0xba,0x1f, 0x4d,0x97,0xff,0x0,0xbb,0x47,0xe7,0xf9,0xb2,0x9d,0xfa,0x79,0x8a,0x80,0x8c,0x8e, 0x6b,0x9a,0xd5,0x2c,0x51,0x62,0x72,0xa3,0x15,0xd5,0x5c,0x8c,0x85,0xfc,0x6b,0x2e, 0xfa,0x1f,0x32,0xdd,0x97,0xb9,0xa5,0x46,0x7c,0xac,0x78,0x9a,0x4a,0x69,0x9c,0x46, 0xdc,0x9c,0x74,0xa9,0x8d,0x94,0xbe,0x57,0x98,0xa3,0x2b,0x5b,0x29,0xa0,0xb3,0xf3, 0x92,0x33,0xeb,0x57,0xbf,0xb3,0x8c,0x16,0x85,0x14,0xee,0x38,0xc5,0x77,0xcb,0x10, 0xba,0x1e,0x4c,0x30,0x53,0x77,0xba,0x38,0xf2,0x29,0x31,0x5a,0xb7,0x1a,0x54,0x91, 0x8d,0xc1,0x6b,0x35,0x91,0x90,0x90,0x47,0x4a,0xd6,0x33,0x52,0x38,0xe7,0x4a,0x50, 0x76,0x68,0x65,0x14,0xec,0x7b,0x51,0x57,0x73,0x3b,0xd,0xa0,0x8a,0x76,0x33,0x49, 0x45,0xc2,0xc3,0x71,0x45,0x38,0xfd,0x28,0xfc,0x28,0xb8,0x58,0x6d,0x25,0x3a,0x8a, 0x2,0xc3,0x68,0xa7,0x62,0x90,0x8a,0x60,0x25,0x25,0x29,0xa4,0xa0,0x2,0x8a,0x28, 0x34,0x8,0x4a,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28, 0xa2,0x80,0xa,0x28,0xa2,0x80,0xb0,0xa2,0x8a,0x5,0x28,0xa0,0x76,0x0,0x29,0x40, 0xa3,0x14,0xa0,0x52,0xb8,0xec,0x2,0x9c,0x59,0x99,0x42,0xb3,0x12,0xa3,0xa0,0xcf, 0x4a,0x4a,0x70,0x14,0x9e,0xa5,0x2b,0xa1,0xa0,0x52,0xe2,0x9d,0x8a,0x5c,0x52,0xb8, 0xec,0x37,0x14,0xa1,0x69,0xdb,0x69,0xc0,0x54,0xb6,0x57,0x28,0xd0,0xb4,0x6d,0xa7, 0x81,0x4b,0x8a,0x2e,0x3e,0x52,0x3c,0x52,0xe2,0x9f,0xb6,0x8d,0xb4,0x5c,0x39,0x46, 0x62,0x8c,0x53,0xf6,0xd1,0x8a,0x2e,0x1c,0xa4,0x64,0x52,0x62,0xa4,0xc7,0xb5,0x18, 0xa7,0x71,0x72,0x91,0xed,0xa3,0x6d,0x49,0x8a,0x4c,0x51,0x71,0x72,0x8c,0xc5,0x2e, 0x29,0xd8,0xa5,0xc5,0x17,0xe,0x51,0x80,0x52,0xe2,0x9c,0x5,0x2e,0x29,0xdc,0x39, 0x46,0x62,0x8c,0x53,0xf1,0x46,0xda,0x57,0xe,0x51,0x98,0xa3,0x14,0xfc,0x51,0x8a, 0x2e,0x1c,0xa3,0x31,0x48,0x45,0x3f,0x14,0xbb,0x69,0xdc,0x2c,0x47,0x8a,0x69,0xa9, 0x4a,0xd3,0x4a,0xd0,0x98,0xac,0x47,0x49,0x4f,0xc5,0x34,0x8a,0xab,0x92,0xd0,0x94, 0x51,0x8a,0x28,0xb8,0xac,0x6,0x9b,0x9a,0x71,0xa6,0xd0,0x20,0xa0,0xd1,0x49,0x9a, 0x62,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xc,0x52,0x52,0xd0,0x68,0x1,0x28, 0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x62,0xa,0x28,0xa2,0x90,0xc4,0x34,0x52,0xd1,0x4c, 0x0,0x51,0x45,0x14,0x80,0x28,0xa2,0x83,0x40,0x9,0x45,0x14,0x50,0x1,0x45,0x14, 0x50,0x1,0x45,0x14,0x50,0x1,0x4a,0xe,0x29,0x28,0xa6,0x3,0x8b,0x9a,0x4c,0xd2, 0x51,0x48,0x77,0xa,0x28,0xa2,0x81,0x5,0x18,0xa2,0x8a,0x0,0x31,0x49,0x4b,0x49, 0x4c,0x2,0x97,0x14,0x94,0xb9,0xa4,0x2,0x62,0x8a,0x33,0x45,0x30,0xa,0x28,0xa2, 0x90,0x5,0x14,0x51,0x40,0x82,0x8a,0x28,0xa0,0x2,0x8a,0x28,0xcd,0x0,0x2,0x83, 0x46,0x68,0xa0,0x61,0x45,0x14,0x50,0x7,0x5b,0xe0,0x9f,0xf9,0x7e,0xff,0x0,0xb6, 0x7f,0xfb,0x35,0x75,0xb5,0xc9,0x78,0x27,0xfe,0x5f,0xbf,0xed,0x9f,0xfe,0xcd,0x5d, 0x6d,0x79,0x18,0xaf,0xe2,0xbf,0xeb,0xa1,0xf4,0xd9,0x7f,0xfb,0xb4,0x7e,0x7f,0x9b, 0x22,0x98,0x74,0xaa,0xec,0x99,0xab,0x32,0x76,0xa8,0x98,0x56,0x9,0x9d,0x6d,0x10, 0x60,0x53,0x4f,0x4a,0x90,0x8e,0xb4,0xcc,0x55,0x5c,0x86,0xb4,0x2b,0x4d,0xf,0x9c, 0xa5,0x49,0x23,0xe9,0x59,0x17,0x1a,0x42,0x9c,0x9e,0x4f,0xd6,0xba,0xd,0xa2,0x98, 0xea,0x8,0xc6,0x2b,0x58,0x54,0x71,0x7a,0x1c,0xf5,0x68,0x46,0xa2,0xd5,0x1c,0x74, 0xba,0x74,0x8a,0x70,0x39,0xa2,0x1d,0x32,0x69,0x9c,0xa8,0x18,0xc0,0xce,0x6b,0xa9, 0xfb,0x32,0x72,0x71,0xc9,0xa6,0xac,0x49,0x0,0x27,0xf5,0xad,0xfe,0xb2,0xf6,0x38, 0xbe,0xa3,0x1b,0xea,0x72,0xf3,0x69,0xd3,0x42,0xb9,0x23,0x35,0x51,0x97,0x69,0xc1, 0xae,0x9e,0xe2,0x78,0xc8,0x23,0x83,0x58,0x57,0x3e,0x5b,0x31,0xda,0x39,0xad,0xe9, 0xd4,0x72,0xdc,0xe5,0xad,0x42,0x31,0xf8,0x4a,0x46,0x8a,0x7e,0x29,0x31,0x5b,0x5c, 0xe5,0xb0,0xc2,0x28,0xc5,0x3f,0x14,0x98,0xa7,0x71,0x58,0x66,0x28,0x34,0xf3,0x48, 0x68,0xb8,0xac,0x32,0x90,0xd3,0x88,0xa4,0x22,0x9d,0xc4,0xd0,0xda,0xd,0x2d,0x14, 0x8,0x6d,0x14,0xa6,0x92,0x98,0x5,0x26,0x69,0x69,0x28,0x10,0xb4,0x50,0x28,0xa0, 0x2,0x8a,0x29,0x45,0x3,0x0,0x29,0x40,0xa2,0x94,0x52,0x1,0x29,0x71,0x4b,0x4e, 0xc5,0xd,0x96,0x90,0x80,0x53,0x80,0xa5,0x2,0x9c,0x5,0x43,0x65,0x58,0x6e,0x29, 0xc0,0x52,0xe2,0x9c,0x5,0x4d,0xca,0x51,0x1b,0xb6,0x9d,0xb6,0x9c,0x5,0x38,0xa, 0x1b,0x29,0x44,0x60,0x14,0xb8,0xa7,0x85,0xa7,0x6d,0xa8,0xb9,0xa2,0x88,0xc0,0xb4, 0xbb,0x69,0xe0,0x7b,0x52,0xed,0xf6,0xa2,0xe3,0xe5,0x23,0xc7,0xb5,0x18,0xf6,0xa9, 0x76,0xd1,0xb6,0x97,0x30,0x72,0x91,0x63,0xda,0x8d,0xbe,0xd5,0x2e,0xda,0x4d,0xbe, 0xd4,0xee,0x1c,0xa4,0x7b,0x69,0x36,0xd4,0xb8,0xf6,0xa0,0x8f,0x6a,0x2e,0x1c,0xa4, 0x25,0x68,0xc5,0x4a,0x47,0xb5,0x26,0x3d,0xa9,0xdc,0x97,0x12,0x3d,0xb4,0x6d,0xa9, 0x31,0xed,0x46,0x3d,0xa8,0xb8,0xb9,0x48,0xf1,0x4b,0x8a,0x7e,0xda,0x5d,0xbe,0xd4, 0x73,0x7,0x29,0x1e,0x28,0xc5,0x49,0x8f,0x6a,0x36,0xfb,0x51,0x70,0xe5,0x23,0xc5, 0x1b,0x6a,0x5d,0xb4,0x6d,0xc5,0x17,0x1f,0x29,0x16,0xda,0x31,0x52,0x11,0x46,0xda, 0x77,0x17,0x29,0x19,0x14,0xc2,0x2a,0x62,0x29,0x8c,0x29,0xa6,0x4b,0x89,0x9,0x14, 0xda,0x94,0x8a,0x6e,0x2a,0xae,0x43,0x88,0xc3,0x49,0x4f,0xc5,0x21,0x14,0xd1,0x2d, 0xc,0x22,0x93,0x14,0xea,0x4a,0xa2,0x5a,0x1b,0x8a,0x6e,0x31,0x4e,0xa2,0x82,0x6c, 0x36,0x8a,0x52,0x29,0x29,0x80,0x51,0x45,0x14,0x8,0x29,0x29,0x4d,0x25,0x0,0x14, 0x51,0x45,0x0,0x14,0x51,0x45,0x30,0xa,0x28,0xa2,0x80,0xc,0xd1,0x46,0x28,0xa0, 0x2,0x8a,0x28,0xa0,0x2,0x83,0x46,0x68,0xeb,0x48,0x4,0xa2,0x8a,0x28,0x10,0x51, 0x45,0x14,0x0,0x51,0x45,0x14,0xc,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28, 0xa2,0x8a,0x0,0x28,0xcd,0x6,0x92,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80, 0xa,0x28,0xa2,0x80,0xa,0x28,0xa0,0xd0,0x20,0xcd,0x1d,0x69,0x28,0xa0,0x2,0x8a, 0x28,0xa0,0x2,0x8a,0x28,0xa0,0x2,0x94,0x52,0x52,0xe6,0x81,0x85,0x14,0x51,0x40, 0x1d,0x6f,0x82,0x7f,0xe5,0xfb,0xfe,0xd9,0xff,0x0,0xec,0xd5,0xd6,0xd7,0x25,0xe0, 0x9f,0xf9,0x7e,0xff,0x0,0xb6,0x7f,0xfb,0x35,0x75,0xb5,0xe4,0x62,0xbf,0x8a,0xff, 0x0,0xae,0x87,0xd3,0x65,0xff,0x0,0xee,0xd1,0xf9,0xfe,0x6c,0x8e,0x4e,0xd5,0x1d, 0x3a,0x73,0x8d,0xb5,0x16,0xea,0xe7,0x3b,0x2e,0x38,0x81,0x50,0xb0,0xc5,0x49,0xba, 0x98,0xc6,0x9a,0x25,0x8d,0xa6,0x1a,0x77,0x5a,0x8b,0x77,0x24,0x77,0xaa,0x21,0x8a, 0x6b,0x3b,0x50,0xb8,0xd8,0x85,0x47,0x5a,0xd1,0x63,0x81,0xef,0x59,0x37,0x10,0x3c, 0xef,0x91,0xfc,0x5d,0xab,0x48,0x5a,0xf7,0x66,0x15,0xf9,0x94,0x7d,0xd3,0xd,0xe5, 0x66,0x3c,0x93,0x50,0xb7,0x35,0xa5,0x79,0xa5,0xcb,0x69,0x18,0x76,0x20,0xfa,0xf3, 0x54,0xa,0xd7,0x7c,0x24,0x9a,0xd0,0xf1,0xea,0x42,0x51,0x76,0x91,0x1e,0x29,0x8, 0xa9,0x31,0x49,0x8a,0xab,0x99,0xf2,0xb2,0x3c,0x50,0x69,0xfb,0x68,0x2b,0x4e,0xe2, 0xe5,0x23,0x34,0x86,0x9e,0x56,0x93,0x14,0xd3,0x13,0x43,0xd,0x34,0x8a,0x90,0x8a, 0x69,0xa6,0x99,0x2d,0x11,0x9a,0x31,0x4e,0xa4,0x35,0x57,0x21,0xa1,0x86,0x90,0xd3, 0x88,0xa4,0xa6,0x2b,0xd,0xa2,0x94,0x8a,0x31,0x4c,0x40,0x28,0xa0,0xa,0x70,0x14, 0xae,0x3,0x69,0xd4,0xf1,0x19,0x23,0x38,0xa5,0xd9,0x4a,0xe8,0xae,0x56,0x30,0x53, 0xb1,0x40,0x14,0xec,0x51,0x71,0xa4,0x0,0x53,0x80,0xa0,0xa,0x70,0x15,0xd,0x96, 0x90,0x1,0x4e,0x2,0x94,0xa,0x70,0x15,0x2d,0x96,0xa2,0x20,0x14,0xe0,0x29,0xc0, 0x53,0xc2,0xd4,0x5c,0xd1,0x44,0x68,0x5a,0x70,0x5a,0x78,0x5a,0x70,0x5a,0x97,0x23, 0x45,0x11,0x81,0x69,0x76,0xd4,0x81,0x69,0xc1,0x69,0x73,0x14,0xa2,0x46,0x12,0x94, 0x25,0x4b,0xb6,0x94,0x25,0x2e,0x62,0xf9,0x8,0x76,0x51,0xb2,0xa6,0xd9,0x46,0xca, 0x5c,0xc1,0xc8,0x43,0xb6,0x90,0xad,0x4e,0x52,0x90,0xa5,0x3e,0x60,0xe4,0x21,0xdb, 0x48,0x56,0xa6,0xdb,0x48,0x56,0x8e,0x61,0x38,0x10,0xed,0xa3,0x65,0x4b,0xb7,0xda, 0x8d,0xbe,0xd4,0xf9,0x89,0xe5,0x22,0xd9,0x46,0xda,0x9b,0x6d,0x26,0xda,0x39,0x85, 0xca,0x44,0x16,0x97,0x6d,0x48,0x16,0x97,0x6d,0x17,0x1f,0x29,0x16,0xda,0x2,0xd4, 0xbb,0x7d,0xa8,0xb,0x45,0xc7,0xca,0x47,0xb6,0x82,0xb5,0x36,0xdc,0x9a,0xc,0x74, 0x73,0x7,0x21,0x6,0xda,0x36,0xf3,0x53,0x6c,0xa4,0xdb,0xcd,0x3e,0x61,0x38,0x90, 0x32,0xd4,0x4c,0x2a,0xdb,0x2d,0x42,0x56,0x9a,0x91,0xe,0x24,0x4,0x53,0x71,0x53, 0x11,0x4d,0x22,0xae,0xe6,0x4e,0x24,0x58,0xa6,0x91,0x52,0xed,0xa6,0x91,0x54,0x99, 0x2d,0x11,0x11,0x4d,0xa9,0x48,0xa6,0x11,0x55,0x72,0x1a,0x23,0x23,0x34,0x94,0xfa, 0x69,0xaa,0x21,0xa1,0x29,0x8,0xa5,0xa4,0x34,0xc8,0x12,0x8c,0xd1,0x49,0x4c,0x41, 0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1, 0x45,0x14,0x53,0x0,0xa2,0x8a,0x28,0x0,0xc5,0x14,0x51,0x48,0x2,0x92,0x96,0x8a, 0x0,0x4a,0x28,0xa2,0x81,0x5,0x14,0x51,0x40,0xc2,0x8a,0x28,0xa0,0x2,0x8a,0x28, 0xa0,0x2,0x8a,0x33,0x49,0x40,0x82,0x8a,0x28,0xa0,0x2,0x8a,0x28,0xa0,0x2,0x8a, 0x28,0xa0,0x2,0x8a,0x28,0xa0,0x61,0x45,0x14,0x50,0x1,0x8a,0x4a,0x5a,0xd,0x0, 0x25,0x14,0xa2,0x8a,0x0,0x4a,0x28,0xa2,0x81,0x5,0x2e,0x28,0x14,0x50,0x30,0xa2, 0x8a,0x28,0x3,0xad,0xf0,0x4f,0xfc,0xbf,0x7f,0xdb,0x3f,0xfd,0x9a,0xba,0xda,0xe4, 0xbc,0x13,0xff,0x0,0x2f,0xdf,0xf6,0xcf,0xff,0x0,0x66,0xae,0xb6,0xbc,0x8c,0x57, 0xf1,0x5f,0xf5,0xd0,0xfa,0x6c,0xbf,0xfd,0xda,0x3f,0x3f,0xcd,0x95,0xee,0x7f,0x87, 0xf1,0xa8,0x2a,0x7b,0x9f,0xe1,0xfc,0x6a,0xb9,0xae,0x73,0xad,0xa1,0x41,0xa4,0x27, 0x3c,0xa,0x4a,0x4c,0x9a,0x62,0x23,0x70,0x7d,0x79,0x1d,0x2a,0xbe,0xe2,0x1c,0x72, 0x1,0x6,0xae,0x6d,0x24,0xf5,0xa8,0x5e,0xdb,0x2d,0xb8,0xe,0x45,0x34,0xd1,0x9c, 0xa3,0x27,0xb1,0x11,0x94,0x39,0x1f,0x36,0x3a,0xf3,0x56,0x22,0x82,0x34,0x1b,0x89, 0xdc,0xc0,0x75,0xa8,0x1a,0xc4,0x95,0xf9,0x49,0xc9,0xf5,0xa9,0xad,0x60,0x68,0x14, 0x86,0x3c,0x11,0xc0,0xaa,0x95,0xad,0xa0,0xa3,0x19,0x5f,0x54,0x67,0x6a,0x4d,0xf6, 0x85,0x2a,0x0,0xc0,0xe7,0x9a,0xc1,0x64,0x3b,0xba,0x57,0x5f,0x35,0xac,0x6e,0xa7, 0x6a,0x28,0x63,0xdf,0x15,0x8b,0x79,0x6c,0xb0,0x3e,0x2,0xf6,0xad,0xe8,0xd4,0x4b, 0x43,0x93,0x15,0x42,0x4f,0xde,0x66,0x41,0x5a,0x4c,0x54,0xee,0xbc,0xd3,0x36,0xd7, 0x4a,0x91,0xc0,0xe2,0x44,0x45,0x21,0x15,0x31,0x5a,0x69,0x1e,0xd4,0xee,0x4f,0x29, 0x16,0x29,0xa4,0x54,0xc5,0x69,0xb8,0xa6,0xa4,0x4b,0x89,0xe,0x29,0x8,0xa9,0x48, 0xa6,0x95,0xaa,0x4c,0x87,0x12,0x22,0x29,0xb8,0xa9,0x8,0xa6,0x91,0x55,0x72,0x5a, 0x23,0x34,0xd2,0x2a,0x42,0x29,0xb8,0xab,0xb9,0xd,0xc,0xc5,0x28,0xa7,0x63,0x34, 0x63,0xf3,0xfa,0x51,0x72,0x6c,0x49,0x6f,0x3,0x4d,0x26,0xd1,0x5a,0xf6,0xda,0x42, 0xb9,0x4,0x8a,0x5d,0x22,0xc5,0x9e,0x4c,0x80,0x41,0xc7,0x5e,0xb5,0xd4,0x25,0xaf, 0x96,0xa0,0x63,0xa0,0xae,0x3a,0xd5,0xec,0xec,0x8f,0x57,0xb,0x84,0xe6,0x57,0x68, 0xc3,0x7d,0x1f,0x2b,0x85,0x2,0xa8,0xcf,0xa7,0x8,0x32,0x8,0xe6,0xba,0xe1,0x1e, 0x7a,0x8a,0xab,0x73,0x61,0xe7,0x36,0x71,0x58,0x42,0xbb,0xbe,0xa7,0x4d,0x4c,0x24, 0x5a,0xd1,0x1c,0x69,0xb7,0x19,0x23,0x6,0xa1,0xdb,0x8e,0x31,0x5d,0x1d,0xde,0x9f, 0x22,0xe7,0x6a,0xf4,0xac,0x39,0x63,0x2b,0x23,0x3,0xeb,0x5d,0x70,0xa8,0xa5,0xb1, 0xe7,0x55,0xa0,0xe1,0xb9,0x10,0x14,0xe0,0x29,0x40,0xa9,0x14,0x53,0x6c,0xcd,0x44, 0x68,0x15,0x22,0x8a,0x50,0xb5,0x22,0xad,0x4b,0x66,0xd1,0x88,0xd0,0xb4,0xf0,0xb4, 0xe5,0x5a,0x90,0x2d,0x43,0x91,0xa2,0x80,0xc0,0xb4,0xe0,0xb5,0x20,0x5a,0x70,0x5a, 0x87,0x23,0x55,0x1,0x81,0x69,0xc1,0x69,0xe1,0x69,0xe1,0x6a,0x1c,0x8b,0x50,0x23, 0xdb,0x4a,0x12,0xa4,0xdb,0x4b,0xb7,0x8e,0x94,0xb9,0x8b,0x50,0x22,0xd9,0x46,0xca, 0x97,0x6f,0xb5,0x2e,0xdf,0x6a,0x5c,0xc8,0x39,0x48,0x4a,0x52,0x14,0xa9,0xb6,0xd2, 0x15,0xa7,0xcc,0x1c,0x84,0x25,0x29,0xa5,0x6a,0x7d,0xbe,0xd4,0x85,0x69,0xf3,0x22, 0x5c,0x8,0x36,0xd1,0xb6,0xa5,0xdb,0xed,0x46,0x3d,0xa9,0xf3,0x13,0xc8,0x45,0xb7, 0xda,0x8c,0x7b,0x54,0xbb,0x73,0xda,0x93,0x6f,0xb5,0x3e,0x61,0x72,0x11,0xe3,0xda, 0x8d,0xb5,0x26,0xdf,0x6a,0x31,0xed,0x47,0x30,0x72,0xc,0xdb,0x4a,0x12,0xa4,0xb, 0x4b,0xb6,0x8e,0x61,0xa8,0xc,0x9,0xeb,0x4b,0xb3,0x3d,0xaa,0x40,0x29,0xe0,0x74, 0xa4,0xe4,0x52,0x81,0x7,0x95,0x8e,0xb4,0xc7,0x5c,0x1a,0xb8,0xf8,0x2b,0x81,0x50, 0x32,0xd3,0x52,0x14,0xa0,0x41,0xb7,0x20,0xd4,0x25,0x79,0xab,0x24,0x62,0xa3,0x2b, 0x56,0xa4,0x64,0xe0,0x57,0x2b,0x4c,0x2b,0x56,0xa,0xd3,0xa,0xd5,0xa9,0x19,0x38, 0x90,0x11,0x4c,0x22,0xa7,0x22,0x9a,0x45,0x52,0x66,0x4e,0x24,0x4,0x53,0x8,0xa9, 0x98,0x53,0x18,0x55,0xa6,0x66,0xe2,0x42,0x45,0x34,0xd4,0xa4,0x54,0x64,0x55,0xa6, 0x66,0xd0,0xca,0x4a,0x76,0x29,0x2a,0xae,0x66,0xd0,0xd2,0x29,0xb4,0xe3,0x48,0x45, 0x51,0x22,0x51,0x45,0x14,0x8,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2, 0x97,0x14,0x0,0x94,0x52,0xd1,0x40,0x9,0x45,0x29,0xa4,0xa0,0x61,0x45,0x18,0xa5, 0xc5,0x0,0x25,0x14,0x62,0x8a,0x0,0x29,0x29,0x68,0xa0,0x42,0x51,0x45,0x14,0x0, 0x51,0x45,0x14,0x0,0x50,0x68,0xa0,0xd0,0x2,0x51,0x45,0x14,0x8,0x28,0xa5,0xc5, 0x14,0xc,0x4a,0x29,0x68,0x34,0x0,0x94,0x52,0xe2,0x8c,0x50,0x2,0x51,0x45,0x14, 0x0,0x51,0x45,0x14,0x0,0x51,0x45,0x14,0x0,0x74,0xa3,0x34,0x1a,0x4a,0x0,0x28, 0xa2,0x96,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0x3a,0xdf,0x4,0xff,0x0, 0xcb,0xf7,0xfd,0xb3,0xff,0x0,0xd9,0xab,0xad,0xae,0x4b,0xc1,0x3f,0xf2,0xfd,0xff, 0x0,0x6c,0xff,0x0,0xf6,0x6a,0xeb,0x6b,0xc8,0xc5,0x7f,0x15,0xff,0x0,0x5d,0xf, 0xa6,0xcb,0xff,0x0,0xdd,0xa3,0xf3,0xfc,0xd9,0x5,0xcf,0xf0,0xfe,0x35,0x58,0xd5, 0x8b,0x9f,0xe1,0xfc,0x6a,0xc,0xd7,0x33,0x3b,0x6c,0x36,0x93,0x14,0xea,0x29,0x5c, 0x56,0xc,0x51,0x4b,0x49,0x45,0xc7,0x61,0xc2,0x9d,0x9c,0xd3,0x1,0xa5,0xcd,0x3, 0x14,0xd5,0x6b,0x9b,0x55,0x99,0x8,0xc7,0x35,0x3e,0x68,0xcd,0x38,0xbb,0x3b,0x89, 0xc7,0x99,0x59,0x9c,0xcd,0xcd,0x9b,0xc4,0xc7,0xe5,0xe2,0xaa,0x95,0x20,0xf4,0xae, 0xae,0x58,0x56,0x55,0x20,0x8a,0xc6,0xbb,0xb5,0x31,0xb1,0x20,0x71,0x5d,0x50,0xab, 0x7d,0x19,0xe7,0x56,0xc3,0x35,0xaa,0x33,0x8,0xf6,0xa4,0xdb,0x53,0x94,0x39,0xa9, 0xa0,0xb5,0x69,0x58,0x60,0x56,0xdc,0xe9,0x1c,0xca,0x9b,0x93,0xb2,0x28,0x94,0x3e, 0x94,0xd2,0xb5,0xd1,0x47,0xa6,0x2e,0xde,0x71,0x9a,0x86,0xe3,0x4b,0x3b,0x49,0x51, 0x52,0xab,0x2b,0xd8,0xb7,0x84,0x95,0xae,0x60,0x15,0xa6,0x11,0x5a,0xf,0x63,0x28, 0xfe,0x13,0x55,0xa4,0x89,0x90,0x90,0x56,0xb6,0x8c,0xd3,0xea,0x73,0x4a,0x9b,0x5b, 0x95,0x48,0xa6,0xed,0xa9,0xd9,0x69,0x85,0x6a,0xd3,0x32,0x71,0x21,0x2b,0x48,0x10, 0x93,0x80,0x33,0x53,0x8,0xcb,0x1c,0x1,0xcd,0x6d,0xe9,0x5a,0x49,0x93,0x6b,0xba, 0x9e,0x3a,0xd1,0x2a,0x8a,0x2a,0xec,0x29,0xd0,0x95,0x47,0x64,0x63,0x43,0x63,0x24, 0xae,0x17,0x7,0x9a,0xd5,0xb6,0xd0,0x24,0xf3,0x57,0x90,0x54,0x8e,0x4d,0x74,0x90, 0x59,0xc7,0x17,0x21,0x47,0xe5,0x56,0x55,0x42,0x8e,0x0,0x15,0xc7,0x3c,0x53,0x7a, 0x23,0xd2,0xa5,0x80,0x8c,0x7e,0x22,0x1b,0x3b,0x55,0xb5,0x88,0x28,0x3,0x23,0xbe, 0x2a,0xc1,0xe6,0x8a,0x2b,0x95,0xbb,0xea,0xcf,0x46,0x31,0x51,0x56,0x42,0x1,0x41, 0x19,0xa5,0xcd,0x26,0x68,0xb8,0xec,0x43,0x3c,0x41,0xd4,0x8c,0x73,0x5c,0x8e,0xa3, 0x1,0x8a,0xe1,0x86,0x3b,0xd7,0x66,0x6a,0x8d,0xed,0x8c,0x77,0x2a,0x4e,0x3e,0x6a, 0xd6,0x8d,0x4e,0x56,0x73,0xe2,0x68,0x7b,0x48,0xe8,0x71,0xe1,0x69,0xea,0xb5,0x6a, 0xe2,0xcd,0xe0,0x72,0x8,0xe2,0xa2,0x55,0xe6,0xbb,0x39,0x93,0x57,0x3c,0xaf,0x66, 0xe3,0xa3,0x10,0x2d,0x3c,0xa,0x1,0x5f,0xf2,0x29,0x1d,0xca,0x81,0x80,0x7f,0x2a, 0xca,0x55,0x52,0x36,0x85,0x26,0xf4,0x25,0x55,0xa9,0x2,0xd5,0x55,0xb8,0x7c,0x1f, 0xdc,0xc8,0x71,0xec,0x7,0xf5,0xa9,0x96,0xec,0x1c,0xe2,0x19,0x4e,0x3d,0x0,0x3f, 0xc8,0xd6,0x2e,0xb2,0x67,0x42,0xa1,0x24,0x4e,0x16,0x9e,0x16,0xa0,0x37,0xb6,0xf1, 0xae,0xe9,0x7c,0xd8,0xc7,0xab,0xc4,0xc0,0x7e,0x78,0xc5,0x4d,0x1d,0xcd,0xbc,0xa7, 0x11,0xcf,0xb,0x9f,0x45,0x90,0x1f,0xeb,0x4b,0xda,0xc7,0xa9,0x6a,0x93,0x1e,0x16, 0x9c,0x12,0x9e,0x16,0x9e,0x16,0x87,0x22,0xb9,0xa,0x97,0x13,0x8b,0x7d,0xb9,0x5c, 0x96,0xce,0x5,0x56,0x37,0xee,0x4e,0x16,0x16,0x39,0xf4,0x5c,0xff,0x0,0x85,0x58, 0xd4,0x2,0x80,0xbb,0x9b,0x6e,0x55,0x86,0x7d,0x3a,0x55,0x55,0x92,0x34,0x8d,0x55, 0xa6,0x43,0x81,0xd4,0xb5,0x72,0x54,0xa9,0x25,0x2b,0x1b,0xc2,0x9a,0x68,0xd,0xd5, 0xd6,0xf5,0xdb,0x6,0x72,0x7a,0x16,0x55,0xef,0xf5,0xab,0x5f,0x68,0x75,0xb,0xe6, 0xda,0xcc,0xa4,0xf5,0x2a,0x3,0x1,0xf9,0x1a,0xa6,0x6e,0xed,0xd0,0xa3,0x79,0xe9, 0xc3,0xae,0x71,0xcf,0x7f,0x6f,0xeb,0x5a,0x2d,0x3d,0xb5,0xcc,0x6d,0x12,0x5c,0xc4, 0x59,0xd4,0x81,0x86,0x4,0x8c,0x8f,0x4a,0x50,0x9b,0xbe,0xe3,0x70,0x49,0xa5,0x62, 0x27,0xbb,0x81,0x14,0x33,0x33,0x28,0x3c,0xc,0xa3,0x7f,0x85,0x47,0xf6,0xfb,0x53, 0xd6,0x50,0x3e,0xb9,0x15,0x7a,0x38,0xbc,0xa8,0x52,0x32,0x77,0x6c,0x50,0x39,0xfc, 0xaa,0x8e,0x9d,0x67,0x73,0x6e,0x8e,0xb7,0xe,0x1f,0x2e,0xc4,0x7d,0x37,0x1c,0x7e, 0x98,0xab,0x73,0x97,0x71,0x72,0x45,0x96,0x22,0xdb,0x2a,0xee,0x47,0x4,0x7a,0xa9, 0xa7,0x15,0x3e,0xa3,0xf2,0xa9,0x10,0x60,0xb0,0xed,0xdb,0x0,0xd3,0x48,0xef,0x9f, 0xd6,0xb6,0x8c,0xf4,0xd4,0xc9,0xc0,0x8f,0x69,0xf5,0xfd,0x29,0x76,0xd3,0xf1,0x8c, 0x7b,0xd1,0x8e,0x8,0xe9,0xdb,0xa6,0x6a,0xb9,0xc9,0xe4,0xb9,0x42,0xea,0xec,0x5b, 0xca,0xa9,0x98,0xb9,0x19,0xf9,0xe4,0xdb,0xfd,0x29,0x60,0xb9,0x13,0x36,0x3f,0x75, 0x9c,0x67,0xe4,0x93,0x77,0xf4,0xac,0x3b,0xa9,0xae,0x5e,0xfa,0x79,0xa,0x4e,0x41, 0x6d,0xa9,0x88,0x98,0x8d,0xa3,0xa7,0x6f,0xad,0x4b,0x14,0xb2,0xb,0x88,0x4f,0xce, 0xe,0x55,0x4e,0x54,0xf4,0x27,0x9a,0x87,0x36,0xb5,0xb9,0xce,0xa7,0x79,0x72,0xd8, 0xdf,0xc8,0xa8,0xae,0x27,0x58,0x13,0x76,0xdd,0xd9,0x38,0x1c,0x81,0xcf,0xe3,0x53, 0xc5,0x18,0x33,0x33,0xf,0xba,0x40,0xc7,0xb7,0x51,0x58,0x3a,0xb5,0xcf,0x95,0x77, 0x14,0x2d,0x22,0xaa,0x24,0x61,0xb9,0x3c,0x16,0x24,0xe7,0xeb,0x8c,0xf,0xce,0x9f, 0xb4,0x6d,0x68,0x6d,0x28,0xf2,0x9a,0x70,0x5f,0x2c,0xae,0x14,0xc4,0xc3,0x71,0xc0, 0x21,0x94,0xe7,0xf5,0xab,0x4a,0xea,0x55,0x98,0x7d,0xd1,0xde,0xb9,0x9f,0xb5,0x2c, 0x6a,0x8d,0x13,0xa6,0xe0,0x32,0x36,0xe3,0xad,0x6d,0xcc,0x1,0xd3,0xd2,0x20,0xd8, 0x2c,0x1,0x38,0x3f,0x8d,0x4f,0xb4,0x92,0x8,0x5a,0x5d,0xb,0xde,0xd8,0xa4,0x3f, 0x28,0x39,0x38,0x1e,0xa6,0xa8,0x5d,0xa7,0xd9,0x62,0x59,0x4,0xd3,0x90,0x4e,0x8, 0xf,0xed,0xf4,0xf6,0xa9,0x3c,0x96,0x6b,0x4d,0xfe,0x74,0x84,0xb2,0x83,0x82,0x73, 0x8c,0xd1,0xed,0xdf,0x63,0x47,0x49,0x77,0x2c,0x79,0xb1,0x7f,0xcf,0x45,0xfc,0xe9, 0x37,0xab,0xf4,0x20,0xd6,0x6d,0xb4,0x5e,0x6c,0x65,0x98,0xbf,0x7,0x18,0xdc,0x47, 0xf9,0xeb,0x56,0xa2,0xb4,0x42,0x8c,0x3,0x48,0xbc,0xf5,0x57,0x6a,0x23,0x59,0xdc, 0x25,0x49,0x77,0x26,0x23,0xd8,0xfe,0x54,0xd2,0xb9,0xa6,0xbc,0x52,0x42,0xa5,0xc4, 0xe7,0x6a,0x8c,0x9d,0xe8,0xf,0xf8,0x53,0xad,0xcb,0x49,0x16,0xf3,0xb4,0x83,0xc8, 0x23,0xbd,0x6d,0x1a,0xb7,0x76,0x31,0x95,0x2b,0x2b,0x8d,0x2b,0x51,0x95,0xab,0x25, 0x69,0x85,0x6b,0x75,0x23,0x9d,0xc0,0xac,0x56,0x98,0x56,0xac,0x15,0xa8,0xc8,0xab, 0x52,0x32,0x71,0x2b,0xb0,0xcd,0x46,0x57,0x35,0x60,0x8a,0x8d,0x85,0x68,0xa4,0x63, 0x28,0x95,0xc8,0xa6,0x30,0xa9,0x88,0xa6,0x30,0xad,0x13,0x31,0x92,0x21,0x34,0xd3, 0x52,0x11,0x4c,0x35,0x69,0x98,0xb4,0x46,0x69,0xd,0x38,0x8a,0x4a,0xb2,0x18,0xda, 0x29,0x48,0xa4,0xa6,0x20,0xa2,0x8a,0x28,0x10,0x51,0x8a,0x31,0x4b,0x40,0xc2,0x8a, 0x50,0x28,0x2,0x80,0xb0,0x98,0xa5,0xc5,0x2d,0x2d,0x2b,0x85,0x86,0xe2,0x8c,0x53, 0xb1,0x46,0x28,0xb8,0xec,0x26,0x28,0xa5,0xc5,0x18,0xa2,0xe1,0x61,0xa6,0x92,0x9f, 0x8a,0x42,0x28,0xb8,0x58,0x69,0x14,0x94,0xfc,0x52,0x51,0x71,0x58,0x69,0xa4,0xa7, 0x1a,0x42,0x28,0x1,0x28,0xa5,0xc5,0x25,0x30,0xa,0x28,0xa2,0x81,0x6,0x28,0xa2, 0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x83,0x40,0x9,0x45, 0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x46,0x28,0xa2,0x80,0xa, 0x28,0xa2,0x80,0xa,0x28,0xa2,0x81,0x85,0x14,0x51,0x40,0x1d,0x6f,0x82,0x7f,0xe5, 0xfb,0xfe,0xd9,0xff,0x0,0xec,0xd5,0xd6,0xd7,0x25,0xe0,0x9f,0xf9,0x7e,0xff,0x0, 0xb6,0x7f,0xfb,0x35,0x75,0xb5,0xe4,0x62,0xbf,0x8a,0xff,0x0,0xae,0x87,0xd2,0xe5, 0xff,0x0,0xee,0xd1,0xf9,0xfe,0x6c,0xad,0x75,0xfc,0x1f,0x8d,0x57,0xa7,0x6a,0x77, 0x26,0xd8,0x47,0x88,0x9a,0x4c,0xe7,0x85,0x23,0xda,0xb3,0x7f,0xb5,0x24,0xff,0x0, 0xa0,0x75,0xd7,0xe0,0x17,0xfc,0x6b,0x86,0x73,0x49,0xd8,0xef,0x4b,0x43,0x42,0x83, 0x54,0x3f,0xb5,0x71,0xd6,0xc2,0xf0,0x7f,0xdb,0x31,0xfe,0x34,0x7f,0x6b,0x2f,0x7b, 0x2b,0xc1,0xff,0x0,0x6c,0xbf,0xfa,0xf5,0x3e,0xd1,0xe,0xc5,0xfa,0x5e,0x9d,0x4d, 0x67,0xff,0x0,0x6b,0xc4,0x3a,0xdb,0x5d,0xff,0x0,0xdf,0x93,0x4b,0xfd,0xb5,0x6a, 0x7,0x31,0xdc,0x7f,0xdf,0xa3,0x47,0xb4,0x8f,0x50,0xb1,0x7c,0x11,0xea,0x29,0x73, 0xf8,0xd6,0x77,0xf6,0xf5,0x88,0xea,0x66,0x1f,0x58,0x5b,0xfc,0x29,0xdf,0xdb,0x96, 0x7,0x1f,0x3c,0xa3,0xeb,0x3,0xff,0x0,0x85,0x3f,0x69,0x1e,0xe1,0x62,0xf1,0xa4, 0xcd,0x54,0x1a,0xbe,0x9e,0xdf,0xf2,0xdf,0x1f,0x58,0xdb,0xfc,0x29,0x46,0xab,0xa7, 0x9f,0xf9,0x79,0x8f,0xf1,0xc8,0xa3,0xda,0x20,0xb1,0x6b,0xad,0x43,0x73,0x17,0x99, 0x11,0x18,0xe6,0x9a,0x35,0x3d,0x38,0xff,0x0,0xcb,0xe4,0x1f,0x8b,0x8a,0x70,0xd4, 0x2c,0x9,0xe2,0xf2,0xdf,0xfe,0xfe,0xa,0xa5,0x51,0x9,0xc6,0xea,0xc5,0x8,0xec, 0x9,0x6f,0x98,0x56,0x8c,0x30,0x2c,0x4a,0x30,0x39,0xa3,0xed,0x76,0x87,0xa5,0xcc, 0x3f,0xf7,0xf1,0x7f,0xc6,0x9e,0xb3,0xc0,0xdf,0x76,0x68,0xcf,0xd1,0xc1,0xaa,0x75, 0x6f,0xd4,0xce,0x34,0x54,0x49,0x0,0xc5,0x18,0xcf,0x5a,0x40,0xe8,0xdd,0x1d,0x7f, 0x3a,0x76,0x3e,0xb8,0xa4,0xa4,0x8d,0x2c,0x35,0xa3,0x52,0x3e,0xe8,0xaa,0x93,0xe9, 0xd1,0x4c,0x9,0x3,0x6,0xae,0xf6,0xcd,0x28,0xab,0x8c,0x9a,0x7a,0x13,0x28,0x29, 0x2b,0x33,0x9d,0x93,0x43,0x90,0xb9,0xdb,0xd2,0x95,0x74,0x7,0x3f,0x78,0xd7,0x43, 0xc5,0x38,0x56,0xbe,0xde,0x47,0x33,0xc1,0xd3,0xb9,0x8f,0x6d,0xa2,0xa4,0x52,0x6, 0x61,0x9a,0xd9,0x44,0xa,0xa1,0x54,0x60,0xf,0x4a,0x5,0x28,0xe2,0xa2,0x53,0x72, 0xdc,0xda,0x9d,0x28,0xc3,0x61,0x68,0xa3,0x34,0x54,0x96,0x2d,0x21,0xa4,0xa2,0x80, 0x3,0x45,0x6,0x90,0xd0,0x2,0xd3,0x4d,0x19,0xa0,0x9a,0x43,0x2b,0x5c,0xdb,0x24, 0xea,0x41,0x1c,0xd6,0x3c,0xd6,0x26,0x2c,0x9e,0xde,0xd5,0xbf,0x50,0x4d,0x10,0x90, 0x62,0xae,0x35,0x1a,0xd0,0xca,0xa5,0x18,0xcb,0x53,0x93,0x30,0xee,0x39,0xde,0xff, 0x0,0x40,0x69,0x42,0x5,0xe9,0xfc,0xea,0xdc,0xd1,0x32,0x13,0xb6,0x17,0x3f,0x95, 0x56,0x28,0xef,0x90,0xca,0x53,0xe8,0x6b,0x7,0x3b,0x89,0x53,0x68,0x95,0x54,0x15, 0xc1,0x7,0x7,0xeb,0x53,0x59,0x5b,0xb,0x75,0x61,0xe6,0x6e,0xce,0x3d,0xba,0x0, 0x2a,0xb0,0xb5,0x50,0x84,0xef,0x97,0x38,0xcf,0xfa,0xc2,0x3f,0x95,0x4d,0x5,0x9f, 0x9a,0x48,0xfb,0x4d,0xca,0x80,0x3f,0x86,0x53,0x42,0xbf,0x60,0x69,0x77,0x2f,0x81, 0xdc,0xe,0x7e,0x9c,0xd3,0x5e,0xda,0x9,0x5c,0x3b,0xc4,0x8c,0xe3,0xa3,0x10,0x9, 0x1f,0x8d,0x44,0x2c,0x66,0x55,0x1e,0x5d,0xfc,0xe0,0xff,0x0,0xb6,0xaa,0xdf,0xd2, 0xa5,0x8e,0x2b,0xc5,0x91,0x37,0xcd,0xc,0x8b,0x9f,0x98,0xf9,0x65,0x4e,0x3f,0xef, 0xa3,0x49,0xc8,0x6a,0x1e,0x62,0xc6,0xf1,0xc8,0xa4,0xc6,0xeb,0x20,0x1c,0x7c,0xa7, 0x35,0x36,0x31,0xfd,0x3d,0xeb,0x98,0x4b,0x68,0x6,0x9b,0x2c,0xfd,0x23,0x46,0x44, 0xf9,0x94,0x1e,0x78,0x3d,0x7e,0x84,0x55,0xc4,0x86,0x68,0xee,0xed,0xed,0xa3,0xb8, 0x60,0xde,0x5a,0x38,0x51,0x23,0x1,0x8c,0xb6,0x78,0xa7,0xed,0xa5,0xd8,0xaf,0x67, 0x7d,0x8b,0xfa,0x84,0x31,0xca,0x63,0xde,0xbb,0x82,0xee,0xeb,0x9c,0x76,0xaa,0xcb, 0x6f,0x1,0xc1,0xf2,0x93,0xd8,0x85,0x15,0x5b,0xcc,0xb9,0x9e,0xcc,0x34,0x8c,0x92, 0xc6,0xc4,0x2f,0xce,0x8a,0xc3,0xa1,0x27,0xb6,0x7b,0x53,0x84,0xaf,0x13,0x94,0x6b, 0x75,0x8,0xa9,0x92,0x8a,0x59,0x71,0xf2,0x83,0xd8,0x9f,0x5a,0xe7,0x9c,0xdb,0x77, 0xb1,0xac,0x63,0x65,0x62,0xd3,0xd,0xbe,0x58,0xed,0xbd,0x46,0x30,0x7d,0x45,0x68, 0xcd,0x6f,0x4,0x83,0x33,0x45,0x1b,0x2a,0x8f,0xe3,0x50,0x40,0x1f,0x8f,0xd2,0xb1, 0xfe,0xd6,0x88,0x11,0xe4,0x49,0x6,0x18,0x64,0x29,0x7,0x18,0x20,0xfa,0xf,0x5a, 0xdd,0x9e,0x33,0x2d,0xbc,0xa8,0xb8,0xcb,0x21,0x0,0x11,0xeb,0x4e,0xf,0x71,0x48, 0xa7,0xfd,0x9d,0x65,0x22,0xa9,0x11,0x2e,0xcc,0x64,0x6d,0x24,0xc,0x7e,0x15,0x19, 0xd2,0x2d,0x1,0xc8,0x59,0x47,0xfb,0xb3,0x38,0xf6,0xec,0xd5,0x72,0xd2,0x16,0x86, 0xce,0x18,0xa4,0xc0,0x74,0x5d,0xa4,0xa,0xcd,0xb1,0xb2,0x9a,0x1d,0x56,0xe6,0x77, 0xb7,0x58,0xe3,0x60,0xf8,0x60,0xd9,0xdd,0xf3,0x71,0xde,0xa9,0xbb,0x74,0x12,0x44, 0xdf,0xd9,0x90,0x81,0xc3,0xdc,0x3,0xed,0x70,0xff,0x0,0xd4,0xd0,0x2d,0x92,0x29, 0x40,0xfb,0x54,0xc7,0xb9,0x46,0x93,0x76,0x47,0xe2,0x2b,0x44,0x27,0xcd,0x8e,0x9c, 0xd5,0x26,0x89,0x8e,0xa8,0xac,0x63,0xca,0x88,0x87,0xcc,0x47,0x19,0xcf,0x22,0xa9, 0xe8,0x20,0x8c,0xc5,0x2a,0xc8,0xde,0x64,0x4c,0x7,0xf1,0x23,0xf,0x97,0xd3,0x3c, 0xd2,0x2a,0x17,0xb6,0x5,0x3c,0xb2,0xf9,0xc0,0x62,0x72,0xa7,0xf1,0xfa,0x54,0x8b, 0x15,0xac,0xb1,0xdd,0x47,0x6e,0xa8,0x8c,0x41,0x57,0x2a,0x9b,0x71,0xd4,0x7a,0x53, 0x2f,0xec,0xa3,0x6b,0x2,0xa8,0xa0,0x8,0xd8,0x3e,0x3b,0x1e,0xc6,0xb5,0xbb,0xb5, 0xc8,0x71,0x1f,0xe5,0x20,0x45,0x29,0x1a,0x81,0x8f,0x4e,0xde,0xd4,0xa6,0x1c,0xc9, 0x8d,0xa0,0xc2,0x7,0xa9,0xce,0x6a,0xa9,0x8e,0xdd,0x93,0x4f,0xb7,0x92,0x20,0x59, 0xa2,0xca,0xb9,0x1f,0x77,0x68,0x5c,0xfe,0x79,0xa5,0x73,0x6c,0x9a,0xdc,0x50,0x98, 0x1,0x99,0x93,0x3b,0xc0,0xe8,0x30,0xc7,0xfa,0x51,0xcf,0xdc,0x5c,0xa4,0xe2,0x32, 0xa7,0x6b,0x65,0x40,0xce,0x3f,0x3e,0xf4,0xd1,0x6,0x53,0x73,0xc6,0x4,0xbd,0x8, 0x7,0x19,0xaa,0xba,0x72,0x43,0x25,0xed,0xea,0xec,0x3e,0x60,0x91,0x83,0xb6,0x71, 0x91,0xb9,0x80,0x1f,0xa5,0x5a,0x5b,0x48,0xc5,0xac,0x89,0xe,0xf3,0x93,0x9f,0x96, 0x43,0x9f,0xe7,0x45,0xdb,0xe,0x53,0x3e,0x65,0x94,0x4e,0xc9,0xf,0x94,0x17,0x3, 0x89,0x32,0x70,0x7f,0x3a,0x77,0x97,0x78,0x41,0xfd,0xe5,0xbf,0x3e,0xb1,0x9f,0xf1, 0xa7,0x4f,0x6c,0x16,0x60,0xa7,0x76,0xe5,0x20,0xf2,0xd9,0x35,0x6c,0x64,0xd6,0x1d, 0x4d,0x12,0xb2,0x20,0xd9,0x7e,0x17,0xef,0x5a,0x1c,0xff,0x0,0xb2,0xc3,0xfa,0xd3, 0x64,0x17,0xbe,0x44,0x9e,0x67,0xd9,0xce,0x7,0x1b,0x4b,0x7a,0xd4,0xba,0x8c,0xf2, 0x5a,0x59,0xf9,0xb1,0xb2,0x2e,0x32,0x58,0xb0,0xcf,0x0,0x13,0xeb,0xed,0x4f,0x59, 0x7e,0xd3,0xa6,0xc7,0x38,0x3c,0x49,0x1a,0xbf,0x1d,0x39,0xc1,0xfe,0xb5,0x57,0x15, 0x8c,0xf0,0x97,0x25,0x48,0x32,0x42,0xe,0x7f,0x85,0x9,0xfd,0x73,0x53,0x41,0xd, 0xde,0xd6,0x2b,0x3c,0x6c,0x77,0x70,0x1a,0x33,0xfe,0x34,0xcb,0x49,0xc,0xf6,0xe1, 0x8b,0x2,0xd9,0x20,0x81,0xc5,0x5f,0xb7,0x5f,0x95,0xb8,0xef,0x4a,0x2c,0x72,0x45, 0x59,0x3e,0xd7,0xe5,0x15,0x36,0xe9,0x21,0x61,0x83,0xb6,0x4f,0xe8,0x45,0x3a,0xd0, 0x3f,0x92,0x16,0x48,0x4c,0x6c,0xbc,0x63,0x39,0xab,0x33,0xcd,0x1c,0x49,0xf3,0x32, 0xe7,0x1f,0x2a,0xb3,0x0,0x4f,0xd3,0x35,0x5d,0x2f,0xad,0xb6,0x66,0x49,0xa2,0x46, 0x1f,0x79,0x77,0x82,0x41,0xad,0xa0,0xd2,0x7a,0xb3,0x29,0x2b,0xa2,0x52,0xb4,0xc2, 0xb5,0x19,0xd4,0x6c,0xf2,0x0,0x9b,0x3c,0x76,0x52,0x7f,0x95,0x46,0xfa,0x95,0xbe, 0x32,0xbb,0xdf,0x9e,0x0,0x42,0x9,0xfc,0xeb,0xa5,0x54,0x89,0xce,0xe0,0xc8,0xa5, 0x9c,0x7,0x2a,0x3,0x71,0xe8,0xa4,0xd4,0x26,0x62,0x4f,0xdc,0x73,0xff,0x0,0x1, 0xc7,0xf3,0xa9,0x98,0xab,0x90,0xea,0x46,0xd7,0x1,0x86,0x7d,0xd,0x1b,0x4e,0x7a, 0x7e,0x95,0x9f,0x3b,0x6f,0x71,0xf2,0x2b,0x6c,0x43,0xbd,0xbb,0xc6,0xd8,0xfc,0x3f, 0xc6,0x9a,0x5b,0xfd,0x96,0x15,0x33,0xc4,0x24,0x50,0x33,0x8c,0x1c,0xd0,0x57,0x6a, 0x80,0x3b,0xc,0x74,0xad,0xe9,0xcd,0xf7,0x39,0x2a,0x45,0x76,0x2b,0x11,0xed,0x51, 0xb0,0xab,0xc,0xbc,0xf5,0x22,0xa2,0x65,0xf7,0xcd,0x75,0x46,0x47,0x2c,0xe0,0x40, 0xc2,0x98,0x45,0x4c,0x45,0x46,0x45,0x6e,0x99,0xcf,0x28,0x91,0x11,0x4d,0x22,0xa4, 0x22,0x9a,0x45,0x5a,0x66,0x2d,0xc,0xa4,0x34,0xe3,0x49,0x8a,0xab,0x93,0x61,0xb4, 0x62,0x9d,0x8a,0x5c,0x53,0xb8,0xac,0x34,0xa,0x50,0x29,0x69,0x69,0x5c,0x76,0x12, 0x97,0x14,0x1,0x4e,0xc5,0x21,0xa4,0x34,0xa,0x70,0xa5,0xc5,0x28,0x14,0x8a,0xb0, 0xdc,0x52,0xe2,0x9c,0x5,0x18,0xa5,0x71,0xd8,0x66,0x28,0xc5,0x3f,0x14,0xb8,0xa2, 0xe1,0x62,0x3c,0x50,0x69,0xe4,0x52,0x11,0x45,0xc2,0xc3,0x29,0xb8,0xa9,0x8,0xa4, 0x22,0x98,0x9a,0x23,0xe9,0x45,0x38,0x8a,0x42,0x29,0xdc,0x8b,0xd,0x34,0x86,0x9d, 0x8a,0xd,0x3b,0x85,0x86,0x51,0x4e,0xa4,0x34,0xa,0xc2,0x51,0x4b,0x8a,0x31,0x40, 0x58,0x4a,0x29,0x71,0x46,0x28,0xb,0x9,0x45,0x2e,0x28,0xc5,0x1,0x61,0x29,0x29, 0xd8,0xa2,0x80,0xb0,0xda,0x29,0xd4,0x53,0xb8,0x58,0x6d,0x14,0xea,0x28,0xb8,0x58, 0x6d,0x14,0xea,0x31,0x45,0xc0,0x6d,0x14,0xec,0x50,0x5,0x17,0xb,0xd,0xa2,0x9d, 0x8a,0x31,0x45,0xc2,0xc3,0x68,0xc5,0x3b,0x14,0x52,0xb,0x9,0x8a,0x31,0x4e,0xa2, 0x9d,0xc2,0xc7,0x55,0xe0,0x9f,0xf9,0x7e,0xff,0x0,0xb6,0x7f,0xfb,0x35,0x75,0xb5, 0xca,0x78,0x2b,0xfe,0x5f,0xbf,0xed,0x9f,0xfe,0xcd,0x5d,0x5d,0x79,0x18,0xaf,0xe2, 0xbf,0xeb,0xa1,0xf4,0xb9,0x7f,0xfb,0xbc,0x7e,0x7f,0x9b,0x30,0xbc,0x47,0x25,0x94, 0x62,0xdb,0xed,0xb3,0xbc,0x40,0xee,0xda,0x56,0x22,0xf9,0xe9,0x9c,0xe0,0x1c,0x76, 0xac,0x11,0x73,0xe1,0xf1,0xff,0x0,0x31,0x85,0x5f,0xa8,0x2b,0xfd,0x2b,0xa0,0xf1, 0xa,0xab,0x1b,0x5d,0xc8,0xae,0x32,0xdd,0x47,0xd2,0xb2,0x52,0x8,0x1b,0xaa,0x2a, 0x9f,0x40,0x31,0x5e,0x7c,0xf9,0x79,0xac,0x77,0x29,0x25,0xa1,0x57,0xed,0x7a,0xe, 0x7f,0xe4,0x60,0x88,0x7f,0xdb,0x62,0x3f,0xf6,0x6a,0x3e,0xdb,0xa1,0x37,0xdd,0xf1, 0x35,0xb7,0xfe,0x5,0x7f,0xf6,0x75,0x6d,0xac,0xe3,0x0,0x95,0x45,0x7,0xfd,0xdc, 0x53,0xd,0xa4,0x6e,0xa3,0x20,0x0,0x40,0xe3,0x73,0x7f,0x8f,0xb5,0x2f,0x66,0xb7, 0x5,0x32,0xcd,0x85,0xce,0x96,0x4,0x80,0x6b,0x36,0xd7,0x23,0x1d,0x7c,0xf0,0xdb, 0x3a,0xf3,0xc9,0x38,0xaa,0xd1,0x88,0x31,0xb5,0x7c,0x41,0x6c,0xc0,0x77,0x17,0x47, 0xfa,0x35,0x3f,0x4d,0xb4,0xb6,0xfe,0xd5,0x91,0x1e,0x15,0x23,0xc8,0xc9,0xdd,0x93, 0x8e,0x46,0x7a,0xff,0x0,0x9e,0x6a,0x95,0xbe,0x9d,0x3,0x40,0x4,0x90,0xa3,0x6d, 0x2c,0x6,0x7d,0x98,0x8a,0x4e,0x17,0x95,0x91,0x4e,0x49,0x6a,0x5e,0x9,0xbb,0x84, 0xd6,0xe0,0x6f,0xa5,0xcf,0xf8,0x93,0x4f,0x16,0xb7,0x60,0x71,0xaa,0xc6,0x7f,0xed, 0xa2,0xff,0x0,0xf1,0x35,0x4b,0xfb,0x22,0xca,0x45,0x39,0xb5,0x8b,0x83,0x8c,0x15, 0x6,0xa0,0x3a,0xe,0x9a,0x1c,0xe6,0xc6,0xdf,0x3e,0xf1,0x28,0xfe,0x94,0x3a,0x6c, 0x5c,0xe6,0xb2,0xda,0xdf,0x9e,0x97,0xe8,0x7f,0xed,0xa4,0x7f,0xfc,0x6e,0xad,0xc3, 0x63,0x71,0xf6,0x36,0x59,0x9e,0x37,0xb9,0x27,0xe5,0x7f,0x4f,0xd0,0xa,0xe7,0xdb, 0xc3,0xfa,0x68,0xdd,0x8b,0x28,0x87,0xd1,0x54,0x7f,0x4a,0x9e,0xcb,0x45,0xb0,0x93, 0x4e,0xbf,0x9,0x6c,0xa1,0xd5,0x8e,0xde,0x99,0xfb,0xa3,0x14,0x9d,0x36,0x93,0x76, 0x1a,0x95,0xcb,0x7f,0x62,0xd6,0x82,0xf1,0x1d,0xb3,0x9c,0x77,0x23,0xfc,0x29,0x86, 0xd3,0x59,0x3,0xfe,0x3c,0xac,0xdb,0x3f,0xec,0xaf,0xf8,0x8a,0xa8,0xd6,0x56,0xa5, 0x4b,0x8,0xd8,0x10,0x1,0xf9,0x40,0xef,0xc7,0xf4,0xaa,0xef,0x6d,0x6e,0xae,0x2, 0xbd,0xc0,0xca,0x86,0xe2,0x46,0x1d,0xc8,0xec,0x7f,0xd9,0x35,0x92,0xd7,0xa0,0xdb, 0xb1,0xb4,0x96,0x97,0x65,0x7,0x9b,0x63,0x0,0x6f,0x41,0x10,0x3f,0xfb,0x3d,0x6, 0xc6,0x46,0xfb,0xd6,0x31,0x9f,0xfb,0x62,0xf,0xfe,0xcd,0x59,0x31,0x41,0x11,0xc6, 0xd9,0xae,0xc1,0xc1,0x3f,0xeb,0xdc,0x77,0x23,0xfb,0xde,0xdf,0xad,0x4a,0xb6,0xe5, 0x99,0x54,0x5e,0xde,0x6,0x3d,0x1,0x9e,0x43,0xdf,0x1f,0xde,0xaa,0x76,0x5b,0x89, 0x48,0xd5,0x83,0x4a,0x86,0x49,0x31,0x25,0x8a,0x2a,0xe0,0xf3,0xe5,0xe2,0x99,0x77, 0x69,0x15,0x95,0xc2,0xb,0x59,0xc,0xc,0x57,0x20,0xa8,0xe3,0x8f,0x5a,0x4d,0x3e, 0xde,0x54,0xbd,0x84,0xb5,0xe5,0xc3,0xae,0x4f,0xca,0xd2,0x31,0x7,0x83,0xea,0x4d, 0x5b,0xd5,0x6,0x2e,0x60,0x6c,0xff,0x0,0xcb,0x37,0x1f,0x91,0x1f,0xe3,0x4f,0x68, 0xdc,0xa5,0xab,0x23,0x8b,0x52,0xb8,0x88,0x7f,0xa4,0x44,0x26,0x5f,0xf9,0xe9,0xf, 0x53,0xf5,0x15,0xa3,0x5,0xcc,0x37,0x23,0x30,0xc8,0x1f,0xe9,0xda,0xb1,0x52,0x11, 0xe7,0xc6,0xc9,0xf2,0x92,0xe0,0x36,0x3b,0xe4,0xe2,0xa2,0x11,0x48,0xf0,0x9,0xda, 0x24,0x62,0xbc,0x31,0xf6,0xc6,0x73,0x4e,0x35,0x18,0x38,0x9d,0x2e,0x8,0xec,0x68, 0xcf,0xe5,0xeb,0x58,0x10,0xc7,0x33,0x2e,0xf8,0xa1,0x90,0xc,0xf0,0xc8,0x40,0x3f, 0xce,0xb5,0xad,0xda,0xe0,0xaf,0xef,0xb1,0xf5,0xe8,0x7f,0x1a,0xda,0x33,0xb9,0x16, 0xb1,0x6a,0x8a,0x68,0x34,0x56,0x82,0x1e,0x28,0xcd,0x34,0x51,0x40,0xf,0xcd,0x21, 0xa6,0xe6,0x8c,0xd0,0x3,0x8d,0x26,0x69,0xd,0x21,0xa0,0x5,0x26,0x90,0xd2,0x1a, 0x69,0x34,0x0,0xec,0xd3,0x4d,0x26,0x68,0xa5,0xd4,0x66,0x5b,0xa0,0xc9,0xe2,0xaa, 0x4b,0x16,0xe,0x7b,0x55,0x99,0xa6,0x54,0x91,0x86,0x18,0x90,0x4f,0x41,0x9e,0xf5, 0xb,0x39,0x94,0x10,0xaa,0xc8,0x7d,0x59,0x6b,0x96,0xf6,0x66,0xbc,0x97,0x44,0x40, 0x7c,0xa7,0xfd,0xd3,0xfc,0xaa,0x7b,0x30,0x3,0x90,0x3d,0x3f,0xa9,0xa8,0x3e,0xcf, 0x70,0x1,0x2d,0x70,0xa4,0x73,0x90,0x23,0xc7,0x6f,0xad,0x48,0x11,0xdd,0x8,0x47, 0x11,0x9e,0x4e,0xe2,0x33,0x8e,0x7e,0xb5,0xa4,0x65,0xee,0xb6,0x72,0xce,0x36,0x9a, 0x46,0x80,0x1e,0xd8,0x14,0xe0,0x39,0x51,0xea,0x46,0x6b,0x8f,0x6d,0x4a,0xf2,0xd2, 0xe8,0xda,0x4b,0x73,0xba,0x32,0x47,0xcc,0x53,0x25,0x72,0x33,0xc7,0xff,0x0,0x5e, 0xae,0x69,0x37,0x57,0x2b,0x7a,0x3c,0xc9,0x9e,0x44,0x76,0xa,0x55,0x8f,0xdd,0xe6, 0xb1,0xf6,0xea,0xf6,0x35,0xe4,0xd0,0x82,0x72,0x63,0xf0,0xdd,0xf1,0xe7,0x8b,0xa4, 0xfe,0x48,0x2b,0x41,0x64,0x1f,0xf0,0x96,0x5a,0x2e,0xe,0x1a,0xc5,0x4f,0xe8,0xf5, 0x5e,0xea,0x30,0x34,0x1d,0x45,0x46,0x7f,0xe3,0xe9,0x4e,0x7,0xfb,0xe0,0x55,0x98, 0xd4,0x1f,0x14,0x69,0x8f,0xd8,0xda,0x28,0xff,0x0,0xc7,0x64,0xae,0x85,0x2d,0x1, 0x2b,0x19,0xb1,0x4a,0x13,0xc2,0xf0,0x3a,0xff,0x0,0xd,0xc7,0x7f,0xfa,0xe6,0x6b, 0x4a,0x69,0x31,0xac,0xeb,0x28,0x38,0xd9,0x6a,0xe4,0x7b,0x7c,0x91,0xd6,0x62,0xc6, 0x3f,0xe1,0x16,0xdb,0xd8,0x5d,0x7f,0xed,0x1a,0xd5,0xb8,0x8c,0x7f,0x6c,0xeb,0x3e, 0xf6,0x8f,0xff,0x0,0xa0,0x47,0x50,0xb5,0xd4,0x57,0x64,0x69,0x20,0x7f,0xec,0x84, 0x6c,0x32,0xce,0x5f,0x7e,0x79,0xdd,0xf3,0x28,0xfe,0x95,0xb4,0xf6,0x92,0xb1,0x26, 0x3b,0xc9,0x50,0x93,0x90,0xbb,0x55,0x80,0xfa,0x2,0x3f,0xad,0x62,0xc5,0x18,0x53, 0xa0,0x8e,0xcb,0x24,0xaa,0x3f,0xef,0xb1,0x5d,0x33,0x8f,0xdd,0x3e,0x3f,0xba,0x7a, 0x70,0x69,0x59,0x2b,0x8f,0x52,0x97,0x91,0x7a,0xa8,0xa0,0x5c,0xc2,0x58,0x73,0xb9, 0xa2,0x3f,0xd1,0xaa,0x2f,0x27,0x51,0x5e,0x92,0xda,0x91,0xef,0x1b,0xe,0xdf,0xef, 0x55,0xeb,0x54,0x22,0xda,0x3c,0x86,0xe0,0x7f,0x11,0xaa,0x96,0xac,0xcd,0x7f,0x2a, 0xef,0x90,0x81,0xbf,0x82,0xdc,0x70,0x70,0x2a,0x59,0x68,0x8d,0x17,0x55,0x0,0xe4, 0x59,0xb1,0xf6,0x2e,0x3f,0xc6,0x9e,0x5,0xdf,0xb,0x34,0x11,0x6d,0x27,0x92,0x92, 0x9c,0xe3,0xe8,0x56,0xb4,0xa,0xf5,0xef,0xda,0xab,0x3a,0x2b,0x5f,0x28,0x2a,0x77, 0x6d,0x7,0xaf,0x7,0xb5,0x3b,0x3b,0x12,0x46,0x90,0x64,0x3e,0x43,0x2b,0xc,0xaa, 0x90,0xc4,0x6,0x1e,0xbd,0x69,0x1a,0x26,0x68,0x77,0x10,0xc5,0xfb,0xc6,0x5b,0x20, 0xd1,0x4,0x31,0x86,0xba,0x8d,0x37,0xc,0x2f,0x3f,0x31,0xeb,0x93,0xef,0xed,0x48, 0xb0,0xa8,0xb2,0x71,0xbe,0x4d,0xbb,0xf3,0x9f,0x30,0xe7,0xd3,0xae,0x6b,0x44,0xf4, 0xf9,0xa,0xc0,0x6d,0x95,0x55,0x0,0x2e,0x40,0xf9,0x7b,0x12,0xb4,0x18,0x7,0xda, 0x55,0xb2,0x71,0xc3,0x7,0xe3,0xaf,0xa5,0x24,0xb0,0x16,0xb6,0x80,0x89,0xa5,0x56, 0xc7,0x4,0x48,0x79,0xe9,0xd6,0xa1,0x63,0x2f,0xf6,0xfa,0x28,0x99,0xc2,0x0,0xac, 0x53,0x79,0xc7,0x2a,0xfd,0xbf,0xa,0x1c,0xac,0x96,0x82,0xb3,0x25,0x4b,0x52,0xac, 0xc4,0x39,0x47,0xc1,0xcb,0x0,0x3e,0x7e,0xbc,0xd1,0x1a,0x14,0x87,0x72,0xc8,0xe9, 0xd3,0x2b,0x81,0x9f,0xe5,0x55,0xec,0x44,0x93,0xea,0x17,0x20,0xcf,0x21,0x55,0x2e, 0x0,0xdc,0x48,0x5f,0x9c,0x81,0xfc,0xa9,0xf8,0x96,0x3b,0x29,0x18,0x4c,0xec,0x4b, 0xa2,0x86,0x3d,0x40,0x24,0x7f,0x8d,0x2e,0x6d,0x2e,0x16,0x2a,0xdc,0xcd,0xe4,0xdc, 0xc8,0x24,0x69,0x65,0xe7,0x23,0x11,0x12,0x47,0x1d,0xe,0x5,0xb,0x7f,0x1f,0xfc, 0xf1,0xba,0xeb,0xff,0x0,0x3e,0xef,0xfe,0x14,0xdb,0xe7,0x92,0x2b,0x8b,0x6c,0x4c, 0x40,0x77,0x0,0x82,0x7,0x39,0x23,0xfa,0x1a,0xd2,0x45,0xfa,0x56,0x37,0xf7,0x8d, 0x2c,0xac,0x55,0x7b,0xcb,0x59,0xa2,0x29,0x2c,0x33,0x95,0x23,0x4,0x35,0xb3,0xf7, 0x18,0xf4,0xa4,0x37,0x36,0xff,0x0,0x65,0xf2,0xe1,0x59,0x2,0x46,0x14,0x5,0xf2, 0x5d,0x70,0x6,0x31,0xd4,0x55,0x8b,0xdb,0xa6,0xb2,0x85,0x19,0x63,0xf,0xb9,0xb0, 0x43,0x49,0xb7,0x1c,0x13,0xfd,0x29,0xee,0x7c,0xcb,0x30,0xc4,0x1,0xb8,0x2,0x46, 0x73,0x8a,0xbb,0x8a,0xc8,0xca,0x59,0xa3,0x8c,0x4,0x8e,0x19,0x48,0xcf,0x38,0x8c, 0x8f,0xe7,0x59,0xd3,0xa2,0x4f,0xa9,0xac,0x67,0x1e,0x64,0xf1,0x89,0x11,0x4a,0xff, 0x0,0xe,0xd2,0x7f,0xf6,0x53,0x5b,0x16,0x73,0x9b,0x98,0x12,0x62,0x36,0x96,0xcf, 0x0,0xe7,0x15,0x95,0x8c,0xf8,0xaf,0x4a,0x38,0xe0,0x69,0xf1,0xff,0x0,0xe8,0x13, 0x52,0xa7,0x1e,0x67,0xa8,0x4b,0x43,0x3f,0x7d,0xb0,0xd3,0xa2,0xba,0x55,0x26,0x37, 0x90,0xc6,0x8,0x50,0x9,0x3b,0x43,0xf,0xd3,0x35,0x72,0x77,0x44,0xb9,0xd4,0xe0, 0x55,0x61,0xf6,0x55,0x69,0x1b,0x90,0x32,0x1,0x56,0xf4,0xf4,0x61,0x59,0xa,0x1f, 0xfe,0x11,0x2b,0x2e,0xe,0x7e,0xd9,0xdf,0xd3,0xc9,0x15,0xa7,0x3f,0xfc,0x87,0x7c, 0x4b,0xc7,0x2,0xdd,0x87,0xd4,0x6d,0x8e,0xba,0xa3,0x8,0xd8,0xc9,0xc9,0x8f,0x56, 0x51,0x26,0x9e,0x4a,0x12,0x2e,0x18,0x83,0x92,0x7f,0x86,0x50,0xa7,0xff,0x0,0x42, 0xa6,0xab,0x2a,0xc7,0xa8,0x28,0x51,0x9b,0x59,0x11,0x41,0x1d,0xff,0x0,0x78,0xc9, 0xfd,0x33,0x4f,0x0,0x93,0xa1,0xe7,0xae,0xf7,0xff,0x0,0xd1,0xe9,0x55,0xd4,0xe6, 0x1d,0x7c,0xff,0x0,0xd3,0xcc,0x63,0xff,0x0,0x26,0x1a,0xae,0x31,0x8d,0x8c,0x9d, 0xdb,0x46,0x94,0x9,0xe7,0x5a,0xda,0xb6,0xe6,0x4c,0xdb,0x46,0x70,0x87,0x3,0x90, 0x4d,0x3c,0xda,0xc6,0x4f,0x25,0xcf,0xd5,0xc9,0xfe,0xb4,0xb6,0x3c,0xd8,0xd9,0x9f, 0xfa,0x74,0x87,0xff,0x0,0x41,0xa9,0xf8,0xcf,0x24,0x56,0x4e,0xd7,0x1d,0x9d,0x8a, 0xad,0x6f,0x14,0x7d,0x14,0xf3,0xfe,0xd1,0xa7,0x79,0x9,0x8f,0xe2,0x1f,0x8d,0x4b, 0x28,0xe1,0x4d,0x38,0xaf,0xc9,0x5d,0x50,0x49,0x23,0x86,0xa5,0xdc,0x9a,0x2a,0x15, 0x29,0xc0,0x5,0xbd,0xea,0x33,0xcf,0x62,0x3e,0xb5,0x6d,0x85,0x42,0xc2,0xb7,0x83, 0x69,0x9c,0xf5,0x11,0x58,0x8a,0x88,0x8a,0xb2,0xcb,0x51,0x15,0xae,0xa4,0xce,0x59, 0x44,0x84,0x8a,0x61,0x15,0x31,0x5a,0x61,0x5a,0xd1,0x33,0x16,0x88,0x88,0xa4,0x22, 0xa4,0xc5,0x26,0x2a,0xae,0x45,0x86,0x62,0x8c,0x53,0xf1,0x46,0x28,0x15,0x86,0x1, 0x4b,0x4e,0x2,0x94,0xa,0x2e,0x3b,0x9,0x8a,0x70,0x14,0xbb,0x69,0xc0,0x52,0xb8, 0xd2,0x1b,0x8a,0x50,0x29,0xd8,0xa7,0x1,0x52,0xd9,0x6a,0x23,0x76,0xd1,0x8a,0x90, 0xa,0x36,0xfb,0x52,0xb9,0x5c,0xa4,0x78,0xa3,0x6d,0x4b,0xb6,0x93,0x6f,0xb5,0x2b, 0x87,0x29,0x11,0x5a,0x42,0xb5,0x36,0xdf,0x6a,0x42,0xb4,0xee,0x1c,0xa4,0x38,0xa4, 0x22,0xa5,0x22,0x9b,0xb6,0x9a,0x64,0x34,0x45,0x8a,0x42,0x2a,0x4d,0xb4,0xd2,0x2a, 0xae,0x4d,0x86,0x1a,0x43,0x4f,0xc5,0x26,0x29,0xa6,0x2b,0xc,0x34,0x94,0xf2,0x28, 0xc5,0x3b,0x8a,0xc3,0x28,0xa7,0xe2,0x8c,0x51,0x71,0x58,0x65,0x14,0xfc,0x51,0x8a, 0x2e,0x16,0x19,0x45,0x3f,0x14,0x98,0xa2,0xe1,0x61,0xb4,0x53,0xb1,0x46,0x28,0xb8, 0xec,0x36,0x8a,0x76,0x28,0xc5,0x17,0xb,0xd,0xa2,0x9d,0x45,0x20,0xb0,0xda,0x29, 0xd4,0x50,0x2b,0xd,0xa3,0x14,0xea,0x28,0x1d,0x86,0xe2,0x8c,0x53,0xb1,0x4b,0x8a, 0x2,0xc3,0x31,0x46,0x29,0xf8,0xa3,0x14,0xee,0x16,0x1b,0x8a,0x29,0xd8,0xa5,0xc5, 0x2b,0x8e,0xc7,0x51,0xe0,0xcf,0xf9,0x7e,0xff,0x0,0xb6,0x7f,0xfb,0x35,0x75,0x55, 0xcb,0x78,0x34,0x7f,0xc7,0xef,0xfd,0xb3,0xff,0x0,0xd9,0xab,0xa9,0xaf,0x2b,0x13, 0xfc,0x56,0x7d,0x16,0x7,0xfd,0xde,0x3f,0x3f,0xcd,0x9c,0xe7,0x8b,0x6e,0xe1,0xb5, 0x82,0xd9,0xa5,0x75,0x18,0x2c,0xc1,0x58,0xe3,0x70,0x18,0xc8,0x1f,0x9d,0x54,0x59, 0x2c,0xae,0x1a,0x68,0x61,0x69,0x4d,0xc4,0x6b,0xbd,0x63,0x0,0x7c,0xc3,0xdb,0x23, 0xaf,0x3d,0x2a,0xbf,0xc4,0x29,0x1e,0x34,0xd3,0xb6,0x96,0xf9,0xda,0x45,0xc0,0x50, 0x7f,0xbb,0xed,0xed,0x58,0x56,0x72,0x9,0x9d,0x2e,0x24,0x89,0xa7,0x7d,0xdb,0x83, 0x2b,0xed,0xdd,0xc1,0xc8,0xc8,0x3c,0x1e,0x9f,0x95,0x78,0xd5,0xea,0xa8,0x55,0x67, 0x7c,0x76,0xb9,0xd5,0x88,0x63,0xb6,0x8a,0x3f,0xb4,0x5c,0x4c,0xf2,0x48,0x78,0x51, 0x1a,0x82,0x3f,0xc,0x76,0xcd,0x41,0x24,0xa9,0xb,0x79,0x4c,0xd7,0xf,0x21,0xe1, 0x42,0xc6,0x39,0xf7,0xe9,0xd0,0x66,0xaa,0xdc,0xf8,0x80,0x59,0x5b,0x24,0xc6,0x19, 0x4e,0x8,0x55,0x6b,0x87,0x55,0x3d,0x39,0xc6,0x33,0xcf,0x1f,0xa5,0x43,0xe,0xb1, 0x6f,0x15,0xe3,0x49,0x21,0x9d,0x26,0x90,0x7c,0xca,0x27,0x52,0xf,0xe0,0x4e,0x7f, 0x2a,0x72,0xab,0x7d,0x99,0x56,0x4c,0xb3,0x67,0x65,0x79,0x71,0x3d,0xd4,0x8f,0x72, 0xb6,0xf2,0x29,0x30,0x84,0xd8,0x49,0x28,0x71,0xce,0x73,0xde,0xb5,0xc6,0x94,0xdb, 0x0,0x5b,0xa2,0x3f,0xe0,0x1f,0xfd,0x7a,0xce,0x87,0x57,0x8a,0xe6,0xe5,0x60,0x8c, 0xc9,0x13,0xbf,0x41,0x80,0x41,0x3f,0x9f,0xf3,0xab,0x2d,0xae,0x5b,0xdb,0xc8,0x61, 0x90,0x5c,0xef,0x5e,0xe,0x10,0x11,0x9f,0xce,0xae,0x9c,0x95,0xc1,0xc7,0x42,0xd7, 0xf6,0x6c,0x98,0x3f,0xe9,0x20,0x9c,0xe7,0xe6,0x8f,0xfc,0xd,0x35,0xb4,0xc9,0x8f, 0x4b,0x98,0xff,0x0,0xef,0xd1,0xff,0x0,0xe2,0xaa,0xb3,0x78,0x8e,0xcd,0x53,0x71, 0x37,0x61,0x47,0x7f,0xb3,0x31,0xfe,0x55,0x7,0xfc,0x25,0xda,0x56,0x40,0xfb,0x4d, 0xc8,0xcf,0xfd,0x3a,0x48,0x7f,0x90,0xad,0xb9,0xe3,0xa8,0x28,0x96,0x19,0xf,0xda, 0xc4,0x5,0x89,0xc9,0xea,0x3e,0x9e,0x95,0x6a,0xd2,0xc9,0xac,0xec,0xee,0x33,0x28, 0x76,0x90,0x67,0x3b,0x71,0xdb,0x15,0x92,0x75,0x28,0x25,0xb8,0x49,0xe1,0x33,0x3e, 0xe,0x7e,0x68,0x5d,0x33,0xf9,0xad,0x6c,0x58,0xdd,0xc5,0x76,0xb2,0x24,0x73,0x1c, 0xaf,0xdf,0x46,0x8c,0xa9,0x19,0xfa,0xfd,0x2b,0x28,0x49,0xbb,0xa6,0xc4,0xe2,0x91, 0x9a,0xd1,0x2e,0x58,0xa8,0x61,0xb9,0x41,0x1e,0xd8,0x39,0xfe,0x66,0xab,0xbd,0x9e, 0x59,0x58,0x31,0xce,0xcd,0xbc,0x8e,0xbc,0x93,0xdb,0xea,0x6a,0xe7,0xdb,0xb4,0x7e, 0x7f,0xd3,0x54,0x73,0xcf,0xcc,0xc2,0x99,0xf6,0xbd,0x15,0x8f,0xfc,0x84,0xe2,0x7, 0xde,0x7f,0xf1,0xac,0x55,0x3d,0x77,0x7,0x1b,0x95,0x63,0x87,0xcb,0xd9,0xf3,0xe0, 0xf4,0x39,0x53,0xcf,0x39,0xa9,0xe1,0x8c,0x6f,0x8e,0x45,0x93,0x9e,0x78,0xc6,0x7f, 0x88,0x9f,0xeb,0x4f,0x3f,0xd9,0xc,0x1,0x3a,0xa4,0x63,0xfe,0xde,0x80,0xa7,0x22, 0xe9,0x9b,0x54,0x26,0xa9,0x11,0xdb,0xd3,0xf7,0xe8,0x7f,0xa5,0x69,0xc8,0xfb,0xfe, 0x22,0x51,0xb1,0x62,0xd3,0xe5,0xbc,0x84,0x75,0x25,0xcf,0x6c,0x7f,0xb,0x1a,0x76, 0xac,0xdf,0xbf,0xb5,0x23,0xa1,0xe,0x3f,0x91,0xa2,0xda,0x3b,0x46,0xb9,0x53,0xd, 0xea,0x4b,0x22,0xf2,0x14,0x48,0xa7,0x1c,0x1f,0x4a,0x97,0x51,0xb6,0x9a,0xe5,0x23, 0x78,0x80,0xdd,0x19,0x24,0x29,0x38,0x4,0x1e,0xd9,0xed,0x5a,0x38,0xbe,0x41,0xad, 0xcc,0xe5,0x93,0xf7,0xb1,0x67,0xbc,0x8b,0xf8,0x73,0x56,0x6c,0xb0,0xf6,0x92,0x28, 0xed,0xf2,0x9e,0x3b,0xf4,0x3f,0xca,0xb3,0xd9,0xa4,0x49,0xe2,0x49,0x2d,0xe6,0x8c, 0xf9,0x89,0xcb,0xc,0xaf,0xde,0x1d,0xc6,0x47,0xad,0x4d,0xa5,0xcc,0x16,0xe2,0xed, 0x37,0xc,0x34,0xcd,0x81,0x9f,0xf6,0x9a,0xb3,0x86,0x9b,0x94,0xcd,0x7b,0x71,0x88, 0x57,0xb7,0xe0,0x2a,0x61,0x55,0xc4,0xc1,0x78,0x23,0x8c,0x54,0xca,0xea,0xe3,0x2a, 0x73,0x5d,0x31,0x92,0x66,0x6d,0xf,0xcd,0x2e,0x69,0x94,0xa2,0xb4,0x10,0xf1,0x45, 0x34,0x51,0x40,0xe,0xa3,0x34,0xda,0x28,0x1,0x73,0x41,0xa6,0xd1,0x40,0xa,0x69, 0x33,0x4d,0xa5,0xa4,0x31,0x73,0x48,0x79,0xa2,0x8a,0x3a,0x82,0x33,0x5f,0x89,0x5f, 0x9c,0x7c,0xc7,0xa7,0xd4,0xd3,0xd,0x32,0xe2,0xe2,0x28,0xe6,0x70,0xee,0x7,0xcc, 0x7b,0x13,0xde,0x98,0x2e,0x15,0xc7,0xee,0x81,0x63,0xee,0x8,0xae,0x19,0x3d,0x4d, 0xd1,0x3b,0x8f,0xdc,0xbe,0x3a,0xed,0x3f,0xca,0xa3,0xd3,0x65,0x12,0xa2,0x38,0xea, 0x63,0xdd,0xd3,0x38,0x39,0x6,0x96,0x33,0x3b,0x29,0xd,0x1c,0x4a,0x30,0x73,0x89, 0x9,0xfe,0x95,0x53,0x4f,0x8a,0x59,0x34,0x64,0x58,0x32,0x25,0x65,0x23,0x70,0x6c, 0x60,0x71,0xdf,0xad,0x69,0x17,0x68,0xc8,0xca,0xa2,0xbc,0xa2,0x73,0x9e,0x20,0xb2, 0x92,0xd,0x4f,0xe4,0xb8,0xbf,0x33,0xcb,0xc9,0x79,0x11,0x5a,0x1f,0xa8,0x0,0x82, 0xf,0x1d,0xea,0xbd,0xa4,0x91,0xd9,0x3b,0x9,0xe5,0x9a,0x7d,0xf8,0x25,0x2d,0xf6, 0x3,0xbb,0xdf,0x71,0xe3,0xf0,0xa4,0xbf,0xd3,0xa6,0x86,0xfb,0x17,0x8d,0x74,0xaf, 0xbc,0xa4,0x66,0x59,0xc4,0x9c,0xf5,0xf9,0x41,0x39,0xf4,0xed,0x4c,0x5f,0xb2,0x5b, 0xe1,0xdd,0x8c,0xae,0x8f,0xb8,0xb3,0xb9,0xdb,0xd3,0xa1,0xc1,0x1c,0xfe,0x75,0xc8, 0xda,0xb8,0x49,0xab,0x1b,0x50,0x4a,0xd7,0x10,0x5c,0x46,0xb0,0x2c,0x51,0xe6,0x32, 0xc3,0xaf,0xf1,0x71,0xcf,0x4c,0xe4,0xd6,0xb5,0xb0,0xce,0xb3,0xa4,0xbe,0x73,0xfe, 0x88,0x9f,0xfa,0x4,0x95,0x84,0xba,0xc4,0x71,0xaf,0x92,0xd7,0xb6,0xa1,0x65,0xd8, 0xe6,0x35,0xf9,0xb2,0x14,0xee,0x18,0x39,0xe2,0xb6,0xf4,0xf6,0x52,0xd6,0x57,0x2d, 0x29,0x7d,0x80,0x26,0x30,0x3e,0xe8,0xdc,0xbc,0x7f,0xdf,0x55,0xad,0x3a,0x96,0x64, 0xc5,0xdc,0xa2,0xc3,0x6f,0x86,0x64,0xe3,0xee,0xdd,0x7f,0xed,0x11,0xfe,0x35,0xa7, 0x71,0xff,0x0,0x21,0xbd,0x59,0x71,0xd6,0xcd,0xcf,0xfe,0x3b,0x1f,0xf8,0x55,0x79, 0x6d,0x55,0xb4,0x8b,0x9b,0x55,0x93,0xe6,0x33,0x9,0x1,0x2a,0x40,0x3f,0x28,0x18, 0xfd,0x2a,0xe4,0x88,0xb2,0xea,0xf7,0x73,0xab,0xae,0xcb,0x8b,0x46,0x44,0xce,0x73, 0x92,0x7,0xf8,0x56,0xf1,0xa9,0x1b,0x15,0xca,0x45,0x17,0xdc,0xd1,0x9b,0x1f,0xf2, 0xd6,0x4f,0xfd,0x18,0x2b,0x7d,0xe1,0x98,0xbf,0xee,0xee,0x19,0x79,0xe8,0x54,0x1a, 0xc4,0x86,0x26,0x30,0x69,0x98,0xc1,0xf2,0xe4,0x72,0xf8,0x23,0x8c,0xb8,0x3f,0xca, 0xba,0x17,0xe8,0xff,0x0,0x8f,0x4a,0x69,0xa7,0x71,0x3d,0x8,0x8,0x9f,0x68,0x2a, 0xf1,0xe7,0xdd,0x4f,0xf8,0xd3,0x18,0x5e,0x76,0x6b,0x73,0xeb,0x90,0x45,0x4d,0xa, 0x91,0x12,0x67,0x39,0x1e,0xbd,0x6a,0xbc,0x52,0x3f,0xda,0xf6,0x96,0x72,0x9,0x3c, 0x1e,0x82,0x94,0xac,0x30,0xcd,0xe8,0xc7,0x16,0xe7,0xe8,0x48,0xfe,0x94,0x37,0xda, 0x88,0xc1,0x8a,0x25,0xed,0xb9,0x5c,0x9c,0x7f,0xe3,0xb5,0x53,0x55,0x79,0xbe,0xd5, 0x12,0xc6,0x66,0xdb,0xb0,0x92,0x23,0xdc,0x9,0xe9,0xe9,0x55,0x2,0xde,0xe4,0x63, 0xed,0xa3,0x1f,0xef,0x1f,0xe7,0x50,0xe5,0xae,0xcc,0x34,0x34,0xd6,0x17,0xfd,0xe6, 0xc9,0x36,0xe4,0x60,0xf0,0x39,0x3f,0xe7,0x3f,0x9d,0x29,0x47,0xf2,0xc9,0xce,0x57, 0x76,0x4a,0xf1,0xe9,0xd3,0xf3,0xe6,0xb3,0xc7,0xdb,0xfb,0x3d,0xd8,0xfa,0xc6,0xf, 0xf3,0x5a,0x5f,0x33,0x50,0x5f,0xf9,0x69,0x75,0xff,0x0,0x7e,0x47,0xff,0x0,0x13, 0x4d,0x3f,0x26,0x5,0xd6,0x86,0x4d,0x89,0xb9,0xc1,0x1,0x48,0x5e,0x31,0x83,0x48, 0xd0,0x3f,0xdb,0x3,0x8d,0x82,0x4f,0x97,0xc,0x46,0x78,0x1d,0xbf,0x9f,0xe7,0x55, 0x3c,0xeb,0xe1,0xff,0x0,0x2d,0x6e,0xbf,0xef,0xc0,0xff,0x0,0xe2,0x69,0x8d,0x73, 0x78,0x3f,0xe5,0xbd,0xc0,0xfa,0xc0,0x3f,0xf8,0x9a,0x77,0x5d,0x98,0x17,0x62,0x85, 0xe3,0x92,0x46,0x40,0x9e,0x61,0xd,0xb8,0xe3,0x19,0x3d,0x7f,0x99,0x34,0x32,0x3b, 0x44,0x41,0x54,0xf2,0xf2,0xa7,0x0,0x72,0x31,0xff,0x0,0xea,0x15,0x9e,0xd7,0xb7, 0x4b,0xf7,0xa6,0x3e,0xc5,0xad,0xc8,0xff,0x0,0xa,0x8d,0xb5,0x4b,0xa5,0x18,0xfb, 0x44,0x3c,0xff,0x0,0x7a,0x3,0xfe,0x34,0x73,0x2b,0x58,0x9,0x2e,0x9f,0xfd,0x28, 0x89,0x6d,0x24,0x97,0x63,0x65,0x1a,0x34,0xc8,0xf6,0xa9,0x56,0xf5,0xff,0x0,0xe7, 0xc6,0xef,0xf0,0x45,0xff,0x0,0x1a,0xcf,0x6d,0x4e,0x6c,0x9f,0xf4,0x9b,0x65,0xc9, 0xed,0x19,0x1f,0xfb,0x35,0x49,0x67,0xa8,0xdc,0x49,0x79,0x2,0x34,0x91,0x49,0x1c, 0x8f,0xb4,0xe1,0x0,0x23,0x82,0x7b,0x1f,0x6a,0xce,0xee,0xe6,0x8a,0xd6,0x2e,0x4f, 0x24,0x77,0x51,0x8,0xe7,0xb0,0xbc,0x2a,0xe,0x71,0xe5,0xfb,0x63,0xb1,0xf4,0x26, 0x9f,0x25,0xc8,0x36,0xcc,0x5,0xad,0xca,0x85,0xc6,0x3,0x46,0x79,0x19,0xfa,0xd5, 0xab,0xc9,0xda,0xd6,0x35,0x65,0x8d,0x5c,0x6e,0xc6,0xb,0x6d,0xed,0xff,0x0,0xd6, 0xa7,0xcb,0xf3,0x41,0x9c,0x63,0x23,0x9e,0x87,0x1f,0xe7,0x15,0x5b,0x13,0x74,0x62, 0xc1,0x20,0x89,0x44,0x51,0x5a,0x5c,0x2a,0x8c,0x91,0xb9,0x30,0x2a,0x9a,0xa6,0x35, 0xdd,0x39,0x8e,0x72,0xb6,0x28,0x3f,0xf2,0x1c,0xb5,0xad,0x4,0xbf,0x68,0xb7,0x59, 0x76,0x85,0xdd,0x9f,0x97,0x39,0xe7,0x9a,0xcd,0x3c,0x6b,0x76,0x8d,0x83,0x81,0x64, 0xa3,0x1f,0xf6,0xce,0x43,0x45,0x27,0x6d,0x42,0x66,0xc,0x69,0x9f,0xc,0xd8,0xe4, 0xff,0x0,0xcb,0xd1,0xfd,0x23,0x2,0xb4,0xae,0x57,0x1a,0x8f,0x88,0x9b,0xb9,0x81, 0xff,0x0,0x92,0x55,0x2b,0x75,0xdd,0xe1,0xab,0x0,0x78,0xc5,0xd3,0x13,0xf9,0x1, 0xfd,0x6b,0x46,0xe7,0x1f,0x6d,0xd7,0x9c,0xf7,0x42,0x8,0xfc,0x54,0x56,0xfc,0xd6, 0x33,0xe5,0x18,0x6,0x25,0xd1,0x57,0xfd,0xb6,0xc1,0xff,0x0,0xb6,0xeb,0x55,0x13, 0xfe,0x3d,0x35,0xc6,0xfe,0xf5,0xdc,0x7f,0xfa,0x52,0xd5,0x75,0x17,0x33,0x68,0x78, 0x7,0xb9,0xe9,0xff,0x0,0x4d,0x41,0xfe,0x95,0x4e,0x18,0xdc,0xd9,0xea,0xe0,0xa9, 0xc9,0xbd,0x8f,0x3,0x1d,0x71,0x3b,0x37,0xf2,0xab,0x8c,0x92,0x21,0xc5,0xdc,0xd4, 0xb2,0x8d,0x8d,0x85,0xa0,0x12,0x32,0x8f,0xb2,0x42,0x3e,0x5f,0xf7,0x69,0xff,0x0, 0x64,0x3b,0xb2,0x6e,0x27,0xff,0x0,0xbe,0xf1,0x4f,0xb2,0x18,0xb2,0xb6,0x5c,0x72, 0x2d,0xe2,0x1f,0xf8,0xe0,0xa9,0xbb,0xd6,0x6f,0x72,0xba,0x10,0x18,0x84,0x65,0x17, 0x73,0x36,0x7b,0xb1,0xcd,0x38,0xc0,0x58,0xef,0x12,0xca,0x32,0x3a,0x2,0x31,0xfc, 0xa9,0xd3,0x7d,0xf8,0xcf,0xd7,0xfa,0x54,0xe0,0x7e,0xec,0xf,0x6a,0xeb,0x8d,0xb9, 0x51,0xc3,0x3b,0xf3,0xb2,0x9b,0x6e,0x41,0x8d,0x8c,0xfe,0xe3,0x15,0x16,0x77,0xe, 0x84,0x7d,0x45,0x5c,0x61,0x93,0xd8,0xd4,0x2e,0x2b,0x68,0x37,0x73,0x9e,0xa4,0x51, 0x55,0x85,0x44,0xc2,0xad,0x30,0xa8,0x59,0x6b,0xa9,0x33,0x96,0x48,0x80,0x8a,0x61, 0x5a,0x99,0x96,0x9a,0x45,0x68,0x99,0x84,0xa2,0x42,0x56,0x9b,0x8a,0x9b,0x14,0xd2, 0xb5,0x77,0x33,0x71,0x19,0x8a,0x4c,0x54,0x9b,0x68,0xdb,0x45,0xc5,0xca,0x30,0xa, 0x50,0x29,0xe1,0x69,0xdb,0x69,0x36,0x52,0x88,0xcc,0x53,0x80,0xa7,0x5,0xa7,0x85, 0xa1,0xb2,0x94,0x46,0x5,0xa7,0x85,0xa7,0x5,0xa7,0x85,0xa8,0x72,0x2d,0x44,0x8f, 0x6d,0x28,0x5a,0x93,0x6d,0x38,0x25,0x2e,0x62,0xf9,0x48,0xb6,0xd2,0x15,0xa9,0x58, 0x6d,0x19,0xa6,0x6f,0x5c,0xe2,0xa5,0xcd,0x2d,0xc6,0xa0,0xd8,0xcd,0xbe,0xd4,0x15, 0xa9,0x30,0xd,0x1b,0x69,0xa9,0xa6,0x27,0x16,0x40,0x45,0x34,0x8a,0x9c,0xad,0x34, 0xad,0x52,0x91,0xe,0x24,0x4,0x53,0x76,0xd4,0xc4,0x53,0x48,0xaa,0x4c,0x87,0x12, 0x1c,0x52,0x6d,0xa9,0x4a,0xd2,0x6d,0xaa,0xb9,0x1c,0xa4,0x5b,0x68,0xc5,0x48,0x45, 0x21,0x5a,0x77,0x17,0x28,0xcc,0x51,0x8a,0x7e,0xda,0x36,0xd1,0x70,0xe5,0x19,0x8a, 0x31,0x4f,0xdb,0x46,0xda,0x2e,0x1c,0xa3,0x31,0x46,0xda,0x95,0x23,0xde,0xe0,0x7a, 0xd6,0x8c,0x5a,0x71,0xe0,0xed,0xc8,0xce,0x33,0x53,0x29,0xa8,0xee,0x5c,0x28,0xca, 0x7b,0x19,0x7e,0x59,0xc0,0xe0,0xf3,0x4a,0x90,0x3b,0xfd,0xd5,0x3d,0x33,0x5d,0xa, 0x69,0x48,0xcc,0x9,0xce,0x3f,0x9d,0x58,0x5d,0x3d,0x56,0x30,0xa8,0xb8,0xac,0x5e, 0x21,0x1d,0x51,0xc1,0x49,0x9c,0xa1,0x42,0x3b,0x73,0xe9,0x43,0x46,0xca,0x40,0x23, 0x4,0x8c,0xd7,0x5a,0xba,0x6a,0xe7,0x71,0x18,0x6c,0x63,0x23,0xbd,0x37,0xfb,0x2a, 0x33,0x92,0x7d,0x31,0xf5,0xa5,0xf5,0x94,0x37,0x81,0x97,0x43,0x92,0xdb,0x46,0xda, 0xe9,0x26,0xd0,0xd4,0xae,0xe8,0xf8,0x3c,0xc,0x55,0x3b,0x8d,0x16,0x58,0xf9,0x53, 0x91,0x8a,0xd2,0x35,0xe2,0xcc,0x65,0x84,0xa9,0x1e,0x86,0x3e,0xda,0x31,0x56,0x24, 0x81,0xe2,0x24,0x32,0xd4,0x65,0x79,0xad,0x14,0x93,0x39,0xdc,0x5a,0xdd,0x11,0xe2, 0x8d,0xb4,0xfd,0xb8,0xa5,0xc5,0x17,0xe,0x56,0x47,0x8a,0x31,0x52,0x62,0x8c,0x51, 0x70,0xe5,0x19,0x8a,0x36,0xd3,0xc0,0xa5,0xc5,0x17,0xe,0x52,0x3c,0x52,0xe2,0x9f, 0xb6,0x8d,0xb4,0xae,0x3e,0x53,0xa4,0xf0,0x78,0xff,0x0,0x8f,0xdf,0xf8,0x7,0xfe, 0xcd,0x5d,0x45,0x73,0x3e,0x11,0x18,0xfb,0x67,0xfc,0x3,0xff,0x0,0x66,0xae,0x9a, 0xbc,0xdc,0x47,0xf1,0x19,0xef,0xe0,0xbf,0x81,0x1f,0x9f,0xe6,0x71,0x1f,0x11,0x64, 0x9,0x15,0x8a,0xb3,0x94,0x56,0x12,0xe5,0x87,0x6f,0xb9,0x5c,0x66,0x95,0x7a,0xa9, 0x33,0x94,0x94,0xb2,0x64,0x19,0xa,0xb6,0x54,0x64,0x60,0x12,0x47,0x1d,0xab,0xb0, 0xf8,0x91,0x66,0xb7,0xb1,0xe9,0xd0,0xbf,0x9b,0xb1,0xbc,0xc0,0xc2,0x3c,0x12,0x46, 0x50,0xf4,0x3f,0x4f,0x4a,0xf3,0x8b,0xbb,0xb,0x84,0x9e,0xda,0xc7,0x4c,0x2c,0x63, 0x9a,0x55,0xfb,0x54,0xaa,0xb9,0x20,0x6e,0x1f,0x78,0xf6,0x0,0x67,0x8a,0xf9,0xdc, 0x5c,0x39,0xab,0xcb,0x5e,0xdf,0x91,0xee,0x53,0x9d,0x3f,0xab,0x72,0xbd,0xce,0xae, 0x59,0xf7,0x58,0x5,0x91,0xd5,0xa0,0x67,0xc0,0xf3,0x43,0x74,0xc1,0xe3,0xa8,0x38, 0x7,0xbd,0x2d,0xbe,0xad,0xa9,0xf9,0x3e,0x55,0xbd,0xf4,0x52,0x4,0x50,0x8c,0x4c, 0x6a,0xfd,0x3d,0x49,0x39,0x35,0x88,0x5a,0xde,0x3b,0x86,0xb6,0x8a,0x24,0xc,0xe1, 0xb1,0xd4,0x36,0x3b,0x60,0xe7,0x3,0x39,0xcf,0x4a,0xcf,0xd2,0xef,0x5,0x9d,0xe8, 0xb7,0xd8,0xb1,0x92,0x48,0x95,0xd9,0x41,0x18,0x0,0x93,0xcf,0xe1,0x5c,0xd4,0xe5, 0x28,0x75,0x8,0x60,0xe5,0x38,0x39,0x41,0xdd,0x9d,0xfd,0x9d,0xf6,0xaf,0xba,0x4, 0x53,0x63,0x2b,0xb3,0x6d,0xe,0x63,0x28,0x3a,0x64,0xf4,0x6f,0x40,0x7a,0xa,0xb4, 0xfa,0xae,0xb4,0x66,0x96,0x37,0xd3,0xb4,0xf6,0x64,0x6d,0xa4,0xb3,0xb0,0xcf,0x0, 0xf1,0xf2,0x9f,0x5a,0xe7,0x52,0xe6,0xde,0xed,0xa3,0xff,0x0,0x56,0xc9,0x19,0xdd, 0xb7,0x70,0xc1,0xe3,0x8f,0x71,0x5a,0x76,0xb3,0xca,0x90,0xbc,0x82,0xd4,0x64,0xb0, 0x21,0x43,0x1,0x81,0x8e,0xe4,0xf5,0xae,0xb8,0x62,0xa3,0x7b,0x1c,0xe,0x4e,0x3a, 0x4b,0x72,0xdf,0xf6,0x8e,0xa2,0x3,0x1f,0xec,0x9d,0x3e,0x50,0x3e,0xf2,0xb3,0x95, 0x3,0xe9,0xfb,0xbe,0x6a,0xa3,0x6a,0x92,0x81,0x99,0x3c,0x29,0xa7,0x9f,0x7f,0x30, 0xff,0x0,0xf1,0xaa,0xb1,0x6f,0x3b,0xfd,0xa6,0xe0,0x79,0x79,0xc,0xaa,0xc7,0x69, 0xf9,0x57,0xf1,0xaa,0xb7,0x63,0x74,0x69,0x24,0x8e,0xe,0xd5,0x27,0x23,0xa6,0x18, 0xc,0x66,0xb6,0x8d,0x6b,0x68,0x81,0x49,0x96,0xd2,0xfd,0x8a,0x86,0xff,0x0,0x84, 0x5e,0xd4,0x29,0xe4,0x5,0x72,0x3f,0xf6,0x9d,0x5d,0xb1,0xd5,0x27,0x59,0x99,0x20, 0xd0,0x3c,0xa7,0x2b,0x93,0xb6,0x40,0x37,0x63,0xfe,0x2,0x3d,0x6a,0x2d,0x38,0xa0, 0xd3,0xad,0xbe,0x75,0xcf,0x93,0x1e,0x4e,0x47,0x5c,0x73,0x57,0xf4,0xd2,0xe,0xac, 0xfb,0x48,0x23,0xca,0x39,0x23,0x4,0xe,0x45,0x74,0x26,0xfa,0xd,0x33,0x2e,0x4b, 0x9b,0x22,0x3,0xbf,0x87,0x64,0x3b,0xbb,0xac,0x83,0xa7,0xe2,0x45,0x45,0xf6,0xcd, 0x31,0xfe,0x5f,0xec,0x1b,0xcf,0x4c,0x2d,0xc2,0x8f,0xfd,0xa8,0x2a,0xeb,0x46,0xd1, 0x83,0x1a,0xe4,0x60,0x36,0xdc,0x1c,0x7a,0xd2,0x28,0xcd,0xb4,0xef,0x30,0x69,0x44, 0x6a,0xee,0xaa,0xce,0xd8,0x38,0x55,0xf7,0xae,0x7e,0x77,0x7d,0x4a,0xba,0x2b,0x2c, 0xba,0x6b,0xf0,0x34,0x5d,0x55,0x40,0xf4,0xb8,0x1f,0xfc,0x76,0x9b,0x2c,0xfa,0x3a, 0xf,0x9f,0x4e,0xd4,0xc6,0x3f,0xe9,0xb6,0xef,0xfd,0x9e,0xa4,0xd,0x84,0xc2,0xdb, 0x43,0x9c,0xf4,0x12,0xba,0xff,0x0,0x5a,0x96,0x36,0x97,0xcb,0xca,0xdb,0x2b,0x36, 0x71,0xb4,0x5c,0x37,0xf8,0x1a,0x7c,0xfe,0x42,0x52,0x45,0x7b,0xb,0xad,0x9,0x6f, 0x22,0x9e,0x2b,0x5d,0x43,0xcd,0x56,0xc2,0xf9,0x80,0xb0,0x4,0xf1,0xea,0x6b,0x7b, 0x5a,0x76,0x48,0xad,0xb6,0xbb,0x29,0x69,0x82,0x92,0xa4,0xa9,0x3,0x6b,0x1f,0xe8, 0x2b,0x1c,0xdd,0x6c,0xbd,0xb5,0x43,0x6e,0x54,0x19,0xe3,0x5,0xbc,0xe6,0x6c,0x65, 0xb1,0x8c,0x11,0x5b,0x1a,0xd8,0x3f,0x65,0x80,0xe3,0x24,0x4c,0x39,0xfc,0x8,0xad, 0x96,0xb4,0xdb,0x2,0x92,0x5f,0x5d,0xdb,0xa3,0x17,0x99,0x67,0x8d,0x46,0x48,0x95, 0x70,0xd8,0x1e,0xe3,0x8f,0x7e,0x95,0x33,0xde,0x58,0x47,0x2c,0x92,0x36,0x9e,0xfb, 0xd1,0xf0,0xcc,0xa8,0x3b,0x67,0x9e,0xbe,0xc6,0xaa,0x5d,0x2e,0x6d,0x67,0x1c,0xf3, 0x1b,0xf,0xd2,0xad,0x59,0x12,0x75,0x1b,0xe5,0x3d,0xb,0xff,0x0,0xf5,0xff,0x0, 0xa9,0xa8,0x84,0x9b,0x29,0xa1,0xd1,0xea,0x96,0x13,0xbe,0xd3,0xe6,0xc4,0x4e,0x31, 0x95,0xe3,0xd7,0xa8,0xce,0x2a,0xfc,0x1,0x7c,0xbc,0xa4,0x81,0xc1,0x39,0x4,0x73, 0x5c,0xe7,0xdb,0x24,0xb3,0x7f,0xb3,0xdb,0xb0,0x50,0xb8,0x32,0x12,0x32,0x77,0x63, 0xa7,0xe5,0x8f,0xce,0xa1,0xfb,0x6d,0xd4,0x6d,0xe6,0x2c,0xf2,0x1f,0xab,0x92,0x3f, 0x2e,0x94,0xd5,0x65,0x17,0x66,0x66,0xe4,0x91,0xd7,0x52,0x57,0x3d,0x67,0xae,0xcc, 0x25,0x2,0xe4,0x87,0x8c,0xf5,0x3b,0x7e,0xed,0x6d,0xc5,0x71,0x15,0xc4,0x7b,0xe1, 0x91,0x64,0x4f,0x55,0xae,0x88,0xd5,0x52,0x15,0xd3,0x26,0xdd,0x8a,0x5c,0xd4,0x79, 0xe6,0x9c,0x2b,0x50,0x1e,0x29,0x73,0x4d,0xcd,0x2e,0x69,0x14,0x14,0x1a,0x4c,0xd1, 0x4a,0xe1,0x60,0xc5,0x26,0x29,0x73,0x46,0x68,0xb8,0x58,0x6d,0x14,0x1a,0x4c,0xd0, 0xd8,0x58,0xce,0x94,0x7e,0xfa,0x4e,0xbf,0x78,0xd3,0x29,0x66,0x9a,0x24,0x9e,0x40, 0xf2,0x22,0x9d,0xdd,0x18,0xe2,0xa2,0x37,0x31,0x63,0xe5,0x70,0xe7,0xd1,0xe,0x4d, 0x70,0xcf,0xe2,0x36,0x45,0xc4,0x4,0xc6,0x70,0x7b,0x57,0x3e,0x93,0x9f,0xec,0xd8, 0xa1,0x59,0x84,0x13,0x6c,0x2d,0x13,0xb1,0xda,0xac,0x4e,0x38,0xdd,0xda,0xb7,0x21, 0x95,0x99,0x7f,0xe3,0xde,0x51,0x9e,0x85,0x80,0xff,0x0,0x1a,0xe6,0xae,0x6c,0x6d, 0xc6,0x90,0x6e,0x9e,0x34,0x2d,0x1a,0xe,0x5e,0x47,0x1c,0x1,0xd3,0x1c,0x83,0x43, 0xbf,0x2b,0xb1,0x9c,0xf4,0x68,0xc8,0x6b,0x88,0xc6,0xa1,0xe5,0x4e,0xbe,0x54,0xfd, 0xa7,0x12,0xab,0xc9,0xeb,0xd5,0x49,0xe2,0x96,0xda,0xc2,0xd0,0x4c,0x12,0x42,0x5a, 0x46,0xc,0x56,0x55,0x94,0xe1,0xfb,0xe0,0xaf,0x23,0x3d,0x7f,0x2a,0xa3,0x67,0x71, 0x69,0x7d,0x32,0xdb,0xb5,0x8d,0xba,0xb3,0x36,0x55,0xa0,0x22,0x37,0x8c,0xe3,0x39, 0x24,0xe3,0x8e,0x3f,0x1f,0x4a,0xb4,0x4e,0xb,0xc4,0xa2,0x7f,0x91,0xd9,0x4e,0xdf, 0x98,0xc,0x64,0x67,0x81,0x8c,0x7d,0x45,0x60,0xd5,0x8c,0xef,0x26,0xde,0x86,0x9d, 0x9d,0xd3,0xe9,0xd0,0x5c,0x47,0x4,0x68,0x6e,0x6,0xc4,0x49,0x94,0x63,0xe5,0xdc, 0x72,0x48,0x3e,0xd5,0x7d,0x75,0x7b,0xa9,0x92,0xde,0x35,0x8a,0x39,0x27,0x55,0x2a, 0x59,0xd5,0x4a,0x16,0x19,0xe7,0x8e,0xbd,0x33,0xc0,0xae,0x5e,0x58,0xd2,0xdc,0x9f, 0xb5,0x5f,0xcb,0x1a,0x6d,0x6f,0x28,0xa2,0x96,0x2a,0xc0,0xfb,0x67,0x20,0x83,0x8a, 0xd5,0xd1,0x6e,0xa5,0xf3,0xb4,0xc4,0x8e,0x19,0xbc,0xa8,0x9b,0xfd,0x65,0xc2,0x85, 0xdc,0x70,0xc5,0x8f,0x4e,0x9d,0x3b,0xd3,0x77,0x8,0x37,0xb3,0x34,0xad,0xde,0xe5, 0x6c,0x6e,0xaf,0x2e,0xc,0x72,0x6d,0x90,0x2f,0x3,0x68,0x4,0x8c,0x9c,0xf,0xc6, 0xb6,0xff,0x0,0x74,0x9a,0x89,0x80,0xa3,0x7e,0xe6,0xdb,0xcc,0xd,0xbb,0xd3,0x1f, 0xd0,0xd6,0x17,0x9e,0x25,0xd1,0xb5,0x4,0x52,0x1f,0xf7,0xe1,0xc3,0xe,0x84,0x74, 0xfe,0x95,0xb0,0xc4,0xbe,0xbd,0x39,0xe9,0xba,0xc0,0xe3,0xf2,0x15,0xbd,0x38,0xab, 0x23,0x46,0xc7,0x42,0x61,0x96,0xd6,0xd5,0xbe,0x75,0xfb,0x43,0x90,0x31,0x83,0x8c, 0x1d,0xbf,0xfd,0x7a,0xda,0xf2,0xa6,0xdd,0x95,0x9c,0x85,0xec,0xac,0xb9,0xae,0x7a, 0xd8,0xe6,0xc7,0x47,0x23,0xbc,0xed,0xff,0x0,0xa3,0x7,0xf8,0xd7,0x4e,0x4e,0x32, 0x40,0x39,0xeb,0xc5,0x69,0x14,0xac,0xc8,0xb9,0x11,0x59,0x86,0x70,0xd1,0x96,0xff, 0x0,0x74,0x8f,0xeb,0x51,0x9f,0xb5,0xe7,0x23,0xc8,0xcf,0xe3,0x52,0xdb,0xe7,0xc8, 0x4d,0xdb,0xb3,0x8e,0xfd,0x6a,0x24,0x91,0x8d,0xe3,0x26,0xf7,0xc6,0xf,0x51,0xc5, 0x36,0x90,0xca,0xf2,0xbc,0xb1,0x5d,0x7,0x98,0x3,0x94,0xc0,0x29,0xcd,0x58,0xb6, 0x97,0xce,0x67,0x0,0x70,0xb8,0xc6,0x47,0x34,0x49,0x1a,0xbd,0xd2,0x86,0xe9,0xb0, 0xfa,0xfb,0x54,0xd1,0xc6,0x91,0xe4,0x22,0xe3,0x3d,0x6a,0xa0,0x9d,0xc0,0x76,0x29, 0x40,0xa5,0xa5,0xad,0x89,0x1b,0x8a,0x31,0xed,0x4e,0xeb,0x46,0x29,0x80,0xcc,0x52, 0x15,0xa9,0x31,0x41,0x14,0xac,0x5,0x1b,0xc9,0x23,0xb7,0x45,0x67,0x45,0x60,0xcd, 0xb7,0x9c,0x71,0xd4,0xe7,0xf4,0xac,0x46,0xf2,0x8e,0xb3,0x14,0xd1,0xaa,0x94,0xdc, 0xbc,0x47,0xc8,0xce,0xd6,0xff,0x0,0xeb,0x57,0x41,0x73,0x6c,0x97,0x31,0x84,0x62, 0xc3,0x7,0x20,0xaf,0x5a,0xc8,0x10,0xf9,0x3a,0xbc,0x51,0x3,0x90,0xac,0x18,0x71, 0x8e,0xaa,0xdf,0xe1,0x58,0x55,0xb9,0x71,0x2d,0xcd,0x2c,0x37,0x8,0x16,0x5b,0x6b, 0x82,0x1,0xcf,0x8,0x7d,0x31,0xda,0x9d,0x25,0xc0,0x68,0x18,0x8,0xe6,0x18,0x18, 0xe6,0x36,0xa9,0xae,0x26,0x68,0x54,0x32,0xa2,0xb6,0x7a,0x82,0xc4,0x62,0x87,0x6f, 0x32,0xd8,0x38,0x3,0x91,0x9f,0xa5,0x66,0xfc,0xca,0xd0,0xc8,0x49,0x92,0x5,0x9, 0x1d,0xad,0xc0,0x51,0x9e,0xa9,0x8f,0x7a,0xa1,0x20,0x76,0xba,0x91,0xff,0x0,0x89, 0x22,0xd9,0x19,0xc7,0x21,0x42,0x81,0xfc,0x89,0xad,0x68,0xa5,0xf3,0xed,0x44,0x84, 0x60,0x9c,0xe4,0x56,0x53,0x73,0xad,0x6c,0x27,0x83,0x61,0xbb,0x1e,0xfb,0x2a,0x22, 0xaf,0xb0,0xe4,0xd1,0x12,0xc2,0x4,0x70,0xa6,0x0,0x4f,0x33,0x21,0x78,0xc7,0x2c, 0x1,0x3f,0xca,0x97,0x6b,0x11,0x72,0xcc,0x72,0xdb,0x81,0x90,0x92,0x33,0x9d,0xc7, 0x39,0xfc,0x76,0xd5,0x4c,0xe7,0x4b,0xd3,0x1b,0x3c,0xb5,0xd1,0x19,0xf6,0xdc,0xb5, 0x62,0x41,0xfb,0xfd,0x73,0x1d,0x3c,0xc4,0xfc,0x3f,0x7b,0x5a,0x28,0xb6,0xae,0xc5, 0xb8,0xf5,0x50,0x67,0xb6,0x5d,0xc7,0xe7,0x45,0xda,0x37,0x75,0xce,0x7a,0x7e,0x39, 0xa8,0x11,0xe3,0x36,0x81,0xc3,0xaf,0xcb,0x2a,0x86,0x39,0xcf,0x51,0xc6,0x7f,0x1c, 0xd3,0xe1,0x5c,0xea,0x7e,0x1d,0x3f,0xf4,0xc5,0x4f,0xea,0xd5,0x94,0x84,0x8f,0xe, 0xea,0x2d,0xcf,0xcb,0x79,0x10,0x1f,0x9e,0x7f,0xc6,0xaf,0x93,0x41,0x5d,0x5e,0xc7, 0x41,0x2,0x4d,0x24,0x11,0x94,0x9c,0x28,0xf2,0xa3,0xc7,0xcb,0x9f,0xf9,0x66,0xb4, 0xf1,0x6f,0x71,0x9e,0x6f,0x1f,0xf0,0x45,0xfe,0xb5,0x25,0xa0,0xc4,0xa,0x7,0x41, 0x1c,0x7f,0xfa,0x2,0xd4,0xe0,0x73,0xd2,0xa6,0xca,0xe3,0x7b,0x15,0xcc,0x6c,0xaf, 0x18,0x69,0x19,0xf3,0x9e,0x58,0xe,0x3f,0x21,0x4f,0x68,0x2e,0xe,0x19,0x6e,0x70, 0x8,0xce,0xd6,0x40,0x47,0xf4,0xa7,0xc9,0x8d,0xe9,0xf8,0xd5,0x80,0xf,0x94,0xbf, 0x4a,0xe9,0x8b,0x56,0x48,0xe2,0xa9,0x16,0xa4,0xd9,0x45,0xa4,0x78,0xfe,0xfc,0x52, 0x37,0xfb,0x4a,0xa3,0x1f,0xce,0x99,0xb8,0x38,0xc8,0x56,0x1f,0x51,0x8a,0xba,0x46, 0x3a,0x75,0xa8,0x5c,0x64,0xf3,0x5b,0xd3,0x6e,0xf6,0x30,0xa9,0x14,0x55,0x61,0x51, 0x11,0x56,0x4a,0xd4,0x4c,0xb5,0xd6,0x99,0xc9,0x28,0x95,0xd8,0x53,0x8,0xab,0xc, 0x29,0x84,0x56,0x89,0x98,0x38,0x90,0x11,0x4d,0x22,0xa7,0x2b,0x4d,0xdb,0x57,0x72, 0x1c,0x48,0xb1,0x4a,0x7,0xb5,0x49,0xb6,0x80,0xb4,0x73,0xb,0x94,0x8c,0x2d,0x3c, 0x2d,0x38,0x2d,0x3c,0x2d,0x27,0x21,0xa8,0x8c,0xb,0x4e,0xb,0x4f,0xb,0x4e,0x55, 0xa9,0x72,0x2d,0x44,0x68,0x5a,0x70,0x5a,0x90,0x2d,0x38,0x2d,0x4b,0x91,0xa2,0x89, 0x18,0x5a,0x76,0xda,0x25,0x71,0xa,0x67,0x19,0x3d,0xa9,0x90,0xcf,0xbd,0x1b,0x23, 0x95,0xac,0xa5,0x56,0x31,0x76,0x66,0x8a,0x9b,0x6a,0xe3,0x27,0xe1,0x71,0xeb,0x55, 0x31,0x86,0xa9,0xe4,0x6d,0xed,0x9e,0xdd,0xaa,0xc,0x60,0x90,0x6b,0x82,0xad,0x5e, 0x69,0x68,0x74,0x42,0x9d,0x91,0x61,0x7e,0xe1,0x26,0x9e,0xbc,0xad,0x57,0x32,0x15, 0x3,0x1d,0x6a,0x40,0xd8,0x0,0xd6,0x94,0xeb,0xdb,0x42,0x65,0x44,0x90,0x8a,0x69, 0x5a,0x69,0x62,0x46,0x6a,0x44,0xf9,0x96,0xba,0xa1,0x59,0x49,0x9c,0xf2,0xa4,0xd1, 0x11,0x5a,0x69,0x5a,0xb0,0x56,0x98,0x56,0xba,0x14,0x8c,0x5c,0x48,0xa,0xd3,0x71, 0xed,0x53,0xed,0xa6,0x95,0xaa,0xe6,0x21,0xc4,0x8b,0x14,0x85,0x6a,0x52,0xb4,0xd2, 0x29,0xf3,0x13,0xca,0x47,0xb6,0x8d,0xb5,0x26,0x28,0xc5,0x3b,0x89,0x21,0x9b,0x68, 0xdb,0x52,0xac,0x6c,0xcc,0x15,0x46,0x49,0xad,0x8,0x74,0x4b,0x89,0x58,0x6e,0xc2, 0xaf,0x7a,0x99,0x54,0x51,0xdc,0xd2,0x14,0xa5,0x37,0x64,0x89,0x34,0x8d,0x37,0xcd, 0x2,0x77,0xce,0x33,0xc5,0x6d,0x8b,0x64,0x3,0x3,0x3d,0x73,0x52,0xdb,0xdb,0x25, 0xbc,0xb,0x12,0xe7,0x0,0x53,0xc8,0xaf,0x3e,0x75,0x5c,0x9d,0xcf,0x6a,0x8d,0x8, 0xc2,0x36,0xb1,0x18,0x45,0x1d,0x5,0x29,0x14,0xe2,0x31,0x45,0x45,0xcd,0x6c,0x33, 0x14,0x63,0x34,0xe3,0x45,0x17,0xb,0xd,0x22,0x98,0xd1,0x86,0x18,0xc5,0x4b,0x45, 0x17,0xb,0x18,0x97,0xd6,0x79,0x4,0x85,0xac,0x39,0x22,0xda,0xf8,0xae,0xd8,0xa8, 0x23,0x4,0x64,0x56,0x5e,0xa1,0xa6,0x2c,0xb1,0xb3,0xc4,0x3e,0x61,0xce,0x2b,0xa2, 0x95,0x6b,0x68,0xce,0x1c,0x4e,0x16,0xeb,0x99,0x1c,0xc9,0x5f,0x6a,0x2,0xd4,0xa5, 0x48,0x62,0xf,0x51,0xeb,0x48,0x5,0x76,0x73,0x1e,0x67,0x2b,0x19,0xb6,0x8d,0xb5, 0x2e,0xda,0x36,0xd1,0x70,0xe5,0x22,0xdb,0xed,0x46,0xdf,0x6a,0x97,0x6d,0x1b,0x68, 0xe6,0xe,0x52,0x3d,0xb4,0x6d,0xa9,0x76,0xd1,0xb6,0x97,0x30,0xf9,0x4d,0xef,0xa, 0xc,0x7d,0xaf,0xfe,0x1,0xff,0x0,0xb3,0x57,0x49,0x5c,0xf7,0x85,0xc6,0x3e,0xd7, 0xff,0x0,0x0,0xff,0x0,0xd9,0xab,0xa1,0xae,0xa,0xdf,0x1b,0x3d,0xac,0x22,0xb5, 0x15,0xfd,0x75,0x3c,0xcf,0xe2,0xef,0xda,0x76,0x69,0x7e,0x4a,0x3b,0xc5,0xb2,0xe3, 0xcc,0x55,0x62,0x1,0xff,0x0,0x57,0x8c,0x80,0x46,0x47,0x5f,0x5f,0xa5,0x72,0x1a, 0x5d,0xcb,0xdb,0x5a,0xa4,0xa1,0x97,0x64,0xaa,0xa3,0x60,0x8c,0xe7,0xfe,0x2,0x1, 0x3,0x8e,0x7a,0xd7,0xa0,0xfc,0x47,0x5c,0x9d,0x2c,0xef,0xc0,0x53,0x29,0x71,0xc8, 0xf9,0x70,0xb9,0x39,0xe9,0xc1,0xc7,0x5f,0x5a,0xf3,0x4b,0x8d,0x3b,0x7e,0x85,0x67, 0xe5,0x18,0x5e,0x57,0x95,0xc4,0xec,0xbf,0x75,0x83,0x1c,0xe7,0x3e,0x80,0xc,0x71, 0x5e,0x1e,0x29,0x39,0x55,0x6b,0xb1,0xec,0x61,0xb9,0x2a,0xc6,0x34,0x5f,0x7d,0x5f, 0x62,0xd5,0xe5,0xdb,0xc9,0xa7,0xde,0x5e,0xc1,0x2,0x1b,0xa4,0xc0,0x54,0x2d,0x8c, 0x80,0xaa,0x9,0xe7,0x8f,0x5f,0xca,0xaa,0xe9,0xa,0x75,0x29,0xd2,0x51,0x6f,0x14, 0x73,0x43,0xc1,0x12,0x6e,0x3f,0x27,0x5e,0x3d,0x7a,0xd6,0x2b,0xce,0x34,0x49,0x82, 0x47,0x75,0x21,0x9d,0x98,0x4,0x8a,0x0,0x1f,0xd0,0xee,0x22,0xb5,0xb4,0xef,0x11, 0xb,0x8b,0xa9,0xa3,0x58,0xd6,0x6b,0xad,0xa4,0xa9,0x8e,0x1d,0xa7,0x39,0xc1,0x25, 0xb1,0x91,0xfe,0x78,0xac,0xa7,0x41,0xa8,0xfb,0xa8,0xef,0x94,0xe1,0x4a,0x94,0xdd, 0x27,0xa2,0xef,0xbf,0xc8,0xe8,0x5f,0x4c,0xb8,0x86,0xe6,0x51,0x1c,0x29,0x71,0x1c, 0xbc,0xc7,0x83,0x8d,0xa4,0xf3,0x82,0x0,0xc9,0xfa,0xa,0xa8,0xed,0x7c,0x81,0xa2, 0x59,0x2d,0x44,0xf1,0x1c,0x6c,0x47,0x38,0x6e,0xfc,0x13,0x9c,0x1f,0x62,0x3b,0x54, 0x70,0xc4,0xf7,0x4c,0x9b,0xae,0x59,0x10,0xb1,0x46,0x48,0x9b,0x96,0xc7,0x55,0x38, 0xfb,0xa3,0xeb,0x5a,0x97,0xda,0x66,0x9f,0xa8,0xda,0xb,0x5b,0xa8,0x21,0x8c,0x31, 0x52,0x8c,0x40,0xf9,0x0,0x20,0x63,0x83,0xd3,0xf1,0xef,0x5c,0x9c,0xaa,0x2d,0x36, 0x79,0x2a,0x72,0xbf,0xb4,0xdd,0x96,0xad,0x6f,0x26,0x89,0x15,0x27,0x74,0xf3,0x1b, 0x1,0x93,0x76,0x46,0x3d,0xfb,0x64,0x57,0x5d,0xa3,0x4c,0x97,0x16,0x10,0x85,0x92, 0x2c,0xc6,0x82,0x3f,0x56,0xc8,0x18,0xe4,0x7e,0x15,0xe6,0xf6,0xba,0x24,0xd6,0x9a, 0xa6,0x25,0xba,0x61,0x68,0x91,0xfe,0xef,0x6b,0x92,0x9,0xe7,0x8e,0x78,0x7,0x8e, 0x95,0xb5,0x15,0xea,0xe1,0xc5,0xb4,0x85,0xdd,0x1b,0xef,0x46,0xb9,0x3b,0xba,0x75, 0xfa,0xe3,0xf3,0xae,0xb8,0xd4,0x8c,0x1a,0xf3,0x13,0x72,0x93,0xb2,0x47,0x58,0x8e, 0xe9,0xe2,0x3,0x7,0xda,0x24,0xdb,0x24,0x5f,0x75,0x97,0x3,0x77,0xff,0x0,0xa8, 0x56,0xdc,0x46,0x10,0xe,0xcc,0x67,0xb9,0xc7,0xd2,0xb8,0xa3,0xfd,0xa1,0xe6,0xa3, 0xcd,0x76,0x4,0xc4,0xe,0x24,0x90,0x86,0x53,0xf8,0xc,0x77,0xad,0xab,0x4b,0xdb, 0xdb,0x66,0xd,0x75,0x32,0xcd,0xe,0x30,0x54,0x28,0xc8,0xf4,0xc1,0xe2,0xba,0xa9, 0xd5,0x8a,0xd0,0x7e,0xce,0x44,0xb2,0x5b,0xdc,0xac,0xd2,0x66,0x19,0x19,0x7c,0xc6, 0x65,0x29,0x8e,0x84,0xe7,0xb9,0xa0,0x5b,0xcf,0x24,0x73,0x2b,0x44,0xea,0x1a,0x26, 0x51,0xb8,0xe,0xa6,0xa9,0xdd,0x5e,0xeb,0x32,0x4c,0x5e,0xd4,0xda,0xac,0x47,0xee, 0xac,0xd1,0x65,0x80,0xf7,0xe6,0xa0,0xfb,0x7f,0x88,0xd7,0x39,0xfe,0xce,0x6f,0x4f, 0xdd,0x63,0xff,0x0,0x66,0xa4,0xbd,0x9a,0x63,0xf6,0x52,0x2d,0x4a,0x97,0x0,0xee, 0x16,0xb7,0x7,0x9c,0x90,0xb1,0xe7,0x15,0x24,0xd,0x26,0xc2,0x5a,0x1b,0x85,0x39, 0xe8,0x61,0x6f,0xf0,0xaa,0xa9,0xa9,0xf8,0x83,0x6f,0xcf,0x6f,0xa7,0x93,0xdb,0x8, 0x7f,0xf8,0xba,0x95,0x75,0x3d,0x64,0x2f,0xcd,0x6b,0x68,0x4f,0xb0,0x23,0xff,0x0, 0x67,0xaa,0xbd,0x3e,0xa4,0xba,0x52,0x44,0x57,0x49,0x3b,0x5e,0xc4,0x22,0x82,0x66, 0xf9,0xe3,0x60,0x4c,0x24,0x1,0x86,0x7,0xae,0x2b,0x73,0x59,0x1f,0xe8,0x6a,0x4f, 0x1,0x65,0x46,0x3e,0xc3,0x76,0x2b,0x20,0x6b,0x1a,0xca,0xba,0xe7,0x4c,0x81,0xd3, 0x3f,0x36,0xd9,0x40,0x38,0xfa,0x12,0x6a,0xcd,0xd6,0xbf,0x6b,0xb0,0x24,0x11,0x79, 0xdb,0xbe,0xf0,0x74,0x2a,0x0,0xfc,0x46,0x9,0xcd,0x5a,0x9c,0x14,0x5e,0xa1,0xcb, 0x2e,0xc4,0x32,0x82,0x6d,0xdf,0xdd,0xf,0x6f,0x6a,0xad,0x7b,0x75,0x3c,0x4b,0x7b, 0x25,0xb1,0xc4,0x84,0xa1,0x7,0x1d,0x8a,0xa6,0x4f,0xe5,0xfc,0xe9,0x6d,0xaf,0x74, 0xeb,0x81,0x22,0xdd,0xda,0xb5,0xb9,0x1f,0xf2,0xd2,0x3c,0x80,0x73,0xeb,0xb7,0xfa, 0xd3,0x35,0x43,0x69,0x6b,0xb6,0x6b,0x4b,0xf4,0xf3,0x1f,0x6a,0xf9,0x26,0x50,0xac, 0x47,0x3,0x23,0xe8,0x31,0xd6,0xb2,0x6f,0xdd,0xba,0x1b,0x4f,0xb1,0x9f,0xf6,0x83, 0x73,0x33,0xdc,0x1c,0x7e,0xf4,0x2b,0x36,0x3a,0x67,0x18,0x3f,0xca,0x94,0xcc,0x14, 0x85,0xc7,0x27,0xa5,0x42,0xf3,0x84,0x47,0x64,0xc1,0xc7,0xf0,0xb7,0xf1,0x7a,0x9a, 0x62,0xcb,0xbe,0x20,0xcd,0x8d,0xdd,0x54,0x1,0xda,0xb9,0x97,0x99,0xcd,0x2d,0xf5, 0x25,0xc9,0x57,0x4,0xe,0x7b,0xe2,0xad,0x5b,0x5c,0xc9,0x6b,0x22,0xc9,0x1b,0x30, 0x1b,0x86,0xe5,0x1d,0xd,0x65,0x99,0xd0,0xb9,0x40,0x41,0x39,0xea,0x69,0xd0,0xce, 0xc5,0x49,0x19,0xc1,0x19,0x15,0xa4,0x5b,0x8e,0xa8,0x94,0x77,0xb1,0x3a,0xcd,0x1a, 0xc9,0x19,0xca,0x38,0xdc,0xf,0xb1,0xa9,0x80,0xac,0x5b,0x3d,0x4a,0x2b,0x18,0x85, 0xbd,0xc3,0x7c,0xca,0x9,0x21,0x47,0x23,0xbe,0x3f,0x3a,0xd0,0xb4,0xd4,0x20,0xbc, 0x42,0xd1,0x92,0xa0,0x1c,0x10,0xe3,0x15,0xe8,0x46,0xac,0x5e,0x97,0xd4,0xdb,0x94, 0xb7,0xec,0x29,0x1,0x4,0x2,0x8,0x20,0xf4,0x35,0x47,0x51,0xbf,0x8a,0xb,0x72, 0xab,0x2a,0x89,0x1f,0x81,0xed,0xea,0x6b,0x22,0xc3,0x50,0x3a,0x60,0x30,0xc8,0x4c, 0x91,0x28,0xf9,0xb3,0xd5,0x7f,0xce,0x45,0x4c,0xab,0x28,0xca,0xcc,0x76,0x67,0x4d, 0x50,0x33,0xb7,0x9b,0xb3,0x3c,0x67,0x1f,0xa6,0x6a,0x6e,0x31,0xd4,0x7d,0x6a,0xbb, 0x1f,0xf4,0x8f,0xc7,0x3f,0xa6,0x2b,0x46,0xee,0xb4,0x4,0x3c,0xb6,0x38,0x7,0xfc, 0xe2,0x9b,0xbd,0x95,0x49,0xfa,0x50,0x54,0xee,0x1f,0x5f,0xe9,0x48,0xeb,0x84,0xfc, 0xab,0x2d,0x4a,0x17,0xcd,0x20,0x72,0x32,0x69,0x4,0x8c,0xc3,0x9f,0x41,0x40,0x5a, 0x45,0x18,0x62,0x3d,0x85,0x3b,0xbb,0x1,0x56,0x48,0xd4,0xc8,0xcd,0xb4,0x64,0x9e, 0x4e,0x28,0xc0,0xf4,0x3,0xe8,0x2a,0x47,0xc6,0xe3,0xc8,0xa6,0x33,0xa2,0x8c,0x96, 0x1f,0x9d,0x60,0xd6,0xa5,0xa2,0x78,0x47,0x1f,0xfd,0x6e,0xb5,0xce,0x5c,0x59,0x3d, 0xce,0x8a,0x4c,0x27,0x33,0x42,0xfb,0x91,0x76,0x96,0xdd,0x81,0x8f,0xbb,0x5b,0xf1, 0xdc,0x44,0x14,0x9c,0xb6,0x3f,0xdd,0x35,0x87,0x35,0xb8,0x96,0xc9,0xbf,0xd1,0xe7, 0x9c,0xe0,0xe6,0x38,0xa4,0x31,0xb1,0xfc,0x47,0x4f,0xcc,0x53,0x4d,0x2b,0xa6,0x44, 0xb7,0x4f,0xcc,0xe1,0x27,0xbe,0x57,0xb9,0x10,0xb1,0x94,0xc6,0x31,0x18,0x37,0xac, 0xa8,0x37,0x7b,0x29,0x3,0x3,0xf1,0xad,0xb,0x49,0xee,0xc8,0x96,0x14,0xb7,0x9a, 0x68,0x4e,0x47,0xee,0x46,0x0,0xc0,0xe8,0xf,0xf1,0x67,0x8f,0x5a,0x67,0xfc,0x22, 0xb7,0x73,0x4e,0x2,0xe9,0xf0,0xe9,0x71,0x63,0x19,0x69,0x7c,0xd2,0x1,0x3d,0x49, 0xdc,0x72,0x7e,0xb8,0xa6,0x58,0xda,0xc5,0x6a,0xee,0x8b,0x7e,0xf0,0x46,0x66,0x60, 0x24,0x6b,0xe3,0x1a,0x10,0x1b,0x3,0xe4,0xd,0x8c,0xe0,0x67,0x8a,0xce,0x4a,0x2d, 0x7,0xb2,0xd5,0xb9,0x33,0x42,0x27,0x92,0xf1,0x4b,0xc0,0xa2,0x26,0x4c,0x9c,0x4c, 0x36,0xb1,0xe7,0x90,0x38,0xab,0x10,0x37,0x95,0xe5,0xee,0x85,0x2e,0x58,0xcb,0x9f, 0x2f,0xa1,0x62,0x7b,0x67,0xd3,0x9a,0xc5,0x92,0x49,0xa7,0x9e,0x62,0xb7,0x57,0x13, 0x8,0xc9,0x11,0x85,0x27,0xf,0xf3,0x90,0x49,0x6c,0xfa,0x7a,0xe7,0x39,0xeb,0x56, 0x74,0xcb,0x93,0x14,0x96,0x4f,0x24,0x77,0x6e,0xf6,0xf2,0x33,0x49,0x13,0x79,0x78, 0x7f,0x9b,0xb1,0x4,0x7f,0xf,0x63,0xe9,0x59,0xf2,0xe8,0x73,0xa8,0x28,0xbb,0xdc, 0xe8,0xe3,0x47,0x5d,0x7,0x52,0x32,0x44,0x11,0xc4,0xa8,0x8,0x3,0xa1,0xc7,0x23, 0xe9,0x5b,0x40,0x7f,0xc5,0x44,0x47,0xfd,0x39,0x60,0xfe,0x55,0xcc,0x9b,0xab,0xbb, 0x8b,0x3b,0xb4,0x8a,0x1f,0x2a,0x19,0x25,0x13,0x48,0x0,0xdc,0x57,0x2d,0x80,0x33, 0x9c,0xf,0xd7,0xa5,0x74,0x16,0x5b,0xc6,0xab,0xf,0x9a,0x49,0x90,0xd8,0x65,0x89, 0x3e,0xd5,0xbd,0x26,0xb6,0x34,0xbd,0xc6,0x5a,0x36,0x74,0xdd,0x1c,0xe3,0xfe,0x5e, 0x8,0xff,0x0,0xc7,0xc1,0xae,0x99,0x96,0x5f,0x30,0x6d,0x91,0x47,0x3d,0xa,0xe7, 0xfa,0xd7,0x2d,0x66,0x7f,0xe2,0x53,0xa4,0x7f,0xd7,0xde,0x3f,0xf1,0xea,0xeb,0xe, 0x32,0x73,0x9e,0x6b,0x5e,0x8c,0x8,0x88,0x9b,0x6f,0xde,0x8f,0x38,0xfe,0xe9,0xff, 0x0,0x1a,0x69,0x17,0x20,0x92,0x3c,0x8e,0x7b,0xf3,0x9a,0x75,0xae,0xe6,0xb7,0x52, 0xd9,0xcf,0x3d,0x7e,0xb5,0x10,0x99,0x8d,0xf1,0x8c,0x3b,0xe0,0x3,0x90,0x47,0x14, 0x34,0xac,0x31,0xae,0xf3,0xa1,0xc,0xca,0x3a,0x63,0x29,0xcd,0x3a,0x2b,0x86,0x6c, 0xee,0x7,0xf1,0xe2,0x92,0x75,0xf,0x71,0x8,0x61,0x90,0x41,0xfe,0x94,0x63,0x4, 0x8f,0x4a,0x13,0xb3,0x1f,0x42,0x7f,0x37,0xa7,0x1d,0x4e,0x29,0x56,0x4c,0xf3,0xea, 0x33,0x50,0x66,0x95,0x4f,0xee,0x10,0xff,0x0,0xb2,0x3f,0x95,0x69,0x71,0x58,0x9c, 0xb9,0xe2,0x9e,0xaf,0x93,0x8a,0xae,0x1b,0xe4,0xa7,0x46,0x7e,0x61,0xf4,0xaa,0x52, 0x13,0x45,0x8a,0x43,0x46,0x68,0xab,0x11,0x4,0xf2,0x88,0x54,0x12,0x70,0xb,0x63, 0x27,0xb5,0x65,0x49,0x28,0x6d,0x4d,0x25,0x1f,0x30,0xc8,0x1f,0x2f,0xb2,0xb7,0xf8, 0xd6,0xbc,0xd1,0x24,0xaa,0x15,0xc6,0x70,0x72,0x31,0xda,0xb2,0xca,0x79,0x7a,0xa4, 0x71,0x2,0x48,0x4,0x1e,0x7f,0xdd,0x6f,0xf0,0xac,0x2b,0x5f,0xa1,0x51,0x27,0x96, 0x64,0x94,0x6d,0x7b,0x59,0xd8,0xc,0x8e,0x12,0x91,0xe6,0x51,0x6c,0x51,0x60,0x9d, 0x54,0x0,0x0,0x29,0x53,0x5d,0x4e,0xd6,0xe8,0x1c,0x20,0x60,0x49,0xce,0x5b,0x1e, 0xfe,0x9f,0x5a,0x74,0xbf,0xea,0xf,0x63,0x8c,0x9a,0xc9,0xf9,0x94,0x65,0x24,0xca, 0xa9,0xe5,0xa5,0xbc,0xca,0x30,0x71,0x95,0xe2,0xb2,0xcf,0xfc,0x87,0x4f,0xb6,0x9b, 0x9f,0xfc,0x72,0xb6,0xa0,0x97,0xcf,0xb7,0x59,0xa,0xe3,0x20,0xe4,0x67,0x35,0x95, 0x20,0xc6,0xaf,0x2b,0x7a,0x69,0xc7,0x8f,0xf8,0x5,0x28,0x2d,0x47,0x33,0x36,0x21, 0x9d,0x2b,0x47,0x1e,0xb7,0x4d,0xff,0x0,0xa1,0xa0,0xab,0x4c,0xbf,0xbd,0xd7,0x3d, 0xe5,0x4f,0xfd,0x1c,0x7f,0xc2,0xab,0xc0,0x3f,0xd0,0x34,0x31,0xeb,0x72,0xff,0x0, 0xfa,0x35,0x2a,0xcf,0x57,0xd7,0x7f,0xeb,0xbc,0x63,0xff,0x0,0x23,0xb5,0x6e,0x96, 0x8c,0x84,0xd8,0xb0,0x2f,0xfc,0x4c,0xb4,0xf,0xfa,0xe1,0x19,0xfc,0xf7,0x9a,0xc5, 0x1f,0xf2,0x2c,0xdf,0xb7,0xfd,0x3e,0xa1,0xeb,0xed,0x5b,0xd6,0xcb,0x9d,0x4b,0x42, 0x1f,0xf4,0xed,0x17,0xfe,0x83,0x25,0x61,0x30,0x3,0xc2,0x97,0x9f,0xed,0x5d,0xa7, 0xfe,0x8b,0xcd,0x3f,0xb2,0x43,0x7e,0xf7,0xde,0x74,0x91,0xa5,0xc0,0x42,0x23,0x31, 0x8c,0x2c,0x63,0x2c,0x33,0xff,0x0,0x2c,0xd2,0x94,0x47,0x79,0x9e,0x66,0x80,0x1f, 0x5f,0x24,0x9f,0xfd,0x9a,0xac,0xc4,0x31,0xbc,0x63,0xa0,0x4f,0xfd,0x16,0xb4,0xe1, 0xd4,0x73,0xde,0xb0,0x6b,0xde,0x66,0xfd,0xa,0xec,0x24,0x13,0x46,0xb2,0xba,0xb1, 0xc1,0x3f,0x2a,0xed,0xed,0xf5,0x35,0x33,0x25,0xde,0xdc,0xa4,0xb0,0x6d,0xec,0xad, 0x19,0xfe,0x79,0xaa,0x57,0x6e,0x57,0x58,0xb6,0x4c,0xf1,0xe4,0xb7,0x1f,0x9f,0xf8, 0x56,0xc0,0x18,0x55,0xf6,0x3,0xf9,0x57,0x52,0x5e,0xea,0x38,0xfe,0xdc,0x8a,0x6, 0x79,0x22,0xc0,0x96,0xde,0x42,0x7d,0x63,0x52,0xc2,0x99,0xe7,0x7,0x3c,0x23,0x8f, 0xf7,0x94,0x8a,0xbe,0x40,0xeb,0x8f,0xce,0xab,0xca,0x3e,0x71,0xf8,0xd5,0x42,0x4d, 0x11,0x34,0x99,0x5c,0xe2,0xa3,0x23,0x35,0x23,0x8f,0x98,0xfd,0x69,0x42,0xf1,0x5d, 0x50,0x95,0xce,0x69,0xc0,0x81,0x96,0x98,0x56,0xac,0x15,0xa6,0x15,0xad,0x94,0x8c, 0x5c,0xa,0xe5,0x69,0x36,0xd4,0xe5,0x69,0x36,0xd5,0x73,0x19,0xb8,0x10,0xec,0xa5, 0x9,0x52,0xed,0xa0,0x2d,0x3e,0x61,0x72,0x11,0x85,0xa7,0x6d,0xa9,0x2,0x53,0xb6, 0x52,0x72,0x1a,0x81,0x18,0x5a,0x7a,0xad,0x3c,0x25,0x3c,0x2d,0x4b,0x65,0xa8,0xc, 0xb,0x4a,0x48,0xc,0x7,0x3c,0xd4,0x81,0x7d,0x6a,0x85,0xdc,0xaf,0x1c,0xde,0x5e, 0xee,0x71,0x90,0x5,0x63,0x52,0xa7,0x2a,0xb9,0xac,0x21,0x72,0x6b,0xa6,0x1e,0x49, 0xc0,0x7,0x8c,0xd6,0x68,0x7d,0xa5,0x80,0xce,0x6a,0x57,0x9f,0xce,0x60,0x18,0x9c, 0xe3,0xb7,0x43,0x55,0xa5,0x4,0x29,0x60,0x48,0x39,0x26,0xbc,0xda,0x95,0x79,0xdd, 0xce,0xc8,0x53,0x49,0x58,0x7b,0x3e,0xee,0x6,0x78,0xa4,0x62,0x76,0x9c,0x76,0xa6, 0x28,0xcc,0x8a,0xf9,0xc6,0x47,0x43,0x52,0xce,0x9,0x40,0xc0,0x67,0x1d,0x71,0x59, 0x73,0x17,0xcb,0x61,0xa1,0xb1,0x82,0x69,0x4b,0xe4,0xed,0xe6,0x91,0xf,0xce,0xaa, 0x47,0x5a,0x50,0xa7,0x78,0x2a,0x77,0x66,0x9a,0x90,0xa5,0x1b,0x13,0x83,0x84,0x1e, 0xf5,0x22,0x31,0xdb,0x81,0x8e,0xb5,0x58,0xb6,0xce,0xd,0x48,0xa7,0x95,0xfc,0xeb, 0x68,0x55,0xb3,0x31,0x9d,0x3b,0x96,0xc0,0xc8,0xcd,0x34,0xad,0x3e,0x23,0xbf,0x8e, 0x31,0x4f,0xd9,0x5e,0x9d,0x39,0xdd,0x5c,0xe3,0x9c,0x2c,0xca,0xfb,0x69,0xa,0xd4, 0xe5,0x71,0x4c,0x22,0xb4,0xe6,0x33,0x71,0x21,0xdb,0x49,0xe4,0xb3,0x1c,0x2a,0x92, 0x7d,0x0,0xa9,0xc2,0x6e,0x60,0xa3,0xa9,0x38,0xae,0x8a,0xc6,0xcd,0x6d,0xd4,0x36, 0x6,0xfc,0x75,0xa9,0x9d,0x5e,0x54,0x5d,0x2a,0x1e,0xd1,0xd8,0xe7,0x26,0xd3,0xae, 0x6d,0xe0,0x59,0xa4,0x8f,0xe5,0x6f,0x4e,0xdf,0x5a,0xae,0x12,0xbb,0x66,0x45,0x75, 0x2a,0xc0,0x30,0x3d,0x41,0xaa,0xcb,0xa6,0xda,0x2b,0x6e,0xf2,0x54,0x9f,0x7a,0xce, 0x38,0x9e,0xe7,0x44,0xf0,0x16,0x6a,0xcc,0xaf,0xa5,0xe9,0x91,0xdb,0x46,0xb2,0xba, 0xe6,0x66,0x19,0x39,0xed,0x5a,0x74,0x83,0x81,0x8a,0x5a,0xe7,0x94,0xdc,0x9d,0xd9, 0xdb,0x4e,0x9a,0xa7,0x1e,0x54,0x19,0xa2,0x8a,0x2a,0xd,0x0,0x8c,0xd3,0x48,0xa7, 0x52,0x1a,0x77,0x10,0xc2,0x29,0x28,0x26,0xa2,0x67,0xc1,0xa2,0xe1,0x62,0x5a,0x2a, 0x12,0xe4,0xd3,0x95,0x8d,0x9,0x80,0xf3,0x45,0x25,0x25,0x36,0xc5,0x63,0x23,0x55, 0xb0,0xe,0xc,0xd1,0xaf,0x23,0xae,0x2b,0x1b,0x6d,0x75,0xb2,0xae,0xe8,0xd9,0x7d, 0x46,0x2b,0x6,0xe6,0xc5,0xe0,0x1b,0x81,0xc,0xbe,0xd5,0xd5,0x46,0xa2,0xb5,0x99, 0xe7,0xe2,0x30,0xfa,0xf3,0x22,0x90,0x5a,0x5d,0xb5,0x20,0x1e,0xd5,0x6f,0xfb,0x3e, 0x51,0x6d,0xe7,0x77,0xc6,0x76,0xfb,0x56,0xae,0x76,0xdc,0xe5,0x8d,0x37,0x2d,0x8a, 0x1b,0x69,0x76,0xd4,0x84,0x51,0x8f,0x6a,0x2e,0x2e,0x52,0x3d,0xb4,0x6c,0xa9,0x76, 0xd2,0xed,0xa3,0x98,0x7c,0xa6,0xcf,0x86,0x86,0x3e,0xd5,0xff,0x0,0x0,0xfe,0xb5, 0xbd,0x58,0x9e,0x1e,0x18,0xfb,0x4f,0xfc,0x7,0xfa,0xd6,0xdd,0x72,0x54,0xf8,0x99, 0xe9,0xe1,0xd5,0xa9,0x23,0x80,0xf8,0x9f,0x14,0xf2,0xdb,0x58,0x8,0x16,0xd8,0x91, 0xe6,0x96,0xfb,0x46,0xed,0x80,0x0,0xb9,0x39,0x5e,0x41,0xaf,0x32,0xf0,0xc5,0xe4, 0x37,0xc9,0xf6,0x61,0x2c,0x78,0x81,0x89,0x68,0x24,0x93,0x6c,0x84,0x1e,0xac,0xb9, 0x18,0x23,0x93,0xd4,0xf6,0xe6,0xbd,0x1f,0xe2,0xb4,0x8d,0xf6,0x5b,0x28,0x22,0xd, 0xe7,0x4b,0x14,0xe1,0x70,0x40,0xc8,0x3e,0x5a,0x9e,0xbd,0xfe,0x7c,0x8c,0xf1,0xc5, 0x78,0x5,0xa6,0xa3,0x77,0x67,0xad,0x45,0x6f,0x1d,0xb4,0xfe,0x7c,0x67,0x69,0x8f, 0xca,0xf9,0xcf,0xae,0x0,0x19,0xe4,0x7e,0x1c,0xd7,0xd,0x5c,0x2f,0xb5,0xe7,0xd7, 0x5e,0x87,0x4d,0x3a,0xb3,0x8a,0x92,0x81,0xd6,0x6b,0xde,0x9,0xb8,0xd5,0x75,0x70, 0xf6,0xac,0x8b,0xe4,0x20,0xf3,0x9a,0x42,0x50,0x4c,0xbc,0x6d,0x20,0x80,0x72,0xc7, 0x24,0x7e,0x14,0xfd,0x23,0x4f,0x8e,0xc6,0xb,0x86,0x88,0x88,0x25,0x2d,0x1e,0xf6, 0x5c,0x11,0xe5,0x38,0xc7,0xcb,0xef,0xbb,0x0,0xf1,0xdf,0x9e,0x95,0x76,0xc7,0xc5, 0x77,0x16,0x3a,0x74,0x51,0xae,0x9d,0x2b,0x87,0x2c,0xb1,0x98,0xf3,0xb5,0xdb,0x27, 0xe5,0xc1,0x0,0x2e,0x33,0x8c,0xc,0xf2,0x3a,0x73,0x51,0x45,0xa5,0xce,0x6c,0xac, 0xa0,0x79,0xd4,0x48,0xbf,0xb9,0xb8,0xdf,0xc0,0x54,0x2e,0x48,0xfc,0x89,0x3e,0xfc, 0x7e,0x7c,0xae,0x53,0xe4,0xe4,0x97,0x43,0xaa,0x35,0x25,0x16,0xe7,0x51,0x68,0x58, 0xbc,0xd5,0x6d,0x7e,0xc5,0xa9,0x2d,0xac,0xb3,0x59,0xdd,0x45,0x6c,0x7f,0x78,0x8, 0xc1,0x61,0xc7,0x18,0x27,0x19,0x38,0xe9,0xeb,0x55,0x34,0x4b,0xdb,0x89,0x22,0x82, 0x38,0xe2,0x8e,0x6b,0x96,0xcb,0xc9,0x24,0xef,0xc1,0x3d,0x9,0x27,0xe9,0xeb,0xcd, 0x5a,0xd3,0xae,0x64,0xb4,0xb8,0x95,0x5e,0xed,0x7e,0xc7,0xb0,0xed,0x82,0x4c,0x7c, 0xa7,0x3c,0x1f,0x6f,0xf3,0xe9,0x59,0xd7,0xcd,0xf6,0x4d,0x4d,0xcc,0x73,0xc5,0x20, 0x95,0xbc,0xcf,0x36,0x39,0x1,0xc,0x4f,0xd3,0x8e,0xbd,0xab,0x4,0xe3,0xca,0xd2, 0x3d,0x2c,0x36,0x12,0x34,0xe5,0x27,0xd1,0xab,0xab,0x9d,0x64,0x37,0xc2,0x3b,0x59, 0x4f,0xee,0xe4,0x3,0xe4,0xb,0x1c,0x86,0x40,0x1b,0x1d,0x4f,0x1f,0x4e,0x7f,0x4a, 0xad,0xa3,0xbc,0xd2,0xdc,0xa4,0x50,0xb0,0x49,0x15,0x84,0x5f,0x21,0xf9,0xa4,0x6d, 0xbb,0xb3,0xb7,0x1d,0x0,0x19,0x24,0xe2,0xb1,0xcf,0x87,0x44,0xeb,0x2e,0xa1,0x6b, 0x71,0xe4,0x4d,0xe4,0x18,0xdd,0x62,0x73,0x89,0x78,0x3e,0x84,0x60,0x9e,0x7,0x7c, 0xe2,0xac,0x69,0x71,0x7f,0x65,0xc7,0x2c,0xf7,0x11,0x5e,0xc8,0x5d,0xff,0x0,0x76, 0xf0,0x4,0x18,0x8f,0x6e,0x8,0xe4,0xe5,0x4e,0x73,0xd8,0xf1,0x53,0x18,0x41,0xbd, 0x1e,0xa7,0x1c,0xaa,0x52,0xa5,0x19,0x26,0xfd,0xee,0x87,0x73,0x69,0x72,0xd2,0x59, 0xcb,0x2a,0xa3,0xbc,0x32,0xdc,0x18,0xc4,0xc5,0x30,0xa5,0xfd,0x47,0xb6,0x41,0x15, 0x61,0x49,0x7d,0x91,0xda,0x8,0x9a,0x41,0xff,0x0,0x3d,0x9c,0xed,0xf7,0xcd,0x52, 0xb3,0xd4,0x14,0xe9,0x31,0x58,0x7d,0x92,0xf1,0x3c,0xb9,0xc,0x88,0x24,0x44,0xa, 0x32,0xc5,0xb1,0xc3,0x7b,0xfa,0x52,0x15,0x55,0x8e,0x3c,0xa9,0x32,0x6d,0xda,0x30, 0x70,0x41,0x1d,0xeb,0x2a,0x95,0x39,0x5d,0x8e,0x78,0xd5,0x6c,0xd0,0x8b,0x52,0x90, 0x10,0x2e,0x52,0x35,0xe7,0x69,0x28,0xe,0x7,0xff,0x0,0x5a,0xa6,0x8e,0x69,0x2e, 0x6e,0x5a,0x38,0x23,0x2c,0x13,0x92,0xdb,0x80,0x18,0x3d,0x3b,0xd6,0x6c,0x8c,0xc, 0xc6,0x36,0x76,0x20,0x30,0x1f,0x31,0xce,0x78,0xc9,0xfe,0xb4,0x91,0xca,0x9b,0xc9, 0x28,0xa,0xab,0x82,0x4a,0x8f,0x43,0xd3,0x1f,0xe7,0xad,0x38,0xcd,0x48,0xd1,0x49, 0x9d,0xc,0x71,0x5d,0x9c,0xaa,0xdb,0x33,0x15,0xe0,0xe1,0xc7,0xf5,0x35,0x27,0x93, 0x7b,0xff,0x0,0x3e,0x72,0x7e,0xe,0xbf,0xfc,0x55,0x67,0xcb,0xae,0x61,0xd6,0x2b, 0x66,0x94,0x20,0x7d,0xd2,0x96,0x50,0x9,0xe7,0xb5,0x5b,0x1e,0x23,0xda,0xdb,0x8c, 0x4e,0xca,0x47,0x0,0xe3,0xd2,0xba,0xe3,0x2a,0x6b,0x46,0xc8,0x72,0x91,0x1d,0xec, 0xb7,0x36,0xb1,0x2,0xf6,0xcd,0x11,0x66,0x0,0x34,0x84,0x6d,0x7,0xf0,0x26,0xb2, 0x8c,0xca,0x65,0x28,0xbd,0x47,0x5e,0x72,0x1,0xef,0x5a,0xd7,0x7e,0x23,0x59,0x22, 0x2a,0x96,0xd1,0xbe,0x40,0xe2,0x40,0x48,0x3e,0xd8,0xc5,0x73,0x4b,0x1b,0x7d,0xa2, 0x47,0x88,0x5,0x89,0xdc,0x9d,0x80,0x9c,0x21,0x3d,0x85,0x63,0x56,0x54,0xef,0x68, 0xb0,0xe6,0x6d,0x6a,0x5b,0x63,0x1b,0xe7,0x2e,0xb8,0xef,0xd3,0xa5,0x57,0x5b,0xa0, 0xeb,0xb5,0x8c,0xa4,0x26,0x55,0x77,0x75,0xc5,0x46,0x3,0x95,0x28,0xaa,0x9c,0x13, 0xc3,0xe,0xf,0xd6,0xab,0x18,0xcb,0xb1,0x1b,0x24,0x87,0x9c,0xed,0x27,0x20,0x1f, 0x63,0xe9,0xed,0x59,0xc1,0xeb,0xa9,0x84,0xa4,0xd7,0x52,0xc7,0xca,0xa7,0x8,0x49, 0xcf,0x5c,0x91,0x8a,0x72,0x48,0x9b,0xd5,0x63,0x39,0x20,0xe4,0xe0,0x74,0xaa,0xbc, 0x24,0x81,0x49,0x39,0x6e,0x80,0xe,0xb4,0xfb,0x69,0x1b,0x73,0xc6,0x61,0x8,0x36, 0xf5,0x6a,0xd9,0xab,0x2b,0x98,0x49,0xb2,0x61,0x6e,0xe2,0xe6,0x47,0x56,0x5,0x59, 0x39,0x5c,0x74,0x3d,0x8f,0xeb,0x4e,0x8f,0x6c,0x2a,0x43,0xc,0x31,0xe3,0x8e,0xc0, 0xf6,0xa5,0x8d,0x42,0x79,0xe7,0xcc,0xd8,0x99,0xe0,0x9e,0x73,0xd2,0x95,0x57,0xcb, 0x5d,0xb2,0x4a,0xee,0xbe,0xc3,0x18,0xac,0x9c,0xfb,0x9b,0x28,0x4b,0xa1,0x3c,0xad, 0x2b,0x80,0x81,0xd4,0x6f,0x3c,0x93,0xd4,0xe6,0xac,0xd9,0xdc,0xfd,0x8d,0x8a,0x4c, 0xe3,0x64,0x84,0x64,0x9e,0x0,0x3d,0xff,0x0,0xa5,0x53,0x10,0x44,0x53,0x25,0x9e, 0x40,0x7a,0x73,0xd2,0xa7,0x8e,0x76,0x8e,0xe2,0x19,0x12,0x20,0xfb,0x3e,0xf4,0x4c, 0xc0,0x6f,0x52,0x8,0x23,0xf9,0x53,0x85,0x5b,0xbb,0x1a,0xc1,0xc9,0x3d,0x47,0x5c, 0xb9,0x96,0xe5,0xd4,0xb2,0xb1,0x1d,0x36,0xfa,0x7f,0xfa,0x8d,0x46,0xd8,0x2c,0xcc, 0x47,0x32,0x1e,0x4f,0xaf,0x18,0xa9,0xee,0x9e,0x19,0x3e,0xcc,0xd1,0x47,0x24,0x61, 0x9,0xc8,0x90,0x82,0x7a,0x1,0x8e,0xbe,0xd5,0x58,0xb6,0x7,0xcd,0xc0,0x3,0xbd, 0x39,0xb4,0xf4,0x35,0x7a,0x96,0x61,0xd4,0xee,0x91,0x6d,0x4a,0x4c,0xdb,0x60,0xca, 0x94,0x3f,0xc6,0x9,0xe0,0x1a,0xe9,0x6d,0x6f,0xed,0x2e,0xf5,0x19,0xad,0x55,0x18, 0xbc,0x64,0xe1,0xc8,0xe1,0xb1,0xd7,0xf2,0x35,0xc7,0xc5,0x9d,0xb9,0x66,0xe4,0x10, 0xdc,0x74,0x38,0x39,0x15,0xa3,0xa4,0xcf,0xf6,0x6d,0x4e,0x6,0x27,0x1,0x99,0x91, 0xc9,0xff,0x0,0x6b,0x9c,0xfe,0x60,0x56,0xd4,0xab,0x35,0x24,0xba,0x11,0x28,0x76, 0x3a,0xf3,0x6e,0x84,0xf7,0x4,0x7a,0x1a,0x46,0xb7,0xc8,0xc0,0x6f,0xd2,0x8b,0x3b, 0xb8,0xef,0x6d,0xd6,0x78,0x8e,0x51,0xaa,0xc6,0x2b,0xd2,0x49,0x35,0x73,0x6,0xd9, 0x45,0xe3,0x31,0x1c,0x31,0x18,0x3d,0xd,0x30,0x60,0x92,0x46,0x3f,0x3a,0xb1,0x79, 0x23,0x45,0x18,0x21,0xf6,0x70,0x49,0xf9,0x73,0x58,0x73,0x6b,0x6b,0x13,0x6d,0x7b, 0x92,0xad,0x8c,0x80,0xd0,0x9c,0x1f,0xc7,0x15,0x95,0x49,0x28,0xbb,0xd,0x32,0xdc, 0x91,0x47,0x23,0x7c,0xe8,0x8c,0x7f,0xda,0x15,0x5a,0x59,0xb4,0xfb,0x47,0x2,0x47, 0x82,0x17,0xec,0x1b,0xb,0x4e,0x4d,0x42,0x19,0x17,0x73,0x19,0x32,0x7a,0x91,0x19, 0x23,0xeb,0xc0,0xac,0xab,0xa8,0x2d,0xee,0x19,0xa5,0x8a,0xf9,0x3,0x91,0x9c,0x4a, 0x4a,0xe7,0xf3,0xc5,0x72,0xce,0x6b,0x74,0x5f,0x36,0x9a,0x16,0x35,0x18,0x1e,0xfe, 0xdb,0x36,0x57,0xc1,0x73,0xcf,0xf,0x95,0x6c,0x76,0xe2,0xb9,0x6b,0xbd,0x6f,0x54, 0x84,0xc6,0x22,0x5,0x65,0x44,0x2a,0xdb,0xe,0x8,0xf4,0xea,0xe,0x7f,0x2a,0x26, 0x8e,0x68,0xae,0x10,0x88,0xb6,0x5,0x39,0xf3,0xa2,0x20,0x67,0xf1,0x7,0x8a,0xc9, 0xd5,0xa4,0x9e,0x45,0x6,0x8,0x6e,0x99,0xb6,0xe3,0xcc,0x89,0x4b,0xb3,0x1f,0x6c, 0x64,0xd3,0x84,0x79,0x99,0xcb,0x5a,0xaf,0x37,0xba,0x8b,0x31,0xf8,0x82,0xf6,0xfa, 0x19,0x2d,0x2f,0x57,0x73,0x29,0xe5,0x54,0x94,0x67,0x1e,0x99,0xed,0xf9,0x52,0xcb, 0xa5,0xd8,0xdb,0x41,0x6b,0x7d,0x15,0xb4,0xb6,0x64,0x67,0x70,0xf3,0xd8,0xfc,0xbd, 0x30,0x55,0xba,0x8f,0x71,0x5c,0xb0,0x82,0xd4,0x5e,0x34,0x50,0xdf,0x49,0xf6,0xcf, 0xbd,0xfe,0x90,0x6,0x5f,0xa6,0x57,0x93,0xd7,0x9e,0x99,0xae,0x8b,0x44,0xf1,0xc, 0xf1,0x3a,0x66,0x26,0x6b,0x66,0x4,0x32,0xaa,0x31,0xd8,0x31,0xd7,0xdc,0x7e,0x15, 0xa5,0x6a,0x2e,0x1e,0xf4,0x1,0xca,0x73,0xdc,0x70,0x96,0x8,0xae,0xa2,0x75,0x96, 0x5f,0x30,0xa6,0xd5,0xf9,0xbe,0x5c,0x56,0x8c,0x4f,0xe7,0x79,0x40,0xc0,0x24,0x3e, 0x67,0xdc,0x9a,0x2d,0xe1,0xb3,0xc6,0x31,0xf4,0xcf,0x4a,0x2d,0x6f,0xe0,0xb9,0x56, 0x75,0xb7,0xd3,0x67,0x39,0xc1,0xd8,0xac,0xa5,0x81,0xef,0xca,0xe4,0x1f,0xc3,0xb5, 0x55,0x7d,0x4a,0xca,0xca,0x48,0xe4,0x58,0xe5,0x89,0xd2,0x32,0x1a,0x38,0xa5,0x91, 0xb7,0x36,0x78,0xc6,0xe1,0xf2,0xf1,0x9c,0xe2,0xb0,0x6e,0xeb,0x62,0x2d,0x6d,0x4e, 0x81,0x1a,0x1b,0x3b,0x4b,0xdb,0x7f,0x2d,0x11,0xa6,0x74,0xf9,0x40,0xa,0x6,0x18, 0x93,0x80,0x3d,0xf0,0x31,0x56,0xa1,0xd6,0x20,0x6d,0x42,0x3b,0x84,0x8e,0x77,0x44, 0xb2,0x11,0x36,0xd8,0xdb,0xef,0x0,0x73,0x8e,0x3a,0x71,0x58,0x76,0x17,0x16,0xb7, 0x60,0xbf,0x9e,0x6d,0xe4,0xe4,0xec,0x76,0xc,0x1c,0x60,0x9c,0x86,0x20,0x12,0x73, 0x5a,0x56,0xd0,0xb3,0xdc,0xc6,0xbf,0x6c,0xc2,0x1c,0x38,0xf2,0x64,0x20,0x90,0x73, 0xc7,0xf8,0x8c,0xd4,0x46,0xa3,0x8b,0xb1,0xa4,0x27,0x72,0xe5,0x94,0xac,0x74,0xed, 0x3e,0x3d,0xa0,0x2c,0x57,0x60,0x93,0x9e,0xbc,0x8e,0xdf,0x8d,0x75,0x8e,0x25,0xc9, 0xd9,0x22,0x8f,0x66,0x5c,0xff,0x0,0x5a,0xe5,0xed,0xac,0x9b,0xec,0x71,0xb2,0x31, 0x25,0x2e,0xb7,0x31,0x3f,0xdd,0x5d,0xbc,0xfa,0xf6,0xae,0x94,0xdd,0x27,0x9e,0xd1, 0xae,0x58,0xaf,0xde,0x65,0xe4,0x2f,0xd7,0xd2,0xba,0xa0,0xf4,0x77,0x36,0x43,0xc8, 0x9f,0x7,0xe6,0x8c,0x9e,0xdf,0x21,0x1f,0xd6,0x98,0x7e,0xd5,0x93,0xfe,0xa3,0x93, 0xe8,0x73,0x50,0x34,0xb3,0x41,0x6a,0x52,0x8,0x9e,0xe6,0x55,0x19,0x1,0x88,0x0, 0xfe,0x26,0xb2,0xd2,0xe3,0xc4,0x33,0x5c,0x63,0xec,0x71,0xc2,0x33,0xcb,0x4b,0x2f, 0xc8,0x3f,0x5,0x1f,0xd6,0xb5,0x51,0x52,0x5b,0x8e,0xc6,0xbb,0x99,0xc1,0x5,0x91, 0x58,0x8f,0xee,0x7f,0xf5,0xe9,0x15,0x89,0x4,0x94,0x65,0xfa,0xd3,0xb6,0xca,0x7c, 0xb3,0x21,0x52,0xe3,0x3b,0xb6,0xa9,0x3,0xf0,0xcd,0x23,0x7c,0xac,0x7e,0x56,0xe7, 0xd1,0x4d,0x4a,0xb0,0xc5,0xcd,0x3,0xfe,0x3d,0xd3,0xfd,0xd1,0xfc,0xa9,0x85,0xf0, 0x3e,0xeb,0xe7,0xfd,0xd3,0x52,0x28,0x3f,0x67,0x51,0xce,0x76,0x8e,0xde,0xd5,0x77, 0x15,0x85,0x7,0xf7,0x5f,0x87,0xf4,0xa9,0x22,0xe5,0x87,0xd3,0xfa,0x54,0x5f,0x76, 0x32,0xe,0x7,0xd6,0x96,0x17,0x1b,0xc0,0xcf,0x6a,0x10,0x34,0x5b,0x6,0x82,0x69, 0x99,0xe0,0x53,0x24,0x97,0x62,0xe7,0x19,0xfc,0x6b,0x6b,0xa2,0x6c,0x32,0xea,0xe0, 0x40,0xaa,0x49,0x0,0x96,0xc0,0xe3,0x35,0x97,0xe7,0xef,0xd4,0x12,0x60,0xa5,0xb2, 0x40,0xe0,0x63,0x3f,0x2b,0x7f,0x8d,0x59,0xb8,0xb8,0x49,0x1d,0x41,0x64,0x1b,0x72, 0x7a,0x9a,0xa7,0x1b,0x86,0xd5,0x61,0x55,0x70,0x47,0x4,0xc,0xe7,0x9c,0x37,0xff, 0x0,0x5a,0xb9,0xea,0xeb,0xb1,0x69,0x59,0x1a,0x32,0xc8,0x24,0x1b,0x5e,0xce,0x76, 0x1c,0xf4,0x50,0x7d,0xbd,0x69,0xb2,0xce,0xde,0x53,0x66,0xde,0x61,0xc6,0x39,0x51, 0xfe,0x34,0x97,0xf7,0x4f,0x6b,0x1a,0xba,0x88,0xf2,0x49,0xc8,0x6e,0xbd,0x33,0xc7, 0x14,0xeb,0xa9,0x55,0x2d,0x4b,0x16,0x41,0x81,0x91,0x9e,0x95,0x2c,0x65,0x1f,0x3b, 0x6c,0x6c,0xa9,0x6f,0x2a,0x80,0xa7,0xaa,0xe0,0x7a,0xd6,0x74,0xce,0x3f,0xb6,0xae, 0xd0,0xf5,0x5b,0x6,0x3f,0xf9,0xc,0x56,0x8a,0xce,0x25,0xb4,0x2c,0x59,0x32,0x54, 0xfd,0xd3,0xed,0x59,0x33,0x1c,0xeb,0xda,0x89,0xec,0x34,0xc7,0xff,0x0,0xd0,0x12, 0x8a,0x5d,0x42,0xa7,0x42,0x8,0x6,0x6c,0x34,0xf,0x7b,0x87,0xff,0x0,0xd1,0xab, 0x56,0x63,0x5f,0xde,0x6b,0x67,0xd6,0xe2,0x2f,0xfd,0x1e,0xd5,0xc,0x23,0xfd,0xf, 0x40,0x1e,0x97,0x2f,0xff,0x0,0xa3,0xd4,0x55,0x8e,0xfa,0xd7,0xfd,0x7c,0x43,0xff, 0x0,0xa3,0xda,0xb6,0x7a,0x68,0x65,0xd,0x52,0x24,0xb7,0xe7,0x57,0xd0,0xc7,0xfd, 0x3a,0xc6,0x7f,0xf1,0xc9,0xd,0x60,0xca,0x98,0xf0,0x84,0xc7,0xae,0x6e,0xc1,0xff, 0x0,0xc8,0x1f,0xfd,0x7a,0xdf,0xb6,0x52,0x75,0xad,0x14,0xf6,0x16,0x91,0xff,0x0, 0xe8,0xb9,0x2b,0x11,0x87,0xfc,0x52,0xf,0x9e,0xf7,0x40,0xff,0x0,0xe4,0xbd,0xb, 0xb0,0xa5,0xa5,0xd9,0xd2,0x4a,0x27,0x59,0xa6,0x11,0x2c,0x67,0x95,0xfb,0xec,0x47, 0xf0,0x2f,0xa5,0x44,0xe,0xa1,0xbb,0x85,0xb4,0x1f,0x56,0x6f,0xf0,0xa9,0xef,0x65, 0xfb,0x2b,0xdc,0x49,0xb4,0x95,0xe,0x33,0x8e,0xbf,0x75,0x7f,0xc2,0xa6,0x1d,0xf0, 0x78,0xae,0x79,0x6e,0x74,0x5f,0x43,0x2e,0x51,0x28,0xd5,0x60,0xf3,0x82,0x79,0x82, 0x23,0xca,0xf4,0xc7,0xcd,0xeb,0x5a,0x64,0xdf,0x82,0x36,0xc7,0x6a,0xca,0x7d,0x64, 0x20,0xff,0x0,0xe8,0x26,0xab,0xdc,0xa4,0x66,0xf8,0xb9,0x63,0xe6,0x8,0x8,0x3, 0xdb,0x9a,0xd5,0x61,0xff,0x0,0xea,0xcd,0x6c,0x9f,0xb8,0x91,0xcd,0xca,0xd4,0xa5, 0x2e,0xe6,0x73,0x5e,0x14,0x3b,0x64,0xb5,0xb8,0x7,0xb9,0x44,0xdc,0x3f,0x3a,0x3c, 0xc5,0x97,0xe6,0xa,0xe3,0x83,0xc3,0x29,0x15,0x74,0x73,0xd3,0xa6,0x6a,0x9,0x7f, 0xd7,0x63,0xfd,0x9c,0xd5,0x26,0xc4,0xd2,0x29,0xb2,0xfc,0xcf,0xf5,0xfe,0x82,0x9e, 0xab,0xf2,0xd0,0xdc,0x48,0xff,0x0,0x5a,0x73,0x7c,0xb0,0xe4,0x56,0xf4,0xe4,0x61, 0x38,0x8c,0x22,0x98,0x56,0x8c,0x91,0xde,0x9e,0x6,0x57,0x35,0xaf,0xb4,0xb1,0x9b, 0x81,0x1e,0xda,0xa,0xfb,0x52,0xf7,0xa4,0x24,0xd5,0x2a,0x84,0x7b,0x36,0x34,0x8a, 0x2,0xd3,0xc0,0xc8,0x14,0x98,0x20,0xf1,0x47,0xb4,0x5,0x48,0x2,0xd3,0xc2,0xd0, 0xa7,0xdb,0x3f,0x4a,0x91,0x40,0x35,0x77,0x76,0x17,0x20,0xd0,0xb4,0xe0,0xb4,0xf0, 0x29,0xd8,0xa8,0x72,0x2d,0x40,0x68,0x5a,0xa9,0x7f,0x2,0xc9,0x7,0xcc,0xbc,0x83, 0x95,0x65,0xea,0x2a,0xd4,0xc7,0x9,0xb7,0xb9,0xe9,0x59,0xd7,0x77,0x32,0xad,0xab, 0x4,0x64,0xc9,0xe3,0x21,0x81,0xda,0x3b,0x9a,0xc2,0xad,0x45,0x6e,0x5e,0xa6,0xb0, 0xa7,0xd4,0xce,0x9f,0xcc,0x85,0xd9,0x1d,0x36,0xe3,0xa1,0x1c,0xe6,0x98,0xd2,0xab, 0xc3,0x87,0x6c,0xb1,0x18,0xe0,0x1e,0xb5,0x6d,0x98,0x49,0x19,0xc,0x59,0xc7,0x19, 0x61,0xcd,0x67,0x49,0x80,0x4c,0x6d,0x21,0x8b,0xae,0xb,0x3,0xc8,0xaf,0x35,0xcb, 0x5b,0x1d,0x50,0x48,0x96,0x0,0x64,0x75,0x46,0xea,0xe,0x33,0xeb,0x56,0x70,0xa7, 0x29,0x8e,0xd,0x41,0x6c,0xcb,0xe,0xc0,0xb1,0xf4,0x3b,0xba,0xe4,0x9a,0x98,0xee, 0xf3,0x59,0xb0,0x59,0x57,0x3c,0x2,0x6,0x2a,0x2f,0xa9,0x35,0x34,0xb1,0x1d,0xb8, 0xcd,0xc2,0xab,0xf6,0x3c,0x1a,0x9d,0x97,0xcb,0x93,0x85,0xe3,0x38,0xa4,0xf9,0x78, 0x67,0x5c,0x60,0x67,0xd0,0x8f,0x4c,0xd5,0x3b,0x9b,0xd4,0x69,0xc0,0x29,0x21,0x41, 0xc9,0x75,0xe4,0xa,0x77,0x66,0x75,0x64,0xac,0x5a,0x38,0x70,0x30,0xc0,0xe3,0x9f, 0xa5,0x39,0x41,0x66,0x0,0x30,0x19,0xfe,0x23,0xc5,0x56,0x68,0xd9,0x65,0x59,0x23, 0x91,0x8,0x2b,0xd4,0x1e,0xa3,0xd6,0xac,0xc2,0x77,0x90,0xa7,0x9f,0xeb,0x54,0x9d, 0xb5,0x14,0x13,0x66,0x9d,0x9d,0xbe,0x53,0x9,0x82,0xf,0xf1,0x7a,0xd5,0x99,0x2d, 0x5d,0xa,0x8c,0x64,0x93,0xd0,0x76,0xa7,0xe9,0xd1,0x88,0x61,0x67,0x91,0xb0,0xa0, 0xfe,0x0,0x50,0x97,0xd,0x34,0xfe,0x60,0xc8,0x40,0x72,0x9,0xef,0x5d,0x6b,0x12, 0xe0,0x96,0x86,0x8f,0xf,0x17,0xb9,0x55,0xa3,0x6d,0xdb,0x4a,0x9c,0xfa,0x54,0x91, 0xe9,0xf7,0x12,0x91,0xfb,0xbc,0xf,0xf6,0xab,0x42,0x5b,0xd8,0xa1,0x55,0x90,0xa6, 0x58,0x8e,0xc2,0xad,0x45,0x20,0x96,0x20,0xe0,0x70,0xd5,0xd1,0xf5,0x8b,0xe8,0x8c, 0x96,0x11,0x5e,0xed,0x94,0x62,0xd2,0x51,0x25,0x56,0x77,0xde,0xa3,0x9c,0x1,0x8e, 0x6b,0x48,0xb0,0x51,0x92,0x68,0x1c,0x1a,0xcf,0xbf,0xbb,0xa,0xc,0x6a,0x73,0xfd, 0xea,0xce,0xad,0x5d,0x2e,0xcd,0xe9,0xd2,0x51,0xd2,0x25,0xd7,0x9d,0x51,0xb0,0xd9, 0xe9,0x9c,0xd2,0xf9,0xaa,0x50,0x30,0x39,0x6,0xb0,0xfc,0xf7,0x91,0x0,0x2d,0x9c, 0xa,0x70,0x66,0xf3,0x55,0x43,0x10,0x7,0x4e,0x6b,0x9b,0xdb,0xdd,0xd8,0xdf,0xd9, 0x9b,0x81,0xb2,0x33,0x4b,0xde,0xa9,0x5c,0x4c,0x12,0xcc,0x92,0xdc,0x9e,0x3a,0xd5, 0x4,0xba,0x74,0x93,0x70,0x6c,0x8f,0x73,0x56,0xeb,0x24,0xec,0x4a,0x81,0xb0,0xf7, 0x11,0x23,0x60,0xbf,0x34,0xf5,0x75,0x61,0x90,0x72,0x2b,0x1,0xe5,0x69,0x18,0x9c, 0x93,0xcd,0x59,0x8a,0xe3,0xca,0x51,0x86,0xe7,0xd2,0xa1,0x62,0x35,0x1b,0x81,0xaa, 0xf2,0x2a,0xc,0xb3,0x1,0xf8,0xd2,0x9,0x15,0xc6,0x54,0x83,0x59,0xd,0x31,0x76, 0xcb,0x3d,0x49,0x14,0xab,0x1b,0x8c,0xb7,0x5f,0x4a,0x7e,0xde,0xec,0x5c,0x85,0xf9, 0xf,0xcb,0xc1,0xe6,0xa0,0xcf,0x3c,0x9a,0x49,0x2e,0xa3,0xf9,0xb0,0x72,0x40,0xce, 0x2a,0x8a,0x5d,0xc9,0xb8,0xb1,0x19,0x19,0xe9,0x4e,0x75,0x22,0xb5,0xb8,0xb9,0x4d, 0x1e,0x29,0xe2,0xa9,0xb,0xa4,0x63,0x8e,0x41,0xf7,0xa9,0x52,0xe9,0x7,0x5,0xb2, 0x6a,0xa3,0x56,0x24,0xd8,0xb5,0x49,0xbb,0xae,0xd,0x35,0x25,0x49,0x17,0x2a,0xc0, 0x8a,0x64,0xa4,0xa2,0x33,0x2a,0xe7,0x8f,0x5a,0xd1,0xcb,0xb0,0xb9,0x59,0x14,0x92, 0x13,0x20,0x0,0xf7,0xa9,0xa,0xf9,0xca,0x55,0x80,0xc1,0x18,0xaa,0x30,0x4c,0x7c, 0xef,0x9f,0x1c,0xfb,0x74,0xab,0xde,0x7a,0x81,0x9e,0x0,0x15,0x94,0x2a,0x2b,0xdd, 0xbb,0xe,0x70,0xd2,0xc5,0x78,0xf4,0xc8,0xd1,0xb2,0xcc,0x5b,0xf0,0xc5,0x58,0xba, 0x6d,0xb6,0xe5,0x50,0x63,0x8c,0x7e,0x14,0xd5,0xbb,0x56,0xce,0x33,0x4d,0x96,0x40, 0x54,0x9a,0xd6,0x55,0xf9,0xad,0xa9,0x9c,0x68,0xa8,0xa7,0x64,0x63,0x70,0x46,0x7f, 0x4a,0x36,0xd2,0xee,0x0,0xfd,0x2a,0x19,0x48,0x90,0x2b,0xa4,0x98,0xa,0x79,0x1e, 0xb5,0xba,0xaf,0x68,0xea,0x71,0x3a,0x3a,0x92,0x3b,0x2c,0x6b,0x97,0x20,0xc,0xe2, 0xa4,0x50,0x8,0xc8,0x20,0xd5,0x19,0x1f,0xed,0x12,0xe1,0x88,0x50,0x3b,0x7a,0xd5, 0xe8,0x0,0x11,0x0,0x18,0x1c,0x7b,0xd2,0x8d,0x7e,0x69,0x69,0xb0,0x9d,0x16,0x8d, 0xad,0x4,0x63,0xed,0x1f,0xf0,0x1f,0xeb,0x5b,0x35,0x89,0xe1,0xf9,0x96,0x47,0xba, 0x55,0xfe,0x1d,0x9c,0xfe,0x75,0xb7,0x43,0x77,0x77,0x3a,0xe9,0x2e,0x58,0x24,0x70, 0x3f,0x11,0xff,0x0,0xe3,0xeb,0x47,0xc,0x8b,0xe5,0xe2,0x6f,0xde,0xe3,0xe6,0x46, 0xfd,0xde,0x3b,0xfd,0xd3,0xce,0x47,0x23,0x81,0x5e,0x4b,0xa9,0x5b,0xb,0xb0,0x93, 0x21,0xde,0xa0,0xe4,0xcf,0x13,0x63,0x19,0x3d,0xf,0xb7,0xb5,0x7a,0xdf,0xc4,0x99, 0xe2,0xb7,0x7d,0x26,0x59,0x9b,0x64,0x60,0xcb,0xb9,0xca,0xe7,0x3,0xe4,0xf6,0x3d, 0xf1,0x5e,0x43,0x25,0xdd,0xbc,0xd6,0xec,0x34,0xf8,0xad,0xf0,0xff,0x0,0xbc,0x74, 0x94,0xe0,0x86,0x4,0xae,0x17,0x24,0x67,0x8c,0x1c,0xf,0x5f,0x6a,0xf3,0xaa,0xf3, 0x3a,0xad,0xa7,0xb1,0xeb,0xe0,0x63,0x4,0xaf,0x25,0x7b,0x92,0xd8,0x41,0x25,0x84, 0xcb,0x2a,0x7,0xb8,0x1b,0x8b,0x6c,0x8,0x9,0x20,0x3,0x9e,0x87,0x3f,0xa7,0x4a, 0x89,0xbc,0x60,0xba,0x8f,0x95,0x6f,0xa5,0xe9,0xcd,0x1d,0xf3,0x48,0xaa,0xc8,0xef, 0x95,0x28,0x6,0x38,0xe4,0x1c,0x92,0x7a,0x63,0x81,0xf8,0xd6,0xa6,0x91,0xe2,0x8, 0xac,0xae,0xd2,0xda,0xea,0xdd,0x6d,0x1c,0xf0,0x25,0xdc,0xce,0xa5,0xbf,0xba,0xc0, 0xf2,0xa0,0xf1,0xdf,0xb5,0x62,0x6a,0x9a,0xd,0x96,0x9d,0xe2,0x5b,0x7b,0xbb,0x58, 0x49,0x89,0x8b,0x48,0xf6,0x46,0x40,0x7,0x72,0x0,0x7c,0x67,0x69,0xe3,0xfc,0x79, 0xa9,0xa6,0xa3,0x3a,0x8f,0xdb,0x2f,0x41,0x62,0xe1,0x56,0xa5,0x48,0xc6,0x10,0xd5, 0x16,0xe6,0x6b,0x5b,0x9,0xae,0x64,0xd5,0x2e,0x6c,0xe5,0x89,0x79,0x78,0xbe,0xd8, 0x3c,0xe8,0xcf,0xb7,0x3d,0x7d,0xb9,0xa8,0x74,0xd8,0x2e,0xb6,0x8b,0xbb,0x48,0xee, 0xa7,0x81,0xd7,0x31,0x86,0xc2,0xb1,0xc7,0xa8,0x19,0x1f,0x88,0xae,0x17,0xc4,0x57, 0xba,0xa5,0xed,0xdc,0x71,0xea,0x96,0xb1,0xa5,0xd2,0x7d,0xd6,0x48,0x42,0x33,0x29, 0xe8,0xe,0x3a,0x81,0xce,0xf,0x5f,0x7a,0xeb,0x3c,0x27,0x7b,0x22,0x5b,0xc1,0x68, 0xb7,0x4d,0x20,0x58,0xc8,0x31,0x9c,0x8d,0x87,0x23,0x3c,0xf6,0x1c,0xfe,0xb5,0xd3, 0x57,0xe,0xa1,0x4b,0x99,0x98,0xd3,0xa9,0x89,0x9c,0xec,0xe4,0xf4,0x3b,0x3b,0x58, 0xa1,0x8e,0xe6,0x26,0xfd,0xf4,0x2b,0x70,0xe,0x51,0x49,0x56,0x3e,0xa4,0xc,0x91, 0x9a,0xdc,0x68,0xd5,0xfe,0x7b,0x64,0x55,0x21,0xb8,0x50,0x71,0x9e,0x79,0x2c,0x7a, 0xf6,0xfd,0x6b,0x33,0x41,0x8a,0xf3,0x62,0x5c,0x5d,0x62,0x58,0xe5,0xf3,0x15,0x94, 0xae,0xa,0x60,0xed,0x1b,0x4f,0xd0,0x75,0xab,0xf6,0x91,0xb5,0x9d,0xbe,0xd9,0x19, 0x8b,0x83,0xb4,0xf7,0x1f,0xfe,0xbf,0xf1,0xaf,0x2,0xb5,0x44,0x9d,0x90,0x55,0xa3, 0xcd,0xab,0xd5,0x97,0x83,0x48,0xf2,0x6f,0x20,0x19,0x59,0xc1,0x6e,0xfd,0xb0,0x79, 0xfc,0xa9,0xb2,0xb3,0xdb,0xca,0xdb,0xfe,0xe3,0x37,0x12,0x67,0x95,0xa8,0xd2,0xf3, 0x7a,0x5,0x12,0x4,0x23,0xae,0x47,0xe9,0x4b,0x21,0x66,0x52,0x18,0x6,0x8c,0xae, 0x48,0x7e,0x95,0x9a,0x94,0x9d,0xee,0x4c,0x53,0x4e,0xcc,0x6a,0x2f,0xfa,0x4c,0x5b, 0x3e,0x7e,0xac,0x4b,0x37,0xe0,0x4f,0xeb,0x4c,0xbc,0x63,0x66,0x91,0xa8,0x1,0xa5, 0x79,0x58,0xa8,0x5e,0xe7,0xae,0x7f,0x95,0x42,0x63,0x6b,0x49,0xb7,0x23,0x19,0xad, 0xcb,0x65,0x18,0x63,0xf7,0x67,0xfc,0x2a,0xcc,0xcc,0xc9,0x6c,0x97,0x28,0x9b,0xde, 0x31,0x95,0x4,0x82,0x79,0xeb,0x58,0x4e,0x6d,0x4e,0xf1,0x3a,0xd4,0x74,0x24,0x92, 0x76,0x5b,0x92,0x85,0x59,0x4a,0xe7,0x78,0xe4,0xe4,0xe3,0x83,0xd3,0xd3,0x9a,0x94, 0xca,0x93,0xe3,0x63,0xb6,0x7a,0xf0,0x31,0xfa,0x1a,0xca,0x8e,0xe0,0x23,0xb9,0xba, 0x77,0x79,0x5f,0xe6,0x21,0x46,0x4f,0xa6,0x3d,0x87,0x14,0x3d,0xd5,0xb4,0x6f,0x1b, 0x79,0xe9,0xe5,0xb3,0x6d,0x24,0x1c,0x10,0x8,0xae,0xde,0x67,0x6b,0xb3,0x3e,0x4b, 0xbb,0x1a,0x45,0xcc,0x93,0x2c,0x32,0x46,0xc4,0x9c,0x90,0xcb,0xd8,0xf6,0xe8,0x6a, 0xa4,0xae,0x60,0xdc,0xf2,0x49,0x39,0x60,0x7f,0xe5,0x9f,0x4f,0xc4,0x52,0xad,0xbc, 0x91,0x2b,0xc9,0x67,0x3a,0xc8,0xb8,0xdc,0xbb,0xb9,0xc7,0xaf,0x22,0x84,0x62,0x62, 0xd8,0x21,0xde,0xd9,0xf9,0x9b,0x7e,0xf,0x3d,0xf0,0x6b,0x35,0x28,0xc9,0xf3,0x27, 0xb0,0xa7,0x4d,0xa5,0x61,0xbf,0x69,0xf3,0x8,0xc1,0x2c,0xf,0x3f,0x32,0xe0,0xe6, 0x9c,0x2e,0x3e,0x72,0xa5,0x4e,0x7d,0x9,0xe7,0xf2,0xa6,0x29,0x5f,0x35,0xe,0xdc, 0xb8,0x53,0xf2,0x63,0x9f,0xd2,0x91,0xd1,0xb2,0xa6,0x3c,0x30,0xce,0x5b,0x77,0x3f, 0x8f,0x5a,0xec,0x8b,0x89,0xc3,0x2a,0x76,0xd5,0x91,0xb5,0xd3,0x3a,0x84,0x21,0x91, 0x73,0xc8,0x60,0x1,0xa9,0x6d,0x65,0x20,0x94,0x92,0x40,0xc3,0x3c,0x72,0x3f,0x95, 0x1b,0x56,0x52,0x42,0xb7,0xcc,0x3a,0x80,0xdd,0x2a,0x56,0xb4,0x2e,0x72,0xaf,0x86, 0x3d,0xb1,0xb8,0x67,0xeb,0x5a,0x36,0xb9,0x48,0xbb,0x6a,0xf6,0x27,0x42,0x24,0x62, 0xac,0x24,0x39,0x18,0x1b,0x76,0xf1,0xfa,0xd4,0xc9,0x95,0x4d,0xac,0x59,0xfe,0x6c, 0x72,0x39,0x15,0x9c,0xb0,0x49,0xb,0x9,0x1d,0xd2,0x31,0xeb,0xeb,0xfa,0x55,0xd8, 0xe5,0xdc,0x9f,0x33,0x2,0x17,0x9d,0xcb,0xde,0xb8,0xea,0x59,0x4b,0x43,0x48,0x49, 0xf5,0x24,0x49,0x14,0x36,0xd1,0xeb,0xce,0x4f,0x4f,0xc2,0x9c,0xca,0x5b,0x6a,0xf3, 0x9f,0x6e,0xf5,0xa,0x79,0x43,0x38,0xc,0xad,0xfd,0xee,0xff,0x0,0x5a,0x6a,0xa9, 0x59,0x16,0x40,0xee,0xd8,0xf5,0xef,0xf8,0xd4,0x29,0x3b,0x5e,0xc6,0x84,0xe8,0x4b, 0x3a,0xa9,0xc8,0x23,0x9e,0x4d,0x44,0xc5,0x8f,0xfa,0xc2,0x9,0xec,0xb5,0x20,0x2c, 0xf,0xce,0x8,0x61,0xc9,0xa8,0xa6,0x65,0x54,0xde,0xf8,0xde,0x14,0xe0,0x7a,0xfa, 0x56,0x90,0xbb,0x57,0x66,0x94,0xee,0x2a,0x96,0x58,0xc8,0x38,0xc9,0xe4,0xe2,0xa7, 0x8d,0xc3,0xe,0x3a,0xf5,0x3,0x3c,0x83,0x55,0x18,0xe3,0x6a,0xf2,0xcc,0x46,0x7e, 0x51,0x4b,0x4,0xca,0xb2,0xc6,0xa4,0xa8,0xc9,0x4,0xb6,0x32,0x57,0xf2,0xeb,0x5b, 0x2d,0x51,0xb5,0xb4,0x3b,0x4d,0x2,0x68,0xe2,0xb2,0x58,0xa,0xb2,0xb1,0x91,0x80, 0x38,0xe0,0xd6,0xc2,0xc8,0xac,0x59,0x41,0x1b,0x97,0xa8,0xf4,0xae,0x42,0xce,0xf9, 0x44,0xb6,0xd1,0xc5,0x21,0x11,0x24,0x99,0x2d,0x8c,0x6e,0x24,0xfa,0x76,0xeb,0x5d, 0x5c,0x6c,0x24,0x56,0x65,0x20,0xe4,0x90,0x4d,0x7a,0x58,0x7a,0x97,0x56,0x67,0x24, 0xe1,0x6d,0x47,0x49,0x1c,0x77,0xb,0x82,0x37,0xc,0x63,0xbd,0x63,0x5f,0xf8,0x76, 0xd6,0xe2,0x32,0x22,0x57,0xd,0xd3,0x6,0x53,0x8f,0xae,0xf,0x7a,0xd4,0x99,0x24, 0xf2,0x80,0x81,0xc2,0x1c,0xf5,0xe3,0xfa,0xd6,0x1e,0xa1,0xab,0xcb,0x63,0xf2,0xc9, 0x3d,0xc9,0x7c,0x6e,0xdb,0x1c,0x48,0xc4,0xf,0xcb,0xd8,0xfe,0x55,0x55,0x25,0x1e, 0xa8,0x8b,0x1c,0xc6,0xa7,0xa7,0xea,0xba,0x64,0x4,0x80,0xd0,0xc2,0xb2,0x7c,0xb2, 0xf9,0x98,0xfa,0x1c,0x60,0xd5,0x4b,0x5d,0x64,0xcf,0x6a,0x5f,0x53,0xb5,0xe,0xb1, 0xb0,0x53,0x70,0xe,0x37,0xe4,0xf5,0xd8,0x3a,0xf6,0xe9,0xeb,0x5d,0x27,0xf6,0xc7, 0xf6,0x8c,0x4c,0x96,0xfa,0x83,0x7,0x3c,0x0,0xd6,0xea,0xae,0xf,0xd0,0xd7,0x27, 0xac,0xe8,0x57,0xf3,0xea,0x11,0xdc,0x34,0x4b,0x7d,0xe4,0xbe,0x5a,0x19,0x94,0xa9, 0x6c,0x74,0xdc,0x77,0x73,0x8e,0x3d,0x0,0xf4,0xe6,0xb9,0xbd,0xd6,0xec,0x67,0x34, 0xb7,0x43,0x2f,0xb4,0xf8,0xf5,0xab,0x7d,0xfa,0x66,0xac,0x90,0x9c,0x82,0xcb,0xe6, 0x12,0x0,0x3d,0x8a,0x8a,0xe7,0x2e,0xfc,0x29,0xad,0xb3,0xa5,0xba,0x1b,0x29,0xd8, 0xf2,0xbb,0x2e,0x30,0x7b,0xf2,0x51,0xab,0x4f,0x50,0xb5,0xb9,0x25,0xae,0x63,0xd0, 0x96,0xda,0xd9,0x13,0x5,0xa0,0x55,0x93,0xd,0xcf,0x38,0x7,0x38,0x1d,0x38,0xfc, 0xeb,0x2a,0x3d,0x56,0xdf,0x52,0x95,0x9d,0x20,0x8a,0x29,0xe3,0xc6,0x54,0xc6,0xc9, 0x91,0x8e,0x4e,0xb,0x93,0x5d,0x14,0xb9,0xe2,0xad,0x3,0x17,0x14,0xad,0x26,0x6b, 0x58,0x78,0x62,0xcf,0x46,0xd2,0x2e,0x6f,0xa5,0xb1,0xbf,0x9a,0xfa,0x38,0x4b,0x33, 0xdc,0x4d,0x1a,0x22,0x95,0xe4,0xed,0x8,0x41,0xfa,0x64,0x1a,0xab,0xa5,0xc2,0xf6, 0x3e,0x1c,0xb5,0xb8,0x4b,0x29,0x67,0xbf,0x32,0xb2,0x49,0x22,0x4c,0xc8,0x17,0xf, 0x90,0x19,0x76,0xed,0x23,0x6e,0x39,0xa9,0x5a,0xfa,0x4d,0x42,0xd2,0x3b,0x19,0x66, 0xbc,0x8d,0x15,0x81,0xa,0x26,0xd,0x19,0xc1,0xce,0x39,0xe7,0xb7,0x4c,0x54,0xf6, 0x16,0x73,0xd9,0xdc,0x1b,0xd8,0xa4,0xbc,0x81,0x90,0x67,0x74,0x6c,0xcb,0xf9,0x9c, 0x63,0x1f,0x5a,0x1f,0x35,0x9f,0x39,0xd7,0x1a,0xe9,0xc6,0xc9,0x17,0x60,0xb6,0xd4, 0xae,0xe5,0x8d,0x65,0xb9,0xb1,0xb5,0x56,0xce,0x61,0x56,0xf3,0x5d,0xc7,0xb6,0x38, 0x3,0x9f,0xef,0x55,0x9f,0xec,0xe8,0x2d,0x8e,0xe9,0xe7,0x5f,0x97,0x8f,0x2c,0xc6, 0x76,0x9f,0x4c,0x90,0x49,0xc7,0xe1,0xf8,0xd7,0x2b,0xaa,0xdc,0xdd,0x35,0xe4,0xaf, 0x7b,0x35,0xc4,0xec,0xa3,0xcd,0x60,0x80,0x90,0x80,0x71,0xb8,0x94,0x51,0x8e,0xbd, 0x6a,0xce,0x9d,0xe2,0x32,0x6c,0x55,0x9a,0x59,0x25,0x1,0x40,0x92,0x29,0xa6,0x62, 0xc3,0x9e,0xac,0x33,0xe9,0xde,0xb2,0x95,0x9,0xdb,0x9a,0x2c,0xe4,0x6f,0x5b,0x9d, 0x14,0xc2,0xb,0x3b,0x97,0x10,0xda,0x6d,0xb9,0x28,0x19,0x1,0x9c,0xac,0x47,0x9f, 0xbc,0x6,0x39,0xef,0x52,0xc5,0x72,0x8a,0xa5,0x67,0x3c,0x9c,0x92,0xb1,0x0,0x9c, 0x76,0x39,0x27,0xd6,0x9b,0x9,0xb7,0xbc,0xb6,0xc3,0x40,0xfe,0x58,0xc9,0x1c,0xf1, 0x8f,0xa0,0x3c,0x56,0xbe,0x9b,0x69,0x66,0xc2,0xcb,0xcb,0xb6,0x80,0xbe,0xee,0x0, 0x3c,0x9c,0x6,0x38,0x27,0x83,0xd8,0xf5,0xae,0x46,0xfb,0x8e,0x3e,0xf3,0x1d,0x60, 0xfa,0xa6,0xa1,0x9,0x8c,0x4d,0xe6,0x5b,0xc5,0xc1,0x3c,0x29,0x90,0x91,0xdc,0x8e, 0x4f,0x7,0xda,0xb4,0xe5,0x48,0xd6,0x40,0x1a,0x1,0x85,0xca,0x81,0x8c,0xe3,0x7, 0x92,0x7d,0xfa,0xd2,0xe8,0x24,0x5b,0xe9,0xf2,0x24,0x4b,0xb9,0x90,0x31,0x39,0xea, 0x8,0xc6,0x3f,0x4a,0x7d,0xe2,0x0,0xd7,0x2,0x56,0x62,0x4,0xbc,0x30,0x6d,0xa4, 0x64,0x67,0x8e,0xa3,0xbe,0x39,0x15,0xd0,0xa3,0xee,0xde,0xe7,0x6c,0x17,0x72,0x35, 0x9a,0x30,0x9c,0xc2,0x4f,0x60,0x55,0x93,0xfa,0x8a,0x16,0xe6,0xdd,0xb9,0x10,0xc8, 0x4f,0xb1,0x8e,0xa9,0x69,0xe2,0xee,0xe2,0xb,0xa3,0x69,0x27,0x9a,0x0,0x25,0x77, 0x28,0x59,0x3,0xc,0x65,0x19,0x7a,0x6,0xc1,0xeb,0xd0,0xd3,0xa3,0x9e,0xe7,0x73, 0x3,0xbe,0x66,0x56,0x21,0xbe,0x65,0x58,0xd4,0xfa,0x2,0x14,0x96,0xfd,0x29,0x73, 0x3b,0x5e,0xe3,0xba,0xb5,0xcb,0xa6,0x7b,0x71,0xcf,0x91,0x73,0xff,0x0,0x90,0xff, 0x0,0xa1,0xa6,0x1b,0xbb,0x6c,0xf0,0x97,0x3,0xf1,0x4f,0xfe,0x2a,0xa1,0x91,0xaf, 0x76,0x45,0x27,0xdb,0x40,0x59,0x8,0x5,0x16,0x25,0xf9,0x78,0x27,0xa9,0xfa,0x52, 0x30,0x98,0xaf,0xfc,0x7c,0x31,0xf6,0x31,0xc7,0xff,0x0,0xc4,0xd5,0xdd,0x74,0x2b, 0x95,0x12,0xfd,0xb2,0x21,0xd3,0xed,0x3f,0x80,0x5f,0xfe,0x2e,0x94,0x5e,0xa6,0x33, 0xbe,0xe8,0x67,0xfd,0x9f,0xf0,0x7a,0x41,0xc,0xcc,0xb9,0xd8,0xf,0xbe,0xd4,0xff, 0x0,0xa,0x6b,0x23,0x34,0x11,0xe1,0x14,0x39,0x20,0x1c,0xaa,0x9f,0x5f,0x6f,0x6a, 0x2f,0x20,0x49,0x32,0x4f,0xb6,0xa6,0x78,0x9e,0xeb,0xfe,0xf9,0x3f,0xfc,0x5d,0x39, 0x6f,0xa3,0x39,0xff,0x0,0x48,0xba,0xcf,0xfd,0x72,0x73,0xff,0x0,0xb3,0x55,0x47, 0x7d,0x84,0x2c,0x88,0xab,0x9f,0x58,0x14,0x8f,0xe5,0x46,0xc2,0xec,0x15,0x21,0x86, 0x46,0x3d,0x0,0x89,0x3f,0xa9,0x14,0x6a,0x45,0xe3,0xd4,0xbd,0xf6,0xe8,0xb3,0xcd, 0xdd,0xca,0xff,0x0,0xdb,0x9,0x68,0xfb,0x6c,0x64,0x64,0x5e,0xdc,0x7f,0xe0,0x3c, 0xb5,0x9c,0x8e,0x45,0xf2,0x5b,0x3c,0x10,0xc6,0xe4,0x31,0x23,0xcb,0x0,0x8c,0xc, 0x8e,0xe6,0x9f,0x32,0xba,0x4d,0x30,0xfb,0x1c,0x1b,0x63,0x62,0x37,0x34,0x1b,0xb2, 0x3a,0xe7,0xaf,0xbd,0x3e,0x69,0x6c,0x55,0x96,0xe5,0xb3,0x7a,0xa3,0xad,0xe4,0xc3, 0xeb,0x4,0x83,0xfa,0x50,0x2f,0xf0,0x0,0x17,0xaf,0x81,0xeb,0xb,0xff,0x0,0xf1, 0x35,0x98,0x4b,0x3e,0x19,0x21,0xb3,0x0,0xfa,0x40,0x47,0xf2,0x6a,0x48,0xe6,0x29, 0x74,0x91,0xc9,0xc,0x4,0x32,0x3b,0x65,0x10,0xae,0x36,0x8c,0xfa,0x9a,0x1b,0x65, 0x28,0xa6,0x6a,0x7f,0x68,0x0,0xb8,0x37,0xa0,0x8f,0x46,0x8d,0xbd,0x3d,0xd0,0xd3, 0x64,0xbe,0x49,0x7e,0xf5,0xdc,0x6d,0x8f,0xef,0x26,0x7f,0xf6,0x9d,0x50,0x76,0x2d, 0x34,0x81,0x20,0xb7,0xc2,0xb9,0x4f,0x9f,0x70,0x27,0x1d,0xf2,0x8,0xa9,0x6c,0xf0, 0xd2,0x4c,0xad,0xc,0x61,0x92,0x3d,0xea,0xc8,0xc4,0xf3,0xf8,0x93,0x4a,0xee,0xe1, 0xcb,0xad,0x87,0x49,0x72,0x8b,0x6d,0x34,0x89,0x2c,0x2c,0x42,0x1c,0x6c,0xb,0xe9, 0xec,0xa2,0xa2,0x93,0xfe,0x43,0x3a,0x99,0x3d,0xf4,0xd7,0xff,0x0,0xd1,0x71,0xd4, 0x4c,0x4a,0x68,0xcd,0xe6,0x39,0x67,0xf2,0x9,0x27,0x3e,0xd4,0xe9,0x5f,0x1a,0xc6, 0xaf,0xdf,0x6e,0x96,0xe7,0xff,0x0,0x21,0xc7,0x57,0x45,0xee,0x67,0x22,0x48,0x47, 0xfa,0x3e,0x86,0x3d,0x27,0x73,0xff,0x0,0x93,0x9,0x52,0x92,0x11,0x75,0x6c,0x9e, 0x5a,0xe2,0x3c,0x7e,0x13,0xb9,0xfe,0x95,0x4,0x6d,0x81,0xa0,0x2f,0xac,0xb3,0x7e, 0x93,0x25,0x35,0x66,0x12,0x89,0xe5,0x24,0x28,0x9a,0x51,0x20,0x53,0xdf,0x99,0x8, 0xe7,0xf1,0xab,0xa9,0x2b,0x37,0xfd,0x74,0x32,0x8b,0x49,0x23,0x42,0xdf,0xe5,0xd5, 0x34,0x93,0xe9,0x6b,0x17,0xfe,0x81,0x2d,0x62,0x38,0xdf,0xe1,0x22,0x7,0xfc,0xf7, 0x3f,0xfa,0x4a,0x6b,0x5a,0x29,0x31,0xa9,0xe9,0xcc,0x79,0x2,0xca,0x36,0xfa,0xfe, 0xee,0x5a,0xc5,0x8d,0x8b,0x78,0x6d,0x63,0x52,0xb,0x99,0xbe,0x55,0x7,0xfe,0x9d, 0xb1,0xfd,0x45,0xe,0x76,0x68,0x52,0xd9,0xdc,0xdb,0xd5,0xee,0xe1,0x95,0x2e,0xa1, 0x12,0x5,0x69,0x24,0x2a,0x87,0x76,0xe,0x70,0x3f,0xc2,0x99,0xa7,0x5d,0xdd,0xcf, 0x12,0x6,0x96,0x39,0x64,0x7,0x91,0x1b,0x81,0x91,0xef,0x9a,0xa3,0xa9,0xdc,0xc1, 0x76,0xd2,0x14,0x8d,0x52,0x41,0x31,0x21,0x98,0xed,0x0,0x63,0x8e,0x7b,0x93,0x53, 0xe9,0x97,0xba,0x64,0x1,0x9f,0xc9,0x90,0xec,0xfb,0xac,0x57,0x24,0xfa,0xf7,0xae, 0x5b,0xbe,0x6b,0xb3,0x55,0x52,0x37,0xb1,0x6a,0xe5,0xa4,0x1a,0x96,0xf9,0x13,0x6b, 0xb,0x61,0xf2,0xe7,0xdc,0xf7,0xad,0x76,0x9e,0xeb,0xa1,0xb0,0x72,0x3d,0xa4,0x5a, 0xc8,0x96,0x51,0x76,0xd2,0xdc,0x79,0x52,0x46,0xc,0x4a,0xaa,0x1f,0x82,0x46,0x4f, 0x3f,0xad,0x74,0xbb,0x78,0x23,0xaf,0xd0,0x57,0x52,0xf8,0x55,0x8c,0x97,0xc5,0x26, 0xcc,0xef,0xb6,0xaa,0xfc,0xb2,0x41,0x70,0x8c,0x3a,0x8f,0x28,0x9f,0xe5,0xc5,0x41, 0x73,0x39,0x51,0xf6,0x85,0x8c,0x98,0xb0,0x14,0x96,0xca,0x91,0xf8,0x11,0x53,0xbd, 0xe5,0xd4,0x37,0x3e,0x5c,0xb6,0xf,0xe4,0x12,0x2,0xcd,0xb,0x86,0x1c,0xfa,0x8e, 0x31,0xfa,0xd3,0x75,0x3f,0xf8,0xf2,0x9d,0x76,0xf1,0xf2,0x73,0xeb,0x96,0x14,0xdd, 0xec,0x57,0x2a,0x21,0x61,0xf3,0x9f,0x5c,0xf3,0x4a,0xdc,0xdb,0x3,0x8e,0xb8,0x3f, 0x99,0x14,0xd6,0x60,0x19,0xc9,0x3c,0xe7,0x38,0x1c,0xd2,0x5d,0x4f,0x1d,0xb5,0xb4, 0x71,0xbb,0x0,0xe4,0xc,0xf,0xa6,0x2b,0x78,0x19,0x4d,0x10,0x87,0xc,0xee,0x9d, 0xd4,0x54,0xea,0x3e,0x41,0xf4,0xaa,0x11,0xb2,0xf9,0xaf,0x20,0x3c,0x11,0xcd,0x6a, 0x26,0x3c,0xb5,0xfa,0x52,0x8c,0xae,0xec,0x45,0x88,0x36,0xf2,0x69,0xbb,0x7a,0xd4, 0xac,0x0,0x19,0xa8,0xc3,0xae,0x9,0x3c,0xe,0x6a,0xf9,0xd2,0x13,0x88,0xf0,0xbf, 0x28,0xfa,0x53,0x4a,0xe5,0xb0,0x45,0x1e,0x68,0xca,0xf,0x55,0xcd,0x24,0xb2,0x1, 0x75,0xb7,0x23,0x20,0xc,0x81,0x53,0xed,0x12,0xe,0x52,0x8d,0xe6,0x87,0x15,0xe3, 0x6f,0x5b,0x9b,0xbb,0x59,0x9,0x4,0xb5,0xbc,0xc5,0x41,0xc7,0xaa,0x9c,0x83,0xf9, 0x55,0xcb,0x1b,0x29,0x2d,0x23,0x65,0x7b,0xb9,0xae,0x32,0x78,0x32,0x85,0x18,0xfa, 0x60,0xa,0xb2,0x39,0xa9,0x42,0xf1,0x5b,0x7b,0x57,0x6b,0xb,0xd9,0xad,0xc6,0x81, 0xc8,0x18,0xa7,0x76,0xe8,0x6a,0x29,0xe3,0x63,0x96,0x12,0x94,0xfe,0xe8,0x1e,0xb5, 0x5b,0x57,0xbc,0x93,0x4f,0xd2,0x7c,0xd1,0xcc,0x8c,0xc2,0x3d,0xd8,0xce,0x32,0x79, 0x35,0x9b,0x9d,0x8b,0x51,0x26,0xba,0x65,0x48,0x77,0x32,0x93,0xe9,0x86,0x20,0x7e, 0x75,0x81,0x2c,0xb7,0x2c,0xcf,0xe4,0xce,0x20,0x1d,0x8c,0x71,0xef,0xfd,0x4f,0x15, 0x76,0x20,0xb2,0xa3,0xb8,0x92,0x4b,0x87,0x20,0xe7,0x7,0xd,0x8f,0x61,0x59,0x23, 0xcd,0x49,0x5d,0x4,0xf9,0x19,0xe0,0xed,0x0,0x81,0xe9,0x8e,0x79,0xae,0x39,0xe2, 0x1f,0x37,0x34,0x4d,0x61,0x14,0xf4,0x1e,0xaf,0x30,0x24,0x49,0x7d,0x71,0x23,0x91, 0x93,0x92,0x0,0x1f,0xf7,0xce,0x2a,0x19,0x1e,0x49,0x19,0x37,0xb3,0x4a,0xa7,0xee, 0xe5,0x89,0xef,0x53,0xc5,0x14,0xed,0x20,0x67,0x62,0x60,0x0,0xee,0xdc,0x79,0x23, 0xfa,0x52,0x5d,0x29,0x97,0x74,0x90,0x49,0x1f,0x9a,0xac,0x8c,0x42,0x8e,0x3a,0x8c, 0x7f,0x2a,0xe7,0x9d,0x57,0x27,0x76,0x68,0xa9,0xd9,0x68,0x36,0xde,0x71,0x15,0xda, 0x87,0x19,0x42,0x84,0x3,0x8e,0x99,0xc6,0x3a,0x54,0x77,0xb1,0xd8,0x5b,0x24,0xb3, 0x5c,0x6,0x11,0x77,0xda,0xf9,0x2e,0xde,0x83,0xd4,0xd4,0xb2,0x1,0x1c,0xc4,0x83, 0xc3,0xa8,0x4,0x63,0x23,0xd4,0x7f,0x5a,0x85,0xa1,0x7b,0xc8,0xe4,0x33,0x84,0x8, 0x87,0x86,0x8,0xb,0x1,0xf8,0xd4,0x5e,0xe2,0x9d,0x25,0x28,0xee,0x58,0xfb,0x40, 0x36,0x8b,0x1c,0x45,0x91,0x58,0x5,0x45,0x94,0x72,0xbf,0x5c,0xfa,0x7e,0x35,0x83, 0x35,0xcc,0xb6,0x7a,0x8f,0xd9,0x1d,0xa4,0xc8,0xc1,0x2a,0x9c,0x86,0x7,0xb8,0xe9, 0xff,0x0,0xd6,0xab,0xe6,0xe3,0x90,0xec,0xa1,0x21,0x55,0x23,0xcc,0xcf,0xcc,0xdd, 0xba,0x55,0x19,0x6e,0xed,0x2f,0x99,0x12,0xe4,0xc9,0xe6,0x46,0x77,0x45,0x2c,0x6c, 0x16,0x58,0xc7,0x7e,0xc7,0x23,0xda,0xb7,0xa6,0x9e,0xba,0x1e,0x7c,0xaf,0x7b,0x1b, 0x56,0xbb,0x27,0x89,0x4c,0x2e,0x57,0xd8,0x2f,0xff,0x0,0x5e,0xae,0x41,0x28,0x46, 0x52,0x5f,0x78,0x1c,0x74,0xe9,0x58,0xd6,0xd7,0x5a,0x1c,0x92,0xf9,0x9,0x75,0xe6, 0xce,0xbf,0x31,0x69,0x65,0xd8,0x4f,0xf2,0xfc,0xab,0x40,0x6a,0x36,0x3e,0x62,0xc4, 0xb7,0x88,0x64,0xce,0x17,0x69,0xde,0x73,0xf8,0x56,0x32,0xb9,0xb5,0x29,0xdb,0x73, 0x79,0xae,0x8,0x8a,0x48,0x83,0x6,0x32,0xae,0x2,0xfa,0x71,0xd6,0x97,0xcc,0x50, 0xab,0xf3,0xe4,0x9e,0xc3,0xb7,0xb5,0x66,0x44,0x96,0xdf,0x6b,0x1e,0x6c,0xf3,0xac, 0x83,0x93,0xf3,0x82,0xf,0xd4,0x63,0x8a,0xbf,0x30,0x7e,0x1a,0x38,0xf2,0x31,0xd5, 0xf,0x18,0xfa,0x54,0x39,0x34,0x8e,0x98,0x54,0xe6,0x62,0x99,0xb7,0x3e,0xd3,0x9c, 0x2,0x7,0x3e,0xf5,0x72,0x2b,0xe3,0xd,0xb0,0x5c,0xe1,0x8b,0xed,0x5c,0x7a,0x56, 0x58,0x6d,0xc7,0x6e,0x79,0xa7,0xc6,0x7e,0x6c,0x77,0x1c,0xf3,0x4e,0x33,0x68,0xdb, 0x73,0x62,0x1b,0xd6,0xd8,0xf9,0xea,0x83,0x35,0x9f,0x2c,0x8d,0x2c,0xa5,0xce,0x39, 0xeb,0xf5,0xa5,0x46,0x2b,0xf7,0xe,0xe2,0xa3,0xc,0x3d,0x7f,0xce,0x2a,0x19,0x24, 0xdb,0xfc,0x5,0x72,0x72,0x73,0xc8,0xad,0x9c,0xf9,0x96,0xa5,0xc2,0x36,0x25,0x50, 0x40,0xdd,0x91,0x8a,0x54,0x71,0xb8,0x3b,0x63,0x8e,0xc4,0xe2,0xa2,0x52,0x0,0xc9, 0xc0,0xf5,0xf6,0xa9,0x15,0x8,0x0,0x90,0xfc,0xae,0x72,0x30,0x45,0x4a,0xd7,0x62, 0xac,0x2c,0xee,0xd3,0x10,0x78,0x38,0xe8,0x3b,0x54,0x4a,0xa0,0xa1,0xa4,0x76,0xb, 0x1e,0x37,0x2,0x4f,0xb6,0x2a,0x3f,0x37,0x2c,0x3,0x7d,0x33,0x49,0xcb,0x52,0x6c, 0x4c,0xac,0x54,0xf5,0xe9,0x41,0x73,0xdb,0x8c,0x77,0xaa,0xec,0xec,0x33,0x92,0x29, 0x8c,0xdb,0x94,0x85,0xfb,0xc7,0xd3,0xbd,0x17,0x2a,0xc5,0x8d,0xfb,0x97,0x39,0xce, 0x7a,0x52,0x24,0x84,0xf5,0x3c,0xfd,0x6a,0xb4,0x72,0x12,0x55,0x14,0xe4,0x63,0xa5, 0x4c,0xcb,0x86,0xca,0x9f,0x97,0x23,0xaf,0x6a,0x41,0x62,0xc0,0xe7,0x3f,0x4a,0x70, 0x91,0x1,0xa,0x57,0xaf,0x53,0xe9,0x55,0x1b,0x76,0xff,0x0,0x9d,0xb6,0xa6,0x33, 0x91,0x4d,0x69,0x80,0x90,0xa1,0x24,0x2,0x32,0x8,0x19,0xa6,0x98,0xb9,0xb,0x0, 0xe4,0xf0,0x47,0x52,0x3a,0xd2,0xb3,0x94,0x53,0xeb,0x54,0x95,0x82,0xb9,0x2,0x41, 0xc7,0x3c,0x82,0x33,0x52,0x97,0x2c,0xa0,0x8e,0x9d,0xe9,0x5c,0x39,0x2c,0xc9,0x62, 0x62,0xa4,0x63,0x38,0xef,0x83,0x57,0x84,0xef,0x14,0x27,0x20,0x10,0x7a,0x73,0xd6, 0xb3,0x44,0xbe,0x5b,0x6,0x4c,0x67,0x1c,0xe6,0x9f,0x2c,0xe0,0xb8,0x58,0xf1,0x92, 0x3f,0xa,0xb5,0x3e,0xc2,0x69,0x31,0x64,0x95,0x82,0x93,0x83,0xf5,0x3,0x34,0x9e, 0x6b,0x32,0x60,0x1e,0xf,0xad,0x54,0xdc,0xec,0x4e,0xe6,0xfc,0x1,0xc5,0x28,0x98, 0xa6,0x10,0x28,0x35,0x37,0x2b,0x95,0x17,0x62,0x7d,0x83,0xe5,0x27,0x35,0x2a,0xcc, 0xc4,0x9c,0x9c,0xe6,0xa8,0x46,0xec,0x3a,0xf3,0x93,0xdb,0xb5,0x4f,0xbf,0x1c,0x67, 0x8c,0xd2,0xbe,0xa4,0x4a,0x37,0x1c,0xaa,0x18,0xb8,0x24,0x55,0x59,0xd4,0x45,0x12, 0xa8,0xc1,0x1b,0xb3,0x56,0x90,0x72,0xe4,0xe0,0x8e,0xd5,0x56,0x47,0xd,0xb5,0x76, 0x91,0x8c,0xe7,0x35,0xbf,0xb5,0x5c,0xa8,0xc3,0xd8,0xbb,0xdc,0xa8,0x49,0x2e,0x4e, 0x2a,0xdc,0xe,0x82,0x2d,0xb9,0xe4,0x83,0x9a,0x81,0xe3,0x18,0xf9,0x73,0x9a,0x50, 0xd8,0x51,0xc0,0xc9,0xf4,0xa8,0x55,0x5a,0xd5,0x15,0x2a,0xd,0x9b,0xfe,0x13,0xeb, 0x7a,0x3b,0xd,0x9f,0xfb,0x35,0x74,0xb5,0xcd,0xf8,0x50,0x63,0xed,0x87,0xd7,0x67, 0xf5,0xae,0x92,0xbb,0xe8,0x3b,0xd3,0x4c,0xce,0x51,0xe5,0x76,0x38,0x8f,0x88,0x61, 0x19,0x34,0xe5,0x78,0xa3,0x95,0x49,0x93,0x2b,0x22,0xee,0x7,0xee,0xf6,0xaf,0x37, 0x97,0x4e,0x49,0xcb,0xcb,0xa7,0xe8,0xe9,0xc,0x51,0xe0,0xcc,0xff,0x0,0x77,0x7e, 0x3b,0x28,0x1c,0xe,0x9d,0xbf,0x4a,0xf4,0xf,0x89,0x52,0x95,0x93,0x4a,0x8b,0x2a, 0x12,0x41,0x2e,0x49,0x38,0xc6,0x1a,0x3e,0xff,0x0,0x4c,0xfe,0x75,0xe7,0xb0,0x78, 0xae,0xdc,0x45,0x71,0x66,0xe6,0x50,0x23,0x62,0x8b,0x22,0x82,0xa4,0x76,0x39,0x3, 0xf1,0xaf,0x3b,0x11,0x19,0x7b,0x59,0x35,0xe5,0xf9,0x1d,0xb1,0x49,0x52,0x8b,0xbf, 0xfc,0x35,0xce,0x33,0x5f,0xb6,0x95,0xbc,0x57,0x2,0x46,0x24,0xfd,0xc8,0xda,0x2, 0xd,0xf8,0x1d,0x70,0x49,0xea,0x41,0x27,0xaf,0xb5,0x6f,0xa5,0x84,0x73,0xc7,0xc, 0xd2,0x31,0x8a,0x4c,0x85,0xdc,0x1,0xf2,0xfd,0xb7,0x71,0xc5,0x3b,0xc4,0xda,0x96, 0xa7,0xa6,0xdc,0x69,0xed,0x3a,0xc3,0x7f,0xa6,0x84,0xe6,0x65,0x8b,0xf7,0x8b,0x92, 0x32,0x19,0xb3,0xf4,0x23,0xf2,0xa7,0xb6,0xb5,0x15,0x8c,0xd6,0xef,0x5,0xa8,0xb9, 0x86,0x54,0xde,0x9b,0x98,0x2a,0x1e,0x32,0x7,0x43,0xc8,0x7,0xb8,0xea,0x3e,0xb5, 0xa5,0x4f,0x69,0x28,0xc7,0x95,0x1d,0x58,0x5a,0xf1,0xa4,0xa5,0xef,0x6a,0x73,0x1e, 0x22,0xd1,0x66,0x87,0x5d,0x59,0xe7,0x32,0x7,0x2b,0xf2,0x2,0xb,0x2e,0x33,0xd0, 0x1f,0x4e,0x7d,0xab,0x7f,0x42,0x51,0x69,0x23,0xc6,0x6d,0x55,0xa1,0x9c,0xe6,0x49, 0x11,0x33,0x28,0x18,0x3,0x19,0xce,0x36,0xfe,0x5d,0x7b,0xd6,0xab,0x6a,0x2d,0xa9, 0xc5,0x6e,0x96,0xda,0x7a,0x42,0xe2,0x46,0x8e,0x68,0x26,0x8f,0xc,0x38,0x52,0x8, 0xf6,0xe4,0xd5,0xcd,0x3e,0xd6,0x38,0x5c,0xcc,0xd6,0xd1,0x48,0x3c,0x82,0x19,0x10, 0x67,0x39,0x20,0xe3,0x23,0x91,0xf7,0x79,0xac,0xab,0xd7,0x97,0x22,0x84,0xcc,0xb0, 0xf1,0x87,0xb3,0x73,0x72,0xd5,0x97,0xc3,0x3a,0x4c,0xb2,0xda,0x45,0x18,0xc1,0xf, 0xe5,0x22,0x85,0xda,0xa4,0x63,0x4,0x3,0xd7,0xbe,0x7f,0xc6,0xaf,0x5b,0xdc,0xa3, 0x44,0xca,0xef,0xf3,0xff,0x0,0x14,0x6d,0xc1,0xcf,0xad,0x52,0x86,0xd2,0xf2,0x48, 0x62,0xbb,0x81,0x6d,0xd6,0x73,0x9f,0x32,0xdf,0x61,0x55,0x23,0x24,0xc,0x1c,0xf0, 0x70,0x29,0x97,0x4d,0xaa,0x40,0xe2,0x43,0x62,0xd7,0x91,0x93,0x80,0xa0,0x8,0xda, 0x3f,0x62,0x49,0xc3,0x7e,0x4,0x57,0x8d,0x38,0xa9,0xbb,0x5d,0xd,0xde,0x2a,0xc8, 0x4d,0x4b,0x57,0xb2,0xb6,0x50,0x91,0x42,0x8c,0x5d,0xbe,0x66,0x65,0x3f,0x2e,0x3d, 0xea,0x78,0xef,0xd6,0x7d,0x3e,0x69,0x3c,0xa7,0x71,0xf,0x3f,0x2f,0xf1,0xf,0x63, 0xda,0xb2,0xda,0x3b,0x9b,0x9b,0x83,0x15,0xde,0x91,0x76,0x60,0x53,0xb8,0x34,0x71, 0x71,0x1f,0xe3,0x9c,0x76,0xad,0x4b,0x18,0xa4,0x16,0x97,0x3e,0x57,0xce,0x3,0x86, 0x2a,0x78,0x5,0x30,0x38,0x1f,0x97,0x35,0xd6,0xa3,0x4a,0x94,0x15,0xdd,0xd9,0xcd, 0x3e,0x69,0x4a,0xd6,0x25,0xb6,0xf2,0x26,0x44,0x78,0x1f,0x29,0x30,0x2d,0xf3,0x8c, 0x13,0x8c,0x70,0x47,0xe7,0x4f,0x46,0xb6,0x59,0x99,0xde,0x5c,0x1f,0x7e,0x55,0x79, 0xe9,0xfa,0x7e,0xb4,0xb7,0x73,0x21,0xb7,0x8d,0xc6,0xd9,0x1c,0xb2,0x84,0x55,0x1c, 0xb1,0xf4,0xe3,0xbe,0x2a,0xb,0xbc,0xcb,0x74,0xa3,0xe6,0x51,0x2f,0x55,0x23,0x6b, 0xf,0x62,0x33,0x5c,0x75,0xe0,0x94,0xae,0x9e,0x8c,0xea,0xa2,0xf9,0x96,0xa4,0xa3, 0x53,0x8e,0x39,0x9d,0x53,0xca,0x39,0xff,0x0,0x96,0x91,0x6d,0xce,0x3f,0xad,0x40, 0xb7,0x77,0xc,0xeb,0x1d,0xb2,0x6d,0xb7,0x23,0xba,0x60,0xc8,0x47,0xf3,0xa5,0x8e, 0xb,0x74,0x99,0x94,0xbb,0xc5,0x20,0xc8,0xd8,0xce,0x7,0xe4,0x3b,0xd4,0xc2,0xca, 0x46,0x80,0x79,0x65,0x44,0x81,0x8e,0x9,0xe0,0x9e,0x9d,0x85,0x4a,0xe4,0x4b,0x7d, 0x4b,0xb2,0x52,0xb0,0xb1,0xc6,0x2,0xee,0x55,0xd8,0x4f,0x25,0x48,0xfd,0x29,0x1d, 0x1a,0x3c,0x93,0x1b,0x79,0x7f,0x74,0xe4,0xe7,0x27,0xb6,0x2a,0x38,0xd9,0xe2,0xde, 0xb7,0x12,0xc8,0xb3,0x9e,0x8a,0xcb,0xf2,0xfe,0x4,0x54,0x12,0x25,0xc4,0xb0,0x34, 0x86,0xd6,0x69,0x94,0x49,0x9d,0xeb,0xfc,0x27,0xd8,0x67,0x3f,0xa5,0x56,0x19,0x49, 0x4d,0xbb,0xa1,0x54,0x57,0xd0,0xbe,0xb2,0xa4,0xd9,0x10,0xae,0x1d,0x70,0xdf,0x20, 0xe4,0x7d,0x71,0xf8,0xd4,0x6e,0xaf,0x80,0xe9,0x12,0x82,0x9,0xe4,0x73,0xd7,0xb5, 0x51,0xb1,0x8a,0xda,0x68,0xd5,0xee,0xd2,0x48,0xe6,0x89,0xd8,0xc1,0x2a,0xc,0x97, 0x42,0x73,0xce,0x3b,0xe4,0x63,0x15,0x68,0xea,0xb1,0xa0,0x7d,0xa9,0x70,0xcc,0xa0, 0xed,0x4c,0x1c,0xb9,0xf6,0x6,0xb4,0x9d,0x79,0x46,0x76,0x8a,0xb9,0x9c,0x68,0xde, 0x3a,0x8c,0x96,0x64,0x8d,0x99,0xbe,0xce,0x5f,0x8,0xce,0xe6,0x30,0x9,0x55,0x7, 0x4,0xfe,0xa2,0xa0,0x65,0x37,0x16,0x97,0xd7,0x40,0xb6,0xe5,0xcf,0x92,0xc0,0xff, 0x0,0x77,0x1d,0x7,0xb9,0xc8,0xa9,0xad,0xa0,0x9e,0x16,0xb6,0x92,0x60,0xe5,0xc4, 0x5c,0xa8,0x4c,0xed,0x24,0xf2,0xd,0x5d,0x8e,0x2b,0x99,0x19,0x82,0xc8,0xb1,0xe0, 0x65,0x1b,0x67,0x20,0xf6,0xe3,0x14,0xab,0x62,0x5a,0x8d,0x90,0xa1,0x4e,0x28,0xad, 0x6b,0x35,0xad,0xcc,0x31,0x95,0x64,0x32,0xb1,0x23,0xe5,0x19,0x3d,0x33,0x52,0xc1, 0x3c,0x6f,0x71,0xe5,0x15,0xe3,0x60,0x71,0x9e,0x38,0x39,0xff,0x0,0xa,0xac,0xb6, 0x53,0xdb,0xea,0x30,0xdc,0xdc,0xca,0x66,0x91,0x49,0x22,0x51,0x1e,0xd4,0x24,0x8d, 0xa7,0x76,0xde,0x9c,0x74,0xe0,0x53,0xc5,0xbc,0xd1,0x6a,0xf2,0xcb,0x5,0xab,0xc9, 0xb,0x44,0xaa,0x2,0x48,0xbd,0x46,0x7d,0x4f,0xd2,0x92,0xab,0x6,0xd5,0xac,0x65, 0x2c,0x3c,0x6c,0xda,0x7a,0x97,0x7c,0xd1,0xb9,0xb6,0xc6,0x49,0xeb,0xed,0x50,0x6f, 0x38,0x92,0x61,0x33,0x8,0x83,0x0,0x57,0xa8,0xc6,0x79,0x15,0x4,0x5e,0x6c,0xf3, 0x8,0xe6,0xb4,0x92,0xdd,0x94,0x8c,0x34,0x9d,0x7,0xe2,0x9,0xab,0x16,0x3e,0x55, 0xb2,0x4e,0x50,0x11,0x99,0x5b,0x7,0xb9,0x3d,0xc8,0xf6,0xa1,0xd6,0x8c,0x35,0xdc, 0x8a,0x74,0xdb,0xd1,0x92,0x47,0x71,0xba,0xdc,0xbc,0x6e,0x18,0x67,0xaa,0x8d,0xc0, 0x7e,0x55,0xa,0xef,0x9d,0x83,0x92,0x8,0x23,0x3d,0x71,0x9f,0xc2,0xa7,0x56,0x82, 0x59,0x24,0x30,0x94,0x2b,0x27,0xcc,0xcc,0x83,0x0,0x93,0xd7,0x38,0xa1,0xc0,0x8b, 0xcb,0x44,0x8c,0xf0,0xa0,0x7c,0xb8,0x1c,0xf6,0xe6,0xba,0xa8,0x55,0x73,0xd9,0x1d, 0x2a,0x1c,0xa8,0xab,0x2d,0xcc,0xcd,0x88,0xf6,0x6d,0x45,0x18,0x60,0xe,0x7f,0x3a, 0x95,0x21,0x65,0x8c,0x32,0xa9,0x21,0x86,0x1,0x4,0x71,0xf9,0x54,0x68,0xb6,0x97, 0x1,0x6e,0x55,0x12,0x58,0x9b,0x86,0x2c,0xa3,0x72,0x9e,0xe1,0x87,0x63,0xd2,0x9e, 0x66,0x4b,0x36,0x58,0xb7,0xc7,0xb1,0xf2,0x51,0x57,0xb0,0x1f,0xe4,0x55,0x2a,0xeb, 0x9b,0x91,0x6e,0x5a,0xd8,0xbb,0xa6,0x66,0x5f,0xb2,0x3c,0xb2,0x84,0x12,0x3e,0x54, 0x63,0x38,0x1c,0x63,0xfa,0x57,0x63,0x6b,0x77,0x1c,0x10,0xca,0xaa,0xe3,0x62,0x3b, 0x2e,0xe3,0xd3,0x3d,0xeb,0x88,0x8e,0x2b,0xb3,0xa7,0xc4,0x82,0x58,0xe0,0xf9,0x70, 0x7,0x72,0xbf,0x5e,0xdd,0xab,0x72,0xcd,0x60,0xb7,0x11,0x5a,0xbb,0xb3,0x47,0x18, 0x24,0xb0,0xc9,0xdc,0xde,0xa4,0xd6,0x94,0xeb,0xb8,0x6e,0xd5,0xce,0x7a,0xd1,0x4d, 0x1a,0xb3,0xf8,0x86,0xc8,0x45,0x18,0x13,0x2b,0x3b,0x75,0x1b,0x4f,0x1c,0x1e,0x4f, 0xb5,0x60,0xdc,0xbd,0xde,0xa1,0x70,0x6e,0xad,0x6e,0x21,0x92,0x38,0xc2,0xa9,0x48, 0xce,0xd2,0x30,0x9,0xc7,0xaf,0x7f,0x5e,0x6a,0xc5,0xfc,0x36,0xec,0x21,0x78,0x72, 0xa1,0xdc,0xa1,0x57,0x0,0x9c,0xed,0x63,0x9c,0xe7,0xa7,0x15,0xcc,0x6b,0x28,0x96, 0x8e,0xb8,0x82,0x36,0x72,0x71,0x24,0xe4,0x1c,0xe0,0x63,0x81,0x8e,0x7,0xd6,0xba, 0xbd,0xa4,0xaa,0x58,0xe4,0x9c,0xb9,0x16,0xd7,0x2a,0xde,0x4d,0x25,0xdf,0x97,0xc, 0xda,0x7c,0x73,0x2c,0x88,0x4b,0x29,0x91,0x11,0x1,0xcf,0x5c,0x9e,0xb8,0xfa,0xd6, 0xd,0xdd,0xde,0x9f,0xa7,0x46,0x3c,0x89,0xda,0x25,0x72,0x51,0x92,0x39,0x37,0x27, 0xb9,0x18,0x38,0x23,0x8e,0xd4,0xcb,0x9b,0x9b,0x99,0xa4,0x91,0x56,0x1,0x24,0x58, 0xda,0xb1,0xe4,0xb0,0x3,0xd3,0x1e,0x9f,0x85,0x55,0x1a,0x6d,0xe5,0xfd,0xcc,0x36, 0xd0,0xac,0x2f,0x33,0x6,0x2b,0x19,0x88,0x0,0x14,0xc,0xf3,0xb4,0x67,0xa7,0xaf, 0xe7,0x5d,0x70,0xa3,0x18,0xab,0xcc,0xe7,0x8b,0x53,0xd3,0x97,0x52,0xd4,0x10,0xd8, 0xc5,0x2a,0x4a,0xb7,0xe4,0xc5,0x3a,0x32,0x15,0x4d,0xe8,0x4a,0x1e,0xbc,0x55,0x81, 0xa0,0xc0,0xd7,0x62,0x45,0x82,0x21,0x9c,0x91,0x33,0xb9,0x55,0xec,0x33,0x80,0x9, 0xe6,0xb2,0x6f,0x7c,0x31,0xab,0xe9,0x97,0x90,0x9b,0x98,0xe4,0x23,0x1f,0x2b,0x2e, 0x58,0x0,0x3b,0x3,0xd8,0x8f,0x4f,0x7a,0xe9,0xbe,0xd3,0x2d,0xb6,0x9d,0x14,0xf7, 0x51,0x8,0x2,0xa8,0x5,0x98,0xf5,0x1f,0x87,0x39,0x3e,0x9f,0xa5,0x54,0xb9,0x55, 0x9d,0x39,0x5e,0xe6,0x4e,0x12,0x4f,0x51,0x2e,0x3c,0x2f,0x73,0x13,0x19,0x20,0x9a, 0xd6,0x69,0x97,0x8d,0x91,0x36,0x24,0x61,0xdf,0x6b,0x91,0x8c,0xf3,0xd0,0xe3,0xeb, 0x55,0x6c,0x60,0x96,0xdf,0x56,0xb5,0xd3,0xae,0x4d,0xe5,0xa2,0x49,0x21,0x12,0x9, 0xc6,0xee,0x36,0xb6,0xa,0x9c,0x95,0x20,0x91,0x8a,0xb3,0x1e,0xaa,0x75,0x1b,0x29, 0x24,0xb2,0x92,0x75,0x64,0x5d,0xef,0xb1,0x4a,0xe5,0x72,0x32,0x79,0xed,0x8e,0x73, 0xed,0x55,0xd7,0x58,0xbf,0xb5,0xe6,0xda,0xf6,0xe2,0x30,0xaa,0x72,0xc4,0xef,0x7, 0xa9,0xee,0xf,0xa5,0x67,0x6a,0x8d,0x5a,0x45,0xd3,0xaa,0xe3,0x34,0xad,0xb9,0xab, 0x73,0xa1,0xc6,0xd3,0xdd,0x2d,0x85,0xed,0xa9,0x95,0x21,0x76,0x7b,0x75,0x9c,0xed, 0x91,0x73,0xc8,0x60,0x3e,0xe9,0x3d,0xb9,0xdb,0x91,0xd0,0x57,0x37,0x73,0xe1,0x6d, 0x47,0x4d,0xba,0x4d,0x4d,0x9a,0x4b,0x98,0x98,0x9e,0x2,0x6f,0x57,0x51,0xc1,0xe4, 0x1e,0x7b,0x63,0x8c,0x1e,0x39,0xae,0xb6,0x5d,0x46,0x28,0x2e,0x99,0x75,0x2b,0x68, 0x6e,0x25,0x58,0x4,0xd1,0x5c,0xf9,0x1c,0xb2,0x74,0xc1,0xf9,0x78,0x3d,0x6b,0xa, 0x4f,0x1a,0x98,0x6e,0x1a,0x34,0x36,0x71,0xa0,0xf9,0x95,0x16,0x36,0x46,0x23,0x3c, 0x92,0xd9,0x0,0x1f,0x7c,0x54,0xd3,0x9d,0x67,0x75,0x14,0x6b,0x5a,0x69,0xe9,0x6b, 0x16,0xac,0xac,0x2f,0xee,0x23,0xf,0xf6,0x49,0x51,0x79,0x23,0xcc,0x8f,0xcb,0x38, 0xce,0x73,0xce,0xf,0xa5,0x6a,0xda,0xae,0xb7,0x63,0x3e,0xc7,0x86,0x59,0x23,0xc8, 0x91,0x15,0x86,0xfc,0x1c,0xf4,0x2c,0x3a,0x75,0x3d,0xfb,0xd6,0x1d,0xa7,0x8b,0x25, 0xbe,0x9a,0x45,0xb8,0x5c,0xa6,0x79,0x44,0x38,0x68,0xfa,0xf2,0x3f,0xc3,0x9f,0xd6, 0xba,0x48,0x2e,0x8b,0x44,0x89,0x5,0xf4,0xaa,0x31,0x98,0xc1,0x6e,0x4f,0x3d,0x3a, 0xff,0x0,0x4a,0xe7,0xad,0xce,0x9f,0xbc,0x8e,0x55,0x2e,0x56,0x6d,0x69,0xba,0x9c, 0x36,0x1b,0xa4,0xb8,0xca,0xa3,0xa1,0x5,0x54,0x12,0x43,0x64,0x7c,0xb8,0x3,0x9a, 0x8a,0xeb,0x51,0x37,0xae,0x7c,0xb8,0x26,0x8e,0x32,0x7c,0xc2,0x65,0x60,0xa4,0xe3, 0x18,0xf9,0x7a,0xfe,0x78,0xfc,0x6b,0x9e,0xbf,0x3a,0x96,0x9b,0x3e,0xf2,0x22,0xc3, 0xe4,0xac,0xcc,0x1,0x4,0x9f,0x52,0x7,0xca,0x7a,0xf5,0x15,0xa5,0x6,0xa5,0x6d, 0x3d,0xbc,0x42,0x44,0x96,0x17,0x6f,0xbf,0x1b,0xba,0xb6,0x4f,0xe3,0xcf,0xe4,0x2b, 0x27,0x26,0xa2,0x91,0xd0,0xab,0x3b,0x58,0xda,0xd3,0xa5,0x58,0x26,0xba,0x6d,0xfe, 0x53,0xf9,0x24,0xcb,0xd3,0x1f,0x28,0x18,0x3f,0x86,0xe3,0xf9,0x55,0x49,0x26,0x45, 0x44,0x68,0xd9,0xa3,0x42,0x2,0xc6,0x59,0x7e,0x53,0xce,0x7,0x20,0xfc,0xb9,0xfa, 0x75,0x3d,0xaa,0xad,0xdc,0x81,0x26,0xbe,0x20,0x1c,0x7f,0x64,0x5d,0xbe,0x47,0xf1, 0x70,0x98,0xff,0x0,0x3e,0xd5,0x3d,0xd0,0xfb,0x45,0x84,0xb1,0xa8,0xc6,0xf8,0xca, 0xf4,0xea,0x8,0xa6,0xd5,0xa0,0x87,0xcd,0x68,0xa2,0xe8,0x8e,0x68,0xe1,0x48,0xe5, 0xd8,0x25,0x18,0x22,0x34,0x19,0x3d,0x3a,0x9e,0x7e,0xa3,0xf0,0xa9,0xf0,0x70,0x4e, 0xd3,0xfd,0x2b,0x39,0x35,0x3,0x2c,0x9e,0x70,0x41,0xe6,0x3a,0xc0,0x76,0x81,0xd8, 0xc4,0x18,0xfe,0xa7,0x15,0xa6,0x5a,0x9,0x2d,0xfc,0xd8,0xa5,0x63,0x71,0x9c,0x32, 0x36,0x78,0xf5,0xad,0x63,0x6d,0x8e,0xb8,0xcd,0x3d,0x8,0x5d,0x32,0xdd,0x39,0x34, 0x9e,0x5b,0x88,0xa2,0x5c,0x9e,0x18,0x74,0xfc,0x7f,0xc6,0x9e,0x25,0x5c,0xff,0x0, 0xae,0x3c,0x1e,0x9e,0x51,0x35,0x3e,0xd1,0xe4,0x89,0x37,0x85,0x0,0x6e,0xdd,0x8e, 0xdf,0x4f,0xc6,0x8b,0x32,0xf9,0x96,0xc5,0x7c,0x71,0x80,0x78,0xf7,0xa6,0x32,0x6e, 0xe4,0xf2,0x7d,0xaa,0x57,0x6c,0x60,0x89,0x90,0x82,0x1,0xff,0x0,0x8f,0x76,0x3d, 0x7e,0x94,0xc0,0x4b,0x30,0x5f,0x3e,0x31,0x9f,0x58,0x5d,0x7f,0x9d,0x3b,0x48,0x39, 0x91,0x50,0x86,0x1a,0x84,0x24,0x64,0x10,0x92,0x13,0x92,0x4f,0xf0,0xf1,0xd6,0xa7, 0x25,0xcc,0xf3,0xe5,0xdf,0xc,0xe7,0x8c,0xf1,0x8c,0xa,0x58,0xff,0x0,0x79,0xa9, 0x18,0x8b,0x44,0xdb,0x62,0x27,0x28,0x7d,0x48,0x14,0x4d,0x23,0x2b,0xc8,0x15,0x90, 0x90,0x78,0x53,0x3,0x9c,0xfd,0x58,0x74,0xa1,0xdc,0xa7,0x38,0xda,0xe3,0x3c,0xb0, 0x0,0xc0,0xc6,0x38,0xc5,0x53,0x99,0x73,0x7b,0x18,0x1d,0x7c,0x99,0xbf,0xf4,0xa, 0xd0,0xb5,0x51,0x72,0xe3,0x75,0xcc,0x51,0x2e,0xdc,0xe4,0x1c,0x83,0xf9,0xe2,0xa2, 0x96,0xdd,0x62,0xd5,0xa2,0xb,0x74,0x93,0x8d,0xaf,0x9d,0xa0,0x71,0xc6,0x3b,0x1f, 0x7f,0xd2,0x8b,0x31,0x2b,0x5c,0x99,0xe3,0xb,0x2c,0xbf,0x28,0x20,0xc8,0xc7,0x9f, 0xad,0x11,0x62,0x31,0x21,0xe0,0x1,0x11,0x1f,0x5e,0x94,0x4c,0xc5,0x18,0x9c,0xa7, 0x2c,0x41,0xde,0xd8,0xfe,0x94,0xd9,0x6,0x60,0x9d,0x41,0x1b,0xfc,0xb3,0x85,0xcf, 0x5a,0x9d,0x8a,0xd1,0x5d,0x94,0x26,0x3b,0xad,0x5e,0x15,0x19,0x6,0x3d,0x84,0xfd, 0x45,0x44,0x58,0xac,0xfa,0x94,0xb2,0xb8,0x32,0x5c,0x69,0xd3,0x2a,0xe0,0x77,0xdb, 0x1a,0xa8,0xfd,0x2a,0xa7,0x99,0x89,0x80,0x52,0xac,0x7a,0x8e,0x3,0x3,0xc7,0x7a, 0xb5,0x6f,0x2a,0x2c,0x97,0x12,0xcc,0xcd,0x19,0x8e,0xcc,0xe7,0x4,0x90,0xc0,0xb2, 0xf4,0xcf,0x4e,0xd5,0xac,0x57,0x25,0x8f,0x32,0x35,0xb9,0xe4,0xec,0x4e,0x5f,0xcb, 0x1a,0x42,0xb3,0x14,0x31,0xa5,0xc3,0x93,0x8e,0x87,0xcd,0x5c,0x1f,0xa7,0x6,0xa3, 0x32,0x88,0xad,0x3e,0x6c,0xb4,0x20,0xe0,0x4c,0x9f,0x3a,0x64,0x71,0xc9,0x1d,0x3a, 0xd4,0x57,0x57,0x28,0x82,0x16,0x60,0x42,0xa2,0x10,0xa0,0xc,0x95,0xdc,0xd9,0x39, 0xfc,0x6a,0x85,0xd8,0x8e,0x8,0x25,0xbd,0x8d,0x40,0x95,0x41,0x6f,0x34,0x73,0xc7, 0x5e,0x7d,0x46,0x3b,0x54,0xce,0x5c,0xc4,0x4a,0xaa,0xe6,0xb1,0xb0,0x5e,0x49,0x60, 0x32,0x8d,0xde,0x64,0x36,0xc1,0x50,0x46,0xa4,0x95,0xc2,0x30,0x19,0xe3,0x8c,0xee, 0x35,0x9a,0x44,0x96,0x96,0x20,0xf3,0xe6,0xc6,0xf9,0x1c,0x2,0x9b,0x56,0x32,0x39, 0xf7,0xce,0x2a,0x7d,0x66,0x13,0x7b,0xad,0x5d,0xa0,0x47,0x78,0xe0,0x90,0x84,0xb7, 0x8d,0x82,0x29,0x3b,0x1,0xc9,0x3f,0x8f,0xa7,0x61,0x59,0x53,0xde,0xcf,0x1a,0x46, 0xcb,0x2b,0xa2,0xed,0x0,0xed,0x8c,0x30,0x3e,0xb9,0x24,0xfd,0x69,0x59,0xcb,0x40, 0xad,0x51,0x47,0x46,0x5b,0x68,0xda,0xf1,0xe4,0x8c,0xc9,0x14,0xa2,0x29,0x58,0xac, 0x91,0xe,0x19,0x79,0x1d,0xf,0x4e,0x3b,0x53,0x2d,0x8,0x89,0xbc,0x8b,0x62,0xcc, 0xcc,0x46,0xe6,0x63,0x81,0x91,0xd4,0x63,0x80,0x2b,0x39,0x75,0x69,0xa1,0x95,0x3e, 0x7c,0xa1,0x3c,0x80,0xa0,0x64,0x7a,0xe0,0x77,0xfc,0x6a,0xfc,0x8e,0x66,0x95,0x2e, 0x51,0xd5,0x81,0xc1,0x7,0x1c,0xf,0xa8,0xef,0x4e,0x50,0x69,0x6a,0x73,0xc6,0xa5, 0xe7,0xcc,0x75,0x48,0xef,0x35,0xb3,0xb3,0x9e,0x76,0x28,0x1c,0x8e,0x0,0xf4,0xc5, 0x6f,0xbc,0xee,0x87,0x6,0xda,0x66,0x1d,0x72,0x36,0xe3,0xf9,0xe6,0xb8,0xdb,0x6d, 0x46,0x49,0xad,0x4a,0xa4,0x63,0x78,0x0,0xd,0x89,0xd3,0xd3,0x1d,0xab,0xa1,0xb7, 0xd5,0x1b,0x61,0x53,0xc,0xc6,0x4e,0xac,0x5f,0x68,0xfe,0x44,0xd1,0x1a,0x8a,0x2b, 0x95,0x9d,0xf4,0xe4,0xa4,0x99,0x73,0xed,0xab,0x91,0xba,0xb,0x85,0xfa,0xc2,0x7f, 0x9d,0x43,0x7a,0xe8,0xb6,0x52,0xce,0x11,0x9b,0x76,0xc5,0x2a,0xc3,0x19,0x19,0xff, 0x0,0xeb,0x9a,0x96,0x5b,0xc5,0xf2,0x37,0x46,0x72,0xe4,0x74,0x1d,0xaa,0xac,0x77, 0x41,0xed,0x9f,0xcd,0x3c,0x23,0xa1,0x24,0x8e,0xdb,0x85,0x68,0xaa,0x2b,0xf2,0x9b, 0x58,0x7d,0xcc,0x56,0xea,0x4c,0x6b,0xe6,0xa3,0x4,0x4,0x98,0xc0,0xce,0xde,0x83, 0xaf,0xd2,0xb3,0x64,0x9,0x1c,0x6c,0xef,0x90,0xb8,0xc8,0x38,0x0,0xfe,0x35,0x6f, 0x50,0x79,0x1a,0x79,0x50,0x15,0xa,0x1c,0xc,0x7a,0xd,0xa0,0xf5,0xfc,0x6a,0x8b, 0xbc,0xc5,0x5d,0x64,0x90,0x2a,0xae,0x40,0xdb,0xc7,0x1e,0xe6,0xa6,0xa5,0x6b,0x3b, 0x23,0x29,0x58,0xa5,0xd,0xc1,0x7d,0xc6,0x49,0xa,0xbf,0xf0,0xa0,0x52,0x77,0xe, 0xf8,0x22,0xb6,0x2d,0xee,0x2d,0xc5,0xb8,0x22,0x49,0xf0,0x7b,0x3a,0x9e,0x2a,0x95, 0xab,0x24,0x2b,0x98,0x8c,0x4e,0xc7,0xab,0x15,0x53,0x9f,0xeb,0xfa,0xd5,0xb1,0x71, 0x20,0x8b,0x5,0x11,0x41,0xf4,0x8f,0x3,0xf9,0xd4,0x53,0xad,0xcb,0xb8,0x9f,0x2d, 0x87,0xdc,0xba,0x22,0xc,0x48,0x5b,0x3d,0x71,0x59,0xd3,0xdc,0x6,0x8f,0xc9,0x42, 0x49,0x63,0x82,0x70,0x78,0xa7,0xdd,0xc8,0xed,0x10,0xd,0x22,0x42,0x33,0xc3,0x6d, 0xe8,0x7d,0xeb,0x9e,0x7b,0xab,0xf8,0x65,0x31,0x8d,0x31,0x9d,0x47,0xca,0x92,0xa9, 0x27,0x23,0xd7,0x8a,0x99,0xd4,0x73,0x7a,0x18,0x4e,0xa2,0xd8,0xda,0x33,0x8,0x9f, 0x7b,0x31,0xc0,0xe0,0x0,0x45,0x4f,0x69,0x22,0xbc,0xcd,0x24,0x8e,0x37,0xb1,0xe9, 0x8e,0xbe,0x95,0x85,0xf6,0x89,0x18,0xc6,0x25,0xb5,0xb8,0x84,0x93,0x8d,0xc5,0x1, 0x53,0xf9,0xd6,0xd5,0xbb,0x3c,0x47,0x7c,0x6c,0x99,0xe0,0x15,0x61,0x90,0x6a,0x1c, 0x9a,0xdc,0x98,0xb7,0x73,0x55,0x64,0x8,0xc5,0x58,0x90,0x7d,0x36,0xe7,0xf9,0x54, 0xc6,0x68,0xd1,0x41,0x66,0x23,0x27,0x3,0xe4,0x35,0x9e,0xac,0x7a,0xb0,0x6,0x9c, 0x76,0xee,0x57,0x2a,0xb,0xc,0x80,0x71,0xd2,0xb5,0x8e,0x2d,0xad,0x2c,0x6f,0x74, 0x32,0xfa,0xfb,0xcc,0x56,0xfb,0x33,0xb1,0x78,0x72,0x59,0x48,0xda,0x3e,0xa4,0x9e, 0xd5,0x9b,0xad,0xdd,0xe6,0xc7,0x4f,0xd8,0x9,0x37,0x85,0xc2,0x96,0xfe,0x11,0xb9, 0x5c,0xfe,0x80,0xd0,0x61,0x59,0x35,0x34,0x9a,0xde,0x57,0x8f,0x62,0x0,0xd8,0x5c, 0xe,0x72,0x8,0x20,0xf0,0x41,0xe3,0xf2,0x15,0x9d,0xad,0x5c,0x3c,0xa7,0xc3,0xea, 0x8,0xa,0xf6,0x73,0xcf,0xff,0x0,0x2,0xcc,0x40,0x7e,0x8e,0xd5,0xa4,0x6a,0x39, 0xde,0xe5,0x45,0xa6,0x5b,0xb5,0x95,0x67,0x88,0x1c,0x38,0x70,0x40,0x24,0x15,0xdd, 0xbb,0xd4,0x73,0x56,0x65,0x86,0x68,0x92,0x59,0xe5,0x8d,0xd7,0x3,0x3b,0x8e,0xdc, 0xb1,0xc8,0x3,0xa7,0xd6,0xb3,0xe1,0x47,0x9a,0xd0,0xff,0x0,0xab,0x45,0x66,0xcf, 0xc8,0x9,0x0,0xe0,0x67,0xa9,0x3e,0x94,0xe8,0xed,0xfe,0xc9,0x1b,0x34,0x8f,0xe7, 0xc9,0xd4,0xd,0x99,0x3,0xeb,0x93,0x5c,0xad,0xab,0xb2,0xe0,0xec,0x24,0x92,0x5c, 0x49,0x95,0x69,0x55,0x32,0x72,0x6,0x39,0x20,0x1c,0x7f,0x9f,0xa5,0x45,0x6f,0x72, 0x9f,0x68,0x68,0x83,0xa6,0xf6,0x70,0x37,0x93,0x90,0x3f,0x0,0x3a,0xfd,0x69,0x72, 0x27,0x2e,0xb1,0x31,0x32,0x10,0xb,0x3c,0x4a,0x70,0xb8,0xce,0x6,0x46,0x0,0xef, 0xd6,0xb5,0xa,0x59,0x5e,0x79,0x32,0xbc,0x6e,0xd2,0x0,0x37,0x37,0xdd,0x2d,0x8e, 0xc4,0xf4,0x3c,0xfa,0x7f,0x5a,0x4d,0xab,0x15,0xed,0x5a,0xdc,0xab,0x71,0x1f,0x97, 0xe6,0x1d,0xc7,0x79,0x20,0x7a,0x60,0x63,0xff,0x0,0xad,0x58,0x37,0x71,0xea,0x17, 0x33,0xfd,0x9a,0xde,0xd2,0xe1,0xa4,0x6f,0xf9,0xe5,0x29,0x50,0x47,0xa9,0xe4,0x71, 0xef,0x5d,0x1c,0xb3,0x5a,0xdf,0xcd,0x35,0xb1,0xf3,0x22,0x95,0x90,0xaa,0x37,0x1f, 0x30,0xf6,0xfa,0x64,0xfe,0x75,0x42,0xee,0xda,0x58,0x60,0x60,0x9a,0x84,0x51,0x2b, 0xc,0x12,0xe0,0xae,0xe5,0xf4,0x62,0x32,0xd,0x10,0x95,0xb7,0x31,0x72,0x8c,0xde, 0xac,0xe4,0x2e,0xad,0x6e,0x7c,0xd9,0x2d,0x6e,0xaf,0x6e,0x96,0xe2,0x26,0xda,0x21, 0x49,0xf7,0x5,0xc8,0x7,0xdf,0x8f,0xf0,0xac,0xf9,0x26,0x96,0x36,0x55,0xdb,0x38, 0x8b,0x90,0xb2,0x15,0xca,0xb1,0x1d,0x40,0x3d,0xcf,0xa8,0xed,0xc7,0xad,0x75,0xd2, 0xe9,0x76,0x57,0x7e,0x5b,0x6a,0x9a,0xcc,0x46,0xde,0x30,0x59,0xa2,0x86,0x75,0x0, 0xfb,0x60,0xe,0x7,0x3,0xa7,0x3c,0x76,0xac,0x9b,0xfb,0x37,0x94,0x3d,0xd3,0x3f, 0xda,0x22,0x51,0x88,0x26,0x84,0xb1,0x8a,0x35,0xfe,0xe8,0x5c,0x71,0x8f,0x71,0xcd, 0x7a,0x14,0xab,0xc6,0xf6,0x91,0x9d,0x5a,0x70,0x8e,0xa9,0x97,0xec,0xb5,0x89,0x5e, 0xd5,0x37,0x4f,0x3b,0x70,0x3f,0x73,0xe5,0x47,0xb5,0x7e,0xa3,0x1c,0xd3,0xe3,0xd5, 0xec,0xb4,0xdb,0xb6,0xd9,0x6b,0x67,0x14,0xad,0xce,0xee,0x41,0x5c,0xf7,0xe8,0x40, 0xfd,0x2b,0x9a,0x8a,0x68,0xf4,0xf9,0x49,0xf3,0xc7,0xcc,0x7a,0x3b,0x60,0x7e,0x19, 0xad,0x35,0xb4,0x8a,0xfc,0x24,0xff,0x0,0x28,0x63,0xd7,0xb8,0x3f,0x5a,0xd2,0x74, 0xa1,0xcd,0xbe,0x86,0x31,0x7d,0x51,0xbd,0xa7,0x6a,0x76,0x2d,0x2a,0x2c,0xd7,0x92, 0x4b,0x33,0x36,0x7f,0x77,0x13,0x6c,0x52,0x7f,0xda,0x6e,0xbf,0x80,0xae,0x98,0x31, 0x6e,0x54,0x9d,0x9d,0xa,0x48,0x3a,0xfb,0x8a,0xe3,0xf4,0xcd,0x38,0x18,0xf0,0x55, 0xa4,0x65,0x24,0x63,0xcd,0xca,0x9f,0xcc,0xf1,0xf4,0xae,0x96,0xc6,0x25,0x50,0x50, 0x4c,0x1b,0x6f,0x45,0x2c,0x4b,0x1,0x8f,0xee,0xfa,0x57,0x9b,0x5b,0x96,0xfe,0xe9, 0xbd,0x26,0x5d,0x65,0x8b,0x1b,0x96,0x20,0xf,0xa8,0x6e,0x6a,0x3d,0xa1,0x59,0x99, 0x89,0xda,0xc3,0x3,0x7,0xa7,0x34,0xab,0x20,0x72,0x76,0xf0,0x71,0xc7,0xbd,0x47, 0x22,0x15,0x52,0xc5,0xb8,0xce,0xe,0x4d,0x62,0x99,0xd7,0x4d,0xdc,0x9d,0xc9,0x74, 0x76,0xc8,0xd,0x9c,0xae,0x7f,0x95,0x46,0xf1,0x4d,0x18,0x52,0xed,0x1b,0x2b,0x91, 0x8d,0x87,0xa1,0xf4,0xe6,0x81,0x22,0xaa,0xe4,0xb1,0x18,0xe3,0x70,0x19,0xaa,0x5f, 0x68,0x59,0x24,0x2a,0xce,0xa4,0x64,0xe0,0x9e,0xf5,0xa4,0x24,0x6d,0x17,0xa9,0x79, 0x89,0x4f,0x31,0xf8,0x24,0x7c,0x8c,0xbe,0x9e,0xff,0x0,0xce,0xa5,0x13,0x7e,0xe4, 0xa6,0xfc,0x73,0xd4,0x9f,0xd0,0x55,0x38,0x2e,0xc4,0xad,0x1a,0xc8,0x8f,0x1a,0xb2, 0xed,0xc,0xea,0x7f,0x78,0x7d,0x8e,0x2a,0x67,0x45,0xda,0x41,0x3b,0x4e,0x4e,0xf, 0xb5,0x57,0x32,0x5b,0xe,0xe2,0x92,0x41,0xe1,0xc1,0x1d,0x85,0x11,0xab,0x79,0x59, 0x62,0xa7,0x24,0xe3,0x9a,0x6c,0x76,0x8e,0xce,0x40,0x3c,0x8e,0x99,0x6e,0xb5,0x2a, 0xef,0xf2,0x15,0x4c,0x20,0x2b,0x72,0x1d,0x8e,0x68,0x49,0xb0,0x7a,0x15,0xb0,0x55, 0x9b,0x73,0x1c,0xe6,0xa3,0x70,0x92,0x1d,0xb2,0xee,0x2b,0x9e,0x40,0xe3,0x8a,0x6c, 0xde,0x61,0xcf,0xf1,0x2f,0xa0,0x39,0xc7,0xd2,0xa2,0x4,0xe7,0x61,0xcf,0x0,0x71, 0x41,0x48,0xb4,0xad,0x13,0x1,0x24,0x7b,0x57,0x61,0x20,0xe0,0x1c,0xc,0x8f,0xfe, 0xb5,0x10,0xb6,0x6e,0x1c,0x48,0xc0,0x93,0xfd,0xd3,0xe8,0x3f,0xc2,0xaa,0x15,0x68, 0xe6,0x49,0x80,0x65,0x5c,0xe0,0x90,0x8,0x7,0xeb,0x52,0x21,0x92,0x29,0xd4,0x2c, 0x91,0xac,0x62,0x4e,0x15,0xc8,0x4,0x71,0xd4,0x71,0xe9,0xc5,0x2b,0x8d,0x96,0xf7, 0x8d,0x9f,0x2e,0xc,0x41,0x7a,0x93,0x9a,0x61,0x9d,0x76,0xa8,0x69,0x11,0x70,0x38, 0xc9,0xc0,0x2,0xab,0x1d,0x3e,0x2f,0xb5,0xfc,0xd3,0x48,0x61,0xea,0x62,0x3d,0x1, 0xfc,0xba,0x54,0x9f,0xd9,0xb6,0x8b,0x3a,0x98,0xe7,0x92,0x39,0x1b,0x95,0x50,0x46, 0x7,0xe9,0xd2,0x8b,0x8a,0xc4,0x8b,0xb6,0x42,0x42,0x93,0xc7,0x19,0x3d,0xfd,0xe9, 0x55,0xd5,0x50,0xc6,0x41,0x4,0x7a,0xf7,0xa8,0x84,0x12,0x45,0x19,0x86,0x46,0x39, 0xd,0xcb,0xa9,0xfb,0xdc,0x77,0xa3,0x28,0xa9,0x8d,0x85,0x9c,0x1e,0x49,0x34,0xee, 0xac,0x53,0xb3,0x44,0xaa,0x7c,0xc5,0xe0,0x71,0x8e,0xb4,0x84,0x0,0xe5,0x7b,0x1, 0x91,0x4c,0xe,0xca,0xa5,0x48,0xc0,0x3d,0x31,0x48,0x8,0x2a,0xb,0x1c,0x63,0xa9, 0xcd,0x42,0x7a,0x99,0xab,0xa6,0x49,0xf7,0x78,0xc6,0x48,0xe2,0xa1,0x76,0x21,0xb7, 0x28,0x4,0x7b,0xd3,0x4d,0xc9,0xde,0x59,0x40,0xc7,0x6a,0x8d,0xe7,0x1,0x37,0x71, 0x9c,0xf4,0x15,0x57,0x2d,0x22,0xd9,0x2a,0x40,0x20,0x9c,0xf7,0x14,0xd7,0x99,0x54, 0x8c,0xf5,0xa8,0x4,0xa1,0xd4,0x12,0x29,0x3c,0xd6,0x2e,0x42,0x80,0x6,0x38,0xf7, 0xa1,0x87,0x29,0x64,0x6d,0x71,0x92,0xaa,0x7d,0xc8,0xcd,0x33,0x3c,0xf2,0x3f,0x4c, 0x54,0x21,0xce,0xef,0x98,0xaa,0x80,0x3e,0x99,0xa5,0xfb,0x54,0x61,0x70,0xcd,0x92, 0x7d,0x6,0x68,0xb,0x13,0x3b,0x92,0x9b,0x40,0x19,0xf5,0x35,0x0,0x86,0x68,0xd7, 0x28,0x9b,0xa4,0x3f,0xc1,0x9c,0x1c,0x53,0x25,0x6d,0xca,0x2,0x16,0xe,0x4f,0x4, 0x76,0xa9,0xe3,0x99,0xee,0xa2,0x8,0x55,0x44,0xc9,0xc3,0xf,0x5f,0x7a,0xce,0xa4, 0xdc,0x15,0xc6,0x91,0xd1,0xf8,0x50,0x38,0xfb,0x5e,0xf0,0x1,0xf9,0x38,0x7,0x3f, 0xde,0xae,0x92,0xb9,0xaf,0x9,0xb4,0x84,0xde,0x89,0x17,0x18,0xd9,0x83,0xdc,0xfd, 0xea,0xe9,0x6b,0xd5,0xc1,0xc9,0xca,0x84,0x5b,0xf3,0xfc,0xce,0x2a,0xdf,0x1b,0x38, 0x2f,0x88,0xf6,0xc9,0x75,0x2e,0x98,0x8d,0x2f,0x94,0x44,0x73,0x95,0x63,0x8c,0x67, 0x31,0xf1,0xcf,0xaf,0x3f,0xad,0x78,0xcd,0xc3,0xdd,0xc7,0xe3,0xb,0x9b,0x89,0xcd, 0xbd,0xbd,0xd4,0xcc,0x2e,0x61,0xde,0x8b,0xe4,0x4c,0x80,0x6d,0xf7,0xc9,0x38,0x3f, 0xce,0xbd,0x87,0xe2,0x7d,0xc8,0xb6,0x6d,0x1c,0x9d,0xbb,0x1d,0xe4,0x47,0xcb,0x63, 0x2a,0x76,0x64,0x7a,0x63,0xde,0xbc,0xfe,0xe6,0xdf,0x4d,0x66,0x5b,0x3b,0xcb,0x9b, 0x71,0x21,0xcf,0x94,0xed,0x1b,0x31,0x50,0x4f,0x4,0x32,0xe7,0x69,0xfd,0x2b,0x9a, 0xac,0xdc,0x2b,0x4b,0x4d,0xff,0x0,0xc8,0xe8,0xa1,0x38,0xca,0x3c,0xb2,0x7b,0xc, 0x82,0xe2,0x5b,0xe0,0xf3,0x9b,0x56,0x8c,0xae,0x57,0xcd,0x17,0x4,0xa6,0xdc,0x9c, 0xa8,0x52,0x8,0x2b,0xd3,0x1e,0x95,0x8f,0x74,0xa2,0x4d,0x56,0x7b,0x38,0x2d,0xe6, 0x92,0x18,0xc3,0x5c,0xcd,0xe4,0x9d,0xa5,0xdb,0xcb,0x1,0x9f,0x9c,0xed,0xea,0x7, 0xd4,0x7b,0xd5,0xcd,0xa,0x69,0x7e,0xd5,0xa8,0x5a,0x97,0x43,0x2d,0xbc,0xac,0xb8, 0x53,0xc9,0x60,0xd8,0x5c,0x8c,0xe7,0x9e,0xa2,0xba,0x85,0xd2,0xe0,0xb4,0xba,0x86, 0x4b,0x78,0xd9,0xa5,0x91,0x64,0xfb,0x46,0x7a,0x48,0x5b,0x18,0x27,0xd0,0xe,0x70, 0x2b,0x9a,0x75,0x9e,0x1e,0x5e,0xf7,0x53,0xb5,0xba,0x53,0xbb,0x8a,0xf2,0x30,0xf4, 0x2b,0x88,0xb5,0x19,0xa2,0x75,0x81,0x5e,0x75,0x53,0x1b,0x1b,0x98,0xc3,0xf2,0x40, 0x52,0xc3,0x27,0x92,0x30,0x3f,0x95,0x6f,0x59,0x58,0x39,0xda,0x56,0xf9,0x46,0x58, 0x97,0x8e,0x23,0xb3,0x91,0xc1,0xc8,0xce,0x3f,0x2c,0x53,0xe6,0xd1,0xc,0xd2,0x34, 0xf1,0x4c,0x96,0xed,0x20,0xf9,0xd6,0x38,0x81,0x53,0xdb,0x8e,0x46,0xe,0x29,0x6f, 0xed,0x25,0x82,0x3c,0x47,0x68,0x25,0x55,0x19,0x1e,0x5e,0x1,0xfc,0x47,0x5c,0xfe, 0x75,0xc1,0x5b,0x14,0xaa,0x6a,0x88,0x84,0x54,0x6c,0x93,0x2f,0xb5,0xbd,0xb2,0x48, 0x93,0x13,0xb6,0x51,0xf2,0x82,0x5c,0x8c,0xff,0x0,0xf5,0xaa,0x55,0xd4,0x54,0xa8, 0xda,0x78,0xce,0x1,0x3c,0x8c,0xfa,0x75,0xac,0xd3,0xc,0x93,0xe9,0xd0,0xec,0x89, 0xd0,0xbe,0x32,0x9c,0x92,0xa3,0xbf,0xf4,0xa9,0x2d,0xda,0x68,0xa4,0x59,0x10,0x2a, 0x86,0x5c,0x48,0x84,0x63,0xd,0xf4,0xaf,0x3d,0xc2,0xfb,0xb0,0xe4,0x4f,0x76,0x58, 0x96,0x5b,0x97,0x71,0x2c,0x76,0xe4,0xba,0xe4,0x61,0x54,0x74,0xf5,0x7,0x8c,0xd4, 0x37,0x37,0x1a,0x84,0x6a,0xb7,0x73,0x42,0x81,0x51,0xbe,0x74,0x46,0xcb,0xec,0x3c, 0x12,0x7f,0xc2,0xa2,0x69,0xf7,0xa4,0xf3,0xbd,0xb9,0x99,0x54,0x76,0x38,0x0,0x8f, 0xff,0x0,0x5d,0x58,0x82,0xe2,0x3b,0x9b,0x77,0x81,0x71,0x82,0xa,0xf9,0x72,0xc, 0x82,0x3f,0xe,0xdf,0x8d,0x3e,0x57,0x15,0xb6,0x81,0xa4,0x4a,0xe8,0x11,0x35,0x3, 0x24,0x2f,0xfb,0xc9,0x4e,0x54,0x2f,0x25,0x33,0xc9,0xe0,0x74,0xcd,0x2c,0x37,0x49, 0x75,0x7a,0x3c,0xc6,0xf,0x74,0xa4,0xa8,0xdb,0x9d,0xdf,0x4c,0x60,0xe2,0x92,0xd9, 0x9b,0x4f,0x98,0x5b,0xb0,0x8d,0x1a,0x4e,0x16,0x65,0x42,0xed,0x9f,0x72,0xf,0x4e, 0xb4,0xcb,0x9b,0xbb,0xeb,0x36,0xcf,0xda,0xe1,0x89,0x24,0x60,0x51,0xb6,0x2a,0x2b, 0x7b,0x9d,0xc3,0xf9,0x9a,0xbd,0x65,0xf2,0x29,0x26,0xf6,0x44,0xef,0x6d,0x2c,0x97, 0xcd,0x2d,0xdc,0x6a,0xb0,0xae,0x8,0xdc,0xc0,0x64,0x73,0xd7,0x1d,0x3f,0x1a,0x7a, 0xda,0xda,0x5e,0xc,0x9,0xa1,0x6c,0x8e,0xc,0x58,0xc7,0xd3,0x35,0x26,0xfb,0x2b, 0xc4,0x86,0x3b,0xd9,0xa2,0x79,0x7b,0x26,0xf2,0x54,0x9f,0xa7,0x4a,0xab,0x35,0xcc, 0x30,0x5c,0xfd,0x96,0xca,0x6b,0x75,0x90,0x37,0x96,0xd1,0x4c,0x87,0x93,0xd3,0x82, 0x5,0x64,0xd3,0x7b,0x90,0xae,0xf6,0xdc,0x70,0x10,0xe9,0xd0,0x33,0x94,0x53,0x1a, 0xf5,0x67,0x5d,0xf9,0xfc,0x86,0x7d,0x3f,0x3a,0xe,0xa7,0x4,0x31,0x1b,0x86,0xb9, 0x84,0x46,0xdf,0x76,0x34,0x27,0x7f,0xe5,0xd4,0x55,0xa8,0xae,0x15,0xa2,0x92,0x2d, 0x8a,0x19,0x41,0xd,0x1f,0xdd,0x1d,0x38,0x35,0x90,0x96,0x90,0x43,0x35,0xcd,0xed, 0xca,0xee,0x81,0x18,0xc8,0x22,0x76,0x1d,0x7a,0x90,0x7d,0x46,0x7a,0x56,0x94,0xd4, 0x5b,0xb4,0xfe,0x45,0x6f,0xb9,0x76,0x1b,0x86,0x9a,0x17,0x68,0xd2,0xd2,0x78,0xf9, 0x27,0xcb,0x18,0xfc,0xc1,0xe9,0x49,0x62,0x97,0x2a,0x4c,0xb2,0x5b,0x42,0x83,0x24, 0xd,0xb8,0xe9,0xf8,0x1a,0x58,0x66,0x1a,0x85,0xaa,0x2a,0xda,0xc5,0x14,0x12,0xc7, 0xb9,0x7c,0xb1,0x80,0x7f,0x2a,0xa7,0x75,0x6f,0x7f,0xc,0x33,0xc5,0x6d,0x23,0xa4, 0xb0,0xc8,0xad,0x8,0xf3,0x9,0xc,0x38,0xe3,0x9e,0xd8,0x3d,0x29,0xa8,0xa7,0x74, 0xca,0xdb,0x43,0x55,0x27,0xcb,0xb8,0x60,0x91,0xb9,0x3f,0x77,0x39,0xcf,0xb8,0xa4, 0x9a,0x56,0x49,0xbe,0xd0,0xef,0xb6,0x30,0x83,0x7f,0x38,0x0,0x55,0x36,0xb3,0xb9, 0x92,0x15,0x44,0x94,0xc7,0x92,0x9,0x20,0x64,0x8f,0xa7,0xeb,0x53,0x49,0x72,0xd6, 0xf2,0x48,0xd3,0x20,0x8e,0x8,0xd7,0xe5,0x66,0x6f,0x99,0xfd,0xb6,0xff,0x0,0x8d, 0x65,0xcb,0xa9,0x9b,0x85,0xb6,0x33,0x7,0x88,0xf4,0x9b,0x7b,0xa6,0x8e,0x2d,0x56, 0xe2,0xe9,0xd8,0xfc,0x91,0x88,0xf7,0xf5,0xf4,0x20,0x73,0xf8,0xd6,0x83,0xcf,0x70, 0xd0,0x2b,0x2e,0x2d,0xc9,0x3c,0x9,0x14,0xb0,0x27,0xdf,0x3,0x8a,0xad,0x71,0x71, 0x6d,0x61,0xc,0x69,0x68,0xe6,0xc3,0xce,0x72,0xe3,0xc8,0x55,0x0,0xf7,0x27,0x69, 0x6,0xa6,0xb1,0xd5,0x2e,0x1a,0x59,0xa0,0x92,0x51,0x23,0x2f,0x20,0xbf,0xcb,0x9e, 0x70,0x4f,0x61,0xe9,0x5a,0xce,0x9,0xc7,0x9a,0x2b,0x62,0xb9,0x53,0xd4,0x9a,0xe2, 0xea,0xd8,0x45,0x24,0x37,0x9e,0x64,0x85,0x54,0x17,0x36,0xe7,0x21,0xf,0xe7,0x53, 0x98,0x52,0x25,0x86,0x48,0xf6,0xcd,0x68,0x40,0xda,0xc5,0x87,0x43,0xd3,0x9e,0xe3, 0x9e,0xbf,0x5a,0xcf,0xbf,0xba,0x82,0xd3,0x51,0x55,0x9e,0xd2,0x6f,0x31,0xa3,0xc, 0x65,0x55,0x1b,0x40,0x24,0x81,0xfc,0x8d,0x46,0xb2,0x5e,0xa4,0xbe,0x40,0x10,0x5d, 0xe9,0x92,0xf,0x93,0x6c,0x80,0x8,0xf9,0xce,0x3a,0x64,0x73,0x9a,0x5e,0xcd,0x34, 0xb9,0x5d,0x9f,0x99,0x1c,0xaf,0x74,0x6b,0xf9,0x10,0x35,0xbc,0xaf,0x6b,0x12,0xac, 0xc1,0x4f,0xa,0x3a,0xf7,0xac,0xeb,0x79,0x30,0x9e,0x54,0xac,0x19,0xa5,0xce,0xe4, 0x66,0xb,0x80,0x7b,0x67,0x3e,0xd5,0x34,0x3a,0x60,0x91,0x12,0x44,0x81,0x3c,0xd4, 0xe3,0x7a,0xcc,0x70,0x31,0xf5,0x14,0xd9,0xcd,0xbc,0x56,0xe9,0x6b,0x70,0x1e,0xe0, 0x38,0xcf,0xee,0xce,0xf2,0x8,0xea,0x79,0x22,0xba,0x30,0xd6,0x83,0x76,0x95,0xd8, 0x5e,0xdb,0x96,0x22,0x8e,0x21,0x33,0x34,0x72,0xc4,0x25,0x3c,0x32,0x8c,0x16,0x61, 0xf4,0xcf,0xeb,0x52,0xa2,0xa4,0x52,0x85,0x90,0xa4,0x8a,0x5b,0x0,0x30,0x1f,0x95, 0x66,0x43,0xa7,0x89,0xe2,0x59,0xed,0xa5,0x92,0x44,0x7,0xba,0xfc,0xc3,0xdb,0xd7, 0x35,0x34,0x16,0xde,0x72,0x1b,0x8b,0x59,0x84,0xca,0xe,0x1a,0x39,0xbe,0xf2,0x9f, 0x43,0x8a,0xc2,0x71,0xbc,0x9c,0xae,0x68,0xd6,0x97,0x2f,0x41,0x6e,0x63,0x9c,0x34, 0x6e,0x44,0x5d,0xe3,0x61,0x9e,0x7d,0x2a,0xd3,0x46,0xe2,0x10,0x90,0x30,0xde,0xab, 0xd5,0xbf,0xcf,0xb5,0x57,0xf3,0xdc,0x4b,0x10,0x58,0xa5,0x44,0x7c,0x86,0x56,0x5c, 0x5,0x23,0xde,0x94,0x25,0xce,0x56,0x48,0x98,0x96,0x2f,0x82,0x73,0xc6,0x3d,0x2a, 0x21,0x37,0x19,0xdd,0xb3,0x16,0x9b,0x3,0x6b,0x79,0x1d,0xb8,0x69,0x67,0x40,0x17, 0xe6,0xcb,0xce,0x4f,0x6e,0xbf,0x30,0xdb,0xde,0xa9,0xdc,0x5b,0x69,0xb3,0x98,0xa6, 0xd5,0x6c,0x35,0x5b,0xc6,0x18,0xfd,0xdc,0x71,0xc5,0x24,0x27,0x1d,0xf1,0x19,0x7, 0x14,0xba,0x8c,0x93,0x24,0xbf,0x68,0x47,0x57,0x42,0xc1,0x4c,0x52,0x36,0x76,0x9f, 0x50,0x1,0xc1,0xe9,0x5c,0xee,0xab,0xe2,0x6d,0x52,0xc6,0xe5,0x52,0x36,0x95,0xf7, 0xa0,0x38,0xcb,0x72,0x4f,0xa0,0xe0,0x63,0xda,0xbe,0x87,0x8,0xe5,0x51,0x7b,0xa7, 0x1d,0x69,0x4e,0x3a,0xd8,0xea,0x46,0x8d,0xa3,0xdf,0x4b,0xe7,0x5b,0xe8,0xd3,0x59, 0xc,0x6d,0x23,0xec,0xd1,0x5b,0x80,0x3d,0x80,0x39,0xcf,0xb9,0xaa,0x1a,0xae,0xad, 0x6d,0xa3,0x19,0x63,0xb2,0xb5,0x16,0xd3,0x85,0x11,0xc,0xc4,0x54,0xed,0x1d,0x39, 0xea,0x7a,0xe7,0xad,0x72,0x56,0x33,0xeb,0xba,0x85,0xcc,0xd3,0x5d,0xde,0xdc,0x47, 0x1a,0x83,0xcb,0x16,0xdb,0xb8,0x73,0x85,0xc1,0x7,0xdf,0x39,0xac,0xd1,0x7d,0x1c, 0x97,0x57,0x66,0xf6,0xee,0x79,0xa,0x31,0x1c,0xcc,0xce,0xd2,0x90,0x48,0x18,0xde, 0x4f,0x1c,0x7e,0xa2,0xbb,0xa1,0x86,0x9c,0xa5,0xef,0x33,0x9a,0x55,0x9b,0x56,0xb5, 0x8e,0x97,0x4d,0xf1,0x1d,0xf5,0xad,0xc2,0x44,0x2e,0x91,0x20,0x90,0xf0,0x1c,0x96, 0xe7,0x1b,0xb2,0x4f,0x3c,0x9a,0xe8,0x3c,0x47,0x65,0x69,0xae,0xdb,0x47,0xe4,0x30, 0x23,0x93,0x2e,0xc8,0x19,0x12,0x5e,0x38,0x2c,0x4e,0x39,0x7,0x38,0xc7,0xbe,0x7b, 0x57,0x95,0x43,0xab,0x99,0x6e,0xa6,0x71,0x3e,0xcb,0x85,0x65,0xf2,0xd1,0x54,0x9e, 0x0,0xc6,0x3d,0x33,0x8a,0xee,0x34,0xbb,0xbb,0xb1,0x69,0x1c,0x67,0x55,0xf2,0x25, 0x9,0x96,0xd,0xb7,0xb,0xf8,0x11,0x9e,0xf4,0x57,0xa1,0xc8,0xd4,0xa1,0xa1,0x82, 0xa9,0x28,0xe8,0x3e,0x58,0xd2,0xde,0xcd,0xa1,0xb5,0xd1,0x23,0x57,0x42,0x43,0xb, 0x72,0x11,0x59,0x71,0x80,0x7a,0x92,0x49,0xf7,0xcf,0x4a,0xc3,0x8b,0x74,0x36,0x5e, 0x66,0xab,0xa4,0xdd,0x96,0x52,0xc,0x9b,0x15,0xc0,0xe1,0x81,0xe3,0x3,0x83,0x8e, 0x2a,0xce,0xbd,0xae,0xdc,0xda,0x5e,0xc1,0x29,0xb9,0x81,0x19,0xa2,0xc1,0xb,0xb8, 0x12,0xc3,0xd0,0xe,0xa4,0xe6,0xab,0x47,0x7b,0xe3,0x19,0x8a,0x3d,0x95,0xbe,0xae, 0x13,0x8d,0xa7,0xec,0x9f,0x23,0xf,0xf8,0x18,0xe7,0xa9,0xe7,0x35,0xa4,0x21,0x25, 0x1b,0xbb,0x6b,0xdd,0x94,0xaa,0x37,0x25,0x36,0x74,0xba,0x6e,0xbb,0x65,0xac,0x33, 0x18,0xa5,0xf3,0x61,0x44,0xf2,0xd5,0xc4,0x24,0xba,0x2e,0xe3,0xc3,0xe,0xc4,0x70, 0x3d,0xf1,0x9f,0xa3,0x13,0xc3,0x9a,0x74,0x57,0x2d,0x71,0x1c,0x91,0xab,0x30,0x68, 0xdb,0x78,0x5,0x58,0x10,0x43,0x2,0xad,0xc7,0x20,0xd7,0x25,0x6f,0xe1,0x4d,0x6e, 0xde,0xe1,0xae,0xae,0xf4,0xfb,0xab,0x70,0xe4,0x92,0x40,0x5d,0xa3,0x27,0x38,0x1, 0x59,0xb0,0x3e,0xb5,0x72,0x4d,0x12,0xe6,0xe1,0x3,0x5a,0x39,0xdc,0xdc,0xf3,0xc6, 0xef,0xc8,0x7f,0x4a,0x4e,0x94,0x53,0xf7,0x66,0x15,0x6a,0xb9,0x3b,0xa3,0xa8,0xb6, 0xd1,0xac,0x7e,0xcc,0xd0,0x2d,0xe4,0x1c,0x48,0x1a,0x35,0x52,0xa1,0x97,0xb,0x8c, 0x3,0x56,0xd3,0x4f,0x82,0xda,0xdc,0x7d,0xa2,0x78,0x96,0x34,0xe4,0x99,0xa,0x9d, 0xdf,0x5e,0x6b,0xce,0x4f,0x83,0xf5,0xdd,0xcc,0xef,0xb0,0x2,0x78,0xcb,0xe3,0xf5, 0xc7,0x1f,0x8e,0x2b,0x6f,0x4e,0xf0,0x95,0xf6,0x62,0x92,0xf2,0x5b,0x64,0x55,0x3c, 0xed,0x97,0x73,0x74,0xf5,0xdb,0x8a,0xc6,0x74,0xa1,0x6d,0x66,0x62,0xe6,0x75,0x53, 0x5d,0xe9,0xb2,0xab,0xc0,0x49,0xb8,0x53,0x67,0x32,0x43,0xe5,0xae,0xe0,0x24,0x20, 0x5,0xce,0x3a,0x63,0x2d,0x5b,0x32,0xb1,0x8e,0xcf,0x7c,0x71,0x99,0x40,0x50,0x2, 0x2e,0x72,0x4f,0xe1,0x5c,0xc4,0x16,0xd6,0x96,0x32,0xe6,0x34,0x37,0xd2,0x79,0x6c, 0x80,0x48,0xca,0xa1,0x1c,0x9c,0x6e,0xce,0xf,0x4c,0x1a,0xd7,0xfe,0xd4,0x8c,0x2f, 0xfa,0xa9,0x57,0xb,0xf2,0x86,0x18,0x4,0xf5,0xee,0x73,0x5c,0x33,0x49,0x2b,0x2d, 0x8b,0x55,0x2f,0x12,0x36,0xba,0x77,0x92,0xec,0x4b,0x66,0xd1,0x22,0xe9,0x77,0x8b, 0xc8,0x3f,0xdd,0x43,0x82,0x4f,0xe3,0x5a,0x96,0x53,0x24,0xd6,0xea,0x76,0xfb,0x81, 0xec,0x45,0x43,0x74,0x5f,0xc8,0x96,0x35,0x55,0x65,0x36,0x77,0x4e,0x58,0x73,0xf3, 0x79,0x78,0x0,0x7e,0x7f,0xa5,0x41,0x24,0x90,0x5b,0x8,0xee,0xde,0x9,0x55,0xc9, 0x8,0x31,0xc0,0x63,0x8f,0xca,0xaa,0x56,0x94,0x55,0x86,0xfe,0x4,0x5b,0xb3,0x88, 0xc5,0xc,0x45,0xc0,0xdc,0xd1,0x40,0xbf,0x5c,0x44,0x0,0xff,0x0,0xd0,0x4d,0x69, 0x42,0xf2,0x87,0x62,0x58,0x84,0x27,0x90,0x3b,0x1a,0xcf,0xb2,0xb9,0x82,0xe6,0x1d, 0xa8,0x8d,0x19,0x45,0x18,0xf,0x80,0x78,0xe3,0xd6,0xa6,0x87,0xcc,0xca,0x9d,0xc4, 0x11,0xf8,0xe6,0xb3,0x77,0xb9,0x71,0xa9,0x67,0x73,0x56,0xb,0x77,0x31,0x92,0x8e, 0xaa,0xa7,0xb1,0x52,0x4f,0xf3,0xa9,0x1a,0xd0,0xfd,0x97,0xca,0x12,0x60,0xf1,0xce, 0x3d,0xe9,0xf6,0x3c,0xc1,0xf8,0xd5,0xac,0x57,0x5c,0x6e,0xd5,0xce,0xc8,0xcb,0x42, 0x8a,0xdb,0x33,0xc6,0x54,0xb2,0xf4,0xc0,0xca,0xe7,0xfa,0xd3,0x16,0xca,0x44,0xc1, 0x6,0x31,0xf4,0xef,0xf8,0x55,0xf4,0x1f,0x29,0xfa,0xd3,0xb1,0x55,0xa8,0x5c,0xc9, 0xb5,0xb2,0x92,0x3b,0x83,0x33,0xc8,0x84,0x60,0xa8,0x1,0x71,0xdc,0x1f,0xe9,0x52, 0x9b,0x69,0x17,0x3b,0x64,0x4c,0x6e,0x24,0x2,0xbe,0xa7,0xd4,0xd5,0x95,0xf9,0x55, 0xce,0xf,0xc,0x7a,0x53,0xd4,0x6e,0x5c,0xe0,0xfd,0xd,0x21,0x7d,0x9b,0x18,0x56, 0xb9,0x86,0xd9,0x63,0x9c,0xae,0xe5,0x66,0x53,0x80,0x71,0xc3,0x11,0xd8,0x7b,0x53, 0x95,0xa2,0x37,0x65,0xc3,0xc4,0x13,0x4,0x7c,0xb9,0xcd,0x41,0xa8,0x42,0x7c,0xc9, 0x11,0x58,0x0,0x27,0x23,0x25,0x15,0xb9,0x65,0xdd,0xfc,0x40,0xfa,0xfe,0xb5,0x5e, 0xd1,0x9e,0xd7,0x51,0xa,0x59,0x19,0xc,0x4e,0xc4,0x79,0x31,0xa9,0xca,0xe3,0xba, 0xa8,0xa8,0xd4,0xd9,0x49,0x7c,0x25,0xeb,0xa6,0x47,0x28,0x70,0xac,0xa1,0xf7,0x1c, 0xe4,0x8f,0xd2,0xb2,0xf5,0x3b,0x97,0x95,0xf6,0x14,0x57,0x89,0x17,0x80,0x53,0x19, 0x38,0xea,0x73,0x4b,0x77,0x2c,0xfe,0x74,0xce,0x76,0xff,0x0,0xad,0x65,0x1,0x50, 0xe,0x87,0x1d,0x7a,0x9e,0x95,0x97,0x2c,0xd2,0x96,0x3b,0x89,0xe0,0xfd,0xd5,0x18, 0xa2,0x31,0x72,0x77,0x67,0xe,0x2f,0x10,0xe2,0xf9,0x50,0xdb,0x75,0x9a,0x46,0x18, 0xc6,0x46,0x0,0x19,0xe6,0xac,0xde,0xd,0x89,0x87,0xce,0x5e,0x28,0xd0,0x8f,0x6f, 0xb4,0x43,0xc7,0xe5,0x9a,0x96,0xc8,0x48,0xd2,0x89,0x36,0x3a,0xa3,0x29,0x19,0x23, 0x1e,0x98,0xfe,0xb4,0x5d,0x1b,0x82,0xe5,0xc4,0x69,0x84,0xc7,0xe3,0xf3,0x3,0x8f, 0xd2,0xaa,0xa4,0xae,0xf4,0x38,0xe1,0x1e,0x4b,0xca,0xfb,0x89,0x34,0x85,0x1b,0xcd, 0x38,0xd8,0x38,0x63,0xe9,0xcf,0x5a,0xab,0xaa,0xb4,0x89,0xa2,0x6a,0x20,0xaf,0x6, 0xd2,0x42,0x18,0x74,0xfb,0xa6,0xa4,0x5b,0xb0,0x62,0x26,0x45,0xe,0x87,0x3b,0x97, 0x1f,0x74,0xe4,0xd5,0x6d,0x4a,0xed,0x67,0xd0,0x75,0x18,0x97,0x20,0xad,0xac,0x9f, 0x4c,0x6d,0x38,0xa9,0xb3,0x22,0xf,0x9a,0x45,0xc9,0xe4,0x59,0x35,0x3d,0x61,0x4b, 0x26,0xe1,0x7d,0x22,0xfc,0xe7,0x3,0xee,0xa6,0x2a,0xa4,0xf0,0x9f,0x2b,0x2f,0x75, 0x1c,0x5e,0x8c,0xaf,0x82,0xf,0xe0,0x3a,0x53,0x75,0x19,0xe1,0x5d,0x47,0x56,0x53, 0x1e,0x49,0xbf,0x97,0x71,0xdc,0x46,0x31,0x81,0xfd,0x2b,0x32,0xe6,0xce,0xe1,0xd7, 0xcc,0xb7,0x32,0x4d,0x7,0x1f,0x3c,0x4e,0x65,0xc7,0xb6,0x7,0x3f,0xa5,0x69,0x8, 0x5e,0x57,0xbd,0x8a,0xab,0x17,0x7b,0xb2,0x45,0xb6,0xf3,0x87,0x91,0xf6,0xfb,0x59, 0x18,0x36,0x57,0x32,0x10,0xdf,0x99,0x15,0x77,0xfe,0x3c,0xa0,0x9,0x72,0xde,0x5f, 0xd4,0xf0,0x7e,0x95,0x85,0xe4,0x3b,0xae,0xc9,0xe5,0x9a,0x27,0x3f,0x76,0x3b,0x8b, 0x29,0x0,0x3f,0x8e,0x2b,0x4a,0xda,0xd7,0x5b,0xb3,0x8c,0x79,0x20,0xbc,0x43,0xe6, 0x0,0x48,0x0,0xfc,0xa4,0xa,0x45,0x6b,0x55,0x25,0xf6,0xae,0x65,0x7e,0xa4,0xc9, 0xa9,0xcd,0x34,0xab,0x15,0xa9,0xe,0xa0,0x7f,0x0,0xeb,0xf5,0x38,0xe2,0xbb,0x2d, 0x3e,0x52,0x62,0x56,0x64,0x21,0xba,0x60,0x9a,0xe6,0x6d,0xef,0x2e,0x22,0x65,0x96, 0xfe,0xf2,0x38,0xd1,0xba,0xa2,0xc,0x9f,0xa7,0x3,0xfa,0xd6,0xad,0x96,0xad,0x14, 0xe0,0xc7,0x11,0x67,0xb,0xc0,0x24,0x62,0xb8,0x6b,0xbb,0xec,0x8e,0x8a,0x12,0x4b, 0x76,0x6d,0xb3,0x82,0xe,0xdf,0x94,0xf4,0xaa,0xb7,0x85,0x92,0xc2,0x78,0xc3,0x70, 0xcb,0x92,0x7d,0x80,0x26,0x99,0xf6,0x82,0xf1,0x65,0x76,0x83,0xd0,0x60,0xe6,0xa1, 0x92,0x66,0x9a,0x6,0x47,0x5e,0x4f,0xc9,0xf5,0x7,0x8f,0xeb,0x5c,0xea,0x76,0x95, 0xfa,0x9e,0xa4,0x63,0x26,0x8b,0x32,0xdd,0x1f,0xed,0x3b,0xf5,0x24,0x7f,0xaf,0x29, 0x93,0xd0,0x7c,0x8b,0x8a,0xa7,0xa9,0x43,0x24,0xaa,0x9b,0x78,0xa,0x49,0x3c,0xf7, 0xfe,0xb4,0xd9,0xa3,0x2d,0x7b,0x78,0x61,0x3b,0x9d,0xee,0x65,0x25,0x1b,0xf8,0xb0, 0xd8,0xfe,0x95,0x7,0x9d,0x13,0x46,0x57,0xcc,0x65,0x70,0x79,0x53,0xc9,0x5a,0xb9, 0x3f,0x79,0x9c,0xd3,0x83,0x5b,0x92,0xdb,0xab,0x40,0xbc,0x1d,0xc4,0xf5,0xf9,0x40, 0xab,0x5f,0x68,0xd8,0x99,0x38,0x24,0xf4,0x3,0xbd,0x67,0x79,0x7b,0x88,0x2b,0x26, 0x4f,0x62,0x32,0x73,0x4c,0xd4,0xf5,0x8,0xed,0x2d,0xc9,0xce,0xf2,0x83,0x24,0x64, 0xc,0xe6,0x9d,0xae,0xce,0x67,0x2e,0xe4,0x72,0xdd,0xdc,0xca,0x64,0x9e,0x66,0x48, 0xa3,0x5f,0x95,0x37,0x8e,0x84,0xff,0x0,0x9f,0xd2,0xb3,0xa2,0xbd,0x2c,0xc5,0x61, 0x9f,0x7a,0xb7,0x4,0x23,0xe7,0xf4,0xad,0x59,0xf4,0x59,0x35,0x1b,0x45,0x8a,0xe2, 0x49,0x60,0x5d,0xfb,0xbf,0x76,0xe3,0x8e,0x3b,0xf1,0xfc,0xaa,0x9d,0xae,0x85,0x1d, 0xa5,0xec,0x7e,0x45,0xcb,0x14,0x8c,0x16,0xda,0xf0,0xe1,0x89,0xc7,0x76,0xee,0x33, 0xcd,0x6d,0x9,0x45,0x5e,0xe2,0xb1,0x62,0x23,0x25,0xba,0x2a,0x5b,0x34,0x57,0x0, 0x10,0x4a,0x3f,0x51,0xfa,0xd6,0x9d,0xb5,0xd7,0x9b,0xb0,0x95,0x1,0x5c,0xe0,0xe0, 0x7d,0xd3,0x59,0x57,0x3a,0x4d,0xb5,0xdc,0xa8,0xec,0xca,0xb2,0xe0,0x2,0x53,0xbf, 0xaf,0x51,0xc5,0x6d,0x5b,0xdb,0x47,0x4,0x11,0xc5,0x1e,0x36,0xa7,0x19,0xee,0x6b, 0x29,0xb8,0xb5,0xa1,0x49,0x97,0x46,0x30,0x6,0x6a,0xb5,0xcd,0xe5,0xbc,0x11,0x9d, 0xf7,0x11,0xc6,0x47,0x46,0x77,0x0,0x3,0xee,0x3d,0x3d,0xe9,0x8b,0x31,0xc1,0xc, 0x40,0x3,0x22,0xb3,0xb5,0x5b,0x54,0xb9,0x8b,0xed,0x16,0xea,0x58,0x85,0xc1,0xa, 0x73,0xe9,0xe9,0xf8,0xd6,0x71,0x4d,0xbd,0x4a,0xe6,0x1d,0x69,0x75,0x3c,0x92,0xca, 0x25,0x8c,0x29,0xe7,0x1b,0x5b,0x2a,0x7d,0x8,0x3d,0xc1,0x18,0x39,0xa8,0xef,0xd1, 0x13,0x52,0xd0,0x20,0x2a,0x1b,0x1a,0x63,0x60,0x9f,0x77,0x8b,0xfc,0xfe,0x15,0x4a, 0xec,0x49,0x61,0x61,0x7b,0x1a,0x10,0x25,0xb7,0x81,0x54,0x15,0xec,0x44,0xa,0x7f, 0x99,0xab,0x3a,0xbb,0xac,0x7e,0x29,0xd3,0x32,0x4e,0xf8,0xb4,0x98,0xb6,0x83,0xd3, 0xe6,0x90,0xff,0x0,0xf1,0x15,0xd9,0x4e,0x36,0x4d,0xa3,0x78,0x2b,0xec,0x59,0xf2, 0x1d,0x32,0x20,0x64,0x2a,0xe,0x42,0x33,0x63,0x6e,0x7e,0x95,0x69,0xad,0xc,0x71, 0x19,0x7e,0xd4,0xa4,0xa8,0xe7,0x71,0x20,0x1f,0xd7,0xf9,0xd5,0xb,0x68,0x67,0x43, 0xe7,0x89,0x11,0xc0,0x6d,0x8d,0xe5,0x36,0xee,0x6a,0xd4,0xaf,0x6e,0x5c,0x89,0xdd, 0x1b,0x2b,0x92,0x36,0xe3,0x1f,0x8e,0x6b,0x8e,0x4d,0xdc,0xb5,0x17,0x1d,0x49,0x82, 0x4e,0x6d,0x90,0xef,0x46,0x43,0x93,0x85,0x6e,0xd8,0x3d,0xc0,0xaa,0xd1,0x45,0x73, 0xb6,0x6d,0xd2,0x48,0x8e,0x30,0xb1,0xaa,0xc6,0x39,0xe9,0xc9,0x27,0x83,0x59,0xf7, 0x73,0x2d,0xa1,0xf3,0x6c,0x66,0x68,0xe3,0xc6,0x32,0x30,0x79,0xfc,0x7b,0x57,0x3e, 0xba,0xe5,0xf5,0xf5,0xf1,0x77,0x9d,0x19,0x21,0x6c,0xb2,0xbb,0xa6,0xce,0x3f,0xd9, 0xc8,0xfc,0xeb,0x68,0x50,0x9c,0xd5,0xe2,0x4b,0xaa,0xaf,0x66,0x8e,0x86,0xe2,0x79, 0x23,0xba,0x32,0x79,0x37,0x4,0x83,0xf2,0x88,0x61,0x66,0x20,0x8e,0x39,0xf4,0x1d, 0x6a,0x29,0xb5,0x18,0xad,0x13,0x75,0xcc,0x76,0xf2,0x2,0xd9,0xa,0xf1,0xae,0xf4, 0xf7,0xf4,0xa6,0x26,0xa3,0x1d,0xfc,0x32,0x5b,0x99,0xd,0xbc,0x8f,0x1f,0xca,0x23, 0x20,0xf9,0x87,0x27,0x18,0x24,0xf,0xe7,0x59,0x1a,0xd5,0xac,0x56,0x11,0x24,0x77, 0x77,0x21,0x66,0x93,0x4,0x5a,0x40,0x8c,0xed,0xb7,0x8c,0x96,0x93,0x38,0x51,0x83, 0xe8,0x47,0xd6,0xaa,0x31,0xf7,0xb9,0x64,0xb5,0x26,0x54,0x25,0x28,0xf3,0x40,0x8f, 0xc5,0x56,0x1a,0xd1,0xb8,0x32,0xe9,0xd6,0xd1,0x3e,0x9d,0xb4,0x3b,0xb5,0xbb,0x2a, 0xc8,0xde,0x87,0x19,0x19,0x1d,0x3a,0xe,0xe7,0x9a,0xa5,0xa5,0x4d,0x14,0x13,0xca, 0xcf,0x78,0x6c,0xe7,0x87,0xa,0xc2,0x19,0x83,0x92,0xdd,0x30,0x40,0x24,0x37,0x4e, 0x9c,0xd6,0xee,0x9d,0xe2,0x55,0x48,0xda,0xc6,0xdb,0x4b,0x79,0xe0,0x10,0x84,0x48, 0xa0,0x32,0x4a,0xea,0x98,0xe8,0xcd,0xb4,0xf1,0xcf,0xd2,0x9a,0xb7,0x9a,0xc4,0xa1, 0xad,0xad,0xd2,0x5d,0x1b,0x4f,0x51,0xf3,0xbd,0xcc,0x45,0x6,0x9,0xfe,0x11,0xb1, 0x49,0x3d,0x7e,0xee,0x3e,0xb5,0xd9,0x19,0x49,0x47,0x91,0xc7,0x43,0x1b,0x2b,0x17, 0xa1,0xb3,0xd4,0xe4,0x4,0xff,0x0,0x6e,0x29,0x47,0x19,0xf2,0x1a,0xce,0x3d,0xcc, 0xf,0x66,0xc9,0xe0,0x7e,0xb5,0x6,0xa7,0xa7,0x3d,0x8d,0x8f,0xda,0x4d,0xdd,0xb5, 0xbc,0x6b,0xf7,0xb6,0x46,0xf3,0xfe,0x1,0x57,0xa7,0xe7,0x44,0x56,0xb7,0xb1,0xd9, 0x93,0xd,0xd0,0xbc,0x86,0x43,0xb7,0x74,0x72,0x88,0x99,0xf,0xbf,0x9b,0xd0,0xff, 0x0,0xc0,0xab,0xe,0x7f,0xc,0x6b,0x93,0xdc,0xc7,0x75,0x71,0x2b,0x9b,0x7c,0x82, 0xac,0x66,0x47,0x20,0x7b,0xec,0xce,0x7f,0x3a,0xce,0x1e,0x72,0x27,0x99,0x26,0x74, 0x16,0x11,0x6a,0x37,0x70,0xc1,0x77,0x66,0x44,0xd0,0x30,0x65,0x55,0x84,0x88,0xa3, 0x18,0xe0,0x96,0x1d,0x73,0xfe,0x15,0x66,0x1b,0xd,0x6d,0x1b,0x12,0xa8,0x94,0xab, 0x16,0x49,0xed,0xe5,0xde,0x3f,0xe,0x8d,0x55,0xa0,0xdb,0xa4,0xda,0x7d,0x9a,0xcd, 0xa0,0x5,0xd7,0x71,0xf3,0xa4,0x4d,0xec,0x70,0x33,0x8c,0x95,0x1f,0xa7,0x7a,0xb7, 0x6b,0xad,0xda,0xcd,0x69,0xb9,0x2d,0x5a,0x55,0xce,0x19,0x61,0x28,0x71,0xf9,0x9f, 0xaf,0x7f,0xa5,0x73,0xce,0xed,0xb6,0xb6,0x35,0x94,0xa3,0x6d,0x11,0xaf,0x6a,0xf3, 0xbc,0x65,0xe7,0xf9,0xa5,0xc6,0x19,0x99,0x36,0x13,0xf5,0xab,0x11,0xa0,0xb9,0x85, 0x86,0x3e,0x56,0x3d,0xf3,0xd6,0xb3,0x22,0xbf,0x81,0x6d,0xcc,0x91,0x40,0xcb,0x1a, 0xff,0x0,0x7b,0x2a,0x47,0xfc,0x6,0xb5,0x2d,0x64,0x9a,0x58,0x95,0xe4,0x8a,0x48, 0xb7,0x0,0x54,0x16,0xfe,0x9d,0xab,0x99,0xbd,0x4d,0xe8,0x37,0x6b,0xd8,0xaf,0xfe, 0xa8,0xb4,0x52,0x9d,0xa1,0x70,0x47,0xbf,0xf9,0xc5,0x45,0x3d,0xb4,0xcc,0xbb,0xad, 0x1c,0x24,0xbd,0x57,0x71,0xdb,0xfa,0xd6,0x93,0xaa,0x97,0xe,0x55,0x77,0x63,0xa9, 0x1d,0xaa,0xb3,0xc6,0x41,0x6d,0x93,0xec,0x53,0xce,0x59,0x72,0x7,0xe3,0x42,0x91, 0xaa,0x9f,0xbc,0x57,0x41,0x23,0x44,0xf0,0xde,0x8d,0xf1,0xa9,0x1e,0x5b,0xe7,0xe6, 0xc8,0xef,0x9a,0x9c,0xc6,0x66,0x55,0x45,0xc,0x63,0x60,0x57,0x86,0xe6,0xa9,0x3c, 0xd6,0xb1,0x48,0xe2,0x49,0xa5,0x63,0x18,0xdc,0x51,0x8e,0x43,0xfd,0x2a,0x5b,0x48, 0x5e,0xfa,0xda,0x39,0xcc,0x6a,0x9f,0x36,0xe5,0x2a,0x48,0xe3,0xd8,0xff,0x0,0xf5, 0xaa,0x17,0x3b,0x9f,0x91,0xbc,0xa5,0x14,0xb5,0x26,0x8d,0x5e,0xd9,0x19,0x24,0x60, 0x5d,0x86,0x38,0x6e,0x8b,0xfe,0x35,0x6a,0x39,0x83,0x28,0x61,0x86,0xc7,0x40,0x4f, 0x6,0xa2,0x90,0x28,0x3b,0x1b,0x80,0x78,0xd,0xef,0x51,0x34,0x72,0xc,0x2a,0xc9, 0x95,0x1e,0x98,0x2,0xad,0xd5,0x8a,0xd2,0xe2,0x4b,0x9b,0x61,0xb3,0x6,0xde,0x49, 0x55,0x4c,0xe4,0x80,0xf,0x4a,0x81,0x81,0x51,0xd3,0x82,0x3f,0x3a,0x74,0xf7,0x32, 0xc2,0xcf,0x98,0x3,0x85,0x50,0x57,0x68,0xea,0x29,0x96,0xf2,0xb6,0xa1,0x6c,0xd3, 0x2a,0x3a,0x14,0x3b,0x48,0x2b,0xf7,0x4d,0x68,0xa4,0xcd,0x12,0xb0,0xdf,0x23,0x7c, 0x61,0xc4,0xa6,0x23,0x92,0x1b,0xb,0xc1,0xfc,0xa9,0x67,0xb6,0x8c,0xa1,0x3,0xcc, 0xe4,0xc,0x6d,0x0,0x8f,0xc4,0x9a,0x75,0xd3,0x98,0x2d,0x25,0x9b,0xcb,0x9f,0x6e, 0x6,0x59,0xa3,0x20,0x67,0xb9,0xc7,0xa7,0xbd,0x56,0x6,0x26,0x40,0x4c,0xc3,0x61, 0x19,0xd,0xd7,0xf4,0xaa,0x49,0xbd,0x82,0x6e,0xc8,0x9d,0xe5,0xb9,0x83,0x66,0xd9, 0x48,0x53,0xc1,0xc8,0xcf,0x35,0x60,0xc8,0xa6,0xe2,0x1b,0x89,0x55,0xb7,0x85,0xc6, 0x53,0xa6,0x7d,0xeb,0x26,0x39,0x5e,0xe2,0x13,0x12,0xcd,0xb9,0xc9,0xf9,0x9,0xe0, 0x2f,0xd6,0xb5,0x6d,0xe4,0xf3,0x4,0x8a,0x40,0xdc,0x0,0xf9,0x7d,0x48,0xc7,0x22, 0x95,0x45,0xca,0x4c,0x25,0xcc,0x8b,0x13,0x2c,0x66,0x53,0x28,0x1,0x81,0x1b,0xb1, 0x8e,0x9c,0x63,0xfc,0x6a,0x95,0xd2,0x33,0xca,0xaf,0xb,0x85,0x12,0x75,0xe3,0x38, 0xc5,0x2c,0xd2,0x79,0x7c,0xe0,0x82,0x46,0xd0,0xab,0xd7,0xaf,0x7a,0x85,0xe5,0x8d, 0x21,0x7,0x32,0x88,0xdb,0xba,0x83,0x8c,0xfe,0x5e,0xf5,0x2c,0x6d,0x16,0x77,0x1e, 0x3b,0xf6,0xcd,0x40,0x3f,0x7d,0x1b,0xc,0xb2,0x9e,0x98,0x7,0xad,0x3e,0x36,0xdf, 0x18,0x74,0x2a,0xd8,0xe9,0xce,0x7f,0x3a,0x8a,0xdd,0x5b,0xcf,0x66,0x94,0x32,0x27, 0xd3,0x82,0x6b,0x39,0xdf,0x97,0xdd,0xdc,0x71,0xd0,0x7a,0xc5,0xa,0x95,0x6f,0x34, 0x10,0x38,0x2a,0xdd,0x45,0x3e,0xe2,0x15,0x9c,0x6c,0x2e,0x51,0x86,0x33,0xc7,0x4f, 0xc2,0x84,0x58,0xe4,0xb9,0x2a,0xa6,0x54,0xf5,0x60,0x6,0x2b,0x2e,0x17,0x76,0x69, 0x37,0xca,0x1b,0x6c,0xcc,0x86,0x40,0x4e,0xe,0xe,0x3f,0xa5,0x5d,0x36,0xe5,0xa3, 0x66,0x55,0xa6,0xe3,0xaa,0x34,0x4d,0xbc,0x5b,0x2,0x39,0xc8,0x7,0xa8,0xe2,0xa3, 0x10,0xf9,0x45,0xb6,0x2,0x41,0xf5,0x3d,0x2a,0xc0,0x1b,0xd7,0xe4,0x21,0x80,0xee, 0x3b,0xd3,0xca,0xfc,0xc4,0xe,0xc3,0xb8,0xe2,0xab,0x98,0x8a,0x75,0x9b,0xf8,0x8a, 0x22,0x4c,0xbe,0x1f,0xa7,0xb5,0x48,0x70,0xc3,0xe4,0xc1,0x61,0xce,0x37,0xc,0xd1, 0x2d,0xa8,0x77,0xc7,0x98,0x51,0x88,0xce,0x31,0x9a,0x82,0x18,0xe2,0x63,0x86,0x92, 0x34,0x2b,0xf7,0x81,0xc9,0x3f,0xca,0x8e,0x63,0xaa,0xe9,0xad,0xb,0x3b,0xe2,0x42, 0x19,0xd0,0xbb,0x30,0xc1,0x27,0x38,0x1f,0x43,0x44,0x6e,0x90,0xae,0xf8,0x62,0x76, 0x27,0x8c,0x8e,0x69,0x23,0xfb,0x2b,0x29,0x11,0xc8,0xcc,0x40,0xee,0x4e,0x7f,0x5a, 0xad,0x75,0x69,0x25,0xc1,0x6,0xda,0xf1,0xa0,0x91,0x71,0xb5,0x24,0x18,0x53,0x9f, 0x5a,0xc2,0x74,0xd4,0xa5,0xcd,0x26,0x5a,0xd8,0xec,0x7c,0x26,0x1c,0x3d,0xee,0xfe, 0xbf,0xbb,0x3d,0x7f,0xde,0xae,0x96,0xb9,0x3f,0x5,0xc7,0xe4,0xc9,0xa8,0x44,0x64, 0x57,0x70,0x22,0x2c,0xca,0x31,0x9c,0xee,0xae,0xb2,0xbd,0xcc,0x22,0x4a,0x8a,0xb7, 0xf5,0xa9,0xe7,0x57,0xfe,0x23,0x38,0x2f,0x89,0x11,0xac,0x92,0x69,0x7,0x69,0xf3, 0x23,0x77,0x95,0x18,0x8c,0xaa,0xed,0x31,0x9f,0x98,0x7d,0x71,0xfa,0xd7,0x99,0x6a, 0xd7,0xf,0x2f,0x88,0x62,0x7b,0x94,0xdb,0x27,0x9c,0xdb,0xe4,0x8e,0x32,0x50,0x92, 0xa3,0x68,0x0,0x12,0x7a,0x1,0xd7,0xd6,0xbd,0x27,0xe2,0x88,0xb5,0x92,0xda,0xc2, 0x2b,0x9d,0x46,0x1b,0x12,0x56,0x56,0xdf,0x2b,0xed,0xc,0xa3,0x66,0x47,0x50,0x4f, 0x25,0x7a,0x57,0x9c,0x3,0xd,0xe2,0xa7,0x94,0x6d,0xee,0xa5,0x55,0x8,0xd2,0x47, 0x3a,0xe1,0xf1,0xf7,0x4b,0x2,0x30,0x58,0xf,0xe2,0x15,0xc9,0x88,0x57,0xa8,0xdd, 0x8a,0xa5,0x55,0x45,0x6a,0x62,0xdd,0x4a,0xfa,0x7f,0x8d,0xed,0x35,0x30,0xdf,0xe8, 0xf7,0x90,0x24,0x57,0x27,0x38,0x18,0xc,0x23,0x2c,0x3e,0x9b,0x55,0xbf,0xa,0xf4, 0xfb,0x5b,0x67,0x4b,0x50,0x8f,0x3b,0xec,0x42,0x73,0xef,0xc9,0xf9,0x8f,0xaf,0x6a, 0xf3,0x6d,0x52,0xd3,0x52,0x69,0x52,0x29,0xe2,0x79,0x7c,0x85,0x79,0x6c,0xd2,0x4d, 0xbf,0x32,0x82,0x37,0xa0,0x23,0x93,0xd3,0x20,0x7e,0x5d,0xeb,0xa8,0xd2,0x35,0x7b, 0xcb,0x7d,0xa,0xd1,0x25,0x10,0xbc,0xef,0x7,0x99,0xb2,0x7f,0xbc,0x14,0xfd,0xde, 0x33,0xce,0x54,0x29,0xc7,0x1d,0x6b,0x93,0x1d,0x7,0x52,0x11,0x92,0xe8,0x6f,0x42, 0x77,0x5f,0x33,0x7e,0x28,0x6d,0x9b,0x8f,0xb4,0x96,0x63,0xc8,0x24,0xff,0x0,0x9e, 0x2a,0xc4,0xa6,0x18,0x24,0x57,0xde,0x80,0x64,0x72,0x7a,0x1f,0xc7,0xb5,0x65,0xdb, 0x17,0x31,0x5b,0xce,0xa5,0x76,0x95,0xdc,0xd9,0x4c,0x5,0xf5,0xe3,0xff,0x0,0xaf, 0x56,0xa5,0x41,0x7d,0x6e,0xf0,0xd,0x83,0xe6,0x4,0x76,0x4,0x77,0x1e,0xdd,0x2b, 0xc4,0x94,0x5d,0xf5,0x3a,0x65,0x1b,0x6a,0xcb,0xcb,0x34,0x6d,0x86,0x8d,0xc3,0xab, 0x8e,0x30,0xe3,0xa7,0xe7,0x51,0xb5,0xac,0x57,0xf,0xf3,0x3e,0x54,0x2,0x43,0x70, 0x5b,0x3f,0x53,0xd2,0xb3,0x1f,0x45,0x48,0x10,0xc8,0x23,0x53,0x93,0xb9,0x95,0x4f, 0xc,0x7e,0xb5,0x6d,0xa2,0x8d,0x44,0x4e,0xa0,0xc5,0xbb,0x8d,0x91,0x8e,0xb5,0xe, 0x29,0x6a,0x99,0x2e,0x16,0xd5,0x32,0x3b,0x8d,0x25,0xee,0x26,0x2f,0x25,0xcb,0x22, 0x60,0x0,0xa4,0xe4,0x1,0xdf,0x8e,0x99,0xfc,0x2a,0xb5,0xfd,0x8c,0xd0,0xf9,0x22, 0x29,0x36,0xb2,0x2e,0xe0,0xf1,0xfe,0xed,0x83,0x74,0x19,0xea,0xd,0x68,0xb8,0xba, 0x96,0xdd,0xa2,0x8e,0x36,0x84,0x38,0xda,0xb2,0x17,0x1b,0x81,0xfa,0x56,0x2d,0xa4, 0xb7,0x96,0xd2,0x48,0xb7,0x90,0xcd,0x3c,0x8a,0x76,0xab,0x7,0xca,0x7d,0x48,0xc6, 0x7d,0xeb,0x7a,0x1c,0xd2,0xba,0xb8,0x2d,0xf5,0x65,0x91,0xfe,0x91,0xd,0xac,0x97, 0x77,0x11,0xa5,0xc0,0x62,0x84,0xed,0xda,0x1c,0xe7,0xbe,0x3a,0x13,0xeb,0x44,0xb1, 0xc5,0x6d,0x4,0xd6,0xfa,0x8c,0x64,0x59,0xc9,0xca,0xb6,0x77,0x80,0x7d,0x9b,0x2, 0x8b,0x9d,0x47,0x4e,0xb4,0xd3,0xdf,0x6d,0xcc,0x77,0xf7,0xe4,0xef,0x8e,0x2b,0x45, 0x24,0x7,0xf4,0x27,0x90,0x7,0xa9,0x35,0x26,0x8d,0x77,0x73,0x77,0x67,0x2c,0x5a, 0xa4,0x71,0xe0,0xb6,0x36,0xed,0xe1,0x94,0xf5,0xe3,0xdb,0x91,0x44,0xa3,0x24,0xae, 0xf4,0x2f,0x99,0xb8,0xdd,0x6c,0x8a,0xcd,0xa4,0x6e,0xb4,0xc5,0x89,0xfb,0x5c,0xa, 0xdf,0x28,0x7,0xe,0xbe,0x9e,0xc7,0xf4,0xfc,0x6a,0x78,0x44,0x17,0xec,0xd0,0x2b, 0xa8,0xbd,0x41,0xbd,0x81,0x8c,0x86,0x5c,0x7e,0x3f,0x5a,0xb1,0x67,0x60,0x63,0x1c, 0xc6,0xa,0x29,0x21,0x5b,0x18,0xf9,0x73,0xc5,0x54,0x99,0xa3,0xb3,0x9a,0x45,0x86, 0x5,0x8a,0x40,0x0,0x77,0x2c,0x50,0xe4,0xf3,0x8c,0x8e,0x7b,0xfe,0xb5,0x2a,0x5c, 0xda,0x21,0xa7,0xcd,0xee,0xc5,0x97,0x27,0x5b,0x9f,0x2e,0x56,0xb5,0x10,0x99,0x9b, 0x82,0x65,0x63,0x8c,0x7e,0x2,0xb1,0xf5,0x98,0xe5,0x9b,0x4f,0xb3,0x6b,0x99,0xe2, 0x96,0x48,0xe7,0xda,0x51,0x1,0x28,0xe0,0x8f,0x5e,0xc4,0x7f,0x5a,0xb9,0x5,0xc4, 0x92,0x69,0xb7,0xd7,0x28,0x7c,0xd7,0x8c,0x12,0xa9,0x2b,0x17,0x0,0x80,0x73,0xce, 0x72,0x47,0x4e,0xb5,0x15,0xae,0x9f,0x73,0xa8,0x5a,0x8,0xf5,0x35,0x8f,0xca,0x7, 0x78,0x58,0xc1,0x4,0x9c,0x71,0xc6,0x7a,0x7f,0x8d,0x69,0x46,0xf0,0x7c,0xd2,0xb6, 0x8c,0x6d,0x35,0x7b,0x92,0xe8,0x2a,0x9f,0xd9,0x50,0x46,0x25,0xc4,0xd1,0x31,0xe, 0x1,0xe7,0x5,0xc9,0xfe,0x44,0x55,0x9c,0xad,0xbb,0xcb,0xe6,0x60,0xb1,0x72,0x49, 0x6e,0x5b,0xd8,0x7e,0x58,0xa8,0x62,0x82,0x29,0x54,0xdc,0x45,0x12,0x43,0x71,0x10, 0xfd,0xe0,0x5f,0x94,0x30,0xe9,0xd0,0xfe,0x14,0x90,0xde,0xb,0x9d,0x41,0xa1,0x8e, 0x14,0x9,0x80,0x18,0xbc,0x63,0x39,0xc7,0xa8,0xfa,0x56,0x75,0x52,0x72,0x72,0x5b, 0x13,0xcb,0xd4,0xb2,0x22,0x12,0xb0,0x67,0x92,0xe1,0x7f,0xbb,0xe5,0xb1,0x51,0x8f, 0xad,0x41,0x7a,0x2c,0x82,0x3d,0xbc,0xdb,0xd9,0x1c,0x73,0x8c,0xe4,0x1f,0x5d,0xc7, 0xad,0x5c,0xba,0x91,0x2d,0xed,0xc0,0x33,0x2d,0xbb,0x36,0x0,0x38,0x1f,0xca,0xb3, 0x26,0x5d,0x6a,0x3b,0xf5,0x92,0xdc,0x34,0x90,0x10,0x0,0x20,0x86,0x53,0xdf,0x91, 0xdb,0xf2,0xac,0xe2,0xaf,0xa9,0x30,0xef,0x70,0xbd,0xd1,0x8e,0xab,0x66,0x22,0x55, 0x36,0xf3,0x40,0xdb,0xad,0xae,0xb,0x6,0xe7,0x18,0xe7,0x1c,0xe0,0x8e,0xbf,0x85, 0x49,0x61,0xa0,0xc9,0x6f,0x1a,0x9b,0xbb,0x97,0x98,0xa3,0x33,0x4,0x8c,0x62,0x31, 0xbb,0xaf,0x5c,0x93,0xf9,0xd6,0xac,0x2e,0xcc,0x14,0xcd,0x6f,0xe5,0xbf,0x70,0xbc, 0x81,0xf8,0xd3,0xb0,0xf6,0xe4,0x98,0xe3,0x59,0x11,0x8e,0x1b,0x2c,0x72,0x1,0xef, 0xcd,0x3f,0x6f,0x3e,0x5e,0x4b,0xe8,0x43,0x9b,0xb9,0x42,0x49,0xd2,0xf0,0xfd,0x9e, 0x29,0xb6,0xdc,0xc4,0x87,0x69,0x8d,0xc1,0x2b,0xf5,0x1e,0x94,0xc4,0xd3,0x8f,0xd9, 0x92,0x45,0xf2,0xe3,0x9c,0xe0,0x30,0x52,0x4a,0x3b,0x77,0x3d,0x3e,0x53,0x57,0xca, 0xa0,0x9c,0x35,0xad,0xbc,0x6b,0xfc,0x2e,0xfe,0x5e,0xb,0x7e,0x35,0xf,0xda,0xaf, 0x37,0xe4,0x2a,0x34,0x64,0xe1,0x94,0x8f,0xba,0x7e,0xb4,0xb9,0x9e,0xcb,0xf1,0x29, 0x73,0x74,0x1c,0xd6,0xf2,0x23,0x7,0x78,0xe,0xe5,0x53,0xf3,0xa3,0xe5,0x4f,0x1c, 0x82,0xf,0x5f,0xad,0x56,0x50,0xab,0x6d,0x3c,0xa6,0x20,0xcd,0x1a,0x30,0xda,0x57, 0xa7,0x7f,0xf2,0x6a,0xfb,0xcc,0xa5,0x95,0x25,0x76,0x89,0xc8,0xc8,0x24,0x2,0xa4, 0x56,0x7e,0xbd,0x15,0xd5,0xc6,0x91,0x74,0x2d,0xe6,0x49,0xda,0x25,0x57,0x95,0x62, 0x20,0x39,0x8c,0xc,0x9e,0x3e,0x83,0x35,0xdd,0x84,0x9a,0x95,0xa0,0xf4,0x7d,0xcc, 0xa6,0xed,0x16,0xd9,0x9d,0x70,0xc7,0x52,0xbb,0x9,0xc,0xaf,0x6c,0x71,0x81,0x24, 0x27,0xe7,0x61,0xc8,0xc7,0x5e,0xbc,0x1f,0x5a,0xd5,0xb4,0xb2,0xb4,0x8a,0x34,0x8e, 0x38,0x48,0xc2,0xfc,0xc6,0x61,0xf7,0xbd,0x49,0x3d,0xcd,0x64,0xf8,0x7b,0x4b,0xd5, 0x6e,0xc3,0xea,0x16,0xe9,0x12,0xd9,0x9e,0x23,0xf3,0x24,0xda,0x64,0x20,0xe3,0x72, 0xf0,0x48,0x1d,0x47,0xbd,0x5c,0xbb,0xd5,0x25,0xb1,0x73,0x11,0x8d,0x65,0x68,0x40, 0xf3,0x10,0xe4,0x63,0x27,0x3,0x27,0x1d,0xff,0x0,0xa5,0x74,0xe2,0xe8,0xce,0x52, 0x51,0x88,0xe8,0xb5,0xc8,0xae,0xcd,0x61,0x24,0xb0,0xba,0xed,0x8d,0x36,0x28,0xce, 0xe0,0xd8,0xc0,0xfa,0x63,0x35,0x5e,0x6b,0xcb,0x87,0xca,0xc5,0x2a,0xa2,0xff,0x0, 0x7d,0x57,0x93,0xf4,0x3f,0xfd,0x6a,0xe7,0x6c,0xe6,0x78,0x96,0x59,0x65,0xc6,0xc6, 0xcc,0xdb,0x77,0x79,0x86,0x3c,0xc8,0xa3,0x19,0x3c,0x91,0x86,0xfd,0x2b,0x45,0xa6, 0x82,0xe2,0x15,0x97,0xed,0xaa,0xb8,0x5d,0xec,0x91,0xa8,0x51,0xce,0x3a,0xfe,0x95, 0x51,0xc1,0xc5,0x2f,0x84,0xe2,0xab,0x59,0xb9,0x5a,0x2c,0xba,0x8d,0x24,0x21,0x4c, 0xca,0x3c,0xa2,0xa,0xb1,0x58,0x48,0x27,0xdc,0x9a,0xcb,0xb8,0x5b,0x13,0x31,0xb8, 0x5b,0x3b,0xa9,0x1a,0x31,0xb5,0x5d,0x60,0x90,0x8c,0x7d,0x71,0x8a,0xab,0x75,0x7e, 0x82,0x70,0xcb,0x25,0xf3,0x6c,0x38,0xd,0x6e,0x42,0x29,0xfa,0x90,0x41,0x22,0xa9, 0xdc,0x78,0xab,0x52,0x82,0xe3,0x10,0x3c,0xf1,0xac,0x78,0x27,0xcf,0x62,0xea,0x4f, 0xb6,0xe1,0xfc,0xab,0xd1,0xa1,0x46,0xa4,0x56,0x8a,0xc8,0xe1,0x75,0x26,0xdd,0x9b, 0x34,0xe4,0xd5,0xf4,0xb8,0xe2,0x11,0x4d,0x2b,0x40,0x14,0x7c,0x8b,0xb4,0xa9,0x1f, 0x50,0x71,0x5e,0x7f,0xac,0x5a,0x69,0x57,0x97,0xe8,0x20,0xd4,0xa1,0x6f,0x31,0x4e, 0x36,0xdb,0xba,0x15,0x39,0xe8,0x4b,0x75,0xfa,0x8a,0xed,0x74,0xaf,0x10,0x6a,0xfa, 0x91,0x7d,0xb0,0x24,0x4e,0x30,0x1d,0xa4,0x8b,0x8,0xc4,0x9e,0x80,0xf5,0x3f,0x4a, 0x87,0x59,0xd2,0xb5,0x9f,0x11,0xe9,0xea,0x12,0x68,0x9e,0x18,0x9f,0x7a,0xb1,0xdb, 0x11,0x1e,0xa0,0x13,0xd0,0xf,0xa5,0x74,0x52,0x93,0xa7,0x22,0xef,0x2b,0x6a,0x79, 0xdd,0xdd,0x9b,0x69,0x53,0xc1,0x70,0x65,0x31,0x80,0x43,0xa1,0x89,0xb6,0x6f,0x1d, 0xe,0xf,0x50,0x4d,0x7a,0xe,0x91,0x79,0xa0,0xc9,0x69,0x8b,0x9d,0x6,0xc9,0x54, 0x29,0x97,0x75,0xcb,0x89,0x65,0xc7,0x5f,0xbc,0xc3,0x24,0xfe,0x55,0x97,0x6b,0xe1, 0x1b,0x8b,0xab,0xeb,0x79,0xbc,0x44,0x44,0x96,0x76,0x91,0xed,0x58,0x21,0x9f,0x25, 0xf9,0xee,0x47,0x45,0xc6,0x73,0xdc,0xe0,0x57,0x42,0x9e,0x1e,0xf0,0x74,0x4e,0x1a, 0x33,0x76,0x52,0x45,0xe,0x2d,0x56,0xee,0x55,0x44,0x1f,0x87,0x23,0xe8,0x4d,0x6d, 0x5f,0x11,0x4a,0x4a,0xce,0xe1,0xad,0x8a,0x47,0xc4,0x36,0x76,0x57,0x52,0xdd,0x68, 0xfa,0x2d,0xb5,0x98,0x70,0x40,0x9d,0x55,0x52,0x69,0x14,0xe3,0x3c,0xe0,0xe3,0xe8, 0x18,0x54,0xa3,0x5a,0xd6,0xbc,0xd5,0x92,0xe9,0xef,0x6d,0x6d,0xa4,0xfb,0x8f,0x28, 0x7c,0x7e,0x24,0x9c,0x55,0xd5,0xf8,0x7f,0xa5,0x93,0xfb,0xad,0x47,0x54,0x8c,0x1f, 0x9c,0x42,0x92,0x46,0xe4,0xc,0xf6,0x25,0x33,0x81,0xbb,0xbd,0x66,0xeb,0x3e,0x11, 0xbd,0xb8,0x8a,0x1b,0x58,0x35,0x5b,0x8b,0x8b,0x48,0x57,0x6c,0x71,0xca,0x2,0xc9, 0x19,0xff,0x0,0x69,0x41,0x1,0xb3,0xeb,0x81,0x58,0xa9,0x50,0x7a,0x2f,0xc4,0x8b, 0x75,0x34,0xdf,0xc4,0x1a,0x1d,0xcd,0x91,0x5d,0x61,0x7c,0xc9,0x22,0x19,0x56,0x84, 0xb0,0x12,0x7f,0xdf,0x7,0xd3,0xd6,0xa6,0xd2,0xee,0x7c,0x39,0xac,0x40,0xbb,0x2d, 0x93,0x4f,0x91,0x3a,0x47,0x1b,0x95,0xc,0x3e,0x9d,0xf,0xd7,0x19,0x1e,0xb5,0xc4, 0xc9,0xe1,0x7b,0x8d,0x12,0xdf,0xf7,0xa2,0xe3,0xca,0xc6,0x4c,0x9b,0x7e,0x55,0xe7, 0xa9,0xda,0x48,0xc5,0x5b,0xf0,0xec,0x60,0x95,0x86,0xb,0x80,0x86,0x48,0xc4,0x91, 0x92,0x3,0x27,0xb7,0x7e,0x3f,0x3a,0xa9,0x61,0xe9,0xb8,0x37,0x9,0x13,0x29,0x1e, 0x85,0x75,0xe6,0xc3,0xa7,0x89,0x74,0x9d,0x24,0x5c,0xb9,0xf9,0x76,0xcb,0x21,0xca, 0x8f,0x5e,0x4f,0x3f,0x98,0xae,0x54,0x6a,0x7a,0xb4,0x36,0xf3,0x3c,0x83,0xcb,0x9c, 0xca,0xe8,0xc0,0x23,0x28,0xdb,0x8c,0x6d,0xc7,0x38,0xc1,0xe7,0xaf,0x6a,0xdb,0xd2, 0xaf,0xae,0xac,0xc4,0x8b,0x75,0x1e,0xe8,0x89,0xdc,0x48,0x1c,0xa9,0xfc,0x3d,0x71, 0xed,0x54,0x35,0x3b,0xc1,0x14,0x9b,0x62,0x78,0xde,0x19,0x77,0x19,0x3c,0xc5,0xdd, 0x80,0x4e,0x70,0x9,0x7,0x7,0x9f,0xd2,0xb8,0xa9,0xa7,0x17,0x66,0xae,0x25,0x66, 0x8a,0x76,0xd7,0x57,0x73,0xc7,0x75,0x1c,0x31,0xc4,0x66,0xb6,0xb5,0x7b,0xa1,0xe6, 0x36,0x1,0x55,0xc6,0xe5,0xef,0xcf,0xcd,0x9a,0xd4,0xd3,0x6e,0xf5,0x38,0x56,0x15, 0x9e,0x36,0x8d,0xe3,0x5f,0x2c,0x9d,0xbb,0x83,0xc,0x63,0x9f,0xe7,0xd6,0x9b,0x1b, 0xc2,0xcb,0x2c,0xb1,0x5b,0xca,0xc6,0x5b,0x69,0xa1,0x1,0x76,0x8c,0x33,0x80,0x1, 0x39,0x23,0x83,0x8f,0xd2,0xb6,0xad,0x23,0x22,0xd8,0x32,0x3,0x29,0xea,0x14,0x7a, 0xfe,0x3e,0xde,0xd4,0x55,0x9a,0xb3,0x56,0xb1,0x4e,0x29,0x2b,0x92,0xc5,0x72,0xf2, 0x16,0x8a,0x5c,0x6f,0x16,0xb7,0x1f,0x74,0xf5,0x1,0x3a,0xfe,0xb5,0x52,0xe5,0x24, 0x97,0x4e,0x84,0x99,0x63,0x3f,0x22,0xe1,0x6e,0x21,0xf3,0x14,0x9c,0x3,0xef,0x83, 0xf8,0x55,0x74,0x8d,0x86,0xb9,0xb,0xab,0x39,0xdd,0x6d,0x75,0x1b,0x29,0x1d,0xfc, 0xa2,0x7f,0xa5,0x6b,0x59,0x9,0x24,0xd3,0x2d,0x50,0xbb,0x2,0x60,0x42,0x76,0xa8, 0x62,0xe,0xdf,0x42,0x8,0xf5,0xac,0x9b,0xe5,0x4a,0xc5,0x3f,0x81,0x14,0xf4,0xb9, 0x26,0x89,0xf6,0x5e,0xdb,0xa4,0x41,0x97,0x92,0xb0,0x4,0xc9,0xf6,0xc0,0xad,0x2b, 0x48,0xe6,0x82,0x60,0x7c,0xc4,0x68,0x33,0x95,0x3d,0xfe,0x95,0x97,0x14,0x92,0xd8, 0x4c,0x21,0x9c,0xb1,0x5d,0xdc,0x14,0xf9,0x47,0xb1,0xe9,0xd7,0x9e,0x95,0xb2,0x60, 0x6b,0xab,0xd5,0x82,0x15,0x52,0x2,0x67,0xf7,0x84,0xe0,0x7b,0x1a,0x52,0x57,0x64, 0xc2,0x2e,0x4c,0xdb,0xd3,0x83,0x3f,0x9d,0x18,0x5f,0xb8,0xd9,0x27,0x23,0x7,0x35, 0x70,0x74,0xe4,0x55,0x5b,0xd,0x26,0x18,0x22,0x53,0x30,0x59,0xe6,0x3d,0x5c,0x8e, 0x7,0xb0,0xf6,0xad,0x25,0x89,0x0,0x0,0x22,0x81,0xf4,0xae,0xb8,0x43,0xdd,0x3b, 0xec,0x56,0x41,0xc7,0xe3,0x4e,0x23,0x8a,0xb3,0xe5,0xa0,0x1f,0x70,0x52,0x18,0xd7, 0xfb,0xa2,0xb4,0xe4,0xd0,0xa,0x60,0x60,0xb6,0x3d,0x73,0x4a,0x7d,0xfe,0xbc,0xd2, 0x5e,0xcf,0x6b,0x67,0x18,0x69,0x63,0xdc,0x58,0xe1,0x55,0x57,0x24,0xd5,0x48,0xaf, 0xe0,0x79,0x15,0x1a,0xc6,0x78,0x81,0x38,0xdc,0xd1,0xe0,0xf,0xa9,0x15,0x9b,0x56, 0x29,0x45,0xbd,0x8a,0x97,0x96,0xfe,0x65,0xc4,0xaa,0x8b,0x92,0x76,0x36,0x3d,0xc7, 0xff,0x0,0x58,0x1,0x55,0x53,0x4f,0x9d,0xaf,0x44,0xb2,0x46,0x11,0x44,0x4e,0xa7, 0xe6,0x7,0x24,0xe3,0xfc,0x2a,0x5d,0x32,0x6b,0x89,0xee,0xe7,0x59,0xce,0xe6,0x4b, 0xe9,0x63,0xe4,0x74,0x40,0xb9,0x1f,0xaf,0x15,0x1e,0x81,0x73,0x75,0x72,0xd6,0xa6, 0xe3,0x6f,0x96,0xd0,0x4a,0xc7,0x0,0x64,0x30,0x7d,0xb8,0x35,0x16,0x7b,0x14,0xa5, 0x67,0x72,0x9e,0xa6,0xbe,0x4c,0xc5,0xa,0xfe,0xee,0x46,0x2c,0x8f,0xd7,0x93,0xd4, 0x66,0xb2,0xa6,0xf3,0x9,0x38,0x39,0xc7,0x3e,0x87,0xf5,0xae,0xe6,0xf6,0xd,0x2e, 0x48,0x19,0x2f,0x23,0x81,0xa2,0xee,0x19,0x33,0x5c,0xdc,0xba,0x4e,0x94,0xb9,0x16, 0x5a,0x9d,0xc2,0x27,0x27,0xca,0x64,0x69,0x14,0x7d,0x38,0xc8,0xfc,0xea,0xd2,0xe5, 0x56,0x38,0xf1,0x14,0x5d,0x47,0xcc,0x8a,0x33,0xb2,0x10,0x15,0x19,0x5a,0x25,0x1c, 0x30,0xe7,0xf3,0x15,0x9b,0x30,0x1e,0x5c,0x89,0x6e,0xe4,0x9,0x0,0xd,0xf2,0x67, 0xb8,0xe7,0xdb,0x9a,0xbb,0x73,0x60,0xb1,0x2d,0xcb,0xf9,0x66,0xe1,0x51,0xcf,0x96, 0xff,0x0,0x34,0x6c,0xc3,0x0,0xf4,0xe7,0xb9,0x3f,0x95,0x54,0xbd,0xb2,0xba,0x86, 0x37,0x9e,0xdc,0x41,0xb0,0x6c,0x49,0x19,0x65,0x2c,0x4a,0x96,0x52,0x30,0x8,0x1d, 0xd6,0xb3,0x85,0x8e,0x39,0x52,0x92,0x77,0x25,0x96,0xe2,0x10,0x77,0x94,0x5f,0x32, 0x45,0xc,0xe0,0x64,0x2,0xd8,0xa4,0x8a,0xde,0xce,0xe2,0xca,0xee,0x4b,0xb5,0x31, 0x25,0xd2,0xed,0x23,0x3c,0x60,0x2e,0x38,0xc7,0xe3,0x54,0x8b,0x6,0x67,0x77,0x90, 0x4,0x3,0xe6,0x24,0x13,0x81,0xd0,0x70,0x3f,0xa,0x47,0x92,0x28,0xac,0xfc,0x98, 0x19,0xe5,0x51,0x90,0x88,0xe0,0xf5,0x3d,0x71,0x55,0x28,0xdd,0xd9,0x33,0x28,0xc9, 0xc1,0xdd,0x8f,0x9a,0xf3,0x4d,0x79,0x5c,0x4f,0x29,0x6,0x49,0x5d,0xdc,0xec,0xe7, 0x2c,0xc4,0xf5,0xaa,0x8d,0xa2,0x3b,0x93,0x71,0xa5,0xdf,0x47,0x33,0x2f,0xcc,0x23, 0xc7,0x96,0xd8,0xf4,0xe,0xf,0x5f,0xca,0xb3,0xee,0xe0,0x29,0x2b,0x49,0x35,0x8c, 0xf1,0x23,0x3f,0x49,0x43,0x28,0xff,0x0,0xbe,0x88,0xc1,0xa5,0xb3,0x32,0x6f,0x2d, 0xa7,0x44,0x57,0x1f,0x29,0x95,0x58,0x61,0x7d,0xb7,0x76,0xfc,0x2b,0xa1,0x53,0xe5, 0x57,0x8b,0xd4,0x72,0xab,0x29,0x3d,0x46,0xc9,0x79,0xa9,0x5b,0x2,0x65,0x97,0x53, 0x84,0x2f,0xde,0xc,0x64,0xe3,0xea,0x69,0x23,0xd4,0x95,0xcf,0x96,0x66,0x86,0x47, 0x3c,0xfc,0xe9,0xe6,0x1f,0xd3,0x27,0xf3,0xad,0x9b,0x6d,0x65,0xed,0xed,0x8c,0x73, 0xc9,0x35,0xcc,0xa0,0x1f,0x9b,0xce,0x55,0xb,0xec,0x8,0xe6,0xa4,0x83,0x5e,0x9d, 0xf1,0x14,0x37,0x76,0xab,0x33,0xe,0x23,0x5b,0x39,0x5d,0xbf,0x4e,0x4f,0xeb,0x50, 0xea,0x4b,0x67,0x11,0x24,0x55,0x86,0x3b,0xfb,0xc8,0x80,0x8f,0x4d,0x92,0x68,0xff, 0x0,0x84,0x9c,0x46,0x3f,0xc,0x9e,0x9f,0x85,0x6e,0x5a,0x58,0x5b,0x58,0xc1,0x1b, 0x5c,0x1,0x14,0xc7,0x9f,0x2d,0x5c,0xb7,0x3e,0x99,0xaa,0xc2,0xe2,0xe3,0xc9,0x27, 0x50,0xb8,0x95,0x9b,0xaf,0xcb,0x68,0x62,0x63,0xf9,0xe0,0x55,0x8d,0x3e,0x5b,0x79, 0xff,0x0,0x78,0x12,0x7d,0xc7,0xb,0xba,0x40,0xbb,0x8f,0xe2,0x2b,0x9a,0xac,0xa5, 0x25,0xb5,0x8d,0x60,0xd4,0x59,0xa7,0x26,0x1a,0x20,0x42,0xb4,0x59,0xed,0x8a,0x67, 0x25,0xe0,0xda,0x73,0x99,0xa3,0x5e,0xbd,0x41,0x75,0xab,0x25,0x24,0x55,0xa,0xd9, 0x5c,0x74,0xaa,0xc8,0x31,0x79,0x6a,0x4a,0x90,0xdf,0x6b,0x80,0x72,0x7a,0xfe,0xf5, 0x6b,0x86,0x34,0x54,0xa7,0xb9,0xeb,0xd3,0xc5,0x26,0xad,0x62,0x26,0x64,0xba,0xfb, 0x58,0x2e,0x54,0xa5,0xed,0xc0,0xe,0xbc,0x11,0x89,0x9f,0xfc,0x2a,0x3b,0xbb,0x76, 0x6d,0x8e,0x92,0x16,0x94,0xf4,0x62,0x31,0x91,0xdf,0xa0,0xa8,0xac,0xa5,0x95,0x7c, 0xf6,0x47,0xc6,0xfb,0xcb,0x93,0x91,0xdf,0xf7,0xf2,0x55,0xcf,0xb5,0x4e,0x40,0x2c, 0xf8,0x0,0xf2,0x71,0x8f,0xce,0xb5,0x92,0xf7,0x9d,0x8c,0x27,0x3b,0xe8,0xc6,0xdb, 0xc0,0xca,0x86,0x39,0x64,0x65,0xd,0xdd,0x7,0x4a,0xca,0xd4,0xad,0x20,0x8f,0xf7, 0x9e,0x63,0x15,0x61,0xb5,0xcf,0x23,0x39,0xf6,0xab,0xf7,0xb2,0xde,0xf9,0xc,0x4, 0x91,0x38,0x4,0x1c,0xab,0x60,0x60,0xff,0x0,0x3f,0xa5,0x62,0xdd,0x6a,0xf2,0x2c, 0x2e,0x93,0x5b,0xc3,0x23,0x21,0xdc,0xb,0x10,0xca,0x7,0xa9,0xf4,0xc5,0x69,0x4e, 0x32,0x72,0xb9,0xc7,0x57,0x46,0x36,0x68,0xae,0xaf,0x92,0x39,0x23,0x96,0x59,0x46, 0x76,0xaa,0xb4,0xc5,0x46,0x7d,0xb2,0x45,0x6b,0x59,0x69,0xb7,0xc9,0x3,0x47,0x75, 0x33,0x87,0x27,0x8c,0xb1,0x6d,0xa3,0xd3,0xad,0x72,0xce,0x6f,0xee,0xd5,0x7,0xd8, 0xaf,0x44,0x1f,0x79,0x5f,0xec,0xec,0x8a,0xc7,0xb1,0xcf,0xa7,0xa6,0x6b,0x72,0xde, 0xe2,0xfb,0x49,0x89,0x17,0x50,0x91,0xc5,0xbc,0x8a,0xa,0x48,0x5c,0xc8,0x14,0xfb, 0xb7,0x6a,0xd6,0xac,0x74,0xd0,0x23,0xa9,0x75,0xae,0x26,0x8c,0xc4,0xa8,0x77,0x22, 0x9c,0x32,0x11,0xc7,0xa5,0x6a,0xd9,0x4a,0x5e,0xdf,0xe7,0x5d,0x8c,0xbd,0xb1,0x81, 0x8a,0xad,0x13,0x19,0x13,0x72,0xb2,0x10,0xe3,0x76,0xec,0xf0,0x3f,0x10,0xd,0x4c, 0xf3,0xbc,0x4d,0xb2,0x48,0xcb,0x21,0x50,0x3c,0xd8,0xce,0x71,0x9f,0x6a,0xe6,0x9b, 0x4c,0xb5,0xa1,0x61,0x97,0xaa,0xe1,0x48,0x3e,0xbd,0xeb,0x9c,0x9d,0xae,0x6d,0xa6, 0x9a,0x38,0xd6,0x38,0x41,0x7,0x2d,0x9c,0x6,0x1e,0x98,0xe7,0xf3,0xc7,0x15,0xbc, 0xf3,0xa2,0x4b,0xb1,0xdc,0x80,0x14,0x12,0xdd,0xbf,0x3a,0xa9,0x2e,0xa1,0x64,0xb, 0x94,0xcb,0xb9,0x1c,0xed,0xe0,0xe3,0xeb,0xdb,0xf3,0xa2,0x17,0x5a,0x7,0x52,0xac, 0xb6,0x97,0x77,0x43,0x50,0x96,0xea,0x11,0x7,0x9e,0x85,0xc2,0x99,0x3,0x93,0xf2, 0xe3,0x19,0xce,0x7a,0x1,0xfe,0x15,0x67,0x5f,0xd3,0xcd,0xef,0x88,0x26,0x11,0x38, 0x57,0x8f,0x4e,0xb6,0x55,0xc,0x38,0xfb,0xf2,0x9e,0x6a,0x1,0x7b,0x14,0x96,0x52, 0xb4,0x6a,0xdf,0x36,0x76,0xb3,0x75,0x27,0x20,0x56,0x8e,0xa7,0x70,0x96,0xbe,0x24, 0xd4,0xa5,0x95,0xc2,0x45,0x15,0x9d,0xb0,0x2e,0x7b,0x7f,0xac,0xfd,0x79,0xad,0xe1, 0x29,0xa8,0xb6,0x8e,0x9a,0x7f,0xe,0x86,0x3d,0xbd,0x96,0xc7,0x57,0x5c,0xdb,0xb8, 0x23,0x77,0x96,0xcd,0x86,0xc7,0xd0,0x8c,0xd6,0xc1,0x8d,0x66,0x62,0x87,0x3e,0xd8, 0xe6,0xab,0x58,0x5f,0x5b,0x5f,0xb4,0xc8,0x93,0xcb,0x94,0xc7,0x28,0xc0,0x13,0x9f, 0x50,0x6a,0x19,0xa7,0x96,0xd5,0x9e,0x45,0x67,0xa,0x99,0x5,0x89,0x50,0x48,0xfd, 0x6b,0x29,0x26,0xde,0x87,0x3f,0xb5,0x71,0x7e,0xf0,0xdb,0x8b,0x48,0xdc,0x91,0xba, 0x1d,0xea,0x7e,0x66,0x73,0xb4,0x77,0xe4,0xe7,0xe9,0x59,0x56,0xf6,0x97,0x76,0xf7, 0x2,0x5f,0xb4,0x5b,0x4d,0x19,0x6c,0x32,0x15,0x8f,0x66,0xd3,0xd7,0x20,0xa8,0xe3, 0xea,0x45,0x4c,0x75,0xe6,0x53,0x8b,0xab,0x5b,0x6b,0xc8,0xdc,0x15,0x5,0xb0,0x92, 0x73,0xd0,0x67,0x18,0x3f,0xa5,0x5d,0xd3,0x7f,0xb1,0x35,0x48,0x64,0x4b,0x27,0xf2, 0xe7,0xc,0x47,0x92,0xe4,0x9,0xa3,0xc7,0xa1,0xe7,0x8f,0xc4,0x8a,0xab,0xd4,0xa6, 0xb5,0x47,0x4f,0x2d,0x3a,0x8a,0xe9,0x95,0x2e,0xf4,0xcf,0xf,0xde,0xc9,0xe5,0x1b, 0x6b,0x48,0x33,0x9d,0xb2,0x59,0xdb,0x8,0xce,0x7d,0xfa,0x86,0x1f,0x86,0x2b,0x9b, 0xd5,0xbc,0x19,0xa8,0x48,0x31,0xa4,0xdd,0xda,0xea,0x89,0x80,0x5e,0x18,0xdb,0xca, 0x71,0xee,0x55,0x9b,0x7,0xf3,0x15,0xb9,0xac,0x47,0x73,0x4,0x9f,0x62,0xb0,0x43, 0x71,0x37,0x6,0x40,0xbb,0x46,0xdf,0x5c,0x9c,0xe3,0xf9,0x57,0x26,0x8d,0x2d,0xad, 0xe3,0x19,0xae,0xe1,0xb6,0x2a,0xc5,0x7f,0x76,0xf9,0x2c,0xde,0x80,0xf4,0xfc,0x79, 0xae,0xec,0x34,0x67,0x7e,0x78,0xbf,0xbc,0xe5,0x7e,0xd1,0x3b,0x58,0x91,0x74,0xcf, 0x14,0xe9,0x96,0xa9,0x1,0xd3,0x75,0x24,0xb7,0x1c,0x18,0xad,0xa4,0xd8,0xaf,0xee, 0xde,0x5b,0x12,0x7b,0x72,0x4d,0x56,0x96,0x69,0x90,0xc9,0xf6,0xab,0x4b,0xdb,0x4b, 0x82,0xa4,0x44,0xb7,0x5,0xf7,0x73,0xd0,0xa9,0x90,0x8e,0x33,0xe9,0x5b,0x91,0xc9, 0x69,0xa8,0xa2,0x9,0xf5,0x3d,0x46,0x19,0x1d,0xf6,0xa3,0x41,0x7a,0x18,0xb9,0xf5, 0xd8,0x63,0x3,0x1e,0xb5,0x66,0x1f,0xf,0x78,0x76,0xc2,0xe8,0x1b,0x9b,0x8d,0x56, 0xf2,0x57,0xc1,0xfd,0xe8,0x42,0x0,0xc8,0xf9,0xb6,0xaa,0xf4,0xfa,0xe6,0xb6,0x55, 0x79,0x5d,0xe6,0x8a,0x77,0x7b,0x9c,0xd0,0xbe,0xbc,0xb6,0xb3,0x52,0xf2,0xfc,0xf8, 0xe5,0xc1,0x56,0x19,0xed,0x9d,0xdd,0xeb,0x42,0xc7,0x58,0xd6,0x2e,0x16,0x33,0x11, 0x36,0x76,0xeb,0xcc,0xb3,0x46,0x54,0xf9,0x87,0xd7,0x91,0x8c,0x7e,0x78,0xae,0xae, 0x4b,0x5d,0x39,0xef,0x96,0x28,0x34,0x23,0x74,0x40,0xc3,0xc9,0x1c,0x1,0x14,0xe4, 0x9c,0x65,0x46,0x14,0x9e,0xbd,0x40,0xaa,0xf7,0xfa,0x3d,0xb6,0x9f,0x2f,0xda,0xe6, 0xb7,0x85,0x50,0x9d,0xab,0x15,0xae,0x9f,0x3,0x18,0xfe,0xa0,0x30,0xc9,0xfc,0xea, 0x65,0x5e,0xd,0x7c,0x6,0x7b,0x3d,0x45,0xb0,0xd0,0xd2,0xee,0x58,0xee,0xaf,0x8, 0x78,0xc6,0x1d,0x5e,0x37,0x52,0x1c,0xfb,0x98,0xce,0x31,0xf5,0xab,0x17,0x1e,0x15, 0x82,0x7b,0xb9,0x75,0xd,0x22,0xe7,0xec,0x77,0x4c,0xc3,0xcd,0x8a,0x3f,0xb8,0xe7, 0x23,0xb0,0x38,0x15,0x1c,0x4b,0x69,0x6e,0xa8,0xcb,0x7b,0x6b,0xe7,0xdc,0xc,0x45, 0x14,0x91,0x79,0x62,0x46,0xc6,0x42,0x9e,0x4f,0x53,0xc7,0xe3,0x53,0xd8,0xf8,0x84, 0xc1,0x17,0x9e,0xf6,0xcb,0x1a,0x83,0xf3,0xc3,0x14,0x1b,0x36,0x91,0xd7,0x8e,0xb9, 0x18,0x35,0xc5,0x3e,0x76,0xf4,0x35,0x8b,0x45,0xc8,0xa5,0xb5,0xd2,0xd6,0x24,0xd4, 0x5d,0x1e,0x6e,0x4e,0xe4,0x24,0x8e,0x7b,0x60,0xff,0x0,0x4c,0x55,0xe1,0x70,0xf2, 0x5e,0x48,0xc6,0xe5,0x61,0xb7,0x8c,0x6,0x45,0xe,0x3e,0x62,0x7a,0x12,0x7d,0x3d, 0xab,0x8f,0x74,0xfb,0x56,0xb1,0x3c,0xfe,0x66,0xf8,0xa6,0xfd,0xf4,0x5e,0x6f,0x1f, 0x21,0xce,0x14,0xe7,0xd0,0x83,0x5d,0xd,0x8a,0xdd,0x4a,0x11,0x15,0x4,0x6a,0x89, 0xf3,0x48,0xf1,0xe0,0x60,0x63,0xa0,0x24,0x13,0xf5,0xac,0x2a,0x45,0x25,0x76,0xcb, 0xa3,0x39,0xc9,0xb8,0xa5,0xa1,0xb3,0xe7,0x4b,0x24,0x83,0xc,0x1c,0x63,0xf8,0x70, 0x73,0x51,0xcf,0x3c,0xb1,0x11,0xe5,0x3c,0x21,0x40,0x6,0x55,0x95,0x80,0x4,0x7a, 0xf,0x7a,0x1e,0xe9,0xed,0xe2,0x4,0x42,0x65,0x76,0x38,0x56,0x46,0xc2,0x9f,0xa9, 0xed,0xf9,0x56,0x47,0x91,0xb,0x5e,0xbd,0xe6,0xa9,0x62,0xb1,0x46,0xad,0x95,0x63, 0x2e,0x57,0x77,0xe2,0x7f,0xc2,0xb1,0xdd,0x5c,0xea,0xa5,0x4a,0xd2,0xf7,0x8d,0x28, 0xa6,0x5d,0xcd,0x30,0x5,0x22,0x3c,0xf2,0xbb,0x86,0x3e,0xbf,0xfd,0x6a,0x6c,0x57, 0x7f,0x67,0x98,0x5b,0xad,0xbc,0xbe,0x5c,0x9f,0x32,0x4,0xf9,0x81,0xfa,0x55,0x16, 0x69,0xa5,0xbb,0x17,0x36,0xfa,0xa0,0x68,0x0,0xcf,0x93,0xe5,0xae,0x7e,0x99,0xce, 0x8,0xfa,0x55,0xb3,0xd,0xcc,0xc8,0x50,0x4c,0x96,0xd1,0x31,0xcf,0xee,0x63,0x1, 0xbd,0xfb,0x8a,0xe5,0x52,0xe4,0x9f,0x33,0x7b,0x9d,0x53,0xa6,0x9a,0x2f,0xaa,0x8b, 0x85,0x7c,0x90,0x7d,0x6,0x3e,0xe9,0xf7,0xf7,0xaa,0xca,0xad,0x13,0xb8,0x58,0xc8, 0x62,0x39,0xe7,0x81,0xef,0x55,0xac,0xcc,0x71,0xb3,0x47,0x15,0xcd,0xc5,0xcb,0xa1, 0x2b,0xb4,0x21,0xb,0xef,0x93,0xdc,0xfb,0xd5,0xb6,0x70,0xd2,0x72,0x19,0x78,0xdb, 0x85,0xe8,0xd,0x6d,0x56,0x2a,0x51,0x32,0x82,0x71,0x64,0x12,0x5c,0xb,0x79,0x64, 0x92,0x58,0x58,0x10,0xa1,0x46,0xd2,0x9,0x3e,0xdd,0x6a,0x1b,0x86,0xbb,0xbd,0x31, 0xac,0x72,0x4d,0x6b,0x18,0xc9,0x70,0x8,0x57,0x63,0xc6,0x3a,0x74,0x1c,0x7a,0xf3, 0x9a,0xbe,0x8b,0xba,0x44,0x59,0x14,0x33,0x99,0x38,0xc8,0x1d,0x0,0x35,0x9f,0x7b, 0x7b,0x38,0xbb,0x68,0xe3,0x87,0x6a,0xc,0x7,0x20,0x0,0x32,0x46,0x6a,0xe8,0xd0, 0x4f,0x60,0x75,0x92,0x76,0x44,0x4e,0x2f,0x2d,0x4a,0x27,0x9d,0xe6,0x6,0xcf,0x12, 0x6,0x6c,0xfd,0x40,0x38,0xc7,0x4a,0xa3,0xc,0x93,0xac,0xe2,0x39,0x86,0xc8,0xc1, 0xea,0x22,0xc0,0x3e,0xc3,0xf3,0xa5,0x9b,0x52,0x70,0x18,0x12,0xb8,0x43,0x8f,0x97, 0x39,0x1f,0x4a,0x3f,0xb4,0xe1,0x98,0xa7,0xdf,0x76,0xf4,0x24,0xe3,0xf2,0xaf,0x46, 0x34,0xe4,0x96,0xc7,0x2c,0xab,0x4e,0x5a,0x32,0x48,0x23,0x4f,0xed,0x23,0x1b,0x17, 0x58,0xe5,0x42,0xb1,0xce,0x38,0x54,0x93,0x20,0x80,0x4f,0xa1,0xc5,0x69,0xd9,0xb1, 0x64,0x70,0xca,0x16,0x64,0x90,0xb9,0xe3,0xdb,0x4,0xf,0x6c,0xf3,0x58,0xc3,0x55, 0xdf,0x63,0x2c,0x45,0x8,0x44,0x94,0xaa,0x6,0x5c,0xf9,0x83,0x23,0x3b,0x7d,0xc1, 0x7,0xf2,0xcd,0x69,0xca,0x96,0xf2,0xde,0x9f,0xdf,0xca,0xb2,0x12,0xac,0xaa,0xe, 0x31,0xc7,0x38,0x23,0x82,0xe,0x47,0x15,0xc9,0x52,0xf7,0x3b,0xa9,0x42,0xd1,0xb3, 0x24,0xbc,0x9d,0x62,0xda,0xac,0xd1,0x89,0x9d,0x77,0x60,0xf5,0xc0,0x23,0x90,0x3f, 0x13,0x4d,0x8a,0xee,0x7c,0x2a,0xef,0x8d,0xa3,0xc8,0xa,0xc5,0x4a,0x91,0xf5,0xe7, 0x15,0xcf,0xdc,0xc3,0x32,0x6b,0x92,0x4d,0x67,0x77,0xf6,0xa1,0xc4,0x4e,0xaf,0x9, 0x5f,0x2c,0x3,0xd3,0x79,0xeb,0xd4,0xf4,0x15,0x3d,0x96,0xa1,0x10,0xbd,0x65,0x69, 0x32,0xac,0xe5,0x48,0x3,0x23,0x1c,0xf3,0x5a,0x2a,0x17,0x8d,0xce,0x5a,0x95,0xd4, 0x6a,0x72,0x9b,0x89,0xb4,0xca,0xfb,0x36,0x13,0x9e,0x4a,0x8e,0xa6,0xa1,0xf3,0x24, 0xba,0x90,0xc3,0x1c,0xb8,0xa,0xc7,0x7e,0xd3,0xe9,0xd4,0x67,0xd6,0xa3,0xb0,0x9e, 0x37,0x88,0xb8,0xb7,0xd8,0x24,0x4,0x82,0x1b,0xae,0xf,0x4e,0xd8,0xa4,0x82,0xce, 0x27,0xb6,0x96,0x39,0xb6,0x40,0x50,0x17,0xdf,0x1e,0x77,0x3,0xdd,0x89,0x1c,0x7a, 0x7a,0xd6,0x3c,0xa9,0x33,0xa6,0x12,0x4d,0x5c,0xb1,0x3b,0xdc,0x5a,0xc0,0xc2,0xce, 0xdc,0x30,0xa,0x48,0x2c,0x7e,0xe9,0xf5,0x39,0xef,0xed,0x58,0xf6,0xc5,0x2c,0xf3, 0x69,0xe6,0x10,0xca,0x77,0x6d,0xc7,0x3c,0x8e,0x4e,0xf,0xbe,0x69,0xab,0xa8,0x4f, 0x1b,0x47,0x5,0xcd,0xea,0x5d,0x2e,0xe3,0xe5,0x82,0x9b,0x98,0xf6,0xc3,0x28,0xe4, 0x1f,0xc2,0xa3,0xd5,0xed,0xf5,0xd,0x56,0x58,0x97,0xec,0xb1,0xee,0x85,0xc1,0xf3, 0xd6,0x12,0x92,0xf6,0xca,0xe4,0xb6,0x40,0x3f,0x4a,0xd6,0x94,0x75,0xd4,0xe7,0xc4, 0x7b,0xeb,0x94,0xd4,0xc,0xce,0xe4,0xdb,0xc8,0x8c,0x4f,0xa6,0x41,0xfc,0xaa,0x53, 0x25,0xca,0x4f,0x97,0x18,0x5c,0x70,0xea,0x72,0x9,0xac,0x57,0xb7,0x7b,0x9,0x21, 0xde,0x0,0x46,0xed,0xbc,0xf0,0x6a,0x75,0xba,0x84,0x4f,0xb9,0xe4,0x9c,0xaf,0x75, 0xe,0x40,0x35,0x72,0xa7,0x7d,0x51,0xc0,0xaf,0x1d,0xcd,0xc8,0xa7,0x13,0x1,0xbc, 0x20,0x23,0xb6,0x6a,0x2b,0xa5,0xb8,0xf2,0x43,0xda,0x8d,0xcc,0x1b,0xee,0x93,0x51, 0x45,0x75,0x11,0x4d,0xd1,0x91,0x1a,0xe,0x43,0x67,0x27,0xf3,0x34,0x96,0xb7,0x42, 0x6d,0x45,0x99,0x25,0x69,0x63,0x50,0x77,0xbe,0xd3,0xb5,0x78,0xee,0xdd,0x33,0xed, 0x58,0xb8,0xd8,0xf4,0x70,0xd3,0xe6,0x88,0xed,0x91,0x4c,0xcb,0x39,0x61,0x6d,0x37, 0x47,0x49,0x7a,0x35,0x5b,0x8d,0x9e,0x35,0x62,0x15,0x5c,0x2f,0xf0,0x96,0xff,0x0, 0xf5,0xfa,0x55,0x19,0x6f,0x34,0xe9,0x2e,0x4c,0x53,0x5c,0x5,0x20,0xf0,0xd2,0x29, 0x3,0xdb,0xa8,0xf6,0xab,0xaa,0x21,0x90,0x2e,0xfc,0x64,0x60,0x86,0xe9,0x95,0xec, 0x7d,0xfa,0x56,0x15,0x22,0xdd,0xae,0x76,0x74,0x34,0xfc,0x3,0x23,0x4b,0x26,0xa7, 0x2c,0x8e,0x8d,0x2b,0xf9,0x4c,0xca,0xa3,0x1b,0x78,0x6e,0x2b,0xb5,0xae,0x4f,0xc2, 0x36,0xcb,0x16,0xa7,0xaa,0x4d,0x11,0x5f,0x2d,0xe3,0x81,0x38,0x3f,0xc4,0xbe,0x66, 0x7f,0x98,0xae,0xb2,0xbd,0xcc,0x2b,0xbd,0x24,0x79,0xd5,0x7e,0x37,0x73,0xce,0x3e, 0x2c,0xe8,0x73,0x6b,0x96,0xba,0x64,0x76,0xf3,0xa4,0x32,0x46,0xd2,0x1d,0xcc,0xb9, 0x4,0x7c,0x99,0x1f,0xa5,0x79,0x9c,0xf6,0x37,0x7a,0x4c,0xc2,0x7,0x54,0x9e,0xd7, 0x68,0xe,0x40,0xe5,0x46,0x71,0x95,0xf7,0x19,0x1c,0xa,0xf5,0x9f,0x88,0xb3,0xbc, 0x72,0x69,0x71,0x26,0xf2,0x64,0xf3,0x78,0x50,0x79,0xc6,0xce,0x3f,0x5a,0xf3,0xcd, 0x46,0xf5,0x16,0xd1,0x50,0x84,0x9d,0xd5,0xf8,0x59,0x1b,0x29,0x9f,0x7f,0x5e,0xd5, 0x95,0x57,0x2e,0x79,0x2e,0x84,0xa8,0xc9,0xec,0x68,0xdb,0x2c,0x3a,0x86,0x9d,0x13, 0x5e,0x1,0x23,0x46,0x7c,0xb5,0x2f,0x9c,0xe0,0x81,0xbb,0x1c,0x3,0x83,0x55,0x1b, 0x41,0xbd,0xfe,0xd1,0x69,0x8d,0xdb,0x35,0xc1,0x25,0xe5,0x32,0xc6,0x36,0x4d,0x91, 0xb4,0xed,0xc7,0xdc,0xc7,0x40,0x3a,0x70,0x31,0x4e,0xd2,0x75,0x98,0x63,0xd1,0x79, 0xb5,0x75,0xba,0xce,0xdd,0x90,0x8c,0x26,0xfc,0xe0,0x5,0xc9,0x24,0xc,0xe2,0xb7, 0x63,0x9f,0x68,0xf2,0xe6,0xf9,0x9d,0x3e,0xf3,0x6,0xed,0xdf,0x1d,0xf3,0x9f,0x51, 0x5e,0x65,0x5a,0x8e,0x29,0xf6,0x2a,0x2a,0xa2,0xe8,0x52,0x8f,0x50,0xb4,0x4b,0x71, 0x6b,0x34,0xa5,0x48,0x73,0xca,0xae,0x57,0x7,0x9c,0xe7,0xa7,0x5a,0xb3,0x24,0x7e, 0x5b,0xec,0xf3,0x1d,0xa2,0xdb,0xc1,0xec,0x45,0x72,0xb7,0xcc,0xfa,0x75,0xf5,0xac, 0xd7,0x48,0xe4,0xb8,0x31,0x45,0x7b,0x11,0xfd,0xdc,0xdc,0x36,0xd5,0x90,0x1c,0x28, 0x3e,0xde,0xc7,0xad,0x5d,0xd0,0xf5,0xb,0xab,0xd8,0xcc,0x2c,0xb1,0xc5,0x26,0x47, 0xee,0x97,0x20,0x3,0xfd,0xe5,0xcf,0x63,0x8c,0xfe,0x55,0x95,0x5c,0x2b,0x71,0xe6, 0x89,0xd7,0x1a,0xb2,0x8c,0x92,0x7d,0x4d,0xa8,0xe4,0x88,0x46,0xf6,0xf2,0x4c,0xe8, 0xbd,0x43,0x6d,0x60,0x0,0xf7,0x24,0x62,0xb4,0x20,0x92,0x32,0x89,0xe5,0x30,0x79, 0x17,0x18,0x24,0xf6,0xf6,0xed,0x59,0xe6,0x5b,0x6d,0x88,0xc5,0xd7,0x74,0xad,0xe5, 0xc8,0x3f,0xba,0xfe,0x8c,0x47,0x41,0xef,0x42,0x58,0xdd,0xac,0x4c,0xb,0x2b,0xc0, 0xa4,0xfc,0xac,0xc0,0xf1,0xf5,0xc7,0xf5,0x35,0xc3,0x3a,0x12,0xeb,0xa1,0xaf,0x3c, 0x64,0x6a,0x13,0x32,0x1f,0x9d,0x9a,0x3c,0x8c,0xe4,0x81,0xfc,0xeb,0x2c,0x49,0x2c, 0x52,0xbc,0xad,0x67,0x22,0xc6,0x49,0x1b,0xd9,0x37,0x93,0xef,0xc6,0x71,0xf9,0x55, 0xc8,0xee,0xfc,0xbb,0x79,0x62,0x89,0xde,0x46,0x8d,0xc,0x89,0x9e,0x70,0x7f,0xbb, 0x9c,0x56,0x4c,0x67,0x5c,0x69,0x6e,0x4d,0xfd,0xc0,0x7b,0x39,0x53,0x1b,0x58,0x2c, 0x6c,0x87,0x3d,0x87,0x5e,0x80,0x8e,0xd9,0xfc,0x29,0x52,0xa1,0x36,0xee,0xbf,0x10, 0x8b,0x3,0x6f,0xd,0xad,0xca,0xbc,0x91,0xed,0x86,0x62,0x9b,0xdc,0xb1,0x23,0x69, 0x71,0xb8,0x1c,0xf3,0xe9,0x57,0xf5,0x0,0xf6,0x6d,0x2c,0xd1,0x69,0xe2,0x48,0x90, 0xa8,0x8e,0x48,0x98,0x67,0x5,0x79,0x20,0xe,0xa3,0x35,0x56,0xee,0xf0,0x5b,0xdf, 0xc6,0xd2,0x5b,0xa4,0x96,0xc,0x98,0x12,0xae,0x1d,0xb8,0xc7,0xf0,0xe4,0x91,0xc9, 0x2,0xa8,0x58,0xdc,0xea,0x56,0xea,0xd3,0x41,0x6e,0x16,0x34,0x3b,0x5e,0x2d,0xc5, 0x82,0x83,0xc8,0xdd,0x8e,0xdf,0xca,0xb5,0x95,0x39,0x35,0xcc,0xcd,0x22,0xb9,0x99, 0x62,0xdf,0x54,0x79,0x2d,0x1d,0xed,0xb5,0xa8,0xfc,0xcc,0xe5,0x44,0x89,0x83,0x9f, 0x4e,0x41,0xfd,0x2a,0xe4,0x56,0x32,0x44,0x13,0xcf,0xd,0x71,0x77,0x37,0xef,0x25, 0x9e,0x48,0xbe,0x50,0x71,0xdb,0xa7,0xa0,0xa8,0x45,0xe6,0x94,0xd7,0x5,0xef,0x34, 0xdf,0x2a,0xeb,0x1b,0x98,0x2c,0x3b,0xcf,0xd4,0x63,0xfa,0xd0,0xda,0xb4,0x32,0x46, 0x17,0x4f,0xbe,0xbb,0x79,0xc4,0x80,0x18,0xde,0xdd,0xc0,0x4f,0xa9,0xc6,0x31,0x53, 0x25,0x29,0x69,0x8,0xd8,0x52,0x9d,0xb5,0xd8,0xbd,0x7f,0x28,0x8a,0x8,0x21,0x24, 0xc7,0xe7,0x39,0xd,0x91,0x8c,0x80,0xe,0x47,0xf2,0xac,0x89,0xb5,0xab,0xef,0x35, 0x5,0xab,0xa4,0x51,0xaa,0x93,0xbe,0x54,0xce,0xef,0x6c,0x3,0xd3,0x8f,0xe5,0x56, 0x16,0x29,0xb,0x4e,0xd7,0x37,0x3f,0x69,0x94,0x40,0xef,0xbd,0x91,0x40,0x7,0x80, 0x4f,0x1d,0x7a,0xd5,0x9,0x65,0x98,0x34,0x91,0xa5,0xc4,0x86,0x32,0xbb,0x36,0xa2, 0xae,0x8,0xfc,0x47,0xb9,0xae,0xcc,0x3e,0xf,0x45,0xcc,0x71,0xd4,0xc5,0x72,0xab, 0x44,0xb3,0xa7,0x6a,0x0,0xde,0x26,0x9d,0xaa,0x95,0x69,0x1d,0xbf,0x73,0x3b,0xfc, 0xa2,0x5f,0x62,0x7f,0xbc,0xe,0x31,0xeb,0xf8,0x54,0xd7,0x1a,0x85,0xb5,0xa5,0xdc, 0xb1,0x5f,0x5a,0x2c,0x13,0x2,0xe,0xf8,0x89,0xc1,0xf7,0x38,0x1e,0xd5,0x4a,0xb, 0x4b,0x6d,0x41,0xa5,0x6b,0xc8,0x44,0xb0,0xb2,0xaa,0xae,0x1d,0x80,0x42,0x9,0x27, 0x2b,0xd0,0xf6,0xab,0x10,0xe9,0x52,0xda,0xc9,0x23,0x59,0x95,0xdc,0xdc,0x2b,0x12, 0x32,0xa3,0x1d,0x79,0x1e,0xdd,0xb1,0x45,0x5c,0x24,0x1c,0xf4,0x2e,0x86,0x21,0x4a, 0x37,0x99,0xa2,0xb7,0xf0,0x5c,0x44,0x5e,0x19,0x4f,0x97,0xd4,0x48,0xc8,0x40,0x1f, 0x8e,0x31,0x51,0xdc,0x6b,0x2d,0x1c,0xd0,0xc1,0x3,0xc7,0x73,0x70,0xea,0xcc,0xc4, 0x48,0xa,0xa8,0x18,0xcf,0x4e,0x7a,0x67,0xf2,0xae,0x6e,0xe7,0xed,0x4b,0x76,0x1a, 0x7b,0x99,0x4e,0x1c,0xfc,0x84,0x82,0x17,0xf0,0x0,0x67,0xf1,0xab,0x56,0x50,0x89, 0x96,0xef,0x7c,0x6b,0x2b,0x98,0x5d,0xd4,0xb8,0xc9,0xc8,0x1c,0x7f,0x3e,0xd5,0x92, 0xcb,0xfa,0xb7,0xa0,0x3a,0xf4,0xf6,0x46,0xfe,0x9c,0xd2,0x6a,0x30,0x89,0x9e,0xf4, 0xee,0x53,0xca,0x8,0xb,0x0,0x3e,0xab,0xfd,0x69,0x2f,0x35,0x48,0xc5,0xe4,0x76, 0x90,0x97,0x57,0xdf,0xb5,0xc3,0x21,0x3,0xd0,0x64,0x13,0xdc,0x91,0x51,0xe8,0xda, 0x7b,0x25,0xb0,0x9f,0xed,0x37,0x36,0xee,0xfc,0xa8,0x8a,0x44,0xdb,0xb7,0xb7,0x54, 0x27,0xf5,0xa8,0xae,0x6c,0x63,0x8a,0xf6,0x29,0xc,0xf7,0x2c,0xcf,0x71,0x19,0x3b, 0x9c,0x32,0x93,0xb8,0x72,0x46,0x7,0xa0,0xad,0xfe,0xab,0x45,0xc9,0x5b,0xa1,0x9b, 0xac,0xf7,0xb0,0x69,0xda,0x12,0xdb,0x6a,0x17,0x12,0x69,0xfa,0x83,0xdb,0xcf,0x36, 0x4b,0xc3,0x2a,0xab,0xa6,0xff,0x0,0x54,0xfa,0x75,0xc5,0x25,0x94,0x17,0xb0,0x4e, 0x20,0x9b,0x51,0xb4,0xbd,0xb8,0x49,0x81,0x96,0x68,0x18,0xb0,0x21,0x9b,0x1b,0x4f, 0x40,0x8,0xe4,0xfe,0x95,0x3d,0xa2,0xfd,0x99,0x6d,0xe3,0x55,0x76,0x67,0xdc,0x36, 0x8e,0x7f,0x81,0x98,0x9f,0xd0,0xd5,0xad,0x32,0xb,0x3b,0x7b,0x5b,0x24,0xb3,0xf3, 0x7c,0xa2,0xac,0xdb,0x78,0x1c,0x8c,0x64,0xfd,0x7e,0x61,0x5b,0x38,0xc5,0xa7,0x74, 0x38,0x54,0x94,0xb7,0x35,0x16,0x2,0xf2,0xfc,0xc1,0x42,0x29,0xe1,0x57,0xe6,0xcf, 0xf9,0xcd,0x43,0x15,0xa2,0x2e,0xa6,0xd2,0x84,0xc9,0xc0,0x47,0xb,0xc6,0xe5,0xda, 0xb9,0xfd,0x6a,0xd4,0x52,0x79,0x6d,0x92,0x24,0xcf,0xba,0x8e,0xdf,0x8d,0x24,0x4c, 0x11,0xda,0x4d,0xc7,0x2d,0x9e,0x36,0x13,0xe9,0xfe,0x14,0xa9,0xc5,0x43,0x44,0x36, 0x99,0x16,0x93,0xc,0xfa,0x35,0x90,0xb5,0xb8,0xf9,0xed,0xd4,0x90,0xb3,0x81,0xc7, 0x5e,0x1,0x19,0xe0,0xd5,0x4d,0x42,0xf,0xed,0xb,0xb9,0xa6,0x85,0xa2,0x1,0xa3, 0x44,0xdc,0xcd,0xc9,0x2a,0x49,0xe9,0xf8,0xd6,0xe2,0x30,0x72,0x1b,0xcc,0x58,0xc7, 0x43,0x80,0x49,0xfc,0x88,0xa9,0x44,0x36,0xe7,0xa5,0xdd,0xd7,0xd0,0xaa,0x8f,0xfd, 0x96,0xb5,0xb3,0xde,0xe6,0x6e,0x2c,0xe2,0xf5,0xb,0x6f,0x2e,0x32,0x27,0x9,0x86, 0x43,0xf3,0x29,0x3,0x23,0x8e,0x2b,0x99,0xbc,0x9c,0xc9,0x3,0xa4,0x51,0x24,0x81, 0x86,0x8,0xe,0x13,0x1f,0x52,0x6b,0xd0,0x35,0x2d,0x12,0x3b,0xa9,0xb,0xac,0xd7, 0xad,0x1f,0xa8,0x75,0xfd,0x17,0x6d,0x73,0x37,0x5e,0x1b,0x8a,0x79,0x76,0xb,0x7b, 0xd9,0xf7,0xe,0xf,0x9c,0x10,0x2f,0xd7,0x3,0x19,0xad,0xe8,0x55,0x8a,0x7e,0xf1, 0xc1,0x3a,0x4d,0x4a,0xe8,0xe0,0xe2,0x92,0xf2,0x1b,0x89,0x9f,0x6c,0x8a,0x54,0x1e, 0x51,0x95,0x81,0xc7,0x1e,0xbd,0x3a,0x70,0x2b,0x4a,0xdf,0x5b,0x8e,0xde,0xc2,0x19, 0x12,0xfa,0xee,0x4b,0x99,0x1b,0x12,0x1,0x6a,0xd1,0xe0,0xe3,0x24,0x6e,0x2c,0x41, 0x1d,0xb8,0x15,0xb8,0xde,0x17,0x82,0x5,0x5f,0x33,0x4a,0xb9,0x8b,0x63,0x31,0x92, 0x54,0xb9,0x79,0xb,0x2f,0x3f,0xc3,0xb7,0x1d,0xfb,0x7a,0x56,0x7c,0x3a,0x16,0x99, 0x79,0x9f,0xb2,0xc8,0xdb,0xb2,0x47,0x28,0xd9,0xfc,0x89,0xc0,0x35,0xde,0xeb,0x53, 0x99,0x3e,0xcd,0x27,0xa0,0xc9,0xbe,0x21,0x4f,0x64,0xa6,0x1b,0xd,0xd,0x9e,0x46, 0x3,0xe7,0x91,0x8a,0x97,0x72,0x3b,0x2a,0x83,0x9e,0xb4,0xdb,0xd,0x43,0xc4,0xa5, 0xad,0x24,0x7f,0xd,0xbc,0xa5,0xc7,0x96,0x91,0x8,0x1b,0x38,0x2c,0xc7,0x27,0xa7, 0x23,0x38,0xe7,0xd2,0xad,0x8d,0x1,0x2c,0xe7,0x8d,0xcc,0xb2,0xc3,0xb0,0xee,0xde, 0xaa,0x5b,0x4,0x72,0xbc,0x67,0x3e,0xbd,0xd,0x40,0xc8,0xb7,0x57,0xa2,0xc2,0x3d, 0x6e,0xe9,0x6e,0x64,0x7c,0xc6,0xe4,0x4b,0x12,0xaf,0x4,0x93,0xf3,0x30,0xf7,0x1d, 0x6a,0x1c,0x69,0x7d,0x93,0xa2,0x16,0xe5,0xd4,0xd3,0x79,0x35,0x89,0x71,0x1d,0xc4, 0x76,0xda,0x5c,0x40,0xb7,0x9c,0xf3,0x48,0xaa,0xaa,0x6,0x33,0x93,0x93,0x93,0x93, 0xd0,0x73,0x55,0xf5,0xb,0x9d,0x27,0x50,0x76,0xb4,0xb5,0x9a,0x7b,0x97,0xce,0xd2, 0x60,0x90,0x2a,0xb3,0x76,0xc6,0x57,0x27,0xf1,0xc5,0x40,0x9e,0x0,0xb3,0xc1,0x93, 0x56,0xbd,0xba,0xbf,0xd9,0x92,0xb0,0xc0,0x76,0x45,0x9c,0x9e,0xb2,0x31,0x66,0x62, 0x7a,0xe4,0x62,0xa3,0x9b,0xe1,0xf3,0x24,0x50,0x49,0xa3,0x5e,0x4d,0x1c,0x64,0xed, 0x92,0xb,0xd6,0xc,0x62,0x61,0x93,0x90,0xe9,0x8c,0xfe,0x23,0xb5,0x66,0x9d,0x3b, 0xd9,0xbb,0x11,0x37,0x17,0xb1,0xa4,0xd6,0x5a,0x6,0x8c,0x92,0xff,0x0,0xc4,0xca, 0xf8,0x5e,0xce,0xaa,0x8f,0x21,0xba,0x55,0x6c,0x71,0xc1,0x27,0x81,0xd3,0xa5,0x2e, 0x8f,0x7d,0xa4,0x5d,0x47,0x74,0x96,0xda,0xc5,0xe5,0x95,0xd8,0x5f,0x2f,0x37,0x5b, 0x5f,0xae,0x39,0x53,0x8e,0x7a,0x7a,0xd6,0x6d,0xcf,0xc3,0x1b,0xc1,0x18,0x92,0x6d, 0x50,0x4b,0x12,0xae,0x4a,0xa4,0x25,0x4f,0xe6,0x49,0xcd,0x47,0x77,0xa0,0xdc,0x5b, 0xe9,0x73,0xc2,0xd6,0xef,0x2b,0x16,0x51,0x15,0xcc,0x8e,0x48,0x53,0xb4,0x70,0x7f, 0xe,0x9d,0x3a,0xd2,0xb5,0x39,0x2d,0x24,0x66,0xd1,0xda,0x5b,0xda,0x5f,0xd9,0xd8, 0xdc,0x34,0x37,0x31,0xdc,0xfc,0xe3,0xcd,0x10,0x72,0x41,0x18,0xce,0x1,0xe0,0xf1, 0xce,0x2b,0xca,0x35,0x1d,0x3a,0xef,0x46,0xd6,0xe5,0x8a,0x38,0xee,0x9d,0x63,0x6d, 0xe0,0xb4,0x4,0x67,0x3d,0xfe,0x52,0x47,0xff,0x0,0xaa,0xbb,0x7d,0xa,0x6b,0x9d, 0x33,0x45,0x43,0x2c,0x17,0x25,0x95,0xb7,0xa8,0x8b,0x92,0x1b,0xa6,0x46,0x7a,0xe4, 0x62,0xb6,0xbf,0xb5,0xac,0xe5,0x13,0x4b,0xa8,0xa2,0x5b,0xa4,0xc,0x91,0xf9,0x92, 0x7c,0xa1,0x8b,0x1e,0x9b,0x47,0x7e,0xa6,0xb3,0x85,0x49,0xd1,0x6f,0x4e,0x64,0xc8, 0xb2,0x39,0x2d,0x16,0xea,0x5d,0x6f,0x30,0x18,0x2e,0xe2,0x95,0x3e,0xf1,0xf2,0xe4, 0xa,0x7f,0x11,0xfd,0x6b,0xad,0x8b,0x49,0x72,0x82,0x2f,0xb2,0xcd,0x20,0x19,0x1d, 0x50,0x3,0xf9,0xb5,0x55,0xd4,0x3c,0x5f,0xa4,0xe9,0x9a,0x9c,0x56,0x9f,0x65,0x8a, 0xfa,0x16,0x19,0x92,0x4b,0x6c,0x39,0x87,0x9c,0x74,0xc7,0x3d,0x33,0xd6,0xa1,0x3e, 0x2f,0xb4,0x37,0x4,0xaa,0x2c,0x63,0x7b,0x2a,0x49,0x23,0x10,0x19,0x41,0xe0,0xed, 0x3c,0x8c,0x8e,0xd5,0x35,0x1d,0x59,0xea,0xa3,0x64,0x43,0xb2,0x26,0xbb,0xb5,0xb4, 0xd1,0x8d,0xc3,0x18,0xef,0xad,0xa4,0x92,0xd5,0xc4,0x2b,0x6e,0x85,0xc9,0x98,0x60, 0xae,0x71,0x91,0x8e,0x4e,0x6a,0xc4,0x57,0xda,0x76,0x9b,0x6e,0x64,0x3e,0x61,0x60, 0xc5,0xc2,0x95,0xdb,0x86,0x23,0xa0,0x1d,0x79,0xc5,0x46,0x25,0x5b,0x98,0xa5,0x9a, 0xd6,0xd0,0x4d,0x30,0x42,0xfb,0x55,0x4a,0xee,0xf6,0xcf,0x5a,0xc2,0xb8,0xf2,0x27, 0xba,0x59,0xde,0x29,0xed,0x95,0x0,0xc4,0x53,0xee,0xf9,0x73,0xd4,0xfa,0xe2,0xb3, 0x8c,0x14,0xf4,0x91,0x5c,0xd7,0x56,0x46,0xfd,0xb6,0xad,0x6f,0x7d,0xab,0x5b,0x9f, 0x2b,0xf7,0x2f,0xd1,0xc7,0x42,0x59,0x4a,0x9c,0xfa,0x70,0xd8,0xad,0xf8,0x91,0x2d, 0xe6,0x28,0x23,0xd9,0x10,0x18,0x5d,0xce,0x31,0xf8,0x57,0x37,0xa2,0xe9,0xb6,0xb2, 0xde,0x44,0x8a,0x97,0xad,0x2,0xb9,0x65,0x53,0x19,0xa,0xff,0x0,0x2f,0x18,0x3c, 0x10,0x1,0xc1,0xe7,0xd2,0xbb,0xe8,0x74,0x18,0x24,0xb6,0x9,0x2c,0xb3,0x10,0x3b, 0x60,0xc,0x7e,0x95,0x9c,0xa9,0xde,0x56,0x89,0xb5,0x3a,0x2d,0xee,0xcc,0x9f,0xb2, 0x46,0x55,0x55,0x24,0x84,0x80,0x80,0x30,0x65,0xc,0x18,0x82,0x4e,0x7a,0xf0,0x79, 0xfd,0x2b,0x63,0x4b,0x81,0x97,0x74,0xcc,0xaa,0xec,0xc0,0xd,0xd9,0xc1,0xa7,0xa7, 0x87,0xed,0x63,0x18,0x12,0x4d,0xf9,0x8f,0xf0,0xad,0x4,0xb7,0x58,0xd0,0x2a,0x93, 0x80,0x31,0xcd,0x6b,0x4e,0x8c,0x93,0xd4,0xe8,0x84,0x39,0x59,0x22,0xfa,0xe0,0xf, 0xc6,0xa4,0x6,0xa2,0xb,0x81,0x4e,0x3,0x80,0x46,0x6b,0xa5,0x32,0x89,0x72,0x28, 0x35,0x18,0xce,0x69,0xf9,0xe2,0xac,0xc,0xad,0x63,0x4f,0x9a,0xfb,0xcb,0x30,0x94, 0x5,0x72,0xe,0xe3,0xeb,0x8e,0x9f,0x95,0x60,0xdc,0x69,0xb2,0xd8,0xb2,0x9,0x2, 0xb6,0xf0,0x55,0x64,0x4c,0xa9,0x27,0x1c,0x3,0xf3,0x63,0xf4,0xae,0xc8,0xd4,0x17, 0x16,0xa9,0x73,0xe5,0xee,0x27,0xe4,0x90,0x48,0x38,0xee,0x3a,0x56,0x72,0x85,0xf5, 0x35,0x85,0x47,0x1d,0xe,0x7f,0xc3,0xc6,0x79,0x75,0x9d,0x55,0x25,0x23,0x6c,0x12, 0x6d,0x0,0xe,0xe4,0xb7,0x3f,0xa0,0xae,0x82,0x3b,0x58,0x61,0x23,0xcb,0x8d,0x57, 0x0,0x8e,0x7,0xaf,0x27,0xf5,0xa6,0xc1,0x66,0x90,0x5e,0x5c,0xdc,0x21,0xe6,0xe3, 0x69,0x61,0x8e,0xe3,0x3f,0xe3,0x56,0xa9,0xc6,0x24,0x49,0xdd,0xdc,0x82,0x4b,0x68, 0x64,0x4,0x49,0xc,0x6e,0xa7,0xa8,0x65,0xc8,0xfc,0x8d,0x53,0x6d,0x26,0xd7,0x27, 0x64,0x66,0x3c,0xf6,0x46,0x2a,0x3f,0x20,0x71,0x5a,0x78,0xcd,0x34,0xad,0xe,0x17, 0x11,0x85,0x75,0xa6,0xce,0x8d,0xba,0xdc,0x2b,0xaf,0xf7,0x59,0xce,0xef,0xa8,0x27, 0xf1,0xac,0x7b,0x85,0xbf,0x57,0x60,0x74,0xf9,0xf0,0x48,0x27,0x6a,0x83,0xd0,0x83, 0xd4,0x1e,0x99,0x15,0xd9,0x94,0xcf,0xb5,0x46,0xd6,0xf9,0xfe,0xe9,0xfc,0x2b,0x29, 0x51,0xbe,0xc4,0xb8,0xa7,0xb9,0xc1,0xdc,0xdb,0xcc,0xcc,0xd2,0xdc,0xe9,0x84,0xee, 0x40,0x9f,0xbd,0x21,0x6,0x33,0x9e,0xe7,0x15,0x9b,0x3d,0x9c,0x78,0x53,0xfd,0x99, 0xa,0xa7,0xb6,0x1b,0x27,0xd7,0xd7,0xf2,0xaf,0x40,0xba,0xd1,0x62,0xba,0xf9,0x9e, 0x28,0xcb,0xe,0x87,0x71,0x52,0x3f,0x11,0x59,0x37,0x5e,0x1c,0xd4,0x42,0x91,0x6d, 0x2c,0x6c,0xbe,0x8d,0x21,0xd,0xf9,0x81,0x49,0x42,0x48,0xc2,0xa5,0x5,0x25,0x64, 0x71,0xad,0x69,0xa9,0x1c,0x88,0xe4,0x81,0x23,0x3c,0x6d,0x60,0x58,0x63,0xe8,0xc0, 0xd3,0x5a,0xc2,0xe4,0xbc,0x46,0xe6,0xf1,0xa5,0x43,0x95,0x45,0x10,0x80,0xa3,0xe8, 0x1,0xfe,0x95,0xd2,0xc9,0xe1,0xad,0x6c,0x7d,0xd3,0xa,0xfd,0x24,0x7,0xf9,0x80, 0x6a,0xf,0xf8,0x45,0x75,0x8c,0xe7,0xf7,0x59,0x3d,0xc8,0x4f,0xf1,0xad,0x14,0xa4, 0x8c,0x16,0x16,0x7d,0x4c,0x35,0x6d,0xae,0x2d,0xc1,0x9e,0x49,0x32,0x54,0x46,0xa0, 0x63,0x3f,0x43,0xd0,0x7b,0xd4,0x8b,0xa7,0x6b,0x93,0xc8,0x63,0x4b,0xb,0xf4,0x5e, 0x87,0xcb,0x97,0x68,0xc7,0xb1,0x2f,0xfd,0x6b,0x4c,0xf8,0x4b,0x59,0xfb,0x47,0x9a, 0xa9,0x6,0xec,0x63,0x25,0x54,0xff,0x0,0x53,0x52,0x47,0xe1,0xdf,0x12,0x42,0xd9, 0x8a,0x45,0x50,0x3b,0x2b,0x0,0x3f,0x2a,0x96,0xd9,0xa4,0x70,0xbd,0xd1,0x42,0x2f, 0xf4,0x45,0x16,0xb7,0xb6,0xf7,0x10,0xc8,0x33,0x8f,0xb4,0xf3,0x9f,0xa1,0xe4,0x1a, 0x89,0x65,0xba,0x9a,0x67,0xb4,0xb1,0xb2,0x57,0x6f,0xfa,0x67,0xf,0x23,0xdc,0xe3, 0xa0,0xfc,0x2b,0x7d,0x2c,0xbc,0x4c,0x46,0xcb,0x94,0x82,0xee,0x2e,0x33,0x1c,0xe8, 0xf,0xe4,0x46,0x3f,0x5c,0xd6,0xed,0xa0,0x7b,0x78,0x2,0x2e,0x94,0x60,0x5c,0xe4, 0xac,0x58,0xdb,0x9f,0x5e,0x2b,0x35,0x13,0x45,0x85,0x57,0xb9,0xcf,0x88,0xae,0x2d, 0xed,0xa3,0x17,0x17,0x10,0x6f,0x18,0xdd,0xe6,0xc3,0x22,0xe,0x7f,0xda,0xc1,0x15, 0x2c,0x50,0xc9,0x25,0xed,0xa0,0x61,0x1,0x5f,0xb4,0xc6,0xdb,0xa2,0x98,0x38,0xe1, 0xb3,0xe8,0x3d,0x2b,0xa6,0x59,0x4b,0x72,0xd1,0xca,0x3f,0xde,0x14,0xa2,0xde,0x36, 0x9d,0x25,0xd9,0xf3,0x86,0x7,0x76,0x6,0x68,0xf6,0x66,0xea,0x94,0x63,0xb1,0xc6, 0xd9,0xd9,0xc9,0x1d,0x84,0x65,0xd4,0x85,0xdd,0x23,0xee,0xb,0x91,0xf3,0x3b,0x30, 0xfe,0x75,0x38,0x8c,0x7c,0xdf,0x7f,0x6a,0x9c,0x34,0x9b,0x4e,0x7,0xe3,0xd2,0xb6, 0xdb,0x44,0xb6,0x68,0xd4,0xa3,0x4b,0x1b,0xaa,0x8c,0x32,0xb9,0xfe,0x5d,0x2b,0x1a, 0x39,0xef,0x96,0xc1,0x25,0x8a,0xd2,0xea,0x64,0x23,0x2c,0x12,0x20,0xe1,0xb9,0xe7, 0x8c,0xd4,0x4e,0x2e,0xe4,0xca,0x1d,0x4c,0xbf,0xb7,0xb3,0x99,0x60,0x63,0x3c,0x6f, 0x82,0x30,0xf0,0x21,0x46,0x5f,0xf7,0xb7,0xf4,0xfc,0x2a,0xb5,0xfc,0x76,0x73,0xd9, 0x49,0x2b,0x59,0xdb,0xcb,0x35,0xb2,0x89,0x33,0x12,0x80,0xfb,0x7,0xde,0xda,0x41, 0xcf,0x4c,0xf1,0xd0,0xd4,0x8f,0xa8,0xdb,0x45,0x72,0xee,0xd6,0xcb,0xc,0xac,0x38, 0x12,0x86,0x4d,0xbf,0x44,0x3f,0xfd,0x7a,0x53,0xab,0xbc,0x33,0xac,0x93,0xcc,0xf2, 0x7f,0x74,0xe1,0x46,0x3d,0xbb,0x71,0xed,0x50,0xe2,0xfa,0x23,0x96,0x6f,0x5d,0x46, 0x5c,0xeb,0x6f,0x67,0x67,0x6f,0x3c,0x50,0x99,0xa1,0x78,0xcc,0x85,0x1d,0x8e,0x55, 0x70,0x36,0xe7,0xaf,0xb1,0xfc,0x2b,0x3f,0x47,0xd6,0xa7,0x82,0x2f,0x2e,0x57,0x94, 0x26,0xc0,0x55,0x99,0xce,0xcf,0x42,0x32,0x70,0x7,0x35,0x69,0xe6,0xd3,0x6e,0xe2, 0x58,0xae,0xad,0xee,0x2,0x1,0x88,0xe6,0x8d,0xbe,0x64,0xfd,0x48,0xe9,0x5a,0x10, 0xc7,0xa6,0xec,0x80,0x2c,0x59,0x8a,0x18,0x82,0x42,0xa,0x93,0x98,0xfb,0x3,0x9c, 0xe4,0xfb,0x9a,0xad,0x12,0xb3,0x42,0x69,0x3d,0x87,0xc9,0xa8,0x59,0x49,0xb5,0x2e, 0x9c,0xc4,0xa5,0x77,0x87,0x5c,0xf2,0x3e,0x95,0x62,0x3d,0x4a,0xca,0x74,0x65,0x42, 0xc4,0xaa,0x82,0x1,0x4c,0x92,0xb4,0xc9,0x65,0xd0,0x67,0x53,0x15,0xd0,0xba,0xdc, 0xb8,0x0,0x45,0x6e,0xe5,0xc9,0xff,0x0,0x7b,0x1b,0x40,0xfc,0x6a,0x4b,0x6b,0x5, 0x7f,0xde,0x2a,0xea,0x11,0x8d,0xbf,0x2e,0xe9,0x61,0x76,0xc7,0xfc,0x9,0x38,0xed, 0x59,0xca,0x9a,0xb5,0xcb,0x54,0xdb,0x2a,0x6a,0x52,0x24,0xd2,0xf9,0x76,0xea,0xed, 0x12,0x8e,0x49,0xe1,0x73,0xe9,0x83,0xcd,0x62,0xdc,0x83,0x22,0x4f,0x6f,0xc1,0x2c, 0x84,0x65,0x79,0x19,0x3d,0xba,0x57,0x47,0x3d,0x80,0x95,0x84,0x2b,0x3c,0x8d,0x72, 0xcc,0xb,0x70,0x1c,0x8f,0xc8,0xf,0xe9,0x50,0x5d,0xe8,0x2f,0x64,0xbe,0x6e,0xf1, 0x28,0xc9,0xdd,0xe6,0x46,0x51,0x94,0xe3,0xae,0x77,0x1c,0x8f,0xc2,0xae,0x9b,0x49, 0x9,0xd3,0x69,0x99,0xe6,0xce,0xf1,0x27,0x6d,0xd1,0x1,0x10,0xb9,0x46,0x5d,0xb8, 0x3,0xd,0x28,0x3c,0xe,0xdd,0x7f,0x4a,0xb3,0xe2,0x5,0x59,0x3c,0x51,0xac,0xad, 0xc2,0xb1,0xb6,0x77,0xb7,0x4c,0xe,0xfb,0x63,0x56,0xc7,0xe6,0xdf,0xad,0x39,0xae, 0x94,0x3f,0x93,0x14,0xb0,0xc9,0x8b,0x98,0x53,0xcc,0x89,0xc3,0x87,0xcc,0x8a,0x7, 0x23,0xf9,0x51,0xab,0xbc,0x33,0xf8,0x8f,0x5b,0x89,0xa5,0xd8,0xc9,0x74,0x84,0x64, 0xf6,0xf2,0x61,0x15,0x70,0xbb,0x83,0x7e,0x66,0xb1,0x4d,0x41,0xd8,0x9f,0x49,0x86, 0x25,0xb4,0xc5,0xbc,0x51,0x41,0xbb,0x3b,0xb6,0x3,0xb8,0xf3,0xdc,0xd3,0xee,0xec, 0xe4,0x8d,0xcc,0xc6,0xe6,0x38,0xa0,0x60,0x37,0x19,0x10,0xb9,0xfe,0x63,0x35,0x5a, 0xc1,0x8,0xf3,0x2,0x95,0x41,0xbb,0x2a,0x5f,0x8c,0x8f,0xca,0xa6,0xd4,0x84,0xb2, 0x5b,0x18,0xa2,0xb7,0x33,0x39,0x1d,0x49,0xda,0xab,0xea,0x49,0xc6,0x31,0xef,0xef, 0x58,0x49,0x3e,0x6d,0xe,0x77,0x1d,0xc,0xd,0x5a,0xda,0xb,0xc2,0xb2,0x7d,0xbb, 0xcf,0x88,0x1c,0x4d,0xf6,0x4c,0x2b,0x46,0x7,0xf7,0x94,0xe7,0x8c,0xfb,0xd7,0x21, 0x79,0xfd,0x9c,0xc0,0x8,0x56,0x59,0x51,0x7f,0x8e,0x56,0x19,0xc7,0xe1,0xdb,0xa5, 0x7a,0x1d,0xb6,0x9d,0x6d,0x1a,0xbc,0xb1,0xde,0xda,0xa4,0xff,0x0,0xf2,0xd2,0x56, 0x88,0x18,0xd4,0xfa,0x6,0xe3,0x71,0xfa,0x1a,0xa9,0xe,0x8b,0xe7,0xde,0xcc,0x1b, 0xfb,0x6,0xe6,0x63,0xf7,0x65,0xb5,0x3e,0x4c,0xc3,0xdc,0xf0,0x7f,0x9d,0x76,0x51, 0xaf,0x18,0xab,0x48,0xc9,0xa9,0x6e,0x79,0xa3,0x5a,0x5c,0xca,0x9,0xb5,0xb6,0x95, 0x94,0x9c,0x8f,0x29,0x5c,0xf,0xd0,0x60,0xd4,0xb6,0xbe,0x1e,0xbe,0x90,0x9,0x25, 0xb6,0x9d,0x19,0x4e,0x15,0x65,0xc0,0xc0,0xf5,0xc1,0xc7,0xe9,0x5d,0xb6,0xb9,0xa5, 0xf8,0x8e,0x38,0x9a,0xb,0x6b,0xab,0x54,0xc3,0x6,0xc7,0x9d,0x87,0x2b,0xe9,0x9c, 0x74,0xac,0xab,0x5b,0x8b,0xd1,0x73,0x83,0x67,0x23,0xba,0x11,0xbc,0xc3,0x13,0x4c, 0x7d,0xb9,0x19,0x1d,0x45,0x77,0x47,0x10,0xa4,0xaf,0x1b,0x1a,0x27,0x26,0x8c,0xf7, 0xd1,0x27,0x89,0xa2,0x90,0x48,0xf1,0x15,0x4,0x6,0x5e,0xa7,0xb7,0x5c,0xf0,0x29, 0xaf,0xab,0x9d,0x31,0x24,0x36,0xf3,0xb9,0x99,0xb6,0xae,0x15,0xba,0x63,0xdf,0xaf, 0x73,0xfe,0x45,0x6c,0x6b,0x1a,0x77,0x88,0xee,0x2d,0x26,0xbb,0x99,0x60,0xd2,0xac, 0xd1,0x7e,0xfd,0xe4,0xa1,0x9d,0x94,0xf4,0xc2,0xc6,0xe,0x3d,0xf3,0x5c,0x87,0xda, 0x94,0x5a,0xc4,0x92,0x79,0x65,0x41,0xfb,0xcb,0xc9,0x3c,0x3,0x9c,0x1c,0x1c,0x73, 0x5b,0xd1,0xfd,0xee,0x92,0xd4,0x4d,0x3,0xdc,0x4f,0xab,0x46,0x6d,0xe4,0xb7,0x57, 0x62,0x49,0xf3,0xa,0x97,0x92,0x43,0xd7,0xc,0x4f,0xf3,0xe2,0xa5,0x5d,0x7,0x58, 0xd3,0xe3,0x13,0x36,0x9f,0x34,0x76,0xfd,0x59,0xe1,0x8f,0x85,0x1e,0xa7,0x6f,0x6f, 0xf1,0xab,0x16,0xd7,0x49,0xa6,0x6a,0x4b,0x3f,0x90,0x93,0x1,0x86,0x55,0xde,0x42, 0xe3,0x1e,0xde,0xf8,0x3f,0x85,0x76,0x1a,0x1f,0x8c,0x6,0xa5,0x74,0xd1,0x82,0xd6, 0x53,0xa8,0xfd,0xd0,0x8f,0x94,0xda,0x31,0xc1,0xf6,0xff,0x0,0x1a,0x58,0x87,0x2a, 0x7f,0x4,0x74,0x2e,0x2a,0xfb,0x99,0x76,0x88,0x2f,0xed,0x62,0x82,0x79,0x7c,0xe2, 0x88,0x59,0x26,0x8d,0xc1,0xdd,0xd0,0x8e,0xbf,0xe4,0x60,0x55,0x9b,0x6f,0x12,0xe9, 0xb1,0xcd,0x23,0x17,0x9a,0x6f,0x31,0x95,0x8e,0x13,0x6a,0xae,0x46,0x4f,0x53,0x93, 0xc9,0x3d,0xb1,0x56,0xb5,0x4d,0x6,0x9,0x2d,0xa7,0xbc,0xb2,0x2b,0xc,0xed,0x96, 0x91,0x11,0x82,0xa1,0xf5,0xdb,0xd3,0x19,0xac,0x1b,0x6d,0x2b,0xed,0xb7,0x31,0xc2, 0x61,0x79,0x4b,0x8c,0x4,0x81,0xb,0xb0,0x23,0x9c,0xf7,0xc0,0xff,0x0,0x22,0xb9, 0x57,0xb3,0x9a,0x6e,0x4e,0xc1,0xf0,0xe8,0x76,0x22,0xf2,0x5b,0x89,0x22,0xf,0xa6, 0xa4,0x90,0xb2,0xee,0x59,0x7e,0xd0,0x54,0x10,0x7d,0x82,0xfe,0x9e,0xf5,0x76,0xb, 0xa9,0x19,0xda,0x38,0xb5,0x24,0xb1,0xdc,0x6,0x12,0x5d,0xaf,0xf4,0xc1,0x65,0xe6, 0xa9,0xe8,0xfa,0x45,0xed,0xae,0x16,0x58,0x25,0x30,0x3,0x90,0xb2,0x46,0x55,0xf0, 0x7a,0xfc,0xe1,0x73,0xf4,0x15,0xb4,0x2c,0x2c,0xc4,0x66,0x58,0x6c,0xe0,0x98,0xa8, 0x2d,0xba,0x58,0x81,0x38,0xfa,0x71,0x5e,0x5d,0x5e,0x4e,0x86,0xd4,0xa6,0xe3,0xd4, 0x2d,0xad,0x9e,0x57,0x5,0xb5,0x2f,0xb6,0x38,0x39,0x3f,0xbd,0x4,0x67,0xe8,0x30, 0x7,0xe5,0x57,0x2e,0x11,0x36,0xd,0xfe,0x5a,0x39,0x3c,0x39,0x40,0xd8,0xa8,0xa6, 0xb8,0x58,0x60,0x8c,0x47,0x6f,0x2,0x46,0xcb,0x9c,0x5,0x20,0x1f,0xa7,0xa5,0x62, 0xde,0xeb,0x71,0x45,0x6f,0x2c,0x6d,0x14,0x9e,0x4e,0x39,0x92,0x37,0x7,0xd,0x91, 0x80,0x41,0xc1,0xe7,0xdb,0x35,0xcc,0xe1,0x39,0x2f,0x74,0xeb,0xa7,0x38,0xb7,0xab, 0xd4,0xd3,0x6b,0x2b,0xb7,0x26,0x78,0xb5,0x15,0x95,0xbb,0x16,0x85,0x48,0xfa,0x71, 0xcd,0x2c,0xa6,0x4b,0x2b,0x28,0xe3,0xb8,0x92,0x49,0x9e,0x55,0x6c,0xb2,0x92,0xae, 0x71,0xe8,0x3d,0x5,0x62,0x6a,0x57,0xf7,0x7a,0x7d,0xa7,0xd8,0xdb,0xcc,0xf3,0x1c, 0x95,0x3e,0x46,0x53,0xcb,0x1d,0x72,0x5b,0x18,0xcf,0xb6,0x6a,0x18,0x59,0x45,0xb9, 0x68,0x59,0xd7,0x68,0x24,0x48,0xf2,0x6e,0x3c,0xf1,0xc1,0xc9,0xea,0x71,0x45,0x1c, 0x2c,0xda,0xe6,0x96,0xc8,0xd2,0xb6,0x22,0x30,0x6a,0x2d,0xdc,0xe9,0x21,0xb5,0x8a, 0xde,0xdf,0xec,0xb6,0xc1,0x95,0x70,0x58,0x3b,0x1e,0xfc,0x7e,0x75,0x62,0x40,0x4c, 0x6b,0x1f,0x99,0xba,0x50,0x39,0x63,0xde,0xb3,0xc4,0xd7,0x12,0x4b,0xe5,0xdb,0xbe, 0xc7,0x61,0xc8,0xc8,0xeb,0xed,0xd6,0xad,0x42,0x6e,0x94,0x13,0x78,0xd1,0x82,0x3a, 0x30,0x1c,0xe3,0x1c,0xe6,0xb1,0xa8,0xe6,0x9b,0x56,0x34,0xe5,0xee,0x12,0xcf,0x34, 0x12,0xb0,0x8a,0x15,0x92,0x5d,0x9f,0x2a,0xee,0xf7,0x1c,0xfe,0x95,0xce,0xeb,0xf6, 0xfa,0xc4,0xb3,0x6f,0x5b,0x41,0x32,0x3a,0xf2,0xb0,0xc8,0x4e,0xd2,0x6,0x4e,0x72, 0x7,0x5a,0xd9,0x4b,0xe5,0x67,0x25,0xa3,0xe1,0xc6,0x16,0x45,0x5c,0xe3,0x9e,0xf5, 0x9d,0x7b,0xaa,0x6a,0x5a,0x64,0xa2,0x34,0x8e,0x6,0xc,0x19,0x84,0x92,0x86,0xcf, 0x18,0xf4,0x3d,0x2b,0xa2,0x94,0xea,0xf3,0x25,0x4d,0x5d,0xf9,0x93,0x25,0xb,0x39, 0x33,0x93,0xb2,0xbe,0x90,0xf0,0xd2,0x6f,0x4c,0x10,0xa3,0xa6,0x39,0x3d,0x47,0x5c, 0xd5,0xcd,0x35,0xae,0x45,0xc3,0xc9,0x4,0x12,0x31,0x44,0xde,0xe4,0xfd,0xd5,0x1d, 0x5,0x54,0x89,0x10,0xdc,0x4b,0x3d,0xcc,0x90,0xab,0x4d,0x2f,0x98,0x42,0xd,0x83, 0xf0,0x1e,0x95,0xb3,0xc,0xc6,0x47,0x57,0xb6,0x44,0x57,0x8b,0x18,0x2c,0xc3,0xe6, 0xe7,0xa6,0x3a,0x90,0x71,0xe9,0x5e,0xcd,0x5a,0x96,0x86,0xc7,0x94,0xad,0x2a,0xdc, 0xb0,0x77,0x46,0xa5,0xa5,0xed,0xad,0xba,0x5a,0x43,0xd,0xfd,0xb1,0x68,0x9b,0x73, 0x7,0x42,0x37,0x13,0xd7,0x69,0x3d,0xf9,0x3f,0x9d,0x5e,0x99,0x91,0x2e,0xfc,0xb8, 0xed,0xed,0x2e,0xee,0x47,0x22,0x2,0xe2,0x29,0x94,0x1e,0x70,0xb9,0xe0,0xf1,0xf4, 0xfa,0xd6,0x44,0x11,0xd8,0xda,0x4d,0x72,0xd7,0x30,0xf9,0x51,0x17,0xdd,0xa,0x4d, 0x1e,0xa,0xf0,0x72,0x6,0x7b,0xc,0xff,0x0,0x9c,0xd3,0xa1,0xd3,0x2e,0x6e,0xf5, 0xb,0x89,0xa7,0x95,0x22,0xb4,0x96,0x45,0x68,0x9a,0x26,0xe6,0x41,0x8c,0x0,0xe, 0x7a,0x90,0x7,0x5f,0xc3,0xbd,0x79,0x6d,0x2b,0xde,0x4c,0xf6,0xad,0x64,0x51,0xb8, 0x8e,0x71,0x75,0x71,0x65,0x6c,0x97,0xf0,0x48,0x8,0x6d,0xb7,0xcc,0x83,0x0,0x9e, 0x30,0xc0,0x9d,0xd9,0xe4,0xf,0xe7,0x59,0xd1,0xe8,0x7a,0xa4,0x64,0x4a,0xe6,0x15, 0x5f,0x48,0xdf,0x24,0x1f,0x43,0xd3,0xde,0xa7,0xbe,0x37,0x9a,0xa4,0xe0,0x5b,0xdb, 0x8b,0x55,0x87,0x30,0xec,0x23,0xc,0xa0,0x70,0x72,0x4f,0x27,0x1f,0xe3,0xd2,0xaf, 0x69,0x11,0x79,0x96,0x85,0x2e,0x5b,0xe5,0x40,0xa3,0x19,0xea,0xd9,0x20,0xf3,0xf4, 0x2,0xbb,0x14,0x9c,0x21,0x73,0x89,0x28,0xce,0x6e,0xe8,0xbb,0xe1,0xfb,0x74,0x96, 0x2f,0xb4,0xcb,0x25,0xbd,0xc9,0xdc,0x57,0xc8,0x46,0x12,0x79,0x7c,0xe3,0x91,0xea, 0x70,0xd,0x68,0xea,0x16,0x62,0xe7,0x4b,0xbb,0x8a,0xde,0x30,0x92,0xe4,0x3a,0x21, 0x1d,0x48,0x39,0xc6,0x3a,0x60,0x8c,0x8a,0xaf,0x6e,0x97,0x53,0x4b,0xb1,0xc,0x69, 0x6a,0x3a,0x30,0xe3,0x7,0xd0,0x10,0x79,0xab,0x26,0xec,0x5b,0xb2,0xc4,0x5d,0x5d, 0xc9,0xc0,0x2c,0x7b,0xfd,0x7b,0xd7,0x4,0xee,0xe5,0x74,0x74,0xc1,0x21,0x9a,0x7c, 0xb2,0xb6,0x9b,0x14,0x26,0xd9,0x21,0xb8,0x55,0x2a,0xbe,0x60,0x4,0x7d,0x46,0xe, 0x7d,0x2b,0x2f,0x53,0xbf,0xb8,0xd3,0xe0,0xdf,0xe6,0x59,0xbc,0xdb,0xc2,0x94,0xfb, 0x49,0x2f,0x92,0x47,0x40,0x45,0x69,0xef,0xff,0x0,0x4a,0x33,0x9,0x4,0x87,0x19, 0x45,0x51,0xd3,0xeb,0xef,0xc5,0x53,0xd5,0x74,0x78,0x35,0x16,0x92,0xe2,0xde,0xf1, 0xed,0xa6,0x2c,0xc,0x88,0xe8,0xae,0xa7,0x8f,0x43,0x83,0xfa,0xd2,0x84,0xad,0x35, 0xcd,0xb1,0x35,0x69,0xa9,0x2b,0xdb,0x52,0x3b,0x6d,0x44,0x5d,0xc4,0xf1,0xdc,0xaa, 0x19,0xa3,0x62,0x19,0x59,0x38,0x3e,0x87,0xad,0x65,0x4a,0x8c,0x7c,0xdc,0x15,0x5c, 0x37,0x41,0xc0,0xc5,0x5f,0xfb,0x2b,0xe9,0xb6,0xd2,0x3c,0xe0,0x34,0x65,0x72,0xb3, 0x22,0x9d,0xbc,0xe,0xe3,0x1c,0x7e,0xb5,0x9d,0x1d,0xc4,0x57,0x37,0x41,0x65,0xd4, 0xd,0xa4,0x45,0xb,0xee,0x11,0xee,0x24,0xe4,0xc,0x62,0xbb,0xa2,0xe2,0xae,0xe3, 0xb1,0xe7,0x3a,0x53,0x93,0xe5,0x6a,0xc3,0x20,0x6b,0xb5,0x65,0x68,0x8b,0x6d,0x46, 0xd,0x86,0x1,0x94,0x91,0x9e,0xa0,0xf5,0xad,0xaf,0xed,0x4b,0xbb,0xb5,0x92,0x1f, 0xf4,0xa8,0x6e,0x1a,0x26,0xc1,0x2a,0xa5,0x18,0x81,0x9e,0xdc,0xfe,0x18,0xa9,0x2d, 0x74,0xa4,0xb9,0x55,0xb8,0x83,0x55,0x37,0xb0,0x2e,0x43,0x28,0x1b,0x8,0xfa,0xe3, 0x91,0x4a,0xda,0x63,0x2d,0xee,0xc0,0xd2,0xf9,0x64,0x60,0x2c,0x6a,0x5c,0x80,0x46, 0x3a,0x93,0x58,0x54,0xab,0x9,0xab,0x75,0x3b,0x28,0x52,0x95,0x25,0xbd,0xc5,0x4b, 0xdb,0x4b,0xab,0x8,0x67,0xbc,0xb3,0x86,0x34,0x56,0xda,0xcd,0x2,0x82,0xb9,0xe9, 0xd7,0x1c,0x7b,0xe0,0xd6,0x6b,0x6b,0x36,0x71,0x48,0xd6,0xda,0x7c,0x53,0xb8,0xe8, 0x85,0xc3,0x15,0x5f,0x5d,0xab,0xc9,0x35,0xd1,0xa5,0x99,0xb6,0xb4,0x4b,0x6d,0x39, 0xd2,0x4,0x56,0xdc,0xca,0xe0,0xb9,0x63,0xdf,0x39,0x35,0x5a,0xee,0xef,0x5a,0x8e, 0x45,0x8e,0xb,0x5,0xb8,0x1f,0xdf,0xde,0xaa,0x98,0xf6,0xcb,0x64,0xfd,0x31,0x5c, 0xd1,0xab,0x1e,0x6b,0x2d,0x7e,0x67,0x62,0xb6,0xd7,0x37,0xfe,0x1f,0x47,0x1a,0x7f, 0x68,0xf9,0x62,0x61,0x9f,0x2f,0x22,0x58,0xca,0x1c,0xfc,0xdd,0x8d,0x76,0xb5,0xca, 0xf8,0x2a,0x3b,0xe4,0x8e,0xf0,0xdf,0xce,0xb2,0x4a,0xe5,0x1b,0x62,0xa8,0x2,0x31, 0xf3,0x71,0x9e,0xf5,0xd5,0x57,0xb5,0x84,0x6a,0x54,0x53,0x5e,0x7f,0x99,0xe7,0xd5, 0x8f,0x2c,0xda,0x3c,0xe7,0xe2,0x94,0x92,0x99,0xb4,0x4b,0x68,0x9d,0x93,0xcd,0x33, 0x6e,0x31,0x83,0xbb,0x3,0x67,0x71,0xd0,0x73,0xc9,0xae,0x59,0x34,0x2b,0x18,0x5d, 0x12,0xed,0x2c,0xee,0x5b,0x67,0xca,0x5,0xb1,0xe3,0xa7,0x40,0xd9,0x1e,0x9c,0x92, 0x33,0x5d,0xef,0x8f,0x58,0x2f,0xd8,0x8,0x53,0xbc,0x89,0x42,0xb0,0xea,0x3e,0xee, 0x79,0xae,0x3e,0x2b,0xa0,0xa5,0x5b,0x6a,0x99,0x7,0x19,0x39,0x24,0xfe,0x27,0xa5, 0x72,0x62,0xa5,0x3f,0x69,0x68,0x92,0xaa,0x72,0xe8,0x41,0x1e,0x89,0x5,0xd0,0x53, 0x3e,0x9f,0x6f,0x6d,0x1a,0x36,0x51,0x22,0x89,0x54,0xb1,0xed,0x92,0xbf,0xfd,0x6a, 0xbb,0x8,0x4b,0xb6,0x9d,0x64,0x97,0x32,0xe0,0xb4,0x8a,0x19,0xf3,0x8f,0xd0,0x7e, 0xb5,0xa1,0x6f,0x32,0xdc,0xc1,0xe6,0x1,0xb5,0x81,0xc3,0x2,0x7a,0x1a,0xa9,0x71, 0xa7,0x41,0x3b,0x87,0x9e,0x34,0x76,0x65,0x61,0x92,0x33,0xe9,0xeb,0x5c,0x12,0x83, 0x93,0xb3,0x7b,0x1d,0x14,0xaa,0x5e,0xf7,0x29,0x4e,0xd6,0xd7,0x16,0xd0,0xdb,0xc4, 0x44,0xb6,0xf3,0xb3,0x87,0xc,0x80,0xa9,0xda,0x79,0x18,0x23,0x9f,0xcf,0xb5,0x63, 0xde,0xf8,0x7e,0xc6,0x45,0xb9,0x36,0xf1,0xf9,0x1b,0xf7,0x33,0xed,0x6e,0x37,0x64, 0xe4,0xed,0x3c,0xc,0x8a,0xbd,0x76,0xa2,0xc8,0x69,0x71,0x6,0x11,0xaa,0x2d,0xc2, 0xaf,0x1b,0x41,0xc3,0x46,0x7,0xb7,0x4a,0x68,0x94,0xf9,0x77,0xb2,0x77,0x92,0x42, 0x63,0x5e,0xa4,0xf3,0xc7,0xf3,0xfd,0x2b,0xaa,0x94,0x5a,0x57,0x9,0xd4,0x7a,0x34, 0x71,0x7e,0x1b,0x86,0x59,0xe1,0x97,0x4f,0x84,0x34,0x77,0xf0,0x4e,0xd2,0xc1,0x2c, 0x6d,0xc6,0x70,0x3a,0xaf,0x4e,0xab,0xe8,0x73,0x9e,0x95,0xdf,0xc0,0x97,0xbf,0x64, 0x59,0x24,0x48,0xcb,0x2c,0x9b,0xa,0x42,0xf,0x4c,0x67,0x3e,0xbd,0x73,0xc7,0x15, 0xc6,0xa4,0x56,0xda,0x76,0xa5,0x34,0xb6,0xd2,0x4c,0x97,0x10,0xbe,0xe7,0x70,0x7, 0x3,0x8e,0xc7,0xeb,0xc8,0xae,0xb3,0x41,0xd4,0xee,0xae,0x2e,0x9a,0x39,0xe3,0xd8, 0xbd,0x41,0x11,0x6d,0x1e,0xc7,0x3,0xf1,0xff,0x0,0xeb,0x55,0x62,0x76,0xba,0x47, 0x23,0x53,0x52,0x1d,0xe7,0xcc,0x55,0xa5,0xfb,0x24,0xec,0x73,0xb4,0xab,0x46,0x72, 0x46,0x3e,0x95,0x52,0xe6,0x4b,0x9b,0x8b,0x90,0xe9,0xa5,0xce,0x30,0xcb,0xf3,0xcc, 0xac,0xf8,0x19,0xec,0x4f,0x22,0xba,0xb8,0xcc,0xd9,0x7c,0xb0,0x38,0xf5,0x1b,0x4d, 0x2b,0x2a,0x3,0xb4,0x16,0x6f,0x5e,0x73,0x9a,0xe3,0x55,0x14,0xa5,0x67,0x12,0x94, 0xa4,0x8c,0x69,0x2,0x43,0x77,0x29,0x5b,0x61,0x18,0xe,0xcb,0x95,0x56,0xc6,0x1, 0x23,0x24,0xfb,0xf5,0xa5,0x8a,0x7,0x89,0xa6,0x96,0x11,0xfb,0xab,0x8b,0x76,0xf3, 0x6,0x71,0xca,0xe4,0xab,0xf,0x71,0x9f,0xc6,0xb6,0x24,0x8e,0x29,0x50,0xab,0xed, 0x2a,0x7a,0x82,0x7,0x3f,0xe7,0x35,0x1f,0xd9,0xd3,0x2b,0xb7,0xa,0xaa,0x8c,0xa0, 0x1,0x81,0xd2,0xb3,0xb2,0x93,0x68,0xde,0x13,0x92,0xd4,0xe1,0x6f,0x3e,0xd9,0x6d, 0xc,0x16,0xf3,0x66,0xf6,0x38,0xdc,0xb2,0x4e,0x23,0x65,0x9a,0x21,0xe9,0xb8,0x7d, 0xe0,0x72,0x78,0x3f,0x9d,0x5e,0xb4,0x9c,0x5a,0xf9,0xcf,0x0,0x9d,0xd4,0xc7,0x90, 0x2,0x33,0x1d,0xdd,0x81,0xe3,0x8e,0xbf,0xa5,0x76,0x29,0x1a,0x27,0x73,0x9c,0xe7, 0xa9,0xa7,0x6c,0x5c,0x63,0x1c,0x13,0x9f,0xc6,0xba,0x21,0x59,0x46,0x36,0x48,0x9a, 0x93,0x94,0xf7,0x39,0xd4,0x33,0x4d,0x67,0x72,0xcf,0x1b,0xee,0x36,0x93,0xc,0xb2, 0x15,0xe7,0x23,0x3,0x9f,0x6a,0xae,0x89,0x6a,0x5c,0xab,0x86,0x91,0x80,0x4,0xab, 0x74,0xfa,0xe2,0xba,0xc0,0x0,0x5c,0xc,0x67,0x1d,0xfb,0xd6,0x1e,0xa7,0xa6,0x5e, 0x5e,0xce,0x92,0x24,0x36,0x41,0x97,0xa4,0x82,0x56,0x46,0xc7,0xb9,0x3,0x9f,0xca, 0xaa,0x35,0xb5,0xd8,0xc6,0x4d,0x58,0x83,0xed,0xdf,0x28,0x58,0xc6,0xd0,0xbd,0x48, 0x18,0x18,0xfc,0xaa,0xd2,0xb,0x8b,0x8b,0x11,0x24,0x57,0x1e,0x5e,0x64,0xfb,0xe0, 0xe,0x47,0xa5,0x43,0xe,0x85,0x39,0x94,0x3d,0xd1,0x8a,0x55,0x7,0xa2,0x48,0x7f, 0xf8,0x9a,0xd1,0x69,0xd4,0x40,0x82,0x34,0x8a,0xb,0x72,0xdb,0x4,0xaf,0x1b,0x30, 0xe3,0xa9,0x55,0x50,0x4b,0x1e,0xde,0x94,0x4a,0xd2,0x69,0x44,0x4a,0x52,0x6a,0xc8, 0xa6,0x62,0x8d,0xf6,0x8b,0x92,0x25,0x7f,0xef,0x32,0x7f,0x91,0xfa,0xd5,0x8b,0x48, 0x60,0x5b,0xb8,0xcc,0x68,0x80,0x9c,0xa9,0x3,0xa9,0x18,0xa9,0x65,0xd3,0x3c,0x35, 0x74,0x19,0x9b,0x52,0xd4,0x96,0x46,0xef,0x5,0xb4,0xeb,0xcf,0xfb,0xa5,0x48,0xfd, 0x29,0xd0,0x69,0xda,0x25,0xbb,0xac,0x9f,0xdb,0xda,0xa9,0x29,0xd9,0xec,0xf1,0xff, 0x0,0xb4,0xab,0x75,0x86,0x95,0xae,0x11,0x84,0xee,0x47,0xf6,0x5b,0xbb,0x58,0x70, 0xb7,0x61,0x23,0x4f,0xe2,0xc0,0xc0,0x1f,0x8f,0x4a,0x82,0x58,0x26,0x71,0x14,0x97, 0x12,0x83,0x18,0x70,0xea,0xef,0xb2,0x3d,0xf8,0x39,0x18,0xdc,0xc0,0x91,0xf4,0x15, 0xbf,0x14,0x56,0x11,0x98,0xee,0x56,0x69,0xf5,0xc,0xff,0x0,0xab,0x5d,0x8a,0x36, 0xe3,0xab,0x1c,0x80,0x6,0x38,0xe4,0xfe,0x15,0x62,0x75,0xbf,0xbc,0x21,0xed,0xf5, 0xe3,0x6e,0x8c,0x71,0xb1,0x8c,0x6c,0x7e,0xb9,0x1d,0x6a,0x63,0x41,0xdf,0xde,0x66, 0xb6,0xee,0x63,0xdb,0xa4,0x4b,0x79,0x6f,0x28,0x92,0xc,0x23,0xbb,0x12,0x24,0x4, 0xf3,0x1b,0xa8,0x1c,0x1f,0x56,0xa9,0xb4,0xfd,0x2e,0x78,0x6c,0x2d,0x49,0x8a,0x56, 0xf2,0x95,0xd7,0x84,0x27,0x86,0xdb,0xff,0x0,0xc4,0xd7,0x47,0x63,0xa7,0xdc,0x40, 0x43,0x4d,0xac,0x5d,0x5d,0x1e,0xf9,0x2a,0x14,0xfe,0x0,0x56,0x90,0x19,0x23,0x92, 0x4d,0x6f,0xf5,0x75,0x6b,0x5c,0xb5,0x3b,0x1c,0xaa,0x43,0x24,0x9f,0x2a,0xdb,0xcc, 0x4f,0x7f,0xdd,0x11,0xfa,0x9e,0x5,0x5a,0x4d,0x26,0xe9,0xc0,0xca,0xac,0x43,0xd5, 0xa4,0x39,0xfd,0x3f,0xc6,0xba,0x22,0x3e,0xbf,0x9d,0x33,0x0,0x13,0x80,0x5,0x2f, 0xab,0xc5,0x6e,0x3e,0x76,0x64,0x26,0x8f,0x2a,0xc,0x7d,0xac,0x1f,0x7d,0x84,0xff, 0x0,0xec,0xd5,0x34,0x7a,0x64,0xaa,0xf9,0x6b,0x95,0x6e,0x31,0xfe,0xaf,0xff,0x0, 0xaf,0x5a,0x40,0x73,0xd3,0xf2,0xa7,0xc,0x67,0x3,0xad,0x5a,0xa3,0x2,0x79,0x99, 0x9e,0xba,0x5b,0x1c,0xef,0xb9,0x6e,0x9c,0x4,0x40,0x31,0xf9,0xe6,0xa9,0xcf,0xe1, 0xf9,0x5d,0x7f,0x75,0x73,0xc,0x7e,0xa4,0xdb,0x67,0x3f,0x5c,0x30,0xcd,0x6a,0xcb, 0x7b,0x4,0x2d,0xb4,0xb1,0x67,0xfe,0xe2,0xc,0x9a,0x88,0xdc,0x5d,0x48,0x71,0x1c, 0x22,0x21,0xfd,0xe9,0xe,0x4f,0xe5,0x4f,0x92,0x9a,0xe8,0x4b,0x57,0xdc,0xc2,0x7f, 0xc,0x5e,0xef,0x2e,0xda,0xa5,0xbe,0x38,0xe0,0xda,0xb0,0x3,0xe9,0xfb,0xcc,0xa, 0xa3,0x71,0xa0,0x87,0xb9,0x2f,0x35,0xff,0x0,0x9c,0xe0,0x7d,0xcb,0x4b,0x52,0xb9, 0xfa,0xb6,0x4f,0xf3,0xae,0xa3,0xec,0x7e,0x71,0xdd,0x3c,0x92,0x4a,0x7d,0x9,0xc2, 0xfe,0x55,0x37,0x94,0xaa,0x81,0x55,0x42,0x8e,0xc0,0x74,0x14,0x9a,0x56,0xd0,0x5e, 0xce,0x27,0x9,0x7b,0xa6,0x1,0x6a,0x1a,0x2b,0x6b,0xc9,0x55,0xc6,0x48,0x37,0x7c, 0xf,0xcf,0x3f,0xa0,0xaa,0xf6,0xf6,0xba,0x65,0x99,0x1b,0x2c,0xed,0x6c,0x67,0x23, 0x8d,0xd1,0x6d,0x6c,0x7a,0x97,0x6e,0x49,0xf7,0xa2,0x47,0xbc,0xfb,0xa,0x58,0xcd, 0x71,0x1a,0x21,0x8d,0xfc,0xe9,0x64,0x7c,0x90,0xbc,0x74,0xe9,0xeb,0xfa,0xd6,0x2d, 0xd1,0xb2,0x1,0xe1,0xba,0xd5,0x67,0x92,0xd0,0x36,0xd5,0x74,0x5f,0x93,0x9e,0x73, 0xce,0x46,0x3d,0xc0,0xae,0x75,0x17,0xdc,0xe4,0x93,0x69,0x92,0xea,0x70,0xe8,0xb3, 0xcb,0x1c,0x37,0x3a,0xbd,0xc5,0xcf,0x9c,0xe1,0x7c,0xa1,0x72,0xb1,0x44,0xbc,0xf3, 0xc9,0x5c,0x93,0x93,0xdb,0xf1,0xaa,0x89,0xa6,0xd9,0xe9,0xda,0x8c,0x31,0xc5,0x7e, 0x5a,0xcc,0x9f,0x96,0x58,0xae,0x54,0xba,0x9e,0x40,0x4,0xe0,0x10,0x3d,0xc6,0x6a, 0x9d,0xdf,0x87,0xfc,0x3d,0xa6,0x5d,0x25,0xf9,0xb8,0x92,0xec,0xc5,0xfb,0xf8,0xa3, 0x6d,0xac,0xaf,0xb5,0x8f,0x50,0x0,0xe3,0x8e,0x99,0xad,0xcd,0x3f,0x56,0xb1,0xf1, 0x45,0x8b,0xd8,0xea,0x56,0x30,0x89,0x42,0xe4,0xa7,0x95,0xb7,0x6a,0x8c,0x65,0x91, 0x80,0xe3,0x19,0xe9,0x5b,0x59,0xa4,0xbb,0x8,0xab,0x6f,0xaf,0x68,0x9a,0xc4,0x13, 0x5b,0xde,0x19,0x63,0x72,0x99,0x8d,0xa5,0xbb,0x6c,0x4c,0xb9,0x3d,0xb,0x77,0x1d, 0xc6,0xf,0x5a,0x74,0x76,0xf,0xfd,0x97,0xe4,0xe9,0xba,0xa6,0xf8,0xd9,0xd6,0x63, 0x1c,0x97,0xa,0xe8,0x42,0x8e,0x6,0x78,0xe3,0xf0,0xed,0x59,0x17,0x3e,0x15,0xb6, 0x92,0xdf,0x3f,0x65,0x65,0xb9,0x89,0x9d,0x1c,0x2c,0x8d,0xb7,0x72,0x9c,0x6,0x1e, 0x99,0x0,0x9c,0xfb,0xd6,0x2c,0xaa,0x20,0x29,0x14,0x63,0x7b,0x2b,0x90,0xbb,0x98, 0xfc,0xa4,0x7a,0x7e,0x75,0xb5,0x2a,0xa,0xa3,0xf7,0x1d,0x8a,0x51,0xb9,0xd3,0x6a, 0x57,0x41,0x22,0x99,0x6e,0x21,0xd4,0x61,0x7c,0x79,0x76,0xf1,0xd8,0xdc,0x21,0x12, 0x3e,0xe,0x2,0x3,0xcf,0x27,0xb0,0xac,0x5b,0x5f,0x9,0x78,0x93,0x53,0xb9,0x82, 0x5d,0x66,0x5b,0x7b,0x7d,0x9f,0x71,0x6e,0x2e,0x90,0xbb,0xfd,0x2,0xf7,0x22,0x98, 0x3c,0x53,0x75,0xa7,0x3c,0x66,0x6,0x3f,0x68,0x42,0x76,0x9c,0x60,0xee,0xef,0xc8, 0xed,0xcf,0x71,0x54,0x35,0x6f,0x12,0x78,0x82,0xfa,0xe9,0xaf,0x26,0xb9,0x8e,0x3c, 0x82,0x12,0x34,0x45,0xc2,0xf,0x4e,0x46,0x4f,0x5e,0xfe,0xb5,0xb2,0xa5,0x5a,0x3a, 0x45,0x3,0x8a,0x47,0x5f,0x69,0xa4,0xf8,0x7e,0xc9,0xc2,0xea,0xba,0x7d,0xcd,0xe4, 0xcc,0x76,0x99,0x8a,0x81,0x1a,0xff,0x0,0xba,0x1,0xcf,0xe3,0xed,0x5b,0x76,0x50, 0x78,0x79,0x4c,0x93,0xd9,0x24,0xea,0xd1,0x9d,0xa5,0xbc,0xb0,0xcc,0x7,0xa7,0x72, 0x47,0xeb,0x5c,0x6,0x97,0xe2,0x4d,0x45,0xae,0x21,0xb9,0xba,0x99,0x64,0x9e,0x12, 0x78,0x65,0x3,0x9d,0xa4,0x3,0x8e,0x1,0x3c,0x8e,0x9e,0x95,0xb9,0x65,0xa0,0xea, 0x97,0x91,0x43,0x77,0x15,0xd4,0x56,0xd7,0x52,0xa6,0x44,0x6d,0x7c,0x63,0x91,0x94, 0xf2,0x9,0x55,0x5c,0x2e,0x79,0xe3,0x9a,0xe6,0xad,0x42,0x51,0xfe,0x24,0xac,0x60, 0xdb,0xec,0x75,0xd7,0x93,0xc5,0x2d,0xb0,0x8a,0x1b,0x69,0x8c,0x25,0xc0,0x32,0x2, 0xca,0x7,0xd5,0x47,0xe3,0xd6,0xa8,0x45,0x71,0xb,0x5e,0xda,0xc9,0x4,0x31,0x6d, 0x5,0x89,0x69,0xd7,0x1,0x46,0xdc,0x8e,0x47,0xbe,0x47,0xe1,0x4e,0xd3,0x2c,0x2f, 0x6d,0x62,0x98,0xea,0x57,0x4f,0x72,0xa,0xfc,0xab,0x14,0xac,0x4a,0xfa,0x10,0xc4, 0xf2,0x78,0xe9,0x8a,0xd3,0x82,0xb,0x37,0x93,0x3b,0x27,0x63,0x8d,0xc5,0x9c,0x28, 0x1c,0xfa,0xf3,0xfd,0x2b,0x86,0x56,0x8e,0x85,0x6e,0xb5,0x66,0x85,0x9c,0x8d,0x76, 0xea,0x8f,0x9,0x50,0xcc,0x41,0x60,0xdb,0x87,0x43,0xc8,0x35,0x7a,0xcf,0x36,0x47, 0xcc,0x8d,0x72,0xc7,0x1b,0x90,0xbe,0x7,0xf2,0xa8,0xa1,0x11,0xc5,0x1a,0x88,0xf6, 0x85,0x1c,0xfc,0xbd,0x2a,0x53,0x28,0x44,0x27,0xa9,0xe7,0x8f,0x5a,0xc1,0x54,0x6b, 0x55,0xb9,0xbd,0x2e,0x63,0x4d,0x6f,0x7c,0xe8,0xc9,0x54,0x64,0x60,0xd8,0x20,0xf6, 0xa9,0x4c,0xe5,0x88,0x2b,0x90,0x2a,0x85,0xba,0x14,0x8c,0x2b,0x72,0xc0,0x2,0x4f, 0xb9,0xeb,0xfe,0x7d,0xaa,0x60,0xb8,0x1c,0x2f,0xeb,0x5d,0xd1,0xa9,0x2b,0x1d,0x76, 0x2c,0x34,0xe7,0x0,0xc,0xe7,0xd4,0xe,0x7f,0xa,0xca,0x97,0x5a,0x9d,0xb,0x15, 0x48,0xc0,0xc9,0x0,0x32,0x9c,0xf0,0x71,0xcd,0x5c,0x6c,0xe3,0xe6,0x7,0x1e,0xdf, 0xfd,0x6a,0xae,0xab,0x62,0x8a,0x8d,0x7d,0xa3,0x44,0x22,0x20,0x62,0xe4,0xc4,0x92, 0x29,0x1e,0xad,0xdc,0x7e,0x22,0xb7,0xa2,0xd3,0x97,0xbd,0xb1,0x15,0x23,0x26,0xad, 0x17,0xa9,0x2,0xeb,0xb7,0x47,0xfe,0x59,0xc5,0xf8,0x3,0x5a,0x16,0x1a,0x93,0xcc, 0x76,0xca,0x9,0x6c,0x67,0x68,0xfe,0x95,0x59,0xa5,0xf0,0xd2,0x4a,0x62,0x6b,0x5b, 0x41,0x20,0x6d,0xbb,0x4d,0xa7,0x7f,0x4f,0xbb,0xcd,0x59,0x78,0xad,0x62,0x56,0x16, 0x16,0x8,0xb8,0xfb,0xf2,0xc2,0x81,0x0,0xeb,0x9e,0x7b,0xd7,0x4d,0x4e,0x5e,0x5f, 0x75,0x58,0xce,0x9c,0x6a,0x45,0xfb,0xce,0xe5,0xc5,0x95,0xf3,0x9e,0x4a,0x9e,0xd4, 0x8f,0x23,0xef,0x3b,0xf,0x1e,0x98,0xaa,0x8a,0xc4,0xa8,0xc1,0xed,0xc7,0xd2,0x97, 0x71,0x1e,0x95,0xc9,0xed,0xe,0x8b,0x17,0x1a,0x56,0x24,0x14,0x3b,0x7d,0x41,0x19, 0xa5,0x2f,0xc0,0xe7,0xc,0x3f,0x5a,0xa7,0xbc,0xe3,0xad,0x2a,0xcd,0x8e,0xa6,0x9f, 0x38,0xac,0x5c,0x13,0xc,0x10,0x41,0x7,0xda,0x9d,0xe6,0xc,0x73,0x9a,0xa8,0x26, 0x7,0xa5,0x48,0x93,0xc,0xe3,0x15,0x4a,0xa0,0x89,0xc3,0xf3,0xd2,0x94,0xb0,0xff, 0x0,0x22,0x99,0xbb,0xda,0x97,0x77,0xb5,0x55,0xc4,0x2e,0xf2,0xe,0x71,0x91,0xed, 0xc5,0x21,0x94,0x76,0x5c,0xfa,0xd2,0xf5,0xe7,0xbd,0x21,0x50,0x68,0xbb,0x1d,0x80, 0xca,0x0,0xcf,0xf3,0xa6,0x79,0xeb,0x8c,0xf3,0x9f,0x4a,0x19,0x4e,0x38,0x19,0xa8, 0x4f,0x5f,0xba,0x41,0xa9,0x72,0x63,0xb1,0x2f,0xda,0x14,0x8f,0x7f,0x43,0x47,0x9f, 0x1f,0x43,0x80,0xde,0x8d,0xc7,0xeb,0x50,0xf3,0xe8,0xdf,0x85,0x21,0x6e,0xdb,0x5f, 0x1f,0x4c,0xd4,0xf3,0x1,0x3f,0xda,0x62,0x1c,0x33,0x0,0x7f,0xc,0x54,0x6d,0x7d, 0x6d,0x19,0xc3,0x48,0xa3,0xe9,0xc8,0xfc,0xea,0xbb,0x0,0x41,0x19,0x75,0xcf,0xfb, 0x20,0x7f,0x4a,0xa6,0xf6,0x92,0x22,0xe6,0x37,0x7,0xd8,0xfc,0xa7,0xff,0x0,0xaf, 0xf9,0x56,0x72,0xa9,0x2e,0x88,0xd,0x13,0xa9,0xda,0xe7,0xfd,0x6b,0x7e,0xa,0xc4, 0x7f,0x2a,0x7c,0x37,0xf6,0xf2,0x4a,0xaa,0xaf,0xc9,0xe9,0x90,0x47,0x4e,0x7b,0x8a, 0xc3,0x76,0x96,0x11,0x82,0xc1,0x89,0xec,0xff,0x0,0x29,0x3f,0xcc,0x1f,0xd2,0x8f, 0xb5,0x2a,0x4,0x33,0xc6,0x63,0xc3,0x64,0x79,0x83,0x3,0xf3,0xe9,0x59,0x7b,0x79, 0xae,0x84,0xbb,0xa3,0x42,0x7d,0x52,0xd1,0xac,0xdf,0xcb,0x94,0x39,0x28,0x42,0xed, 0x7,0x93,0x8a,0xab,0xa7,0x6a,0x36,0x96,0xf6,0x16,0xf6,0xd3,0x39,0x57,0x48,0xc2, 0x9c,0xa1,0xc5,0x30,0x3e,0x15,0x4a,0xaa,0xed,0xc0,0xc6,0x6,0x38,0xa6,0x9b,0x90, 0xa7,0xa6,0x71,0xef,0x59,0xcb,0x13,0x2b,0xec,0x47,0xb5,0x2f,0xc8,0x9a,0x6e,0xa2, 0x49,0x7f,0x26,0x66,0x23,0x69,0x21,0x81,0x20,0x7f,0x3a,0xa9,0xff,0x0,0x8,0xfe, 0x91,0x4,0x7b,0x61,0xb1,0x8d,0x8,0xc9,0xdc,0x83,0xe6,0x19,0xfe,0x75,0x3,0x5c, 0xc0,0xd8,0xf3,0x23,0x7,0x1d,0x9,0x19,0xc5,0x27,0xda,0xec,0x7,0xc,0x62,0x19, 0xf5,0x18,0x34,0x7d,0x65,0xf5,0x41,0xed,0x23,0xd5,0x1c,0x5f,0x89,0x34,0xc9,0x34, 0xdb,0xa8,0xa3,0x42,0x92,0x7d,0xa0,0x30,0x8c,0xc4,0x8e,0xac,0x4f,0x1c,0x6d,0x39, 0x19,0xc9,0x1d,0x2b,0xa3,0xb9,0x4d,0x12,0xd6,0xc6,0xd2,0x5d,0x53,0x4d,0x97,0xca, 0x8d,0x17,0x3f,0x24,0xaf,0xb4,0xe3,0xf8,0xb6,0x8a,0x66,0xa0,0x6d,0xee,0xf5,0x8d, 0x3e,0xe1,0x58,0x18,0xad,0x9,0x3b,0xbf,0x84,0x12,0x54,0xf1,0xff,0x0,0x7c,0xd6, 0xb9,0xbb,0xb5,0x9f,0xe5,0x71,0x69,0x37,0x3f,0xc4,0x1,0x27,0xf5,0xad,0x3e,0xb0, 0x9a,0x57,0x1a,0x70,0xbd,0xcc,0xb8,0x62,0xd0,0x6f,0xe1,0x6d,0x46,0xc2,0x25,0x82, 0xdc,0x7c,0xa1,0xa0,0x57,0x43,0x9e,0xe4,0x8c,0x3,0xfa,0x56,0xb5,0xb2,0x68,0xf1, 0x5a,0xac,0x96,0x70,0xc5,0x79,0x76,0xe0,0x28,0xe,0xfb,0xc9,0x3e,0xe4,0xe7,0x2, 0x95,0x20,0xd3,0x4a,0x95,0xfb,0x24,0x28,0x1b,0xae,0xc5,0xdb,0x9f,0xca,0xa1,0xb6, 0xf0,0xfe,0x87,0x5,0xef,0xda,0x6d,0xad,0xc4,0x73,0xe7,0x21,0x92,0x67,0x7,0xf2, 0xce,0x2a,0xa3,0x52,0x32,0x2d,0x28,0xb1,0x88,0xba,0xc8,0x77,0x9,0x77,0x5,0xb0, 0x63,0xc2,0x5b,0x42,0x8a,0xa0,0x7a,0x8d,0xdc,0xe7,0xeb,0x58,0x13,0x68,0xb1,0x34, 0x8c,0xd7,0x9b,0xcc,0xfe,0x66,0x5a,0xe6,0x5c,0x39,0x93,0xd8,0x67,0x22,0xbb,0x49, 0xac,0xa1,0xb8,0x98,0xbc,0x91,0xbb,0x39,0xea,0x77,0xd3,0x1b,0x48,0xb5,0x92,0x23, 0x1b,0x89,0x42,0x9e,0xc2,0x43,0x4b,0x95,0xbd,0x98,0x4a,0x9a,0x7d,0x4e,0x72,0xda, 0xc2,0xda,0x54,0xb7,0x68,0xd6,0x60,0xb1,0xdc,0xa6,0xd6,0x73,0xc1,0x2a,0xcb,0x52, 0x5a,0xc3,0x4,0xbe,0x36,0xf1,0x5d,0xc3,0x21,0xb,0x1b,0xdb,0xa8,0xf7,0x25,0x6, 0x7f,0xf4,0x11,0x5b,0xb6,0xba,0x15,0xa5,0xac,0x81,0xa2,0x7b,0x8c,0x6,0xd,0xb1, 0xe5,0x2c,0xb9,0xfa,0x1a,0xc7,0xb1,0xb4,0x6b,0xbf,0x10,0xf8,0x88,0xa8,0xc9,0xfb, 0x48,0x39,0x2d,0x8e,0x76,0x8f,0x4f,0xa1,0xad,0x22,0x9c,0x60,0xd3,0x14,0x60,0xa2, 0x86,0xdd,0xdb,0x18,0x26,0x90,0xa2,0x49,0xb0,0xa7,0xdf,0x72,0xa3,0x3,0xbe,0x71, 0xc8,0x1e,0xe4,0x56,0x12,0x6b,0x3a,0x74,0x23,0x63,0x5f,0xcf,0x76,0xcc,0xc4,0x91, 0x6c,0xb9,0x8c,0xf,0x4f,0x9b,0x96,0xe9,0xd4,0xa,0xd0,0xd6,0xf4,0xab,0x9b,0xa4, 0x64,0x36,0x33,0x3b,0xe,0xa,0x85,0x5c,0x75,0xe0,0xf3,0xc5,0x63,0xcd,0xa6,0xea, 0x56,0x10,0x10,0x74,0x6b,0xb7,0x18,0xdc,0x4c,0x78,0x91,0xb1,0xf5,0x1c,0xfe,0x55, 0x11,0xa7,0xcc,0x73,0x55,0x72,0x4e,0xe9,0x17,0xae,0x75,0x2b,0xd,0x6f,0xfd,0x1e, 0x3b,0xab,0x35,0x55,0x8f,0xe7,0x6f,0x2d,0x8c,0xa8,0x3a,0x71,0x95,0xe3,0xf3,0xaa, 0x97,0xba,0x1d,0xbd,0xeb,0x31,0xd3,0x12,0x21,0x12,0x2e,0x19,0x65,0x77,0x25,0x49, 0x3c,0x3f,0xcc,0xdd,0xf9,0xe9,0xe9,0x5c,0x6c,0x97,0xf7,0xf3,0xdc,0x8,0xed,0xd5, 0x55,0x5f,0xac,0x72,0x38,0x24,0x63,0xb9,0xe4,0x1a,0xbb,0x6b,0xe1,0x5d,0x33,0x5a, 0x8c,0x5e,0xa4,0x8d,0xa7,0xdd,0xa9,0xdb,0x30,0x48,0x8c,0xf0,0x4a,0xd9,0xea,0xb9, 0x39,0x7,0xa7,0x19,0xf4,0xeb,0x5b,0xba,0x3e,0xcd,0x5e,0xfa,0x11,0x1a,0x9c,0xcb, 0xde,0x35,0x74,0xed,0x66,0x28,0x44,0x96,0x7a,0x55,0xec,0xd7,0x37,0x36,0xea,0x4a, 0xca,0xd1,0x15,0x12,0x0,0x40,0x62,0x39,0xce,0xd1,0xef,0x52,0xb6,0xb7,0xa9,0x9, 0x5e,0x1d,0x42,0xe6,0x69,0x44,0x91,0x66,0x33,0x1b,0x98,0xc6,0x4f,0x4c,0x11,0x80, 0x41,0xc1,0xe0,0xf3,0xc5,0x49,0xa2,0xe8,0xda,0x76,0x89,0x24,0xab,0x6b,0xe6,0xb3, 0x18,0xb3,0x3d,0xdd,0xc8,0xda,0x1b,0x18,0xf9,0x11,0x78,0xc0,0x27,0x9c,0x67,0xf1, 0xad,0x1b,0x98,0x65,0xb8,0xb5,0x9e,0x8,0x93,0xcd,0x47,0x88,0x6d,0x68,0xd4,0x31, 0x46,0x5e,0x54,0xe0,0xfe,0x5c,0x1a,0xcd,0xca,0x1c,0xda,0x19,0xa4,0xce,0x5e,0xfe, 0x77,0xb8,0x86,0x6b,0x34,0x92,0x4b,0x57,0x96,0x36,0x12,0x29,0x50,0xeb,0x20,0xdb, 0xd3,0x27,0x90,0x6b,0x93,0x7d,0x32,0x7d,0xf1,0xc4,0x90,0x19,0x24,0x65,0xc0,0x8e, 0x2f,0x99,0xb9,0x1d,0x31,0xd6,0xbb,0x19,0xe6,0xba,0xb4,0xf2,0x93,0x57,0xd2,0x1e, 0xdf,0xce,0x4,0xc6,0xe6,0x44,0x62,0xe0,0x75,0xe1,0x49,0x20,0xf3,0xd0,0xf3,0x8a, 0xb5,0x3e,0xa5,0x67,0xa6,0xf,0x3a,0x30,0x91,0xa0,0x38,0x3e,0x54,0x61,0x9d,0xbd, 0x6,0x4d,0x76,0xd1,0xae,0xe9,0x2b,0x53,0x57,0x61,0x76,0x9d,0x99,0xcc,0xdb,0x78, 0x2b,0x5e,0x91,0x95,0xff,0x0,0xb1,0xee,0x54,0xe3,0x80,0xf3,0x44,0xb8,0xff,0x0, 0xc7,0xeb,0xa5,0xd2,0x3c,0x17,0x7f,0x65,0x76,0x6e,0xe5,0x85,0x62,0x7c,0x15,0x1, 0x98,0x63,0x1e,0xa4,0x83,0xed,0xd8,0x1a,0xce,0x37,0x77,0xfa,0xed,0xf3,0x28,0x63, 0x15,0xac,0x31,0x99,0x4a,0x63,0x2b,0x9e,0x8a,0xe,0x8,0xea,0x4f,0x6a,0xe6,0xb5, 0x18,0x75,0x39,0x6e,0x8c,0x57,0x41,0x97,0xc9,0x72,0xab,0x18,0x3f,0x2a,0x13,0xcf, 0x41,0xcf,0x71,0xf4,0xad,0x5a,0xad,0x55,0x59,0xbb,0x1b,0x3f,0x75,0x5d,0xa3,0xd1, 0x2e,0xec,0x52,0x79,0xc,0x3e,0x76,0x9f,0x34,0xa1,0x82,0x34,0x10,0xdd,0x27,0x99, 0x93,0xd0,0x6d,0x6c,0xc,0xfd,0x48,0xac,0xf9,0xf5,0xab,0x7d,0x3e,0xf4,0x58,0x26, 0x9f,0x3d,0xb4,0xad,0x81,0xe6,0x5d,0xaa,0x86,0xc7,0x4c,0x80,0x3a,0x80,0x78,0xc8, 0xac,0x2d,0x3,0x4a,0x3a,0x9d,0xb3,0xc6,0xc5,0x65,0x9e,0x23,0x86,0x8d,0x62,0x24, 0xa0,0xeb,0x90,0x73,0xc8,0x3f,0x4e,0xdc,0xf6,0xc7,0x53,0x6b,0x65,0xab,0x5b,0x7d, 0x9f,0x4b,0xd6,0x96,0x2b,0xfd,0x36,0x41,0xb2,0x37,0x96,0x16,0xdf,0x11,0xc7,0x0, 0x96,0x18,0xe3,0xb1,0xeb,0xcf,0x5e,0x2b,0x8e,0x74,0xfd,0x9f,0xc4,0xee,0x4d,0xb9, 0x8a,0xfa,0x36,0xab,0x79,0x6f,0x7a,0xd1,0x2d,0xd0,0xbd,0x77,0x24,0x88,0x8a,0xee, 0x60,0x7d,0x70,0x39,0x15,0xd3,0xc2,0xb7,0x93,0xb6,0xf9,0x62,0x8e,0x8,0xdb,0x20, 0xa8,0xee,0x3e,0x99,0x3c,0xd5,0x18,0x22,0x8e,0xd6,0x35,0xb3,0x8a,0xe6,0x14,0x42, 0xc7,0xe4,0x67,0x11,0xa8,0x27,0xa8,0xc2,0xe3,0x27,0x1e,0xbc,0xfd,0x6a,0xc3,0x4b, 0x1d,0xbc,0x9f,0x66,0x72,0x20,0x38,0xda,0x84,0x80,0xa7,0x1d,0x8d,0x79,0xf5,0x6a, 0x26,0xf4,0x47,0x45,0x3a,0x6b,0xa9,0x75,0xe7,0x92,0x1b,0x75,0x58,0x81,0x94,0xfd, 0xdd,0xac,0xe1,0x48,0x1e,0xc0,0xf5,0xac,0xd9,0xb4,0xb9,0x2e,0xaf,0x56,0x69,0x2e, 0x59,0xa3,0x59,0x11,0xca,0xbc,0x6a,0xb,0x6d,0x6c,0x80,0x71,0xc1,0x19,0xc6,0x68, 0x59,0x65,0xd8,0xbf,0x3a,0xbe,0x0,0x6e,0x6,0x76,0x9f,0xa9,0xe6,0x9b,0x15,0xdb, 0x79,0x67,0xe5,0x9f,0xcd,0x5c,0xb1,0x1,0x81,0x56,0x23,0xaf,0x6e,0x9d,0x6b,0xe, 0x79,0x45,0xd9,0x1b,0x2a,0x4b,0x74,0x3e,0xe6,0x29,0x7c,0x89,0x1f,0xcd,0x22,0xe0, 0xfe,0xf3,0x62,0x60,0xb6,0xe6,0x62,0x33,0xcf,0x19,0x3e,0xf9,0xa8,0x2d,0x34,0xa4, 0xb7,0xd8,0xc9,0x72,0x1e,0x12,0x43,0x21,0x94,0xaa,0xb0,0x1d,0x46,0xee,0xc7,0xbf, 0x41,0xcd,0x49,0x93,0x71,0x31,0xb9,0x8d,0x7c,0xc2,0x8d,0xb9,0x90,0x12,0x38,0xc7, 0x1c,0xf3,0xc6,0x68,0x49,0xd2,0x48,0x1e,0xda,0xe1,0x86,0xf4,0xc2,0x2,0xad,0x8e, 0x8,0xea,0x3d,0x40,0x39,0xcd,0x11,0xab,0x2b,0x35,0xd0,0x1c,0x21,0x2d,0x65,0xb9, 0x3b,0x44,0x23,0x8b,0xce,0x67,0x12,0x2e,0xee,0x7,0xdd,0xed,0xce,0x3f,0xcf,0x7a, 0x27,0x5f,0x3b,0x4,0x34,0xbb,0x24,0x1c,0x8d,0xdc,0x63,0x1d,0x3f,0x3c,0x53,0x52, 0x29,0x4,0xbf,0x22,0x29,0x66,0x1c,0xe7,0x1,0x5b,0x0,0x7d,0x38,0x35,0x38,0x58, 0x9e,0x10,0x24,0xf9,0x58,0xc,0x3,0x1f,0x0,0x1f,0x41,0xed,0x59,0xb6,0xc6,0xea, 0x72,0xf9,0x8e,0xd8,0x4a,0x8,0xf6,0x91,0xb7,0xa2,0xa1,0x51,0xbb,0x8e,0xa7,0x20, 0xfb,0x70,0x2b,0x37,0x54,0xd3,0x92,0x55,0x94,0x11,0x28,0x1d,0xfe,0x5c,0x1e,0x9d, 0x89,0x1d,0x3e,0x95,0x71,0x95,0xd2,0x56,0xde,0x4a,0xaf,0xc,0x12,0x33,0x82,0x31, 0xfe,0x45,0x2b,0xaa,0xcf,0x24,0x61,0x49,0x2d,0xc9,0x60,0x40,0x4,0xe1,0xb8,0xfd, 0x33,0x57,0x1a,0x9c,0xb2,0x4c,0x6a,0x4a,0xf6,0x92,0xd0,0xc9,0xb4,0xd3,0xed,0xad, 0xa5,0xb9,0x9e,0xd6,0x11,0xe6,0xe7,0x21,0x0,0xd,0xb5,0x7d,0x3a,0x7b,0xd4,0x72, 0x58,0xb2,0xc8,0xfb,0xec,0xed,0xd2,0x10,0x9b,0xe6,0x9d,0x48,0x5,0x57,0xbf,0x5e, 0xf8,0x18,0xe0,0x77,0xad,0xe7,0x92,0xb,0x78,0xd9,0xe3,0x55,0x25,0x98,0x67,0xcb, 0xfe,0x2e,0x2a,0x95,0xed,0xa0,0xbe,0x9e,0x33,0x81,0x24,0x6a,0xbf,0x37,0xe1,0xc9, 0xc8,0xfc,0xab,0x65,0x5b,0x99,0xb6,0xd9,0xd5,0x4a,0x70,0x72,0xb2,0x56,0x44,0xa9, 0x76,0x5e,0xe8,0x3a,0xcc,0xfe,0x44,0xf1,0x82,0x88,0xe3,0x72,0xe7,0x3e,0x87,0xa5, 0x54,0xd4,0x92,0xf2,0xea,0x6,0xb6,0x91,0xed,0x91,0x15,0x90,0x4,0x45,0xc2,0xb0, 0xc9,0xe3,0x3c,0x91,0xf7,0x47,0xe7,0x52,0xa5,0xa9,0x69,0x21,0x6e,0x2,0x23,0x12, 0x36,0x8e,0x98,0x3,0x8c,0xe7,0xe9,0x52,0x33,0xa3,0x46,0xb,0x6,0xdf,0x26,0xe1, 0x9f,0x2c,0x80,0x70,0x78,0x19,0xc6,0x33,0xfe,0x35,0x3c,0xc9,0x3e,0x62,0x65,0x28, 0xdf,0x47,0xb9,0x58,0xd8,0xb2,0xf9,0x46,0x75,0xb7,0x2f,0x90,0xf,0x96,0x32,0x33, 0xf8,0xf5,0xef,0x52,0x46,0xe9,0x2d,0xfb,0xb,0x8b,0x78,0xa5,0x71,0xd1,0x99,0x39, 0xe9,0xd8,0xf6,0x3d,0xea,0x4b,0x83,0x29,0x98,0xaa,0x23,0xed,0x86,0x44,0x3b,0xc0, 0xfb,0xb9,0xc0,0xe4,0x9e,0x3a,0x92,0x3f,0x3,0x55,0xd6,0x33,0x6,0xc9,0x25,0x56, 0x99,0xf7,0xef,0x2b,0x9c,0x67,0xb6,0x4f,0xd0,0x11,0x54,0xe7,0xa6,0xe5,0x47,0x95, 0x2b,0x12,0xd,0x90,0xdc,0x29,0x37,0x97,0x22,0x39,0xe,0x56,0x36,0x6e,0x17,0xf3, 0xcd,0x4c,0x2c,0x23,0x91,0xc8,0x7d,0xce,0x55,0xc8,0x21,0xf0,0x48,0x3e,0xa2,0x9e, 0x87,0x6c,0x89,0x2c,0x4d,0x1c,0x89,0xb7,0x63,0x2b,0x74,0x3c,0x8e,0xe4,0x53,0xc1, 0x63,0x2b,0x34,0xcb,0x82,0x57,0x1b,0x7c,0xc0,0x41,0xf4,0x38,0x15,0x8c,0x5c,0x96, 0xe6,0x7c,0xce,0xda,0xe,0x8a,0xce,0xdc,0x42,0x43,0xac,0x8c,0xd8,0xcb,0x9d,0xcc, 0xe,0x7f,0xa,0xc6,0xba,0x36,0x37,0x10,0x4b,0xf6,0x49,0x2e,0x15,0x43,0x90,0x24, 0x8d,0xce,0x1,0x1c,0x10,0xc0,0xf6,0xe9,0x56,0xa7,0xf2,0x2c,0xe5,0x92,0x64,0x56, 0x8e,0x43,0x8e,0x1,0x3,0x1e,0xe3,0xd6,0xa8,0xc7,0x69,0x1d,0xcd,0xb3,0x3a,0xa1, 0x41,0x26,0xe2,0xef,0x9c,0x92,0xcb,0x8c,0xe7,0xea,0xe,0x6a,0xa9,0x3b,0x3e,0x66, 0xee,0x74,0x42,0x30,0x6a,0xf2,0x16,0xde,0xf,0x10,0xad,0xb8,0x10,0xc3,0x15,0xc4, 0x2e,0x80,0xec,0x66,0x59,0x32,0xbe,0xa0,0x6e,0x5e,0x3f,0x13,0x54,0x6d,0x23,0xb9, 0x59,0x12,0xd9,0xad,0x24,0x96,0x45,0x24,0xf9,0x2b,0x19,0x8b,0x1e,0xfc,0xf6,0xcf, 0xb9,0xa7,0xe9,0x2,0x7b,0xfb,0xb9,0x23,0x24,0xb4,0x76,0xe0,0x46,0x91,0x84,0x0, 0x13,0xd3,0x9f,0xca,0xba,0x10,0xf3,0x47,0x3,0x65,0xdd,0x59,0x4b,0x2a,0xef,0x24, 0xfd,0xd2,0x47,0x5c,0xf4,0xc8,0xad,0xd5,0x47,0xd,0x34,0xd4,0xe7,0xc4,0x50,0x82, 0x7c,0xb7,0xb9,0x9c,0xfb,0xad,0x2e,0xd6,0x5d,0xc9,0x69,0x70,0x78,0xdc,0xac,0x9, 0x23,0xfd,0xa0,0x3a,0x8f,0xfe,0xbd,0x3a,0x78,0x1e,0xf1,0xda,0x49,0xa7,0x89,0x65, 0x5c,0x14,0x75,0xf9,0x54,0xfd,0x6,0x4d,0x47,0x3c,0x76,0xfe,0x6b,0xbc,0x89,0xe6, 0xb1,0x0,0x24,0x83,0x38,0x3d,0x3d,0x7f,0xcf,0x15,0x62,0xde,0x5b,0x50,0xa0,0xac, 0x28,0x64,0x5f,0x97,0x81,0x91,0xc5,0x37,0xaa,0xb8,0xe1,0x46,0xa5,0x3d,0x6f,0xa0, 0xf5,0xd4,0x66,0xb7,0x96,0x28,0x7,0xef,0x89,0x20,0x32,0xee,0xcb,0x8c,0xf1,0x9e, 0x95,0x66,0xff,0x0,0x53,0x8a,0xde,0xcc,0x3c,0xe9,0x3e,0xd9,0xe,0xc1,0xe4,0x95, 0xf,0xeb,0xeb,0xdb,0x15,0x5d,0x9a,0xe2,0x64,0x74,0x8f,0xc9,0x1b,0x54,0x3a,0xef, 0x3b,0x7b,0xf2,0x6,0x6,0x73,0xc0,0xa8,0x7e,0xcc,0xae,0xf0,0x20,0x19,0x54,0x3b, 0x9a,0x69,0xf,0xfa,0xc3,0x83,0xc0,0x3,0xf8,0x79,0x39,0xf5,0xe2,0xb0,0xe4,0x84, 0xa5,0x76,0x8d,0x23,0xa6,0xec,0xeb,0xbc,0x5,0x78,0x2f,0x56,0xf9,0xd6,0x57,0x93, 0xb,0x10,0x3e,0x64,0x65,0x18,0x7d,0xfe,0xbd,0xb3,0xd3,0xa1,0xae,0xce,0xb9,0xf, 0x4,0x46,0x50,0xde,0xbf,0xcb,0xb5,0xd2,0x12,0x36,0xf6,0xe1,0xb8,0xfe,0x55,0xd7, 0xd7,0xb5,0x85,0x49,0x52,0x49,0x7f,0x5a,0x9c,0x58,0x8b,0x7b,0x47,0x63,0x8d,0xf1, 0xd9,0x5f,0x37,0x4d,0x56,0x3f,0x7b,0xcd,0x3,0xff,0x0,0x1c,0xae,0x36,0x59,0x2d, 0x63,0x70,0xb2,0x5c,0xc6,0x19,0x7a,0x8d,0xe0,0x66,0xbd,0x3f,0x58,0xd1,0xf4,0xed, 0x55,0xed,0x9a,0xfe,0xd2,0x2b,0x83,0xe,0xe3,0x18,0x93,0x90,0x33,0x8c,0xf1,0xd0, 0xf4,0x14,0xd8,0x2c,0x2c,0xac,0x1,0x16,0xb6,0x76,0xf6,0xc3,0xa9,0xf2,0xa3,0x54, 0xfe,0x58,0xa8,0xa9,0xb,0xca,0xf7,0x31,0xf6,0x7c,0xda,0x9c,0xe,0x9f,0x1d,0xcc, 0xc0,0xbd,0xa5,0xa5,0xd4,0x88,0xe3,0xaa,0xc2,0x42,0x9f,0x7d,0xcd,0x81,0xfa,0xd6, 0xb3,0xe9,0x1a,0xcc,0xfe,0x58,0x4b,0x48,0x11,0x55,0x79,0x33,0xce,0x7,0x3f,0xf0, 0x0,0xd5,0xd4,0x49,0xa8,0x5a,0x47,0xf7,0xae,0x22,0xdd,0xe8,0x1b,0x2d,0xf9,0xe, 0x4d,0x34,0xea,0x31,0xb7,0xdc,0x8e,0x67,0xff,0x0,0xb6,0x64,0x7f,0xe8,0x58,0xae, 0x7f,0x65,0x4,0xee,0xcd,0x21,0x17,0x1d,0x8e,0x4e,0x7f,0x7,0xde,0x5f,0x41,0x1a, 0x5e,0x5e,0xdb,0xc4,0xca,0x4f,0x10,0x5b,0xef,0x20,0x12,0x9,0xc3,0x39,0xf6,0xf4, 0xa9,0xad,0x7c,0xb,0xa6,0x41,0x3a,0xcb,0x35,0xcd,0xfd,0xd3,0x2f,0xdd,0x59,0xa6, 0x50,0x7,0xe0,0x8a,0xb5,0xbc,0xf7,0x57,0x4,0x9d,0x90,0x22,0x3,0xd3,0x7b,0xe4, 0xfe,0x43,0xfc,0x6b,0x1f,0xc4,0x17,0x17,0xf1,0x68,0xd7,0x12,0xac,0x87,0xa,0xb9, 0x6f,0x28,0x6c,0xf9,0x7b,0xe3,0xaf,0x6a,0x72,0x9a,0x4a,0xc8,0xd9,0x5d,0x9c,0x55, 0xbe,0x91,0x65,0x7d,0xe2,0x9,0x62,0x30,0xb4,0xb6,0x72,0xea,0x8c,0x98,0x12,0x9f, 0x9d,0x55,0x4e,0x49,0x39,0xcf,0x55,0x26,0xba,0x4b,0xcb,0x3b,0xb,0x59,0x1d,0xed, 0xcc,0xe8,0xbe,0x60,0x8c,0x5b,0x86,0xc9,0x24,0xe,0x70,0x49,0xc8,0x1e,0xbf,0x4a, 0xad,0xe1,0xab,0x38,0xbc,0xe8,0x21,0x29,0xc4,0x10,0xb3,0x60,0x8e,0x85,0x8e,0x14, 0x9f,0x7c,0x3,0xf9,0xd7,0x61,0x4,0x48,0xd2,0x6d,0x2b,0x80,0x41,0xc8,0x1c,0x7e, 0x15,0x92,0x5c,0xe8,0xa9,0xd8,0xe5,0xd6,0x3b,0x39,0x6d,0x55,0xa3,0x8e,0xeb,0xce, 0x8c,0xfc,0xdb,0x2e,0x59,0x91,0xc7,0xe2,0xdc,0x7e,0x55,0x71,0x34,0xb8,0xa4,0xda, 0xeb,0x3,0x0,0x7f,0xbd,0x7f,0x29,0x3,0xf0,0x18,0xfe,0x75,0xb1,0x7b,0xa5,0x5b, 0x48,0x1e,0x5c,0x6d,0x95,0xfa,0xb2,0xf5,0xcf,0xf9,0xc5,0x50,0x48,0x2f,0x15,0xcc, 0x46,0x74,0x29,0xdb,0xe5,0xc1,0xc5,0x67,0x24,0xe2,0xf5,0x21,0x58,0xcd,0xf2,0x84, 0x72,0x4b,0x16,0xe7,0x21,0x1f,0x19,0x66,0xcf,0xea,0x79,0xa7,0x6c,0x52,0x3f,0x88, 0x8c,0x1e,0x95,0x6d,0xed,0xf1,0x71,0x30,0xda,0x79,0x61,0xc7,0x5c,0xd5,0x73,0x3, 0xa5,0xb8,0xbb,0x1b,0xca,0xfd,0xa1,0xa3,0x70,0x17,0x38,0x18,0xe3,0x1f,0x97,0xeb, 0x59,0x28,0xb6,0xf6,0x1a,0x92,0x23,0x63,0x9c,0x3,0x1c,0xb9,0xf5,0xc0,0x34,0xc, 0x63,0x9f,0x30,0x7f,0xc0,0x7f,0xfa,0xf5,0x7a,0x3b,0x7b,0xb9,0x1,0xf2,0xb4,0xf9, 0xc8,0xcf,0x56,0x1,0x3f,0x99,0x7,0xf4,0xab,0x69,0xa3,0xde,0xc8,0x32,0xed,0x1c, 0x39,0xec,0x17,0x71,0x1f,0x8f,0x1f,0xd6,0xaa,0x34,0xa4,0xfa,0x11,0xcc,0x8c,0x6c, 0x3b,0xef,0xf2,0x98,0x62,0x38,0x9a,0x56,0xc8,0xea,0x6,0x3d,0xfd,0xea,0x62,0xab, 0x1e,0x3c,0xc9,0x91,0x7d,0x32,0x36,0xfe,0x5c,0xd7,0x41,0x6f,0xa3,0xc3,0x7,0x98, 0x5c,0xbc,0xad,0x2c,0x66,0x36,0x2f,0x8c,0x60,0xf5,0xe0,0x55,0xbb,0x4d,0x3a,0xd6, 0xd5,0x8b,0x45,0x6b,0x12,0x31,0xfe,0x20,0x83,0x3f,0x9d,0x6f,0x1c,0x33,0x62,0x72, 0x47,0x37,0x6b,0x61,0x71,0x7c,0x5f,0x13,0x18,0xe2,0xc7,0xca,0x44,0x2d,0x96,0xeb, 0xd1,0x89,0x0,0x7e,0xb4,0xe1,0xe1,0xc9,0x1e,0xe7,0xcc,0x96,0xe2,0x28,0xc0,0x1b, 0x55,0x79,0x62,0x91,0x8f,0xba,0x83,0xa6,0x0,0x1e,0xfc,0xd7,0x56,0xc3,0x6,0x9a, 0x51,0x18,0x9c,0xa8,0xe4,0x62,0xba,0x23,0x45,0x40,0x5c,0xc6,0x14,0x76,0x56,0x16, 0xc0,0x24,0xd7,0x12,0xbe,0x7,0xdd,0x54,0xc0,0xc7,0xbe,0x6,0x7f,0x33,0x56,0x15, 0xf4,0xc4,0x18,0x58,0xd4,0x63,0xb9,0x81,0x89,0xfc,0xc8,0xad,0x26,0x82,0x16,0x3, 0x31,0xa9,0xc7,0x3,0x2a,0xd,0x33,0xec,0xf0,0x3,0x9f,0x21,0x3f,0xef,0x81,0xfe, 0x15,0x6d,0xc8,0xa,0x1f,0x6f,0xd2,0xe3,0x3f,0xeb,0xa1,0x53,0xfe,0xe6,0x3f,0xa5, 0x39,0x35,0x1b,0x0,0x7e,0x5b,0xa8,0xbf,0xc,0xa,0xb6,0x76,0x27,0xdd,0x80,0x9f, 0xa2,0x1a,0x82,0x49,0x58,0x70,0x20,0xc1,0xec,0x4a,0x9c,0x7f,0x2a,0xcd,0xe9,0xb8, 0x13,0xc3,0x77,0x6f,0x70,0xdb,0x62,0x99,0x64,0xc7,0xa1,0xcd,0x5a,0x18,0xac,0x93, 0x7e,0x96,0xa7,0x32,0x48,0x91,0xf1,0xf7,0x40,0xe7,0xf2,0x14,0xd7,0xd5,0x6e,0x24, 0x18,0xb5,0xb5,0xc0,0xcf,0x12,0x4c,0x76,0xaf,0xe5,0xd6,0xa9,0x54,0x8f,0x56,0x3b, 0x1b,0x24,0x8f,0xf2,0x6a,0xa4,0xf7,0x96,0xf0,0xb6,0xd7,0x93,0xe7,0xfe,0xea,0x82, 0x58,0xfe,0x3,0x9f,0xd2,0xb3,0xca,0x4f,0x39,0xd,0x3d,0xdc,0xac,0x3f,0xbb,0x19, 0xd8,0xbf,0xa7,0x27,0xf3,0xa9,0x61,0x8a,0x28,0x33,0xe5,0x46,0x89,0x9e,0xbb,0x46, 0x33,0xf5,0x3d,0xea,0x5d,0x64,0xf4,0x41,0xcb,0xd4,0x93,0xed,0x77,0x12,0x1c,0x47, 0x6e,0x22,0x1f,0xde,0x98,0xf3,0xff,0x0,0x7c,0x8f,0xeb,0x4e,0x30,0xbc,0xa0,0x9, 0xe6,0x69,0x7,0xf7,0x47,0xb,0xf9,0x7f,0x8d,0x3b,0x80,0x30,0xf,0xe0,0x3a,0x52, 0x86,0xc0,0xe9,0x53,0xcd,0x71,0x8f,0x89,0x15,0x17,0x8,0xa1,0x57,0xd1,0x78,0xa5, 0x1f,0x95,0xa,0xc0,0xa,0x40,0x69,0xa6,0x90,0x99,0x2a,0x9c,0xa,0x63,0x11,0xc6, 0x4f,0x14,0xa,0x61,0x27,0xd7,0xad,0x57,0x36,0x80,0x79,0x6,0xb7,0x14,0xc2,0x42, 0xef,0x14,0x8d,0x2a,0xc8,0x4a,0x66,0x3d,0xc3,0x83,0xe9,0xdc,0x63,0x1c,0x56,0x5, 0xc3,0xea,0x52,0xb8,0x5b,0x89,0x14,0x2f,0x64,0x91,0x15,0x78,0x3e,0x83,0x8a,0xf7, 0x19,0x51,0x4b,0x72,0x1,0xc1,0xe3,0x8e,0x95,0x9b,0x3e,0x97,0xa6,0xca,0x59,0xa5, 0xb2,0x82,0x52,0xdd,0x4b,0xa0,0x6f,0xe7,0x44,0x6b,0xa8,0x2d,0x51,0x8c,0xe8,0xa6, 0xef,0x73,0xc5,0x23,0xb6,0xba,0xb0,0x8d,0xa3,0x41,0x13,0xfc,0xa5,0x42,0xdc,0x38, 0xdb,0xb4,0x9c,0x90,0x17,0x39,0xc6,0x49,0xfc,0xeb,0xa9,0xd3,0x74,0xd,0x4a,0x58, 0x21,0x36,0xba,0x67,0x98,0xcc,0x84,0x9,0xa6,0xfd,0xd2,0xb6,0x79,0xf9,0x43,0x65, 0xb6,0x9c,0x75,0x20,0x74,0xaf,0x40,0x8a,0x1b,0x7b,0x58,0x8c,0x56,0xb6,0xd0,0xc5, 0x19,0xea,0xa8,0x81,0x41,0xfa,0x81,0x8a,0x41,0x35,0xd4,0x39,0x11,0x98,0x90,0x1e, 0x4e,0x23,0xc1,0x3f,0x52,0xd,0x65,0x2c,0x74,0x65,0xa2,0x1c,0x69,0x46,0xf6,0x6c, 0xe1,0xa3,0x9f,0x59,0xb0,0x92,0xe2,0xc2,0xea,0xdd,0x16,0xee,0xd8,0x2b,0x60,0xb6, 0xf1,0x2c,0x6c,0x4f,0x21,0x87,0x6f,0x94,0xf6,0xed,0x8a,0xc0,0xd5,0xec,0xa4,0xdd, 0x73,0x79,0xe4,0xb4,0x71,0xcb,0x23,0x48,0x14,0x64,0x88,0xd9,0xbb,0x64,0x81,0x91, 0x5a,0x7e,0x38,0xbc,0xbd,0xb5,0xf1,0x34,0xb3,0x2c,0xce,0xc4,0xe9,0xc8,0xcd,0x9e, 0xe1,0x5a,0x4f,0xfe,0xb5,0x75,0xf6,0xfa,0x7c,0x2f,0x65,0x69,0x71,0x15,0x94,0x25, 0xcc,0x28,0x49,0xa,0x14,0xf2,0xa0,0xfe,0x3d,0x6a,0xdd,0x75,0x41,0x2a,0x89,0x6e, 0x67,0x28,0x59,0xe8,0x79,0x65,0xa5,0xb6,0x96,0xb2,0xae,0x6e,0x14,0x90,0x3,0x3b, 0x4a,0x55,0x3e,0x6e,0xe3,0xef,0x1a,0xb1,0x79,0x36,0x8e,0xba,0x5c,0xed,0x1d,0xd4, 0x4d,0x23,0x5c,0xac,0x6a,0x8a,0xfc,0xe3,0x19,0xdc,0x47,0xa7,0x4,0x7d,0x71,0xeb, 0x5e,0xa8,0xf6,0xb2,0x49,0xe,0xc6,0x8a,0x3c,0x7a,0x14,0x52,0xb9,0xf7,0xac,0x5b, 0x8f,0xe,0xdd,0xde,0x4f,0xe5,0xcf,0x15,0x81,0xb7,0xc6,0xe,0xd8,0xc2,0x92,0x33, 0x9c,0x10,0x7,0xf5,0xa1,0x66,0x29,0xbd,0x41,0xd3,0x39,0x13,0xa8,0x4d,0xfd,0x9f, 0xf6,0x5b,0x68,0x65,0x96,0xe2,0x6f,0x9c,0x18,0xd4,0xbf,0x94,0x9c,0x64,0xe1,0x41, 0xe6,0x93,0x4b,0xd7,0xb5,0x1b,0x79,0xb3,0x1d,0xea,0x6f,0xc9,0xd,0x15,0xc1,0x4e, 0x73,0xef,0xc1,0x7,0xda,0xbb,0x9b,0x7d,0x12,0xf6,0xd9,0xe3,0xf2,0x2e,0x20,0x8a, 0x14,0x41,0x18,0x48,0xc0,0x5d,0xc0,0x0,0x39,0x20,0x64,0xf4,0xee,0x6b,0x59,0x21, 0x7f,0xb1,0xfd,0x9e,0x63,0x1c,0x91,0x1f,0xbe,0x86,0x35,0xda,0x7f,0xc,0x54,0xd4, 0xc7,0xc1,0x69,0xcb,0x72,0x7d,0x94,0x77,0x67,0x7,0xe,0xb1,0x70,0xd7,0xd2,0x49, 0x33,0x47,0x24,0xbc,0x87,0xde,0xe5,0x57,0xe8,0xa4,0x1f,0xe9,0x5b,0x5a,0x6d,0xe4, 0x9e,0x6c,0x91,0x31,0x52,0x24,0x4c,0x88,0x80,0x38,0xe3,0xd3,0x24,0x7a,0xd6,0xab, 0xe8,0x9a,0x7c,0xd2,0xcc,0xb3,0x5b,0xc1,0xe4,0xa5,0x8c,0xbe,0x54,0x3b,0x40,0x53, 0x27,0xcb,0x83,0x8f,0x5a,0x96,0xcb,0x44,0xb1,0xd3,0x65,0x12,0x5a,0xc3,0xb5,0x80, 0xf9,0x58,0xb1,0x6c,0xf,0xc7,0x8f,0x5e,0x98,0xac,0x2a,0xd5,0x82,0x82,0x95,0xb7, 0x5,0x4a,0x37,0xbc,0x59,0xbb,0x63,0x62,0x86,0xd6,0x32,0xe8,0xaa,0x76,0x83,0xb4, 0xe4,0xe3,0xf5,0xab,0x46,0xd6,0x35,0x52,0xdb,0x54,0x71,0xd8,0x62,0xa9,0x47,0x77, 0x70,0xb9,0xf9,0xc3,0x7a,0x6,0x15,0x6e,0xde,0xe4,0x5c,0x44,0xb,0x2e,0xd2,0x79, 0xc1,0xee,0x28,0xa5,0x28,0x4d,0x59,0x23,0xaa,0x2d,0x3d,0x10,0x8b,0xbd,0x47,0xfa, 0x92,0xdd,0xfb,0x9a,0x53,0x24,0xf8,0xf9,0x6d,0xd7,0xf1,0x43,0xfe,0x15,0x6c,0x30, 0x63,0xeb,0x4e,0x0,0x7a,0x7e,0x95,0xd0,0xa2,0x51,0x87,0x7f,0x3e,0xa2,0xd6,0xce, 0x90,0x42,0x56,0x41,0x82,0xa5,0x21,0x63,0xd0,0xe7,0xb0,0xac,0xa8,0xfc,0x45,0xaa, 0x41,0x12,0xc5,0x36,0x83,0x77,0x32,0xaa,0x6c,0x75,0xa,0x42,0xbf,0x18,0xe4,0x79, 0x7f,0xa6,0x6b,0xb2,0xc7,0xa0,0xa4,0x19,0xf5,0x3f,0x9d,0x34,0x83,0x43,0x8a,0x83, 0x59,0xbd,0x8e,0xd3,0xec,0xe9,0xa6,0x6b,0x2a,0x36,0xed,0x5c,0xdb,0x6e,0x65,0x1d, 0xbe,0x6c,0xfb,0xfa,0x56,0x8d,0x86,0xb3,0x7c,0x8b,0x5,0xac,0x7a,0x1d,0xf4,0x30, 0x5,0x11,0x80,0xca,0xc0,0x63,0x1f,0x78,0xfc,0x9c,0x9f,0x5e,0x6b,0xa7,0x3,0xd4, 0x9a,0x5c,0xe,0xbc,0x67,0xd7,0x15,0xac,0xa6,0xe4,0x2b,0x24,0x52,0x8c,0x28,0x62, 0x8c,0xa,0xf7,0x0,0xd4,0xc2,0x24,0x3d,0xff,0x0,0x23,0x4b,0x73,0x1e,0xf8,0x8e, 0x3e,0xf2,0xf2,0x3f,0xc2,0xaa,0x2,0x18,0x2,0x3a,0x1a,0xc1,0xda,0x3b,0x8d,0x16, 0x8c,0x29,0xea,0x7f,0x3a,0x4,0x43,0xb3,0x1a,0xa9,0xc7,0xbd,0x18,0x53,0xd4,0x3, 0xf5,0xa5,0xcc,0x82,0xc5,0xe1,0xf2,0xf5,0x27,0xf1,0xa7,0x8c,0x37,0x18,0xac,0xf0, 0x14,0x74,0x3,0xf0,0xa7,0x65,0x7b,0xa8,0x3f,0x5a,0x6a,0xa2,0xd8,0x2c,0x5d,0x21, 0x93,0x91,0x92,0x3d,0xe9,0xc2,0x45,0x23,0x3b,0x85,0x51,0xca,0xf6,0x51,0x9a,0x72, 0x39,0x43,0x94,0x1f,0x51,0x54,0xa6,0x2b,0x17,0xd5,0xc1,0xe8,0x45,0x2e,0x45,0x42, 0xb2,0x6e,0x5f,0x4f,0x6c,0x53,0xb7,0x7d,0x2b,0x55,0x21,0xd,0xb8,0xb8,0x82,0xd2, 0x23,0x34,0xf2,0xa4,0x51,0x8f,0xe2,0x73,0x81,0x9f,0x4a,0xa7,0x67,0xad,0x69,0x9a, 0x9c,0xa6,0x2b,0x4b,0xb4,0x95,0xc0,0xc9,0x55,0x4,0x12,0x3d,0xb2,0x2b,0x9f,0xf1, 0xcd,0xbd,0xd4,0xf0,0x5a,0x4d,0x8,0x12,0x45,0x13,0x3e,0xf4,0xf7,0x20,0x60,0xe3, 0xbf,0x43,0xf9,0xd7,0x39,0xe1,0x48,0x6e,0x23,0xf1,0xd,0xad,0xcc,0xff,0x0,0xbb, 0x89,0x49,0x8c,0xb1,0x3f,0xde,0x52,0x0,0xcf,0xd7,0xf9,0x53,0xb5,0xd5,0xc6,0x91, 0xe9,0xe5,0x58,0x74,0xfc,0x8d,0x42,0x5c,0xa9,0x39,0x50,0xf,0xbd,0x58,0xc,0xf, 0x52,0x32,0x69,0x4a,0x86,0x18,0x20,0x11,0x52,0xe3,0x70,0x29,0x96,0x27,0xf8,0x56, 0x9a,0x79,0xf4,0x1f,0x41,0x56,0x4c,0x29,0xe9,0x4c,0x31,0xa0,0xf5,0xac,0x5c,0x58, 0x10,0x62,0x32,0x8,0x60,0x30,0x7b,0xc,0xe2,0xa1,0xfb,0x15,0xb2,0x92,0x61,0xdd, 0x19,0x3d,0x42,0x12,0x1,0xfc,0x2a,0xd7,0x96,0x99,0xea,0xdf,0x85,0x2e,0xc5,0xed, 0xb8,0xfd,0x6a,0x79,0x47,0x73,0x29,0x74,0xcd,0xae,0x4a,0xed,0x50,0x7f,0xba,0xa5, 0x33,0xf9,0x1c,0x7e,0x94,0xe3,0x63,0x32,0xaf,0xc9,0x23,0x9f,0x63,0x27,0xf8,0x8a, 0xd4,0xdb,0xee,0xdf,0x9d,0x27,0x3e,0x86,0xa1,0xd2,0x8b,0x27,0x96,0x26,0x57,0xd9, 0xae,0x31,0xcc,0x72,0x67,0xea,0xa6,0x91,0xac,0x1d,0xb8,0x90,0xc6,0xe3,0xae,0x1e, 0x2c,0xe2,0xb5,0x3a,0x76,0xfd,0x5,0x27,0x98,0x3a,0x14,0x38,0xf5,0x6,0xa7,0xd8, 0xc4,0x5e,0xce,0x3d,0x8c,0xa6,0xd3,0xb,0x26,0xdd,0xb6,0xa4,0x63,0xf8,0xa0,0xe3, 0xf9,0xd4,0x51,0x69,0x62,0x16,0x26,0x3b,0x6b,0x14,0x27,0xa9,0x48,0xf0,0x6b,0x68, 0xec,0x6e,0xdf,0x4c,0xe6,0xab,0xdd,0x5d,0x43,0x6a,0x6,0xee,0x58,0xfd,0xd5,0x7, 0x26,0xa5,0xd2,0x8a,0xd5,0x83,0xa7,0xe,0xa5,0x3f,0xb3,0xcc,0xf,0xfa,0xc8,0x7, 0xd5,0x18,0xd4,0x82,0xde,0x46,0x1c,0xc9,0x1,0xff,0x0,0xb6,0x66,0x8f,0xb6,0xb3, 0x1,0xb6,0x14,0xe7,0xb9,0x94,0xff,0x0,0x85,0x34,0xdc,0xcc,0x7a,0x45,0x18,0xff, 0x0,0x81,0x93,0x59,0xaf,0x64,0xb6,0x17,0xee,0xd1,0x62,0x2b,0x66,0x8d,0xb3,0xe7, 0xa2,0x7b,0x28,0x23,0x3f,0x9d,0x5f,0x57,0xdc,0xb9,0xc8,0x38,0xf4,0x35,0x92,0xd7, 0x73,0x81,0xc4,0x69,0x9f,0x52,0x4d,0x44,0x75,0xb,0xaf,0xbc,0xf6,0xd1,0x95,0x1d, 0x7e,0x72,0x3f,0xc6,0xb5,0x8d,0x6a,0x71,0x1a,0xa9,0x13,0x75,0x4f,0xce,0x33,0xd0, 0x1e,0xa6,0xb0,0x3c,0x3e,0xa5,0xe6,0xd5,0xe6,0xcf,0x32,0x5f,0x4a,0x32,0x3d,0x3, 0x1c,0x55,0x1,0x79,0x79,0xbd,0xc4,0x92,0x92,0x19,0xc3,0x8d,0xa7,0x21,0x57,0xd2, 0xa1,0x72,0xf0,0xac,0x9f,0x67,0x67,0x49,0x4b,0x33,0x9c,0x36,0x32,0x49,0xcf,0x6a, 0xbf,0xac,0x23,0x58,0xf2,0xb7,0x64,0xce,0x96,0xfe,0xee,0x5b,0x5b,0x47,0x9d,0x21, 0x32,0x85,0xe5,0x94,0x63,0x18,0xf5,0x39,0x35,0xc3,0x6b,0xc6,0x1d,0x72,0x16,0xdd, 0x75,0x79,0x4,0x7f,0xc7,0x6f,0x6b,0x33,0x3e,0xff,0x0,0x41,0xb7,0x38,0xa9,0x67, 0xba,0xbb,0xd5,0xed,0x66,0xb2,0xba,0x70,0xe9,0xf2,0xb2,0xb1,0xf9,0x5b,0x20,0xf4, 0x3e,0xb5,0x6e,0x5b,0x9b,0x96,0x2c,0xaf,0xe4,0x83,0xff,0x0,0x2c,0xd3,0x4,0xed, 0xe7,0xa0,0xe9,0xd8,0xf,0xca,0x9c,0xaa,0x6b,0xa3,0x34,0x9d,0x4,0xfd,0xdb,0x9c, 0xc0,0xb5,0x8d,0x34,0xe2,0x88,0xb7,0xf,0x15,0xb0,0x2c,0x6d,0xee,0x61,0x8c,0xb0, 0x3,0xa9,0x3,0x6e,0x33,0xd2,0xa3,0x4f,0x12,0x41,0xe5,0x6d,0x48,0xe7,0xa,0xad, 0xb4,0xcd,0xe5,0x85,0x8c,0x1f,0x4c,0x80,0x0,0xfc,0x71,0x5a,0xd7,0xf6,0xb2,0xea, 0x25,0x1a,0x65,0xdd,0x1e,0x78,0xc1,0xdb,0x8e,0xc7,0x9e,0xbd,0xaa,0x51,0xa,0xc5, 0x6d,0xe5,0xc6,0xaa,0x13,0x90,0x89,0x92,0xeb,0x8f,0x4e,0x78,0x27,0xde,0xab,0xda, 0x27,0xf1,0xa,0x58,0xa,0x5c,0xa9,0x73,0x6a,0x63,0xc9,0x73,0x76,0xf3,0x47,0x2d, 0xbd,0xa1,0x97,0x70,0xca,0x92,0x40,0x24,0x7a,0xf3,0xc1,0x15,0xb,0x6b,0x62,0xee, 0x48,0x99,0x6c,0x6e,0x24,0xb8,0x87,0xaa,0x81,0xb9,0x3f,0x25,0x20,0x9f,0x5e,0xc3, 0x8e,0xf5,0xa6,0xaa,0x30,0xb6,0xfe,0x4c,0x7e,0x48,0x5c,0x95,0x28,0x2,0xe3,0xb6, 0x0,0xe3,0xaf,0xb5,0x4a,0x9a,0x70,0xb7,0x9,0xe5,0xfe,0xe9,0x47,0xcb,0xf2,0xc, 0xe,0x80,0xf1,0x8c,0x76,0xa6,0xe7,0x6,0xac,0x4a,0xcb,0xa3,0x1d,0xe4,0x5a,0x4b, 0x8b,0x3d,0x6b,0x4a,0x8a,0x4f,0x2b,0x2c,0x76,0x92,0x85,0x9b,0x68,0x71,0xe8,0x41, 0xc8,0x3c,0x9f,0xf0,0xae,0x6f,0xc4,0x3e,0x1d,0x82,0xe8,0xdb,0x45,0xa6,0xfd,0x95, 0x59,0xa2,0x99,0x67,0x89,0xe4,0x20,0xb1,0xde,0xbb,0x77,0x1f,0x5e,0x4e,0xf,0xf8, 0x57,0x43,0x69,0x61,0xc,0x6f,0x27,0x11,0xac,0x2e,0x43,0x3a,0x21,0x28,0xa0,0xfe, 0x7,0xfc,0xe6,0x92,0x5d,0xa,0xdd,0xf2,0x6d,0x25,0x31,0x2b,0x8d,0xac,0xbb,0xcb, 0x2b,0x67,0xd0,0xf5,0xf5,0xfc,0xeb,0x38,0x62,0x3d,0x93,0xdc,0xcf,0xea,0xd4,0xd4, 0xbd,0xe6,0x56,0x48,0xd4,0x41,0xe4,0xf9,0x9a,0x74,0x57,0x32,0x63,0x79,0xbb,0x8d, 0x91,0x58,0x0,0x0,0x21,0xc2,0x94,0x27,0x81,0xda,0xaa,0x5c,0xe9,0x10,0xa5,0xc0, 0xdd,0x6f,0x6a,0xd2,0x82,0x19,0x4c,0x24,0x4e,0x1c,0xe3,0xfb,0x9c,0x7a,0x9e,0xa0, 0x56,0xb9,0xb3,0xb5,0x80,0x9,0xa2,0x19,0x94,0x0,0x1d,0x47,0xca,0xb,0xe,0xa4, 0x7a,0x55,0xe6,0xb4,0xc,0x7c,0xc4,0x3b,0xbe,0x84,0x1a,0x97,0x8a,0x77,0xd0,0xd2, 0xa5,0x2a,0x52,0x47,0x23,0x2f,0x87,0xa3,0x12,0x41,0x20,0xd3,0x92,0x1c,0x60,0x7, 0x58,0x5e,0x37,0x4,0x7a,0xb6,0x78,0x1f,0x41,0x5a,0xb0,0xab,0xda,0x46,0xa9,0x2d, 0xeb,0x99,0x49,0xc,0x16,0x59,0x9c,0x77,0xe7,0x19,0x27,0x9f,0x7a,0xbe,0x2d,0x66, 0x49,0x4,0xb3,0xca,0xbb,0x49,0xe1,0x50,0xe0,0x10,0xf,0x71,0x4f,0x58,0x64,0x54, 0x21,0xe2,0x91,0xa3,0xd8,0xab,0x30,0x70,0x1f,0x73,0x11,0xf3,0x10,0x8,0xe0,0x74, 0xa7,0x2a,0xee,0x4b,0x53,0x39,0x61,0xe2,0x92,0x6a,0x45,0x69,0x56,0xd2,0x6b,0x16, 0x33,0x44,0xca,0xeb,0x36,0xe4,0x66,0xd8,0xc5,0x49,0xce,0x41,0x73,0x86,0x23,0xa5, 0x66,0xcd,0x79,0x1a,0x23,0x18,0xe6,0x50,0x88,0x31,0xbd,0x80,0xea,0x33,0x80,0x3b, 0x1,0xcd,0x57,0xf1,0x24,0x8d,0x6c,0x88,0xb0,0xa6,0x63,0x40,0x49,0xed,0xb4,0x60, 0x63,0xaf,0x4a,0xe7,0xac,0x6d,0xa5,0xbf,0x2,0xe2,0x78,0x2d,0x6e,0x2d,0x10,0xe0, 0x96,0xb9,0x91,0x8,0x3e,0xd8,0xe0,0xf5,0xad,0x68,0xd1,0x8c,0x97,0x33,0x39,0x2b, 0x55,0xe5,0xf7,0x53,0xb9,0xd1,0xc1,0xaf,0x90,0x5b,0xed,0x52,0xc4,0x32,0x47,0x96, 0xd1,0xf2,0x77,0x76,0x18,0x4,0xe7,0xf2,0xad,0x8,0xcc,0x91,0xaa,0xad,0xa4,0x45, 0xf0,0x3e,0x67,0x73,0x81,0x83,0xd7,0x76,0x79,0xcd,0x79,0x8e,0xaf,0xa8,0xc5,0x6f, 0xac,0x2c,0x72,0x59,0x48,0x22,0x8c,0x9,0x50,0x47,0x31,0x46,0x70,0x7d,0x18,0x83, 0x81,0xd7,0xa7,0xa5,0x75,0xba,0x6d,0xdd,0xa5,0xc6,0x97,0xd,0xea,0x9,0x60,0x47, 0x7,0x69,0x98,0x89,0x30,0x39,0xc7,0xbf,0xe7,0x5b,0xd6,0xc2,0xa6,0x93,0x89,0x10, 0xa9,0x28,0xea,0x74,0x13,0xcf,0xa,0xce,0x76,0xb3,0xc2,0x76,0x94,0x12,0x22,0x96, 0x56,0x0,0x70,0xe,0x3d,0xc7,0x7a,0x73,0x34,0x92,0xb8,0x74,0x93,0xcb,0x65,0x20, 0x95,0x45,0xce,0x78,0xac,0x35,0xd5,0x58,0x5c,0xc5,0x8,0x9a,0x20,0x8,0x2a,0xee, 0x24,0x20,0x8c,0x9e,0xa1,0x73,0xcf,0x5a,0xb3,0x7d,0x7d,0x16,0x9e,0x5,0xc1,0x9f, 0xcc,0x7c,0x84,0x5d,0x83,0x6e,0x1,0x3c,0x93,0xcd,0x61,0xf5,0x6d,0x39,0x52,0x14, 0xeb,0xbb,0xdd,0x1b,0x1f,0x69,0x9d,0x51,0xee,0x18,0xba,0x44,0x8,0xcc,0x6e,0xb, 0x6,0x6f,0x7c,0xf4,0xa5,0x86,0xea,0x2b,0xd8,0xb7,0x79,0xf0,0xa3,0x5,0xda,0x63, 0x49,0x6,0x54,0x83,0xd7,0xad,0x73,0xd3,0xeb,0x5a,0x62,0x5a,0x89,0x65,0xbd,0x59, 0xe4,0x39,0x2,0x13,0x37,0x70,0x73,0x9e,0xbf,0x4a,0xca,0x88,0xdc,0x99,0x9a,0xe2, 0x42,0xf1,0xdb,0x90,0x4b,0x79,0x80,0x85,0xfc,0x1,0xfc,0x39,0xa5,0xc,0xf,0x32, 0xb4,0xb4,0x8,0x56,0x93,0x7a,0x23,0xbc,0x92,0x49,0x1a,0xe3,0x38,0xc,0x8c,0xa0, 0x86,0x66,0xe0,0x8f,0x5a,0x86,0x6b,0xc5,0x83,0x25,0x5e,0x25,0xd8,0x79,0x7c,0xe4, 0xf,0xa5,0x72,0x56,0xda,0x81,0x64,0x99,0xe0,0x58,0xe7,0xb6,0xcf,0x3e,0x54,0x8a, 0xcc,0x87,0xd4,0xa6,0x4f,0x1e,0xa3,0xda,0xb7,0x93,0x58,0x8a,0x10,0xf0,0xad,0x9d, 0xa3,0xca,0x61,0x27,0x11,0xc6,0x10,0x6e,0xc7,0x7,0x19,0xef,0xf4,0xae,0x7a,0x98, 0x19,0x29,0x2b,0x2b,0x9d,0x74,0xea,0x73,0x3d,0x4b,0x56,0xf7,0x21,0xd2,0x48,0x41, 0x26,0x40,0xa0,0xa9,0x3,0x18,0x38,0xed,0x4b,0x28,0x9c,0x4a,0x8e,0x3,0x1d,0xd8, 0x5f,0x93,0xe5,0xf9,0xb8,0xe7,0xdb,0xeb,0x59,0x1a,0x3d,0xda,0x85,0x78,0xdd,0xed, 0xa5,0x95,0x90,0x26,0xd1,0x26,0xa,0x1,0xed,0xeb,0x5a,0x72,0x5e,0x8,0xf0,0xf3, 0xa1,0x68,0x97,0xa,0xdb,0x3b,0x2f,0x7a,0x2a,0x52,0x94,0x5d,0xa2,0x87,0x4a,0xba, 0x84,0x5c,0x99,0x7e,0x19,0xee,0xda,0xd9,0x7f,0xd1,0x5e,0x49,0xf9,0x20,0x44,0x85, 0xb7,0x13,0x90,0xb,0x1,0xc0,0x38,0xf5,0xaa,0x4b,0x7a,0x74,0xd2,0xf0,0xcd,0x2, 0xc8,0xa2,0x50,0xf2,0x8,0x1b,0x27,0x1b,0x7e,0x6c,0x71,0xcf,0x41,0xd3,0xbe,0x6a, 0x27,0xd4,0xac,0xa1,0x58,0x84,0x32,0xc5,0x3a,0xff,0x0,0x16,0xc6,0xe5,0x97,0x3d, 0x7a,0xf0,0x6a,0xff,0x0,0xee,0x65,0x16,0xb7,0x56,0xd2,0x87,0x82,0x32,0x41,0x50, 0x0,0x0,0x1f,0xbd,0x80,0x7a,0x76,0xe2,0xb9,0xa5,0x9,0x41,0xf3,0x49,0x68,0xcd, 0x29,0xd5,0x8c,0xd1,0x24,0xa5,0xa0,0x8c,0xa3,0xfe,0xf2,0x43,0x29,0xdf,0x18,0x6d, 0xc1,0x98,0xf3,0x90,0x3b,0x8f,0x7e,0xd5,0x5d,0xae,0xa3,0x95,0xb7,0x34,0xb1,0xee, 0x4,0x2,0xf,0x4d,0xde,0x9e,0xb9,0xaa,0xe6,0xe5,0x25,0x8a,0x53,0x0,0x21,0xc1, 0x3b,0x82,0x2e,0x39,0xe8,0x6,0x7b,0x63,0x15,0x9b,0x1d,0xf1,0xb1,0xc4,0x73,0x59, 0x98,0x6d,0xc9,0x31,0x6f,0x47,0x56,0x60,0xf8,0xc8,0x24,0x75,0x3f,0xa5,0x69,0x4f, 0xb,0x29,0x27,0x73,0x15,0x5d,0x41,0xf2,0xa3,0x7e,0x3b,0x84,0x44,0xfd,0xd2,0xb1, 0x8c,0xe5,0x9d,0x4e,0x4e,0x38,0xff,0x0,0x1a,0x74,0x70,0x47,0x93,0x23,0xab,0x2b, 0xe4,0x2,0x43,0x86,0x19,0xe3,0x1d,0x87,0xe5,0x5c,0xec,0x5a,0x83,0x2,0x26,0xc4, 0xeb,0xb9,0xba,0x44,0xc3,0x8f,0x40,0x5,0x69,0x26,0xa5,0xf6,0xc8,0x1a,0x38,0x92, 0x68,0x65,0x52,0x77,0x47,0x70,0x80,0x3e,0x7d,0x7f,0x5a,0xa9,0xd0,0x9c,0x23,0x74, 0x6a,0xaa,0x6b,0x6e,0xe5,0xdb,0xf6,0x8e,0xf2,0x5,0x47,0x2e,0x1b,0xcc,0x56,0x1b, 0x76,0xf2,0x70,0x41,0x1c,0xfb,0x13,0x8a,0x75,0xb4,0x90,0xa7,0xda,0x22,0x80,0xa4, 0x7b,0xa,0xec,0x3b,0x4f,0xcc,0x4e,0x41,0xeb,0xe8,0x0,0xaa,0x9,0x29,0x75,0x78, 0x55,0xc4,0xf1,0xa3,0xf,0x34,0xa2,0x80,0x76,0x82,0x9,0x3c,0x9c,0xf,0xfe,0xb5, 0x5b,0xb7,0x6b,0x68,0x42,0x1f,0x97,0xcc,0x69,0x19,0xbc,0xc6,0xc6,0xe9,0x33,0x8c, 0x6e,0x6e,0x87,0x18,0x15,0x93,0x8b,0x4b,0xcc,0xb7,0x51,0x72,0x38,0xdc,0x92,0xd8, 0x45,0xf3,0x4d,0x67,0x9,0x89,0x98,0xe5,0xd0,0x71,0xf3,0xf4,0x6f,0xf1,0xfc,0x69, 0xb9,0xba,0x57,0x90,0x84,0x49,0x86,0x78,0x58,0xc9,0x66,0xfc,0xb1,0xcf,0x7a,0x91, 0x26,0x4b,0x49,0x5d,0x9d,0x55,0xcc,0xc4,0xb1,0x1b,0xbd,0xfb,0x63,0xa7,0x5a,0x74, 0xc2,0xde,0x4d,0x91,0x99,0x54,0xfa,0x29,0xc8,0x6c,0xfa,0xe7,0x8c,0x51,0xef,0x76, 0x9,0x55,0x51,0x57,0xdc,0x8d,0xed,0xe5,0x92,0xc9,0x37,0x5a,0x32,0xe,0x57,0x3b, 0x4e,0x54,0x9c,0xe3,0x83,0xcf,0x7a,0x20,0x68,0xda,0x59,0x62,0x85,0xff,0x0,0x78, 0x1,0x25,0x14,0x63,0x7,0xf1,0xef,0x4d,0x92,0xea,0xe6,0x16,0xcc,0x77,0x12,0xc8, 0x1b,0xe5,0x50,0x5f,0xe6,0x23,0xfd,0xec,0x55,0x88,0xa1,0x65,0x83,0x72,0x4c,0x56, 0x46,0xc6,0xe1,0x81,0xc1,0x3e,0xb9,0xe7,0xa9,0xeb,0xf4,0xa6,0xe4,0xf9,0x75,0x37, 0x73,0x97,0x25,0xd9,0xb,0xdc,0xdb,0x47,0x4,0x89,0x3,0x6,0x91,0x88,0xdc,0x71, 0xc2,0xf1,0xea,0x6a,0x9,0x65,0x9c,0xa4,0xad,0x14,0x71,0xaf,0x98,0xc4,0x65,0x6, 0x16,0x35,0x9,0x9e,0x3f,0xef,0x9f,0xd6,0x8b,0x7b,0x61,0x69,0x6a,0x19,0x6d,0xc4, 0x99,0x41,0xb9,0xda,0x4c,0xef,0x73,0xcb,0x37,0xb0,0xe4,0x0,0x31,0xda,0x9d,0xe7, 0x91,0x1a,0x98,0x6d,0xc4,0x64,0x8d,0xec,0xac,0xb9,0xf9,0x71,0xc9,0x7,0xe9,0x9a, 0x95,0x34,0xa3,0x62,0x69,0x4d,0x6a,0x8e,0xb3,0xe1,0xf8,0x94,0x5a,0xdd,0x79,0x84, 0x90,0x36,0x1,0x9f,0xab,0x7f,0x8d,0x76,0x55,0xc9,0x78,0x23,0x85,0xbd,0x19,0x24, 0x7e,0xec,0xf3,0xff,0x0,0x2,0xfe,0x80,0x57,0x5b,0x5e,0xee,0x11,0x5a,0x8c,0x4e, 0x6a,0xff,0x0,0xc4,0x66,0x6e,0xad,0xb8,0xac,0x6a,0x24,0x74,0x7,0x39,0xd8,0x71, 0x9e,0x95,0x94,0xb6,0xb0,0xee,0xcb,0x2,0xed,0xfd,0xe9,0x18,0xb1,0xfd,0x7a,0x56, 0xae,0xab,0xff,0x0,0x2c,0x7f,0x1f,0xe9,0x54,0x0,0xe6,0xb0,0xac,0xdf,0xb4,0x63, 0x86,0xc0,0x7e,0x51,0x81,0xd3,0xd0,0x52,0x67,0xb7,0x6a,0x76,0x28,0xb,0xcf,0x15, 0x85,0xd9,0x57,0x1b,0x9c,0x74,0x1d,0x2b,0x7,0xc5,0xf7,0xd1,0x45,0xa1,0xcf,0x6c, 0x25,0x2,0xe2,0x7d,0x8a,0x88,0x3e,0xf1,0x52,0xc3,0x27,0x1f,0x4c,0xd6,0xf4,0x90, 0x49,0x2a,0x15,0x4d,0xc0,0x91,0xc1,0x1d,0xab,0x26,0xf7,0xc3,0x97,0x37,0xf7,0x29, 0x71,0x25,0xc2,0xc4,0xea,0x30,0x18,0x2e,0xe3,0x81,0xf9,0x62,0x9e,0xa1,0x74,0x67, 0xe9,0xb7,0x42,0xc6,0xe8,0x6e,0xda,0xd0,0x5c,0x5,0x5d,0xf8,0x39,0x4,0xc,0x8f, 0xe7,0x5d,0x15,0xbd,0xca,0x48,0x56,0x4d,0xc0,0x11,0xf7,0x86,0x7a,0x73,0x51,0xda, 0xe8,0x11,0x5b,0xa8,0x2e,0xcd,0x3b,0x80,0x47,0x99,0x2b,0x73,0xf9,0xe,0x5,0x68, 0x25,0x84,0x2a,0x38,0x8d,0x7d,0x3a,0x75,0x15,0x51,0x8b,0x7,0x21,0xb7,0x12,0xae, 0x14,0x3,0xd5,0xb1,0x91,0xeb,0x4c,0x7b,0x16,0x99,0x46,0x48,0x53,0xea,0x57,0x35, 0x65,0xad,0x11,0xbf,0x84,0xc,0x9c,0xf4,0xef,0x53,0x2a,0x14,0x50,0xa0,0xf4,0x15, 0xa7,0x25,0xdf,0xbc,0x4d,0xca,0x23,0x46,0xb7,0x77,0x2d,0x31,0x92,0x42,0x7a,0x80, 0xe5,0x46,0x3f,0x3,0x57,0x21,0xb6,0x8a,0xdd,0x2,0x45,0x12,0xaa,0x8e,0xca,0x0, 0xa9,0xc0,0x38,0xa4,0xc9,0xad,0x54,0x23,0x15,0xa1,0x37,0x23,0x31,0x83,0xd5,0x32, 0x7d,0x73,0x8a,0x4f,0x29,0x7f,0xb8,0x2a,0x53,0xcd,0x21,0xa7,0x60,0x43,0x42,0x81, 0xfc,0x1f,0xad,0x48,0xb8,0x1d,0xa9,0x94,0x6,0xc1,0xe6,0x8d,0x1,0x8f,0x6e,0x4d, 0x37,0x81,0xda,0xa2,0x96,0xee,0x8,0x86,0xe6,0x95,0x42,0xfa,0xe7,0x8f,0xcf,0xa5, 0x51,0x7d,0x55,0x98,0xed,0xb7,0xb6,0x92,0x43,0xfd,0xe6,0x1b,0x57,0xf3,0xa9,0x94, 0xe2,0x81,0x23,0x4f,0xa0,0xff,0x0,0xeb,0xd5,0x79,0xef,0x61,0xb7,0x19,0x96,0x44, 0x5f,0x40,0x5b,0x4,0xfe,0x15,0x43,0xfd,0x2e,0x7f,0xf5,0xb3,0x84,0x1e,0x91,0x8e, 0x7f,0x33,0xfe,0x14,0xa9,0x6d,0x14,0x4c,0x58,0x26,0xe6,0xfe,0xf3,0xfc,0xc7,0xf3, 0x35,0x93,0xaa,0xfa,0x14,0xa2,0x39,0xf5,0x59,0x26,0xe2,0xd6,0xdc,0xb8,0xfe,0xfb, 0x82,0x16,0xaa,0xc9,0x5,0xc5,0xca,0x91,0x73,0x72,0x76,0x9e,0xa9,0x18,0xc0,0xfc, 0xea,0xf9,0x1c,0x54,0x2d,0xc5,0x65,0x29,0x37,0xb9,0x56,0x2b,0xc3,0x65,0x6f,0x6e, 0x3f,0x75,0x12,0xa9,0xf5,0xc7,0x3f,0x9d,0x4a,0xc3,0xe6,0xcf,0x5c,0xfa,0xd3,0xc1, 0xa6,0x48,0x70,0x5,0x40,0xc7,0x81,0xfe,0x4d,0x3c,0xa,0x45,0xe6,0x9e,0x3a,0xd5, 0x20,0x17,0x19,0xa7,0xe3,0x8a,0x5,0x3b,0x1c,0x55,0x13,0x71,0x0,0xa7,0xa,0x41, 0x46,0x69,0xa1,0xf,0x6,0xa3,0xcf,0xf3,0xa7,0xe,0x4d,0x30,0x1e,0xa3,0x1c,0xd5, 0x3d,0x10,0xcc,0xdb,0x8b,0xb0,0xae,0xc8,0xbc,0x90,0x48,0x35,0x4d,0xa6,0x72,0x71, 0x91,0x59,0xf7,0x17,0x4e,0xb3,0x4e,0x33,0xd2,0x69,0x3b,0x73,0xf7,0xce,0x2b,0x3a, 0x4b,0xa9,0x99,0x8f,0xce,0x52,0xbc,0xfa,0x9c,0xcc,0xe6,0xa9,0x59,0x27,0x63,0x7b, 0xcc,0x38,0xa6,0xbc,0xa0,0x37,0x2d,0xf8,0x7e,0x35,0xc9,0xbe,0xaf,0xe4,0xb1,0x47, 0xba,0xc3,0xf,0x5a,0x80,0x78,0x81,0xa3,0x7c,0x29,0x67,0xcf,0x7c,0x67,0x35,0x1f, 0x57,0xa9,0x2f,0x85,0x11,0xed,0x6e,0x47,0xe2,0xbb,0x61,0x7d,0xe2,0x9,0x57,0x4, 0xa3,0x5a,0x47,0x19,0x23,0xeb,0x27,0xf8,0x8a,0xeb,0xb4,0x89,0x43,0xe8,0xd6,0x1c, 0xf3,0xf6,0x68,0xf2,0x3d,0x3e,0x41,0x5c,0xe5,0xab,0x2d,0xf1,0x79,0x88,0x61,0x93, 0x80,0x5b,0x3,0x9f,0x4a,0xa8,0xfa,0xe8,0xb6,0x22,0xd5,0xa2,0xca,0x42,0x36,0xe, 0x76,0x9e,0x2b,0xa6,0x74,0xe5,0x38,0x28,0x2d,0xd1,0xb3,0x6f,0x91,0x33,0xba,0xf3, 0x7,0xe1,0x46,0xf1,0x8c,0xd7,0x11,0x1f,0x89,0x21,0x62,0x42,0xae,0x8,0xea,0x4, 0x9c,0xd5,0xc8,0x35,0x83,0x34,0x8a,0x91,0x96,0x2c,0xdd,0x81,0xce,0x2b,0x7,0x42, 0x69,0x6a,0x60,0xeb,0xf7,0x3a,0xad,0xff,0x0,0x8d,0x2e,0xec,0xf6,0x15,0x93,0x18, 0xb9,0xdd,0x9e,0x87,0xbe,0xe3,0x57,0x15,0xe4,0xc7,0xcd,0xb4,0x9f,0x61,0x58,0xb5, 0x6d,0xc4,0xaa,0xa6,0x4c,0x50,0x35,0xc4,0x72,0x90,0x8,0x8f,0x3c,0x1f,0xc3,0xfc, 0x2a,0x62,0xe0,0x92,0x40,0x38,0x24,0x9f,0xd6,0xab,0x7,0x6c,0xfd,0xda,0x7e,0xe2, 0x46,0x7f,0x4a,0xaf,0xac,0x4e,0xa4,0x15,0x36,0xb4,0x44,0xa8,0xc5,0x49,0xcd,0x3d, 0xcb,0xa,0x72,0x40,0xee,0x4f,0x15,0xa1,0x10,0xf9,0x40,0xc8,0xc8,0x0,0x3,0x8e, 0x95,0x42,0xd9,0x72,0xcd,0x21,0xe8,0x9c,0xf,0x73,0x5a,0x11,0xa9,0xa,0x33,0xd7, 0xad,0x74,0x61,0xe3,0x63,0xb2,0x8a,0xd2,0xe5,0x98,0x83,0xc,0xee,0x93,0x7f,0xa7, 0x18,0xc5,0x49,0x93,0xe9,0xfa,0xd4,0x2a,0xbc,0x75,0xfd,0x29,0xe1,0xf,0xf7,0x87, 0xe5,0x5d,0xa9,0xd8,0xd0,0x97,0x2d,0xd8,0x7e,0xb4,0x84,0xbf,0x6f,0xe5,0x48,0x32, 0x3b,0x8f,0xca,0x9d,0xdb,0xfc,0x2a,0x84,0x37,0xcc,0x7f,0xf2,0x28,0xf3,0x18,0xff, 0x0,0xfa,0xa9,0xc3,0x1e,0xa6,0x83,0xf5,0x34,0x0,0xdd,0xcd,0xeb,0xfa,0x55,0x2, 0x76,0x4c,0xf1,0xe3,0xa7,0x23,0xe9,0x5a,0x1d,0x6a,0xbd,0xdc,0x7f,0x28,0x94,0x7d, 0xe4,0xfd,0x45,0x4c,0xa3,0x71,0xa2,0xbf,0x27,0xb0,0xa3,0x1e,0xa3,0xf5,0xa9,0xbe, 0x5e,0xb4,0x71,0xfe,0x45,0x45,0x86,0x46,0x0,0x14,0xe1,0x8c,0xf3,0x9f,0xc2,0x9d, 0x91,0xdf,0x14,0xbc,0x7a,0xd1,0x60,0x14,0x14,0xf4,0x6a,0x91,0x59,0x3d,0xd,0x46, 0x3d,0xb1,0xf8,0x9a,0x78,0xcf,0xb7,0xe7,0x54,0x80,0x97,0x2a,0x7a,0x3,0x48,0x72, 0x4f,0x2e,0x40,0xfa,0x50,0x33,0x50,0x5f,0xdc,0x7d,0x8f,0x4e,0xba,0xba,0xdb,0xbb, 0xc9,0x89,0xa4,0xdb,0xeb,0x80,0x4e,0x3f,0x4a,0xd1,0x12,0x55,0xd7,0x2c,0x75,0x1b, 0xbb,0x7,0x82,0xce,0x28,0x5f,0x78,0xf9,0x8c,0xaf,0xb4,0xe3,0xd0,0x60,0x1e,0xb5, 0x81,0x6b,0xa3,0x6a,0x4a,0xd,0xa9,0xd3,0x65,0x8c,0x38,0xc6,0xc,0x88,0x50,0xf, 0x5d,0xc0,0x92,0x3e,0xb8,0xa8,0xa0,0xf1,0xed,0xd5,0x98,0xd9,0x75,0x63,0x6e,0xc4, 0x8d,0xcb,0xb6,0x63,0x1e,0x3d,0x47,0x2a,0x7f,0x9d,0x69,0x2f,0x8d,0xdd,0xa1,0xde, 0x9a,0x6a,0x33,0x63,0x20,0xb,0xa5,0xc7,0xd7,0x38,0xfe,0x95,0xbf,0x27,0x2a,0xd4, 0x76,0x6b,0x43,0x7a,0xce,0xc2,0xf2,0x38,0xbf,0xd2,0xaf,0x44,0xae,0x40,0xe5,0x62, 0xc0,0x1f,0xe3,0xf5,0xa9,0x96,0x36,0x4,0x83,0x8c,0x8e,0xb5,0xc2,0xdf,0x78,0xdb, 0x51,0x18,0xd9,0x34,0x31,0xe3,0x2c,0xdf,0x66,0x8f,0x7e,0x7,0xbb,0x37,0x7,0xf0, 0x2,0xb6,0x7c,0x2b,0xab,0x9b,0xa8,0x44,0x73,0x5c,0x34,0xa6,0x44,0x12,0x2b,0x3b, 0xee,0x24,0xe3,0xc,0x3f,0x40,0x71,0xef,0x4a,0x50,0x56,0xba,0x1f,0x2b,0xdd,0x9d, 0x20,0x8c,0xd1,0xe5,0x9a,0x7e,0x4f,0x7a,0x5a,0xcd,0xc5,0x10,0x42,0x62,0x6e,0xd8, 0x34,0xd2,0x15,0x78,0x2a,0x41,0xab,0x14,0x1e,0x78,0xeb,0x49,0xc5,0x1,0x5b,0x2b, 0xfe,0x4d,0x1f,0x29,0xff,0x0,0xf5,0xd4,0xc5,0x3d,0x3f,0x23,0x50,0xb1,0x90,0x30, 0x6,0x31,0x8c,0xf5,0xcd,0x4b,0x56,0x43,0x32,0x75,0x2d,0x59,0x6c,0xae,0x12,0x8, 0xd0,0x48,0xed,0xc9,0x25,0xb0,0x14,0x55,0x66,0xd5,0xe5,0x2a,0x3f,0x75,0x8,0xcf, 0xf1,0x79,0x84,0x8f,0xe5,0x59,0x1a,0xed,0xd3,0xd9,0xea,0x53,0x24,0x8a,0x36,0x8, 0x8b,0xae,0x47,0x3c,0x9e,0x7f,0x95,0x61,0xdb,0xea,0x8f,0x15,0xe6,0xef,0x23,0x7a, 0xc9,0x19,0xa,0x77,0x77,0xc8,0xc7,0xf5,0xae,0x3a,0x92,0x92,0x77,0x29,0x4a,0x3b, 0x33,0xa9,0x93,0x54,0x9d,0x98,0x82,0xb6,0xe0,0xf6,0xc,0xa4,0x67,0xf5,0xaa,0x2d, 0x35,0xe7,0x9d,0xb9,0x8c,0x3,0x77,0x74,0x1c,0xfd,0x3a,0xd5,0x53,0xaa,0xc0,0xca, 0x1a,0x44,0x64,0x61,0xd5,0x70,0x31,0xf8,0x13,0x52,0xc3,0x73,0x15,0xda,0x19,0x22, 0xb6,0xb9,0x60,0xf,0x58,0xe0,0x76,0xc7,0xe2,0xa0,0x8a,0x9f,0x79,0xe8,0x6c,0xb9, 0x5a,0x27,0x37,0x73,0x29,0xca,0xf4,0xcf,0x61,0x8a,0x4f,0xed,0x29,0x9d,0x98,0x9, 0x19,0x36,0xf7,0xda,0xf,0xf4,0xa8,0xd4,0x9c,0x90,0xd6,0x97,0xbf,0x53,0x6b,0x27, 0xf8,0x67,0xf4,0xa5,0xda,0x59,0x78,0x82,0xe8,0xe3,0xd6,0xde,0x41,0xfd,0x28,0xf6, 0x5e,0x45,0x7b,0x3a,0x6c,0x7f,0xf6,0xac,0xb1,0xb0,0x2d,0x23,0xc8,0xb8,0xe7,0xe4, 0x2,0xa6,0x6d,0x51,0x24,0xb7,0x25,0x54,0x74,0xe7,0x9a,0xac,0x10,0xaf,0xcc,0x2d, 0xee,0x87,0xfd,0xb0,0x93,0xfc,0x2a,0x9d,0xdd,0xbb,0xb0,0x3e,0x54,0x77,0x4,0x10, 0x4b,0x2b,0x45,0x20,0xff,0x0,0xd9,0x6a,0x5d,0x36,0xba,0x19,0xd4,0xa7,0x1e,0x5d, 0x11,0x99,0x79,0xac,0xc7,0x1d,0xf8,0x69,0xee,0x3e,0x55,0xc8,0xd8,0x9,0x55,0x23, 0x15,0xa1,0x6b,0x78,0x64,0x55,0xdd,0xb7,0x74,0x87,0x31,0x90,0x72,0xf,0x15,0xcb, 0x5d,0xc6,0x5,0xd3,0xac,0x81,0xa2,0xc9,0xf9,0xe3,0x78,0x9f,0x38,0xfc,0x40,0xac, 0xc9,0x2f,0x96,0xc2,0x12,0xd2,0x48,0x62,0x31,0xe7,0x66,0xc1,0xce,0x78,0xc0,0xeb, 0x5d,0xcf,0x9,0x19,0xc5,0x59,0xd9,0x9e,0x6c,0xea,0xb8,0xe9,0x63,0xbe,0x8e,0xfe, 0x26,0x25,0x1a,0x68,0xdd,0x98,0xfc,0xa4,0xa9,0x24,0x9f,0x43,0x4b,0x6,0xa1,0xe, 0xd6,0x37,0x2c,0x63,0x4e,0x1b,0x60,0x6d,0xe3,0x38,0xeb,0x90,0x38,0xfa,0x57,0x9e, 0x4f,0xac,0x49,0x21,0x84,0x48,0xab,0xc,0x7b,0x80,0x69,0x4a,0x95,0x3e,0xbc,0xf3, 0xef,0x5a,0xba,0x55,0xed,0x92,0xac,0xb1,0x5a,0xca,0x1b,0xca,0x1b,0xb0,0x84,0x90, 0xbc,0x8e,0x7a,0xf5,0x35,0x94,0xb0,0x32,0x8a,0xbd,0xc2,0x38,0x99,0x73,0x59,0x9d, 0xa3,0x18,0xee,0x95,0x7c,0xa9,0xa5,0x52,0x48,0x2a,0x36,0x60,0xb0,0xf4,0xa7,0xab, 0x25,0xad,0xb7,0x9f,0x22,0x6c,0x5c,0x31,0xc7,0x73,0x83,0x8e,0x73,0xc0,0xae,0x6a, 0x1d,0x5c,0xcd,0x2c,0xb0,0x5c,0xc6,0x64,0x5b,0x60,0x87,0xcc,0x80,0xc,0x67,0x8e, 0x4e,0x4f,0x7c,0x1e,0x9f,0x95,0x68,0x2e,0xab,0x6f,0x29,0x53,0x14,0xa4,0xb1,0xea, 0x88,0xa7,0x91,0xfd,0xdc,0xe3,0x8e,0xff,0x0,0x9d,0x72,0xca,0x95,0x54,0x74,0x54, 0xc5,0x72,0xab,0x13,0x34,0xb1,0xc1,0x7a,0xea,0x2d,0xdb,0x90,0xa,0xf2,0xe,0x3d, 0xc1,0xe8,0x41,0xe7,0xf2,0xa9,0xe7,0x59,0x27,0x40,0x63,0x50,0xac,0x33,0xb7,0x27, 0x34,0xdb,0x2,0x8e,0xd0,0xc4,0x54,0xf,0x39,0xb2,0x23,0x90,0x15,0x1,0x87,0x51, 0xf9,0xff,0x0,0x3a,0xda,0xdd,0x12,0xff,0x0,0xc7,0xce,0x9f,0x72,0xa9,0xc0,0xdd, 0x6d,0x2f,0x99,0x8f,0xc3,0xaf,0xe5,0x9a,0x98,0xf3,0xcf,0x6d,0xe,0x9a,0x78,0x85, 0x24,0x9c,0x51,0x85,0xa,0xcf,0xb,0xf9,0x12,0xd,0xaa,0xc4,0xb1,0x62,0x41,0xe7, 0x18,0xc5,0x5f,0x2d,0x12,0x2e,0xd5,0x41,0xbc,0x8f,0xbc,0x87,0x81,0xc5,0x69,0x43, 0x6,0x85,0x76,0xca,0x90,0xdf,0x34,0x72,0x82,0x70,0x92,0x48,0x52,0x42,0x7d,0x36, 0xb0,0xcf,0xe9,0x57,0xbf,0xe1,0x1c,0xb6,0xce,0x44,0xd3,0xee,0xef,0x87,0x1f,0xe1, 0x5b,0x3a,0x2e,0x5b,0x9a,0x4e,0xa4,0x67,0xab,0x38,0xeb,0xc8,0x93,0x21,0xc2,0x8c, 0x96,0xc3,0x1e,0x73,0xfc,0xea,0xdd,0xb6,0xe8,0xe1,0xf2,0x83,0x84,0x11,0xaf,0xca, 0xf8,0xe5,0x8f,0xe1,0x5d,0x4a,0x78,0x76,0xd1,0x9,0x6f,0x32,0x72,0x7d,0xdc,0x1f, 0xd3,0x14,0xef,0xf8,0x46,0xad,0xa4,0x20,0xb5,0xcd,0xd7,0x1c,0x81,0xb9,0x71,0xf9, 0x6d,0xab,0x58,0x77,0x6b,0x24,0x54,0xab,0x41,0xc5,0x46,0xc6,0x4,0x69,0x22,0xc6, 0xa9,0x70,0x3,0x8f,0x2c,0x72,0x54,0x8c,0xd1,0x74,0xa6,0x78,0xc1,0x13,0x48,0x0, 0x1c,0xa0,0x38,0x7,0x9f,0xf3,0xc5,0x74,0x4d,0xe1,0xcb,0x62,0x49,0x33,0x5c,0x7f, 0xc0,0x4a,0xaf,0xf2,0x51,0x50,0x5d,0x68,0xb1,0x41,0x6c,0xde,0x5b,0x5f,0x48,0x7b, 0x8,0x9d,0x37,0x7f,0xe3,0xd8,0x15,0x9f,0xd5,0x2a,0x5e,0xec,0xe5,0x9b,0xbe,0xc7, 0x9b,0x78,0x86,0xeb,0xec,0xf6,0xd0,0x48,0xf6,0xd1,0xc8,0x64,0x27,0x21,0xd4,0x94, 0xda,0x32,0x8,0xc6,0x71,0x9c,0x95,0xfc,0xeb,0xa,0xfa,0xce,0xf8,0x47,0x20,0x57, 0xc,0xea,0x70,0x6d,0xf1,0xe5,0xaa,0x11,0xd7,0x3,0x3d,0xab,0xa3,0xd7,0x6e,0x8c, 0x5a,0x85,0x94,0xaf,0x6b,0x75,0xba,0xd9,0x99,0x80,0xb9,0x84,0xa2,0xb1,0x23,0x3, 0x27,0xa1,0xc1,0x19,0xec,0xd,0x65,0x3e,0xa7,0xa7,0xda,0x8f,0xf4,0x90,0xf1,0xbb, 0xe4,0xb3,0x4e,0xfe,0x61,0x63,0x8e,0x4e,0x0,0xc7,0x7f,0x7a,0xf4,0x68,0xa9,0x28, 0xa5,0x63,0x8e,0x50,0x8a,0x77,0x68,0xc6,0xd5,0x20,0xb4,0x30,0x58,0xdd,0x5c,0xc2, 0x97,0x4e,0x90,0xac,0x4e,0x16,0x63,0x94,0x61,0xd8,0xe0,0xfa,0xe6,0xb1,0xde,0x59, 0x61,0x95,0xad,0x9e,0xd8,0x79,0x57,0x7,0x74,0x45,0x9f,0x72,0xc7,0x92,0x71,0x81, 0x5a,0x57,0xf3,0x5b,0xea,0xec,0xcb,0x6b,0xd,0xb0,0x82,0x2f,0x99,0xa5,0x9f,0x11, 0x8c,0xf3,0xc8,0x0,0xe4,0xd5,0x41,0x12,0x5f,0x5c,0x3b,0xad,0xcb,0x79,0x56,0xa9, 0xb5,0x24,0xd9,0xd7,0x68,0xce,0x54,0x7a,0xfa,0x57,0x7c,0x63,0x75,0xa9,0x8b,0xab, 0x29,0x68,0xcd,0x8d,0x46,0xfe,0xf2,0x6b,0xc8,0xa6,0xb0,0x8a,0xce,0xcd,0x51,0x80, 0x69,0x52,0x1,0xbd,0x7d,0x79,0x3d,0xaa,0x8e,0xad,0x34,0x9e,0x5d,0xcd,0xaa,0x6a, 0xed,0x72,0xd7,0x4,0x65,0x7c,0xa2,0x18,0x10,0x7f,0x87,0xeb,0x55,0x53,0x53,0x49, 0x74,0xeb,0xa9,0xed,0xe2,0x78,0x2d,0xe2,0x65,0x45,0x67,0xcb,0x34,0xb2,0x75,0x2c, 0xcc,0x78,0xec,0x3e,0x5f,0x7e,0xb5,0x79,0x75,0xbd,0x46,0x60,0x85,0xf5,0x98,0xec, 0x63,0x98,0x64,0x13,0x1a,0x96,0x3f,0xa6,0x45,0x37,0x1b,0x3d,0xc,0xed,0x62,0x6b, 0xd,0x16,0xc3,0x4c,0x68,0xef,0xf5,0x17,0x68,0x2e,0x2,0x65,0x2d,0x83,0xf3,0x9e, 0xc4,0x90,0x7a,0xe2,0xa0,0x8b,0x5d,0x9e,0xe3,0x6c,0x56,0xde,0x1b,0xd2,0x65,0x76, 0x6f,0x9e,0xe2,0xe8,0x34,0xd3,0x3b,0x67,0xa8,0x25,0x81,0x1f,0x41,0x4d,0x96,0xcf, 0xce,0x29,0xe5,0x5d,0xfd,0xa4,0xb1,0x3b,0xe5,0x6e,0x7b,0x75,0xcd,0x52,0x92,0xf5, 0x74,0xab,0x68,0x9b,0x61,0x7b,0xa6,0x38,0x47,0x5f,0xe0,0x23,0xb8,0xe2,0x9f,0xb2, 0x8c,0xf5,0x66,0xb4,0xe6,0xd1,0xaf,0x75,0xa9,0x3c,0x8e,0x90,0x19,0xbe,0xce,0x27, 0x62,0xb3,0xc7,0x6c,0xaa,0x8c,0x70,0x38,0xc,0xc4,0x12,0x7,0xd3,0xae,0x69,0xba, 0x5c,0x3f,0x6c,0xd5,0x6d,0xe0,0x96,0xed,0xc4,0x1b,0xb6,0x4b,0x24,0x2a,0xb,0x1, 0x9e,0x17,0x24,0x8c,0x74,0xeb,0xf4,0xac,0xc3,0xf6,0x8d,0x52,0xf6,0xd6,0x55,0x99, 0x24,0x78,0x5c,0x4b,0x3b,0x32,0x8d,0xb8,0x1d,0x49,0x1d,0xf8,0xae,0xa7,0x49,0xd5, 0x6d,0x84,0x33,0x2d,0xa5,0xba,0xc6,0xc3,0xa1,0x2f,0xf2,0xbf,0xa9,0x55,0xc7,0x3, 0xda,0xb2,0xa8,0xb9,0x20,0xd4,0x77,0x2e,0x4e,0x6a,0x68,0xd3,0x9,0x6b,0xa5,0xdb, 0x7d,0x9a,0xce,0x52,0x44,0xd2,0x10,0x17,0x70,0x67,0x9d,0xfd,0xca,0xe3,0x80,0x31, 0xcf,0xbf,0xbd,0x73,0x1a,0xb6,0xb1,0x67,0xf6,0xd7,0xb2,0x9e,0xd4,0xdc,0xdd,0x10, 0x0,0x5d,0xc4,0x5,0xcf,0x4f,0xa9,0xad,0xd,0x57,0x58,0xbb,0x5b,0xa9,0x25,0x5b, 0x68,0xa2,0x91,0x21,0x3b,0xa,0x8c,0xe3,0x3,0x27,0xd3,0x9e,0x5,0x79,0xfd,0xec, 0xda,0x8a,0x4d,0xb9,0x14,0x79,0xd7,0x4a,0x19,0xa7,0x23,0xe6,0x3,0xa6,0x1,0xfe, 0x1e,0x3e,0xb5,0x18,0x7c,0x3b,0x4a,0xf3,0x27,0xd9,0xab,0x6a,0xce,0xab,0x17,0xd3, 0x6a,0x16,0x5a,0x6d,0x94,0x11,0x5b,0xdc,0x6d,0x6c,0x2f,0x99,0xb9,0xcf,0xcb,0xbb, 0xe6,0x27,0x8f,0xe1,0x38,0x18,0xef,0x5d,0x25,0x84,0xfa,0xd4,0x5a,0x4b,0xb5,0xd5, 0x83,0xbb,0xaa,0xed,0x68,0xd1,0x11,0x19,0xb9,0xc7,0x61,0x93,0x5c,0xff,0x0,0x81, 0x34,0x6b,0x8b,0x1d,0x45,0x2f,0x49,0x88,0xa3,0xa1,0xd,0x24,0xcd,0xcb,0x7a,0xed, 0xcf,0x24,0xe7,0xbd,0x74,0x5a,0x9c,0x97,0xb2,0xdc,0x32,0xfd,0xb6,0xd6,0xda,0x34, 0x94,0x80,0x5d,0x80,0xe3,0x3c,0x71,0xdc,0xfe,0x35,0x96,0x23,0x96,0x72,0xf6,0x7a, 0x58,0x13,0x71,0x7a,0x13,0x11,0x33,0x2f,0x99,0x2d,0x8b,0xa4,0x9e,0x5e,0x5d,0x7c, 0xe2,0x5c,0x28,0xee,0x2,0x9e,0x9f,0x51,0x9a,0xc8,0x8a,0xc0,0xdc,0x59,0xcd,0x39, 0x92,0x68,0x2e,0x50,0x33,0x88,0xe6,0x5c,0x9c,0xe3,0xa8,0x39,0xe7,0xff,0x0,0xad, 0x5b,0x5a,0x36,0xa5,0xbe,0x52,0x93,0xde,0x5b,0xdd,0xb2,0x1c,0x5b,0xcb,0xb,0x82, 0xcc,0x8,0xc3,0x6,0x1d,0x33,0xc7,0xb7,0x5a,0xa1,0x33,0x5d,0x5e,0x78,0x9f,0xfb, 0x36,0x5b,0x6f,0xb2,0x69,0xe6,0x26,0x6b,0x79,0x42,0x13,0xb9,0xc6,0x3e,0xf1,0xcf, 0x19,0xfd,0x2b,0xa,0x6e,0x4a,0x4e,0x36,0xb5,0x88,0x6b,0x67,0x7d,0x4a,0x70,0x47, 0x75,0xf6,0x78,0xe4,0x65,0xb6,0x78,0x9c,0x64,0x6e,0x6c,0x17,0xc1,0xc6,0x48,0xe3, 0x1f,0x9d,0x6e,0xdb,0x6a,0x4a,0x91,0x66,0x49,0xb7,0x10,0x30,0x44,0x60,0x11,0x9f, 0xf8,0x10,0xcd,0x73,0x76,0x69,0x71,0x35,0xb5,0xc5,0xbb,0x49,0x18,0x92,0xde,0x67, 0x10,0xbc,0x9f,0x71,0xd3,0x8e,0xfd,0x2a,0xe9,0x8e,0x6b,0x45,0x86,0x79,0x63,0x8d, 0x84,0xad,0xb0,0x64,0x12,0x37,0x7f,0x91,0x5a,0x4a,0x1c,0xee,0xd2,0x3d,0x9c,0x4c, 0x70,0xb0,0xa2,0xaa,0x46,0xee,0x46,0xb1,0xd5,0xa5,0xb8,0xb8,0x12,0x5c,0xbe,0x61, 0xf9,0x43,0x61,0x46,0x70,0xf,0x19,0x20,0xc,0xd4,0x3f,0x68,0xf3,0x5c,0xac,0x4d, 0xbd,0x15,0xc9,0x1b,0x46,0x4f,0xe3,0xed,0xc5,0x71,0xba,0x85,0xc5,0xf4,0x57,0xf1, 0xcb,0x24,0xb3,0x2c,0x2b,0x20,0xdd,0x16,0x40,0x18,0x3d,0x30,0x2a,0x3d,0x52,0xf7, 0xec,0xfa,0xa3,0x3c,0x77,0x92,0x41,0x2f,0x1b,0x56,0x2e,0x49,0x53,0xd4,0x1f,0x4a, 0xdd,0x60,0xe2,0x78,0xd7,0x6d,0x68,0x77,0x56,0x72,0x5a,0xbb,0x5c,0x4b,0x2d,0xc3, 0x99,0x93,0x6e,0x21,0xdd,0xb0,0x95,0xcf,0x51,0x91,0xcf,0xe7,0xda,0x9e,0x97,0x91, 0xd9,0xc7,0x2d,0xe4,0xde,0x64,0x8a,0xd3,0x79,0x6a,0xd2,0x36,0xe2,0x7,0x63,0xed, 0xc6,0x6b,0x8f,0xbb,0x96,0x2d,0x3f,0x4a,0xd3,0xb5,0xb,0x97,0x99,0xdb,0xcc,0x28, 0x58,0x39,0x24,0xe,0x48,0x3,0x9f,0xa5,0x68,0x41,0xe2,0x1b,0x3d,0x4f,0xc3,0x36, 0x90,0xc2,0x19,0xef,0x23,0x66,0x69,0xe2,0x75,0x25,0x7e,0x55,0x6e,0x4b,0x7a,0x10, 0x41,0xcf,0xb5,0x63,0x53,0xa,0xd3,0x4f,0x7b,0x9a,0x73,0x5e,0x37,0xec,0x75,0xf2, 0x34,0x4a,0xd1,0x2,0xca,0xb1,0xb3,0x15,0xf3,0x9,0xe1,0x6,0x3a,0xf1,0xf8,0x53, 0xe3,0x81,0x2f,0x16,0x1b,0x80,0x36,0xbe,0xde,0x4c,0x8d,0xf2,0xb6,0x79,0x3,0x8e, 0xd8,0xc7,0x3c,0x75,0xac,0xad,0x37,0x49,0x7d,0x36,0xd1,0x37,0xea,0x6,0xe5,0xe6, 0x40,0xec,0x15,0xf6,0xaa,0xb9,0x1,0x82,0xa9,0xc9,0x3d,0x38,0xa9,0xa3,0xbd,0xfb, 0x75,0xb4,0xd1,0xc3,0x71,0xbe,0x54,0x62,0xb3,0x5b,0x84,0x74,0x78,0xc1,0xef,0x96, 0x1c,0xf4,0xfd,0x2b,0xca,0xad,0x87,0x6a,0xee,0x9e,0xa7,0xa2,0xeb,0xf3,0x45,0x26, 0x58,0x8e,0xf7,0xc9,0x8b,0x64,0x73,0x5b,0x49,0xe4,0x33,0x6e,0x3,0x3c,0x7f,0x5f, 0xff,0x0,0x5d,0x21,0xb8,0x72,0x16,0x18,0xc2,0xf9,0xbb,0x76,0x92,0x8d,0xf2,0xe3, 0xa1,0x3f,0x88,0x35,0x5,0xe2,0x3c,0xab,0x1c,0x72,0xb4,0x73,0xcd,0x12,0x7e,0xe6, 0xe0,0x7c,0x92,0x8c,0x63,0x82,0x71,0x86,0x1e,0xc4,0x7e,0x35,0x14,0x77,0xc9,0xc, 0x20,0xc9,0x12,0xa0,0x44,0x25,0xe4,0x62,0x9,0x7e,0x3a,0xae,0x3b,0x77,0xa2,0x11, 0xf7,0x6c,0xd1,0xdb,0x7,0x45,0x53,0xe7,0x3d,0x13,0xc0,0x61,0xb6,0x5f,0x16,0x6c, 0xff,0x0,0xab,0x3,0xff,0x0,0x1e,0xae,0xc6,0xb9,0x4f,0x4,0xc8,0x92,0x41,0x39, 0x50,0x6,0xe8,0xa1,0x7c,0xa9,0xc8,0x20,0x83,0xff,0x0,0xd7,0xae,0xae,0xbd,0x6c, 0x1a,0x6a,0x8c,0x6f,0xe7,0xf9,0x9e,0x64,0xea,0x7b,0x49,0x39,0x14,0x35,0x28,0x9e, 0x4f,0x2b,0x68,0xce,0x33,0x9f,0xd2,0xab,0x2d,0xb3,0x63,0x92,0x7,0xeb,0x5a,0x57, 0x3,0x3b,0x7f,0x1a,0x84,0x2d,0x4d,0x48,0x5e,0x6d,0x8e,0x2f,0x42,0xba,0xdb,0xa8, 0xeb,0x93,0x52,0x2c,0x60,0x74,0x3,0xf2,0xa9,0x71,0x46,0x28,0x51,0x41,0x71,0x9b, 0x68,0x2a,0x5,0x3f,0x14,0x86,0xab,0x94,0x57,0x23,0x18,0xcf,0x4a,0x90,0x54,0x45, 0x95,0x1b,0x6,0x9c,0x1c,0x7b,0xd4,0xa7,0x6d,0x6,0x48,0x69,0xb4,0xd2,0xfe,0x80, 0xd2,0x6e,0x24,0x64,0xe,0x3e,0xb5,0x4e,0x48,0x9,0x87,0x4e,0xb4,0xd2,0x40,0x3c, 0x9a,0x81,0xae,0x12,0x35,0x2f,0x23,0x5,0x51,0xd4,0x93,0xc7,0xe7,0x54,0xa4,0xd6, 0x2d,0xd8,0x91,0xa,0x49,0x71,0xce,0x1,0x88,0x64,0x7e,0x7d,0x2a,0x65,0x34,0x90, 0xd4,0x59,0xa4,0x58,0x7d,0x29,0x8f,0x22,0x20,0xdc,0xce,0x14,0x7b,0x9a,0xcc,0x37, 0x17,0xb2,0xe4,0x13,0x1c,0x0,0xf4,0xa,0x37,0x37,0xe2,0x7a,0x54,0x66,0x5,0x76, 0xdc,0xfb,0xa4,0x6f,0x57,0x39,0xac,0x9d,0x5e,0xc5,0x28,0x93,0x49,0xac,0x29,0x76, 0x4b,0x6b,0x79,0x67,0x23,0xf8,0xc7,0x9,0xf9,0xd4,0x4c,0xf7,0x97,0x1f,0xeb,0x26, 0x58,0x97,0x3f,0x76,0x11,0xff,0x0,0xb3,0x1f,0xf0,0xa3,0x85,0xf9,0x40,0x18,0xa9, 0x50,0xee,0x1c,0xf2,0x7d,0x6b,0x27,0x37,0x21,0xf2,0xa2,0x15,0x86,0x38,0xd8,0xb0, 0x5c,0xb1,0xea,0xec,0x49,0x63,0xf5,0x35,0x2a,0x93,0x9c,0xe,0x3e,0x9c,0x52,0x49, 0xc1,0x18,0xa6,0xa1,0xc9,0xa8,0xb5,0x9e,0xa5,0x5b,0x42,0xea,0x80,0x7,0x18,0xa6, 0x48,0xe2,0xa2,0xdd,0xef,0x4d,0x2d,0x5a,0xb9,0xd9,0x13,0x6d,0x49,0x5d,0xc7,0x0, 0x54,0x6c,0x78,0xa6,0x6e,0xa6,0x34,0x98,0x38,0x35,0x93,0x95,0xca,0xb0,0xf1,0xf5, 0xa6,0xb9,0xc8,0xa6,0x6f,0xc9,0xe2,0x90,0x9a,0x9b,0x81,0x6a,0x3a,0x93,0x80,0x7a, 0xd4,0x28,0xc0,0x28,0xfa,0x52,0x17,0xfd,0xf2,0xff,0x0,0xba,0xdf,0xd2,0xad,0x32, 0x59,0x6c,0x7d,0x69,0x49,0xa8,0x37,0xd0,0x1c,0x63,0x39,0xaa,0xba,0x15,0x89,0x41, 0xe6,0x8d,0xdc,0x9a,0x87,0x7f,0xa5,0x30,0xcb,0x8c,0x9c,0x8c,0xe,0xfd,0xa8,0xe6, 0x43,0xb1,0x6c,0x30,0x50,0x72,0x6a,0x17,0x6f,0x9b,0xaf,0xe1,0x55,0xcc,0xad,0x27, 0x4c,0xa8,0x3e,0xb4,0xe4,0xc2,0x80,0x7,0xeb,0x43,0x9d,0xf4,0x4,0x8c,0x2b,0xcf, 0xb3,0xa4,0xb2,0x34,0x83,0xc,0x64,0x61,0xfa,0x9a,0x67,0x93,0x19,0x19,0x1b,0x49, 0xfa,0x56,0xcc,0xb6,0x50,0xcc,0x58,0x92,0x54,0x93,0x9c,0x8f,0x5a,0x45,0xd3,0x62, 0xc6,0xdf,0x31,0x98,0x77,0xca,0x83,0x5c,0x6e,0x83,0x93,0x39,0xa5,0x86,0x52,0x77, 0x6c,0xc5,0x36,0x56,0x93,0x2,0x5e,0x18,0xdb,0xdc,0xad,0x31,0xf4,0x9d,0x3a,0x40, 0x15,0xad,0x62,0x20,0x74,0xc7,0x6a,0xdf,0x7d,0x3a,0xf,0xe1,0x8d,0x3e,0x9b,0x45, 0x2a,0x59,0xaa,0x20,0x1f,0xd9,0xf6,0xef,0x8e,0xfc,0xf,0xe9,0x54,0xa8,0x4f,0xb9, 0x2b,0xd,0x6d,0x99,0x87,0x6f,0xa7,0xd9,0xda,0x1,0x1c,0x11,0xc6,0xb9,0xe4,0xe, 0xb4,0xf6,0xb4,0x81,0xc8,0x66,0x89,0x4b,0x2f,0x46,0x2a,0x32,0x2b,0x78,0x58,0xc5, 0xc3,0xb,0x3b,0x40,0x7e,0x83,0x23,0xf4,0xa9,0x56,0xc6,0x32,0x39,0xb7,0xb7,0xff, 0x0,0xbe,0x41,0xaa,0x58,0x69,0xf7,0x1b,0xa2,0xff,0x0,0x98,0xc1,0xf2,0xe3,0xb, 0x82,0x41,0x7,0xb1,0xc1,0xa6,0x8b,0x75,0x23,0x29,0x98,0x87,0xfb,0x20,0x60,0xd7, 0x46,0xb6,0x50,0xa8,0xe2,0xda,0x11,0xf4,0x41,0x48,0x2c,0x21,0xf3,0x37,0x8,0xd4, 0x7b,0x1,0xc5,0x37,0x85,0x9b,0xea,0x2f,0xab,0xae,0xac,0xe7,0xfc,0xad,0x83,0xe6, 0x2c,0xc7,0xfd,0x95,0xcf,0xf2,0xa5,0x8,0x33,0x82,0xb2,0x3,0xd8,0x34,0x6c,0x33, 0xf9,0x8a,0xe8,0xa3,0xd3,0xe3,0x89,0xf7,0xa8,0xc3,0x76,0xc8,0xce,0x2a,0x43,0x6e, 0xf,0x52,0x49,0xf5,0xa6,0xb0,0x8e,0xc3,0x58,0x68,0xf7,0x39,0xb6,0x8a,0x5c,0x85, 0x48,0x58,0xb1,0xec,0x78,0xa9,0x97,0x4f,0xb9,0x3d,0x5a,0x18,0xf2,0x39,0x3b,0x89, 0x23,0xf0,0xc0,0xad,0xd3,0x6b,0x1e,0xe0,0xc5,0x32,0xde,0xa6,0x9c,0x63,0x1e,0x82, 0xaa,0x38,0x45,0xd4,0xb8,0xd1,0x82,0x31,0x92,0x3f,0x2b,0x11,0x2e,0x58,0x67,0x24, 0xe3,0xbd,0x5e,0x4c,0xf7,0xa6,0xb2,0x6f,0x9d,0xd9,0x48,0xc0,0x38,0xeb,0x4a,0x0, 0x1d,0x5c,0xf,0xc6,0xaa,0x31,0x49,0x9b,0x2d,0x89,0x57,0x22,0x9e,0x9,0xa8,0xc3, 0xa0,0xea,0xe2,0x9c,0x26,0x41,0xde,0xb6,0x4d,0x0,0xf2,0x33,0xde,0x98,0x57,0x3d, 0xe8,0xf3,0x90,0xf7,0xa3,0xcc,0x4f,0x5a,0x7a,0x5,0x86,0xf9,0x67,0x3f,0x78,0xfe, 0x14,0xe5,0x43,0xea,0x4d,0x6,0x55,0x1d,0xe8,0xf3,0xd0,0x7f,0x10,0xfc,0xa9,0x68, 0x16,0x1f,0x83,0xe8,0x7f,0x1a,0xa,0xe7,0x83,0xd0,0xf5,0xa6,0x9b,0x94,0xf5,0x6, 0x9a,0x6e,0x3d,0x5,0x17,0x41,0x62,0xb2,0x26,0xd6,0x31,0x92,0x41,0x5e,0x9e,0xe2, 0x9f,0xe5,0xe7,0xb9,0xa2,0x77,0x66,0x65,0x93,0x69,0xe0,0x63,0xa7,0x6a,0xb,0x80, 0x1,0xc8,0x0,0xf4,0xc9,0xa8,0xd1,0xd,0x0,0x8f,0xfd,0xaa,0x70,0x4f,0x7a,0x60, 0x95,0x7f,0xbe,0x9f,0x9d,0x2f,0x9b,0xe8,0x47,0xe1,0xcd,0x17,0x43,0x25,0xa,0x2a, 0x40,0xa2,0xab,0x79,0xc7,0xd7,0xf4,0xa5,0xfb,0x56,0x3a,0x95,0xfc,0x69,0xa9,0x21, 0x58,0xb6,0x38,0xac,0xcf,0x12,0x48,0xf1,0xf8,0x67,0x54,0x64,0x5d,0xc5,0x6d,0x64, 0x3b,0x7d,0x46,0xd3,0x9a,0xb0,0x2f,0x17,0xbe,0x3f,0xa,0x6b,0xdd,0x46,0xfc,0x14, 0x2c,0xf,0x50,0x45,0x69,0x19,0xa4,0x16,0x3c,0x5b,0x5d,0xd4,0xbe,0xd1,0x15,0xac, 0xd1,0x1,0x85,0x24,0x1c,0xf2,0xb8,0x20,0x1c,0x83,0xf8,0x1a,0x9f,0x47,0xd5,0x6e, 0xd,0x84,0x6b,0x14,0xd6,0x91,0x32,0x8e,0x4c,0xad,0xb7,0xf9,0x3,0x5c,0xbf,0x89, 0xf4,0xab,0x8d,0x1b,0x5b,0x7d,0x36,0x66,0x66,0x8a,0x3f,0x9a,0x13,0xbb,0x89,0x23, 0x24,0xed,0x3d,0x86,0x40,0xe0,0xfb,0x83,0x53,0x69,0x2,0x36,0x4f,0xf9,0x6,0x99, 0xf9,0xe1,0x8e,0x71,0xd3,0xbf,0xcc,0x7,0xeb,0x5e,0xc4,0x9c,0x6a,0x52,0x44,0x36, 0xf9,0x8d,0xed,0x63,0x57,0xbb,0x5f,0xdd,0xc9,0xa9,0x41,0x86,0x5f,0xf9,0x77,0x72, 0x73,0x9f,0x5e,0x5,0x6d,0x78,0x1e,0xfa,0x5b,0xeb,0xcd,0x3e,0xd2,0x26,0xf9,0xc4, 0xa2,0x67,0x1d,0xe3,0x45,0xce,0x49,0x3e,0x8d,0xc0,0xfa,0x91,0x5c,0x8e,0xa3,0x1, 0x28,0xcc,0x6d,0x6d,0xed,0x90,0xf,0xba,0xae,0x9,0x3c,0x7b,0x3b,0x1f,0xc3,0xfc, 0x8f,0x61,0xf0,0x9f,0x87,0xec,0xfc,0x35,0x6b,0xf6,0x78,0x86,0xfb,0x89,0x6,0x67, 0xb8,0x61,0xf3,0x48,0x7a,0x63,0xd9,0x7d,0x7,0xea,0x6b,0x96,0xbb,0x8c,0x20,0xa3, 0xdc,0xb5,0x73,0xaa,0x5e,0x9d,0xff,0x0,0x1f,0xa5,0x3a,0xa2,0xd,0xc7,0x3d,0x7f, 0x9d,0x21,0x98,0xe,0xd5,0xc7,0xcc,0x88,0xb3,0x25,0x27,0x1f,0x9d,0x66,0x8b,0xcb, 0x88,0xa5,0x7c,0xa2,0xcd,0x16,0xe2,0x36,0x8e,0x18,0x73,0xdb,0xd7,0xf4,0xab,0x66, 0x6c,0xf1,0xb7,0xf5,0xac,0xc4,0x70,0xc1,0xf3,0x83,0x97,0x6e,0xf,0xd4,0xd6,0x73, 0x9d,0x87,0x63,0x56,0xde,0xee,0xb,0xa5,0x26,0x26,0x5,0x97,0x86,0x52,0x30,0xcb, 0xf5,0x15,0x23,0x7f,0x9c,0x56,0x1c,0xd1,0xc7,0x2b,0x2b,0xfc,0xcb,0x28,0xfb,0xb2, 0x21,0xc3,0xf,0xc7,0xd3,0xdb,0xa5,0x2a,0x6a,0xd3,0xdb,0xd,0xb7,0x6a,0x67,0x8f, 0x3f,0xeb,0xa1,0x5f,0x98,0x7f,0xbc,0x83,0xf9,0x8f,0xca,0xaa,0x35,0x16,0xcc,0x39, 0x59,0xcf,0xf8,0x93,0x4a,0xb9,0x93,0x50,0x92,0xe2,0x36,0xf3,0x32,0xa1,0x4c,0x67, 0xae,0x1,0x27,0x23,0xf3,0xae,0x46,0x7d,0xcc,0x92,0x46,0x22,0x7c,0xab,0x67,0xe7, 0x1b,0x48,0x3c,0xff,0x0,0x9e,0x2b,0xd3,0xd9,0xa3,0xbc,0x5f,0x36,0x37,0x59,0x15, 0xba,0x32,0x1e,0xf,0xe3,0xfe,0x4f,0xb5,0x63,0xea,0x9a,0x4c,0x77,0x4b,0x96,0x50, 0x59,0x79,0x4,0x75,0x1f,0x9d,0x4e,0x84,0xca,0x17,0x3c,0xfe,0x5b,0xb6,0xf2,0x93, 0x70,0x3b,0xe4,0x1c,0x6f,0x1c,0x80,0x2b,0xa7,0xf0,0xad,0xa0,0x3a,0x41,0x9a,0x27, 0x92,0x19,0xbc,0xe9,0x7,0x99,0x13,0x94,0x27,0xc,0x7d,0x38,0x3f,0x8d,0x60,0xea, 0x7a,0x3d,0xed,0xad,0xc6,0xef,0x22,0x49,0xe0,0x41,0x91,0x28,0xc1,0x2a,0x3d,0x8, 0xff,0x0,0xa,0xea,0xfc,0x20,0x8c,0x9a,0x10,0x2e,0xa,0x96,0x9e,0x56,0x0,0x8c, 0x1c,0x16,0x34,0xa6,0xd2,0x8a,0xb1,0x30,0x83,0x4c,0xdb,0xb6,0xd5,0xb5,0x2b,0x4c, 0x9,0xd1,0x2f,0x61,0xc7,0xdf,0x8f,0x9,0x20,0xfa,0x8c,0xed,0x3f,0xa7,0xe3,0xdb, 0x5e,0xd3,0x54,0xb4,0xbd,0x3b,0x22,0x97,0x12,0x7f,0xcf,0x29,0x6,0xd7,0x1f,0x81, 0xac,0xc1,0x18,0xc0,0xe9,0xf9,0x51,0x25,0xbc,0x33,0x26,0xc9,0x63,0x59,0x7,0xfb, 0x42,0xa6,0x35,0x5a,0xdc,0xd6,0xc6,0xf1,0x1f,0x8d,0x55,0xbc,0xb7,0x4b,0x88,0x1a, 0x27,0x92,0x54,0x52,0x39,0x31,0xc8,0xc8,0x47,0xd0,0x8c,0x1a,0xca,0x56,0xbd,0xb5, 0x1f,0xe8,0xd7,0x2,0x45,0x1d,0x23,0xb8,0xc9,0xfc,0x3,0x75,0x1f,0x8e,0x69,0xed, 0xac,0xa6,0xdd,0x97,0xb6,0xef,0x66,0xf9,0xc6,0xe6,0x3b,0xa3,0x3c,0xe3,0xef,0xf, 0xc3,0xa8,0x15,0xb2,0xab,0x16,0x85,0x63,0x87,0xf1,0x27,0x83,0x35,0x99,0xe3,0x61, 0x65,0xe2,0x2b,0xcb,0x98,0xa4,0x6e,0x6d,0xaf,0x6e,0x9f,0x9f,0xa3,0x3,0x8f,0xc0, 0x8f,0xc6,0xbc,0xab,0xc4,0x56,0x3a,0xe6,0x9d,0x3b,0xbe,0xab,0x67,0x3d,0xb2,0xee, 0xf9,0x5d,0x80,0x31,0x8f,0x4f,0x98,0x7c,0xbf,0xca,0xbe,0x90,0x92,0x24,0xb8,0x8c, 0x11,0x86,0x4,0x6e,0x52,0xf,0x6c,0x70,0x45,0x51,0x96,0xd0,0x4,0x65,0x0,0x94, 0x6e,0xa0,0x8c,0x83,0xf5,0x1d,0x2a,0xe1,0x5f,0x95,0xed,0xa1,0x9c,0xe0,0x99,0xf3, 0x6c,0xfa,0x84,0xd7,0xa8,0x5e,0xe1,0x9d,0xce,0xf5,0x2c,0x3f,0x87,0x0,0x71,0xc7, 0xf5,0xf7,0xae,0xa7,0x4e,0xd9,0x69,0xa3,0xb5,0xc2,0xe0,0x19,0x8,0x2c,0x80,0x6d, 0xf9,0x87,0x21,0x7a,0xf2,0x2b,0xba,0xd4,0xfc,0xd,0xa1,0xcf,0x2f,0x9f,0x16,0x99, 0x15,0xbc,0xf9,0xc9,0x36,0xff,0x0,0x2a,0x13,0xee,0x9d,0x2b,0x9e,0xd5,0x7c,0x3b, 0xa9,0xda,0x5f,0xfd,0xaa,0xd2,0xda,0x3b,0xdb,0x70,0x6,0x12,0x30,0x3,0xa6,0x7, 0x65,0x27,0xf9,0x56,0xae,0xbc,0x27,0xa3,0xd0,0xe6,0xab,0x49,0xbd,0x8c,0x79,0xf5, 0xeb,0x2b,0x4b,0x84,0xb6,0x96,0x7,0x2f,0x2a,0xa6,0x7c,0x99,0x32,0xc0,0xfa,0x5, 0x23,0xd7,0xa9,0xcd,0x5d,0x49,0x14,0x5c,0xab,0x5a,0xef,0x86,0x78,0xc0,0x98,0x23, 0x39,0xc3,0x2e,0x71,0x86,0xe7,0x83,0x5c,0x66,0xae,0x6e,0xac,0xbc,0x41,0x1d,0xec, 0xb0,0x4b,0xd,0xc8,0xce,0xd4,0xb8,0x80,0xa6,0x38,0x20,0x1e,0x71,0x9e,0xb5,0x77, 0x4b,0xd5,0x77,0x32,0xca,0xfb,0xe7,0x9d,0x9d,0x44,0x8e,0xc7,0x21,0x57,0x3c,0xe3, 0xdb,0x3,0xf4,0xad,0x1d,0x38,0xda,0xf1,0x39,0xeb,0x42,0x56,0x3d,0x21,0x2f,0x99, 0xf5,0x5b,0x3c,0x1d,0xa1,0xee,0xa1,0x4,0x16,0xcf,0xf1,0x8f,0xe9,0x9a,0xee,0x2d, 0xc1,0x3b,0x7e,0x83,0xa5,0x79,0x85,0x9e,0xa3,0x8f,0x14,0xe8,0xb6,0x22,0x25,0xc, 0xf3,0xab,0xca,0x3a,0x85,0x3b,0x58,0x80,0x3f,0x2c,0xd7,0xa9,0x47,0xc1,0x4,0x74, 0xaf,0x36,0xac,0x79,0x5e,0x87,0x7e,0x15,0x59,0x5d,0x11,0x5d,0xac,0x52,0x29,0x8e, 0x68,0xd2,0x45,0x7,0xa3,0xa8,0x3f,0xce,0xa3,0x8a,0x6,0x80,0x7f,0xa2,0x5c,0xcf, 0x6e,0xa3,0x9d,0xb1,0xbe,0x57,0xfe,0xf9,0x39,0x1f,0xa5,0x49,0x3a,0xee,0x63,0xc5, 0x32,0x36,0x2a,0x6,0x48,0xcd,0x67,0x73,0xa5,0x96,0x23,0xd5,0x35,0x4b,0x77,0xa, 0xe2,0xda,0xf1,0x3d,0x31,0xe5,0xb9,0xfe,0x9f,0xca,0xb4,0x21,0xf1,0xd,0xa8,0x0, 0x5d,0x45,0x3d,0xa9,0xee,0x64,0x5c,0xaf,0xfd,0xf4,0x2b,0x24,0xbe,0xe6,0xe7,0x9e, 0x2a,0x54,0x19,0x3,0x1c,0x7d,0x2b,0x48,0xd4,0x71,0x15,0x93,0x47,0x4b,0xd,0xc4, 0x17,0x48,0x1e,0x9,0x92,0x45,0x3d,0xd0,0x83,0x44,0x85,0x95,0x72,0x98,0x27,0xd0, 0xe7,0x9a,0xe6,0x24,0xb1,0xb6,0x79,0x4,0x81,0x3c,0xb9,0x47,0x49,0x22,0x25,0x5b, 0xf3,0x14,0xff,0x0,0x33,0x53,0xb7,0xe6,0x1b,0xef,0x39,0x7,0xfc,0xb3,0xb9,0x19, 0xcf,0xfc,0x8,0x73,0xfc,0xeb,0x4f,0x6c,0x98,0xb9,0x4b,0x77,0xb0,0x47,0x70,0x4a, 0x4d,0xa,0x32,0x15,0xc1,0x47,0x8c,0x60,0xfd,0x47,0x4a,0xe6,0xf5,0x2f,0x5,0x68, 0x1a,0x82,0x7e,0xf7,0x49,0xb6,0x7,0xd6,0x15,0xf2,0xcf,0xfe,0x3b,0x8f,0xd6,0xb6, 0x8e,0xbc,0xd1,0x0,0x2f,0xf4,0xe9,0x93,0xd5,0xe2,0x1e,0x62,0x81,0xf8,0x1d,0xdf, 0xa5,0x59,0xb5,0xd4,0x74,0xbb,0xec,0x79,0x17,0x30,0x96,0x3d,0x14,0x92,0xad,0xf9, 0x1c,0x1a,0x5c,0xda,0xdd,0x31,0x4a,0x17,0x3c,0xee,0x7f,0x86,0x56,0xb7,0x30,0xb4, 0x36,0x77,0xd2,0x5a,0xa7,0xf0,0xa4,0xd0,0xf9,0xa0,0x7e,0x39,0x7,0xf5,0xac,0xd, 0x4f,0xe1,0xef,0x89,0x34,0xdb,0x63,0x15,0x9c,0x30,0x6a,0x11,0xf2,0x59,0x91,0xf6, 0xb6,0x8,0xc7,0x0,0xf7,0xe7,0xd4,0xd7,0xb6,0x9b,0x55,0xce,0x71,0xfa,0x91,0x4d, 0x7b,0x74,0x2b,0x86,0x47,0x60,0x7d,0x4e,0x6b,0x58,0xe2,0x2a,0x44,0xcd,0xd2,0x8b, 0xe8,0x7c,0xf1,0x63,0xa1,0xde,0xdb,0xda,0x1b,0x7d,0x45,0xa,0x5a,0xa9,0x2c,0x6d, 0x65,0x7d,0xa4,0x3f,0xf7,0xbd,0x3f,0x5a,0x87,0xfe,0x25,0xa6,0xe2,0x19,0x5a,0xe6, 0x9,0x4,0x4d,0xb5,0x2d,0x91,0x7c,0xc3,0x21,0xe9,0xf3,0xb7,0x0,0x1,0x9c,0xe3, 0xbd,0x7d,0x1,0x75,0xa5,0xd9,0x5c,0x26,0xd9,0xad,0x4b,0x7f,0xbd,0xf3,0x63,0xf3, 0xcd,0x73,0x1a,0x9f,0x80,0xb4,0x3b,0xb9,0x3c,0xd3,0x62,0xab,0x27,0x51,0x24,0x6a, 0x51,0x81,0xf5,0xca,0x91,0x5b,0xd3,0xc5,0xab,0xd9,0xa3,0x29,0x61,0xdb,0x7a,0x1e, 0x51,0xa9,0x3b,0xdb,0x5b,0xc4,0x2d,0x89,0x17,0x77,0x64,0x82,0x8b,0x80,0x15,0x57, 0xd0,0x76,0x1e,0x83,0xeb,0xcd,0x5d,0xd3,0xed,0xec,0xf5,0x3b,0x78,0xed,0x2e,0xad, 0x5c,0x4e,0x92,0x12,0x8a,0xcd,0x86,0x5c,0x8e,0x49,0xf6,0xe3,0xf4,0xad,0xb9,0xfe, 0x14,0x22,0xdc,0x34,0xf6,0x7a,0xac,0xea,0xc3,0xee,0x89,0xa2,0xdf,0xcf,0xb9,0x4, 0x1a,0xac,0x3c,0x29,0xae,0xe9,0x97,0x72,0xdf,0x4d,0x0,0xbd,0x61,0xff,0x0,0x3e, 0xd2,0x72,0x78,0xc7,0xdd,0x38,0xae,0x87,0x56,0x12,0x56,0x32,0x74,0x5a,0x2e,0x47, 0xab,0x69,0x91,0x2f,0xf6,0x75,0xad,0x83,0x31,0xc6,0xc9,0x8e,0xd5,0xc2,0xf1,0x82, 0x72,0x33,0x9a,0xc7,0x37,0x96,0x96,0x7a,0xb4,0x16,0xb1,0xb2,0x3c,0xd7,0x2c,0x23, 0xc2,0xae,0x52,0x20,0x4f,0x27,0xb6,0x4f,0xe5,0x59,0x69,0xd,0xcd,0xde,0xbb,0x27, 0x9b,0xa6,0xdf,0x58,0x41,0xe5,0xf2,0x8a,0xac,0x1d,0xdb,0xbe,0x4f,0x41,0x9f,0xc6, 0xab,0xdc,0x5b,0xb,0xb,0x94,0xbd,0x28,0xcb,0x34,0x72,0x81,0x1a,0x3e,0x4e,0xf, 0xa9,0x3f,0xe7,0xad,0x2a,0x74,0x92,0x4e,0xcf,0x72,0xa7,0x26,0xda,0x4c,0xe8,0xe4, 0x7f,0x37,0x50,0x8c,0x92,0x5d,0x8c,0xed,0xe,0xd6,0x39,0xdc,0x99,0x0,0xd6,0x36, 0x97,0x7d,0xd,0xce,0xbc,0x9a,0x7c,0xf6,0x2,0x5b,0xd4,0x6f,0x28,0x19,0x24,0xfd, 0xdc,0x4a,0x7,0x3f,0x28,0x1c,0x9e,0xf,0x7a,0xc1,0x9f,0x5c,0x92,0xd6,0xf2,0x19, 0x63,0x66,0xf3,0x92,0x46,0x67,0x3f,0xc2,0xd9,0x39,0xfc,0x2a,0x5b,0x6b,0x4b,0xed, 0x4f,0xc4,0x37,0x30,0xe9,0xd2,0x20,0x96,0x66,0x37,0xd,0x74,0xed,0xb0,0x22,0x1e, 0x4b,0x16,0xec,0x6,0xec,0x7e,0x15,0xb7,0xb3,0x7c,0xba,0xec,0x67,0x8,0x6b,0xa9, 0xdb,0xcd,0xad,0xc7,0x6e,0xe5,0x71,0x19,0xb5,0x82,0x55,0x49,0xb,0x1d,0xae,0x46, 0x78,0xdb,0x8e,0x9c,0x83,0x8c,0x66,0xae,0xcd,0x7b,0x6,0xb1,0x68,0x21,0x5b,0x4d, 0xea,0x5f,0x61,0x92,0x59,0x36,0x38,0xf7,0x3,0xb9,0xae,0x2,0x4b,0x88,0x34,0xab, 0x79,0x52,0xd6,0xf8,0x5e,0x3a,0x3a,0xed,0xb9,0x45,0x2a,0xa5,0x94,0xe7,0xb,0x9c, 0xee,0xef,0xce,0x3b,0xd6,0xed,0x8d,0xec,0xd2,0x3a,0xeb,0x77,0x86,0xe6,0x29,0xe4, 0x72,0xc0,0x5c,0x61,0xd7,0x19,0x18,0x38,0xe3,0xd6,0xb9,0xa5,0x41,0x2b,0x49,0x17, 0x52,0xc9,0x73,0x12,0x58,0xc2,0xb6,0x30,0x5c,0x1b,0x9b,0x39,0x91,0x56,0x7c,0x5b, 0x79,0xef,0x86,0x74,0xe7,0x9f,0xa0,0xc0,0xe4,0x7a,0xf4,0xad,0xed,0x33,0xc5,0x82, 0xfa,0x63,0x6b,0x68,0x5e,0x69,0x21,0x5d,0xaf,0x86,0x55,0x57,0x38,0xed,0xb8,0x82, 0x6b,0x27,0x5f,0xd4,0x84,0xe,0x1e,0xe4,0x7c,0xf6,0x67,0xe5,0x10,0x80,0xdb,0x4f, 0x4,0x1c,0x13,0x58,0x9a,0x57,0x8b,0x74,0xc3,0xab,0x35,0xd5,0xef,0xda,0x66,0xb9, 0x75,0xd8,0x93,0x94,0x44,0xdb,0x9e,0x3a,0x3,0x81,0xc6,0x39,0xe7,0xa5,0x37,0x47, 0x9e,0x37,0x92,0x33,0x8a,0xe6,0xb4,0x8e,0xa1,0x2d,0x16,0x11,0x76,0xe2,0xff,0x0, 0xc9,0xf,0xc8,0x88,0x6d,0x5,0x5f,0x3e,0xb9,0xe3,0xb7,0x1e,0xf5,0x3d,0xf6,0xa3, 0x6c,0xd6,0x50,0xc5,0x77,0x72,0xbe,0x55,0xb0,0x5,0xa5,0x77,0xff,0x0,0x58,0xfd, 0xcf,0xea,0x7f,0x3a,0xb5,0x1b,0x1b,0x9b,0x29,0xed,0x4b,0xef,0x84,0x7c,0xc2,0x31, 0x6c,0x8e,0x37,0x67,0x3f,0x33,0xe3,0xaf,0x1e,0xb5,0xcb,0x5c,0x5b,0x5b,0xea,0x3a, 0x88,0x4f,0xec,0xf9,0x1e,0x28,0x4e,0xf7,0x26,0x42,0x15,0x4f,0xa6,0x31,0xed,0x59, 0xd2,0x5c,0xcd,0xf3,0x74,0x2a,0x72,0x7a,0xa5,0xb0,0xdd,0x5a,0xe6,0x1d,0x46,0x48, 0x8c,0x0,0xbd,0xbb,0xc7,0x90,0xc1,0x70,0xa4,0x83,0xdb,0xe9,0x58,0xd7,0x96,0x7, 0x4e,0xb6,0x6b,0xbf,0x30,0x33,0x49,0x2e,0xce,0x47,0x2b,0xde,0xb6,0xb5,0x19,0xe3, 0x96,0x8,0xd6,0xd6,0x24,0x5b,0x78,0x81,0x52,0x47,0x0,0x1c,0xf3,0xcd,0x64,0xdd, 0xea,0x9,0x32,0x2d,0x89,0x31,0xf9,0x4e,0xfc,0x32,0x9c,0x9c,0x91,0x8a,0xf4,0x23, 0x65,0x13,0x3a,0x6a,0xcb,0x42,0x3b,0xeb,0xc9,0x75,0xab,0x75,0x8d,0x7f,0x74,0x23, 0x6d,0xeb,0x19,0x6e,0x3e,0xee,0xe,0x38,0xff,0x0,0x39,0xab,0x1a,0x7d,0xc9,0x7d, 0x22,0x78,0x63,0x8f,0x6c,0xb1,0xb8,0xf3,0x89,0x3f,0x29,0x4e,0x70,0x0,0xc7,0x4e, 0x2a,0xd5,0xdc,0x9a,0x6e,0x91,0xa2,0x45,0xa7,0x5c,0xdb,0xf9,0x97,0x1,0xb7,0x24, 0xb8,0xeb,0xef,0x5c,0x75,0xc4,0xd7,0x33,0xdd,0x4e,0xf6,0xdb,0x95,0x64,0x1b,0x4a, 0xe7,0xef,0xa,0x71,0xbb,0xd8,0xb4,0x94,0xb4,0x3b,0xdf,0xe,0x5c,0xa4,0x8a,0x61, 0x27,0x4d,0xe,0x9f,0x31,0x4b,0x86,0x68,0xe5,0x91,0x4f,0x18,0x8d,0xba,0x31,0x1c, 0x7c,0xbc,0x13,0xda,0xbb,0x43,0x68,0x2c,0xee,0x67,0xbe,0x8d,0xa4,0xc,0x47,0x40, 0xe3,0x63,0x1f,0x71,0xc7,0xf8,0xf5,0xaf,0x36,0xf0,0xad,0xa3,0x4e,0x5a,0x1b,0xf4, 0xc1,0x70,0x19,0x3,0xe,0x72,0x3b,0x73,0xd0,0xfa,0x1a,0xda,0xd4,0xb4,0xfb,0x9b, 0x8b,0xe6,0x48,0x6e,0x55,0x96,0x1,0xb3,0xcb,0x20,0x31,0x41,0xf8,0xf7,0xfc,0xab, 0x86,0xbd,0xb,0xca,0xe5,0xce,0x76,0xb2,0x4c,0x93,0x58,0xbb,0x99,0xed,0xa4,0xdf, 0x20,0x8e,0x30,0x73,0x23,0x3,0xf7,0x89,0x3c,0x28,0xf4,0x14,0xcd,0x36,0xea,0x49, 0x9e,0x18,0x62,0x48,0x63,0xb6,0x57,0x0,0xc8,0xc8,0x19,0x89,0xf7,0x27,0xfa,0x62, 0xa2,0x9f,0x4b,0x9b,0x50,0xfb,0x1d,0x96,0x59,0x98,0xb8,0xdd,0x95,0xc0,0x3,0xd7, 0x15,0xad,0x26,0x9c,0x9a,0x53,0x25,0xb5,0x9d,0xbc,0xb3,0xb1,0x60,0x43,0x91,0x8d, 0xc7,0xd4,0x7b,0x52,0x9f,0x2a,0x5c,0xa9,0x17,0xed,0x39,0x34,0x3d,0x33,0xe1,0xa3, 0x30,0x9f,0x57,0x83,0x7b,0x34,0x70,0x88,0x12,0x35,0x2d,0x90,0x17,0xe7,0xc6,0x2b, 0xd0,0x2b,0xcd,0xfe,0x15,0xdf,0x8b,0xcb,0xad,0x71,0x1a,0x3d,0x93,0x45,0xe4,0x2c, 0x83,0xbf,0xfc,0xb4,0xff,0x0,0xa,0xf4,0x8a,0x23,0x1e,0x55,0x62,0xd3,0xba,0x23, 0x97,0xb5,0x45,0x81,0x52,0x4c,0x7e,0xed,0x45,0x9a,0xce,0x7b,0x96,0x85,0xc0,0xa2, 0x9a,0x69,0x9,0xe3,0xad,0x48,0xe,0x34,0xd3,0xed,0xd6,0xa3,0x92,0x68,0xe2,0x52, 0xd2,0x38,0x55,0x3,0x24,0x9a,0xc9,0x9f,0xc4,0x36,0xf1,0xe7,0xc9,0x8a,0x49,0xce, 0x38,0xd8,0x32,0x4d,0x27,0x34,0x8b,0x51,0x66,0xa4,0xbf,0x7f,0xfc,0x2a,0x36,0x94, 0x20,0xf9,0x8f,0x15,0x89,0xfd,0xa3,0xa9,0xdc,0xa7,0xfa,0xa8,0xad,0x41,0xee,0xff, 0x0,0x3b,0x7e,0x5c,0xa,0x84,0xd8,0xa4,0xc7,0x37,0x92,0xc9,0x74,0xc4,0x83,0x89, 0x18,0x85,0xff,0x0,0xbe,0x47,0x15,0xcd,0x2a,0x8a,0xfa,0x16,0xa0,0x5f,0x9b,0x5c, 0xb6,0x5e,0x20,0x57,0xb9,0x61,0xc1,0x10,0x8d,0xd8,0x3e,0xe7,0xa0,0xfc,0x4d,0x57, 0x37,0x7a,0x9d,0xd3,0x7d,0xc8,0xac,0x93,0xd4,0xb0,0x91,0xbf,0xc,0x71,0x4e,0x44, 0x54,0x1,0x51,0x42,0x81,0xc0,0xa,0x0,0xfe,0x54,0xfe,0x95,0x9b,0x9b,0x66,0x8a, 0x29,0x10,0x1b,0x28,0xda,0x64,0x69,0xdd,0xee,0x1f,0x9e,0x65,0x3c,0xe,0x9d,0x7, 0x4a,0xb9,0xbb,0x9f,0x5c,0xd4,0x5,0xbe,0x60,0x4f,0x5c,0x71,0x4a,0x9,0xc0,0x20, 0xd4,0x5f,0x51,0x32,0xd2,0xb6,0x30,0xd,0x3f,0x3d,0x78,0xaa,0x5b,0x98,0x9c,0xee, 0xa7,0x89,0x88,0xea,0x73,0x56,0xa4,0x85,0x60,0x66,0xe4,0xd2,0xa3,0x95,0x1f,0x5a, 0x89,0xce,0x5b,0x83,0xd6,0x85,0xfa,0xd6,0x77,0xd4,0x76,0x24,0x69,0x6,0x7a,0x50, 0x87,0xe6,0x3f,0x5a,0x61,0xc7,0xe7,0x4b,0x1f,0x53,0x8a,0x6d,0xea,0xc,0xb2,0xbc, 0xd3,0x24,0x20,0x13,0xed,0x52,0xa8,0xe0,0x1a,0x8a,0x75,0xe0,0xb0,0xab,0x7b,0x12, 0x44,0xe,0x58,0xc,0xd3,0x64,0x1c,0x91,0x9a,0x7a,0xd0,0xe3,0x35,0x9b,0x5a,0xe, 0xe4,0x69,0xc7,0x7a,0x56,0x34,0xe0,0x31,0x50,0x92,0xd2,0x5d,0xad,0xac,0x78,0x12, 0x32,0x16,0xc9,0x1d,0x0,0x38,0xfe,0xb5,0x36,0x6c,0xb,0xa,0x72,0x29,0x92,0x36, 0x27,0x8c,0x7a,0x86,0x1f,0xca,0x96,0x34,0x78,0xd7,0x63,0xb6,0xe6,0x1d,0x48,0xef, 0x48,0xe3,0x2e,0xbe,0xa3,0x38,0xaa,0xb0,0x12,0x6e,0xcd,0x1b,0xb0,0xf,0x34,0xc2, 0x70,0x3d,0x3e,0xb5,0x54,0xcc,0xf7,0x3,0x16,0xc5,0x76,0x67,0x6,0x52,0x38,0xff, 0x0,0x80,0xfa,0xfd,0x7a,0x7d,0x68,0x6c,0x76,0x26,0x96,0xe0,0x46,0x30,0x32,0xcc, 0x7a,0x2a,0xf5,0x3f,0xfd,0x6f,0x7a,0x6a,0x23,0x33,0x87,0x95,0x83,0x11,0xd1,0x47, 0xdd,0x1e,0xde,0xf4,0xb0,0xc0,0x90,0x8f,0x94,0x12,0x4f,0x56,0x6e,0x49,0x3e,0xb5, 0x2e,0x9,0x39,0xce,0x6a,0x6e,0x2,0x86,0xe7,0x9a,0x90,0x1c,0x8a,0x60,0x18,0x35, 0x2a,0x8a,0xa4,0xae,0xc4,0xc4,0x0,0x9c,0x1e,0x7f,0xa,0x99,0x46,0x3b,0x3d,0x59, 0xb7,0xc7,0x90,0xb9,0x2,0xa5,0xca,0xfa,0xd7,0x4c,0x69,0x2d,0xee,0x66,0xe4,0x57, 0x50,0x7f,0xba,0x45,0x3c,0x2f,0xa8,0xa9,0xb0,0xa7,0xbe,0x69,0x86,0x18,0xcf,0x25, 0x8f,0xe7,0x57,0xc8,0x22,0x30,0x83,0xfb,0xd4,0xe0,0xa3,0xfb,0xcd,0xf9,0xd2,0x79, 0x40,0x7f,0x15,0x28,0x2,0x96,0xc0,0x3b,0xe5,0x1f,0xc4,0x69,0x43,0x2f,0xa9,0x34, 0xdc,0x67,0xb5,0x38,0x29,0x1d,0xa9,0xdc,0x7,0x2,0xd,0x19,0x2,0x8c,0x1a,0x31, 0xeb,0x54,0x80,0x69,0x61,0x51,0x4f,0x37,0x97,0x13,0x30,0xc6,0x40,0xe2,0xa5,0xc0, 0xaa,0xb7,0x18,0x33,0x45,0x16,0x7a,0x9d,0xc4,0x7b,0xa,0x99,0xbb,0x20,0x45,0x29, 0x2c,0x90,0xed,0xe,0x37,0x3e,0x32,0xc4,0x93,0xd6,0x9a,0xb6,0x10,0x86,0xc8,0x55, 0x4,0x7b,0x9f,0xf1,0xab,0x8d,0x96,0x62,0x43,0x71,0xd8,0x7b,0x52,0x2e,0x73,0x5c, 0xcb,0xcc,0xb1,0xab,0x9,0x1c,0x2,0xbf,0x95,0x2f,0x94,0xdf,0xec,0xd3,0xf7,0x63, 0xad,0x34,0xca,0xa0,0x73,0x9f,0xca,0xae,0xd1,0x1,0x86,0x37,0xcf,0xdd,0xa7,0x4, 0x23,0xa8,0x3f,0x95,0x42,0xf2,0xa7,0x72,0xc3,0xf1,0xc5,0x57,0x33,0x8c,0xf0,0xed, 0xff,0x0,0x7f,0x3f,0xfa,0xd5,0x2d,0xa4,0x34,0x5f,0x0,0x77,0x14,0x7e,0xec,0x75, 0x5c,0xfe,0x7,0xfc,0x2a,0x88,0x97,0x77,0x76,0xff,0x0,0xbe,0xff,0x0,0xfa,0xd4, 0xed,0xc7,0xb1,0x97,0xf0,0x24,0xd1,0xed,0x0,0xbb,0xb9,0x0,0xe2,0x33,0xff,0x0, 0x7c,0x9f,0xf0,0xa7,0x7,0xcf,0x48,0xcf,0xe9,0x54,0x95,0x5c,0xff,0x0,0x13,0x2f, 0xb9,0xcf,0xf8,0xd3,0x71,0x72,0xe,0x16,0xe4,0x81,0xfe,0xe8,0x3f,0xd6,0x9f,0x38, 0x58,0xd1,0xf,0x9c,0x82,0xa7,0x4,0x63,0x9c,0x56,0x5c,0x80,0x43,0x2b,0x46,0x24, 0x95,0x47,0x5c,0xf,0xff,0x0,0x5d,0x3c,0x9b,0xa0,0x70,0x67,0xe3,0xd7,0x0,0x54, 0x52,0x33,0xa4,0xab,0x23,0xca,0x19,0x73,0x86,0xff,0x0,0x38,0xa9,0x9c,0xae,0x8, 0x72,0xb8,0x7,0xfd,0x64,0xa7,0xf1,0xa7,0x99,0xd0,0x75,0x66,0xfc,0x41,0xa1,0xc2, 0xe,0xac,0x98,0x23,0x23,0x2b,0xff,0x0,0xd6,0xa6,0x65,0x1b,0x82,0xd1,0x11,0xfe, 0xed,0x66,0xd3,0x2b,0x40,0x13,0x39,0xfb,0x9b,0xf,0xd4,0x1f,0xf0,0xa9,0x16,0x59, 0xbf,0xe9,0x8f,0xe5,0x51,0xf9,0x51,0x67,0xef,0x45,0xf9,0x7f,0xf5,0xe9,0x8,0x88, 0x74,0x39,0x3e,0xcc,0xa3,0xf9,0x9a,0x69,0x31,0x68,0x4c,0x67,0x75,0xea,0xf0,0xe7, 0xea,0x29,0xa6,0x56,0x71,0xc9,0x88,0xfa,0xf7,0xa8,0xc7,0xb4,0x64,0xff,0x0,0xdb, 0x41,0xfe,0x14,0x30,0x6f,0xee,0x49,0xff,0x0,0x7d,0x67,0xfa,0x55,0xea,0xd5,0x87, 0xa1,0xc3,0x7c,0x54,0x82,0xd6,0x4d,0x17,0x4f,0xb8,0xb9,0x49,0x1d,0xe3,0xb9,0xf2, 0xd5,0xa3,0x60,0xaf,0x86,0x46,0x24,0x2,0x41,0x1c,0xed,0x1d,0xab,0xcb,0x92,0xd, 0x25,0xd1,0x49,0xb2,0xd5,0xba,0x75,0x92,0xf6,0x15,0x1f,0xa4,0x44,0x8e,0xdd,0x2b, 0xd7,0xfe,0x20,0xc2,0x92,0xe8,0x36,0x8b,0x23,0x15,0x51,0x7f,0xf,0xcd,0xcf,0x19, 0xc,0x3f,0xad,0x79,0xac,0x9a,0x51,0xb8,0xd6,0xbe,0xc1,0x6f,0x22,0xc8,0x27,0x8a, 0x56,0x8f,0x63,0x74,0x2b,0x13,0x30,0x27,0xf1,0x3,0xf3,0xaf,0x5f,0x2,0xe1,0xec, 0x9b,0x9f,0x43,0xa,0xb3,0x6a,0x4a,0x31,0x34,0x34,0x6b,0x7d,0x24,0x79,0x6a,0x74, 0x32,0x53,0x72,0xfe,0xf1,0xf5,0x39,0x24,0xe0,0x9c,0x67,0x6e,0xd0,0xa7,0xf0,0xaf, 0x6a,0x66,0xf9,0xb0,0x55,0xbe,0x88,0x70,0x2b,0xcc,0x7c,0x21,0xa7,0x58,0x1d,0xe, 0x9,0xdc,0xef,0x79,0x9e,0xc,0x93,0x8c,0x81,0xbd,0x73,0x5e,0xa2,0x63,0x3b,0x8e, 0x18,0x83,0x9e,0xd8,0x15,0xcb,0x8d,0x6b,0x99,0x58,0xba,0x73,0x72,0x4e,0xe0,0x27, 0x64,0xc7,0xdf,0x0,0x76,0x27,0x35,0x20,0xbb,0x43,0xfc,0x2d,0x51,0xed,0x6e,0x7f, 0x78,0xdf,0xf7,0xd7,0xf8,0x53,0x77,0x48,0xbc,0xee,0x73,0xf8,0x9a,0xe2,0x73,0x65, 0x68,0x4d,0xf6,0x85,0x27,0x85,0x6f,0xc6,0xa8,0x46,0xc3,0x69,0xc7,0xa9,0xfe,0x66, 0xad,0x2c,0xf9,0xeb,0xb8,0xfd,0x6b,0x35,0x3,0xaa,0xfe,0x27,0xf9,0xd4,0x49,0xb6, 0x32,0xc9,0x6c,0xfb,0x53,0x18,0xe7,0xaf,0xf2,0xa8,0xf7,0xd1,0x9a,0x9b,0xb1,0x8d, 0x30,0xec,0x91,0xa5,0xb7,0x73,0x14,0xa7,0xef,0x11,0xc8,0x61,0xfe,0xd0,0x3d,0x7e, 0xbd,0x7d,0xea,0x45,0xbf,0x55,0xc2,0x5e,0xa2,0xc4,0x7a,0x7,0xcf,0xee,0xdb,0xe8, 0x4f,0x4f,0xa1,0xe7,0xeb,0x49,0x92,0x29,0xae,0x3,0x29,0x56,0x0,0x86,0x18,0x39, 0x19,0xc8,0xaa,0x52,0x62,0x71,0xbe,0xa4,0xf3,0xd9,0xc6,0xe7,0x21,0x40,0x6f,0x50, 0x2a,0x5,0x87,0x62,0xe3,0xf9,0x54,0x23,0xcc,0xb5,0x4c,0x5b,0x6d,0xd8,0x39,0xf2, 0x9c,0x9c,0x7e,0x7,0xb5,0x49,0x1d,0xd7,0x98,0xbf,0x32,0x32,0x3f,0x75,0x6a,0xa6, 0xd3,0x40,0xa2,0x4e,0xae,0x54,0x74,0xa7,0xf9,0xb8,0x1d,0x2a,0x0,0xc1,0x86,0x45, 0x29,0x38,0x14,0x8a,0xb2,0xb9,0x36,0xfd,0xde,0xd4,0xb9,0xf4,0xe9,0x50,0x2b,0x54, 0x80,0x8f,0x5a,0x57,0x25,0xa2,0xf,0xb1,0xac,0x5f,0x35,0xa3,0x9b,0x66,0xf4,0x4e, 0x50,0xfd,0x54,0xf1,0xfd,0x6a,0x65,0xbb,0x91,0x0,0x17,0x11,0xee,0x1d,0xde,0x10, 0x4f,0xe2,0x47,0x5f,0xd4,0xfe,0x14,0xb9,0xa4,0xcf,0x35,0x49,0x93,0xca,0x3d,0x25, 0x86,0xe5,0x4b,0xc1,0x2c,0x72,0x28,0x3c,0x94,0x39,0xc7,0xd7,0xd2,0xa1,0x96,0xd6, 0x32,0x49,0xd8,0x1,0x3d,0xc5,0x43,0x2d,0x8d,0xbc,0xd2,0x79,0xc5,0x4c,0x73,0x73, 0xfb,0xe8,0x89,0x57,0x19,0xf7,0x1d,0x7f,0x1a,0x53,0x25,0xed,0xb8,0xfb,0x8b,0x76, 0x9b,0xba,0xe4,0x46,0xe0,0x13,0xff,0x0,0x7c,0x9e,0xbe,0xdd,0x3b,0xf6,0x77,0x13, 0x8f,0x62,0xad,0xee,0x9f,0x6b,0x7f,0x3,0x5b,0xde,0x5a,0x41,0x73,0x11,0xfe,0x9, 0x90,0x30,0x3f,0x9e,0x6b,0x8b,0xbb,0xf8,0x7b,0xa4,0xc3,0x34,0x92,0xe9,0xed,0x71, 0x63,0xbc,0x61,0xa3,0x2f,0xe6,0xc6,0x4f,0x6e,0x1b,0x91,0xf9,0xd7,0x7d,0x15,0xd5, 0xb5,0xd1,0xda,0xa4,0xa4,0xbd,0xe2,0x90,0x6d,0x71,0xf8,0x1f,0xe9,0x4f,0x78,0x41, 0x1b,0x58,0x64,0x56,0xd1,0xa8,0xd6,0xcc,0xc9,0xc7,0xa1,0xe5,0x7a,0x66,0x85,0xaa, 0xf,0x1c,0xe9,0xf7,0x33,0x5b,0xb9,0x9,0x39,0x79,0x26,0x3,0xe4,0x2a,0x14,0x81, 0x8f,0xce,0xbd,0x51,0xf,0x1c,0x55,0x55,0xb7,0xb,0x3a,0x11,0xc0,0x19,0xc8,0x1d, 0xea,0xe8,0x5e,0x6a,0x2a,0x4d,0xcb,0x53,0x4a,0x69,0x25,0xa1,0x14,0xa4,0xe4,0x55, 0x20,0x72,0xc4,0xe4,0xf5,0xec,0x6a,0xfb,0xa0,0x66,0x19,0xf4,0x35,0x9d,0xe,0x15, 0x5c,0x93,0xfc,0x46,0xb3,0x4b,0x52,0xc9,0xd4,0xe4,0xf5,0x35,0x65,0x49,0x0,0x55, 0x54,0x4,0xca,0x83,0xf1,0xab,0x98,0xe2,0x86,0x34,0x84,0x66,0x22,0x9f,0x9c,0x8a, 0x89,0x87,0xcc,0xb4,0xb9,0xc0,0xa4,0xb4,0x0,0x7e,0x39,0x4,0x8f,0xa7,0x15,0x14, 0x96,0x96,0xf7,0x2b,0xfb,0xe8,0x51,0xfd,0xc8,0xe7,0xf3,0xa7,0x39,0xc8,0xa5,0x52, 0x40,0xa0,0x77,0x23,0x16,0xb3,0x40,0x33,0x69,0x7b,0x3c,0x1e,0x8b,0x9d,0xeb,0xf9, 0x1f,0xf1,0xa4,0x3a,0xbe,0xb3,0x68,0xeb,0xe6,0x5a,0xdb,0xde,0xc6,0x4f,0x2d,0x9, 0xd8,0xf8,0xfa,0x1c,0x8f,0xd6,0xa7,0xc9,0xeb,0x93,0x51,0x36,0x5a,0x78,0xf2,0x4f, 0x19,0x27,0xde,0x9a,0x9b,0x41,0xa1,0x3c,0x5e,0x26,0xb0,0x66,0xd9,0x77,0x15,0xc5, 0xa3,0x1e,0x9e,0x74,0x7c,0x1f,0xc4,0x64,0x56,0x94,0x33,0x5b,0x5d,0x2e,0xfb,0x79, 0xa3,0x95,0x7f,0xd8,0x6c,0xd6,0x79,0x1,0x90,0x82,0x1,0x1f,0x4f,0xf2,0x2a,0x84, 0x9a,0x35,0x83,0xcc,0x66,0x10,0x79,0x72,0xff,0x0,0x7e,0x26,0x28,0x47,0xe5,0x55, 0xcd,0x71,0x38,0x9b,0x8f,0x69,0x1b,0x31,0x20,0x67,0x3d,0x83,0x11,0xfc,0xaa,0x13, 0xa7,0x46,0xdd,0x43,0x1,0xe9,0x9e,0x3f,0x5e,0x6b,0x29,0x86,0xb1,0x6a,0xc3,0xec, 0x9a,0x92,0x4c,0x98,0xfb,0x97,0xc9,0xbf,0xff,0x0,0x1e,0x18,0x35,0x62,0x2d,0x72, 0xf6,0x21,0xfe,0x9b,0xa5,0x39,0xc6,0x6,0xfb,0x47,0x12,0x3,0xf8,0x1c,0x11,0xfa, 0xd5,0x5e,0xe4,0xb4,0x4d,0x36,0x87,0x6d,0x3a,0xed,0x95,0x77,0x8f,0x4c,0x9f,0xf1, 0xac,0x5b,0xff,0x0,0x87,0xda,0x55,0xfe,0x32,0xd3,0xc4,0x47,0xf7,0x1f,0xfc,0x73, 0x5d,0x1c,0x3a,0xb6,0x9d,0x70,0xea,0x82,0xe5,0x52,0x56,0xe0,0x45,0x2f,0xc8,0xf9, 0xff,0x0,0x74,0xf3,0x57,0x76,0x2,0x7,0xbf,0xad,0x52,0x94,0x96,0xcc,0x97,0x4d, 0x3d,0xcf,0x2a,0xd6,0x7e,0xe,0xc5,0x7f,0x10,0x36,0xda,0xa7,0x96,0xc8,0x9,0x1b, 0xed,0xc1,0xcf,0xd4,0x82,0x3f,0x95,0x72,0x5a,0x9f,0xc2,0x9f,0x14,0x5a,0xdb,0x46, 0xb6,0xb1,0xc1,0x75,0x84,0x28,0xff,0x0,0x66,0x9f,0x5,0x97,0x3d,0xc3,0x6d,0xcf, 0xd0,0x66,0xbe,0x83,0xf2,0x90,0x9f,0xbb,0xcf,0xe1,0x91,0x48,0x61,0x4f,0xa1,0xf6, 0xff,0x0,0x38,0xad,0xe3,0x89,0xa9,0x1d,0xd8,0xbd,0x9a,0xd9,0x1f,0x37,0xd8,0x68, 0x23,0x49,0x8a,0x5,0xd6,0xec,0x6f,0x6d,0xa4,0x59,0xe,0xc3,0x2c,0xc,0x8b,0xbb, 0xb1,0xcb,0x0,0xa4,0x7d,0xd,0x68,0x6b,0x76,0x57,0xd,0x61,0x6d,0x1c,0x7e,0x64, 0xb1,0xb9,0xdd,0x2c,0xbf,0x78,0x1,0xd8,0x0,0x33,0x5e,0xfc,0x62,0x5e,0xd8,0xac, 0xab,0xcf,0xb,0x68,0xf7,0xe1,0xbc,0xfd,0x3e,0x13,0xb8,0xe4,0x98,0xf2,0x84,0xfe, 0x2a,0x45,0x69,0xf5,0xab,0xbb,0xb3,0x29,0xe1,0xee,0x7c,0xf7,0x75,0x2d,0xcf,0x9a, 0xa2,0xca,0xe0,0x35,0xc1,0x8b,0xca,0x6d,0x98,0x24,0x8f,0x71,0xeb,0x5c,0xe2,0xd8, 0xca,0xad,0x12,0x34,0x7b,0x66,0x92,0x50,0x98,0xce,0x3b,0xf5,0xf4,0xff,0x0,0xf5, 0xd7,0xbd,0x6a,0x1f,0x9,0x74,0xe7,0x9d,0x67,0xd3,0x35,0x2b,0xab,0x9,0x81,0xc8, 0x5,0x56,0x55,0xc7,0xfb,0xbc,0x1f,0xd4,0xd7,0x3d,0xa8,0xfc,0x39,0xf1,0x54,0x32, 0x9,0xa1,0x9a,0xcb,0x50,0xf2,0x9f,0x31,0xa8,0xfd,0xd3,0x9f,0xc1,0x86,0x7,0xfd, 0xf5,0x5d,0x51,0xc5,0x53,0x61,0xa,0x56,0x56,0x67,0x2f,0x1b,0xeb,0x6f,0x79,0x6f, 0xa4,0xda,0x2c,0xd6,0x9b,0x62,0xf9,0x59,0x66,0x28,0x8d,0xdc,0xbf,0xd3,0xa9,0xef, 0x5b,0x77,0x16,0x97,0xdf,0x65,0x5b,0x49,0x6e,0x10,0xdc,0xc8,0xfb,0xdd,0xa2,0x5f, 0x90,0x28,0xea,0x73,0xc7,0x5f,0x5a,0x95,0xa0,0xd4,0xb4,0xd9,0x57,0xfb,0x67,0xc3, 0x77,0x4e,0xd1,0xc,0x79,0xcc,0x5c,0xa4,0x60,0xf1,0xf7,0x90,0x91,0xdf,0xbd,0x5d, 0xbc,0x9d,0x6f,0xad,0xc,0x46,0x1d,0xa3,0xa6,0x16,0x42,0xc3,0x1d,0x81,0xc0,0xce, 0x2b,0x27,0x53,0xde,0xb2,0x22,0x74,0xad,0xb1,0xc1,0x5e,0xdc,0xb1,0xb5,0x92,0xd2, 0x10,0x5a,0x15,0x25,0xb1,0xd8,0xfd,0x3d,0x7a,0x55,0x7b,0x2b,0x26,0xb2,0xb7,0xb6, 0xd6,0x67,0x88,0x3d,0xb2,0xcc,0x40,0x50,0x7a,0x90,0x3f,0xfa,0xf5,0xd5,0xc3,0xa5, 0x6f,0x9a,0x44,0x8e,0xde,0x16,0x2a,0x9f,0x76,0x3f,0xba,0xa3,0xf1,0x3c,0x7e,0x38, 0xac,0xf2,0xb6,0xd0,0xd9,0x7d,0x92,0x78,0x77,0x44,0x97,0x1e,0x68,0x89,0x8f,0x5, 0xbf,0xc,0xf1,0x5d,0x8d,0xdf,0x63,0x15,0x7d,0x8c,0xad,0x52,0xf6,0xd6,0x5b,0x1b, 0x7b,0xc9,0xc0,0x79,0x9b,0x76,0xd4,0x7,0x4,0xf2,0x3a,0xfa,0x54,0xb6,0x5a,0x47, 0xf6,0x95,0x94,0xa6,0x79,0xa3,0x8e,0x7d,0x9b,0xe2,0x58,0xf8,0x27,0x83,0xc6,0x7f, 0x2a,0x83,0x5f,0x12,0x6a,0x96,0x66,0x5c,0xa0,0x30,0xb6,0x11,0x23,0x50,0xaa,0x3a, 0x71,0x81,0x4f,0xd0,0x27,0x9e,0x4b,0xa8,0xfc,0xe2,0x19,0xed,0x89,0x52,0xe7,0xa6, 0x8,0xe3,0xfc,0xfb,0x56,0x97,0xb4,0x74,0x29,0x45,0xdb,0x42,0xa6,0x89,0x3d,0xda, 0xeb,0x90,0xdb,0xdc,0x4e,0x56,0x78,0xb8,0x1b,0x8e,0x9,0xe0,0x91,0x8f,0xd2,0xba, 0xdd,0x36,0x56,0xb5,0xd7,0xa6,0xb1,0x79,0x23,0x58,0xca,0xf9,0x8e,0xd2,0x82,0x41, 0x6c,0x3,0x9f,0xaf,0x35,0xc7,0x6a,0x96,0x6d,0x71,0xae,0x3d,0xdc,0xb7,0x49,0x12, 0x49,0x22,0xae,0xf5,0x7,0x2a,0x0,0xe4,0xfe,0x18,0xcd,0x76,0xb0,0x69,0xd0,0xae, 0x9b,0x35,0xc9,0xb9,0x2b,0x27,0x92,0x1a,0x3e,0x7e,0xf9,0x3,0xbe,0x79,0x27,0x18, 0xac,0xea,0xe9,0xb9,0x35,0x23,0x6d,0x46,0xdd,0x6a,0x12,0x41,0xa9,0x2d,0xc4,0x33, 0x64,0xaf,0xa,0xcc,0x9f,0xd0,0xe7,0xf0,0xa8,0xae,0xf5,0x5b,0xdb,0x9d,0x2e,0x48, 0x3c,0xf6,0x92,0x67,0x90,0xc8,0xce,0x0,0xd,0x8f,0x4e,0x2a,0xa5,0xe8,0x69,0xed, 0x1f,0xca,0xf,0xb9,0x14,0x19,0x1d,0x88,0xdd,0xcf,0x5c,0x7a,0x55,0x8b,0x2d,0x4e, 0xb,0x7b,0x63,0xf6,0xa4,0x58,0x2c,0xed,0xd4,0xb1,0x48,0x87,0xcd,0x21,0xec,0x58, 0xfb,0xe6,0xa1,0xc2,0x29,0x6c,0x66,0xdb,0x7a,0xb3,0xd3,0xbe,0xb,0x44,0x82,0xd7, 0x56,0xb8,0x12,0xa9,0x79,0x7c,0x90,0xd1,0xf7,0x4c,0x79,0x9d,0x7e,0xb9,0x3f,0x95, 0x7a,0xa5,0x79,0x7f,0xc1,0x9b,0xeb,0x3d,0x42,0xc7,0x54,0x9e,0xd6,0x21,0x1b,0x33, 0x45,0xe6,0x27,0x75,0x3f,0x3e,0x1,0xfc,0x2b,0xd4,0x2b,0x19,0x36,0xdd,0xd9,0xd3, 0x49,0xde,0xa,0xe4,0x17,0x7,0x1b,0x7f,0x1a,0xac,0xf3,0xc7,0x12,0xe5,0xd8,0x1, 0xf5,0xaa,0x3e,0x24,0x9a,0xfa,0x31,0x6c,0x96,0x45,0x14,0xbe,0xe2,0xce,0xc3,0xa6, 0x31,0xfe,0x35,0xce,0x9d,0x36,0x4b,0x86,0xcd,0xdd,0xd3,0x49,0xcf,0x40,0xdf,0xe7, 0xf9,0x57,0xd,0x6a,0xbc,0xb2,0x68,0xea,0x84,0x2e,0xae,0x6d,0xdc,0x78,0x8a,0xd2, 0x36,0x29,0x13,0x19,0x5b,0xa6,0x10,0x67,0x35,0x52,0x4d,0x43,0x52,0xb9,0xff,0x0, 0x54,0x8b,0x6e,0x87,0xf8,0x9b,0x96,0xfc,0xbb,0x53,0x23,0x82,0x1b,0x60,0x4,0x51, 0xaa,0x8a,0x91,0x24,0xe0,0xe7,0xd7,0xb5,0x73,0x4a,0xa4,0x99,0xa7,0x2a,0x45,0x63, 0x64,0x93,0x49,0x9b,0x99,0x24,0xb8,0x7f,0xf6,0xd8,0xe3,0xf2,0x15,0x71,0x62,0x8e, 0x24,0xc2,0xa2,0xae,0x7,0x45,0x18,0xa8,0x9d,0xf0,0x73,0x53,0x46,0x77,0x6,0xee, 0x0,0xff,0x0,0x3f,0xca,0xa1,0x5d,0xee,0x31,0x10,0x6e,0x38,0x5f,0x4c,0xe0,0x71, 0x4c,0x62,0x3,0xed,0x1d,0x41,0xe4,0xd3,0x62,0x94,0x83,0x27,0x6c,0x12,0xbf,0xad, 0x20,0xfb,0xd9,0xcd,0x3d,0xa,0x44,0x8a,0x72,0x7a,0x54,0xa6,0x32,0x79,0xa8,0xa3, 0x3f,0x36,0x2a,0xc0,0x6e,0x3a,0xd3,0x62,0x7a,0x10,0x3a,0x1d,0xe9,0xf9,0x53,0xc2, 0x60,0x75,0xa5,0x66,0xfb,0xa7,0xde,0x9f,0xb8,0x28,0xc1,0xa5,0x61,0x11,0x15,0xc1, 0xea,0x29,0xad,0x1b,0xf5,0x1b,0x48,0xfa,0xd4,0xc1,0xb3,0xd2,0x9a,0xd9,0x3d,0xb3, 0x43,0x40,0x43,0xb0,0x91,0xd4,0xa,0x55,0x46,0xe9,0xd7,0xde,0xa4,0x51,0xea,0x5, 0x4c,0xa1,0x7d,0x28,0x51,0xb,0x90,0x88,0x9,0xee,0x29,0xc9,0x11,0x12,0x1a,0x9b, 0x1e,0xc2,0x9c,0xa3,0x9a,0x6d,0x22,0x5b,0x1f,0xb7,0x81,0x4c,0x75,0x24,0x1e,0x2a, 0x6e,0xd4,0xc6,0x1c,0x55,0x32,0x6e,0x56,0x9,0x81,0xcf,0x6a,0x52,0xb9,0xa9,0x8, 0x26,0x94,0xc,0x71,0x53,0x61,0xdc,0x88,0x44,0x4f,0xa0,0xaa,0x53,0x48,0x6c,0xb5, 0x25,0x99,0xa3,0x79,0x37,0xc2,0xc8,0x16,0x31,0x93,0x9c,0x83,0x5a,0xa3,0x0,0x54, 0x52,0x95,0xef,0xfa,0xff,0x0,0xf5,0xa8,0xe5,0xb0,0xca,0xd1,0x49,0x34,0xa8,0x65, 0x9a,0x31,0x19,0x63,0x9d,0x80,0xe7,0x3,0x81,0x51,0x5d,0x5c,0xc7,0x6d,0x8d,0xe1, 0x99,0xd8,0xe1,0x23,0x51,0x96,0x63,0xed,0xfe,0x3d,0x2a,0x35,0xbc,0x96,0xed,0xf6, 0x58,0x28,0x6f,0xef,0x4e,0xff,0x0,0x70,0x7b,0xc,0x7d,0xe3,0xf8,0xe2,0xad,0xdb, 0xd9,0x47,0x6b,0x26,0xff,0x0,0x99,0xa7,0x66,0xe6,0x47,0xe5,0xb9,0xed,0xec,0x3f, 0xd9,0x1c,0x52,0xb5,0xc1,0xbb,0x10,0x47,0x65,0x3d,0xd0,0xdd,0x7b,0xb5,0x53,0xa8, 0x81,0xe,0x40,0xff,0x0,0x78,0xf7,0xfa,0x74,0xfa,0xf6,0xb6,0x91,0x82,0x7d,0x3f, 0xa,0xb3,0xb7,0x8e,0x95,0x1e,0x2a,0xf9,0x50,0x5c,0x8f,0xc9,0xc3,0x77,0x3f,0x5a, 0x90,0x41,0xc7,0x5f,0xd2,0x9a,0x25,0xcd,0xc0,0x85,0x54,0xb1,0xc6,0x58,0x8e,0x8a, 0x3d,0xea,0xc5,0x35,0x14,0x2b,0x90,0xac,0x20,0x93,0x92,0x7f,0xa,0x95,0x61,0x51, 0xdc,0xd2,0x8e,0xf,0x4c,0xd2,0x97,0x0,0x74,0x35,0x5c,0xa8,0x2e,0x48,0x98,0x44, 0xb,0xe9,0x4e,0xc8,0x3f,0xc3,0x9a,0x87,0xcd,0x54,0x5c,0xb7,0x4f,0xad,0x46,0x66, 0x60,0x37,0xb8,0xda,0xa7,0xa2,0x93,0x8f,0xc7,0xe9,0x57,0xcc,0x49,0x67,0x0,0xf3, 0xb6,0x81,0xb7,0xd8,0x54,0x71,0x89,0xf,0xce,0xe0,0x8e,0xf8,0xe9,0x81,0xfe,0x35, 0x2e,0x79,0xfb,0x83,0x3f,0x5e,0xfe,0x94,0xd0,0x85,0xda,0x3f,0xc9,0xa5,0xa,0x3d, 0x3f,0x5a,0x6e,0xe3,0x90,0x2,0x8c,0xf4,0xeb,0xfe,0x78,0xf7,0xa4,0xf3,0x1b,0x3d, 0x6,0x3a,0xfd,0x7,0xa9,0xaa,0x2,0x5d,0x80,0x7f,0xfa,0xe9,0x70,0x31,0x50,0xf9, 0xac,0x6,0x48,0x1f,0xe7,0xb7,0xd6,0x97,0xcc,0x6d,0xd8,0x0,0x7a,0x75,0xea,0x69, 0xdd,0x1,0x27,0x1d,0xcd,0x20,0x64,0xc1,0x21,0x81,0x3,0xaf,0xb5,0x56,0xb8,0xb8, 0xd8,0x9f,0x5e,0x9f,0x4e,0xe6,0xa2,0xe6,0x28,0xd2,0x20,0x6,0xe7,0x20,0xb0,0x7, 0xae,0x7a,0xf,0xe7,0x52,0xe4,0x82,0xc5,0xec,0x2b,0xaf,0x7,0x23,0xdb,0xd6,0xa9, 0xb5,0xbb,0x89,0xda,0x44,0x4c,0xe4,0x60,0x1c,0xf6,0xab,0x11,0xab,0x22,0x2a,0x80, 0x38,0x18,0x1e,0xe6,0x97,0x27,0x4,0xe0,0x60,0x73,0xcf,0x60,0x28,0x94,0x54,0x83, 0x62,0x98,0xb5,0x93,0xfe,0x78,0xe7,0xdf,0x75,0x3c,0x5a,0xbf,0xf7,0x10,0x7f,0xc0, 0xcf,0xf8,0x55,0xaf,0x9b,0x9f,0x94,0x7f,0xfa,0xe9,0x7e,0x6d,0xdb,0x7a,0xf3,0xb6, 0xa5,0x52,0x41,0x72,0xb8,0xb3,0x39,0xfe,0xe,0xb8,0xea,0x7f,0xc2,0x90,0xdb,0x32, 0xa9,0x3f,0x27,0x4c,0xf5,0xab,0x39,0x60,0x33,0x81,0xd0,0xb1,0xa6,0xb9,0x73,0x19, 0x5e,0x33,0x85,0x5f,0xa6,0x4d,0x5f,0xb3,0x41,0x76,0x51,0x64,0xc4,0xfe,0x50,0x6f, 0x98,0x90,0x38,0xf5,0x23,0x34,0xc8,0xd1,0xa6,0x76,0x41,0x2b,0xc,0x6,0x39,0x3e, 0xc7,0x15,0x30,0xc9,0xd5,0x37,0x77,0xf3,0x89,0x1e,0xd8,0x4c,0x54,0x76,0xbb,0x8f, 0x98,0xc0,0x7f,0xcb,0x13,0xf9,0x96,0x35,0x9f,0x22,0x65,0xdd,0x92,0x8d,0x3d,0xb3, 0x86,0xb9,0x6e,0xb8,0xe9,0x9e,0xd9,0xf5,0xa6,0x7d,0x8f,0x8d,0xc5,0xf3,0xf2,0xe7, 0xee,0xd5,0xe6,0x2d,0xe6,0x36,0x7,0xfc,0xb5,0x5f,0xe4,0x29,0x9b,0x5b,0x68,0x5e, 0xe5,0x5d,0x47,0xbd,0x5f,0xb3,0x8f,0x62,0x79,0x99,0x8,0xb1,0x0,0x91,0xbf,0x1f, 0x36,0x3e,0xe8,0xf4,0xcd,0x1f,0x63,0x5c,0x64,0xca,0x47,0x0,0xf0,0x5,0x4f,0x93, 0xf3,0x39,0xe9,0x85,0x61,0xf4,0xa5,0xc3,0x13,0xb4,0xed,0x3,0x73,0x2f,0x3e,0xfc, 0xd3,0x54,0xe2,0x17,0x65,0x7f,0xb0,0xa1,0x38,0x2e,0xe4,0xe4,0x8e,0xde,0x95,0x52, 0x7b,0x55,0x32,0xac,0x45,0xd8,0x2b,0x5,0x2a,0xdf,0x53,0x8f,0xf0,0xad,0x23,0xbc, 0x8c,0x81,0xc9,0x1,0xbf,0x10,0x7f,0xc2,0xab,0xdd,0xc7,0x98,0x32,0x78,0x55,0x63, 0xc8,0xea,0x15,0xbf,0xfa,0xf8,0xfc,0xaa,0x65,0x4e,0x23,0x52,0x2b,0x43,0xb,0x83, 0xe4,0x6e,0x5,0x90,0x11,0xf3,0x77,0xc6,0x31,0xfa,0x1c,0xd4,0xff,0x0,0x64,0x7, 0xb4,0x64,0x71,0xce,0x3b,0x1f,0xfe,0xbd,0x32,0x41,0x23,0x18,0xe7,0x52,0x4,0x84, 0x6d,0x3c,0x7f,0x1a,0xe7,0xf9,0x8c,0xfe,0x42,0xae,0xc,0x32,0xee,0x5c,0x14,0x61, 0xb8,0x7f,0xb8,0x45,0x28,0xc1,0x3,0x91,0x58,0x58,0xc6,0x4f,0x31,0x47,0x9e,0x7b, 0x77,0x14,0xef,0xb0,0xc4,0x8,0xda,0x8a,0x33,0xd3,0x0,0x7f,0x85,0x58,0x55,0x70, 0x70,0x40,0xdd,0x9c,0x1f,0x62,0x3a,0x7e,0x94,0xee,0x4a,0x8f,0x94,0x61,0x87,0x4f, 0x6e,0xe3,0xf4,0xab,0x54,0xd1,0x3c,0xc5,0x6f,0xb2,0x29,0xfe,0x22,0x3e,0xa6,0x90, 0xd8,0xa7,0x1f,0x33,0x64,0xf4,0xf9,0xcf,0x35,0x68,0x96,0xce,0x48,0x19,0xce,0x49, 0xfe,0x46,0x90,0x96,0x20,0xe4,0xc,0x74,0x3f,0xe7,0xf2,0xa3,0xd9,0xa1,0xdd,0x9c, 0x47,0xc4,0x2b,0x20,0x3c,0x1f,0x76,0x36,0xfc,0xeb,0x2c,0x2f,0xb,0x67,0x92,0xde, 0x60,0x1f,0xcb,0x35,0xc9,0xfc,0x39,0xd3,0xe3,0xb9,0xf1,0x44,0xe6,0xe2,0x3d,0xc1, 0x6c,0x58,0x29,0x3d,0xb7,0x38,0x7,0xf4,0x18,0xae,0xf3,0xc7,0xca,0xcd,0xe1,0x57, 0x6c,0x64,0x2d,0xc4,0xe,0xc7,0xd3,0xe7,0x3,0xfc,0x2b,0x1b,0xc1,0x10,0x20,0xb8, 0xbe,0xda,0xbb,0x66,0x68,0x22,0xe4,0xf1,0x81,0xbe,0x43,0xfd,0x5,0x75,0x42,0xd1, 0xa1,0x25,0xe8,0x43,0xd6,0xa2,0x38,0xbd,0xe,0xd2,0x6b,0x68,0xc5,0xa1,0x5,0x59, 0x26,0x11,0x90,0x7f,0x84,0xac,0xbb,0x7f,0xa5,0x7b,0x8f,0xd8,0xe2,0x2c,0x49,0x4e, 0xff,0x0,0xde,0x35,0xe7,0xd6,0xd6,0xbe,0x65,0xce,0xab,0x27,0x96,0x37,0x4b,0xa9, 0x79,0x71,0x93,0xeb,0xe7,0x73,0x8f,0xc6,0xbd,0x20,0x3,0xd3,0x1d,0x2a,0x6b,0x35, 0x3e,0x56,0x45,0x35,0x6b,0x90,0x8b,0x28,0xbf,0xe7,0x98,0xfc,0x58,0x9a,0x70,0xb5, 0x41,0xce,0xc5,0xfc,0xcd,0x4e,0x32,0x28,0x24,0xfa,0x56,0x5c,0xab,0xb1,0xad,0xca, 0x73,0x59,0x43,0x28,0xc1,0x40,0x1b,0xb1,0x7,0xa5,0x62,0xa4,0x44,0xc4,0xa7,0x39, 0xca,0x83,0xcd,0x74,0x67,0x3e,0x95,0x85,0x1f,0x30,0xa7,0x3f,0xc2,0x3f,0x95,0x72, 0xd6,0x49,0x35,0x62,0x93,0x2a,0x34,0x7c,0xe4,0x1f,0xaf,0x14,0xc5,0x64,0xf3,0x36, 0x33,0x6d,0x6e,0xd9,0xef,0x56,0xa4,0x8c,0x93,0x9e,0xfe,0xd5,0x5d,0x90,0x11,0x86, 0x0,0xf3,0xde,0xb0,0xb5,0xcb,0xdc,0x98,0x44,0x3f,0xbd,0x48,0x62,0xc7,0x46,0x35, 0x55,0x2e,0x25,0xb7,0x62,0xb3,0x16,0x92,0x32,0x78,0x6e,0xe3,0xeb,0xed,0x57,0x41, 0xc,0x3,0x2b,0x2,0xf,0x42,0x28,0xb0,0x6c,0x44,0xd0,0x13,0xfc,0x64,0x7e,0x15, 0x1b,0x5a,0x6e,0x18,0x2d,0x91,0xe8,0x45,0x59,0x39,0xa4,0xce,0x45,0x3b,0x20,0xb9, 0x45,0xc4,0xb6,0xd8,0xc0,0x69,0x93,0xdb,0xef,0xf,0xf1,0xa9,0x23,0x91,0x27,0x8c, 0x3a,0x1c,0xaf,0xb8,0xc6,0x3e,0xa3,0xad,0x4e,0xc3,0x38,0xf6,0x35,0x1c,0x90,0x7, 0x21,0xb9,0x57,0x3,0x87,0x7,0x9a,0x2c,0x52,0x62,0xac,0x60,0xf4,0x22,0x9e,0x10, 0xf6,0x22,0xa9,0xc9,0x3b,0x59,0xae,0x66,0xcb,0x2f,0x77,0x55,0xc8,0x1f,0x51,0x53, 0x43,0x72,0x93,0x46,0x24,0x8d,0x83,0xa1,0xe8,0xcb,0xd2,0x8b,0x9,0x93,0x95,0x3e, 0xb4,0x4,0x3e,0xb4,0x8a,0xf9,0x19,0xcd,0x38,0x36,0x46,0x69,0xe8,0x21,0x63,0x18, 0x7,0x34,0xd6,0x18,0xa5,0x53,0xd6,0x9a,0xd4,0x30,0xea,0x47,0x2c,0x11,0x5c,0x26, 0xc9,0xa3,0x47,0x5f,0x46,0x15,0x5c,0xdb,0xdc,0x40,0x41,0x82,0xe0,0xba,0xf,0xf9, 0x67,0x3f,0xcc,0x3f,0xef,0xae,0xa3,0xf3,0x3f,0x4a,0xb8,0x29,0x1b,0xa5,0x4a,0x6d, 0x9,0xa3,0x3c,0xdf,0x2c,0x72,0x1,0x74,0x1a,0x6,0x3d,0xb,0xf2,0xa7,0xe8,0xc0, 0x63,0xf3,0xc1,0xab,0xa2,0x41,0x8e,0xb9,0xfa,0x53,0x1f,0xaf,0x3c,0x8f,0x7a,0xa4, 0xd6,0x42,0x32,0x5e,0xce,0x56,0xb7,0x7e,0xbb,0x54,0x6e,0x56,0xe9,0xd5,0x4f,0x1d, 0xbb,0x63,0xad,0x3b,0x8d,0x22,0xdc,0xb2,0x60,0x1e,0x7b,0x1e,0x6b,0x35,0x49,0x3, 0x9f,0xef,0x53,0x1e,0xf2,0x68,0x14,0x8b,0xd8,0xe,0xd1,0x9f,0xdf,0x40,0xb,0xaf, 0x73,0xc8,0xea,0x3f,0x5a,0x7c,0x37,0x30,0x5c,0xc5,0xba,0x29,0x12,0x45,0x1d,0xd0, 0xe7,0xf0,0xf6,0xfc,0x6a,0x97,0x71,0x34,0x58,0xb5,0x72,0xf3,0x7d,0x17,0x35,0x7b, 0x24,0xa,0xa5,0x66,0x0,0x99,0xbf,0xdd,0xc5,0x5c,0xfe,0xb5,0x2d,0xea,0x34,0xc6, 0xbb,0x7c,0xeb,0x4b,0x51,0x13,0xfe,0x90,0xa3,0xda,0xa5,0xe0,0x52,0xb8,0x11,0x33, 0xc,0x9a,0x50,0x78,0xa6,0xba,0xe3,0xa5,0x38,0x2e,0x28,0xb8,0x12,0x3,0xc5,0x30, 0x9f,0xdf,0x27,0xd0,0x9f,0xe5,0x4a,0x41,0xa8,0xb2,0x4d,0xc2,0x8f,0x44,0x27,0xf9, 0x50,0x22,0xe0,0x38,0x5a,0x4d,0xdc,0xd3,0x79,0x22,0x9b,0x93,0x9a,0x7d,0xb,0xe8, 0x3c,0x9e,0x7a,0xd2,0xa9,0xc5,0x45,0xbc,0x13,0x8f,0x6c,0xd3,0xd6,0xa7,0x62,0x5, 0x96,0x18,0xae,0x53,0x6c,0xf1,0x24,0x80,0x72,0x3,0x28,0x38,0xaa,0x87,0x4d,0x10, 0xaf,0xfa,0x1d,0xd5,0xcd,0xa6,0x3a,0x8,0xe4,0x25,0x7f,0xef,0x93,0x91,0x57,0x41, 0xa4,0x90,0x9d,0x9c,0x1e,0x73,0x56,0x98,0xc5,0xb5,0xba,0xd4,0x63,0x21,0x67,0x9a, 0xb,0x84,0xc7,0xdf,0xdb,0xb0,0xfe,0x43,0x8a,0xbe,0x2f,0x93,0xa4,0x88,0xcb,0xf4, 0xe4,0x56,0x6a,0x13,0xeb,0x52,0x8f,0x6a,0x7c,0xe2,0xb1,0xa7,0x1c,0x96,0xf2,0x9f, 0x91,0x81,0x3e,0x99,0xc1,0xa9,0xb6,0x81,0xc1,0xe2,0xb1,0x1d,0x15,0xba,0x80,0x69, 0xf1,0xcd,0x3c,0x4,0x14,0x99,0xf6,0x8f,0xe1,0x3c,0x8a,0xa5,0x34,0x1c,0xa6,0xb9, 0x88,0x30,0xef,0x4d,0xfb,0x32,0xff,0x0,0x95,0x15,0x5e,0x3d,0x44,0x7f,0x1a,0x8f, 0xa8,0xc8,0xff,0x0,0xeb,0x7f,0x2a,0xb4,0x97,0x50,0xc9,0x8c,0x36,0x3e,0xbd,0x3f, 0x3e,0x95,0x6a,0x49,0x92,0xd5,0x86,0xfd,0x9c,0x28,0xe0,0x75,0xe3,0x8e,0x2b,0x3e, 0xff,0x0,0xc3,0xfa,0x66,0xa6,0x1f,0xed,0xba,0x7d,0xbc,0xe5,0xb8,0x2c,0xc8,0x37, 0x7e,0x7d,0x47,0xe1,0x5a,0xe1,0x95,0x86,0x41,0x4,0x7a,0x8e,0x94,0x84,0x71,0x9f, 0xe4,0x6a,0xbc,0xee,0x2d,0x4e,0x1e,0x6f,0x87,0x36,0x10,0x2c,0xa3,0x4a,0xbb,0xbd, 0xb0,0x12,0x60,0x18,0x95,0xfc,0xc8,0xb8,0xff,0x0,0x65,0xb9,0x3f,0x9d,0x73,0xfa, 0x87,0xc3,0x9b,0xec,0x36,0xc9,0x60,0xb9,0x41,0xca,0xac,0x6d,0xe4,0x31,0xff,0x0, 0x80,0x90,0x47,0xfe,0x3c,0x2b,0xd5,0x88,0xc8,0xef,0xf4,0x35,0x1b,0x47,0x9c,0xe7, 0x9f,0xad,0x69,0x1a,0xd2,0x8e,0xb7,0x23,0xd9,0xad,0xcf,0x9a,0xf5,0xaf,0x9,0xea, 0x9a,0x45,0xd5,0xc2,0xc9,0xa7,0x5f,0x45,0x68,0x58,0x17,0x95,0xa3,0xdc,0xa3,0xfe, 0x4,0xa4,0x8f,0xd6,0xb9,0xf8,0x2d,0xe7,0x8e,0x74,0x82,0x6,0x56,0x8c,0xcb,0x93, 0xcf,0x38,0x3d,0xeb,0xea,0xe6,0x88,0x7a,0x63,0xe8,0x71,0x58,0xda,0xaf,0x86,0x34, 0x8d,0x5b,0x26,0xf2,0xca,0x19,0x64,0xff,0x0,0x9e,0x84,0x10,0xff,0x0,0xf7,0xd0, 0xc3,0x7e,0xb5,0xbc,0x31,0x96,0xf8,0x83,0x97,0xb1,0xf3,0xa5,0xfa,0xb8,0xb8,0x45, 0xf9,0xf1,0x83,0x83,0x83,0x8c,0xff,0x0,0xfa,0xb3,0xf9,0xd7,0x41,0x1e,0xa5,0x24, 0xd6,0xc2,0xe4,0x44,0x2d,0xe2,0x93,0x8,0xaa,0x6,0xf9,0x25,0xc7,0x1c,0xe,0xc3, 0xa5,0x77,0x9a,0xa7,0xc2,0xcb,0xb,0x97,0x32,0x59,0x5d,0xcf,0x6a,0xfd,0x94,0xb7, 0x9a,0x98,0xfa,0x1c,0x1f,0xcd,0x8d,0x73,0x17,0x5f,0xe,0xbc,0x4b,0x63,0x70,0x86, 0xd6,0x58,0xee,0xe2,0x8c,0x9d,0x86,0x27,0x11,0xba,0xaf,0x7f,0x95,0xbf,0xa1,0xae, 0x8f,0xac,0xc2,0x6e,0xe4,0x54,0xa7,0x74,0x62,0x9b,0x7b,0x82,0x66,0x8d,0x97,0xcb, 0xf3,0x46,0x58,0x3,0xc6,0x33,0x9e,0x47,0xe3,0x59,0xba,0x80,0x2f,0x6e,0x2d,0x46, 0x1c,0x5c,0x6,0x11,0x90,0x71,0xc0,0xc5,0x6f,0xdc,0x69,0xaf,0x65,0x1c,0x8f,0xa9, 0x43,0x73,0x68,0xb2,0x1d,0x8c,0xd2,0x42,0xc3,0x70,0xff,0x0,0x7b,0xa5,0x71,0x9a, 0xac,0x97,0x6f,0xa9,0x9,0xad,0xa3,0x6f,0xb3,0xc2,0x36,0x40,0x54,0x64,0x4,0x15, 0xd3,0x1a,0x8a,0x5d,0x4e,0x65,0x9,0x27,0xa9,0xec,0xbf,0xb3,0xd4,0x53,0xdb,0x7f, 0xc2,0x49,0x6f,0x39,0x19,0x56,0xb6,0x6e,0x3a,0xe4,0xf9,0xb9,0xfe,0x42,0xbd,0xba, 0xbc,0x43,0xf6,0x79,0x79,0xa7,0x6f,0x12,0xcf,0x2f,0x57,0xfb,0x28,0x7,0xd7,0x1e, 0x6d,0x7b,0x7d,0x73,0xd5,0xf8,0xd9,0xd0,0xb6,0x30,0xf5,0xf6,0xdb,0x3d,0xa0,0xec, 0x56,0x4c,0xff,0x0,0xe3,0xb5,0x91,0xbb,0x4,0xf1,0x5a,0xbe,0x21,0xc7,0x9f,0x66, 0x9,0xea,0x1f,0x3,0xd7,0x95,0xac,0x81,0xce,0x32,0x7b,0x57,0x93,0x88,0xfe,0x23, 0x3a,0xa9,0xfc,0x22,0x33,0x11,0xf3,0x11,0x9f,0x6c,0xd3,0x81,0xe8,0x40,0xfc,0x29, 0xbf,0x7b,0x19,0xed,0x4a,0xe,0x19,0xbd,0x31,0x5c,0xfd,0x4b,0x43,0xc8,0xde,0x3a, 0xe2,0x9d,0x1b,0x15,0x8f,0x19,0xeb,0x48,0x3a,0x74,0x23,0x9e,0xe2,0x93,0x9e,0x70, 0x3a,0xd3,0xb8,0x22,0x3d,0xc3,0xcc,0x6c,0x7f,0x11,0x26,0x97,0x27,0x27,0x8a,0x44, 0xb,0xbc,0xe0,0x74,0x3d,0x6a,0x49,0x0,0x2a,0x31,0x48,0xa1,0xaa,0x48,0x39,0xf6, 0xab,0x69,0x83,0x8c,0xf1,0xc5,0x57,0xb7,0x0,0xc9,0x82,0x32,0x31,0x9a,0xb7,0xb7, 0x15,0x4a,0xec,0x86,0x42,0xc7,0x38,0xfa,0xd4,0x81,0x4b,0x73,0x8e,0xf4,0xc9,0x70, 0xa0,0x7b,0x11,0x53,0xa9,0x18,0xa6,0x84,0x26,0xcf,0x7a,0x43,0xc5,0x3f,0x8c,0x66, 0xa3,0x72,0xa4,0xf1,0x4d,0x80,0x83,0x1b,0xaa,0x55,0xaa,0xe1,0x80,0x7a,0x7b,0xcc, 0xa8,0x32,0x4f,0xe1,0xdc,0xd4,0xa4,0x36,0x8b,0x14,0xab,0x51,0x66,0x45,0x83,0xcd, 0x91,0xa,0xf2,0x0,0x4,0xf3,0xc9,0xa7,0x7,0x2,0x9b,0x22,0xc4,0xc4,0xd3,0x49, 0xe2,0x85,0x60,0x55,0x8f,0xa5,0x31,0x9e,0xa8,0x56,0x1c,0xd,0x19,0x15,0x18,0x6f, 0x5f,0xd3,0x9a,0xa9,0x2d,0xeb,0x39,0x68,0xed,0x10,0x48,0xe3,0x86,0x62,0x7e,0x54, 0xfa,0x91,0xd7,0xe8,0x3f,0x4a,0x9e,0x61,0xd8,0xb3,0x71,0x77,0x15,0xb2,0x6e,0x76, 0x3c,0xf0,0xaa,0x6,0x59,0xbd,0x80,0x1d,0x4d,0x53,0x92,0xd6,0x6d,0x41,0xf3,0x74, 0x4c,0x56,0xe0,0x90,0x2d,0xd0,0xe0,0xb8,0xff,0x0,0x6c,0x8e,0xa3,0xdb,0xa7,0xae, 0x6a,0x4b,0x5b,0x51,0x1b,0x99,0xa4,0x90,0xcd,0x3b,0xc,0x34,0x8d,0xd7,0x1e,0x80, 0x76,0x15,0x6f,0x1f,0x2e,0x29,0x5e,0xe3,0x12,0xd5,0x55,0x22,0x55,0x55,0xa,0xa0, 0x60,0x28,0x18,0x0,0x7b,0xe,0xd5,0x33,0x81,0xf2,0xfb,0x1a,0x8a,0xe,0x22,0x5a, 0x92,0x42,0x30,0x3e,0xb5,0x4b,0x61,0x31,0xf9,0xe2,0x9a,0x40,0x38,0xc8,0xe8,0x68, 0xc,0x31,0x4d,0x2c,0x29,0xdc,0x56,0x1b,0x11,0x23,0x23,0x19,0x5,0x8e,0x73,0x53, 0x6e,0xc9,0xc5,0x41,0xb8,0x3,0x48,0x65,0xc1,0xeb,0x42,0x90,0xec,0x59,0xdd,0x82, 0x2a,0xb3,0xcb,0x89,0xc2,0x2,0x4b,0x9c,0xf1,0xe8,0x2a,0x9,0xee,0xd8,0xc8,0x21, 0x87,0x99,0x48,0xcf,0xfb,0xa3,0xd4,0xd3,0xa0,0x8c,0x44,0x8,0x4,0xb1,0x6e,0xac, 0x7a,0x9a,0x1c,0xee,0xec,0x16,0x2f,0x5b,0x5b,0x7,0x2,0x46,0x6f,0x94,0x13,0x85, 0xf5,0xe6,0xa6,0x5b,0x4f,0xdf,0x19,0x64,0x60,0xe7,0xf8,0x41,0x1c,0xa,0x6d,0xb4, 0x9f,0xba,0x1c,0x81,0xc9,0xfe,0x75,0x2e,0xf2,0x7a,0x49,0x8f,0xc2,0xba,0x22,0xa3, 0x6b,0x90,0xee,0x3f,0xca,0xc7,0x3b,0xb2,0x7a,0xf3,0xeb,0xea,0x69,0x4,0x38,0xe7, 0x3d,0x38,0x18,0x3d,0x7,0xf8,0xfb,0xd3,0x37,0xc8,0xf,0xfa,0xcf,0xd2,0x91,0x9d, 0xf1,0xf7,0x9a,0xaa,0xe8,0x35,0x15,0x95,0x7f,0x3e,0xbf,0x4f,0x41,0x4c,0x38,0xc9, 0x27,0xb9,0xc9,0xf7,0xf6,0xfa,0x55,0x77,0x97,0x6b,0x7d,0xd9,0xf,0xfc,0xa,0x98, 0xd7,0x27,0xfb,0x8f,0xf8,0xf3,0x58,0xba,0x88,0xab,0x13,0x79,0xa4,0x1f,0x94,0x64, 0xf5,0x4,0xfa,0xfa,0xd3,0x81,0xe0,0x61,0x70,0x0,0xc0,0xe7,0xa0,0xff,0x0,0x1a, 0xa7,0xf6,0x82,0xa7,0x26,0x3f,0xd6,0xa4,0x4b,0x92,0xe7,0xee,0x63,0xf1,0xa9,0x53, 0x41,0x62,0x53,0x10,0x33,0x9,0x1b,0x27,0x69,0x18,0x5f,0x61,0xd0,0x52,0x2a,0x95, 0x94,0xca,0xc7,0x71,0xe4,0xf4,0xe8,0x7b,0x53,0xd5,0xf7,0xe,0x94,0xe6,0xc3,0x2e, 0x2a,0xae,0xae,0x22,0x68,0x86,0xe4,0xcf,0x4f,0x4f,0xeb,0x52,0x79,0x6b,0xdf,0xa7, 0x3,0xf0,0x15,0x2,0x4b,0xb0,0x60,0x67,0x1f,0x5a,0x7f,0x9e,0x49,0x3,0xd,0xf9, 0xd6,0xca,0x4a,0xc2,0x25,0xd8,0x3a,0x9f,0xef,0x6e,0x35,0x1f,0x47,0xb,0xd7,0x83, 0xcf,0xb9,0xa1,0x65,0xdc,0x32,0x32,0x47,0xbd,0x26,0x7e,0x6c,0xd3,0x6d,0x74,0x15, 0x89,0x36,0x2,0xf,0x38,0xc8,0xc5,0x6,0x35,0x27,0x3e,0xf9,0x34,0x7,0xe2,0x8d, 0xfe,0xd5,0x57,0x40,0x57,0x5b,0x71,0x14,0xe6,0x5d,0xd9,0x39,0x63,0x8f,0xad,0x36, 0xb,0x71,0x18,0x20,0x36,0x72,0x81,0x7f,0x9d,0x4e,0xe7,0x2a,0x78,0xa6,0xc4,0xd9, 0x8d,0x5b,0x4,0x64,0x3,0xc1,0xac,0xdd,0xae,0x55,0xc5,0xe0,0x1f,0xc4,0x1f,0xca, 0x80,0x54,0x15,0x3d,0x4a,0x92,0x47,0xeb,0xfe,0x34,0x8c,0x41,0xec,0x7f,0xef,0xaa, 0x67,0xcd,0x9e,0x1a,0x4f,0xfb,0xeb,0xff,0x0,0xad,0x43,0x62,0x14,0x74,0xc6,0x3f, 0x83,0x6d,0x3d,0x41,0x72,0x49,0x1d,0x48,0x3f,0x88,0xa6,0x14,0x52,0x43,0x1c,0x92, 0x29,0xae,0xe1,0x17,0x27,0x8e,0x71,0xc5,0x2e,0x7b,0x1,0x67,0x68,0xfd,0x49,0xa8, 0xa5,0x40,0x53,0x61,0x1f,0x29,0x5d,0xa4,0x7b,0x54,0x60,0x9c,0xf5,0x3f,0x9d,0x38, 0x9c,0xf7,0x34,0xdc,0xd3,0x1,0x12,0xd8,0x18,0x9d,0xb,0x72,0xc4,0x36,0x71,0xd1, 0x87,0x7f,0xd0,0x54,0xd1,0xc2,0x23,0x40,0xbd,0x70,0x49,0x1c,0x7a,0xf6,0xa8,0xd5, 0xb1,0xff,0x0,0xeb,0xa7,0x79,0x9e,0xc7,0xf3,0xa1,0x34,0x80,0x90,0xa0,0xc1,0xf7, 0x18,0xa4,0xc3,0x12,0x7a,0x75,0xcf,0xe3,0x51,0xf9,0xbf,0x3e,0xd2,0x31,0x9f,0x7a, 0x50,0x73,0xcd,0x57,0x30,0xac,0x4b,0xb0,0x1e,0xde,0xdf,0x85,0x35,0xd0,0xed,0xf9, 0x46,0x4f,0xf5,0xa6,0xe7,0xdc,0xd2,0x6f,0x23,0xdf,0xf1,0xa3,0x99,0x2,0x30,0x7c, 0x63,0x17,0x9b,0xe0,0xfd,0x51,0x64,0x18,0x2,0x2,0xfc,0x7a,0xaf,0xcc,0xf,0xe6, 0x5,0x72,0xde,0x9,0xba,0xfb,0x6f,0x88,0x6e,0x23,0x50,0x57,0xfd,0x11,0x9,0xcf, 0x4c,0x89,0xf,0xf4,0x35,0xdb,0xea,0xe8,0x2f,0x34,0xeb,0x8b,0x27,0x1f,0x2d,0xc4, 0x4d,0x13,0x1e,0xb8,0x4,0x63,0xfa,0xd7,0x3b,0xe1,0xdf,0xf,0x27,0x87,0xee,0x66, 0xb9,0x5b,0x86,0xb9,0x9a,0x48,0xfc,0xb2,0x5c,0x6d,0x0,0x64,0x1e,0x99,0x3d,0xc5, 0xe,0xbc,0x63,0x17,0x16,0x3e,0x57,0xcc,0x99,0x93,0xa7,0x5d,0xbd,0xcd,0xfc,0x36, 0xe8,0x4b,0x7f,0xc4,0xc9,0x88,0xc0,0xc9,0x63,0xe6,0xb3,0x13,0xf4,0xc0,0x26,0xbd, 0x33,0x38,0xe9,0x8f,0x6a,0xe3,0xf4,0x5f,0xe,0x45,0xa5,0x5f,0xc3,0x74,0xb3,0xb3, 0xf9,0x6c,0xcc,0xaa,0x17,0x1c,0xb6,0x47,0x27,0x27,0x3c,0x13,0x5d,0x62,0xb0,0x6f, 0xe1,0xc6,0x28,0xf6,0x89,0xec,0x25,0x1b,0x13,0x3,0x9a,0x43,0xf5,0xa6,0x1,0x41, 0xfa,0xd0,0xe4,0x8,0x6c,0x8f,0xb5,0x4f,0x19,0xac,0x64,0x81,0x96,0x35,0x19,0x1c, 0xc,0x56,0xc9,0x5d,0xc3,0x15,0x3,0x5a,0x2,0x4e,0x18,0x8f,0xc2,0xb0,0xa8,0x9c, 0x86,0x99,0x98,0xc0,0x8f,0x43,0x50,0x48,0xb9,0x5c,0x11,0x5a,0xc6,0xc4,0x1f,0xf9, 0x68,0x7f,0x2a,0x61,0xd3,0xbd,0x24,0xff,0x0,0xc7,0x7f,0xfa,0xf5,0x8f,0x24,0x8a, 0x4c,0xe6,0xee,0x2e,0xfe,0xcb,0x30,0x52,0x84,0xa9,0xe8,0x49,0xc0,0xa1,0x6e,0x58, 0x10,0xe8,0xa1,0x7,0x52,0xb9,0xe0,0xd6,0xf4,0xba,0x57,0x98,0xa5,0x4c,0x88,0x54, 0xf5,0xd,0x1e,0x7f,0xad,0x53,0x1e,0x1c,0x64,0x3f,0xbb,0xbc,0xa,0x9f,0xdd,0x31, 0x67,0x1f,0xad,0x3e,0x49,0x76,0x1b,0x65,0x45,0xd4,0x37,0x1c,0x18,0xf0,0x7f,0xde, 0xa7,0x7d,0xa0,0x91,0x9d,0xa0,0x7f,0xc0,0xaa,0xc3,0xf8,0x7a,0x46,0xe4,0x5e,0x80, 0x47,0xfd,0x31,0xff,0x0,0xeb,0xd3,0x46,0x8d,0x2a,0x2e,0xd3,0x7b,0xbb,0xfe,0xd9, 0x63,0xfa,0xd2,0x70,0x68,0x4a,0xec,0x8b,0xcd,0x7,0xb8,0xfc,0xea,0x41,0x20,0x23, 0xb7,0xe7,0x41,0xd3,0x24,0x3,0xfe,0x3e,0xbf,0xf2,0x1f,0xff,0x0,0x5e,0x90,0x58, 0xc8,0x7,0xfc,0x7c,0xff,0x0,0xe3,0x82,0x92,0x28,0x47,0x20,0xfa,0x7e,0x15,0x51, 0xad,0x91,0x5c,0xbc,0x47,0xcb,0x73,0xfd,0xd1,0xc1,0xfa,0x8a,0xbc,0x2c,0x24,0x23, 0x8b,0x93,0xff,0x0,0x7c,0x7f,0xf5,0xe9,0xd,0x84,0xc3,0xfe,0x5e,0x9,0xf6,0xdb, 0x8c,0xfe,0xb4,0x9b,0xe,0x62,0x90,0xb8,0x31,0x1c,0x4e,0x85,0x3b,0x17,0x1c,0xa9, 0xab,0x4b,0x20,0x65,0xf9,0x4e,0x45,0x45,0x32,0xb4,0x63,0xe,0xb8,0x7,0x8e,0x9c, 0x56,0x3c,0xf7,0xd3,0x59,0xcd,0xb5,0x60,0x11,0xc4,0xf,0xde,0x2d,0x95,0x3f,0xe1, 0x49,0x3b,0x85,0xcd,0xe0,0x4f,0xad,0x29,0x6a,0xc8,0x83,0x56,0xdc,0x76,0xba,0xaa, 0x31,0xe4,0x73,0xc1,0xab,0x5f,0x6a,0x2d,0x8e,0x7,0xd0,0xd3,0x69,0x85,0xcb,0x84, 0xd2,0x16,0x5c,0x72,0x6a,0xb9,0x99,0x88,0xe8,0xbf,0x95,0x1e,0x63,0xe3,0xaa,0xfe, 0x54,0x82,0xe4,0xa4,0xa9,0x3d,0x28,0x21,0x48,0xa8,0x3c,0xc3,0xed,0x4b,0xe6,0x1c, 0x51,0xa8,0xee,0x2e,0xd1,0xbc,0xe3,0x3f,0x5a,0xa7,0x7b,0xa7,0xdb,0xc8,0xc6,0x75, 0x4f,0x2e,0xe3,0x7,0x12,0xc4,0x76,0x31,0xfa,0xe3,0xaf,0xd0,0xe4,0x54,0xe6,0x43, 0xbc,0xf3,0x4d,0x73,0xbc,0x61,0xb9,0x14,0x2b,0x83,0x65,0xb,0x69,0x6f,0xad,0xe4, 0x2c,0xf0,0x8b,0x98,0xf0,0x32,0xf1,0xe1,0x58,0x71,0xe9,0xd0,0xfe,0x18,0xfa,0x55, 0xc8,0xf5,0x3b,0x79,0xdf,0x64,0x6f,0xfb,0xc5,0xe4,0xc6,0xc3,0x6b,0xf,0xc0,0xe0, 0xff,0x0,0x4a,0x72,0x0,0x32,0x0,0xff,0x0,0x38,0xa8,0x6f,0x6c,0xad,0xaf,0x63, 0xb,0x71,0x12,0xb6,0xd3,0x95,0x6e,0x8c,0xa7,0xd4,0x11,0x82,0x3f,0xa,0xad,0x1b, 0x4,0x39,0x6e,0x47,0xda,0x47,0x7e,0x31,0x57,0x37,0xfa,0xfa,0x57,0x34,0x2c,0x35, 0x4b,0x29,0xda,0x48,0x2e,0x45,0xec,0x3f,0xf3,0xca,0xe4,0xe1,0xc7,0xd1,0xc0,0xfe, 0x63,0xf1,0xab,0xb0,0x6a,0xb0,0xab,0x2c,0x37,0x1b,0xad,0x65,0x6e,0x2,0x4f,0xc6, 0x4f,0xb3,0x74,0x3f,0x85,0x27,0x10,0x35,0x5a,0x4c,0x63,0x9e,0xb5,0x20,0x39,0xaa, 0x13,0x4d,0x82,0x8a,0x7e,0x5f,0x9b,0xa9,0xab,0x42,0x50,0x7d,0x79,0xe6,0x97,0x28, 0x58,0xb0,0x8,0xc5,0x45,0xff,0x0,0x2d,0xf3,0xfe,0xc6,0x3f,0x5f,0xfe,0xb5,0x26, 0xfa,0x62,0xc8,0x3c,0xe6,0xff,0x0,0x74,0x7f,0x5a,0x4,0x5e,0x8b,0x9e,0xd4,0xc7, 0xe1,0x88,0xa4,0x86,0x4e,0x69,0xb2,0x36,0x58,0x9a,0x65,0x26,0x47,0xbb,0xf7,0xec, 0x3f,0xd8,0x5f,0xeb,0x53,0x21,0xe2,0xa9,0x6f,0x3e,0x7c,0xa7,0xb0,0xa,0x2a,0xc2, 0x31,0x38,0xa9,0x41,0x62,0x7c,0xf3,0x4c,0x76,0xe0,0xf,0x7a,0x4d,0xd4,0xc9,0x1b, 0x8a,0x63,0xb1,0x30,0x3c,0xd3,0x83,0xf1,0x50,0x2b,0x53,0xc1,0xa0,0x2c,0x3c,0xc9, 0x40,0x7e,0x45,0x44,0x4d,0x37,0x71,0xe,0x31,0x40,0x58,0xb8,0xaf,0xc0,0xe7,0x9a, 0x4d,0xc3,0x3d,0x39,0xf5,0xa8,0x3c,0xce,0x70,0x38,0xc5,0x20,0x72,0x4d,0x17,0x11, 0x65,0x9d,0xc7,0xfa,0xa9,0x5a,0x33,0xed,0xfe,0x15,0x13,0xea,0x7a,0x9d,0xa7,0xcc, 0xd1,0x45,0x76,0x80,0x74,0x5c,0x23,0x9f,0xcc,0xd2,0x7,0x39,0xa4,0x77,0xc4,0x6f, 0xcf,0x3b,0x49,0xfa,0xd3,0x52,0x68,0x56,0xb9,0x62,0xdf,0xc4,0xd6,0x8f,0x1a,0x9b, 0xa8,0xae,0x2d,0x58,0x9c,0x62,0x58,0xce,0xd1,0xff,0x0,0x2,0xe9,0x5a,0x70,0xdd, 0xdb,0xdc,0x8d,0xd0,0x4f,0x14,0x80,0xf1,0xf2,0x38,0x35,0x86,0x8d,0xfb,0xb1,0x90, 0x33,0x8f,0x41,0x8f,0xca,0xab,0x4d,0x61,0x6b,0x2b,0x6f,0xf2,0x96,0x37,0xfe,0xf4, 0x7f,0x29,0xfd,0x2a,0xd4,0xc3,0x90,0xea,0x88,0xe3,0xb8,0xfc,0x2a,0x26,0x4e,0x7d, 0x6b,0x9a,0x46,0xd4,0x2d,0x8f,0xfa,0x3d,0xe9,0x75,0x1d,0x12,0x7f,0x98,0x7e,0x7c, 0x54,0xbf,0xf0,0x91,0xdf,0x5b,0xb8,0x4b,0x8d,0x2f,0xcc,0x1f,0xde,0xb7,0x93,0x39, 0xfa,0x2,0x3f,0xad,0x5f,0x32,0x61,0xc8,0xcd,0xb6,0x8b,0x27,0x20,0x54,0x4d,0x1b, 0x1e,0x33,0x8f,0xa8,0xaa,0xb1,0x78,0x97,0x4b,0x94,0xe2,0x59,0xfe,0xcc,0xc3,0xaa, 0xdc,0xd,0x98,0xfe,0x95,0xa9,0x1c,0x91,0xcf,0x18,0x92,0x27,0x57,0x43,0xd1,0x94, 0xee,0x7,0xf2,0xa4,0x4b,0x4c,0xa7,0xe5,0xb0,0xe4,0x3f,0x6e,0x33,0x9a,0xe7,0xf5, 0x5f,0x6,0xe8,0xba,0x9a,0xb6,0xfb,0x18,0x61,0x91,0xb3,0xfb,0xd8,0x17,0x63,0x67, 0xd7,0x23,0xaf,0xe3,0x9a,0xeb,0x8a,0x8f,0xad,0x46,0xd1,0x82,0x39,0x14,0x46,0x52, 0x8e,0xcc,0x9b,0x5c,0xc5,0xf8,0x71,0xe0,0xfb,0x7f,0xa,0x3e,0xaa,0xd0,0x5d,0xcf, 0x3f,0xda,0xfc,0xad,0xde,0x6e,0x3e,0x5d,0xbb,0xf1,0x8c,0x7f,0xbd,0x5d,0xe5,0x66, 0x69,0x8,0x17,0xce,0xc7,0x7d,0xbf,0xd6,0xb4,0xeb,0xd0,0xa5,0x27,0x28,0x26,0xcc, 0xe4,0xac,0xce,0x77,0xc4,0xbc,0x5e,0x69,0xa7,0x1d,0xe4,0x1f,0xa0,0x3f,0xd2,0xb3, 0x7f,0x8b,0x83,0x81,0xf4,0xad,0x2f,0x13,0x9c,0x5d,0x69,0x5e,0xf2,0xb8,0xff,0x0, 0xc7,0xd,0x66,0xae,0x58,0xa8,0x3d,0x31,0x9a,0xe0,0xc4,0x2f,0xde,0x33,0xa2,0x9b, 0xf7,0x50,0xe0,0x8,0xc9,0x34,0xa1,0x72,0x87,0x23,0xad,0x19,0xcb,0xaf,0xa6,0x39, 0xa7,0xf5,0x18,0x1e,0x98,0xac,0x2c,0x55,0xc3,0xbe,0x49,0xa4,0xc7,0x24,0x8a,0x5d, 0xa4,0x28,0xcd,0x3c,0x28,0xe9,0x4d,0xa1,0x5c,0xad,0x85,0x2e,0xe3,0xdc,0x1a,0x95, 0x7f,0x4a,0xae,0x32,0x2e,0xe6,0xff,0x0,0x75,0x8,0xff,0x0,0xc7,0xbf,0xc2,0xac, 0xaf,0x2,0xa5,0x14,0x4a,0x9b,0x79,0xc0,0xa9,0x49,0xc8,0x34,0xc4,0x18,0x41,0x52, 0x67,0xb,0x5a,0x45,0x12,0xc8,0x1b,0x92,0x73,0xc8,0xf4,0xa7,0xa,0x6b,0x82,0x9, 0x23,0x91,0x42,0x9e,0x29,0x0,0xe6,0x39,0x18,0xe9,0x4c,0x3f,0x5a,0x6,0x48,0x34, 0x84,0x72,0x28,0x6c,0x4,0x51,0xc9,0xfa,0x55,0xab,0x55,0x5f,0x38,0xb9,0x1d,0x0, 0xc1,0xf4,0xeb,0x55,0xf1,0xf3,0x51,0xe6,0x32,0x3f,0xca,0x3a,0x8c,0x1a,0x22,0xed, 0xa8,0x31,0xda,0x8d,0xdc,0x67,0xec,0xf0,0xc7,0x20,0x66,0x69,0x94,0xb0,0x1c,0xe0, 0xa,0x90,0x9e,0x6a,0xbc,0x36,0xc9,0x19,0xe,0x79,0x6f,0x53,0xda,0xa5,0x76,0x21, 0xb3,0xc1,0xa7,0x29,0x5f,0x51,0x22,0x45,0x6f,0x95,0x87,0xa9,0xcd,0x43,0x73,0x75, 0x5,0xac,0x46,0x59,0xa5,0xa,0x99,0xc6,0x4f,0xaf,0xa0,0xf5,0x35,0x42,0xe3,0x52, 0x3e,0x67,0x91,0x69,0x18,0x9e,0x6c,0xe1,0xb9,0xf9,0x13,0xfd,0xe3,0xfd,0x28,0xb7, 0xb0,0x1e,0x70,0xb9,0xb9,0x7f,0xb4,0x5c,0xf4,0xe,0xc3,0x85,0xf6,0x51,0xd0,0x7d, 0x7a,0xd2,0x6c,0x7c,0xa2,0x83,0x3e,0xa0,0xe,0xf0,0xf6,0xf6,0xf9,0x4,0x2a,0x9c, 0x3b,0xfd,0x48,0xfb,0xa3,0xe9,0xcf,0xd3,0xbd,0xd8,0xe3,0x48,0x90,0x24,0x68,0x11, 0x47,0x40,0xa3,0x0,0x50,0x87,0xf9,0xd4,0x98,0xe2,0x93,0x42,0x60,0xa7,0x14,0xed, 0xf8,0xa8,0xb2,0x77,0x11,0x4b,0xdc,0x66,0x9a,0xd8,0x2c,0x49,0x6e,0xdb,0xa2,0x1e, 0xd9,0xfe,0x66,0xa4,0x76,0xe0,0x7d,0x6a,0xbd,0xbb,0x81,0x19,0x1d,0xc1,0x3f,0xce, 0x89,0x65,0x18,0x1c,0xe3,0x9f,0x5a,0x5,0x6d,0x49,0x8b,0x53,0x4b,0x62,0xa3,0x12, 0x2,0x29,0xae,0xe0,0xc,0xe6,0x95,0xc7,0x61,0xc5,0xcd,0x57,0x9a,0xe4,0xac,0xeb, 0x2,0x73,0x33,0xc,0x81,0xfd,0xd1,0xea,0x69,0x92,0x5c,0x4,0xe1,0xa,0x96,0x3d, 0x33,0x44,0x3e,0x4c,0x4d,0xc3,0xab,0x48,0xdc,0xb3,0x77,0x27,0xfc,0x29,0x1,0x62, 0x28,0xd6,0x31,0x81,0xc9,0x3c,0x96,0xee,0xc7,0xfc,0xf6,0xa9,0x43,0x54,0x79,0x24, 0x7c,0xaa,0xcf,0x8f,0xee,0x8a,0x72,0xa4,0xc4,0x67,0xc8,0x93,0xf1,0xc5,0xa,0xe8, 0x45,0xcb,0x63,0xfb,0xa3,0xec,0xc6,0xa5,0x69,0x0,0xc2,0xa8,0xc9,0x35,0x5e,0xdc, 0x48,0xa8,0x73,0x1b,0x2,0x4e,0x79,0xc5,0x4e,0x88,0xc0,0x92,0x54,0xe4,0xd7,0x4c, 0x1e,0x82,0x64,0x83,0x81,0xef,0x4d,0x66,0x20,0x71,0x4e,0xc1,0x3,0xa1,0xa6,0x30, 0x38,0xe0,0x1a,0xa7,0x7b,0x68,0x49,0x5a,0x42,0x41,0xe6,0xa2,0x2e,0x6a,0x79,0x23, 0x66,0xe8,0xf,0xe5,0x51,0x18,0x5f,0xfb,0xbf,0x99,0xc5,0x73,0x49,0x4a,0xe5,0xab, 0xc,0x32,0x7b,0xa,0x7a,0x7b,0x0,0x28,0x5b,0x79,0x1b,0xa0,0x1f,0x98,0xa9,0x92, 0xde,0x41,0xd4,0xf,0xce,0x88,0xa9,0x75,0xb,0xa1,0xc8,0x3d,0x2a,0x4e,0x68,0x58, 0xc8,0xf4,0xa9,0x36,0x1f,0x63,0x5b,0x28,0xb2,0x1b,0x19,0x93,0x43,0x36,0xd4,0x66, 0x23,0xa0,0x26,0xa4,0xd8,0x7d,0xa9,0xaf,0x11,0x65,0xc6,0x40,0xaa,0xe5,0x61,0x70, 0x88,0x6d,0x8d,0x47,0x7c,0x53,0xe9,0x40,0xf7,0xa5,0xb,0x54,0x93,0x10,0xa,0x5a, 0x50,0xa7,0xd2,0x97,0x69,0xaa,0xb3,0x26,0xe3,0x4f,0x4a,0x8e,0x2e,0x21,0x4f,0xf7, 0x47,0xf2,0xa9,0x76,0x9c,0x53,0x55,0xa,0xa2,0xaf,0xa0,0xc5,0x1c,0xac,0x77,0x1a, 0x69,0x3e,0x94,0xfd,0x87,0xd7,0xf4,0xa3,0xcb,0x3e,0xbf,0xa1,0xa4,0xe2,0xc7,0x71, 0xbd,0xaa,0x19,0x97,0x7c,0x6c,0xbe,0xdc,0x7d,0x6a,0xce,0xce,0x3a,0xfe,0x94,0xc6, 0x8b,0x3e,0xbf,0x95,0x26,0x9d,0x82,0xe4,0x39,0xe0,0x7a,0xf7,0xa7,0xc,0xd2,0x88, 0x48,0xf5,0xfc,0xa9,0xdb,0x48,0xec,0x7f,0x2a,0x4a,0x2d,0x0,0xd1,0x4b,0x8a,0x70, 0x5f,0xaf,0xe5,0x4e,0xdb,0xc7,0xff,0x0,0x5a,0x9f,0x2b,0xb,0x90,0x3a,0xee,0x1e, 0x84,0x1e,0xb5,0x22,0xf4,0xa5,0xd8,0x7d,0xf,0xe5,0x4e,0x11,0xe3,0xb9,0xfc,0xa8, 0x51,0x61,0x71,0xb4,0xd6,0xf7,0xa9,0x76,0xf,0x53,0xff,0x0,0x7c,0xd3,0x1a,0x3c, 0x8c,0x7c,0xdf,0x82,0xd3,0xe5,0x62,0xb9,0x9f,0x37,0xce,0xc4,0xe7,0xe9,0x50,0xed, 0x20,0xf3,0x5a,0x6,0xd3,0x3d,0xdb,0xfe,0xf8,0xff,0x0,0xeb,0xd3,0x7e,0xc4,0x7f, 0xbe,0xdf,0xf7,0xcf,0xff,0x0,0x5e,0xb0,0x74,0xa4,0xdd,0xcb,0xb9,0x5d,0x3a,0x8e, 0x47,0x5a,0xd0,0x4e,0x95,0xa,0x59,0x63,0xfe,0x5a,0x1f,0xca,0xad,0x47,0xe,0xd5, 0xc6,0xe2,0x6b,0x4a,0x74,0xda,0xdc,0x4d,0x80,0xa3,0x14,0xfd,0x94,0x6d,0x35,0xb7, 0x29,0x37,0x23,0xc6,0x29,0x69,0xfb,0x7d,0x69,0x36,0xe2,0x8e,0x50,0x1b,0x8a,0x4c, 0x53,0xf1,0x49,0x81,0xeb,0x52,0xd0,0x86,0x11,0x51,0x93,0xb7,0xad,0x4f,0xb3,0x3d, 0xe8,0x30,0x82,0x3a,0x9a,0x39,0x58,0xee,0x56,0x6e,0x9c,0x55,0x77,0xea,0x6a,0xff, 0x0,0x91,0x8f,0x5a,0x63,0x5a,0x86,0xee,0x45,0x4b,0xa6,0xd8,0xee,0x66,0xb7,0x4a, 0x88,0xf4,0xad,0x43,0x60,0xf,0xf1,0xb0,0xfa,0x53,0x3f,0xb3,0x57,0xfe,0x7a,0xb7, 0xe5,0x59,0x3a,0x33,0xe8,0x3e,0x63,0x30,0xe4,0x7f,0xfa,0xe9,0x32,0x7b,0x1f,0xd6, 0xb4,0x8e,0x9a,0x3f,0xe7,0xa9,0xfc,0xa9,0x87,0x4c,0x53,0xff,0x0,0x2d,0xa5,0xfc, 0x31,0xfe,0x15,0x3e,0xc6,0x65,0x29,0x23,0x39,0xd0,0xb8,0xc1,0x27,0xf1,0x19,0xaa, 0xb2,0x59,0x6,0x4,0xf,0xba,0x7a,0x8d,0xb9,0xad,0xbf,0xec,0xaf,0xfa,0x6b,0x37, 0xe4,0xbf,0xe1,0x49,0xfd,0x94,0x7f,0xe7,0xb3,0xfe,0x28,0x3f,0xa5,0x1e,0xc2,0x61, 0xcc,0x8e,0x2e,0xeb,0x44,0x74,0xc9,0xb6,0x75,0x41,0xfd,0xc7,0x53,0xb6,0xaa,0xa3, 0x4f,0x6c,0xcb,0x14,0xea,0x50,0xf6,0xc9,0xc8,0x3f,0x43,0x5d,0xe3,0x69,0xc,0x78, 0xf3,0xc7,0xfd,0xfb,0xff,0x0,0xeb,0xd4,0x32,0xe8,0xb,0x2a,0x14,0x79,0x55,0x94, 0xf5,0xd,0x1e,0x47,0xf3,0xab,0xe4,0x9f,0x54,0xd,0xa6,0x8e,0x61,0x1c,0xb0,0xeb, 0x82,0x3a,0x8a,0x94,0x67,0x1f,0xfd,0x7a,0xd7,0x1e,0x15,0x48,0xce,0x52,0xf2,0x45, 0x1f,0xdd,0xdb,0xc0,0xfc,0xcd,0x29,0xd0,0x31,0xcf,0xdb,0x18,0xff,0x0,0xc0,0x0, 0xa9,0x74,0xd9,0x37,0x31,0x89,0xe6,0x82,0x5b,0x1d,0x2b,0x51,0xb4,0x12,0xfc,0x25, 0xd4,0xc0,0x8e,0xbc,0xa9,0xfe,0x62,0x93,0xfe,0x11,0xf9,0x40,0xff,0x0,0x8f,0xb6, 0x3f,0x54,0x3,0xf9,0x54,0xf2,0x31,0x99,0x3c,0xe6,0x97,0x27,0xd2,0xb4,0x8e,0x89, 0x32,0xff,0x0,0xcb,0x70,0xde,0xde,0x5d,0x44,0xda,0x3d,0xf0,0x3f,0x2f,0x97,0x8f, 0x75,0x34,0xb9,0x58,0xca,0x23,0x27,0xd4,0x54,0x99,0x3b,0x70,0x6a,0xd7,0xf6,0x46, 0xa0,0x3f,0xe5,0x90,0x3f,0x45,0x3,0xf9,0x9a,0xe,0x99,0x7f,0xda,0xd9,0xbf,0x31, 0xfe,0x34,0x5b,0xc8,0xa,0x7f,0xc6,0x4d,0x24,0xb0,0xc5,0x71,0x13,0x45,0x34,0x69, 0x24,0x6d,0xc1,0x57,0x50,0x41,0xfc,0xea,0x69,0x74,0xfd,0x49,0x48,0x2b,0x62,0xed, 0xec,0x19,0x41,0xfe,0x74,0x82,0xd6,0xf7,0xa3,0x59,0xba,0x91,0xd8,0xb2,0xe7,0xf9, 0xd1,0x66,0x86,0x8e,0x7e,0x7d,0x26,0x5b,0x22,0x1b,0x4b,0xb9,0x78,0x40,0x3c,0x41, 0x23,0x16,0x8b,0xe9,0x83,0xc8,0xfc,0xd,0x49,0xe,0xad,0x25,0xb6,0x23,0xd4,0x2d, 0x5e,0xdc,0xf4,0x32,0x1,0xba,0x33,0xf8,0xf5,0x15,0xb5,0x2d,0x95,0xf3,0x10,0x56, 0xc2,0x57,0xfa,0x15,0xe3,0xf5,0xa4,0x36,0x57,0xec,0xe,0x74,0xdb,0x93,0xc7,0xfb, 0x27,0xfa,0xd5,0x6a,0xc7,0x71,0x91,0xcf,0x1c,0xb1,0x9,0x11,0x95,0x94,0xf4,0x60, 0x72,0xd,0x2a,0x38,0x32,0xb9,0xce,0x38,0x3,0xf9,0xd6,0x7f,0xf6,0x44,0xe2,0x66, 0x92,0x2d,0x2e,0xfa,0xda,0x4f,0xef,0x46,0xa0,0x3,0xf8,0x67,0x14,0xf4,0x4d,0x5e, 0x19,0x3f,0x79,0xa5,0x5c,0xce,0x9f,0xde,0x8a,0x30,0xf,0xe5,0x9a,0x4e,0x22,0x35, 0x63,0x63,0xeb,0x49,0x33,0x12,0x7e,0xa2,0xa1,0x47,0x9b,0x68,0x66,0xb3,0xba,0x40, 0x7f,0xbf,0x11,0x4,0x53,0x9c,0x9e,0xea,0xc3,0xea,0xa4,0x56,0x6f,0xb0,0x5c,0xaf, 0xbf,0x74,0xf2,0x76,0xc3,0x1,0xfa,0xa,0xb7,0x19,0xef,0x59,0x4f,0x79,0x14,0x33, 0xc9,0xe6,0x92,0xb9,0x6e,0x9,0x1d,0x70,0x0,0xab,0x90,0x5e,0x42,0x47,0xdf,0x1f, 0x87,0x34,0xda,0xec,0x3b,0xd8,0xba,0x3a,0x54,0x6f,0xf5,0xa6,0xfd,0xa6,0x32,0x3e, 0x5c,0x9a,0x69,0x90,0x13,0xe9,0xc6,0x68,0xe,0x62,0x58,0xcf,0x15,0x26,0xee,0x2a, 0xbc,0x4d,0x95,0xc9,0xe3,0x35,0x28,0x39,0xe9,0xd2,0x90,0x5c,0x56,0x6c,0xc,0xd3, 0x43,0x7c,0xd8,0xa1,0xba,0x62,0x93,0x80,0x49,0xec,0x29,0x8e,0xe4,0x80,0x8a,0x14, 0xe0,0xd0,0x0,0xda,0x8,0xef,0x4e,0x0,0xd2,0x18,0x9b,0x88,0xa6,0xc8,0xe4,0xc6, 0xde,0xca,0x45,0x38,0x2e,0x1f,0x9a,0x49,0x53,0x28,0x71,0xdf,0x8a,0x40,0xac,0x8, 0x7e,0x51,0x4f,0x7,0xb5,0x46,0xa3,0x8e,0x45,0x2e,0x70,0x7a,0x50,0x50,0xb9,0xc6, 0x46,0x29,0x77,0xd3,0x77,0x64,0xd3,0x4b,0x60,0xd3,0x15,0x86,0xdc,0xc3,0x4,0xab, 0xfb,0xe8,0x51,0xc7,0x4f,0x99,0x41,0xfe,0x75,0x4e,0x3d,0x1a,0x8,0x9b,0x7d,0x84, 0xd3,0x5a,0x49,0xeb,0xb,0x90,0xbf,0x88,0xe9,0x56,0xa7,0xf9,0xa2,0x3d,0x32,0x39, 0xab,0xa,0x7e,0x55,0x19,0x34,0xd4,0x80,0xaf,0xf6,0xcd,0x76,0xd9,0x47,0x97,0x71, 0x6f,0x74,0x83,0xfe,0x7b,0x26,0xd6,0x3f,0x88,0xa7,0x27,0x8b,0x84,0x18,0x5d,0x4f, 0x4d,0xb8,0xb5,0x27,0x8f,0x31,0x6,0xf4,0xff,0x0,0x1f,0xd2,0xac,0x13,0x83,0x9a, 0xe,0xa,0x90,0xc0,0x15,0x3c,0x10,0xc3,0x39,0xa7,0xcf,0xdc,0x93,0xa1,0xf0,0xe6, 0xa9,0x63,0xaa,0x47,0x3b,0xd9,0x5d,0x47,0x30,0x5d,0xbb,0x82,0x9e,0x57,0xaf,0x50, 0x79,0x15,0xb9,0x5c,0xd7,0x84,0xed,0x60,0xb7,0x92,0xf9,0xa1,0x85,0x23,0xdf,0xe5, 0xe7,0x68,0xc6,0x71,0xbb,0xfc,0x6b,0xa5,0xaf,0x4e,0x83,0xbd,0x34,0xce,0x79,0xfc, 0x47,0x39,0xe2,0xa6,0x31,0xbe,0x98,0xfb,0x77,0xf,0xb4,0x6d,0x3e,0xd9,0x18,0xfe, 0xb5,0x44,0x20,0xc7,0xa1,0xe3,0xf9,0x55,0xff,0x0,0x16,0x1c,0x41,0x66,0x7d,0x27, 0x4f,0xfd,0xd,0x6a,0xa0,0xc2,0xa8,0x19,0xcf,0x15,0xc1,0x88,0xfe,0x2b,0x35,0xa7, 0xf0,0x88,0x10,0xd4,0xc8,0x9c,0xe2,0x9a,0xa3,0xd6,0xa6,0x89,0x7e,0x61,0x59,0xa2, 0x99,0x30,0x8d,0x44,0x7b,0x48,0xe0,0xd4,0x12,0xc6,0x17,0x18,0xab,0x5d,0xaa,0x19, 0x70,0x40,0x1e,0xa7,0x15,0x6d,0x22,0x56,0xe6,0x61,0x0,0x6a,0x12,0x8c,0xff,0x0, 0xcb,0x25,0x3f,0xab,0x54,0xfb,0x4f,0x0,0x55,0x66,0xd,0xfd,0xae,0x1b,0x1c,0x18, 0xf,0xe6,0x1b,0xff,0x0,0xaf,0x56,0xc6,0x46,0x3d,0x45,0x67,0x6d,0x4d,0x7,0xa3, 0x71,0x8f,0x4a,0x90,0x37,0x1c,0x8a,0x8b,0x81,0xd2,0x9f,0x9a,0xab,0xd8,0x4d,0xd, 0x71,0xc6,0x3b,0x52,0xaa,0x86,0x14,0x8d,0x80,0xbc,0x9a,0x58,0xd8,0x1,0xc5,0x2b, 0xea,0x21,0x44,0x60,0x50,0x50,0x53,0xf3,0x4b,0x83,0x8c,0x9a,0x68,0x8,0xf6,0x2, 0xd9,0xc5,0x29,0x0,0x1e,0x94,0xb9,0xe7,0x1d,0xea,0x94,0xfa,0x84,0x62,0x5f,0x26, 0x11,0xe7,0x4c,0x3a,0x81,0xd1,0x7e,0xa6,0x96,0xc0,0x4f,0x2d,0xc4,0x70,0x46,0x64, 0x91,0x82,0x8f,0x7a,0xcb,0x9b,0xed,0x17,0xbf,0x79,0x9a,0xde,0xdc,0xe4,0x60,0x1c, 0x33,0xc,0x7e,0x9d,0x2a,0xca,0xdb,0x99,0x18,0x4b,0x73,0xf3,0xb8,0x39,0x3,0xb2, 0xd3,0xe6,0x1,0x8a,0x8c,0xe,0xe,0x7f,0x4a,0x4d,0xdc,0xa4,0xac,0x47,0x5,0xb4, 0x76,0xf0,0xac,0x50,0xc6,0x11,0x7,0x61,0xfc,0xcf,0xa9,0xf7,0xab,0x4a,0xb8,0x2, 0x9a,0xa7,0xbd,0x49,0xb8,0x1,0xcd,0x34,0xd,0xb1,0x23,0x18,0xcf,0xd6,0xa4,0x76, 0x1,0x72,0x6a,0xba,0xc8,0x49,0x61,0xd3,0x7,0x14,0xd7,0x62,0xc3,0xad,0x2b,0x8a, 0xd7,0x1f,0xbc,0x17,0x34,0xd6,0x93,0x4,0xe3,0x9a,0x83,0x7e,0xd2,0x4e,0x40,0xfa, 0xd5,0x3b,0xab,0xd1,0x8,0xc7,0x25,0xdb,0x85,0x40,0x39,0x27,0xfc,0x2a,0x5b,0x1d, 0x8b,0x53,0xdd,0xc5,0x69,0xf,0x99,0x2b,0x61,0x73,0x8e,0x39,0x2c,0x4f,0x61,0xea, 0x6a,0xaa,0xda,0xcb,0xa8,0x4a,0x27,0xb9,0xc,0xb1,0xa9,0xcc,0x70,0x93,0xd3,0xdd, 0xbd,0xfd,0xaa,0x18,0x2c,0x27,0x92,0x51,0x3d,0xd6,0x37,0x8e,0x8b,0x9c,0xed,0xad, 0x45,0x56,0x1d,0x3b,0x7a,0x54,0xdc,0x9,0xa3,0x5d,0xab,0xb4,0x67,0xf1,0xa9,0x44, 0x7b,0xf8,0x35,0x1a,0x3,0xc7,0xf5,0xa9,0x90,0xe3,0x9a,0xa8,0xee,0x26,0x5c,0xb7, 0x89,0x63,0x19,0x3,0xad,0x59,0x2,0xab,0x45,0x2a,0xe0,0x2,0x40,0xfa,0xd4,0xe2, 0x44,0x3f,0xc6,0xbf,0x9d,0x75,0x46,0xd6,0x33,0x6c,0x6b,0xc0,0x58,0xe7,0xcd,0x71, 0xf8,0xf1,0x50,0xb4,0x12,0x29,0xcf,0xde,0x1e,0xb5,0x68,0xc8,0x83,0xf8,0x85,0x21, 0x91,0x3b,0x37,0xeb,0x54,0xe3,0x16,0x9,0x95,0xd5,0x48,0x1f,0x74,0xd4,0x89,0x19, 0xfe,0xe9,0xa9,0x55,0xd4,0xf3,0xb8,0x53,0xfc,0xc5,0xfe,0xf0,0xa7,0x18,0x89,0xb1, 0xc8,0x30,0xbc,0xd3,0xaa,0x3f,0x3a,0x3e,0xed,0x47,0x9f,0x1f,0xf7,0xab,0x4d,0x9, 0x1e,0x71,0x8e,0x94,0x94,0xdf,0x3e,0x2f,0xef,0x8a,0x51,0x24,0x67,0xa3,0x8a,0x2c, 0x80,0x5c,0x53,0x82,0xff,0x0,0x9c,0x52,0x6e,0x53,0xd0,0x83,0x47,0x98,0xa3,0xab, 0x1,0xf5,0x34,0xd2,0x0,0x6c,0xe,0x69,0x50,0xe4,0x66,0xa2,0x91,0xd5,0x80,0x0, 0x8e,0x4d,0x3d,0x5e,0x31,0xc0,0x75,0xe3,0xde,0x8e,0xa0,0x4a,0x28,0xa6,0x19,0x13, 0x1f,0x7d,0x7f,0x3a,0x4f,0x31,0x3f,0xbe,0xbf,0x9d,0x55,0xd0,0x12,0x71,0x46,0x6a, 0x1f,0xb4,0x42,0x3a,0xcd,0x18,0xff,0x0,0x81,0xa,0x4f,0xb4,0xc1,0xff,0x0,0x3d, 0xe3,0xff,0x0,0xbe,0xc5,0x17,0x42,0xb1,0x63,0x34,0x95,0x7,0xda,0x60,0xff,0x0, 0x9e,0xf1,0xff,0x0,0xdf,0x42,0x9c,0x27,0x88,0xf4,0x91,0x4f,0xd0,0xd3,0xe6,0x41, 0x62,0x43,0x49,0x1b,0x6e,0x40,0xdd,0x32,0x33,0x51,0xb4,0xa8,0x7,0xde,0x1f,0x85, 0x11,0x48,0xa1,0x14,0x6e,0xe8,0x31,0x53,0xcd,0xa8,0x58,0x9b,0x9f,0x5a,0x5c,0x9a, 0x60,0x91,0x7f,0xbc,0x28,0xde,0xbf,0xde,0x15,0x57,0x40,0x3f,0x39,0xa3,0xa5,0x33, 0xcc,0x5f,0xef,0xa,0xc,0x8b,0xfd,0xe1,0x46,0x80,0x3a,0x90,0xd3,0x44,0x8b,0xfd, 0xe1,0xf9,0xd2,0x34,0xa9,0xfd,0xf1,0x43,0x68,0x60,0xc7,0x1c,0xd2,0xa9,0xa8,0x8c, 0x82,0x91,0x64,0xc7,0x15,0x17,0x41,0x62,0xd0,0xfa,0xd2,0xd4,0x22,0x65,0xee,0x69, 0x44,0xc9,0xfd,0xea,0xa4,0xd0,0x89,0x68,0xe9,0x4c,0xf3,0x53,0xb3,0xa,0x43,0x2a, 0xf,0xe3,0x14,0x68,0x16,0x1e,0x79,0xa4,0x23,0x8a,0x6f,0x9c,0x9f,0xde,0x14,0xc6, 0xb8,0x45,0xfe,0x20,0x3f,0x1a,0x1b,0x40,0x38,0xf0,0x69,0xe0,0x8c,0x55,0x43,0x7d, 0x6f,0xde,0x64,0xff,0x0,0xbe,0xaa,0x3f,0xb6,0xc1,0xff,0x0,0x3d,0x93,0xfe,0xfa, 0xa9,0xe7,0xb,0x1a,0x0,0xd2,0xee,0xf7,0xac,0xff,0x0,0xb6,0x5b,0xff,0x0,0xcf, 0x74,0xff,0x0,0xbe,0xa9,0xe2,0x75,0x61,0x95,0x60,0x47,0xb1,0xcd,0x1c,0xe1,0x62, 0xe6,0x73,0x49,0x55,0xc4,0x9e,0xf4,0xbe,0x67,0xbd,0x1c,0xe1,0x62,0x7a,0x61,0xc7, 0xa5,0x33,0x7e,0x7b,0xd1,0xba,0x97,0x30,0xec,0x3c,0x1a,0x90,0x1a,0xaf,0x9a,0x78, 0x7f,0x5a,0x6a,0x42,0x64,0xdd,0x68,0xc5,0x47,0xe6,0x28,0x1d,0x68,0xf3,0xa3,0x1f, 0xc4,0x2a,0xee,0x85,0x62,0x4c,0x52,0x11,0x4c,0xf3,0xe3,0xfe,0xf5,0x1e,0x6a,0x1e, 0x86,0x8b,0x8c,0x76,0xd0,0x69,0x36,0x1,0x46,0xf5,0xf5,0xa3,0x7a,0xfa,0xd4,0x80, 0xb9,0xf6,0xa2,0x98,0x5c,0x7a,0xd1,0xe6,0xa,0x2e,0x3,0xff,0x0,0x1a,0x38,0xa6, 0x79,0x83,0xde,0x98,0x6e,0x63,0x53,0xc9,0x23,0xf0,0xa2,0xe8,0x2c,0x4a,0x54,0x7a, 0x53,0xc,0x6a,0x6a,0x26,0xbc,0x8c,0x74,0x6a,0x8f,0xed,0xa9,0xfd,0xef,0xd2,0x93, 0x92,0xb0,0xc9,0x4c,0xb,0xc9,0x2,0x93,0x61,0x5e,0xd5,0x10,0xbb,0x46,0x38,0xf, 0x4f,0xf3,0x73,0xdf,0x35,0x17,0x43,0x44,0xa0,0x3,0x4e,0xc6,0x2a,0x11,0x26,0x3a, 0x53,0xbc,0xf1,0xde,0x8b,0xa0,0x1f,0x8f,0xf3,0x9a,0x4e,0x3b,0xe7,0xf3,0x34,0xc3, 0x38,0xe7,0x0,0xd4,0xf,0x70,0xca,0x32,0x5b,0x3,0xe9,0x53,0x26,0x90,0x58,0xb3, 0xd7,0x3f,0xe3,0x4c,0x2a,0xf,0x5a,0xa6,0x6e,0xd7,0x19,0x32,0x1a,0x8f,0xed,0xc8, 0x3f,0xe5,0xa1,0xac,0xf9,0xd1,0x56,0x2e,0xb2,0x91,0xd2,0x93,0x23,0xa1,0xeb,0xee, 0x6a,0x97,0xf6,0x8a,0x8f,0xf9,0x69,0xf9,0x8c,0xd3,0x86,0xa3,0x6e,0xdc,0x48,0xe3, 0xeb,0x83,0x47,0x3a,0x1d,0x99,0x6c,0xa6,0x73,0x8c,0x54,0x4c,0xa7,0x90,0x7f,0x22, 0x33,0x50,0x8b,0xbb,0x45,0x3f,0x24,0xff,0x0,0x86,0xd,0x3f,0xed,0xb0,0x37,0xf1, 0xe7,0xf0,0x34,0xee,0x98,0xc6,0xc9,0xa,0xb8,0xc3,0x2e,0xef,0xad,0x50,0x9e,0xc0, 0x10,0x4c,0x64,0xc,0xf6,0x22,0xb4,0x1a,0xe6,0x12,0x38,0x7f,0xd2,0xaa,0xc9,0x29, 0x61,0xc7,0x4a,0xc6,0x76,0x1a,0x31,0x67,0xb1,0xce,0xe5,0x92,0x35,0x3c,0xf7,0x5c, 0xd6,0x1d,0xd6,0x9c,0x96,0xf3,0x9f,0x2e,0x49,0x6d,0xcf,0x72,0x10,0xb2,0xd7,0x58, 0xcc,0x9,0xea,0x7f,0x1a,0x66,0x72,0x31,0x93,0x59,0xa9,0xb5,0xb1,0x47,0x24,0xcf, 0x7d,0x68,0x9b,0xa5,0x84,0xcd,0x1f,0xfc,0xf4,0x88,0x76,0xf7,0x14,0xe8,0x75,0x18, 0xe5,0x23,0x7,0x19,0xe0,0x82,0x70,0x7f,0x2a,0xe9,0x65,0xda,0x83,0x71,0x6c,0x7b, 0xe6,0xb3,0xae,0xb4,0xbb,0x3b,0xc0,0x59,0x91,0x77,0x1f,0xe3,0x43,0x83,0xf9,0xd5, 0x29,0xae,0xa1,0x64,0x40,0x97,0x4,0x60,0x6d,0xc8,0xfa,0xd4,0xeb,0x72,0x7,0x51, 0x8a,0xce,0x9f,0x4b,0xbf,0xb6,0x1b,0xac,0xe4,0x59,0xd0,0xf,0xf5,0x6e,0xd8,0x6f, 0xce,0xaa,0x2e,0xa6,0x60,0x5c,0x5e,0x43,0x35,0xb6,0xe,0x33,0x34,0x64,0x2f,0xe7, 0xd2,0xae,0xc9,0xec,0x43,0xb1,0xbf,0xe7,0x6,0x19,0xa5,0x49,0x1,0x73,0xcd,0x67, 0x25,0xc2,0x32,0x6,0x56,0xca,0x9e,0x41,0xed,0x53,0x47,0x36,0x9,0xe3,0xd2,0x8e, 0x51,0x9a,0x41,0x81,0xa7,0x87,0x18,0xeb,0x54,0x96,0x62,0xcc,0x71,0x8c,0x53,0xfc, 0xde,0x98,0xc7,0x1d,0x6a,0x1a,0xb0,0x26,0x5b,0x2d,0x91,0xef,0x44,0x8c,0x0,0x51, 0xea,0x40,0xaa,0xc2,0x61,0xd7,0xbd,0x36,0x79,0xc0,0xf2,0xfb,0xe5,0xd6,0xa4,0x77, 0x2d,0x8e,0x45,0x35,0x85,0x30,0x4a,0xb8,0xfd,0x29,0x4,0xca,0xca,0x4f,0x6e,0x68, 0xb0,0xd3,0x24,0x5c,0x7a,0x53,0x5b,0xef,0xc,0xa,0x62,0xcb,0xc0,0xc0,0xe2,0x9a, 0x64,0xfd,0x69,0xd8,0x39,0x84,0x9c,0xd,0xa4,0x74,0xcd,0x4a,0xa5,0x98,0xf2,0x7d, 0xaa,0x9,0x1f,0x27,0x68,0xe4,0xe6,0xa5,0x53,0x8c,0xfa,0xe6,0x8b,0x5,0xcb,0x1d, 0x29,0x33,0xeb,0x51,0x87,0xe4,0x83,0xe9,0x52,0x75,0x4e,0x9c,0xe2,0x90,0x91,0xbf, 0xe1,0x86,0xdc,0x2e,0xbf,0xe0,0x1f,0xd6,0xba,0xa,0xe7,0xbc,0x2f,0xd6,0xef,0xfe, 0x1,0xff,0x0,0xb3,0x57,0x43,0x5e,0xa6,0x1b,0xf8,0x48,0xe7,0xa9,0xf1,0x33,0x9a, 0xf1,0x8b,0x88,0xed,0x6d,0x98,0x82,0x42,0xc8,0x1b,0xf2,0x65,0xaa,0x68,0xc4,0xf6, 0xfa,0x1a,0xb5,0xe3,0x65,0xce,0x95,0xbf,0x9c,0xa2,0xb3,0x7e,0x45,0x4d,0x57,0x45, 0x4,0x7d,0xd,0x71,0xd7,0x5f,0xbd,0x66,0xd0,0xf8,0x51,0x30,0xc8,0xc6,0x6a,0xc8, 0x5c,0x1,0x51,0x22,0x86,0x6e,0x9d,0x2a,0x6e,0xe6,0xa2,0x28,0x4c,0x5c,0xe1,0x6a, 0x9,0x4e,0x1,0xe7,0x9a,0x79,0x6e,0x33,0x51,0x48,0x43,0x1a,0x6d,0x8d,0x22,0xac, 0x99,0xfb,0x5a,0x37,0xfd,0x33,0x7c,0x7e,0x62,0x9e,0x5b,0xe6,0xfc,0x69,0x24,0xe2, 0xe2,0x1c,0xf7,0xc,0x3f,0x4a,0x71,0x52,0x3a,0x1a,0xcc,0xb0,0xdc,0x7e,0x94,0x6e, 0x39,0xeb,0x4c,0xc6,0x48,0x0,0xe7,0xdf,0x14,0xfd,0xbc,0x1a,0x35,0x1,0xb,0x13, 0xc6,0x68,0x86,0x4f,0x32,0x24,0x61,0xd0,0x80,0x68,0x23,0x8f,0x4e,0x2a,0x3b,0x40, 0x16,0xd6,0x21,0xfe,0xc8,0xa4,0x16,0x2d,0x29,0xf9,0x85,0x2c,0xf7,0x9,0xc,0x65, 0xdc,0xed,0x3,0xa9,0x35,0x5c,0xce,0x81,0x8a,0xa6,0x19,0xc7,0x55,0x7,0xa7,0xd6, 0x9b,0x24,0x42,0x7c,0x34,0xc0,0x36,0xde,0x55,0x4f,0x40,0x7d,0x6a,0xae,0x16,0x22, 0x13,0x49,0x74,0x98,0x0,0xc7,0x13,0x74,0x27,0xef,0x11,0xeb,0xed,0x4e,0x8e,0x18, 0xe0,0x8c,0x24,0x4a,0x15,0x7d,0x5,0x4a,0x40,0xc8,0x3c,0x73,0xd6,0x95,0x87,0x39, 0xa5,0x60,0x18,0x72,0x7,0x4,0xd4,0x6c,0x70,0xdc,0x9e,0xb5,0x3f,0x4a,0xaf,0x70, 0xc1,0x4a,0x31,0xe9,0xbc,0xf,0xe9,0x40,0xc9,0x15,0xb8,0x14,0xe6,0x6c,0x29,0x3e, 0x83,0x34,0xc0,0x79,0xc7,0xa5,0x3b,0x3c,0x53,0x42,0x64,0x2a,0xcf,0x96,0xdd,0xeb, 0x9a,0x47,0x62,0x28,0x67,0xa,0x58,0x93,0xc1,0x3f,0x95,0x66,0xdd,0xde,0x49,0x70, 0xef,0x6b,0x68,0x40,0x93,0xee,0xbc,0x8c,0x40,0x58,0xc7,0xf8,0xfb,0x52,0x64,0x12, 0x4d,0x72,0x56,0x4f,0x2d,0x1,0x79,0x4f,0xf0,0x8e,0x71,0x49,0xd,0xa5,0xc0,0x3b, 0xdd,0x5c,0xca,0x7a,0x9e,0x2a,0x6b,0xb,0x45,0xb5,0xce,0x8,0x90,0xb3,0x67,0x70, 0x3b,0xb3,0xf5,0xad,0x8,0xc3,0x91,0x97,0x23,0x9e,0xd5,0x36,0x1e,0xa5,0x24,0x8f, 0x50,0x27,0x85,0x24,0x76,0x5,0x80,0xfe,0x74,0xae,0x97,0xd8,0x24,0xc6,0xe3,0xd3, 0x95,0xff,0x0,0x13,0x5a,0x59,0x11,0x80,0x0,0x3b,0x8f,0x41,0x56,0xe1,0x83,0x90, 0xf2,0xc,0xb7,0xa6,0x33,0x57,0x18,0x5c,0x5a,0xee,0x66,0xdb,0x43,0x3a,0xa8,0x32, 0x87,0x91,0xcf,0xa2,0x81,0x8a,0xb6,0x23,0x97,0x1f,0xea,0xdf,0xf2,0xad,0x5,0x5e, 0x31,0xc8,0x15,0x20,0x5f,0xad,0x68,0xa8,0xae,0xe2,0x72,0x33,0x7c,0xa9,0xf,0xfc, 0xb3,0x61,0xf8,0x54,0x8b,0x13,0xe,0xb1,0xb5,0x68,0x81,0xf5,0xa5,0xc5,0x5a,0xa4, 0xbb,0x93,0x7b,0x99,0xfe,0x53,0x1f,0xf9,0x66,0x68,0xf2,0x64,0x3d,0x22,0x35,0xa2, 0x5,0x2e,0x29,0xaa,0x4b,0xb8,0xae,0x52,0x8e,0x27,0x51,0xcc,0x66,0x9c,0xc8,0xc7, 0xfe,0x59,0xd5,0xcc,0x62,0x8f,0xc2,0xb4,0xe4,0xb2,0xdc,0xa,0x25,0x5c,0xf,0xb9, 0xf9,0xd0,0x15,0x9b,0xf8,0x6a,0xca,0xe2,0x42,0x70,0x38,0x7,0x19,0xa9,0x42,0x81, 0x42,0x85,0xc4,0x53,0x11,0x1e,0xea,0x69,0xe2,0x26,0xff,0x0,0x9e,0x75,0x6c,0xa, 0x5c,0x55,0xa8,0x5,0xca,0xbe,0x43,0x7f,0x70,0x52,0x1b,0x73,0xfd,0xc1,0x9a,0xb9, 0x8a,0x31,0x55,0xc8,0x17,0x29,0x8,0x64,0x1f,0xc3,0x49,0xe4,0xb7,0x74,0x15,0x78, 0x81,0x4d,0x2a,0x29,0x38,0x5,0xca,0x46,0x13,0xdc,0xa,0x8a,0x64,0xc4,0x44,0x0, 0x6,0x46,0x2a,0xfb,0x27,0x15,0x52,0xe0,0x15,0x60,0xb9,0xc6,0xec,0xfe,0x95,0x12, 0x8d,0x86,0x65,0x1b,0x2c,0xe3,0xb,0xe,0x7d,0xd6,0x93,0xec,0x4c,0x3f,0x86,0x1c, 0xfd,0x31,0x57,0xc8,0x18,0xce,0x4f,0xe5,0x4d,0x38,0x1e,0xb9,0xf7,0xa1,0x1,0x50, 0x5a,0x37,0x74,0x84,0x7e,0x1f,0xfd,0x6a,0xb3,0x6b,0x3,0x28,0x60,0x42,0x75,0xea, 0x29,0xdc,0xf7,0x19,0xfc,0x6a,0x5b,0x7e,0x4c,0x98,0x1c,0x6e,0xfe,0x82,0x93,0x63, 0xb1,0x22,0xa1,0xf4,0x14,0xf1,0x1b,0x1f,0x4f,0xc6,0x9e,0x10,0x9a,0x9d,0x10,0x1, 0x54,0xa2,0x26,0xc8,0x4,0x2f,0xdf,0x6d,0x28,0x85,0xbf,0xd9,0xab,0x20,0x7b,0xd1, 0x8f,0x7a,0xbe,0x52,0x6e,0x57,0xf2,0x4f,0xfb,0x34,0x18,0xc8,0xea,0x5,0x59,0xc5, 0x34,0xae,0x69,0x38,0x85,0xca,0xa5,0x31,0xd8,0x7e,0x54,0xd2,0x9e,0xc2,0xac,0x94, 0x34,0xc2,0x9e,0xb5,0x9c,0x90,0xee,0x56,0x5c,0x90,0x18,0x11,0x83,0x4e,0xc1,0xcd, 0x24,0x49,0xb4,0x15,0xfe,0xe9,0xa9,0x95,0x9,0xa4,0x93,0x2,0x3d,0x8d,0xe9,0x4f, 0x8,0xde,0x95,0x32,0xae,0x29,0xe0,0x56,0x8a,0x17,0xb,0x95,0xbc,0xb7,0xed,0x47, 0x94,0xe7,0xb0,0xab,0x58,0xa3,0x14,0xf9,0x5,0x72,0xb7,0x92,0xfe,0x80,0x53,0x1a, 0x17,0x1c,0xf1,0x57,0x8,0xa8,0x9c,0x1c,0x70,0x29,0x38,0x59,0x2,0x66,0x5c,0xd0, 0x32,0x49,0xb8,0x36,0x15,0xa9,0xa2,0x37,0xee,0xff,0x0,0xa5,0x5d,0x90,0x6f,0x5, 0x4f,0x7e,0x9f,0x5a,0xab,0x1b,0x1c,0x94,0x61,0x87,0x5e,0xbe,0xf5,0x9d,0xc6,0x2, 0x26,0xfe,0xff,0x0,0xe9,0x4f,0x44,0xd8,0x7a,0xe6,0x9c,0x3a,0x52,0xd0,0x4,0x80, 0x66,0x9e,0x16,0xa2,0x56,0xc7,0x53,0x53,0xa9,0xc8,0xa2,0xe3,0x0,0xb4,0xbb,0x69, 0xc2,0x96,0xa8,0x91,0x9b,0x69,0x36,0xd4,0x94,0x1a,0x56,0x2,0x3c,0x52,0x15,0xa9, 0x28,0xa0,0x68,0x8b,0x6d,0x2e,0x29,0xe4,0x53,0x69,0x0,0xe0,0x28,0xc5,0x19,0xc5, 0x2e,0x69,0x88,0x6e,0xda,0x31,0x4e,0xcd,0x19,0xa0,0x2e,0x33,0x14,0xc6,0x8c,0x37, 0x6,0xa5,0xa0,0xd2,0x63,0x29,0xb4,0x2c,0xb9,0xe7,0x8a,0x8f,0x66,0x47,0x4,0x9f, 0xc2,0xae,0x9a,0x8d,0xa3,0x7,0x90,0x39,0xa9,0xb0,0xca,0xbe,0x59,0xf5,0xfd,0x29, 0xea,0xa,0x8c,0x6e,0x27,0xeb,0x4f,0x61,0x8c,0x64,0x51,0xd6,0x8b,0x0,0xa0,0xfa, 0xd3,0xb1,0x4c,0x3,0xde,0x9c,0x1f,0x9e,0x7a,0x50,0x31,0x71,0x51,0x48,0x1b,0x19, 0x3,0x8a,0x98,0x32,0x9e,0x86,0x83,0x83,0xde,0x94,0x95,0xd0,0x19,0xcc,0xb9,0xf6, 0x26,0xa2,0x68,0xfd,0xeb,0x49,0xe3,0xd,0xc1,0x22,0xaa,0xc8,0x9b,0xf,0xc,0x2b, 0x9e,0x74,0xda,0xd4,0xa4,0x54,0xf2,0xb3,0xd1,0xb1,0x4c,0x36,0xe4,0xff,0x0,0xcb, 0x43,0xf8,0x55,0x8c,0x9f,0x51,0x46,0xfc,0x75,0x22,0xb2,0x28,0xaf,0xf6,0x73,0xfd, 0xf3,0x9a,0x72,0xc2,0xc3,0x9f,0x98,0xd4,0xdb,0xc7,0x73,0xfa,0x53,0x44,0x8c,0xbc, 0xab,0x9c,0xfd,0x28,0xd0,0x0,0x42,0xe7,0x90,0x69,0xff,0x0,0x67,0x90,0x8a,0x7a, 0x5e,0x9c,0x7c,0xe0,0x7d,0x40,0xa7,0x8b,0xa8,0xcf,0x39,0x23,0xf0,0xab,0x4a,0x20, 0x55,0x6b,0x49,0xbb,0x28,0x3f,0x4a,0x89,0xa1,0x91,0x7a,0xc6,0xdf,0x95,0x5f,0xfb, 0x5a,0xf6,0xcf,0xe5,0x41,0xba,0x7,0xd6,0x9d,0xa3,0xdc,0x77,0x32,0x9d,0x32,0x30, 0xc0,0x81,0xdc,0x11,0x54,0xde,0xc7,0x7,0x30,0xbe,0xce,0x7a,0xe,0x86,0xb7,0x9a, 0x54,0x6e,0xaa,0xa7,0xeb,0x51,0x9f,0x2f,0x7,0xe5,0x5c,0x1e,0xd4,0x9a,0x3,0x11, 0x96,0x68,0x94,0x92,0xad,0x8e,0xe7,0x39,0x14,0xc2,0xef,0x32,0xe0,0x67,0x18,0xc6, 0x9,0xc8,0x3f,0x9d,0x6c,0x98,0xe1,0xec,0x8a,0x3e,0x95,0x4,0x96,0xb6,0xcf,0x93, 0xd0,0x9a,0x13,0xb0,0xad,0x73,0x98,0x9b,0x47,0x88,0x13,0x25,0xba,0x35,0xb4,0x99, 0xcf,0xee,0xce,0x1,0xff,0x0,0x80,0xf4,0xa8,0x31,0x77,0x6c,0x79,0x88,0x48,0x99, 0xe7,0x61,0xc1,0x1f,0x85,0x74,0xcf,0x6a,0x50,0xe6,0x32,0xa4,0x7a,0x13,0xcd,0x40, 0xf1,0x6,0x1f,0x3a,0xe3,0xdc,0xf5,0x15,0xa2,0xa9,0xdc,0x35,0xec,0x62,0x45,0x79, 0x1b,0xb0,0x5c,0x94,0x7c,0xe3,0xc,0x31,0x56,0xd5,0x89,0xe6,0xa7,0x92,0xd1,0x5b, 0x28,0xce,0x1c,0x7f,0x74,0xf3,0xfa,0xd5,0x39,0x74,0xd3,0x1f,0xcd,0x6b,0x23,0xc6, 0x47,0x3b,0x9,0xc8,0xa2,0xe9,0x8b,0xa9,0x61,0xe,0xe3,0xd7,0x81,0x4d,0x90,0xf3, 0x18,0xff,0x0,0x6a,0xa9,0xbd,0xcc,0xd0,0x3e,0x25,0x89,0xc7,0x1f,0x78,0x72,0x3f, 0xfa,0xd4,0xcf,0xb6,0xa4,0xb2,0xc6,0x11,0x81,0xe4,0x92,0x68,0xe4,0x19,0xa6,0x8d, 0x9c,0x8c,0xf7,0xcd,0x3d,0x9c,0x0,0xd8,0xea,0x6a,0x9a,0xc9,0x83,0x92,0x78,0xf5, 0xa9,0x1a,0x5c,0x8e,0x4d,0x2e,0x51,0x5c,0x94,0x48,0x69,0x50,0x92,0x70,0x4f,0x7a, 0x80,0xbe,0x7,0xd2,0x90,0x4d,0x8e,0xfd,0x39,0xa2,0xc5,0x96,0xca,0xed,0x39,0xf5, 0x22,0xa7,0xc8,0xda,0x4e,0x2a,0x87,0x9c,0xce,0xe0,0x3,0xc0,0x26,0xac,0x45,0x2e, 0xe5,0xa4,0xd0,0x85,0x6d,0xcf,0x90,0x7,0x24,0x54,0xe4,0xfc,0xc3,0x39,0xe7,0xa0, 0xa8,0x72,0x33,0xef,0x8a,0x93,0x76,0x48,0x3e,0x95,0x21,0xa1,0xd1,0xf8,0x55,0x83, 0xad,0xd1,0x1f,0xec,0x7f,0xec,0xd5,0xd1,0xd7,0x37,0xe1,0x3f,0xf9,0x7b,0xc7,0x4f, 0x93,0xff,0x0,0x66,0xae,0x92,0xbd,0x3c,0x3f,0xf0,0x91,0xcd,0x3f,0x88,0xe7,0x7c, 0x60,0x37,0x69,0x32,0xaf,0xac,0x12,0xff,0x0,0xe8,0x22,0xaa,0x21,0x7,0xe6,0x7, 0x82,0x1,0xab,0x9e,0x2d,0x5,0xb4,0xe6,0x50,0x32,0x4c,0x32,0x8c,0x7f,0xc0,0x6b, 0x32,0xcf,0x3f,0x62,0xb7,0xce,0x73,0xe5,0xaf,0xe3,0xf2,0x8a,0xe3,0xc4,0x3b,0x55, 0x66,0xd0,0xf8,0x4b,0xc8,0xfb,0x73,0xef,0x4e,0xf3,0x7a,0xf1,0x58,0xf7,0x5a,0xcc, 0x16,0xa4,0xa2,0x7e,0xfa,0x51,0xd5,0x10,0xf4,0xfa,0x9a,0xd4,0xe9,0xd6,0xb2,0xe6, 0x65,0xb,0xb8,0x1,0x83,0xde,0x90,0xe0,0x9e,0x5,0x33,0xab,0x67,0xd2,0x9f,0xbb, 0x18,0xcd,0x17,0x2,0x9,0xff,0x0,0xd7,0xc0,0x7d,0xd8,0x7f,0xe3,0xa7,0xfc,0x29, 0x46,0xe7,0x27,0xb5,0x25,0xcf,0xdf,0x80,0xff,0x0,0xd3,0x4c,0x7e,0x86,0xa6,0x3, 0x3,0xeb,0x53,0xd4,0x77,0x1b,0x8c,0x70,0x28,0xe3,0x38,0xa5,0xe0,0x55,0x3b,0x9b, 0xe4,0x86,0x51,0xc,0x48,0xd3,0xdd,0x3f,0xdd,0x86,0x3e,0xa7,0xdc,0x9e,0xc3,0xde, 0x98,0xcb,0xe,0xe9,0x18,0x2d,0x23,0x4,0x45,0xe4,0x96,0x38,0x3,0xeb,0x59,0x69, 0x2d,0xc6,0xa0,0xbe,0x5d,0xb6,0xe8,0x2d,0x40,0xc1,0x9c,0x8e,0x5c,0x7a,0x28,0x3f, 0xce,0xae,0xc7,0xa7,0xb4,0xec,0xb2,0x5f,0xec,0x95,0xd4,0xe4,0x44,0xbc,0xc6,0x87, 0xb6,0x7,0x72,0x3d,0x6a,0x64,0x63,0xb9,0xb8,0xc7,0xcc,0x68,0xb3,0x2,0x2b,0x6b, 0x58,0xad,0xa3,0xb,0x10,0xc0,0xf5,0x27,0x24,0xfd,0x4d,0x4c,0x4f,0x6,0x97,0x75, 0x21,0x23,0x69,0xc1,0xa4,0x80,0x63,0xe,0x14,0x83,0xd0,0xd4,0x84,0xe0,0x66,0xa1, 0x76,0xc7,0x19,0xa5,0x69,0x3e,0x50,0x71,0x9a,0xa4,0x31,0xcc,0x71,0xcd,0x57,0xb8, 0x21,0x91,0x77,0x7f,0x78,0x1f,0xc8,0xd4,0x85,0xf2,0xb5,0x56,0xe1,0xf1,0x1e,0xef, 0x43,0x45,0x84,0xd9,0x67,0x70,0x15,0x13,0xcd,0x85,0xcf,0xbd,0x46,0xf3,0xa4,0x71, 0x97,0x76,0xda,0xaa,0x32,0x49,0xed,0x54,0x8a,0xff,0x0,0x69,0x8f,0x9c,0x32,0xdb, 0x9f,0xe0,0x27,0x6,0x41,0xef,0xfe,0xcf,0xf3,0xf6,0xee,0x13,0x72,0x3f,0x3e,0x6d, 0x42,0x66,0x8e,0xdc,0x95,0xb7,0x7,0xf,0x71,0xeb,0xfe,0xef,0xf8,0xd6,0x84,0x10, 0x47,0x4,0xa,0x91,0x0,0x10,0x74,0x3,0xf9,0xfd,0x69,0xe3,0x6a,0xae,0xc5,0x1b, 0x42,0x0,0x0,0x4,0x74,0xf4,0xa7,0xa7,0x23,0x18,0xe4,0xf3,0x48,0x44,0xab,0xf2, 0xf3,0x8c,0x90,0x3b,0x93,0x52,0x21,0x38,0x54,0x8,0x19,0xbb,0x1,0xeb,0x55,0xc9, 0xc1,0xa,0xa1,0x8b,0x9e,0x99,0xad,0xb,0x73,0xe5,0x2e,0xe2,0xbf,0x39,0x18,0x24, 0xa,0xa8,0x8e,0xe5,0x8b,0x68,0x19,0x6,0xe7,0x20,0xb9,0xeb,0xc7,0x4a,0xb2,0x14, 0xfa,0xd4,0xb,0x32,0x9e,0xa0,0xf1,0xed,0x53,0x2c,0xaa,0x71,0x8c,0xd6,0xd1,0xb1, 0x2c,0x99,0x47,0xbd,0x3c,0xa,0x62,0xb0,0xc5,0x38,0x37,0xb5,0x68,0xac,0x46,0xa3, 0xf1,0x4a,0x5,0x26,0xe1,0x46,0x6a,0xf4,0x10,0xec,0x51,0x49,0x9a,0x50,0x69,0xab, 0xa,0xc2,0xe3,0x34,0xd7,0x19,0x52,0xb9,0xc6,0x78,0xa5,0x27,0x3,0x34,0xd0,0x4e, 0x79,0xa7,0xa0,0xc7,0x22,0x85,0x50,0xa3,0xa0,0xa7,0x62,0x9a,0xd,0x3b,0x34,0xd5, 0x84,0x2d,0x2d,0x37,0x70,0xf5,0xa4,0xdd,0x4f,0x40,0xb0,0xfa,0x29,0xa0,0xd1,0xb8, 0x7a,0xd3,0xd0,0x56,0x1d,0x48,0x69,0x37,0xf,0x5a,0x42,0xea,0x3a,0x91,0xf9,0xd1, 0x74,0x3b,0x3,0x74,0x35,0x9f,0x75,0x96,0xb9,0x24,0x9f,0xba,0x30,0x2a,0xf1,0x75, 0xc6,0x43,0xa,0xcf,0x2c,0x58,0xb3,0x9c,0xe0,0xb1,0x3f,0x85,0x44,0xc6,0x88,0xc8, 0xcf,0x5c,0x9c,0x52,0x1c,0x9e,0xc0,0x8f,0x43,0x4e,0xdc,0xf,0x4c,0xfe,0x54,0xd2, 0x7d,0x78,0xa8,0x2a,0xe2,0x8c,0x29,0x1c,0x71,0x56,0xec,0xd1,0x4d,0xba,0x9e,0xe4, 0x93,0xfa,0xd5,0x30,0x9,0x3e,0xd5,0x6e,0xd6,0x45,0x4b,0x74,0x4,0xfa,0xff,0x0, 0x3a,0x10,0x32,0xe0,0x14,0xe1,0x51,0x9,0x53,0xfb,0xd4,0xbe,0x72,0x7a,0xd6,0xa9, 0xa2,0x1a,0x25,0xa2,0xa3,0xf3,0x17,0xd6,0x93,0xcd,0x5f,0x51,0x47,0x30,0xac,0x4b, 0x45,0x44,0x65,0x41,0xd5,0xa8,0xf3,0x53,0xfb,0xd4,0x5d,0x5,0x89,0x69,0x8,0x15, 0x1f,0x9a,0x9f,0xde,0xa0,0xca,0xbf,0xde,0x14,0x5d,0xe,0xc2,0x94,0x52,0xf9,0xc7, 0x5e,0xb4,0xe0,0x83,0xd2,0x98,0x5d,0x76,0x92,0x18,0x53,0xd5,0xb7,0x0,0x69,0x68, 0x2,0xe2,0x94,0x51,0x46,0x45,0x56,0x82,0x16,0x8a,0x4c,0x8a,0x5c,0x8f,0x5a,0x2e, 0x80,0x29,0x8,0x6,0x8d,0xc3,0xd4,0x7e,0x74,0x9b,0x97,0xd4,0x7e,0x74,0x68,0x3, 0x4a,0x2f,0x71,0x9a,0x82,0x6b,0x75,0x75,0xc8,0x18,0x61,0xd0,0xd5,0x82,0xca,0x3f, 0x88,0x7e,0x74,0xc6,0x91,0x7,0xf1,0x54,0x49,0x26,0x34,0x50,0x52,0x8,0x38,0x7, 0x3e,0xf4,0xa4,0x73,0x44,0xec,0x82,0x43,0x20,0x38,0x52,0x3e,0x6a,0x8c,0x4f,0x19, 0x1c,0x4a,0x87,0xe8,0x6b,0x22,0x89,0x80,0x1d,0xe9,0x54,0xf9,0x67,0xaf,0xca,0x7f, 0x43,0x50,0x1b,0x84,0x1d,0x5d,0x7f,0x3a,0x4f,0xb4,0xc0,0x41,0x6,0x54,0xe7,0xd5, 0xa9,0x31,0x1a,0x20,0x53,0x82,0xfa,0xd6,0x7c,0x37,0xc9,0x19,0x11,0xb4,0x8a,0x47, 0x45,0x20,0xd5,0xb5,0xb9,0x53,0xd6,0xa9,0x34,0x4,0xdb,0x45,0x2e,0xd1,0x51,0x79, 0xe8,0x7b,0xd2,0x89,0x93,0xd6,0xaa,0xe8,0x44,0x9b,0x14,0xd1,0xb1,0x47,0x6a,0x6f, 0x9a,0xbe,0xb4,0x86,0x61,0x55,0x74,0x1a,0x8f,0xda,0x3d,0x29,0xa5,0x45,0x34,0xcc, 0x3d,0x3f,0x5a,0x43,0x30,0xf6,0xfc,0xea,0x5b,0x43,0x2,0x29,0x46,0xd,0x46,0x67, 0x4f,0xef,0xa,0x4f,0x35,0x7a,0x8a,0x57,0x40,0x4c,0x31,0xe9,0x4e,0xc0,0xf4,0xa8, 0x4,0xeb,0xef,0x4f,0xf3,0x97,0x14,0xd3,0x41,0x62,0x4c,0xf,0x4a,0x42,0x3d,0xa9, 0x9e,0x70,0x3d,0xa8,0xf3,0x7d,0xa9,0xdd,0x0,0xbb,0x47,0xa5,0x34,0xa8,0xf4,0xa4, 0x32,0x52,0x6e,0xcd,0x4b,0xb0,0x8,0xc8,0x8,0xc1,0x15,0x11,0x8f,0x3,0xe5,0xa9, 0x73,0x4d,0x27,0x9a,0xcd,0x8c,0x84,0x1e,0x70,0x7a,0xd2,0xd2,0xb0,0xc,0xe,0x69, 0x80,0x6d,0x1d,0x78,0xa0,0x62,0xed,0xf4,0xcd,0x38,0x36,0x7,0x3f,0x9d,0x42,0x2e, 0xe1,0xce,0x37,0xf3,0xf4,0x34,0x7d,0xaa,0x1f,0xef,0xf,0xc8,0xd2,0x2,0xc8,0x50, 0x46,0x47,0x35,0x1b,0xda,0xef,0xe7,0x15,0x7,0xdb,0x11,0x5b,0x29,0x2e,0xdf,0x6c, 0x1e,0x69,0x8d,0xaa,0x60,0xe3,0x2b,0xf5,0xc1,0xa1,0xb8,0xdb,0x50,0x44,0xdf,0x63, 0x4e,0xf4,0x86,0xd2,0x33,0xd8,0xfe,0x75,0x5c,0xea,0x27,0x3d,0x8f,0xd1,0x49,0xa6, 0x7f,0x69,0x95,0xeb,0x81,0xf5,0x43,0xfe,0x15,0x8b,0x94,0x4b,0xd4,0xb7,0xf6,0x28, 0xfd,0x4d,0x2f,0xd8,0xa2,0xee,0x9,0xfa,0x9a,0xac,0x35,0x3c,0xf6,0x7,0xdc,0x3, 0x4e,0x1a,0x87,0x7d,0x83,0xf1,0xe2,0x8e,0x68,0xb,0x52,0x56,0xb1,0x88,0x8c,0x6d, 0xc7,0xe3,0x4c,0xfb,0x6,0xf,0xca,0xf8,0xfc,0x29,0x45,0xe9,0x6f,0xf9,0x66,0xb4, 0x1b,0xb7,0xc7,0x11,0xf,0xc3,0x9a,0x5e,0xe0,0x6a,0x46,0xd6,0xd2,0x29,0xe7,0x4, 0x51,0xf6,0x73,0x8f,0xbc,0x29,0x4d,0xcc,0x87,0xfe,0x59,0x1,0xf5,0x4,0x53,0x1a, 0x76,0x2b,0xc8,0x3,0xe9,0x52,0xf9,0x56,0xc3,0x1f,0xf6,0x63,0xdc,0xad,0x27,0xd9, 0xfd,0xd4,0xd4,0x22,0x73,0x9e,0x58,0xe2,0x97,0xce,0x53,0xfc,0x55,0x37,0x43,0x26, 0x16,0xe0,0x7f,0x76,0x83,0x6a,0xa7,0xd0,0x7d,0x29,0x82,0x51,0x8c,0xe7,0x8a,0x91, 0x64,0x4,0x71,0x55,0x74,0x17,0x22,0x6b,0x1f,0xf6,0xf2,0x3f,0x2a,0x63,0x58,0x46, 0xdf,0x79,0x47,0xe7,0x56,0x44,0x94,0x17,0x1d,0xf1,0x45,0x93,0xb,0x94,0x1f,0x48, 0x8f,0x69,0xf2,0xe4,0x74,0x3d,0xb2,0x72,0x3f,0x2a,0xa3,0x25,0x94,0xf0,0x8f,0x9d, 0x37,0xa0,0xe8,0xd1,0xf6,0xfc,0x2b,0x77,0x3c,0x64,0x54,0x2e,0x58,0x9e,0xbd,0x28, 0x68,0x12,0xb9,0xcf,0x49,0x6f,0xb,0x82,0x38,0xe,0x4f,0x51,0xd6,0xa8,0x4d,0xa3, 0xdb,0xb4,0x9c,0x86,0xc,0x7b,0x8e,0x2b,0xa9,0x92,0x24,0x71,0x87,0x8c,0x10,0x7d, 0xaa,0xab,0xd9,0xd,0xd9,0x56,0x6c,0xe,0x8a,0x4f,0xf2,0xa4,0xa6,0xd0,0x35,0x63, 0x97,0x36,0x37,0x16,0xca,0x56,0x39,0x43,0x8e,0xc8,0xe3,0x1f,0xad,0x35,0xae,0x1a, 0x5,0xfd,0xfa,0x34,0x67,0xd4,0xf2,0x3f,0x3a,0xe8,0xee,0x61,0x48,0x63,0x2d,0x28, 0xca,0x8e,0x72,0x46,0x71,0x59,0xe2,0xeb,0x4f,0x39,0xc3,0x29,0x7,0xaf,0xca,0x6a, 0xd4,0xef,0xb9,0x1d,0x4a,0x2b,0x71,0x1c,0xc8,0xa,0x30,0x60,0x7d,0x29,0xac,0x48, 0xce,0x3d,0x3a,0x53,0x26,0xb7,0xb1,0x79,0xc,0x91,0x48,0x10,0x9f,0xee,0x64,0x55, 0x76,0x49,0x62,0x5f,0x95,0xc4,0x83,0xd4,0x8e,0x6b,0x45,0x12,0x93,0x48,0xb8,0xb2, 0x15,0x95,0x73,0xdf,0x9c,0x55,0x98,0xe4,0x0,0x80,0xe,0x31,0x58,0xde,0x77,0xef, 0x43,0xb6,0x46,0xdc,0x60,0x55,0xc8,0xa6,0xc,0x32,0xdc,0x12,0x73,0x8f,0x4a,0x25, 0x10,0x6c,0xd3,0x57,0xdc,0x79,0xeb,0x53,0x2b,0x8c,0x73,0xc5,0x50,0x49,0x1,0x6c, 0xe7,0xf5,0xa9,0x4,0xdb,0xbd,0x7f,0x1a,0xcd,0xc4,0xe,0xc3,0xc2,0x4c,0x18,0xde, 0x63,0xfd,0x8f,0xfd,0x9a,0xba,0x6a,0xe5,0x7c,0x18,0x73,0xf6,0xdf,0xfb,0x67,0xff, 0x0,0xb3,0x57,0x55,0x5e,0x8e,0x1f,0xf8,0x68,0xc2,0x7f,0x11,0x81,0xe2,0x89,0x92, 0x1b,0x48,0xf7,0xf5,0x65,0x75,0x0,0x75,0x39,0x0,0x57,0x16,0x93,0x5f,0x5e,0xc1, 0x15,0x9c,0x3,0x6a,0xaa,0xac,0x67,0x67,0x7e,0x83,0x24,0xd7,0x79,0xae,0xe9,0xe9, 0xa8,0x24,0x2a,0xcc,0x54,0xae,0xec,0x11,0xef,0x8f,0xf0,0xaa,0xf6,0xb6,0x30,0xda, 0x5b,0xac,0x51,0x28,0x0,0x11,0x93,0xdc,0x9a,0xe5,0xad,0x1b,0xd4,0x6c,0xda,0x12, 0xb4,0x6c,0x63,0x1f,0xe,0xda,0xd8,0xe9,0xd7,0xe,0x73,0x2c,0xc2,0x26,0xf9,0x9b, 0xb1,0xc1,0xe8,0x2a,0xe2,0x49,0xbe,0x14,0x7c,0x63,0x2a,0x9,0x15,0x25,0xdd,0xc2, 0xad,0xad,0xc4,0x27,0x25,0xdc,0xba,0x8f,0x6c,0x8f,0xe9,0x51,0x5b,0xc6,0x59,0x23, 0xb,0xc8,0xa,0x31,0xfd,0x2b,0x19,0x47,0xb0,0xe2,0xdb,0x1d,0x9c,0x1f,0xd6,0x9d, 0xbb,0x1d,0x2a,0x63,0x6f,0x88,0x9b,0x27,0x2d,0xd7,0xa5,0x57,0x23,0x91,0xf4,0xa4, 0xd5,0x8a,0x21,0xb8,0x6f,0x9a,0x12,0x3a,0xf9,0xa0,0x1f,0xc8,0xd4,0xbe,0x62,0xa2, 0xf2,0xc3,0x2,0xaa,0x5d,0xcf,0x1c,0x21,0x43,0x72,0xe5,0x86,0x14,0x72,0x69,0xf1, 0xd9,0x49,0x71,0xf3,0xde,0xa8,0xd8,0xd8,0x65,0x85,0x4f,0x1f,0x53,0xeb,0xf4,0xfe, 0x75,0x3b,0xb0,0x1,0x24,0xf7,0xdf,0x2d,0x9f,0xc9,0x16,0x79,0xb8,0x61,0xc7,0xfc, 0x4,0x77,0xfa,0xf4,0xfa,0xd5,0xab,0x4b,0x18,0x2c,0xa3,0x71,0x1a,0x92,0xee,0x72, 0xee,0xfc,0xb3,0x9f,0x73,0x56,0x80,0xc0,0x0,0xe,0x31,0x51,0xb9,0x1,0x87,0xbd, 0x57,0x2d,0x85,0x71,0x33,0x82,0x30,0x2a,0x9a,0x9f,0x98,0x8f,0xf6,0x8d,0x59,0x73, 0xcf,0xd0,0xd5,0x41,0xcc,0x8e,0x3d,0x1b,0xad,0x26,0xca,0x43,0x9b,0x22,0x86,0x21, 0x50,0xe3,0xd2,0x95,0x86,0x58,0xfa,0x62,0xa3,0xc1,0x22,0x95,0x80,0xaf,0x2b,0xee, 0x23,0x1d,0xba,0xd2,0x87,0x3b,0x40,0x3d,0x5,0x12,0x21,0xa,0x7d,0x6a,0x36,0xf9, 0x46,0x9,0xc9,0xf4,0xa7,0xb0,0xdb,0x1e,0xd2,0xf5,0xc0,0x2,0xa9,0xde,0x5c,0x22, 0x42,0x7c,0xc3,0xc1,0xec,0x3a,0x93,0x51,0xdd,0xdf,0x47,0x6c,0x2,0x8f,0x9e,0x46, 0xfb,0xa8,0xbd,0x4d,0x55,0x8e,0xc6,0x69,0x5f,0xcf,0xb8,0x95,0x41,0x3c,0xe3,0xae, 0xdf,0x6a,0x2e,0x66,0xc7,0x97,0x69,0xf1,0x24,0xeb,0xb9,0x41,0xca,0xc7,0x9e,0x3f, 0x1f,0x7a,0xb2,0xd7,0xa4,0xe3,0x10,0x90,0x47,0x43,0x90,0x68,0x36,0xc1,0x59,0x46, 0xe6,0xe7,0xd1,0x73,0x48,0xf6,0x6e,0xbc,0x12,0xdd,0x7e,0xf0,0x5e,0x3f,0x5a,0x77, 0x42,0x14,0x6a,0x2e,0xe,0x7c,0xb0,0x4f,0xfb,0xc0,0x7f,0x4a,0x43,0xa9,0x5c,0x3b, 0x2a,0x25,0xb0,0x2c,0x7f,0xbb,0x2f,0x5f,0xc3,0x6d,0x9,0x63,0xbd,0xb6,0xac,0xb2, 0x6f,0x1d,0x88,0x1c,0xfe,0x46,0xb4,0xac,0xb4,0xbf,0xb3,0x82,0xe4,0x86,0x90,0x9c, 0xee,0x23,0x38,0xa1,0xb4,0x50,0x40,0xc5,0x1d,0x49,0x4c,0xca,0xdd,0x49,0x7,0xb, 0xed,0x56,0xda,0x67,0x42,0x47,0xc8,0x7e,0x86,0x95,0x2d,0x9a,0x30,0xdb,0x5f,0x4, 0xf7,0x2b,0x4e,0x5b,0x4c,0x9c,0xf9,0xaf,0x8e,0xe3,0x8a,0x9b,0x5c,0x8,0xd6,0xe2, 0x46,0xc3,0x0,0xa0,0x7f,0x3a,0xb2,0xb7,0xe,0xad,0xc3,0x46,0x7,0x7c,0xd3,0xa1, 0xb1,0xe3,0xb,0xb9,0x45,0x58,0x1a,0x74,0x67,0xab,0xb9,0x3e,0xb9,0xab,0x8d,0x39, 0x6e,0x89,0x6d,0xd,0x59,0xd8,0xf4,0x70,0x7f,0xa,0x7f,0x99,0x20,0xee,0x3f,0x11, 0x4f,0x5d,0x3d,0x1,0xcf,0x99,0x2f,0xd3,0x75,0x48,0x2d,0x23,0x1d,0xb,0xfe,0x26, 0xb5,0x50,0x99,0x17,0x21,0x13,0x49,0x9f,0xbc,0x3f,0x1,0x4a,0x5e,0x43,0xd1,0x8e, 0x7e,0x95,0x3f,0xd9,0x63,0xef,0xbb,0xf3,0xa5,0x16,0xb1,0x8c,0xe3,0x77,0x3e,0xf5, 0x5c,0x92,0xb,0x95,0x84,0x92,0x93,0xcc,0x83,0xf2,0xa7,0xef,0x61,0xd1,0xc9,0x3f, 0x5a,0xb0,0xb6,0xe8,0x80,0x85,0x18,0x14,0xd3,0x6c,0x87,0x3c,0x55,0xa8,0xb0,0xb9, 0x51,0xda,0x49,0x24,0xc6,0xf3,0xb5,0x7a,0x8f,0x5a,0x71,0x66,0xfe,0xf1,0xab,0x29, 0x67,0x1a,0xf4,0xdd,0x9f,0xad,0x3f,0xec,0xd1,0xfa,0x1a,0xae,0x56,0x17,0x28,0x96, 0x3f,0xde,0x34,0x65,0x88,0xe0,0x9f,0xc2,0xaf,0x7d,0x9a,0x3f,0xee,0xd1,0xf6,0x68, 0x8f,0x54,0x7,0x1e,0xa2,0x9f,0x2b,0x15,0xca,0x1,0xd8,0x70,0x43,0x7e,0x74,0xec, 0x9c,0x70,0xcd,0x57,0xd,0xa4,0x1f,0xf3,0xc9,0x3f,0x2a,0x77,0xd9,0xe1,0x1f,0xf2, 0xc9,0x3f,0xef,0x91,0x47,0x2b,0xb,0x94,0xb,0x1f,0xef,0x1a,0x37,0xe3,0xbd,0x68, 0x79,0x11,0x76,0x89,0x3f,0xef,0x91,0x47,0x93,0x1f,0xfc,0xf3,0x4f,0xfb,0xe4,0x53, 0xe5,0x61,0x73,0x3b,0xcc,0xe3,0x86,0xfd,0x69,0xa6,0x43,0xfd,0xff,0x0,0xd4,0x56, 0x9f,0x95,0x18,0x1f,0xea,0xd7,0xf2,0xa4,0x31,0x27,0xfc,0xf3,0x5f,0xc8,0x52,0xe4, 0xb,0x98,0xb7,0x4e,0xeb,0x6c,0xe4,0x4a,0x41,0xc7,0xa8,0xaa,0x5,0xc8,0xe0,0x5c, 0x3e,0x7,0x3,0xe6,0xad,0xeb,0xd0,0x8a,0x88,0xa1,0x13,0x2c,0xdd,0xc0,0xe9,0x55, 0x14,0x44,0x78,0x8,0xa3,0xd7,0xe5,0x15,0x3b,0x31,0x99,0x7e,0x61,0x3c,0x79,0xcc, 0x7f,0xe0,0x54,0x6f,0xa,0x7f,0xd7,0xb8,0x3f,0xf5,0xd0,0x8a,0xd2,0x78,0xd3,0xba, 0xc,0x8f,0x41,0x8a,0x58,0xd4,0x3,0xf7,0x54,0x7f,0x3a,0x6e,0x48,0x76,0x33,0x4c, 0x8b,0x82,0x7c,0xf6,0x24,0xe,0xf2,0x66,0xb4,0xad,0xf3,0xe5,0x28,0xdd,0xd0,0xe, 0x87,0x35,0x23,0x9d,0xaa,0x58,0x5,0xfc,0xab,0x48,0x0,0x47,0xb5,0x1b,0x83,0x29, 0x2b,0x71,0xdf,0xf0,0x14,0xe0,0x73,0xd0,0xd5,0xd0,0x29,0xd8,0xff,0x0,0x38,0xa7, 0xc8,0x4d,0xcc,0xe3,0x9f,0x7a,0x43,0xd3,0xa6,0x7f,0xa,0xd2,0xdb,0x46,0xdf,0xf3, 0x8a,0x3d,0x98,0x5c,0xcb,0x54,0xe4,0xe3,0x3f,0x95,0x3c,0x29,0xf4,0x27,0xf0,0xad, 0x1c,0x52,0xe2,0x8e,0x40,0xb9,0x9c,0x14,0xe7,0xa1,0x1f,0x51,0x4e,0xc1,0xec,0xa4, 0xfe,0x6,0xaf,0xe2,0x8c,0x7d,0x68,0xe4,0xb,0x99,0xec,0xa4,0xe3,0x28,0x7f,0x23, 0x40,0x43,0xdd,0x5b,0xf5,0xab,0xf8,0xff,0x0,0x39,0xa6,0x90,0x7d,0x69,0x72,0x5, 0xca,0x61,0xf,0x65,0x6a,0x5d,0x84,0xf5,0x56,0xfc,0x6a,0xd6,0xd,0x38,0xa,0x12, 0x2,0x98,0x8d,0x8f,0x44,0x34,0xf5,0x8d,0xc7,0x45,0x3f,0x95,0x5b,0xc5,0x18,0xf6, 0xaa,0xe5,0x15,0xca,0xfb,0x58,0xff,0x0,0xcb,0x23,0x47,0x95,0x27,0xf7,0x4f,0xe9, 0x56,0x71,0x40,0x1f,0xe7,0x14,0x72,0x5,0xca,0xc6,0x37,0xff,0x0,0x9e,0x67,0xf4, 0xa4,0x30,0xb1,0xfe,0x1f,0xd4,0x55,0xbc,0x7b,0x7e,0x94,0xdc,0x7f,0x9c,0x51,0xc8, 0x17,0x28,0xb5,0xbb,0x9e,0xc,0x79,0x7,0x83,0xc8,0xac,0xf6,0xb6,0x96,0xde,0x4f, 0x28,0xc7,0xf2,0x9c,0x94,0x39,0x15,0xbd,0xb7,0xfc,0xe2,0xa2,0x9e,0xdc,0x4f,0x16, 0xc3,0x8c,0xe7,0x20,0xe3,0xa1,0xa9,0x74,0xc0,0xc5,0x31,0x4a,0xbc,0x94,0xfd,0x69, 0x2,0x4c,0x79,0x11,0xf1,0xfe,0xf5,0x5b,0xf9,0xb0,0xd9,0x1f,0x3a,0x9c,0x37,0x14, 0x98,0xc1,0xf7,0xac,0x8a,0x45,0x56,0xb7,0x95,0xd7,0xc,0x8b,0x83,0xfd,0xe7,0xfe, 0x55,0x6a,0xdd,0x64,0xb,0xb5,0xc2,0x92,0x38,0x18,0x39,0xcf,0xd6,0x9c,0x1,0xec, 0x69,0x70,0x78,0xda,0xd8,0x34,0xb6,0x2,0x55,0x8a,0x7f,0xf9,0xe4,0xbf,0xf7,0xd5, 0x48,0x22,0x93,0x3f,0x70,0x7e,0x74,0xeb,0x79,0xbc,0xc5,0xda,0xdc,0x30,0xeb,0x56, 0x3b,0xd6,0xca,0x37,0x42,0x64,0x1e,0x54,0x9f,0xdd,0x1f,0x9d,0x21,0x8a,0x4f,0xee, 0x8f,0xce,0xad,0x52,0xe2,0xab,0x90,0x57,0x2a,0x79,0x32,0xff,0x0,0x74,0x7e,0x74, 0x9e,0x4c,0xb8,0xfb,0xa3,0xf3,0xab,0x78,0xa2,0x8f,0x66,0x17,0x29,0x9b,0x66,0x23, 0x3b,0x57,0x3e,0x94,0x9e,0x44,0xb8,0xfb,0xaa,0x3f,0x1a,0xbb,0x8f,0x6a,0x30,0x28, 0xf6,0x61,0x72,0x97,0x93,0x27,0xf7,0x7f,0x2a,0x68,0x4,0x36,0x19,0x48,0xfa,0xd5, 0xe2,0x29,0xac,0x81,0x86,0xf,0x4a,0x97,0x4c,0x77,0x2b,0xe0,0x8e,0x8b,0x4b,0xb5, 0x8f,0xf0,0xd4,0xea,0x85,0x46,0x33,0x91,0x4f,0x2,0x9a,0x80,0xae,0x54,0x28,0xdf, 0xdd,0xa3,0x6b,0x1,0xf7,0x4d,0x5c,0xc5,0x14,0x7b,0x30,0xb9,0x48,0x6,0xcf,0xdd, 0x34,0x6d,0x6f,0xee,0xd5,0xcc,0x51,0x8a,0x4e,0x98,0x5c,0xa7,0xb1,0xbb,0x2f,0xe7, 0x49,0xe5,0xc8,0x47,0xdc,0xfd,0x6a,0xee,0x29,0xd,0x2f,0x66,0x1c,0xc6,0x5c,0xd6, 0xa6,0x43,0x90,0xbb,0x5f,0xd4,0x55,0x5f,0x2a,0x61,0x90,0xc9,0x83,0xfe,0xd1,0xc0, 0xad,0xd2,0x3d,0x69,0x8e,0x81,0x86,0x18,0x64,0x1f,0x5a,0x4e,0x9b,0xb,0x98,0x86, 0x29,0xb1,0xf7,0x63,0xfc,0x5c,0xff,0x0,0x85,0x31,0xed,0xee,0xa,0x9f,0x92,0x32, 0x3b,0xfc,0xe4,0xff,0x0,0xec,0xb5,0xa6,0xf6,0xef,0x19,0x26,0x2f,0x98,0x7f,0x74, 0xf5,0xa8,0xc3,0xe4,0x6d,0x3,0xe7,0xee,0xf,0x5a,0xcd,0xae,0x8c,0xa5,0x63,0x21, 0xe0,0x9c,0x60,0x84,0x88,0x7a,0xd,0xc7,0xff,0x0,0x89,0xa6,0xbc,0x3e,0x60,0x50, 0xf1,0x46,0xc4,0xf6,0x61,0x9f,0xe9,0x5a,0x73,0xc0,0x8e,0xc1,0xf0,0x43,0xe,0xeb, 0xd2,0xa9,0xcf,0x1a,0xb2,0xed,0x64,0xcf,0x39,0x19,0xe3,0xf9,0x56,0x12,0x8b,0xb9, 0xa2,0x63,0x22,0xd3,0x8a,0x12,0x63,0xb7,0x8e,0x33,0xd3,0x8c,0x8c,0xfe,0x95,0x30, 0xd3,0xee,0xc9,0xe4,0x41,0xf8,0xc8,0x7f,0xc2,0xa3,0x86,0xf6,0xee,0x17,0xa,0x17, 0xcf,0x8f,0xa1,0x4,0xfc,0xc3,0xf1,0xef,0x5a,0xd0,0x5c,0xc7,0x3f,0x8,0xd8,0x61, 0xd4,0x37,0x5a,0x71,0x51,0x7b,0x83,0x65,0x25,0xb0,0xb8,0xe9,0x98,0x7f,0xef,0xa2, 0x7f,0xa5,0x29,0xd3,0xa6,0xf5,0x84,0xfe,0x27,0xfc,0x2b,0x57,0x3e,0xe7,0xf3,0xa5, 0xfc,0x4d,0x69,0xec,0x91,0x37,0x32,0x85,0x84,0xc3,0xfe,0x79,0x7e,0x4,0xff,0x0, 0x85,0x29,0xb0,0x94,0x8e,0x91,0x9f,0xc4,0xff,0x0,0x85,0x6a,0xe3,0xde,0x8c,0x53, 0xf6,0x28,0x5c,0xc6,0x50,0xd3,0x5f,0x6f,0xc,0x80,0xfb,0x66,0x98,0x74,0xc9,0xcf, 0x57,0x88,0xfe,0x27,0xfc,0x2b,0x67,0x19,0xa3,0x14,0xfd,0x8a,0xe,0x66,0x63,0x2e, 0x9d,0x70,0xbf,0xc5,0x11,0x1f,0x53,0xfe,0x14,0xf5,0xb1,0x9f,0xb9,0x8b,0xf0,0x27, 0xfc,0x2b,0x58,0xf,0x73,0x4b,0x8a,0x3d,0x8a,0xe,0x63,0x2f,0xec,0x73,0xf,0xf9, 0xe7,0xff,0x0,0x7d,0x1f,0xf0,0xa3,0xec,0x72,0x9e,0xbe,0x5f,0xe6,0x7f,0xc2,0xb4, 0xf6,0xd1,0xb6,0x8f,0x64,0x83,0x98,0xcb,0xfb,0x1c,0xab,0xd3,0xcb,0xfc,0x9,0xff, 0x0,0xa,0xd,0x9c,0x87,0xa8,0x43,0xff,0x0,0x2,0x3f,0xe1,0x5a,0x98,0xa3,0x19, 0xa4,0xe9,0x7,0x33,0x32,0xbe,0xc4,0xf8,0xc1,0x58,0xff,0x0,0xef,0xa3,0xfe,0x14, 0xcf,0xb0,0xc8,0x3a,0x14,0xc7,0xd4,0xff,0x0,0x85,0x6b,0x15,0xa4,0xdb,0x4b,0xd9, 0x7,0x31,0x8c,0x6c,0xa5,0xce,0x71,0x1e,0x7e,0xa7,0xfc,0x2b,0x3e,0xef,0xc3,0xc9, 0x72,0xdb,0xf6,0xa4,0x72,0x7f,0x7d,0x1c,0x8f,0xe9,0x5d,0x41,0x4c,0xd3,0x1a,0x2c, 0x8c,0x64,0xd2,0xf6,0x76,0x1d,0xce,0x1a,0x4f,0xf,0x6a,0x2a,0x49,0x2,0xda,0x5c, 0x74,0x21,0xc8,0x27,0xf0,0x2b,0x8f,0xd6,0xaa,0x49,0xa6,0xdc,0x44,0x71,0x27,0xd9, 0xa3,0x6f,0x47,0x24,0x7e,0xb8,0xc5,0x77,0xcd,0x11,0x3,0x1c,0x9f,0x72,0x49,0xa8, 0x65,0x80,0x4a,0xa5,0x64,0x50,0xca,0x7a,0x82,0x29,0x6a,0x82,0xc8,0xe0,0x65,0xd1, 0xe6,0x6c,0x12,0xb0,0x0,0x7a,0xb2,0xb1,0xff,0x0,0xa,0xa6,0xfa,0x35,0xcc,0x72, 0x1f,0x2e,0x48,0xc0,0xfa,0xb7,0x3f,0xa5,0x76,0xf2,0xe8,0x91,0x80,0xc6,0x7,0x31, 0x67,0xf8,0x48,0xdc,0x9f,0x91,0xe7,0xf5,0xaa,0x52,0x5a,0xb4,0x23,0xf7,0xb0,0x28, 0xc7,0x75,0x19,0x53,0xfe,0x15,0x2e,0xa3,0x45,0x58,0xe5,0x26,0x17,0xd6,0x71,0x82, 0xd6,0xeb,0x3a,0x8e,0xac,0x8c,0x72,0x7,0xd3,0x14,0x90,0xdf,0xa4,0xa0,0x70,0x50, 0xf4,0xc1,0xeb,0x5d,0x23,0x40,0x8e,0x3e,0x50,0x33,0xdb,0x15,0x4a,0xe3,0x4e,0x82, 0x63,0xe6,0x32,0xfc,0xc3,0xb8,0xa6,0xaa,0x27,0xb8,0x68,0x74,0x7e,0x3,0x7d,0xeb, 0x7c,0x73,0xff,0x0,0x3c,0xff,0x0,0xf6,0x6a,0xec,0x6b,0x91,0xf0,0x3d,0xb7,0xd9, 0x85,0xf0,0xdc,0x48,0x3e,0x5f,0x1f,0xf7,0xd5,0x75,0xd5,0xe8,0x50,0xfe,0x1a,0x30, 0x9f,0xc4,0x52,0xd4,0x64,0x8e,0x28,0xd6,0x49,0x18,0x2a,0x2e,0x49,0x27,0xf0,0xae, 0x7c,0xea,0x12,0x5c,0xc2,0xde,0x4b,0x0,0x8e,0x48,0xc,0x47,0x38,0xf6,0xad,0xf, 0x11,0xc2,0x26,0x30,0x2b,0x93,0xb0,0xa4,0x80,0xaf,0x62,0x7e,0x5c,0x1f,0xd2,0xb3, 0x21,0xc6,0xc0,0x0,0x0,0x1,0x80,0x3d,0x5,0x71,0xe2,0x24,0xd4,0xda,0x46,0xb0, 0x8d,0xe2,0x3d,0x87,0xfa,0x2c,0xa8,0xbd,0xe3,0x60,0x4f,0x7e,0x86,0xae,0xda,0x2e, 0xdb,0x68,0xce,0x3a,0xa8,0x27,0xfc,0xfe,0x55,0x55,0x78,0xcf,0x1c,0x63,0x9c,0x52, 0xcd,0x77,0x1d,0xb5,0xaa,0x6f,0x70,0x6,0x0,0x50,0x39,0x2d,0xec,0x5,0x67,0x17, 0x62,0xcb,0x52,0xca,0x2,0x91,0x91,0x9e,0xfe,0xd5,0x81,0x3e,0xa3,0x2d,0xd4,0x86, 0xdf,0x4d,0x50,0xed,0x8f,0x9a,0xe1,0x87,0xee,0xe3,0xff,0x0,0x13,0x56,0x1e,0x9, 0xaf,0x81,0x17,0x19,0x86,0xdc,0xff,0x0,0xcb,0x10,0x70,0xcd,0xfe,0xf1,0x1f,0xc8, 0x7e,0x75,0x69,0x51,0x23,0x40,0x91,0xa8,0x45,0x1d,0x2,0x8c,0x1,0xec,0x2a,0x65, 0x2b,0x82,0x28,0x5a,0x69,0xb1,0xd9,0x2a,0xb3,0x3b,0xcd,0x3b,0x3a,0x97,0x96,0x43, 0x96,0x27,0x77,0xe8,0x2b,0x6c,0xae,0x7b,0xe,0x2a,0x84,0x84,0xed,0xce,0x7f,0x88, 0x1f,0xd6,0xaf,0xa3,0x2,0xac,0xde,0x94,0x40,0x6c,0x24,0x38,0x1d,0x87,0xe3,0x55, 0xe5,0x60,0x5b,0x23,0xb5,0x2b,0x3e,0x4f,0xad,0x30,0xf3,0x9f,0x7a,0x1c,0x84,0x84, 0x27,0xe6,0x22,0xab,0x8e,0x24,0x7f,0xf6,0x8e,0x6a,0x76,0x38,0x90,0xd4,0x18,0xfd, 0xe3,0x71,0xd0,0xf0,0x6a,0x46,0x48,0xc0,0x8a,0x8b,0x76,0x7,0x4a,0x91,0xdb,0x8e, 0x6a,0x9c,0xd2,0x80,0x6,0x3a,0x93,0x4c,0x10,0xb2,0xcb,0xb4,0x67,0x19,0xf6,0xac, 0xcb,0xab,0xd7,0x66,0xf2,0xad,0xd4,0x49,0x31,0xc6,0x7d,0x17,0xeb,0x50,0xcf,0x77, 0x2d,0xe3,0x98,0x2d,0x38,0x50,0x70,0xf3,0x1e,0x83,0xd8,0x7b,0xd5,0x8b,0x5b,0x74, 0x85,0x3c,0xb8,0x22,0xde,0x3f,0x8a,0x42,0xd8,0xc9,0xfe,0xb4,0x9a,0xb8,0xd9,0x15, 0xb5,0x92,0xc4,0xe6,0x49,0x8b,0xc9,0x31,0x3c,0xbf,0xbf,0xf8,0x55,0xe2,0xa,0x2f, 0x7,0xf0,0x51,0x9a,0x72,0xaa,0x86,0xc8,0xc1,0xfa,0x74,0xa9,0x38,0x11,0x9d,0xce, 0x7,0x3c,0xd,0xb9,0xa0,0x92,0x16,0x9e,0x23,0xb4,0x32,0x9f,0x33,0xb0,0x3f,0x78, 0x52,0x79,0x52,0xbd,0xc8,0x48,0xe4,0x77,0x66,0x19,0x20,0xa3,0x20,0x1f,0x5c,0x9c, 0x1a,0x7a,0x8b,0x8f,0x34,0x8,0xca,0x6f,0x3d,0x94,0xe3,0x23,0xde,0xb5,0x62,0x8f, 0x6f,0x7c,0x93,0xd4,0x81,0xfa,0x7d,0x2a,0x43,0x41,0x96,0xd6,0x8b,0x2,0xf0,0xc5, 0x9d,0xbe,0xf3,0xfa,0xff,0x0,0xf5,0xaa,0xe2,0xa7,0x1d,0xbf,0xa,0x44,0x19,0xeb, 0xc5,0x4c,0x8b,0x93,0x80,0x2a,0xe2,0xae,0x26,0xc5,0x48,0x37,0x91,0xce,0x2a,0xc2, 0x5b,0xaa,0xfb,0xd3,0xa3,0x4c,0x75,0x15,0x30,0x18,0x15,0xd3,0x8,0x2b,0x10,0xd8, 0x81,0x69,0xc1,0x69,0xc0,0x53,0xab,0x64,0x88,0x6c,0x6e,0x28,0x2,0x9d,0x40,0xa7, 0x61,0x8,0x5,0x2e,0x29,0x68,0xaa,0x1,0x31,0x8a,0x40,0x29,0xd4,0xa2,0x98,0x9, 0x46,0x29,0xd4,0x53,0x1,0x31,0x46,0x29,0x68,0xa6,0x21,0x31,0x46,0x29,0x68,0xa0, 0x4,0xc5,0x18,0xa5,0xa3,0x14,0xc,0x6e,0x29,0xa4,0x53,0xe9,0xa6,0x93,0x4,0x66, 0xde,0x61,0xae,0x31,0x9f,0xba,0x83,0x1e,0xc4,0x9f,0xfe,0xb7,0xeb,0x51,0x70,0x49, 0x3b,0x46,0x69,0xa6,0x40,0xef,0x2b,0x93,0xf7,0x9c,0xed,0xf7,0x1d,0xa9,0x37,0x85, 0xea,0x6b,0x6,0xcb,0x10,0x90,0x32,0x6,0xe6,0x3,0xd0,0x74,0xa5,0x40,0x3a,0xe1, 0x81,0xa7,0x3,0xb0,0x64,0xe3,0x9a,0x37,0x63,0xe6,0x24,0xfb,0x52,0x1,0xe5,0x72, 0x14,0x13,0xc1,0x65,0x1f,0xad,0x68,0x81,0x8a,0xcd,0xdc,0x4c,0x91,0x6,0xc6,0x4b, 0x8e,0x7,0x6e,0x6b,0x49,0x79,0x0,0xd5,0xc0,0x18,0xf0,0x29,0xd4,0x83,0xa5,0x2d, 0x59,0x1,0x45,0x14,0x53,0x0,0xa2,0x8a,0x4c,0xd0,0x2,0xd1,0x49,0x9a,0x5c,0xd2, 0x0,0xa8,0xe4,0x1f,0x2e,0x47,0x63,0x9a,0x79,0x34,0xc3,0xcf,0x7,0xa5,0x26,0x3, 0x87,0x3c,0xfa,0xf3,0x4e,0xc5,0x31,0x3a,0x62,0x9f,0x44,0x40,0x5c,0x51,0x8a,0x33, 0x45,0x50,0x82,0x81,0x45,0x2,0x9a,0x0,0x34,0x52,0xd1,0x45,0x80,0x4a,0x42,0x7, 0x7a,0x75,0x21,0x34,0xc,0xa9,0x73,0x6,0xf3,0xe6,0xa7,0xdf,0x51,0xc8,0xf5,0x15, 0x57,0x0,0x9d,0xc0,0x1c,0x56,0xa1,0xaa,0x37,0x11,0x79,0x4f,0xbd,0x7f,0xd5,0xb7, 0x51,0xe8,0x6b,0x19,0xc7,0xb0,0xd1,0x6,0x4f,0x65,0x3f,0x8f,0x14,0x76,0xce,0x38, 0xef,0xcd,0x29,0xc8,0x6c,0x7a,0xa,0x60,0x24,0x8e,0x4f,0x23,0xda,0xb2,0x28,0x7a, 0x9f,0xe2,0x7,0x4,0x74,0xab,0xd0,0xcc,0x25,0x1e,0x8c,0x3a,0x8a,0xa0,0x30,0x6, 0x7b,0xd2,0xee,0x28,0xc2,0x54,0x38,0x70,0x71,0xf5,0xaa,0x8b,0xb0,0x34,0x69,0x83, 0xd2,0x9d,0x50,0xc5,0x28,0x95,0x72,0x3a,0x8e,0xa3,0xd2,0xa6,0xae,0x84,0xd3,0x21, 0xa0,0x14,0xb4,0xa,0x29,0x88,0x29,0xd,0x2d,0x14,0x0,0x94,0x52,0xe2,0x8c,0x50, 0x2,0x51,0x4b,0x8a,0x4a,0x40,0x14,0x52,0x30,0xc8,0xa6,0xe7,0x1c,0x52,0x1,0xf4, 0x66,0x9b,0x9a,0x3a,0xd2,0xb8,0xc7,0x64,0x52,0x12,0x29,0x28,0xe2,0x8b,0x80,0xb9, 0x6,0x92,0x8a,0x4a,0x2e,0x2,0x10,0x8,0xc5,0x43,0x2c,0x9,0x27,0x2c,0x30,0x47, 0x46,0x5e,0x8,0xa9,0xa9,0xd,0x44,0xb5,0x19,0x49,0xa3,0x78,0x72,0x48,0x2e,0xbe, 0xab,0xd7,0xf2,0xa8,0x5b,0xca,0x91,0x73,0x95,0x65,0xf5,0xeb,0x5a,0x58,0xfc,0x3e, 0x95,0x5a,0x6b,0x54,0x90,0xee,0x4,0xa3,0xff,0x0,0x7d,0x7a,0xd6,0x52,0x89,0x49, 0x99,0x13,0x5a,0x8,0x98,0xb2,0xc,0x83,0xfc,0x1c,0xd3,0x57,0x9e,0x30,0x41,0x51, 0xc1,0x1c,0x11,0xf8,0xd5,0xb9,0xc3,0xc0,0xf,0x9e,0x84,0x8f,0xef,0xae,0x71,0xf9, 0xe,0x95,0x4e,0xcd,0x5a,0x47,0x69,0x41,0xca,0x67,0x18,0x3c,0xe6,0xb9,0x9c,0x75, 0x2c,0x9e,0xd,0x4e,0x68,0x4e,0xd9,0x93,0xce,0x4e,0xce,0xbf,0x7b,0xf1,0x1d,0xeb, 0x52,0xb,0xa8,0x67,0x4d,0xd1,0x38,0x61,0xed,0xda,0xb2,0xe7,0x83,0xf7,0x7f,0x22, 0x81,0x8f,0x41,0x55,0x88,0x64,0x6f,0x31,0x43,0x23,0x8e,0x84,0x55,0xaa,0x8e,0x2e, 0xcc,0x4d,0x23,0xa3,0xe,0x28,0xdc,0x2b,0x16,0x2d,0x55,0xa1,0x65,0x4b,0x91,0xb9, 0x8,0xff,0x0,0x5a,0x7,0x23,0xea,0x2b,0x51,0x25,0x59,0x10,0x3c,0x6c,0xac,0xa7, 0xb8,0xad,0x63,0x51,0x32,0x5c,0x4b,0x19,0xa5,0xcd,0x44,0x18,0xf7,0x14,0xe0,0x6a, 0xf9,0x89,0xb0,0xfc,0xd2,0xe6,0xa3,0xcd,0x28,0x34,0xee,0x16,0x1f,0x91,0x46,0x45, 0x33,0x75,0x19,0xcd,0x1c,0xc1,0x61,0xd9,0x14,0x64,0x53,0x9,0xf7,0xa4,0x34,0xae, 0x16,0x1f,0x91,0x46,0x45,0x47,0x9c,0x52,0x6e,0xa5,0xcc,0x3b,0x12,0x12,0x3d,0x69, 0xe,0x3d,0x69,0x9b,0xcd,0x2f,0xd4,0xa,0x2e,0x16,0x3,0x8f,0x5a,0x61,0xa,0x68, 0xf9,0x8b,0x67,0x23,0x1e,0x98,0xa3,0x26,0xa5,0xb2,0x91,0x1b,0x46,0xd,0x42,0xf1, 0x3,0x9e,0x7f,0x3a,0xb3,0x4d,0x23,0xda,0xa1,0xa4,0x33,0x2e,0x6d,0x3a,0x9,0x83, 0x6f,0x51,0x93,0xdc,0x1c,0x56,0x7b,0xe9,0x52,0xc3,0x96,0x8a,0x62,0xf8,0xe8,0xb2, 0x1f,0xeb,0x5d,0x9,0x50,0x7b,0xa,0x63,0x20,0xf4,0x6,0xb3,0x71,0xec,0x3e,0x62, 0x1f,0xb,0x86,0x57,0xbc,0xc,0xa5,0x4f,0xc9,0xc1,0xff,0x0,0x81,0x57,0x45,0x54, 0x34,0xd5,0xda,0x65,0x38,0xe4,0xe3,0x9f,0xce,0xaf,0xd7,0xa3,0x87,0x56,0xa6,0x8c, 0x67,0xf1,0x18,0xda,0xf7,0xfc,0xbb,0xff,0x0,0xc0,0xbf,0xa5,0x61,0x42,0xc4,0x97, 0x18,0x3c,0x31,0x1c,0x56,0xb7,0x8a,0x27,0x4b,0x78,0xa0,0x67,0x38,0xfb,0xd8,0xfd, 0x2b,0x95,0xb5,0x13,0xdf,0x99,0x33,0x23,0x43,0x6,0x79,0x2a,0x7e,0x63,0xed,0xed, 0x5c,0x38,0x8f,0xe2,0xb3,0xa2,0x97,0xc2,0x6a,0x3d,0xe0,0x66,0x68,0xa0,0xfd,0xe4, 0x8a,0x39,0x23,0xee,0xa9,0xed,0xb8,0xff,0x0,0x4a,0x92,0xd2,0xd8,0x2b,0x9,0xa5, 0x3e,0x64,0xc7,0xab,0x9e,0x83,0xd8,0x7a,0xa,0x48,0x62,0x48,0x10,0x24,0x6a,0x15, 0x0,0xe8,0x7,0x15,0x6a,0x23,0x83,0xec,0xd5,0x8a,0xdc,0x63,0x8a,0xc,0x67,0xad, 0x33,0x7,0x9a,0x56,0x7c,0x1f,0xc6,0x90,0x36,0xe0,0x71,0x54,0xec,0x16,0x19,0x2e, 0x2,0x1c,0xd5,0xb4,0x1b,0x61,0xcd,0x67,0xcc,0xd9,0xb7,0x90,0xe7,0xf8,0x4e,0xd, 0x69,0x2,0x14,0x60,0xf4,0xa7,0x0,0x65,0x56,0xfb,0xd9,0x1d,0x29,0x9,0xe3,0x14, 0xa7,0x1d,0x29,0x8c,0x71,0x53,0x6d,0x44,0x84,0x73,0x9a,0x88,0xb0,0xdc,0x47,0x7e, 0xb4,0x33,0x8c,0x72,0x7a,0x9a,0xa1,0x7b,0x7d,0xd,0xac,0x4f,0x2c,0xd2,0x6d,0x8c, 0x71,0xc7,0x52,0x7d,0x5,0x2e,0xa5,0x58,0xb5,0x71,0x32,0xc6,0x99,0x66,0x55,0x50, 0x32,0x59,0x8e,0x0,0x1e,0xa7,0xd0,0x56,0x14,0xaf,0x36,0xac,0x7f,0x72,0x1e,0x1b, 0x5e,0x9e,0x63,0x82,0xc,0x83,0xd8,0x7a,0x7b,0xfb,0x8a,0x53,0x14,0x9a,0x96,0xc7, 0xbc,0x8b,0x6c,0x19,0xc,0x96,0xc7,0xf8,0xb1,0xd0,0xbf,0xaf,0xfb,0xa7,0x8f,0x5a, 0xd2,0x20,0xe0,0x93,0x90,0x3a,0x75,0xa1,0xb0,0x21,0xb7,0xb6,0x8e,0x8,0xc4,0x60, 0x70,0xbe,0xa0,0x8c,0xa,0xb4,0x91,0x22,0x8d,0xc1,0x71,0xfe,0xd0,0x15,0x8,0x93, 0x68,0x60,0x23,0x70,0xe3,0xab,0x14,0x2d,0xc7,0xea,0x29,0x63,0x91,0x30,0x77,0x90, 0x5b,0xb1,0x2c,0x39,0xfa,0x81,0x42,0x43,0x27,0xa,0x9b,0x3e,0xe8,0x20,0xff,0x0, 0x11,0x61,0xfe,0x34,0xe2,0xce,0x4a,0xac,0x43,0x76,0xee,0x6,0x3b,0x54,0x6a,0xc, 0x81,0x7c,0xb5,0x5e,0x7a,0x8c,0xe3,0xf4,0x6,0xb4,0x21,0x89,0x23,0xe8,0x6,0x7d, 0xa8,0xe5,0x26,0xc4,0x96,0xd6,0x9b,0x46,0x7e,0x5d,0xc7,0xa9,0xef,0x57,0xa3,0xb6, 0xb,0xd5,0xf3,0xf4,0xa8,0x52,0x50,0xb8,0xce,0x4d,0x58,0x4b,0x85,0x35,0xac,0x63, 0x12,0x59,0x2a,0x40,0x83,0xb1,0x3f,0x5a,0x99,0x54,0xe,0x80,0x54,0x68,0xe0,0xd4, 0xa0,0x8a,0xdd,0x24,0x66,0xc7,0x0,0x29,0xd4,0xdc,0xd1,0x9a,0xd1,0x32,0x6c,0x3c, 0x52,0xd3,0x37,0x62,0x90,0xb5,0x3b,0x85,0x89,0x33,0x49,0x9a,0x84,0xc8,0x7b,0x52, 0x6f,0x26,0x97,0x38,0xec,0x4d,0xbc,0xe,0xf4,0x17,0x15,0x1,0x34,0x6,0xa5,0xce, 0x2b,0x16,0x3,0xa,0x50,0x6a,0x10,0xd4,0xbb,0xaa,0x94,0x82,0xc4,0xf9,0xc5,0x19, 0xa8,0x4,0x94,0xbe,0x60,0xaa,0x52,0xb,0x13,0x66,0x8c,0xd4,0x61,0xc5,0x1b,0xe9, 0xf3,0xa1,0x58,0x93,0x34,0x66,0xa2,0xf3,0x4f,0x6a,0x69,0x73,0x9a,0x39,0xc2,0xc4, 0xf9,0xf7,0xa4,0xdc,0x3d,0x6a,0x2,0xe7,0xd6,0x98,0x5b,0xf1,0xa4,0xe6,0x3b,0x16, 0xb,0xf,0x5a,0x86,0x79,0x2,0xc2,0xe4,0x36,0xe,0x38,0xfa,0xd3,0x33,0x50,0x5c, 0x37,0xc9,0xfc,0x23,0x1e,0xa2,0xa3,0x9c,0x6a,0x25,0x22,0x16,0x25,0xc8,0x42,0x7e, 0xb4,0xd,0xce,0xa7,0xe4,0x39,0x7,0x4,0x62,0x9b,0x2c,0xa8,0xd9,0x39,0xe4,0xf1, 0x8f,0xf2,0x69,0x80,0xa3,0xce,0x9,0xfb,0xde,0x81,0xb1,0xfa,0xd2,0xb3,0x28,0xb0, 0x65,0xdb,0x95,0x25,0x47,0xae,0x5b,0x9f,0xca,0x91,0x19,0x47,0xcc,0x1,0x4,0xfb, 0xd4,0x49,0x1e,0xd7,0x6d,0xa5,0x9f,0x3e,0xab,0xc8,0xfc,0x6a,0x5d,0x8c,0x6,0x78, 0x1f,0x5a,0x40,0x49,0x1f,0xcd,0x77,0x0,0xff,0x0,0x68,0x9f,0xfc,0x74,0xd6,0x92, 0x9e,0xfe,0xb5,0x97,0xb,0xe6,0xea,0x2e,0x9c,0x2b,0x1f,0xaf,0x4a,0xd1,0x56,0xcf, 0xf9,0xe9,0x4e,0x2e,0xcc,0x4c,0x9c,0x1a,0x50,0x6a,0x30,0x69,0x41,0xfa,0xd6,0x97, 0x26,0xc4,0x99,0xa3,0xad,0x33,0x3e,0xf4,0x51,0x70,0xb0,0xea,0x4f,0xc6,0x93,0x39, 0xe8,0x73,0x48,0x5d,0x41,0x20,0xb0,0xe3,0xde,0x8b,0xa0,0xb0,0xf1,0x4b,0x9a,0x8b, 0xcd,0x4f,0xef,0xaf,0xfd,0xf4,0x28,0x12,0xa1,0xe8,0xea,0x7f,0x1a,0x2e,0x82,0xc4, 0x86,0x9b,0x4c,0x33,0x46,0x3f,0xe5,0xa2,0xe7,0xfd,0xe1,0x4d,0xf3,0xe2,0xff,0x0, 0x9e,0xa9,0xff,0x0,0x7d,0x52,0xb8,0x58,0x93,0x3b,0x5f,0xeb,0x52,0x3,0x55,0x9a, 0x78,0x4e,0x33,0x34,0x63,0x1f,0xed,0xa,0x51,0x73,0x17,0xfc,0xf5,0x4f,0xfb,0xe8, 0x51,0x74,0x16,0x2c,0x66,0x8f,0xc6,0xab,0x9b,0xa8,0x7,0x59,0x93,0xfe,0xfa,0x14, 0xbf,0x69,0x88,0xfd,0xd9,0x14,0xfd,0xe,0x69,0xdc,0x56,0x27,0xfc,0x68,0xcd,0x41, 0xf6,0x98,0xff,0x0,0xbd,0xfa,0x1a,0x5,0xc4,0x64,0x64,0x31,0xfc,0x8d,0x3e,0x61, 0xd8,0xb1,0x9a,0x33,0x55,0x8d,0xcc,0x40,0xe3,0x77,0xe8,0x68,0xfb,0x4c,0x7e,0xac, 0x7e,0x8a,0x4d,0x2e,0x60,0xb1,0x67,0x34,0x66,0xaa,0x8b,0xc8,0xb2,0x7e,0x66,0xfc, 0x54,0x8a,0x4f,0xb6,0x46,0x7a,0x6e,0xfc,0xa8,0xe7,0xb,0x16,0xb3,0x4d,0x60,0x8, 0x20,0xf4,0x3c,0x54,0x3f,0x6a,0x4c,0x67,0xd,0xf9,0x54,0x6d,0x7a,0x80,0x7f,0xab, 0x94,0xfb,0x0,0x3f,0xc6,0x93,0x92,0xb,0x10,0xca,0x8d,0x19,0x2a,0x32,0x7d,0xf, 0xa8,0xa8,0x4b,0x6f,0x19,0xe0,0x7b,0x1a,0x9a,0x7b,0x95,0x91,0x36,0xf9,0x52,0x6f, 0x27,0xe5,0xe0,0x70,0x7f,0x3a,0xcd,0x7b,0x99,0x4,0xa5,0x0,0x52,0x54,0xfc,0xca, 0x57,0x9c,0xfd,0x73,0x58,0xca,0xdd,0xa,0xe8,0x5d,0x52,0x71,0xd0,0x53,0x86,0x33, 0x55,0x16,0xf9,0x94,0x63,0xc8,0x73,0xff,0x0,0x2,0x18,0xa4,0xfb,0x6b,0xf2,0x7e, 0xce,0x47,0xfc,0xa,0x8b,0x5,0xcb,0xe1,0x9e,0x26,0xf,0x18,0x24,0x8e,0xc3,0xb8, 0xf4,0xab,0xd0,0x4e,0x97,0x11,0x87,0x43,0xc7,0x43,0x9e,0xc7,0xd0,0xd6,0x10,0xbd, 0x90,0x73,0xe5,0x7e,0x1b,0xb3,0x49,0xf6,0xe9,0xa3,0x9b,0xce,0x86,0x3d,0xad,0xfc, 0x4a,0x4e,0x77,0x8f,0x4a,0xb8,0xb6,0x84,0xf5,0x3a,0x30,0x69,0x73,0x59,0xd0,0xea, 0x3e,0x6a,0x2b,0xaa,0x29,0x43,0xc6,0x77,0xf4,0x3e,0x9d,0x2a,0x51,0x7a,0x33,0xca, 0xe3,0xdb,0x77,0x35,0xa7,0xb4,0x42,0xe5,0x2e,0x66,0x8c,0xd5,0x31,0x79,0x91,0xf7, 0x3f,0x5a,0x3e,0xd6,0xc7,0xa4,0x63,0xf1,0x6c,0x7f,0x4a,0x39,0xd0,0x72,0x97,0x33, 0x46,0x45,0x55,0xfb,0x4b,0x5,0xe5,0x6,0x7d,0x37,0x7f,0xf5,0xa8,0xfb,0x4b,0x63, 0x84,0x19,0xf4,0xdd,0xff,0x0,0xd6,0xa3,0x9d,0xa,0xc5,0xac,0xd1,0x9a,0xa8,0x6e, 0x64,0xc7,0xfa,0xb5,0xff,0x0,0xbe,0xbf,0xfa,0xd4,0x82,0xed,0xf3,0xcc,0x63,0xf3, 0xa3,0x9d,0xe,0xc5,0xba,0x69,0x1c,0x55,0x7f,0xb4,0xb1,0x3f,0x74,0x53,0x7e,0xd2, 0xe7,0xf8,0x16,0x93,0x9a,0xb,0x13,0x13,0xe5,0x8c,0x9c,0xed,0xfe,0x54,0xe0,0xc0, 0x80,0x41,0xc8,0x3d,0xc5,0x55,0x37,0x2f,0x8e,0x15,0x7f,0x1a,0x8c,0x4c,0xea,0xd9, 0x52,0x83,0x3f,0xc2,0x38,0x15,0xe,0x48,0x76,0x2f,0xe6,0x8a,0xa3,0xf6,0xa9,0x18, 0xfc,0xaa,0xbf,0x42,0x79,0xa9,0x7c,0xe9,0x3d,0x16,0x92,0x92,0xb,0x16,0x68,0xcd, 0x57,0xf3,0x9f,0xd1,0x69,0xad,0x74,0xca,0x71,0xb5,0x4d,0x3e,0x64,0x2b,0x16,0xa8, 0xaa,0xa2,0xe1,0xc9,0x39,0xa,0x5,0x6,0xe0,0xe7,0x1,0x57,0xf3,0xa3,0x99,0x5, 0x8b,0x54,0xd2,0x2a,0x1,0x3b,0x93,0xca,0x28,0x1e,0xb9,0xa7,0x79,0xd9,0xec,0x29, 0x5d,0x5,0x87,0x1e,0x3a,0x55,0x56,0xb3,0x4e,0x4c,0x2a,0x23,0x73,0xcf,0x1c,0x3, 0x53,0x19,0x1c,0xa6,0xed,0x83,0xf1,0xa8,0xbc,0xf6,0x24,0x81,0xb4,0xe3,0xaf,0x1c, 0x54,0x34,0x8a,0x45,0x66,0xe,0x83,0x12,0xa1,0x5f,0xa9,0xe0,0xfe,0x35,0x9f,0x74, 0x5a,0x33,0x9c,0x61,0x5b,0xf1,0x22,0xb5,0x64,0x91,0x9e,0x32,0x1d,0x22,0x2a,0x7a, 0x86,0xce,0x2b,0x36,0xf6,0xb,0x92,0xa1,0x6d,0xe2,0x8d,0xc0,0xe7,0x6b,0x1e,0x7f, 0xe,0xdf,0x99,0xac,0xa7,0x1b,0xa2,0xd1,0x58,0x39,0xc6,0x8,0x6c,0x76,0x24,0x53, 0xe2,0x91,0xd5,0xc1,0x89,0xd9,0xf,0xaa,0x7f,0x5a,0xaa,0xb7,0xf,0x96,0x43,0x8, 0x47,0x53,0xca,0x39,0x20,0x8f,0xf3,0xed,0x4f,0x33,0x81,0x1b,0x3,0x6e,0x80,0x1f, 0x49,0x9,0xac,0x54,0x25,0xd0,0x1c,0x97,0x53,0x5a,0x2d,0x53,0x67,0x17,0x28,0x54, 0x67,0x1e,0x6a,0xf,0x97,0xf1,0x1d,0x45,0x69,0x24,0x8a,0xe9,0xb9,0x19,0x59,0x4f, 0x42,0xe,0x41,0xae,0x4c,0x4e,0x4e,0x4,0x4b,0xb4,0x8e,0xe5,0xf9,0x34,0xe8,0xef, 0x2e,0x20,0x25,0xa1,0x58,0xd1,0xbb,0x8c,0xf0,0x7f,0xa,0xd9,0x39,0x2d,0x19,0x2d, 0xc7,0xb9,0xd6,0xe6,0x80,0x6b,0x9e,0x8f,0x5d,0x9f,0x70,0x12,0xc5,0x12,0x9f,0x6c, 0xf3,0x57,0x17,0x52,0x95,0x80,0x22,0x38,0xc8,0x3e,0x84,0xd5,0x7b,0x44,0xb7,0x4, 0xaf,0xb1,0xaa,0x4d,0x0,0xd6,0x5f,0xf6,0x84,0xcc,0x48,0x58,0xe2,0x63,0xea,0x1c, 0xe3,0xf9,0x53,0x3f,0xb4,0xe4,0xce,0xd3,0x1c,0x61,0xb3,0x8f,0xbc,0x7f,0xc2,0x97, 0xb4,0x43,0xe5,0x66,0xb9,0x34,0x73,0xed,0xf9,0xd6,0x58,0xd4,0x25,0xdc,0x54,0xc7, 0x1e,0x7f,0xdf,0xc7,0xf4,0xa3,0xed,0xf2,0x13,0xfe,0xa5,0x7f,0xef,0xbf,0xfe,0xb5, 0x1e,0xd2,0x22,0xe5,0x66,0x91,0x3f,0x4f,0xce,0x9a,0x6b,0x3f,0xed,0xf2,0x11,0xc4, 0x28,0x4f,0xa6,0xf3,0xfe,0x14,0x9f,0xda,0x12,0x91,0xc4,0xa,0x4f,0xa6,0xf3,0xfe, 0x15,0x3c,0xf1,0xee,0x3e,0x56,0x68,0x7e,0x34,0x6e,0x23,0xbe,0x6b,0x3f,0xfb,0x45, 0xbb,0xc4,0xa0,0x8e,0xc1,0x8f,0xf5,0x14,0x2e,0xa0,0x5c,0x1c,0xa0,0x7,0xfd,0xef, 0xfe,0xb5,0x3e,0x75,0x6d,0x7,0xca,0x68,0x9,0x1,0xe3,0x34,0xbf,0x8d,0x64,0xbd, 0xd3,0x9f,0x4c,0x77,0xc1,0xe6,0xa2,0x33,0xb9,0x19,0x49,0x3f,0x2,0x6a,0x7d,0xa0, 0xf9,0x4d,0x92,0xc4,0x53,0x4b,0x81,0xd4,0x8a,0xc5,0x6b,0xb9,0x80,0x1b,0x8f,0xe6, 0x33,0xfd,0x68,0x4b,0x86,0x70,0x4b,0x2a,0xff,0x0,0xc0,0x5b,0x9f,0xcb,0x34,0x9d, 0x44,0xa,0x6,0xc1,0x91,0x7,0x57,0x51,0xf8,0xd2,0x79,0xb1,0xff,0x0,0x7d,0x7f, 0x3a,0xc9,0x12,0x2,0xbb,0xb0,0x71,0x49,0xbc,0x1f,0x7a,0x9f,0x68,0x3e,0x53,0xa4, 0xd3,0xd9,0x5b,0xcc,0xda,0xc0,0xf4,0xe9,0xf8,0xd5,0xea,0xc6,0xd0,0x18,0x1f,0xb4, 0x63,0xfd,0x9f,0xeb,0x5b,0x35,0xe9,0xe1,0xdd,0xe9,0xa6,0x61,0x3f,0x88,0xc0,0xf1, 0x2c,0xb,0x37,0xd9,0x59,0x86,0x76,0xef,0xfd,0x71,0x58,0xb0,0x28,0x8e,0x59,0xc0, 0xe8,0x5f,0x38,0x1d,0xb8,0x3,0xfa,0x56,0xff,0x0,0x88,0x46,0x56,0xf,0xf8,0x17, 0xf4,0xae,0x7c,0x64,0x4a,0xe5,0x7a,0x36,0x3f,0x4a,0xe1,0xc4,0x7f,0x15,0xff,0x0, 0x5d,0xd,0xa9,0x3f,0x74,0xb2,0xf,0xbf,0xe7,0x44,0x6f,0x95,0x4,0xf1,0x9a,0x8c, 0x9e,0x79,0x34,0xd5,0xe1,0x94,0x56,0x28,0xb2,0x49,0x1c,0xbb,0x71,0xc0,0xa7,0x2b, 0xe0,0x91,0x9a,0x8e,0x4e,0xa,0xd2,0x23,0xd,0xc6,0x9b,0x18,0x93,0xfc,0xb6,0x72, 0x1,0xd7,0x69,0xc7,0xe4,0x6a,0xf0,0x94,0x33,0x12,0xe,0x46,0x38,0x3f,0x5a,0xcf, 0x9b,0x26,0x36,0xc7,0xa1,0xfe,0x54,0xf8,0x58,0x2d,0xbc,0x44,0x93,0xca,0x8f,0xe4, 0x3f,0xc2,0x9a,0x76,0x16,0xe5,0x97,0x21,0x5b,0x3,0xd6,0xa3,0x96,0x40,0xab,0x9c, 0xf1,0x55,0x67,0x99,0xbc,0xdd,0xfb,0x89,0xac,0xcb,0xfd,0x4e,0x47,0x6f,0xb3,0xda, 0xf3,0x21,0xfe,0x2e,0xa1,0x45,0x4b,0xb,0xf,0xd4,0x35,0x44,0xb6,0x61,0x1e,0xd3, 0x2c,0xee,0x70,0x90,0xaf,0x24,0x9f,0x7f,0x41,0xef,0x55,0xad,0x2c,0x9d,0xe4,0xfb, 0x65,0xfb,0x79,0xd3,0x83,0xf2,0x28,0x1f,0x24,0x7e,0xca,0x3f,0xad,0x36,0xde,0xd0, 0x40,0xcc,0xec,0x4b,0x4a,0xdd,0x64,0x3d,0x4d,0x4e,0x59,0x80,0xfb,0xed,0x9e,0x9d, 0x71,0x4e,0xc2,0xe6,0x34,0x9a,0x32,0xea,0x9c,0x15,0x27,0x9e,0x5,0x21,0x8f,0x2f, 0x83,0xb4,0x81,0xd1,0xb7,0x73,0x59,0x21,0x46,0x72,0x1e,0x4c,0x9f,0xf6,0xcd,0x39, 0x40,0x1c,0x7f,0x3e,0xb4,0x28,0x8b,0x98,0xb8,0xe9,0xbb,0xfd,0x67,0xee,0x97,0x77, 0xdd,0x12,0x3,0x9f,0xd6,0x9d,0x13,0xc,0xe2,0x5,0x19,0x3c,0x31,0x66,0xce,0xd1, 0x59,0xbe,0x47,0xda,0xa4,0xf2,0xd1,0x76,0xc7,0xd1,0xe4,0xb,0xfa,0x2,0x7a,0xd6, 0xa0,0xb,0x69,0x1a,0x85,0x8,0xaa,0xaa,0x14,0x29,0xe1,0x40,0xfe,0xa6,0x86,0x86, 0x8b,0x51,0xc9,0x4,0x2b,0x92,0xc7,0x8e,0xe7,0x26,0xa6,0x17,0xb6,0xc0,0x67,0xce, 0x4f,0xfb,0xe8,0x54,0x2,0x61,0x36,0x11,0x23,0x12,0x2e,0x32,0x58,0x92,0xa0,0x7e, 0x95,0x17,0x97,0x4,0xd2,0x15,0x48,0x50,0xe0,0x1c,0xe5,0x47,0xf3,0xa4,0x59,0xa0, 0x2e,0xa2,0x20,0x11,0xc8,0x3d,0xf2,0x29,0xe9,0x70,0x9,0xe1,0x4f,0xe0,0x33,0x54, 0xd0,0x44,0x83,0x11,0x83,0x80,0x39,0xc0,0xe2,0x86,0x99,0x58,0x95,0x52,0xa3,0xd8, 0x92,0x7f,0xad,0x4,0xbb,0x1a,0x49,0x7e,0xa3,0x80,0xac,0x4f,0xa6,0x2a,0x41,0xaa, 0xc2,0xe,0x18,0xe0,0xfa,0x1a,0xcf,0x50,0xbb,0x39,0x61,0x8f,0x4e,0xc2,0x9b,0x85, 0x47,0xc,0xc,0x45,0x54,0xf4,0x4,0x12,0x7f,0x5a,0xa5,0x39,0x22,0x2c,0x6c,0xd, 0x41,0x31,0xc0,0x3f,0x96,0x6a,0x36,0xd6,0x6d,0xd0,0xe0,0xb7,0x3f,0x43,0xfe,0x15, 0x92,0x19,0x21,0x2a,0x5a,0x32,0x72,0x31,0xb4,0x1e,0x4d,0x38,0x5c,0x40,0x19,0xb7, 0xc6,0x77,0xe,0x8a,0xea,0xab,0xfa,0x9a,0xd1,0x54,0x64,0xd8,0xd4,0x3a,0xa0,0xeb, 0xe5,0xb7,0xe2,0xb8,0xa6,0xae,0xa2,0x64,0x3f,0x2a,0x95,0xfa,0x8a,0xa1,0x96,0x9c, 0x2,0xd2,0x44,0xa3,0xfb,0x8b,0x28,0xfd,0x48,0x6,0x92,0x28,0xa4,0x13,0x6e,0xda, 0x8,0x1d,0xc1,0xc8,0xfc,0xf8,0xa3,0x9a,0x4d,0x85,0x8d,0x41,0x3b,0x37,0x56,0x14, 0xbe,0x71,0x1c,0x96,0x15,0x51,0x89,0x50,0x33,0xf3,0x1f,0xf7,0x80,0xa1,0xae,0x55, 0x63,0x5,0x57,0x2c,0x4e,0x14,0x11,0xd4,0xd6,0x9c,0xa0,0x4c,0x6e,0x5d,0xe5,0x28, 0xa0,0x90,0x6,0x4b,0x63,0x8a,0x9c,0xdc,0x85,0x3,0x77,0x7,0xde,0xa1,0x45,0xd8, 0x31,0x9e,0x4f,0x27,0xeb,0x41,0xc9,0xee,0x4f,0xd3,0x34,0xd2,0xb0,0x8b,0x2,0x66, 0x6c,0x6c,0x5c,0xfe,0x34,0xad,0x33,0xf,0xba,0x37,0x7a,0x80,0x6a,0xb9,0x50,0x71, 0xb8,0x92,0x3d,0x32,0x4d,0x3,0x9e,0x31,0x93,0xdb,0xb5,0x55,0xc0,0x98,0xce,0x4f, 0x55,0x6c,0xfa,0x6d,0xcd,0x30,0xca,0x3a,0x93,0x8f,0xaa,0x91,0x51,0xb4,0x28,0x5b, 0x71,0x46,0xdd,0xeb,0x9c,0xd0,0xaa,0x1,0xfb,0xad,0x9f,0x71,0x4b,0x40,0x24,0x12, 0x10,0x33,0x9a,0x72,0xce,0xc7,0xb8,0xfc,0xaa,0x2c,0x82,0xdc,0xa9,0x3f,0x51,0x4e, 0x2,0x40,0xdc,0x22,0x91,0xfe,0xef,0x4a,0x2e,0x22,0xc7,0x99,0xef,0x51,0xf9,0xef, 0xd7,0x70,0xc7,0x6f,0x7a,0x67,0xef,0x33,0xf7,0x9,0xfa,0x9a,0x66,0xd7,0x3,0xe5, 0x89,0xf3,0x9e,0x99,0x18,0xa2,0xe0,0x4c,0xd2,0xb0,0x1f,0x7b,0xf0,0xa8,0xfc,0xc9, 0xb,0x6e,0x2c,0x55,0x7d,0x31,0x9c,0xd3,0xf6,0x37,0x64,0x1b,0xbb,0xe4,0xd2,0x6c, 0x7e,0xfc,0x7f,0xc0,0xa9,0xdc,0x63,0x56,0x57,0xa,0x4b,0x31,0x3e,0x99,0x18,0xac, 0xeb,0xb9,0xa4,0x96,0xf2,0x48,0xd2,0x47,0x58,0xd0,0xc,0x85,0xe3,0x24,0xf3,0xfe, 0x1f,0x9d,0x68,0x18,0xd8,0x36,0x4e,0x2,0x8e,0x7a,0xe6,0xa8,0xb5,0xa4,0xdb,0xe4, 0x7d,0xe8,0x43,0xb6,0x79,0x1f,0x87,0xf2,0x2,0x9c,0x5a,0xbe,0xa2,0x65,0x47,0x33, 0x38,0xda,0x6e,0x65,0xc7,0xb1,0x3,0xf9,0xa,0x8f,0x63,0xe7,0x26,0xe2,0x63,0xf5, 0x73,0x56,0xcd,0xa4,0xe4,0xe0,0xcb,0x18,0x3e,0x82,0x3c,0xe3,0xf1,0xcd,0x31,0xad, 0x25,0x5f,0xbd,0x3a,0xf,0xa4,0x24,0xff,0x0,0xec,0xd5,0xb7,0x32,0x33,0xe5,0x91, 0x58,0x86,0x1f,0xf2,0xde,0x7f,0xfb,0xfa,0xdf,0xe3,0x4f,0xa,0x4f,0x59,0x26,0xcf, 0xbc,0x8d,0xfe,0x34,0xff,0x0,0xb2,0xb9,0x3f,0x34,0xfb,0x7e,0x90,0xff,0x0,0xf6, 0x55,0x2a,0xd8,0xbb,0x1c,0xb,0x90,0x3b,0xfd,0xde,0xb4,0xf9,0xe2,0x1c,0xb2,0x12, 0xd0,0x16,0xb9,0x90,0x17,0x93,0xa,0x83,0x9f,0x30,0xf1,0x9f,0xc7,0xda,0xaf,0xab, 0xb6,0x2,0x80,0xcc,0x3d,0x4b,0x9a,0xaf,0x69,0x6a,0x45,0xc4,0x81,0xc9,0x61,0x85, 0xe7,0x18,0xcf,0x5a,0xbd,0xe5,0x1c,0xe7,0x79,0xc7,0x61,0xe9,0x58,0xc9,0xa6,0xee, 0x68,0x95,0x96,0xa4,0x5b,0xfe,0x6c,0x60,0x91,0xf5,0x34,0xd0,0xa9,0x93,0xb8,0xf5, 0xf5,0x6c,0xd5,0x8f,0x24,0x1f,0xe2,0x34,0xb,0x7c,0x1f,0xf5,0x8e,0x7d,0xb8,0xff, 0x0,0xa,0x57,0x1a,0x2a,0xba,0xc5,0x83,0xf2,0x1,0x81,0xd5,0x80,0xc5,0x34,0x2a, 0x4,0xc,0x13,0x7,0xbf,0xbd,0x5a,0xfb,0x2a,0xee,0xdc,0x5d,0xcf,0xa0,0xe3,0x8a, 0x7f,0x94,0xb8,0xc3,0xd,0xde,0xed,0xd6,0x93,0x2,0xbe,0x54,0x1,0xe5,0xc6,0x33, 0xea,0x45,0xa,0x55,0x9b,0x69,0x23,0x23,0xa8,0xb,0xd6,0xa5,0x36,0xb1,0x93,0xd0, 0xfe,0x74,0xff,0x0,0x2d,0x40,0x3,0x1c,0x76,0xa9,0x15,0x8a,0xa2,0x38,0xf7,0x71, 0x1e,0x9,0xff,0x0,0x66,0x9c,0xc7,0x69,0xda,0x41,0x19,0xf4,0x15,0x3a,0xc3,0x1a, 0x31,0x65,0x5e,0x4f,0x5e,0x4d,0x21,0xb7,0x8d,0x9f,0x79,0x5c,0x9f,0xa9,0xa2,0xe1, 0x62,0xb9,0x1b,0x79,0x2a,0x58,0x7b,0x1,0x4d,0x21,0xb0,0xc4,0x60,0x64,0x7f,0x9e, 0x95,0x63,0xec,0xf1,0x29,0xdc,0x13,0x9f,0x72,0x69,0x7c,0xb4,0xec,0x7,0xe5,0x42, 0x90,0xec,0x55,0x79,0xd0,0x85,0x54,0xcb,0x10,0x3e,0x63,0x83,0x42,0xc8,0x41,0x18, 0x39,0xf5,0x1c,0x8c,0x55,0x8f,0x2d,0x54,0x70,0x0,0xfa,0xc,0x55,0x7d,0xa1,0x2f, 0xf0,0x71,0x89,0x57,0x20,0xe7,0xb8,0xff,0x0,0xf5,0xfe,0x94,0x9c,0x82,0xc4,0xe0, 0xf7,0x1d,0x3f,0x3a,0x43,0x20,0x5c,0x92,0x9,0xf4,0xc9,0xc5,0x48,0xaa,0x0,0xc0, 0x14,0xef,0x2d,0x48,0xe4,0x67,0xeb,0x45,0xc2,0xc5,0x65,0x98,0x37,0x40,0x49,0xf5, 0x1c,0xff,0x0,0x5a,0x72,0xdc,0xe1,0x39,0xfb,0xde,0x9c,0xd5,0x95,0x89,0x57,0xa2, 0x81,0xf4,0x14,0xe0,0x83,0xd2,0x8b,0x88,0xad,0xbc,0x9f,0x6f,0xc4,0xd1,0xbf,0x4, 0x82,0xd8,0x7,0xa7,0x35,0x6b,0x6f,0xb5,0x38,0x2f,0xe1,0x4c,0xa,0xc1,0x81,0x3, 0x18,0x3f,0x4e,0x69,0x7e,0xef,0xb7,0xd6,0xac,0x6d,0xcf,0x73,0x46,0xda,0x2e,0x4, 0x40,0xe7,0xb7,0x15,0x19,0x18,0x7c,0xaa,0x60,0x8e,0xf5,0x6f,0x1e,0xd4,0x85,0x7, 0xbf,0xe7,0x4c,0xa,0x45,0xc7,0x2c,0xca,0x79,0xea,0x36,0xff,0x0,0x5a,0xad,0x3c, 0x2c,0xc8,0x25,0x8d,0x1b,0x72,0xf6,0xc6,0x32,0x3f,0xad,0x6a,0x79,0x63,0xd3,0xf3, 0x26,0x9a,0x50,0x75,0xc5,0x2d,0x47,0x6b,0x98,0xab,0x96,0x19,0x58,0xe4,0xc7,0xfb, 0xb8,0xa5,0x1,0xf9,0xc4,0x52,0x7e,0xb,0x57,0xdd,0x1a,0x19,0x8,0xe7,0xcb,0x6f, 0xbb,0xc9,0xfb,0xde,0x9f,0x8f,0xf4,0xa7,0xaf,0x1d,0xf8,0xed,0x54,0xa4,0x2e,0x53, 0x3b,0xe,0x39,0x31,0x38,0xfa,0x8a,0x70,0x8e,0x76,0xfb,0x96,0xf2,0x93,0xed,0x81, 0xfc,0xcd,0x5f,0xc9,0xdd,0xca,0x36,0x3f,0xbd,0xda,0x93,0xe5,0x60,0xcc,0x4a,0x93, 0xd8,0x75,0x14,0xf9,0x82,0xd6,0x33,0xa3,0x8e,0xe6,0xde,0x7f,0x31,0x60,0x70,0x9, 0xfd,0xe4,0x67,0x6e,0x8,0xf5,0xeb,0xd6,0xaf,0x89,0xb2,0x6,0x23,0x7c,0x76,0x38, 0xce,0x29,0x4c,0x6d,0xb0,0x6e,0x38,0x3d,0x40,0x0,0x60,0x54,0xc,0xff,0x0,0x66, 0x6f,0x30,0x2,0x79,0xf9,0xd0,0x77,0xfa,0x7b,0xd6,0x72,0x63,0x45,0xb1,0x92,0x3e, 0xe9,0x14,0xf0,0xcc,0x0,0x1b,0x49,0xa4,0x8a,0x44,0x95,0x15,0xd1,0x81,0x56,0xe8, 0x45,0x4e,0xb4,0xd0,0xd8,0xc0,0x1c,0xf0,0x53,0x8f,0xad,0x7,0x70,0xe3,0x61,0xf6, 0xab,0x2,0x9e,0x0,0x3d,0xaa,0xb9,0x49,0x29,0xe1,0xf1,0xc0,0x60,0x68,0xc4,0x87, 0x86,0x5c,0x8a,0xbb,0xb4,0x7a,0xf,0xca,0x94,0x1,0xe9,0x4f,0x91,0x8a,0xe5,0x3f, 0x28,0x9c,0x1,0xfa,0xf3,0x4a,0x61,0x6c,0xf0,0x95,0x70,0xa8,0xf4,0xa0,0xc,0x53, 0x54,0xc2,0xe5,0x3f,0x26,0x5c,0x1f,0x94,0xf,0xc6,0x98,0x6d,0xe5,0x3c,0x4,0x18, 0xfa,0xd5,0xfc,0xa,0x5c,0x50,0xe9,0xa0,0xb9,0x9b,0xf6,0x69,0x87,0x27,0x20,0x8e, 0x87,0xad,0x2a,0xf9,0xa3,0x89,0x17,0x69,0xfe,0x75,0xa0,0x45,0x46,0xc8,0x8,0xc6, 0x29,0x3a,0x76,0xd8,0x2e,0x54,0x3b,0xcf,0xff,0x0,0x5e,0x93,0xe,0x4f,0x38,0xfc, 0x2a,0x62,0xc,0x63,0x27,0x3b,0x7d,0x87,0x4a,0x7a,0x91,0xc7,0xa1,0xef,0x51,0x61, 0x95,0xb9,0x3d,0x88,0xa4,0x3b,0x87,0x41,0x9f,0xad,0x5c,0x18,0xf6,0xa7,0x5,0x5f, 0x41,0x47,0x23,0xb,0x94,0x4a,0x97,0x0,0xb2,0x7d,0x39,0xa9,0x91,0xe,0xd0,0x36, 0xe2,0xac,0xed,0x1e,0x82,0x94,0x1,0x54,0xa0,0x2b,0x95,0xfc,0x9c,0x91,0xd7,0xe8, 0x69,0x8f,0x14,0x9d,0x82,0xfe,0x26,0xad,0xd2,0x62,0xa9,0xc0,0x2e,0x67,0x3c,0x52, 0xc,0xb6,0xc1,0x9f,0x50,0x69,0x8a,0xa7,0xfe,0x5a,0x73,0x8e,0xd8,0xe2,0xb4,0x88, 0xa8,0xd9,0x15,0xba,0x8a,0x87,0x4c,0x69,0x99,0x97,0x36,0xb1,0xdc,0xa9,0xf3,0x14, 0x16,0xfe,0x16,0x1c,0x11,0xf8,0xd6,0x6d,0xc5,0xa4,0xd1,0xa1,0xfb,0xb2,0x20,0x1f, 0x78,0xf1,0x8f,0x63,0x5b,0xed,0x10,0x1d,0xce,0x2a,0x26,0x40,0x78,0x35,0x9c,0x93, 0x43,0xd1,0x9c,0xaf,0x95,0x31,0x24,0xa2,0xa9,0x21,0x77,0x70,0xdf,0xcb,0x8a,0x7a, 0x24,0xac,0xe,0x36,0x10,0x3f,0xbc,0x70,0x6b,0x71,0xec,0x50,0xbe,0xe1,0x80,0x6a, 0xbc,0x76,0x7b,0xe,0x1c,0x2,0x3f,0xd9,0x35,0x93,0x72,0x7,0x14,0x50,0xfb,0x2d, 0xc3,0x26,0x76,0xa6,0xdc,0x67,0xef,0x13,0xfd,0x2a,0x25,0x5b,0xb8,0x64,0xcc,0x2f, 0x18,0x53,0xd4,0x34,0x87,0x6f,0xf2,0xad,0xef,0x22,0x35,0x8f,0x66,0x4e,0xd2,0x3d, 0x71,0x51,0xbd,0x82,0x60,0x98,0xdb,0x0,0x8f,0xbb,0xd4,0x53,0x92,0x76,0x1c,0x52, 0x46,0x67,0xda,0x1f,0x3,0x77,0x96,0xad,0x9e,0xa7,0x24,0x7e,0x62,0xac,0xaf,0x98, 0x46,0x5d,0x23,0x3d,0xfe,0xf1,0xc7,0xf2,0xa6,0x49,0x6c,0xd1,0x49,0x95,0x4e,0x7f, 0x4a,0x5d,0x8f,0x16,0x48,0x38,0xf5,0x55,0x3c,0xa,0xc6,0xcc,0xbb,0x8a,0x56,0x42, 0xe,0x2,0x73,0xdb,0x76,0x45,0x30,0xc0,0xc3,0x95,0xdc,0xf,0xa0,0xc6,0x7,0xe7, 0x52,0x9,0x9c,0x81,0xe6,0x2e,0xc6,0x1d,0x89,0x6,0x9d,0xbf,0x69,0xed,0x93,0xd8, 0x8a,0x76,0x2e,0xc5,0x72,0x92,0x10,0x32,0x14,0x91,0xe8,0x5,0xc,0xb7,0x18,0xc8, 0x8e,0x32,0x7d,0x9f,0x69,0xfd,0x2a,0xc8,0xe6,0x9c,0xe,0x3d,0xaa,0x6e,0x5,0x46, 0xfb,0x4e,0x0,0xf9,0x80,0xf7,0x7c,0xff,0x0,0x3a,0x70,0x79,0xb1,0xfe,0xac,0x7d, 0x46,0x5,0x5a,0xe3,0x14,0xe4,0x19,0xef,0xfa,0xa,0x68,0x45,0x50,0x1b,0x4,0x95, 0xc1,0x3f,0x8d,0x37,0xf,0x9e,0x14,0xff,0x0,0xc0,0x6b,0x48,0x45,0x91,0xc7,0xf2, 0x14,0xd3,0x1b,0xad,0x36,0x98,0xae,0x66,0x90,0xdc,0xfc,0xa4,0x7d,0x4d,0x46,0xcb, 0x20,0x3f,0x20,0x55,0x3e,0xa7,0x3,0xfa,0x56,0x93,0x6e,0x1d,0x6a,0x26,0x61,0xfe, 0x45,0x2b,0x3d,0xc6,0xac,0x67,0x34,0xf2,0xa0,0x3e,0x72,0x2a,0x8f,0xef,0xa8,0x38, 0xa9,0x12,0x42,0xc0,0x15,0x65,0x23,0xd5,0x4e,0x41,0xfc,0x6a,0xc9,0x70,0x7,0x50, 0x3d,0xba,0x55,0x43,0x2,0x6f,0xdf,0x11,0x28,0x7b,0xec,0xe0,0x1f,0xc3,0xa5,0x4b, 0xd,0xe,0x8f,0xc3,0xb9,0xff,0x0,0x49,0xe3,0x1f,0x73,0xfa,0xd6,0xe5,0x60,0xf8, 0x6c,0xb6,0x2e,0x77,0x7f,0xb3,0xcf,0xe7,0x5b,0xd5,0xeb,0x61,0x7f,0x84,0xbf,0xae, 0xa7,0x35,0x4f,0x88,0xc4,0xf1,0x9,0x3,0xec,0xd9,0xee,0x5b,0xfa,0x57,0x3f,0x19, 0x26,0x57,0x5c,0x1e,0x32,0x73,0x5b,0xde,0x23,0xff,0x0,0x97,0x5f,0xab,0x7f,0x4a, 0xc1,0xdd,0x8b,0x82,0x7,0xf1,0x2f,0x22,0xb9,0x2b,0xff,0x0,0x15,0x9b,0x53,0x5e, 0xe9,0x28,0x1,0xba,0x1c,0xf,0x7a,0x14,0x73,0xd4,0x52,0xa9,0xcb,0x74,0xea,0x33, 0x4e,0x1c,0x11,0x58,0xa4,0x68,0x35,0xd0,0x32,0x82,0x4f,0x4a,0x6a,0xae,0xf,0x5a, 0x93,0x23,0x24,0x1e,0x86,0xa2,0xdc,0x41,0xc8,0xed,0x43,0x25,0x8e,0x23,0x3,0x3d, 0x87,0x5a,0xab,0xe6,0xfe,0xed,0x4b,0x36,0x14,0x20,0xc7,0xb7,0x14,0xb7,0x37,0x8b, 0xc,0x25,0xd8,0xc,0xf,0x53,0x81,0x9a,0xe4,0xae,0x13,0x50,0xd7,0xb1,0x10,0x76, 0xb7,0xb0,0x72,0x46,0xe5,0x23,0x74,0xaa,0xe,0xe,0x6,0x7a,0x71,0x48,0x69,0x34, 0x5b,0xb9,0xd6,0xa4,0xd4,0xae,0xfe,0xc9,0xa6,0x3,0x32,0xaf,0xdf,0x99,0x3e,0xe8, 0xfa,0x1f,0x5e,0xb5,0xa3,0x6f,0x65,0x25,0xaa,0x6d,0x48,0xf7,0x31,0xe5,0xd9,0x9b, 0x3,0xfa,0xd3,0xec,0xec,0x23,0xb0,0xb3,0x58,0x2d,0x2d,0x4c,0x76,0xeb,0xdd,0x88, 0x0,0x9f,0x7e,0x72,0x6a,0xfc,0x51,0xb0,0xdb,0xbf,0x18,0x3d,0xa3,0x3,0x3,0xf3, 0x14,0x9b,0x29,0xb2,0x9c,0x90,0xdc,0x16,0x19,0x48,0xb1,0x8e,0x30,0xe7,0xff,0x0, 0x89,0xa8,0x85,0xbd,0xcc,0x80,0x60,0x2a,0xfb,0x72,0x7f,0xa5,0x5d,0xb8,0x45,0xe, 0xe,0xf4,0x54,0x7,0x96,0x75,0xc6,0x3f,0x3e,0xb4,0x91,0x49,0x4,0xb9,0x5b,0x79, 0x72,0x57,0xa9,0x46,0xff,0x0,0xa,0x69,0xb4,0x45,0x8a,0x6,0xd2,0x70,0xc1,0x4c, 0xb1,0x26,0x7a,0x16,0x52,0x72,0x69,0x60,0xb2,0x9a,0xe1,0xb6,0xf9,0x88,0x23,0x1f, 0x7d,0x94,0x75,0xf6,0xad,0x18,0xe1,0x96,0x5c,0x86,0xdd,0x1c,0x39,0xc6,0x18,0xe5, 0x9b,0xfc,0x2a,0xf4,0x70,0x84,0x0,0x63,0x18,0x18,0x3,0xb0,0x14,0xb9,0x9b,0x1a, 0x8a,0x2b,0x45,0x6c,0x91,0x46,0x23,0x50,0x40,0x1d,0x0,0x63,0x8f,0xe7,0x44,0x10, 0xc9,0x18,0x60,0xd2,0x92,0xf,0x45,0x55,0xa,0x5,0x5c,0x58,0x53,0xde,0x9f,0xe5, 0x22,0x8e,0x1,0xfc,0xe8,0xb3,0x19,0x45,0x2d,0x76,0xb8,0x6f,0x3e,0xe1,0xb1,0xd9, 0x9f,0x23,0xf2,0xa9,0x12,0xcd,0x46,0x4f,0x99,0x26,0x32,0x78,0xc8,0x1d,0x7f,0xa, 0xb9,0xe5,0x8c,0xe,0x2a,0x45,0x8c,0x63,0xa5,0x24,0x99,0x37,0x2a,0xc7,0x68,0x81, 0x42,0x82,0xf8,0xf4,0xdc,0x47,0xf2,0xa9,0xfc,0x95,0xda,0x17,0x69,0x38,0xf7,0xa9, 0xd5,0x40,0xed,0x4e,0xc6,0x3b,0x55,0xd9,0x92,0xd9,0x50,0x5b,0x21,0xc8,0x20,0x90, 0x7d,0x4d,0x3e,0x3b,0x28,0xa3,0xe8,0x24,0xcf,0xfd,0x74,0x6f,0xf1,0xab,0x41,0x7b, 0xd3,0xf6,0xd3,0x51,0x15,0xca,0xbf,0x66,0x4c,0xf0,0xa4,0x7a,0xe0,0x91,0x9a,0x51, 0x6e,0x9b,0xa,0x15,0xdc,0xa7,0xb3,0x12,0x7f,0x9d,0x59,0xc5,0x28,0x15,0x4a,0x21, 0x72,0xbf,0x92,0x98,0x3,0xcb,0x5c,0xe,0x83,0x15,0x20,0x8c,0x15,0xdb,0xb4,0x6d, 0xf4,0x22,0xa4,0xdb,0x4e,0xdb,0xdf,0x9c,0x55,0x28,0x88,0x8f,0xca,0x45,0x1f,0x71, 0x40,0xfa,0x54,0x31,0x62,0x57,0xf3,0xf8,0x20,0x7f,0xaa,0xe3,0x18,0x1e,0xbf,0x8d, 0x2d,0xc1,0xf3,0x64,0x16,0xc3,0x4,0x63,0x32,0xe0,0xf4,0xf6,0xfc,0x6a,0x4d,0xad, 0xdb,0x3,0xf0,0xa7,0xb8,0xf,0x18,0x14,0xbc,0x53,0x42,0xbe,0x3a,0x8f,0xca,0x9c, 0x11,0xbb,0x9a,0x77,0x0,0xc5,0x2e,0xd1,0x4e,0xb,0x8a,0x36,0x9e,0xd5,0x48,0x6, 0xed,0xa4,0xb,0xcd,0x38,0xa9,0xa4,0x8,0x7d,0x68,0x1,0xc0,0x74,0xe6,0x9d,0xb6, 0x91,0x50,0x54,0x80,0x1,0xd2,0x9a,0x13,0x1b,0xb4,0x51,0x8a,0x7d,0x25,0x31,0xc, 0xa4,0x27,0xd2,0x9e,0x45,0x37,0x14,0xc,0xaf,0x3e,0xe1,0x1b,0x15,0xe5,0xbb,0xc, 0xd5,0x61,0x87,0x19,0x0,0x93,0x9c,0x72,0x6a,0x5b,0x99,0x8,0xb8,0x8a,0x30,0x46, 0x36,0x97,0x71,0xec,0x3a,0x7f,0x3a,0x62,0x30,0x3,0xa,0x0,0xc6,0xd,0x11,0xdc, 0x6,0x30,0x61,0xc6,0x17,0xf3,0xc5,0x41,0x87,0x13,0xe3,0x7,0xd7,0x25,0xf2,0x2a, 0xd9,0x2b,0x93,0xd8,0x9f,0x5e,0xf5,0xb,0x94,0x5c,0x36,0x54,0x11,0xe8,0x9,0x35, 0x40,0x0,0x7c,0xe7,0x73,0x60,0xf5,0xc0,0x35,0x2a,0x0,0x57,0x3b,0xb0,0xf,0xe7, 0x48,0xc4,0x48,0x99,0x39,0x3e,0x99,0x18,0xa8,0xe3,0x18,0x63,0x9d,0xbc,0x11,0xd0, 0x52,0xe,0xa4,0xf6,0xf2,0x6,0x67,0x50,0x31,0xb0,0xe3,0xeb,0xc6,0x6a,0xc0,0xaa, 0xb6,0x60,0xed,0x91,0x8f,0x53,0x21,0xfd,0x38,0xfe,0x95,0x6c,0xa,0x91,0x8e,0x14, 0x52,0x66,0x90,0x9a,0x2e,0x2,0x93,0x48,0x4d,0x34,0x9a,0x29,0x5c,0x5,0x34,0x62, 0x92,0x9d,0x45,0xc0,0x5,0x14,0x52,0x1e,0x29,0x0,0x8c,0x29,0x99,0x23,0xb5,0x29, 0x3e,0xf4,0x9d,0x69,0x3f,0x21,0x8d,0x2c,0x7d,0x2a,0xbd,0xe1,0x64,0x84,0x4f,0x1a, 0x9d,0xf0,0xb0,0x70,0x7,0x71,0xd1,0xbf,0xf1,0xd2,0xd5,0x64,0x70,0x4d,0x23,0xed, 0x28,0x55,0x86,0x54,0x8e,0x41,0xee,0x29,0x58,0x7,0x81,0xd3,0x91,0x52,0x81,0xef, 0x54,0xec,0xd4,0x8b,0x64,0x56,0xea,0x83,0x6f,0xe5,0x56,0x87,0x15,0x48,0x44,0x94, 0xa0,0x53,0x73,0x40,0x61,0x4c,0x56,0x1e,0x5,0x2e,0x29,0x81,0xbf,0xf,0xa9,0xa7, 0x66,0x9d,0xd0,0xb5,0x1c,0x0,0xa5,0xe2,0x99,0x9a,0x33,0x45,0xc3,0x51,0xe3,0x14, 0x10,0x29,0xb9,0xa5,0xcd,0x55,0xc0,0x5c,0x53,0x48,0xa5,0xcd,0x2d,0x20,0x20,0x96, 0x34,0x91,0xa,0x38,0xca,0xb7,0x5f,0xf1,0xfa,0xd5,0x14,0x76,0x88,0x98,0xa5,0xe5, 0xd7,0xb8,0xfe,0x21,0xeb,0x5a,0x64,0xa,0xab,0x73,0xb,0x3a,0x86,0x8c,0x81,0x22, 0x9c,0x83,0x8e,0xa3,0xb8,0xa4,0xf4,0xd4,0x64,0x45,0xd4,0x60,0xae,0xf,0xb1,0xc8, 0x34,0x65,0x1,0x24,0xa6,0x5b,0x1d,0x31,0x9a,0x8c,0x4b,0xbb,0x70,0x3f,0x29,0x1d, 0x41,0xa8,0xc1,0xd9,0x36,0x54,0xe0,0xb7,0x42,0xf,0x5a,0x14,0xae,0x34,0x58,0x12, 0x92,0x1,0x3b,0x42,0xff,0x0,0x74,0x8e,0x69,0x40,0xde,0x73,0x96,0x7,0xd0,0xd5, 0x72,0xcd,0xbb,0xee,0x6e,0x3,0xa9,0x3c,0x8a,0x7a,0x34,0x32,0x36,0x59,0x95,0x4f, 0xf7,0x57,0x8f,0xe7,0x52,0x16,0x10,0xb8,0xb4,0x97,0x76,0x33,0x13,0x9f,0x98,0x7b, 0xfa,0xfd,0x6a,0xfa,0xb0,0x20,0x10,0x41,0x7,0xa1,0x1d,0x8,0xf6,0xaa,0x6c,0x50, 0xc8,0x55,0x9b,0xe5,0x3d,0x72,0x3f,0xad,0x24,0x64,0x5a,0x10,0xa7,0x3e,0x53,0x1e, 0xa4,0x70,0x87,0xfa,0xa,0x69,0xd8,0xd,0x30,0x69,0xe1,0xaa,0xb2,0xc8,0xa7,0xf8, 0x85,0x3f,0xcc,0x51,0xfc,0x42,0xa9,0x48,0x96,0x8b,0x1,0xa9,0xc2,0xab,0x87,0x1e, 0xb4,0xed,0xf5,0x6a,0x62,0xb1,0x63,0x34,0x66,0xa0,0xf3,0x71,0x49,0xe7,0xa,0x7c, 0xe8,0x56,0x2c,0x51,0x55,0xfc,0xff,0x0,0x6a,0x5f,0x38,0x7a,0xd1,0xed,0x10,0x58, 0x9f,0x34,0xd2,0x6a,0x2f,0x39,0x7e,0xb4,0x86,0x75,0xa1,0xcd,0x5,0x87,0xb5,0x55, 0x91,0x5d,0x1b,0x7c,0x47,0x7,0xba,0x1e,0x87,0xe9,0x52,0x99,0x93,0xb9,0xa8,0x9e, 0x68,0xc8,0xef,0x59,0xc9,0xa6,0x52,0x41,0x1d,0xca,0xb8,0x3d,0x47,0xa8,0x23,0x18, 0xfa,0xd4,0xcb,0x32,0x7a,0x9f,0xc4,0x55,0x9,0x95,0x24,0x3b,0xd5,0xd9,0x1c,0x74, 0x61,0xfd,0x7d,0xa9,0xb1,0x4e,0xdb,0xc4,0x72,0x61,0x58,0xf4,0xc1,0xe0,0xfd,0x3f, 0xc2,0xb3,0x53,0xb6,0x83,0xb1,0xac,0x1d,0x4f,0x43,0x4e,0x4,0x56,0x7a,0xca,0x17, 0xbd,0x4a,0x2e,0x90,0x75,0xcd,0x68,0xaa,0x21,0x38,0x96,0xf3,0x45,0x54,0x37,0x91, 0x8f,0xef,0x7e,0x54,0x9f,0x6d,0x4f,0x46,0xfc,0x6a,0xb9,0xd0,0xb9,0x4b,0x54,0xd3, 0x55,0xbe,0xd8,0x87,0xb1,0xa3,0xed,0x69,0xe8,0xdf,0x95,0x2e,0x74,0x3e,0x52,0x66, 0xc1,0xa8,0x58,0x51,0xf6,0x84,0x3e,0xbf,0x95,0x21,0x99,0xf,0xad,0x4c,0x9a,0x63, 0xb0,0xcf,0x51,0x4d,0x20,0x73,0x91,0x4e,0x2e,0xa7,0xa5,0x21,0x22,0xb2,0x63,0x20, 0x78,0xb3,0xd3,0x9f,0x6c,0xd2,0x46,0xc1,0x48,0x4,0xe0,0x1e,0x36,0x9a,0x9f,0x83, 0x4d,0x65,0x57,0x18,0x61,0x9a,0x2e,0x30,0x38,0x23,0x3,0x9e,0xdd,0x2a,0x9c,0x91, 0x23,0x0,0x50,0x79,0x78,0x38,0x25,0xb8,0xcd,0x49,0xb1,0xe2,0x18,0xcb,0x48,0x9d, 0x79,0xfb,0xc3,0xf1,0xa4,0x77,0x32,0x28,0x68,0x58,0x32,0xe4,0x2,0x3f,0xc6,0x86, 0xee,0x3,0x65,0xb6,0x8e,0x48,0xf6,0xba,0x96,0x5f,0x42,0x71,0x9a,0xa9,0x72,0x45, 0x8c,0x4a,0x57,0x2b,0x93,0x80,0xa4,0xe6,0xaf,0xb3,0xb0,0x38,0x28,0x4a,0xfa,0xf7, 0xaa,0x37,0x88,0x5c,0x28,0xa,0x48,0xce,0x77,0x6d,0x35,0x2d,0x2b,0xd,0x31,0xb0, 0xdd,0x24,0x8b,0xf3,0x0,0x8d,0xee,0x7a,0xd4,0xdb,0xb9,0xe3,0x35,0x41,0x43,0x22, 0x10,0xc7,0x71,0x1e,0xab,0x8f,0xf0,0xa7,0xc7,0x34,0x81,0xf0,0xb,0xe3,0x1d,0xeb, 0x6,0x9a,0x2e,0xe5,0xdd,0xdd,0xaa,0x44,0xe6,0xab,0x24,0xe1,0x8e,0x19,0x80,0x6f, 0x43,0x56,0x4,0x85,0x7b,0x62,0x9a,0xb8,0x12,0xac,0xcd,0x19,0xe0,0xf1,0xe9,0x8a, 0xb5,0x1c,0xc1,0xfd,0x8d,0x51,0x91,0xf6,0xf6,0xa4,0x59,0xf6,0xfd,0x6b,0x45,0x2b, 0x31,0x34,0x6a,0xf,0x6a,0x69,0x7,0xda,0xab,0xa5,0xda,0x80,0x32,0x6a,0x43,0x72, 0xbb,0x73,0xc5,0x68,0xe4,0x9a,0x22,0xcc,0x19,0x78,0xe4,0x3,0xf8,0x55,0x77,0x8c, 0x11,0xc7,0x1f,0x85,0x2b,0x5e,0x7a,0x27,0xeb,0x50,0x35,0xf3,0x1f,0xe0,0xfd,0x6b, 0x29,0x38,0x94,0x91,0xab,0xa2,0x64,0x79,0xe0,0xf5,0x1b,0x7f,0xad,0x6b,0xd6,0x3e, 0x85,0x33,0x4a,0x27,0xdd,0x8e,0x36,0xff,0x0,0x5a,0xd8,0xaf,0x4b,0xd,0x6f,0x64, 0xac,0x61,0x53,0xe2,0x30,0xbc,0x47,0xff,0x0,0x2e,0xdf,0x47,0xc7,0xd7,0x8a,0xe7, 0x94,0x16,0xba,0x57,0xfe,0xf0,0x6f,0xe9,0x5d,0x7,0x89,0x47,0xcb,0x6d,0xff,0x0, 0x2,0xc7,0xe9,0x58,0x3b,0xf6,0xba,0x80,0x38,0xe8,0x3d,0xab,0x8b,0x11,0xfc,0x56, 0x6f,0x4f,0xe1,0x44,0xa0,0x90,0xc4,0x63,0xa0,0xc6,0x69,0x59,0xb6,0x8c,0x1,0x4c, 0xdd,0xc9,0x3c,0xf5,0xa6,0xb4,0x98,0x77,0x19,0xc9,0x7,0x0,0xe,0xf5,0x95,0xcb, 0x1c,0xd2,0x15,0x20,0xc,0x7b,0xd5,0x1b,0x9b,0xa8,0xe2,0x46,0x2e,0xd8,0x1c,0x9c, 0x8a,0x8a,0xff,0x0,0x51,0x8a,0xda,0x6,0x76,0x38,0xce,0x40,0xc9,0xfb,0xde,0xc0, 0x7a,0xd6,0x6c,0x56,0xf2,0x5d,0xdc,0x9,0x2e,0x77,0x15,0xc0,0xdb,0x7,0x6e,0x47, 0x7f,0xf0,0xa3,0xd4,0x12,0x20,0x21,0xf5,0xb9,0x4,0xb7,0x45,0xa0,0xd3,0x90,0xe1, 0x54,0x12,0x1a,0x56,0xf4,0x1e,0xde,0xfe,0xf5,0xb2,0xb1,0xac,0x4a,0xb1,0xac,0x68, 0xb1,0x8e,0x7c,0xbe,0x81,0x47,0xd0,0x75,0xfc,0x45,0x28,0x3b,0x5d,0x46,0xd1,0xb8, 0xd,0xa1,0x55,0x73,0xb4,0x54,0xac,0x4,0x6e,0x24,0x79,0x19,0x40,0xee,0x7,0x39, 0xfc,0xa9,0x37,0xd0,0x2e,0xf6,0x1d,0xb,0x3,0x32,0xb2,0xe4,0x8f,0x55,0x8b,0x8c, 0x7e,0x55,0x14,0x4b,0x2c,0xb7,0xcf,0x89,0x27,0xc6,0x79,0x8,0x3a,0xf,0xa9,0xe0, 0x7e,0x55,0x21,0x91,0xc,0x72,0x3b,0xc1,0x21,0xd8,0x37,0x33,0x36,0x46,0x7e,0x86, 0x8b,0x5b,0xa9,0xa3,0x3b,0x44,0x61,0xb8,0xcf,0x94,0xa4,0x28,0x51,0xf9,0x67,0xf5, 0xa5,0xb0,0xc5,0x10,0xb2,0x36,0xff,0x0,0x39,0xd4,0x13,0xc3,0x90,0x84,0xff,0x0, 0xdf,0x58,0xab,0x56,0xf6,0xea,0xad,0xe7,0x1d,0xc7,0x39,0xda,0xce,0xdb,0x89,0x1e, 0xb5,0x14,0x16,0x5f,0x68,0xb9,0xfb,0x64,0xe8,0xa2,0x4f,0xe0,0x40,0x73,0xb7,0xea, 0x7b,0xd6,0x80,0x88,0x2,0x48,0xef,0xeb,0x46,0xac,0x7,0x2f,0x27,0x24,0x7e,0x74, 0xf5,0x5a,0x45,0x15,0x20,0x14,0x24,0x90,0x9b,0x0,0xa3,0xd2,0x9c,0x10,0x1a,0x72, 0x81,0x52,0x0,0x5,0x5d,0xae,0x43,0x63,0x42,0xa,0x78,0x18,0x14,0xe1,0x47,0x3, 0xa9,0x14,0xd2,0x24,0x4c,0x7b,0x51,0xf8,0x51,0xbd,0x7d,0x69,0x77,0xa7,0xad,0x30, 0x1c,0x3a,0x53,0x87,0x34,0xc1,0x22,0xfa,0xd3,0x83,0xe,0xd5,0x48,0x56,0x17,0x14, 0xb4,0x99,0x14,0xb5,0x42,0x0,0x32,0x69,0x97,0x13,0x8,0x63,0xc8,0x19,0x62,0x70, 0xa3,0xd4,0xd3,0x8c,0x81,0x14,0xe7,0xa5,0x56,0x8d,0x8d,0xcb,0x8b,0x90,0x3e,0x5c, 0x7e,0xec,0x11,0xd0,0x7a,0xfe,0x34,0xee,0x3,0xa1,0x8f,0xcb,0x5c,0x12,0x4b,0x31, 0xdc,0xc4,0xf7,0x35,0x30,0x4,0xf6,0xa5,0x50,0x3f,0xb9,0x8a,0x90,0x3,0x49,0x20, 0xb8,0xd0,0xb4,0xe0,0x29,0xc2,0x97,0x15,0x69,0x0,0x94,0x50,0x7e,0x87,0xf0,0xa6, 0xef,0x24,0x90,0x11,0xff,0x0,0x2a,0x18,0x1,0xa6,0x92,0x45,0x2e,0x5b,0xfe,0x79, 0xb7,0xe9,0xfe,0x34,0xbb,0x69,0x5,0xc6,0xef,0x23,0xb5,0x1,0xfd,0xe9,0x19,0x58, 0xe3,0xa,0xf,0xe3,0x4d,0x29,0x27,0xf0,0xa8,0x27,0xd0,0x9c,0x52,0xbb,0xb,0x92, 0x86,0xcf,0x7a,0x7d,0x44,0x89,0x27,0x75,0x3,0xe8,0x73,0x52,0xe3,0x8a,0xb4,0x2b, 0x85,0x21,0xfa,0x50,0x73,0x4c,0x73,0x80,0x49,0x3c,0x1,0x43,0x3,0x36,0x42,0x5a, 0xf6,0xe6,0x4c,0x8c,0x2a,0xac,0x63,0x7,0xa8,0xc6,0x4d,0x6,0x22,0x46,0xed,0xdb, 0x49,0xe4,0xe0,0x67,0xfa,0xd4,0x70,0x46,0x5a,0x31,0x23,0x81,0xba,0x4c,0xb7,0xe6, 0x69,0xeb,0xb4,0x36,0xc5,0x75,0x38,0xea,0x1,0xa6,0x86,0x0,0x3e,0xef,0x9b,0x24, 0x7e,0xb4,0xa3,0xe4,0xe4,0xbe,0x33,0xd3,0x9e,0x68,0x50,0x77,0x1e,0x49,0xcf,0x7a, 0x1c,0xbf,0x96,0x4a,0x1d,0xb9,0xef,0x80,0x4f,0xeb,0x45,0xc0,0x60,0x98,0x4,0x19, 0x90,0x13,0x92,0x39,0x39,0x26,0x9c,0x8c,0xb,0x3,0xd0,0x9e,0x8,0xf4,0xa4,0x11, 0x10,0x1,0x11,0x97,0x93,0xb9,0xe0,0x1f,0xad,0x3a,0x48,0xc8,0x65,0x40,0xdb,0xb2, 0x39,0xe7,0x91,0x43,0xd8,0x43,0xec,0x5c,0xb5,0xa2,0xb3,0xf,0x99,0x99,0x89,0xfc, 0xcd,0x5c,0x1d,0x2a,0x9d,0xb4,0x11,0xfd,0x9d,0x2,0x97,0xdb,0x8c,0x8c,0x31,0x1d, 0x79,0xed,0x56,0x16,0x4,0x1d,0xe4,0xff,0x0,0xbf,0x8d,0xfe,0x35,0x5,0x12,0xf5, 0xa6,0x9f,0xa8,0xa1,0x63,0x55,0xce,0x33,0xf8,0xb1,0x3f,0xce,0x9a,0x22,0x41,0xda, 0x90,0x1,0xc6,0x7a,0xd1,0x46,0xd0,0x3a,0xc,0x53,0x4a,0x83,0xd4,0x3,0xf5,0x14, 0x86,0x2e,0x47,0xad,0x2e,0x69,0xa2,0x34,0x1f,0xc2,0x3f,0x2a,0x70,0x50,0x3a,0xc, 0x51,0x61,0xa,0x1b,0x14,0xd6,0x6a,0x70,0x14,0x84,0x1,0x4e,0xda,0x0,0xcc,0xd3, 0x86,0x29,0x70,0x8,0xa3,0x15,0x29,0x0,0xd2,0x29,0x36,0xe4,0x73,0xd3,0xbd,0x49, 0xb6,0x8d,0xbc,0x75,0xa6,0xd0,0x10,0x80,0x11,0xf6,0x8e,0xe3,0x3f,0x5a,0x98,0x54, 0x72,0x8c,0x32,0x3f,0xf7,0x5b,0x9a,0x98,0x1,0x42,0x0,0xa3,0x18,0xe9,0x4b,0xc0, 0xe9,0x46,0x69,0x81,0x13,0x40,0x8e,0xfb,0x9b,0x71,0x3f,0x5a,0x91,0x40,0x51,0x80, 0x30,0x29,0x69,0x68,0x10,0x73,0x47,0x34,0xb4,0x51,0x60,0x0,0x4d,0x28,0x34,0x94, 0x53,0x1,0xd4,0xb4,0xdc,0xd2,0xe6,0x9d,0xc0,0x53,0x51,0xbe,0x47,0x6a,0x76,0x71, 0x48,0x4f,0xbd,0x17,0x3,0x3e,0x7c,0xc6,0xe6,0x7d,0xbc,0x1,0x86,0xc8,0xcf,0x1e, 0xbf,0x85,0x46,0x3,0x67,0xc,0x57,0x3f,0xdd,0x2,0xb4,0x5c,0x2,0xa6,0xb2,0xa4, 0x8c,0xdb,0xce,0xb1,0x30,0x66,0x89,0xbf,0xd5,0x93,0xdb,0xfd,0x9f,0xf0,0xf6,0xfa, 0x54,0x6c,0x31,0x59,0x1,0x0,0x4,0xe0,0x1e,0x83,0xff,0x0,0xd7,0x4a,0x58,0x96, 0xc1,0xec,0x3a,0x5,0xa6,0x6,0xc2,0xb1,0x1,0x4e,0xe,0x36,0xee,0xc1,0xfc,0x29, 0xab,0xb6,0x40,0x4b,0x0,0x71,0xfc,0x25,0x73,0xfa,0x9a,0xa1,0xdc,0x93,0x73,0x60, 0x2,0x70,0x7d,0xf3,0x4a,0xff,0x0,0x77,0x6b,0x34,0x8c,0x83,0xf8,0x58,0xf0,0x68, 0xa,0x55,0x0,0x3b,0x3f,0xdd,0x7,0xa5,0x1b,0xbc,0xb1,0x92,0xe,0x1b,0x8c,0xe3, 0x38,0xa4,0xc1,0x8e,0x82,0x45,0x8d,0xa3,0x8a,0x46,0xff,0x0,0x58,0x71,0x1f,0xbf, 0xb7,0xd7,0xfc,0x2a,0xe0,0x51,0xe9,0x59,0xd3,0x45,0x1d,0xc2,0xec,0x73,0x36,0x33, 0xc3,0x2f,0x1,0x7d,0xc7,0xbd,0x4f,0x67,0x72,0xee,0xcd,0xc,0xe0,0xf9,0x88,0x37, 0x7,0xc7,0xe,0xbf,0xde,0x1f,0xa7,0x1e,0xa7,0xdf,0x84,0x5,0xd1,0x4e,0xc9,0xf5, 0xa6,0x8a,0x5a,0x4,0x2d,0x14,0x52,0xe2,0x81,0xd,0xc5,0x0,0x53,0x80,0xa5,0xc5, 0x16,0x1,0x98,0x34,0x98,0xa9,0x69,0xa6,0x9d,0x86,0x42,0xfb,0x82,0x92,0xa9,0xb8, 0x8e,0xd4,0xd4,0x71,0x20,0x7,0x63,0x2f,0xb1,0x15,0x29,0x34,0xc2,0xd5,0xd,0x31, 0x83,0x22,0xb6,0x3d,0x7d,0xaa,0x39,0x21,0x49,0x14,0xab,0x2e,0x41,0x1f,0xe7,0x1e, 0xf4,0xed,0xd9,0xc6,0x29,0x73,0x9a,0x5a,0x1,0x48,0x34,0xb6,0xa4,0x2c,0x8c,0x64, 0x83,0x1c,0x49,0x8f,0x99,0x7f,0xde,0xff,0x0,0x1a,0xb0,0x18,0x10,0x8,0x20,0x83, 0xd0,0x83,0x9c,0xd3,0xf1,0xec,0x3d,0x2a,0xab,0x44,0xd6,0xc3,0x36,0xeb,0x98,0xf3, 0x93,0x17,0xff,0x0,0x13,0xef,0xed,0x52,0xee,0x80,0x98,0xfb,0x8a,0x4a,0x8e,0x39, 0xa3,0x95,0xb,0x23,0x64,0x3,0xce,0x7b,0x7b,0x1f,0x7a,0x7e,0xef,0x6a,0x91,0x8a, 0x38,0xa5,0xa4,0x1c,0xd3,0xc5,0x34,0x1,0xcd,0x38,0x29,0x34,0x3,0x8a,0x7a,0xb7, 0xb0,0xaa,0x48,0x43,0x44,0x6c,0x7d,0x69,0xfe,0x5b,0x7a,0x54,0xa0,0x8a,0x5c,0xd5, 0xa8,0x88,0x84,0x21,0xf4,0xa5,0x28,0x7d,0x2a,0x5c,0xd2,0xe6,0x9f,0x28,0x15,0x8a, 0x1f,0x4a,0x82,0x6b,0x38,0xa7,0x39,0x78,0xd7,0x70,0xe8,0x71,0x57,0xb7,0xa,0x33, 0xf4,0xa5,0xca,0x87,0x73,0x2c,0xdb,0xac,0x67,0x71,0x8d,0x41,0x1c,0x2,0x17,0x8a, 0x5,0x94,0x25,0x43,0x6d,0x2b,0x93,0xc9,0xcd,0x69,0x12,0xbe,0x95,0x5d,0xe2,0xc6, 0x4c,0x2c,0x50,0xf5,0xc7,0xf0,0x9a,0x56,0x2,0xbb,0xd9,0xc0,0xe7,0xe6,0x86,0x32, 0xde,0xac,0xb9,0xcf,0xe3,0x4c,0xfb,0x24,0xa,0xf8,0x16,0xe3,0x3d,0xf0,0x83,0x6, 0xa6,0x57,0x72,0x70,0xea,0xa1,0xb3,0xd3,0xb5,0x4d,0xbb,0xa8,0xf4,0xfe,0x54,0xb4, 0xb,0xd8,0xab,0xf6,0x1b,0x4d,0xd9,0x7b,0x48,0x89,0x3d,0xe,0xc1,0x9f,0xce,0x9c, 0x21,0x68,0x97,0x4,0x96,0x5e,0xc0,0xe4,0xe2,0xa7,0xc,0x9b,0xd5,0x4b,0x2,0xe7, 0xa1,0xc5,0x24,0x9b,0x7a,0x17,0x6e,0xbc,0xa,0x6d,0x2b,0xe,0xe5,0x69,0x36,0xb2, 0x9e,0x70,0x40,0xef,0x55,0xb6,0x92,0x6a,0xf3,0xc1,0xbc,0x1,0xb4,0xf,0x72,0x6a, 0xbe,0xc7,0x8d,0xb6,0xba,0xf1,0xd8,0x8a,0xc2,0x71,0x7d,0x6,0x98,0xc0,0x9c,0x53, 0x80,0x23,0xfa,0x54,0xf1,0x28,0x61,0x91,0xfa,0xd5,0xa4,0x0,0x81,0xc0,0xfc,0xa8, 0x50,0x6c,0x2e,0x53,0x16,0xce,0xdd,0x31,0x4c,0x6b,0x29,0x47,0x4c,0x1a,0xd4,0xc7, 0x14,0x62,0xaf,0xd9,0xe8,0x2e,0x60,0xd0,0x63,0x64,0xfb,0x46,0xe1,0x8f,0xbb,0xfd, 0x6b,0x66,0xa9,0x69,0xe3,0x1e,0x67,0xe1,0xfd,0x6a,0xed,0x7a,0x58,0x75,0x6a,0x69, 0x18,0x4d,0xde,0x46,0x17,0x89,0x39,0x5b,0x6f,0xf8,0x17,0xf4,0xae,0x71,0x9b,0xe, 0xb9,0xee,0x71,0xfa,0x57,0x45,0xe2,0x43,0x81,0x6b,0xff,0x0,0x2,0xfe,0x95,0xcc, 0x5c,0xc9,0xb3,0x6b,0x16,0xa,0x3,0x75,0xfc,0xd,0x70,0xe2,0x7f,0x88,0xcd,0xe9, 0xbf,0x74,0xb1,0x3b,0x84,0x5d,0xb9,0xc9,0x27,0x8c,0x56,0x2d,0xe6,0xa4,0xff,0x0, 0x68,0x30,0x40,0xb,0x4a,0x4f,0x45,0x5d,0xc4,0x7e,0x5d,0x2a,0x3b,0xcd,0x4a,0xe2, 0xf6,0xef,0xec,0x3a,0x7a,0x86,0x72,0x7e,0x66,0x3d,0x10,0x67,0x92,0x6a,0x5b,0x7d, 0x3a,0x38,0x32,0xcc,0xd2,0x4e,0xe3,0x3b,0x9d,0xb0,0x8b,0xd7,0xb0,0xf4,0xfc,0x6b, 0x2b,0x5b,0x56,0x68,0x8a,0xf0,0xd9,0x98,0x64,0xfb,0x55,0xd3,0x6f,0xb8,0xe9,0xbe, 0x45,0x3b,0x22,0x1e,0x8b,0x9f,0xe2,0xf7,0xab,0xaf,0x3c,0x51,0xc2,0xa4,0x44,0xe5, 0x5c,0xe7,0x79,0x7,0x1f,0x89,0xf5,0xa9,0x8c,0xc0,0x79,0x2c,0x23,0x12,0x2e,0xec, 0x80,0x23,0x2d,0x83,0xec,0x69,0xcf,0x24,0x5b,0x8c,0x8e,0xf3,0x23,0x67,0x5,0x48, 0xf9,0x89,0xf6,0xa5,0x7b,0x83,0x1a,0x6e,0xa,0xc6,0x84,0x23,0x4,0x24,0x29,0xc7, 0x23,0x92,0x7,0x5f,0xc6,0xa6,0x75,0x65,0x8d,0x17,0x72,0x93,0xbf,0xa,0xaa,0x79, 0x3f,0x41,0x52,0xc7,0x6b,0x13,0x42,0x9b,0x62,0xd9,0x2b,0x29,0x2a,0xae,0xe4,0x31, 0x3f,0xe7,0xde,0x92,0x59,0x63,0x88,0x62,0x59,0xa2,0x8c,0x75,0x6d,0xc4,0x13,0xf8, 0x63,0x9c,0xfe,0x34,0x99,0x2b,0x72,0x59,0xae,0x77,0xa4,0x8b,0x2f,0x10,0x85,0x21, 0xf3,0xd7,0x18,0xa6,0x5a,0x5a,0x97,0x1,0xe4,0xdc,0x14,0xe0,0xac,0x6e,0x79,0x3, 0x1c,0x13,0x4e,0x86,0xcc,0xdc,0x4a,0xb3,0x4c,0x85,0x51,0x4e,0x62,0x88,0xf5,0x5f, 0x46,0x6f,0x53,0x5a,0x69,0x12,0x28,0xf9,0x47,0x27,0xa9,0x34,0xad,0x72,0x9b,0x20, 0xa,0x46,0x0,0xe0,0xe,0x80,0x76,0xa7,0xe0,0xe0,0xf3,0x52,0x95,0x0,0x74,0xa6, 0x6d,0xcf,0x2,0x81,0x5c,0x44,0x26,0xa5,0x5d,0xd8,0xa2,0x34,0xc7,0x4a,0x98,0x2e, 0x3b,0x55,0x58,0x4c,0x62,0xe7,0x3d,0x6a,0x50,0x4d,0x1b,0x3b,0xd1,0x83,0x9e,0x94, 0xec,0x48,0xe0,0x33,0x4d,0x7e,0x6,0x7a,0x9f,0x4a,0x75,0x34,0xe2,0x9d,0x80,0x66, 0x4e,0x71,0x8a,0x5a,0x5a,0x3b,0x54,0xd8,0x5,0x2,0x9e,0x29,0x83,0xa5,0x4a,0x83, 0x3c,0x9a,0xb8,0xa1,0x31,0xea,0xa7,0x19,0xa5,0xe9,0xd7,0xa5,0x2f,0x4a,0x8a,0x69, 0x4c,0x69,0xc0,0xcb,0xb1,0xda,0x83,0xd4,0xd6,0xa4,0x91,0x4b,0x89,0x9c,0xc1,0x90, 0x57,0x1f,0xbc,0xc1,0xfd,0x2a,0xca,0xff,0x0,0x4a,0x8e,0x8,0xbc,0xa8,0xf0,0x79, 0x62,0x72,0xc7,0xd4,0xd4,0xea,0x28,0x40,0x2,0xa4,0x1f,0x4a,0x40,0x29,0xe0,0x56, 0x89,0x8,0x31,0x46,0x29,0x45,0x2d,0x55,0x85,0x71,0xb8,0xf6,0xa4,0xc5,0x3e,0x8a, 0x2c,0x2b,0x8c,0xc0,0xf4,0xa3,0x14,0xfc,0x52,0x62,0x8b,0x0,0xcc,0x52,0x81,0x4e, 0xc5,0x28,0x14,0x58,0x6,0xe2,0x8c,0x53,0xb1,0x45,0x16,0x19,0x19,0x15,0x4e,0xfd, 0x98,0x59,0x48,0x14,0x64,0xb0,0xda,0x39,0xf5,0xe3,0xfa,0xd5,0xe3,0xd0,0xd6,0x76, 0xa0,0x7e,0x68,0x53,0xb1,0x62,0xe7,0x9e,0xc0,0x7f,0x8e,0x3f,0x2a,0x99,0xc,0x68, 0xa,0x88,0x51,0x46,0xe0,0x83,0x3,0x1e,0x82,0x99,0x18,0x8d,0x9b,0x72,0xc4,0x54, 0xfa,0x94,0x22,0x9a,0xc3,0x60,0x46,0x60,0x4e,0x46,0x6,0x7,0x4f,0xc6,0x97,0xe5, 0x63,0x96,0x69,0x7,0xd5,0xcf,0xf2,0xa0,0x6,0xb3,0x83,0xb8,0x3,0xc7,0x41,0x8e, 0x69,0xe7,0x28,0x81,0x99,0x48,0x6c,0x63,0x2c,0x29,0x92,0x36,0x6,0xd0,0x8c,0x47, 0xfb,0x23,0x9f,0xd0,0x53,0x51,0x96,0x4f,0x99,0xc1,0xdc,0x87,0x18,0x2e,0x4f,0x5f, 0xff,0x0,0x55,0x3,0x15,0x64,0x19,0xdb,0xbc,0x2b,0x1f,0x5e,0xbf,0x95,0x32,0x66, 0x91,0x16,0x47,0xdd,0x92,0x11,0xb9,0xfc,0x29,0x77,0xe0,0x17,0xda,0xb,0xe7,0x1d, 0x39,0xfc,0xe9,0x2f,0x1f,0x16,0x92,0xec,0x4e,0x59,0x30,0x7f,0x1a,0x18,0x75,0x2e, 0xdb,0x2e,0xcb,0x68,0x94,0xf5,0x8,0xbf,0xca,0xa7,0xa6,0x22,0x80,0xa0,0xe,0x82, 0x9f,0x52,0x30,0xcd,0x14,0x9d,0x28,0xcd,0x0,0x21,0x3e,0xd4,0xd3,0x4e,0xa4,0xa4, 0x2,0xa,0x5c,0xd1,0x8a,0x8,0xa0,0x4,0xa4,0x38,0x23,0x4,0x64,0x52,0xd2,0xe2, 0x93,0x40,0x22,0x80,0x6,0x0,0xc0,0xa7,0xa,0x29,0x69,0xa0,0xa,0x4a,0x5a,0x32, 0x2a,0x9a,0x2,0x36,0x1b,0x95,0x97,0xda,0x9c,0x9c,0xa8,0xe7,0xa7,0x14,0x77,0xc0, 0xa8,0xd0,0xed,0x9e,0x44,0xcf,0x4,0x6,0x3,0xf9,0xd4,0xec,0x4,0xd8,0xa5,0x2, 0x90,0x77,0xfa,0xd2,0xd3,0x10,0xb8,0xa3,0x18,0xa4,0x6,0x83,0x40,0xb,0x4e,0xb, 0x4c,0x1d,0x45,0x3b,0x38,0xa1,0x30,0x17,0xa5,0x25,0x14,0x53,0x0,0xa5,0xcd,0x25, 0x4,0x71,0x52,0x1,0x91,0x49,0x91,0x48,0x46,0x29,0x28,0x1,0x4d,0x56,0xba,0xb7, 0x4b,0x98,0x5a,0x37,0xe9,0xd8,0xf7,0x53,0xd8,0x8a,0xb3,0xf8,0xd1,0x82,0x28,0xdc, 0x66,0x3c,0x60,0xba,0x18,0xdc,0x1,0x2c,0x47,0x6b,0xa8,0x1c,0xfd,0x47,0xb5,0x3c, 0x2b,0x86,0x2b,0xb4,0x30,0xec,0xfd,0x71,0xf8,0x55,0x8b,0xcb,0x66,0xff,0x0,0x5f, 0xf,0xfa,0xc4,0x1c,0xe7,0xf8,0x97,0xd3,0xfc,0x2a,0xb8,0x70,0xa7,0xcc,0xca,0xa4, 0x64,0x70,0x4f,0x23,0x14,0x2f,0x30,0x6,0x90,0x85,0xc2,0x8c,0x48,0x38,0x0,0xf4, 0x3f,0x8d,0x0,0x24,0x83,0xcc,0x28,0x43,0x1,0x86,0x46,0x53,0x8a,0x47,0x3b,0x53, 0x78,0x7d,0xea,0x7b,0x8c,0x90,0x2a,0x5,0x74,0x72,0x43,0x4a,0x8a,0x4f,0x19,0x3b, 0x86,0x6a,0xb4,0x4c,0x64,0xfe,0x5c,0x88,0xbb,0xa3,0xc3,0x32,0x9f,0xb8,0xc0,0x91, 0x8a,0x49,0x51,0xc,0x4a,0x44,0x9e,0x43,0x6,0xdd,0x1b,0x5,0x3f,0x23,0x7f,0x87, 0x3f,0xad,0x4b,0xbc,0x91,0xb4,0x70,0x3b,0x95,0x7c,0xff,0x0,0x4a,0x88,0x17,0x8d, 0x70,0x80,0x48,0xa0,0xe7,0x39,0x50,0x57,0xf3,0xeb,0x52,0xd0,0x16,0xed,0xae,0x1a, 0x50,0x52,0x40,0xab,0x2a,0x1d,0xae,0xa0,0xf0,0x3d,0xfe,0x86,0xad,0x67,0x9c,0x60, 0x82,0x3d,0x6b,0x25,0x90,0x3c,0xeb,0x2c,0x52,0x32,0xdc,0x28,0xc2,0xb3,0xa8,0xf9, 0xc7,0xf7,0x5b,0x6f,0x51,0x5a,0x10,0x4e,0x93,0x21,0x28,0x70,0x55,0x8a,0xb2,0x1e, 0xaa,0xc3,0xa8,0x34,0xb6,0x11,0x64,0x11,0x4b,0x51,0xe7,0xa5,0x2e,0x69,0x80,0xfa, 0x4c,0xd3,0x73,0x4d,0x67,0x0,0x75,0xa1,0xb0,0x24,0xcd,0x31,0x9f,0x1d,0x2a,0x2d, 0xe7,0xd6,0x9a,0x5b,0x3d,0xea,0x5c,0xc6,0x39,0x9b,0x34,0xca,0x4a,0x51,0x50,0xf5, 0x1,0xc3,0x14,0xea,0x68,0xa5,0xa0,0x5,0xa6,0x36,0x29,0x70,0x69,0x8,0xfc,0xa8, 0x11,0x4a,0x78,0xa,0xc9,0xe6,0xc4,0xe1,0x1c,0xf5,0xcf,0x46,0xf6,0x3f,0xe3,0x4c, 0x86,0xe4,0x4a,0xcd,0x1b,0x26,0xc9,0x97,0xaa,0x1e,0xb8,0xf5,0x1e,0xd5,0x6c,0xab, 0xe4,0xe4,0xe7,0xdc,0xe,0xd5,0x5e,0x68,0x12,0x5d,0xbb,0xb3,0xb9,0x4e,0x54,0x8e, 0xa3,0xfc,0x7e,0x95,0xd,0x14,0x4a,0xa7,0x9e,0xbc,0x76,0xa9,0x41,0xaa,0x11,0x4c, 0xf1,0x95,0x8a,0xe8,0x80,0xe4,0xe1,0x64,0x1f,0x76,0x4f,0xfe,0xcb,0xda,0xae,0xa, 0x48,0x9,0x77,0xa,0x50,0xc2,0xa2,0xc8,0x14,0xbb,0x85,0x52,0x60,0x4c,0x1c,0x7a, 0xd3,0xbc,0xc1,0xeb,0x55,0xf7,0x3,0x4b,0xbc,0x77,0x34,0xf9,0x85,0x62,0xc0,0x90, 0x7a,0xd0,0x5f,0xd2,0xab,0x86,0xfa,0x52,0x23,0xb9,0x2c,0x24,0x40,0xb8,0x3c,0x61, 0xb3,0x91,0x4f,0x98,0x2c,0x4f,0xe6,0x63,0xad,0x1e,0x60,0xa8,0xb,0x52,0x6e,0xa2, 0xe3,0xb1,0x31,0x71,0x4d,0x32,0xa,0x66,0x4d,0x34,0x9a,0x4d,0xb0,0xb0,0x3b,0x79, 0x80,0xa9,0x1d,0x7f,0xa,0x84,0xb4,0xab,0x80,0xdf,0x30,0x1c,0x67,0x1d,0xaa,0x6e, 0xd,0x34,0x8c,0xf6,0xcd,0x2b,0xb1,0x88,0xbb,0xd8,0xc,0x39,0x5c,0x77,0xa9,0x6, 0xf3,0xcb,0xe7,0x23,0xd3,0xbd,0x42,0xc3,0x1d,0x32,0x3e,0x94,0x86,0xf4,0x46,0x40, 0x94,0xb2,0xf,0xef,0x95,0x25,0x7f,0x1c,0x74,0xa6,0xa4,0x26,0x89,0x8c,0x85,0x7a, 0xc,0xa3,0x1c,0x72,0x71,0x8a,0x52,0xce,0x13,0x80,0x9,0xcf,0x14,0xdc,0x45,0xbb, 0xe6,0x8,0x58,0xf3,0x81,0xd6,0x9e,0x18,0xc,0x9c,0x12,0xf,0xa1,0x15,0x77,0x10, 0xc2,0xa1,0xba,0xb1,0x53,0xea,0x29,0x52,0xe9,0x93,0x22,0x45,0x24,0xe,0x8d,0xeb, 0x4c,0x76,0xc4,0x85,0xe,0xe1,0xdd,0x70,0xd,0x23,0x4b,0x1b,0x2e,0xd2,0xc4,0x1e, 0xe0,0x91,0x4a,0xc0,0x5f,0x49,0x15,0xd0,0x32,0x9c,0x83,0x4e,0xeb,0x54,0x55,0x86, 0xd0,0x10,0xf0,0x3b,0x83,0x43,0x4d,0x22,0xc,0xe4,0x90,0x3d,0x5,0xd,0xd8,0x56, 0x36,0xec,0x3f,0xe5,0xa7,0xe1,0xfd,0x6a,0xe5,0x65,0x68,0xb7,0x26,0x7f,0x3c,0x1c, 0x7c,0xbb,0x7f,0xad,0x6a,0xd7,0x7d,0x7,0x7a,0x68,0xca,0x5b,0x9c,0xef,0x8a,0xa5, 0x58,0x52,0xd9,0xdc,0x80,0x6,0xfe,0xbf,0x85,0x71,0x6,0x79,0x75,0x39,0x58,0xdb, 0x94,0x58,0x91,0xb1,0xbe,0x41,0xc6,0x7d,0x3d,0x9,0xff,0x0,0xeb,0x57,0x59,0xe3, 0x7b,0x26,0xbe,0x16,0x29,0xe6,0x14,0x8c,0x17,0x2f,0x8e,0xa7,0xee,0xf4,0xac,0x55, 0x9,0x15,0xb2,0xac,0x68,0x16,0x34,0x0,0x1,0x8e,0x16,0xb8,0xb1,0x3f,0xc4,0x66, 0xd0,0xf8,0x48,0xad,0xad,0xa3,0xd3,0x10,0x45,0x19,0x5d,0xd8,0xc9,0xf9,0x79,0x3e, 0xac,0xc7,0x39,0x27,0xdf,0xf4,0xa9,0xe5,0xf,0x28,0x8d,0x98,0x96,0x55,0xf9,0x99, 0x51,0x82,0xaa,0xfd,0x5b,0xae,0x7e,0x94,0xc8,0xd0,0x49,0x28,0x32,0x3b,0xc5,0x80, 0x9,0x9b,0x80,0x71,0xe8,0x33,0x4e,0x9a,0xf5,0x43,0x8b,0x7b,0x75,0xdc,0x98,0xd8, 0x5e,0x40,0x8,0x1f,0xe3,0x5c,0xee,0xec,0xb1,0xf1,0x5e,0xa2,0xcc,0x16,0x3b,0x74, 0x90,0xff,0x0,0x7e,0x49,0xfb,0x7b,0x71,0x4d,0x2e,0xb2,0xcc,0xd2,0x34,0xa,0x92, 0x6e,0x2b,0xb8,0x1,0xb5,0x97,0xd0,0xf4,0xa8,0xb4,0xe0,0xae,0xf2,0x46,0x5,0xa1, 0x74,0xe9,0xba,0x0,0xd8,0xfc,0x73,0xc5,0x12,0xf9,0x62,0x26,0x8e,0xe7,0x33,0x49, 0x23,0x1d,0xa2,0xdf,0x80,0x4f,0xa0,0xff,0x0,0x26,0xa8,0xa2,0x2b,0xb8,0xac,0xdd, 0x81,0x9e,0x5,0x2a,0xa3,0x8,0xaa,0x80,0x6e,0x3d,0x80,0xc5,0x69,0x69,0xba,0x54, 0x71,0x3a,0xcf,0x25,0xbc,0x71,0x4b,0x8f,0x92,0x35,0x0,0xf9,0x63,0xeb,0x8e,0xb5, 0x26,0x9f,0xa6,0x8,0xdd,0x6e,0x24,0x5f,0xde,0x85,0xc2,0x82,0xc5,0xb6,0xf,0x41, 0x9a,0xd5,0x55,0xc0,0xe3,0x8a,0x35,0x6,0xd0,0xdf,0x28,0xe,0x4f,0x5a,0x5c,0x53, 0x88,0x27,0xbd,0x7,0x83,0x48,0x81,0x84,0x50,0x17,0xd4,0xfe,0x94,0xb9,0xe7,0xa5, 0x38,0x50,0x2,0x3,0x83,0xd2,0xa5,0x5c,0xf7,0xa4,0x51,0x4f,0x27,0xd6,0xa9,0x9, 0x8b,0x9a,0x4a,0x4c,0x8a,0x42,0xc2,0x9d,0xc4,0x29,0x20,0x53,0x33,0x92,0x45,0xc, 0x69,0xbf,0x4a,0x4d,0x8c,0x33,0xc5,0x28,0xa6,0x93,0xcf,0x7a,0x72,0x83,0x48,0x9, 0x14,0x67,0x8a,0x9d,0x57,0x2,0x98,0x82,0xa5,0x15,0xb4,0x51,0x22,0x1e,0x9d,0x71, 0x55,0xe3,0x1e,0x6c,0xbf,0x68,0xfe,0x1c,0x62,0x30,0x47,0x4f,0x7f,0xc6,0x89,0xdc, 0x4b,0x27,0xd9,0xc1,0xc8,0xff,0x0,0x96,0xb8,0x3d,0x3d,0xbf,0x1a,0x9d,0x71,0x4f, 0x71,0xa,0xa2,0xa4,0x1c,0x53,0x45,0x2d,0x52,0x40,0x3c,0x53,0xea,0x31,0xc7,0x7a, 0x76,0x6b,0x44,0x21,0xc2,0x96,0x99,0x9a,0x1,0xa7,0x71,0x58,0x93,0x14,0x94,0x99, 0xa4,0x2d,0x45,0xc5,0x61,0xd4,0x53,0x37,0x51,0x9a,0x2e,0x16,0x1e,0x29,0x69,0x9b, 0xb1,0x49,0xba,0x8b,0x85,0x87,0x93,0x49,0x9a,0x6e,0xea,0x69,0x6a,0x2e,0x3b,0xa, 0xc4,0x2,0x9,0xac,0xb9,0xc1,0x9a,0xee,0x5c,0x67,0xf7,0x68,0x14,0xe3,0x9e,0x7a, 0x9a,0xd1,0x63,0xeb,0xff,0x0,0xea,0xac,0xc8,0xde,0x29,0x6d,0xc9,0x67,0x1f,0x3b, 0x33,0x30,0xc9,0xe7,0x27,0xfc,0x2a,0x5e,0xa5,0x10,0x30,0x94,0x1f,0x95,0x94,0x6e, 0x3c,0x46,0xcc,0x78,0xf4,0xe7,0x14,0xe7,0x59,0xed,0xd4,0xb,0x89,0x21,0x73,0x9f, 0xba,0x49,0x66,0x1f,0x4e,0x2a,0x1f,0x26,0x33,0x26,0xd1,0xbb,0x8f,0xe0,0xe9,0x8f, 0xc4,0xd4,0xdf,0x67,0x8a,0xdf,0x6b,0x29,0x48,0xd8,0x9c,0xb1,0x73,0xf3,0x1f,0xa5, 0x20,0x1e,0xd2,0xa1,0x52,0xb,0x2e,0xe3,0xd3,0x27,0x3,0xf5,0xa6,0xf9,0x6a,0x90, 0xee,0x79,0x52,0x49,0x33,0xc2,0xa0,0x3,0x1f,0x40,0x29,0x8e,0xc0,0x3b,0x4b,0xe6, 0x45,0x11,0xec,0x58,0x12,0x5,0x22,0xdc,0xc6,0xc4,0x1b,0xab,0x82,0x24,0xc6,0x57, 0x62,0x11,0xfc,0xb3,0x46,0x83,0xd0,0x9d,0x64,0x8d,0x8e,0xe0,0xdf,0x77,0x8d,0xbc, 0xe4,0x7b,0xf4,0xa6,0x5c,0x73,0x6c,0x46,0x70,0xf2,0x15,0x0,0x7a,0xfc,0xc2,0x9e, 0xb8,0x96,0x41,0xe4,0xc7,0x20,0x3,0x93,0x23,0x83,0x86,0xf6,0xa6,0x5d,0x21,0xf3, 0xed,0xf6,0xc2,0x8a,0xc,0x8b,0x9c,0x1c,0xe4,0x3,0x9f,0xe9,0x49,0x89,0x23,0x47, 0x4,0xa,0x5e,0x69,0x37,0x60,0x60,0x62,0x94,0x1e,0x3a,0x7e,0x54,0xc,0x4c,0x1a, 0x28,0x63,0xd3,0xb5,0x34,0xc8,0xa0,0xe3,0x7a,0xe7,0xd3,0x34,0x0,0xfc,0x62,0x9b, 0x48,0x66,0x50,0x32,0x59,0x7f,0x31,0x49,0xe6,0x29,0x19,0xc,0x8,0xc6,0x73,0x9e, 0x28,0x1,0xf8,0xf7,0xa5,0xc5,0x44,0x67,0x88,0x67,0x32,0x2f,0x1d,0xc9,0xc5,0x34, 0x4f,0x19,0xfb,0xae,0xa7,0xe8,0x41,0xa0,0x9,0xa8,0xaa,0xe6,0x74,0xc,0x1,0x7c, 0x13,0xd0,0x10,0x46,0x69,0xfe,0x62,0x82,0x46,0x4f,0x1e,0xc6,0x95,0x86,0x4b,0x45, 0x41,0xf6,0x85,0x20,0x9c,0x3e,0x3d,0xd7,0x14,0xd3,0x76,0xa0,0xe0,0x24,0x8d,0xf4, 0x14,0x8,0xb2,0x68,0x1e,0xf5,0x53,0xed,0xeb,0xff,0x0,0x3c,0x65,0x27,0xd3,0x3, 0xfc,0x68,0x5b,0xe4,0x7c,0xe2,0x39,0x6,0x3d,0x71,0xfe,0x34,0xc,0xb6,0x31,0x9a, 0x8a,0x61,0xb5,0xe1,0x93,0xfb,0xad,0xb4,0x9f,0x63,0xff,0x0,0xd7,0xc5,0x46,0xd7, 0x41,0x7f,0x84,0x8f,0x76,0x38,0x15,0x14,0x97,0xf,0x24,0x6c,0x9e,0x48,0x2a,0x46, 0x32,0x1f,0xf9,0x52,0x11,0x7c,0x1e,0x1,0xa3,0x77,0xa5,0x51,0x86,0xf5,0xe4,0x8f, 0x77,0x93,0x85,0x7,0x5,0xb7,0x77,0xa7,0x9b,0x86,0x19,0xfd,0xd9,0x3e,0x98,0x3d, 0x68,0xb8,0x16,0xf7,0x52,0x13,0x55,0x45,0xd9,0x6c,0x8f,0x28,0xf1,0xef,0x4c,0x17, 0x52,0x39,0xe6,0x1d,0x8a,0x3a,0x96,0x39,0x3f,0x90,0xa2,0xe2,0x2e,0x83,0x41,0x63, 0x55,0x44,0xfe,0x8c,0xbe,0xb8,0xc5,0x2f,0x98,0xee,0x3e,0x48,0xcf,0xfb,0xc4,0x60, 0x7f,0x3a,0x9b,0x8c,0xb2,0x18,0xd2,0xee,0x35,0x40,0x4f,0x29,0x7c,0x6e,0x3,0xfd, 0xa3,0xb,0x63,0xf9,0xd2,0x99,0xe5,0xdb,0x92,0xd1,0x83,0x9c,0x2,0x6,0x33,0xf9, 0x9a,0xab,0x85,0x8b,0xe1,0xbd,0xe8,0xdd,0xc5,0x50,0x69,0xa7,0x66,0x2,0x37,0x3, 0x3e,0xb1,0x9e,0x29,0xab,0x3d,0xc1,0x51,0xce,0x4e,0x7a,0x85,0xe3,0xf5,0xa5,0x70, 0x34,0x37,0x52,0x67,0x15,0x46,0x67,0xb8,0x8b,0x66,0x6e,0x39,0x6e,0xc1,0x73,0x8f, 0xc8,0x53,0x4c,0xd7,0x22,0x74,0x41,0x26,0x43,0x1c,0x6e,0x74,0xda,0x28,0xb8,0x17, 0xc9,0x23,0xfa,0x50,0x18,0xf7,0x6,0xa9,0x33,0xdc,0x7c,0xa5,0x54,0x60,0x8e,0x76, 0x1e,0x33,0xeb,0xcd,0x39,0xe4,0x61,0x10,0x1b,0xfe,0x61,0xf7,0x8e,0x3a,0x51,0xa8, 0xcb,0x25,0x89,0x3c,0x56,0x7c,0xb1,0x47,0x5,0xc3,0x49,0xb3,0x8,0xe4,0xfc,0xfc, 0xfc,0x87,0xdf,0xd8,0xd3,0xc2,0xe3,0x1b,0xe6,0x91,0x98,0xf4,0x51,0x52,0x49,0x14, 0xd2,0xfc,0xac,0x91,0x94,0xe9,0xb4,0xb9,0x7,0xa5,0x26,0xd8,0x3d,0xa,0x32,0x63, 0x60,0x78,0xc1,0x2c,0x7a,0x61,0x79,0x3f,0xe7,0xe9,0x4d,0x32,0x48,0x46,0xe9,0x7e, 0xd0,0xd9,0xec,0x21,0xc6,0x3f,0x4a,0xaa,0xd1,0x35,0xbc,0xc6,0xdd,0xda,0x51,0x91, 0xba,0x37,0xc9,0x52,0xcb,0xf5,0xf5,0x14,0x8d,0xa,0xb3,0x2,0xef,0x2b,0x91,0xd0, 0xb4,0xad,0xfa,0x73,0x56,0x97,0x31,0xe,0x65,0xf8,0xb7,0x11,0xb8,0x92,0xa3,0x3f, 0xc4,0xbb,0x5b,0xf9,0xd3,0xa5,0x99,0x23,0x1b,0x64,0xe5,0xbb,0x90,0xa4,0x71,0xf5, 0xac,0xc6,0x52,0x7a,0xcd,0x70,0x7f,0xed,0xbb,0xff,0x0,0x8d,0x20,0x50,0xb9,0xe5, 0x98,0x1e,0xe,0xe6,0x26,0xab,0x91,0x8f,0x9c,0xd8,0x8d,0xc4,0x91,0x6d,0xcb,0xae, 0xee,0x8c,0x11,0x87,0x1e,0xe6,0xa3,0x9d,0x1e,0xda,0x73,0x77,0x2,0xb9,0xe0,0x2c, 0x88,0x39,0x12,0x28,0xf6,0xf5,0x0,0x70,0x7f,0xa,0xc9,0xf2,0x97,0xa6,0xe9,0x71, 0xe9,0xe6,0xb6,0x3f,0x9d,0x1e,0x5a,0xe,0x99,0x1c,0x63,0x86,0x3f,0xe3,0x43,0xa6, 0x27,0x23,0xa5,0x8a,0xe5,0x27,0x8c,0x49,0x1b,0x87,0x56,0x1b,0x81,0x7,0xfc,0xf3, 0xed,0x4e,0x33,0x28,0xee,0x7,0xd6,0xb9,0x88,0x6e,0xce,0x98,0xcc,0xc7,0x2d,0x68, 0xc7,0x74,0x9c,0x64,0xc6,0x71,0x8d,0xe3,0xb9,0xe8,0x32,0x2b,0x5a,0x15,0xf3,0x30, 0xcd,0x26,0xf0,0xc0,0x32,0x95,0x39,0x7,0x3d,0xea,0x24,0x9a,0xdc,0xab,0xa3,0x41, 0xa6,0x1d,0x37,0xf,0xcf,0xad,0x44,0x67,0x8f,0x7e,0xdd,0xeb,0xbb,0xd3,0x3c,0xd5, 0x1f,0xb4,0xbb,0x0,0x9b,0x15,0x4e,0x71,0x87,0x6f,0xff,0x0,0x55,0x35,0x95,0x5c, 0x1f,0x3d,0x1,0xc7,0xf0,0x83,0xcd,0x4f,0x2d,0xc6,0x5e,0x37,0x11,0x86,0xc1,0x91, 0x33,0xe9,0x9e,0x69,0x1a,0x78,0xd0,0xe1,0xe4,0x45,0xfa,0x9a,0xa7,0xe5,0xc4,0x1, 0x45,0x31,0xa1,0x1f,0xc2,0xca,0xf,0x1f,0x9d,0x59,0x11,0x96,0x87,0x66,0xfc,0x2f, 0xb0,0x52,0x2a,0x5c,0x35,0xdc,0x9,0x83,0x83,0xd0,0xe7,0xbf,0x1d,0xe9,0xa6,0x50, 0xbc,0xb1,0xb,0xf5,0xe2,0xa2,0x31,0x84,0x21,0x5d,0x44,0x87,0x1f,0x2e,0xc1,0xb4, 0x9f,0xd6,0x81,0x1c,0xa5,0x37,0x48,0x82,0x25,0xf4,0x2d,0x92,0x3e,0xb4,0x72,0x81, 0x38,0x99,0x71,0x9d,0xe3,0x1f,0x51,0x47,0x9a,0x9,0x18,0x61,0xcf,0xb5,0x42,0x4, 0x6e,0x4a,0xb2,0xab,0x6d,0xf9,0x4f,0x7,0x83,0xed,0x50,0xac,0x90,0xb3,0xed,0xfb, 0x43,0x64,0x1d,0xbb,0x59,0x48,0xc7,0xe3,0x45,0x84,0x5b,0x7b,0x85,0x56,0xda,0xc4, 0x83,0xfe,0xe9,0xa6,0x35,0xdc,0x6a,0xe1,0x4b,0xe0,0x9f,0x51,0x51,0x2,0xab,0x70, 0x21,0xf3,0x58,0x9d,0xb9,0xdb,0xcf,0xf5,0x35,0x20,0xa,0xac,0x5b,0x38,0xc,0x3e, 0x60,0x70,0x69,0x58,0x63,0x9e,0x4c,0xd,0xd9,0x24,0x7b,0x21,0x34,0xc7,0x93,0xe5, 0xc9,0xf3,0x8,0xf4,0x28,0x69,0x11,0x21,0x62,0xc,0x41,0x4a,0x9f,0xbc,0x53,0x0, 0x1f,0xae,0x29,0xa9,0xe4,0x9,0xca,0xab,0x28,0x6e,0xdb,0x66,0xce,0x69,0xd8,0x8, 0xa4,0x68,0xe6,0x46,0x46,0xc,0xca,0x7a,0xa9,0x43,0x83,0xfa,0x75,0xa8,0x1a,0xe9, 0xec,0x81,0x69,0x43,0xc9,0x6c,0x7,0xfa,0xc1,0xf3,0x32,0x7f,0xbd,0xea,0x3d,0xfa, 0xfa,0xfb,0x5b,0x30,0xef,0x8c,0xf9,0x92,0xb8,0x8c,0x1c,0xee,0xdc,0x70,0x6a,0x3f, 0x2f,0x74,0x61,0xe1,0x93,0xa1,0xfb,0xf9,0xe0,0x8f,0x42,0x3d,0x29,0x72,0x8c,0x91, 0x6e,0xa3,0x66,0xa,0x1b,0x24,0x80,0xc0,0xf6,0x20,0xf4,0x20,0xf7,0xa7,0x7d,0xa5, 0x33,0x8d,0xcc,0xf,0xfb,0x84,0x7f,0x31,0x59,0xcf,0x3,0xd9,0x6c,0x30,0x45,0x1c, 0xf0,0xe7,0x2d,0x9,0x50,0x3a,0xf5,0x28,0x4f,0x0,0xfb,0x70,0xf,0xb1,0xeb,0x3d, 0xbd,0xcc,0x12,0xc4,0xcd,0x13,0xe2,0x3d,0xd8,0x3d,0x41,0x53,0xe8,0x41,0xe4,0x52, 0xb0,0x17,0x4,0x8a,0x1,0x25,0xf8,0xf7,0xa5,0xdf,0x9c,0x60,0xf5,0xe4,0x55,0x7d, 0xf1,0x3e,0x55,0x46,0xf5,0x18,0x21,0x97,0x8c,0xfe,0x78,0xa2,0x9,0xb3,0x26,0xc7, 0x8a,0x54,0x19,0xe0,0xba,0x91,0x8a,0x39,0x42,0xe4,0xbe,0x70,0x3,0x3b,0x8f,0x5c, 0x70,0x9,0xa5,0x79,0x42,0xe0,0x65,0x81,0x3f,0x4a,0xac,0xf7,0x12,0xc2,0xec,0x8f, 0xbd,0xce,0x7f,0xe5,0x9a,0x31,0x38,0xfa,0x53,0xa2,0x2c,0x70,0xa1,0x5d,0x54,0x9e, 0xe8,0x47,0xf5,0xa3,0x94,0x2e,0x48,0x65,0x20,0xe3,0x12,0x93,0xf8,0x52,0xf9,0x87, 0x19,0xc,0xc7,0xe9,0x4d,0x4d,0xc9,0x23,0x13,0x97,0x5e,0x99,0x28,0x73,0x9f,0x6a, 0x25,0x50,0xee,0x15,0x9c,0x5,0x3,0x84,0x70,0x50,0x7e,0xb4,0x58,0x2e,0x39,0x65, 0x24,0x64,0x9,0x88,0xff,0x0,0x77,0x14,0xa5,0x8e,0x32,0x77,0x8f,0xd7,0xf9,0x53, 0x61,0xb7,0x7f,0xbd,0x15,0xc4,0x91,0x9c,0xf2,0x1,0xdc,0xbf,0xce,0x96,0x48,0xd8, 0xe7,0xce,0x66,0x28,0x3b,0x8e,0xe7,0xf0,0xa2,0xc1,0x71,0x1a,0x5d,0x84,0x0,0x19, 0x89,0xe8,0x17,0x93,0x4e,0x32,0x3a,0xfd,0xe8,0x98,0x7f,0xc0,0x94,0xff,0x0,0x5a, 0x89,0x4,0x51,0x9d,0x89,0x1a,0x65,0xba,0x90,0x4e,0xe3,0xf8,0x9a,0x72,0xaa,0x85, 0x11,0xb4,0x8d,0x1b,0xf,0xbb,0xf3,0x9c,0xfe,0x67,0x34,0xac,0x2b,0x8e,0x32,0x67, 0xa2,0xb1,0xf7,0x51,0x91,0x48,0xf,0x98,0x8,0xf2,0xdb,0xf1,0xc5,0x3d,0x59,0xc0, 0xc3,0xa7,0x3,0xab,0x7,0xcd,0x30,0xcf,0x1a,0x2e,0x54,0x86,0x5f,0x52,0xe9,0x8f, 0xe7,0x47,0x28,0xee,0x52,0x9a,0x29,0xa2,0x62,0x6d,0xa3,0x73,0x81,0xcc,0x45,0xf0, 0xa7,0xe8,0x49,0xe3,0xe9,0xd2,0xa9,0xc7,0xac,0xba,0x4a,0x6d,0x9e,0x19,0x63,0x9d, 0x79,0xf2,0xe6,0x60,0x1b,0x1e,0xdc,0x72,0x3e,0x95,0xaf,0x2c,0x88,0xf0,0xb3,0x32, 0xac,0x80,0x1c,0x6d,0x3b,0x48,0x35,0x4e,0xea,0x18,0x6e,0xe2,0xf2,0x27,0x89,0x5d, 0x71,0x95,0x41,0x1f,0x20,0xfb,0x11,0xc8,0xfc,0x31,0x56,0x84,0x57,0x93,0x52,0x9e, 0x69,0x15,0xbe,0xc4,0xa0,0x8f,0xe2,0x37,0x4,0x7e,0x98,0xa2,0x4b,0xf9,0x18,0x71, 0x6e,0x15,0xbf,0xbc,0xb2,0xf,0xea,0x2a,0xac,0x90,0xc9,0x64,0xa1,0x99,0xbc,0xd8, 0xba,0x6e,0x3c,0x32,0xfb,0x1f,0x5f,0xe7,0xf5,0xa7,0x9,0x23,0x75,0xc,0xac,0x8, 0xe9,0xfe,0x4d,0x3b,0xea,0x2b,0x92,0xb,0x89,0x49,0xcb,0x41,0x13,0x1e,0xc5,0xa4, 0x24,0xfe,0x82,0xa6,0x3a,0x85,0xcb,0xae,0xd6,0x8e,0x30,0x3f,0xd8,0x72,0x3f,0xa5, 0x57,0xc8,0xf7,0xa4,0x27,0x14,0x34,0x98,0xee,0x75,0x1e,0x15,0x93,0x7f,0xda,0xf2, 0x0,0x23,0x67,0x7c,0xff,0x0,0x7a,0xba,0x3a,0xe6,0x7c,0x22,0x73,0xf6,0xcf,0xf8, 0x7,0xfe,0xcd,0x5d,0x35,0x77,0xd0,0x56,0xa6,0x8c,0x65,0xb9,0xcc,0xf8,0xc2,0x46, 0x8e,0x3b,0x56,0x51,0xc0,0xde,0x58,0xfb,0xd,0xb5,0xcb,0x16,0xbf,0x96,0x34,0x96, 0x5,0x86,0x7,0xc7,0x57,0x91,0x9b,0xf3,0xf9,0x71,0xf9,0xd7,0x51,0xe3,0x9,0x6d, 0x21,0x4b,0x56,0xbb,0x6e,0x8,0x70,0xab,0xdd,0x8f,0xcb,0x5c,0xc9,0xd5,0x15,0x81, 0xde,0x62,0x8f,0x23,0x1,0x24,0x75,0x42,0x7,0xba,0x96,0xff,0x0,0xa,0xe0,0xc4, 0x27,0xed,0x59,0xb5,0x2d,0xb5,0x24,0xbc,0x8e,0xe1,0xc4,0x73,0x5c,0x7d,0x95,0x98, 0x70,0x98,0x56,0x70,0xf,0xb0,0xee,0x7f,0x1c,0x54,0x61,0x1b,0x23,0xcf,0x11,0xcd, 0x6d,0x19,0xf9,0x4c,0xc5,0x89,0x7,0xfd,0xdf,0xe9,0x8a,0xa0,0xda,0x8c,0xdf,0x6c, 0x51,0x36,0xa7,0x4,0x70,0x11,0x82,0x62,0x11,0x12,0x7,0xe2,0x4e,0x3e,0xb5,0x64, 0x5c,0x5b,0x3,0xb6,0xd6,0xe3,0xed,0x33,0xa0,0x2c,0xc,0x73,0xac,0x84,0x7d,0x40, 0xc0,0x1f,0x95,0x65,0x6b,0x6a,0xcd,0x11,0x72,0xe2,0xec,0xb4,0xa0,0x1b,0x68,0x99, 0x5c,0x6d,0x44,0x54,0xc7,0x98,0x7d,0x89,0xed,0xf5,0xab,0x9a,0x6e,0x92,0x96,0xbf, 0xbf,0x90,0xab,0xce,0xe3,0x4,0x80,0x30,0xab,0xfd,0xd0,0x3d,0x3d,0xfb,0xd4,0x76, 0xbe,0x55,0xb4,0x7f,0x69,0xba,0x96,0x59,0xee,0x1c,0x65,0x9c,0x44,0xec,0x14,0x7a, 0x0,0x1,0xc0,0xfe,0x75,0x75,0x75,0x1b,0x72,0x81,0xc3,0xb1,0xd,0xd3,0xe4,0x3c, 0xd4,0x5,0xad,0xb1,0x71,0x78,0x18,0xe7,0xeb,0x52,0xe,0x47,0x35,0x4d,0xef,0x12, 0x34,0xc,0x55,0xce,0x4e,0x30,0x5,0x41,0xfd,0xb9,0x69,0x90,0xa3,0xcc,0x62,0x7b, 0x20,0x4,0xff,0x0,0x3a,0xb4,0xc9,0xb1,0xa5,0xeb,0x48,0x7e,0x63,0x51,0xac,0xdb, 0xd0,0x13,0x13,0xa1,0x3d,0x3,0x90,0xf,0xe5,0x9a,0x24,0x92,0x48,0xe3,0xdd,0xe5, 0xee,0xf6,0xce,0x3f,0x5e,0x94,0xc0,0x90,0x83,0x4a,0x14,0xe3,0x92,0x2a,0x92,0x5d, 0xdc,0x48,0xa1,0xe2,0xb2,0x66,0x19,0xc1,0x3e,0x60,0xc7,0xe0,0x7b,0xd3,0xe4,0xb8, 0xbb,0x8f,0x9f,0xb1,0xa3,0x2f,0xf7,0x96,0x5e,0x7,0xe9,0x45,0x86,0xd1,0x74,0xc, 0xd3,0xb1,0x54,0x9e,0xf5,0xd1,0x3,0x10,0x83,0x8c,0x9e,0xa7,0xf2,0xe3,0x9a,0x6a, 0xdf,0x49,0x20,0x5,0x63,0x0,0x1e,0x9e,0x60,0x2a,0x4f,0xe1,0x41,0x2d,0x17,0xb1, 0x4c,0xe7,0xd2,0xaa,0xcb,0x75,0x71,0x1a,0xa9,0x6,0x3e,0x7a,0x82,0x84,0xd4,0x32, 0x5d,0xdc,0x86,0x19,0x1b,0x33,0xd0,0x18,0xb1,0x9f,0xd6,0x93,0x2,0xfe,0x41,0x38, 0xcf,0xe7,0x4a,0x7,0xbd,0x51,0x33,0x5d,0xbb,0xe2,0x8,0xdb,0x3d,0xce,0xde,0x5, 0x24,0xa2,0xe5,0x0,0xf3,0x35,0x14,0x42,0x7f,0x87,0xcb,0x6,0x98,0x17,0xcf,0xcb, 0x8e,0x47,0x26,0x9e,0xb8,0x63,0xc1,0xe9,0xec,0x6b,0x31,0x5a,0xe1,0x46,0x5a,0x76, 0x95,0x38,0xdd,0x84,0xb,0x56,0x72,0xd1,0x86,0x5f,0x35,0x99,0xf3,0xf2,0x82,0x48, 0xe2,0xad,0x20,0x34,0x3,0x1,0xd4,0x7e,0x95,0x1d,0xcd,0xc7,0xd9,0xe1,0x2e,0x6, 0xe6,0x3f,0x2a,0x28,0xea,0xcc,0x7a,0x1,0x54,0x8c,0xac,0x99,0x70,0xb2,0x5,0x3c, 0x6d,0x72,0x78,0x3f,0xe1,0x55,0xd7,0xcc,0x9c,0xad,0xcb,0x46,0xdb,0x13,0x94,0xcb, 0x5,0xfc,0x72,0x4d,0x5e,0xa4,0x9a,0x96,0xd1,0x79,0x31,0xe1,0x89,0x77,0x63,0xb9, 0x9b,0xae,0x4d,0x4f,0x9e,0xff,0x0,0xd2,0xb1,0x7c,0xe8,0xc2,0x66,0x3d,0x8c,0x7b, 0x6d,0x5c,0x81,0xf8,0x9a,0xb1,0x13,0xb4,0x88,0x64,0x2c,0xa0,0x81,0xd1,0x5c,0x7e, 0xb4,0xd2,0x3,0x4b,0xcc,0x51,0x9f,0x98,0x71,0xef,0x4d,0xfb,0x44,0x40,0xe3,0xcd, 0x4e,0x7f,0xda,0xac,0xc5,0x2e,0x58,0x48,0xe3,0x2a,0x39,0x38,0x39,0xe3,0xf2,0xab, 0x22,0x55,0x54,0xe,0x84,0x32,0x93,0xc1,0x31,0xf0,0x5,0x50,0x58,0xb8,0x5c,0x3, 0xc9,0xe3,0xd6,0x9b,0xf6,0xc8,0x0,0x39,0x94,0x55,0x41,0x23,0x1e,0x59,0x93,0xe6, 0xe9,0xc0,0x19,0xa4,0x31,0x80,0x32,0xc8,0x99,0x3d,0xb1,0xfc,0xe8,0xb8,0x8b,0x4d, 0xa8,0x5b,0x22,0xee,0x32,0x8c,0x7a,0x80,0x4d,0x31,0x75,0x5b,0x46,0x38,0x49,0x4b, 0x1f,0x40,0xa7,0xfc,0x2a,0x93,0xdb,0xc6,0xe0,0x2c,0x81,0x41,0x1c,0x8c,0x2,0x3f, 0xad,0x27,0xf6,0x62,0x11,0xbc,0xc8,0xc0,0x75,0xf9,0x8e,0x40,0xaa,0x4e,0x3d,0x40, 0xd3,0x4b,0xd8,0x64,0x0,0x86,0xc0,0x3d,0x9,0x18,0xa5,0x37,0x2b,0x9c,0x5,0x66, 0xf7,0x3,0x22,0xa9,0x44,0xb0,0xae,0x76,0xc8,0xaf,0x9e,0xa3,0x6f,0x5a,0x9a,0x14, 0x49,0x14,0x81,0x13,0x22,0xf7,0xe7,0x19,0xa4,0xdf,0x60,0x2c,0x79,0xe0,0x7d,0xe0, 0x47,0xd7,0xbd,0x31,0xae,0x99,0x54,0xb7,0x96,0x36,0xf,0xe2,0x2e,0x5,0x46,0x32, 0x80,0xa8,0x1f,0x41,0xd7,0x8f,0xa9,0xa8,0xcc,0xb0,0x12,0x43,0x90,0xae,0x3a,0x61, 0x49,0x3f,0x96,0x28,0x2,0xc7,0xdb,0x62,0x65,0xf9,0x5d,0x18,0xfa,0x6,0x1f,0xce, 0x8f,0xb5,0xa6,0x38,0x2a,0x5f,0xfb,0xa0,0xe6,0xab,0xa4,0x8c,0xb1,0xef,0x2c,0xce, 0x3d,0x5f,0xe5,0x3f,0x80,0x2,0x94,0xbb,0x15,0x67,0xdb,0xb0,0x63,0x82,0x41,0x24, 0xfd,0x33,0x46,0xa0,0x49,0xf6,0xac,0xb9,0x52,0xc8,0x7d,0x36,0x9d,0xd4,0xc9,0xee, 0x99,0x36,0x88,0xfc,0xb2,0xcc,0x71,0x8e,0x69,0x4,0x7b,0x23,0x54,0xde,0xe3,0x23, 0x24,0x8c,0xc,0x7e,0x95,0x19,0x95,0x55,0xca,0x89,0x19,0xce,0x38,0x5,0x4f,0xfe, 0x85,0x40,0x10,0xdf,0xde,0x94,0xb7,0x7d,0xae,0x8c,0xc7,0x2a,0x70,0xa4,0x7f,0x5a, 0xce,0x92,0xee,0xe8,0x1,0xb6,0x65,0x4c,0xc,0xd,0x89,0x8e,0x29,0xfa,0x8b,0xee, 0x36,0x91,0xed,0xf9,0xda,0x46,0x62,0x7,0xf7,0x54,0x7f,0x89,0x5a,0xa8,0xcd,0x93, 0xeb,0x5b,0xd2,0x82,0x7b,0x99,0x54,0x9d,0xb6,0x24,0x37,0x37,0x4e,0xbb,0x4c,0xe1, 0x47,0xfb,0x28,0x33,0xfa,0xe6,0x9a,0xd3,0x5c,0x9c,0x66,0xee,0x46,0xfa,0xa2,0x7f, 0xf1,0x35,0x1d,0x15,0xab,0x84,0x4c,0x7d,0xa4,0x89,0x45,0xdd,0xea,0x8c,0xb,0xe9, 0x80,0xf6,0x54,0x18,0xff,0x0,0xc7,0x6a,0x15,0x32,0x2a,0xed,0xf3,0xa4,0x24,0xf5, 0x62,0x46,0x4f,0xe3,0x41,0x3f,0x5a,0x14,0x66,0x9c,0x63,0x14,0x1c,0xf2,0x63,0x94, 0xb8,0x20,0xf9,0xd3,0xff,0x0,0xdf,0xe7,0xff,0x0,0x1a,0xb1,0x69,0xf3,0x6a,0x11, 0x1e,0x49,0x55,0x76,0x3b,0x98,0x9c,0xe0,0x63,0xfa,0xd4,0x1b,0x4f,0x15,0x3e,0x9e, 0xad,0x26,0xa5,0x18,0x46,0xda,0x52,0x36,0x62,0x7f,0x11,0x53,0x57,0x97,0x96,0xe5, 0x53,0x94,0x9c,0x8d,0x89,0xa5,0x64,0xa,0x4c,0x2f,0x22,0x9e,0x77,0x2e,0x30,0x3f, 0x5a,0x8e,0x4c,0x48,0x72,0x53,0x28,0x3a,0x53,0xa4,0x25,0xa6,0x2c,0x9b,0x82,0x9e, 0x9,0xd9,0x9e,0x68,0x31,0xb0,0x90,0x28,0x74,0xda,0x3d,0x7a,0xd7,0x26,0x87,0x51, 0x2,0x5,0x8d,0xd8,0x46,0x70,0x71,0x92,0x41,0xa6,0x38,0x28,0xbb,0xcc,0x9f,0x29, 0xee,0x30,0x6a,0x6d,0x8a,0x49,0xe4,0x28,0xfe,0xf3,0xf4,0xa8,0xdd,0xa,0x7c,0xd0, 0xb4,0x98,0xee,0x53,0xe5,0x1f,0x9d,0x16,0x60,0x36,0x29,0x11,0x43,0x79,0x8b,0x85, 0x61,0x80,0xef,0x1f,0xf8,0x1a,0x2,0x96,0x83,0xca,0x51,0xbe,0x3d,0xc3,0x3b,0x7b, 0x73,0x4c,0xf3,0x4f,0x95,0xba,0x33,0xb0,0x67,0xbb,0x92,0x73,0xf8,0x8a,0x95,0x58, 0x14,0x18,0xc0,0x6e,0xe7,0x18,0x19,0xa2,0xc2,0x7a,0x16,0x25,0x9d,0x22,0x3e,0x51, 0x8,0xbe,0x81,0x9b,0xff,0x0,0xad,0x4c,0x66,0xe8,0xa2,0x32,0xca,0x7d,0x38,0xa5, 0x16,0xef,0x24,0x7,0x74,0x6a,0x18,0xff,0x0,0x7c,0x64,0x9a,0xaf,0x12,0xcb,0xa, 0x98,0xdd,0x16,0x54,0xed,0xb4,0x92,0x7,0xe3,0x8a,0x40,0x48,0xd1,0x7,0xd8,0x64, 0x1,0x4e,0xec,0x6,0x66,0x27,0x68,0xa4,0x49,0xa7,0x69,0x5c,0x85,0xde,0xc0,0xf2, 0xa0,0xf2,0x3d,0xf9,0xa6,0xb1,0xf2,0xd9,0x7c,0xa8,0x48,0x93,0x39,0x23,0x70,0xc1, 0x1f,0x89,0xa9,0x9a,0x70,0xea,0x16,0x21,0x22,0xb1,0xea,0xbb,0x8,0x39,0xfc,0x68, 0xb,0x90,0x85,0x37,0x4c,0x59,0xd9,0xf0,0xa7,0xf8,0x97,0xa7,0xe5,0x47,0x98,0x9e, 0x76,0x19,0x4e,0x14,0x77,0x35,0x39,0x50,0x90,0xa9,0x93,0x2d,0x93,0x8e,0x46,0x3f, 0x4a,0x64,0x89,0xe5,0x46,0x58,0x72,0x49,0xe3,0x6a,0x8c,0xfe,0x5d,0xe9,0xa6,0x17, 0x18,0x24,0xf3,0x6,0x47,0xcc,0xa7,0xa2,0xaf,0x38,0xfa,0xe2,0xa6,0x8a,0x9,0xe3, 0x4c,0xa3,0xc6,0x7,0x5d,0xa4,0x1f,0xeb,0x50,0x2b,0x2e,0xef,0x99,0xee,0x3,0xf7, 0x1e,0x58,0x15,0x2c,0xc0,0xc6,0x8a,0x52,0x4f,0x94,0xff,0x0,0x9,0xe0,0xff,0x0, 0x2a,0x57,0x4c,0xa,0xcd,0x33,0xcb,0x22,0x79,0xce,0x48,0x1e,0xd9,0x0,0xd3,0x89, 0x60,0xa4,0x82,0x41,0xcf,0x4,0x8c,0x67,0xf0,0xa2,0x24,0xf9,0x72,0x39,0x51,0xf7, 0xb3,0xc5,0x5,0xe0,0x4,0x1e,0xbc,0x83,0x80,0x72,0x4f,0xe7,0xd2,0x8d,0x84,0x86, 0x16,0xc3,0xed,0x7d,0xe4,0xf5,0xa,0xbd,0xe,0x7a,0x93,0x53,0x47,0x24,0x92,0x2f, 0x9,0xb1,0xbf,0xba,0x48,0x39,0xfa,0x54,0x2e,0x42,0x4e,0x8e,0x4b,0xa1,0x69,0x36, 0xc,0x75,0xe7,0x90,0x3d,0x3b,0x54,0x86,0x56,0xc,0x76,0x37,0xcf,0x9c,0x7d,0xcf, 0xea,0xd,0x2e,0x62,0xc5,0x92,0x72,0x36,0xfc,0xfb,0x41,0x3f,0x74,0xc,0x92,0x7f, 0x1a,0x73,0xc3,0x3f,0x4,0x48,0xc1,0x48,0xef,0x16,0xe2,0x28,0x46,0xb8,0x52,0xe4, 0x80,0xd9,0x1d,0x10,0xbf,0x1f,0x5a,0x74,0x1b,0x99,0x70,0x6d,0xe6,0xe,0x3f,0xbc, 0x8d,0x83,0x4a,0xe2,0xb0,0xd9,0xa1,0x68,0xca,0x7c,0xc0,0x29,0x1c,0xb0,0xdd,0x93, 0xf9,0xf4,0xa7,0xaa,0xab,0x44,0x18,0x28,0x2e,0xbd,0x32,0xdb,0x89,0xfc,0xc5,0x48, 0xbe,0x63,0xa1,0xdd,0xf,0xcd,0x9f,0xe2,0x43,0x51,0xc8,0x97,0x41,0xb0,0x21,0x91, 0x97,0xd4,0x10,0x29,0x5c,0x9,0x7c,0xe6,0x75,0x65,0x8f,0x2,0x45,0xea,0xac,0x31, 0x9a,0x7b,0xaa,0xc8,0x8b,0xe6,0x2f,0x2a,0x32,0x71,0xc0,0x14,0x91,0xac,0xc5,0x4a, 0xf9,0x6e,0x4e,0x72,0xb,0xf1,0x8f,0xc6,0x87,0xb7,0x9c,0xa6,0x44,0x6a,0x5c,0xf5, 0xe3,0x8f,0xe7,0x46,0xa2,0x23,0x83,0x3e,0x72,0xcc,0x8a,0x40,0xc9,0x4,0x1c,0x74, 0xf6,0xa9,0x53,0x68,0xb8,0x23,0x62,0xa1,0x5e,0xa5,0x4d,0x22,0x45,0x71,0x9,0xdc, 0x62,0xf3,0x89,0x18,0xcb,0x38,0x18,0xa6,0x9b,0x39,0x1a,0x6d,0xed,0x1f,0x5e,0xa0, 0x3e,0x39,0xa3,0x50,0x26,0x62,0x7c,0xc2,0xd8,0xf,0xee,0x17,0x7,0xf5,0xa4,0x89, 0x99,0x63,0xfd,0xe0,0xc1,0x24,0xe0,0xf0,0x4d,0x3e,0x38,0x5d,0x1,0xdc,0x14,0x83, 0xd8,0x92,0x68,0x8e,0x6,0x8d,0x9b,0x6e,0xd5,0x56,0x39,0xc0,0x6e,0x9f,0xa5,0x3d, 0x40,0xa3,0x35,0x94,0x4d,0x31,0x74,0x88,0x2c,0x80,0xee,0x57,0xde,0x70,0x7d,0x88, 0xcd,0x4a,0xa4,0xe7,0xe7,0x38,0x62,0x3e,0x6d,0xb8,0x61,0x8f,0xc2,0xa4,0x92,0xcd, 0xb2,0xcc,0x92,0x2,0xc7,0xfb,0xfc,0x8a,0x8e,0x2b,0x39,0x55,0xf3,0x23,0x40,0x7, 0xa2,0x47,0x40,0xc7,0xa9,0x86,0x45,0xda,0x64,0x27,0x7,0x9c,0xae,0x3f,0x98,0xa8, 0xa3,0x89,0x84,0x8c,0x36,0x21,0x52,0xdc,0x66,0x3c,0xf1,0xf5,0xab,0x5f,0x66,0x38, 0xc2,0xca,0xc3,0xf0,0x18,0xfe,0x54,0xbf,0x66,0xdc,0x41,0x91,0x8b,0x11,0xd3,0xb5, 0x0,0x66,0x5d,0xd9,0x19,0x91,0xd6,0x39,0x42,0xc8,0xad,0xe6,0x43,0xba,0x33,0x85, 0x3d,0xc1,0x3e,0x84,0x1c,0x55,0x18,0xe4,0x32,0xc5,0x92,0x85,0x19,0x49,0x57,0x43, 0xd5,0x58,0x70,0x45,0x74,0x42,0x16,0x4,0x9d,0xcb,0xcf,0xa2,0xe3,0xfa,0xd6,0x56, 0xa3,0x64,0x60,0x9b,0xed,0x71,0x95,0x44,0x7c,0x2c,0xc7,0x1d,0x3d,0x1b,0x1f,0xcc, 0xfa,0x73,0xda,0x9a,0x76,0x26,0x4a,0xe5,0x12,0x87,0xb9,0x3,0xf1,0x14,0xcc,0xd5, 0xc7,0xb5,0x75,0x45,0x71,0x23,0xf5,0xc1,0x18,0x7,0x1f,0xfd,0x7a,0x6c,0x3a,0x78, 0x9f,0x71,0x37,0x52,0x81,0x9e,0x17,0x72,0xe4,0x7d,0x72,0x2a,0x95,0x41,0x28,0xb2, 0xa3,0x1e,0xd5,0x19,0xe2,0xb4,0x1f,0x4b,0xb7,0x8f,0x25,0xee,0x67,0xf7,0xcb,0xa8, 0xc7,0xe9,0x4c,0x5d,0x2e,0x30,0xdb,0x64,0xb8,0x90,0x47,0x9c,0x6,0xc,0x7,0xe6, 0x71,0x4f,0x9d,0xb,0x91,0x94,0xc6,0x7d,0x4f,0x1c,0xf4,0xa4,0xb4,0x98,0x69,0xcc, 0x63,0xf2,0x89,0xb3,0x62,0x59,0x4a,0x13,0x98,0x8f,0x71,0x8e,0x78,0xcf,0x3f,0x9f, 0xe1,0x72,0x3d,0x32,0x5,0x91,0x92,0x63,0x70,0xc7,0x38,0x5,0x25,0x20,0x1a,0x49, 0xf4,0xe8,0x63,0xbc,0x58,0x95,0x25,0x60,0xe8,0x7e,0x53,0x29,0x39,0x23,0xf1,0xe2, 0x94,0xa4,0x99,0x4a,0x2d,0xe,0x11,0x4b,0x2c,0x8f,0x32,0x95,0x28,0xd8,0x60,0x41, 0xdd,0xd8,0xe,0x87,0x1e,0x9f,0xad,0x5a,0x2,0xe2,0x25,0xd,0xb9,0x66,0xc8,0xfb, 0xac,0x2,0x30,0xfa,0x75,0x15,0x5,0xa5,0xad,0xad,0xbb,0x95,0x8,0xf1,0xab,0xe0, 0x60,0x4a,0xc3,0x7,0xb6,0x40,0x3e,0xff,0x0,0x9e,0x3d,0x6b,0x55,0x6d,0x23,0x56, 0x53,0xf3,0x71,0xd3,0xe6,0x3f,0xe7,0xf3,0xac,0xf9,0xbb,0x94,0x52,0x2c,0xc1,0x9f, 0xcc,0x85,0xd0,0x15,0xea,0x71,0xfd,0xd,0x16,0xfe,0x5c,0x70,0xee,0x79,0x37,0x12, 0x30,0x37,0x3e,0x76,0xd5,0xc6,0xd3,0xed,0xa4,0x93,0xcc,0x74,0x25,0xbd,0x77,0x1a, 0x5f,0xb1,0x43,0xc1,0xc3,0x64,0x7f,0xb6,0xdf,0xe3,0x45,0xc0,0xa8,0xf1,0xbe,0x15, 0x92,0x48,0xc8,0xee,0xa6,0x52,0xb9,0xfa,0x11,0x4f,0x45,0x8c,0xb1,0x47,0x77,0x2c, 0x47,0x2,0x46,0x27,0x15,0x31,0xb2,0xb7,0x2e,0x58,0xa6,0x4f,0xa9,0x24,0xd2,0x1b, 0x48,0x71,0xc2,0x1,0xf8,0x9a,0x96,0x32,0xb9,0x32,0x7,0x2a,0x72,0x43,0x7d,0xe2, 0xa3,0xa1,0xf5,0xa4,0x72,0xbc,0x33,0x48,0xc9,0xb3,0xf8,0x98,0x8c,0x1f,0xce,0xa5, 0xfb,0x15,0xb8,0x6c,0xf9,0x7f,0xf8,0xf1,0xff,0x0,0x1a,0x69,0xb3,0xb7,0x52,0x4f, 0x92,0xa4,0x9f,0x5e,0x6a,0x79,0x84,0x20,0x24,0x8d,0xff,0x0,0x23,0xab,0x0,0x37, 0x2a,0xe7,0xfa,0xd4,0x49,0x1f,0x94,0xec,0xa9,0x22,0x9c,0xc,0xe3,0x69,0x53,0xfa, 0xe6,0xa5,0x36,0xb6,0xe7,0x19,0x81,0x3f,0x15,0x6,0x9c,0x2d,0xed,0xc6,0x40,0x82, 0x31,0xff,0x0,0x1,0xa5,0xce,0x32,0x1,0x20,0x68,0xb6,0x22,0xec,0xc9,0xce,0x43, 0x0,0x73,0x52,0x44,0xf1,0xc7,0xf2,0x31,0x2a,0xcd,0xd8,0xbe,0x7f,0x2e,0x6a,0x41, 0x6d,0x6e,0x46,0x3c,0x88,0xbf,0xef,0x81,0x48,0x6d,0x60,0x3f,0xf2,0xef,0x9,0xff, 0x0,0x80,0xa,0x39,0xc0,0xcf,0x93,0x4f,0x88,0x83,0x89,0x0,0xcb,0x71,0xbc,0x2, 0x0,0xfc,0xf9,0xab,0x61,0x91,0x22,0x11,0x6e,0x8f,0x23,0xab,0x46,0x36,0xd4,0xbf, 0x65,0xb7,0x23,0x1f,0x67,0x8b,0xfe,0xf8,0x14,0x7d,0x9a,0xdc,0x71,0xf6,0x78,0xbf, 0xef,0x81,0x49,0xcc,0x8,0xb,0x88,0xa3,0x2c,0x43,0x14,0xe9,0xf3,0x11,0xfc,0xea, 0xbb,0x43,0x19,0x99,0xae,0xa3,0x75,0x12,0x30,0x1b,0xb6,0x37,0xca,0xd8,0xe9,0xbb, 0xde,0xaf,0x88,0x63,0x53,0xc4,0x51,0x8f,0xf8,0xd,0x29,0xb7,0x83,0xaf,0x94,0x99, 0xff,0x0,0x74,0x52,0xe7,0x19,0x9e,0xb7,0x21,0xb8,0x12,0x8,0xc8,0x7,0x85,0xc1, 0x3,0xdf,0x81,0x52,0x46,0x88,0x9,0x79,0x18,0xbe,0x47,0x5,0x99,0x9b,0xf5,0xcd, 0x58,0x9a,0xdd,0x25,0x4d,0xb8,0xdb,0x8e,0x85,0x78,0x2b,0xee,0x2a,0x25,0x77,0x88, 0x84,0xb9,0xc0,0x39,0xda,0x1c,0xf4,0x6f,0xfe,0xbf,0xd2,0x8e,0x60,0xb2,0x1b,0x1b, 0x79,0x21,0xb1,0x9d,0xa7,0xa7,0xef,0x8,0x7,0xf5,0xe2,0x90,0x38,0x6d,0xa9,0x19, 0x60,0xe4,0xfc,0xca,0xb2,0xb1,0x0,0x55,0xa5,0x18,0x3d,0x31,0xec,0x69,0x49,0xc7, 0x7,0xf2,0xa6,0xa4,0xc2,0xc4,0x17,0x12,0xc7,0xb9,0xa3,0x91,0xf3,0xd8,0x2e,0x76, 0x81,0xf8,0x8a,0x61,0x5c,0xc8,0x8a,0xae,0xe1,0x71,0xc8,0x13,0x31,0x6,0xad,0x64, 0x7f,0xf5,0xa9,0x9,0xcf,0x52,0x78,0xa1,0xc8,0x76,0x21,0x67,0x45,0x21,0x8b,0xc5, 0x17,0xae,0xe4,0xdd,0xfa,0xd3,0x92,0xf2,0xd0,0xb9,0x10,0xf9,0x8e,0x7,0x52,0xac, 0x42,0xfe,0x44,0xd4,0x99,0x3d,0x47,0x1f,0x4a,0x68,0x18,0xcf,0x27,0xf3,0xa4,0xa6, 0x3b,0x11,0x99,0xa0,0x95,0xc8,0x8f,0x6b,0x38,0xe4,0x8c,0x62,0xab,0xbd,0xcc,0x4b, 0xf7,0xa4,0x23,0x7,0x9c,0xc2,0x70,0x2a,0xee,0x33,0xd4,0x9a,0x4e,0x47,0x42,0x7f, 0x3a,0x39,0xc5,0x62,0xac,0x57,0x11,0x39,0x66,0x8d,0x1c,0x1,0xc8,0x6d,0xb8,0xfc, 0xb8,0xa4,0x17,0x5b,0x81,0x32,0x6f,0x71,0xe8,0xc0,0xe2,0xae,0x64,0x93,0x8a,0x46, 0x52,0x49,0xe4,0x9a,0x7c,0xef,0xb0,0x58,0x84,0x88,0xde,0x32,0x44,0x28,0x72,0x33, 0xb5,0x41,0x1f,0xc8,0x55,0x46,0xb8,0x91,0x40,0x3e,0x41,0xc0,0x3d,0x11,0x58,0x11, 0xf8,0x81,0x56,0x59,0x8c,0x77,0x68,0xbc,0x6d,0x91,0x4e,0x41,0xf6,0xff,0x0,0xf5, 0xd4,0xa0,0xf3,0x91,0x8c,0xfb,0x71,0x4f,0xda,0x3e,0xc3,0xe5,0x29,0x24,0x85,0xe2, 0x92,0x46,0x83,0x1e,0x8a,0xe1,0xbf,0x91,0x1f,0xca,0xb3,0x5a,0xde,0x29,0xa4,0x32, 0xc4,0x92,0xdb,0xc9,0xd3,0x31,0xc0,0xea,0xf,0xd5,0x48,0xc1,0x15,0xbc,0x72,0x3b, 0x9f,0xcc,0xd1,0x93,0xef,0xef,0x53,0xce,0xfb,0x7,0x29,0xce,0xb4,0xaf,0x14,0x82, 0x29,0xa3,0x64,0x90,0xf0,0xbf,0x29,0x1,0xbe,0x99,0xfe,0x55,0x20,0x32,0xb0,0xc8, 0x86,0x52,0x3d,0x76,0xf1,0x5b,0x32,0xc4,0xb3,0x21,0x8d,0xd1,0x59,0xf,0x5,0x48, 0xa8,0x19,0x1a,0x18,0x96,0x34,0x6,0x58,0xc1,0xe5,0xb,0x1d,0xc0,0x7b,0x1f,0xf1, 0xe7,0xde,0x9a,0xa8,0x27,0x3,0x5b,0xc1,0xe1,0xf1,0x78,0x59,0x19,0x41,0xd9,0x8d, 0xc3,0x1f,0xde,0xae,0xa2,0xb0,0x3c,0x35,0x20,0x93,0xed,0x45,0x73,0x8f,0x94,0xc, 0xfe,0x35,0xbf,0x5e,0x95,0x7,0x7a,0x68,0xe7,0x96,0xe7,0x9,0xf1,0x21,0x43,0xd, 0x33,0x20,0x11,0xfb,0xde,0x8,0xcf,0xf7,0x2b,0x80,0xf2,0xa3,0x5c,0xe2,0x38,0xc0, 0x3d,0x72,0xa3,0x15,0xdf,0xfc,0x48,0x38,0xfe,0xcc,0xf7,0xf3,0x7f,0xf6,0x4a,0xe1, 0x6d,0x62,0x96,0xfa,0xe0,0xc1,0x6c,0x86,0x47,0x5e,0x5c,0x81,0x90,0x83,0xdc,0xf4, 0xac,0xab,0x59,0x49,0xb6,0x5d,0x3b,0xbd,0x2,0x24,0xc,0x30,0x88,0xab,0xee,0x78, 0x7,0xd8,0xe,0xa4,0xfb,0x57,0x41,0x69,0x6e,0xb6,0x20,0x41,0x11,0x73,0x2b,0x80, 0xf2,0xee,0x52,0x84,0xfb,0xf4,0x1c,0x73,0x53,0xd9,0xe9,0x76,0xf6,0x76,0x3,0x63, 0xaa,0xcc,0x79,0x69,0xb3,0x86,0xfc,0x8,0x3c,0x54,0xf6,0xd2,0xda,0x58,0xcc,0xe8, 0x81,0x22,0x57,0xe4,0x96,0x93,0x96,0xfa,0x3,0xcf,0xe7,0xeb,0x5c,0x73,0x9f,0x31, 0xaa,0x8d,0xb7,0x1d,0xe5,0xb9,0x8c,0xa4,0xd9,0x58,0xa4,0x63,0x88,0xd7,0x97,0x71, 0xf8,0x1c,0xe3,0xf1,0xa7,0xdc,0x18,0x2c,0xed,0xed,0xed,0xe2,0xb5,0x48,0x1e,0x76, 0x8,0x50,0xf,0x98,0xe,0xe7,0xaf,0x35,0x32,0x16,0x96,0x43,0xfb,0xc8,0xd1,0x4f, 0xf7,0x5f,0xe7,0x61,0xe9,0xcd,0x36,0x4f,0x31,0x23,0x9b,0x6c,0x33,0xf3,0xca,0xc6, 0xb0,0xee,0x3f,0x89,0xe9,0x59,0xf9,0x16,0xb5,0x1f,0x2d,0xa4,0xa0,0x28,0x65,0xf3, 0x22,0x5e,0x81,0xdf,0x0,0x7f,0x5c,0xd5,0xc8,0x86,0xf8,0x2,0x2a,0x86,0x8,0x46, 0xd1,0xe6,0x11,0xfa,0xd6,0x5a,0x6a,0x3e,0x5d,0xbf,0xef,0xae,0xe2,0x80,0x2f,0x58, 0xe2,0x42,0xe4,0x1,0xd7,0x21,0x4e,0x1,0xab,0x1e,0x6e,0xa1,0x3c,0x47,0xec,0xb6, 0xc6,0x3b,0x76,0x1,0x95,0xe6,0x94,0x2b,0x30,0xf5,0xf6,0xaa,0x48,0x9d,0x4b,0x81, 0xee,0xd6,0x46,0x2e,0xcd,0xe5,0xf5,0xc0,0x6c,0xe0,0x7d,0x77,0x64,0xd5,0x79,0x3c, 0xcb,0xab,0x7d,0xef,0x6a,0x64,0x46,0x24,0x85,0x77,0x20,0xb0,0x1d,0xf1,0x54,0xad, 0xfc,0xc8,0xaf,0x18,0x3c,0x70,0x82,0x7,0x2c,0xb2,0x7,0xc8,0xef,0x92,0x31,0xcd, 0x3e,0xf5,0xa6,0x82,0xe6,0xde,0x45,0x8e,0x22,0x87,0x82,0x92,0x13,0x90,0x3d,0x4e, 0x4e,0x5,0x0,0x49,0x6e,0xf6,0xc9,0x11,0x6f,0x25,0x50,0x75,0x65,0x45,0xdd,0xb0, 0x7d,0x7a,0x7e,0x54,0xe3,0x3d,0xae,0xf0,0x43,0x21,0xd,0xd1,0x95,0x76,0xe0,0x7e, 0x7c,0xfe,0x54,0xb2,0xc1,0xc,0xaa,0x14,0xb8,0x78,0xcf,0x45,0x59,0xe,0xd3,0xf4, 0xc7,0x51,0x4d,0x96,0xdb,0x4f,0xff,0x0,0x50,0xa0,0x45,0x26,0x33,0xbc,0xb9,0x20, 0x7e,0x7c,0x52,0xb0,0x99,0x24,0x77,0xa,0xab,0xb2,0x4c,0xca,0x80,0x92,0x85,0x49, 0xcf,0xea,0x45,0x17,0x12,0xc9,0xb9,0x7c,0x98,0x77,0x23,0x75,0x2f,0x29,0x38,0xfa, 0x8c,0xff,0x0,0x5a,0xa8,0xf7,0xd6,0x59,0x11,0xbf,0x9c,0x8e,0x9c,0x6f,0x59,0x6, 0x4f,0xe1,0xb8,0x8a,0xb4,0x93,0x99,0xe1,0x67,0xc1,0xd8,0x47,0x1e,0x63,0xaf,0xf2, 0xcd,0x27,0xa0,0xb,0x69,0x70,0x19,0x3c,0x8b,0x8b,0xa5,0x8d,0xdb,0xa4,0x71,0xc7, 0x8c,0x7d,0xe,0xe,0x4d,0x2a,0xda,0x82,0x43,0x9,0xce,0xfe,0xde,0x70,0x5,0xbf, 0xcf,0xe1,0x4c,0x5b,0x9d,0xe1,0x4c,0x79,0x6c,0x1f,0xb8,0x23,0xe3,0xf0,0xe6,0xa7, 0x53,0x2f,0x5,0x56,0x51,0xe8,0xa,0x10,0x7f,0x3e,0x2a,0xb7,0x11,0x13,0x89,0x62, 0x70,0x18,0x3a,0xb1,0x38,0xca,0xb1,0x4c,0xfe,0x58,0xa9,0xa1,0x84,0xbc,0xa7,0xcc, 0x19,0x1d,0xb2,0xc5,0x8f,0xeb,0x4d,0x30,0x13,0x92,0x2d,0xa5,0x66,0x3c,0x92,0x46, 0x4f,0xe7,0x57,0x21,0x8a,0x42,0x81,0x8d,0xab,0xa1,0xee,0xb9,0x1c,0xd5,0x21,0x30, 0xf3,0x62,0x48,0xdb,0x20,0x83,0x8c,0x0,0x14,0xf3,0x51,0x17,0xf3,0x23,0xf3,0x8, 0x55,0x39,0xc0,0xdc,0x49,0x3f,0x90,0x15,0x29,0xb7,0x91,0xc3,0x6,0x84,0x82,0x7e, 0xe1,0xdf,0xf7,0x7f,0x2a,0x74,0xa4,0x59,0x59,0xf9,0x93,0x96,0x76,0x3,0x18,0x1c, 0x96,0x63,0xc0,0x3,0x1d,0x4e,0x6b,0x6b,0xae,0x82,0x2a,0x7c,0xb3,0x9f,0x2d,0x96, 0x42,0x18,0x7c,0xcd,0xd3,0x8f,0xc4,0xd4,0xb2,0x23,0x5,0xc2,0xa9,0x18,0xc1,0x5d, 0xc7,0x8e,0x3d,0xa9,0x61,0xb7,0xba,0x55,0x56,0x55,0x8d,0x5c,0x81,0xbf,0x2e,0x70, 0x7d,0xba,0x54,0x8f,0x65,0x23,0xca,0xae,0x63,0x8b,0x70,0xe9,0xbe,0x56,0x60,0x3f, 0xc,0x50,0x98,0xc1,0xe4,0x9d,0xe3,0x1f,0x32,0x1,0x8e,0x49,0x52,0x4d,0x36,0x68, 0xcf,0x96,0x24,0x48,0xa3,0x2e,0x46,0x3e,0x7e,0x31,0xef,0x8c,0x54,0xe6,0xce,0x46, 0x3,0x32,0xb2,0xfb,0xa1,0xc5,0x3f,0xec,0xf2,0x6d,0xa,0x24,0x42,0xa3,0xa6,0xe4, 0x24,0xff,0x0,0x3a,0x77,0x15,0xca,0x11,0xc4,0xcb,0x3,0xb4,0xc9,0x2c,0xaa,0x7, 0xdc,0x40,0x11,0x7f,0x9d,0x58,0x13,0xcc,0x1a,0x34,0x58,0xe2,0x7,0xfb,0x99,0x24, 0x81,0xf5,0xff,0x0,0xeb,0x54,0xe6,0xd2,0x47,0x18,0x92,0x7c,0xaf,0xa2,0xa0,0x14, 0xe1,0x67,0x1a,0xb6,0x7a,0x1a,0x2e,0x17,0x2b,0x44,0xae,0x65,0x79,0xee,0x63,0x59, 0x1,0xfb,0xa0,0x0,0x4a,0xfd,0x29,0xcd,0x76,0x8d,0x28,0x0,0x32,0x1,0xd7,0x78, 0x1c,0xfe,0x55,0x6d,0xad,0x95,0xf6,0xe5,0xdf,0x0,0x74,0x7,0x83,0x41,0xb4,0x8c, 0x9f,0xe9,0xb5,0x7f,0xc2,0x8d,0x45,0x72,0x9e,0xc6,0xb8,0x6d,0xcf,0x2c,0x41,0x3d, 0x3,0x53,0x46,0xc6,0x53,0x1e,0x10,0x8c,0xf5,0x39,0xfe,0x43,0xad,0x5e,0x5b,0x28, 0x41,0xce,0x18,0x9f,0xf7,0xcd,0x38,0x5a,0xc4,0xe,0x42,0x9f,0xfb,0xe8,0xd1,0x66, 0x17,0x28,0x3c,0x85,0x7e,0x4f,0x2e,0x35,0x5c,0xe0,0x1d,0xa1,0x4f,0xea,0x69,0xce, 0x23,0x38,0x5f,0x31,0x94,0x76,0xe6,0xae,0x2d,0x95,0xb8,0xcf,0xee,0x54,0xe7,0xd4, 0x93,0xfd,0x69,0x7e,0xc5,0x6c,0x46,0xd,0xbc,0x47,0xea,0x82,0x9d,0x98,0x5c,0xa2, 0x59,0xd5,0xb0,0x13,0x64,0x43,0xf8,0xdb,0x2d,0x9a,0x91,0x55,0x9d,0xb,0x47,0xb7, 0x27,0xa1,0x7c,0xa8,0x35,0x78,0x5b,0xc4,0x17,0x68,0x89,0x31,0xd8,0x6d,0x1c,0x53, 0xc4,0x48,0x6,0x2,0x80,0x3e,0x94,0xf9,0x45,0x73,0x2d,0xe5,0x6b,0x76,0x6,0xe2, 0x58,0xdb,0xfd,0x84,0xe4,0x7e,0x67,0x9a,0x91,0x6e,0x95,0xc0,0x3b,0xe,0xf,0xa9, 0x15,0xa5,0xb4,0xe,0x80,0x7e,0x54,0x63,0x8a,0x76,0x61,0x73,0x2a,0x47,0x98,0xb0, 0xe0,0x24,0x7f,0xec,0xa3,0x31,0x3f,0xa0,0xa3,0x12,0xbb,0x6d,0xa,0xe0,0x9e,0x9b, 0xc1,0x1c,0x56,0x91,0x18,0xff,0x0,0xf5,0x53,0xa,0xf1,0xfe,0x79,0xa4,0xd0,0xce, 0x62,0xf1,0x5e,0x6d,0x5e,0x51,0x14,0x12,0x48,0xd1,0xc4,0x91,0xfc,0xa0,0x75,0xce, 0xe3,0x8e,0x40,0xfe,0xed,0x44,0xd6,0xd7,0x61,0xb0,0xd6,0xac,0xa7,0xd0,0xc8,0x99, 0x1f,0xf8,0xf5,0x6b,0xc2,0xa9,0x25,0xb9,0xb9,0x73,0x20,0xe,0xcc,0xfb,0x57,0x80, 0xc0,0x93,0x8c,0xe3,0xdb,0x14,0xb6,0xc1,0x19,0xb,0x46,0xaa,0x1f,0x3d,0x36,0xe0, 0x81,0xf8,0x8a,0xb8,0xcd,0xc5,0x68,0x4c,0xa9,0xa9,0x6e,0x63,0x1b,0x3b,0xc1,0x9f, 0xf4,0x62,0x31,0xd8,0xc8,0xb9,0x3f,0xad,0x2,0xd6,0xec,0xb8,0x45,0x85,0x77,0x13, 0xce,0xe9,0x0,0x3,0xeb,0x8c,0xd6,0xde,0x79,0xd8,0xca,0xe8,0x73,0xd0,0xa1,0xc7, 0xe7,0xda,0xa1,0x59,0x23,0x12,0xca,0xae,0xa,0x10,0x73,0xf7,0x81,0x14,0xfd,0xa4, 0x89,0xf6,0x28,0xc9,0xfb,0x2d,0xc8,0x56,0x66,0x85,0x70,0xa7,0x4,0xab,0x64,0x7d, 0x69,0x52,0xd2,0xe1,0xe3,0x32,0x6,0x88,0xc,0x64,0x2e,0xe,0x4f,0xf2,0xad,0x41, 0xe5,0xb0,0x77,0x5,0x4a,0xb0,0xe4,0x80,0x40,0x3f,0x51,0x9a,0x53,0x19,0xd8,0x2, 0xac,0xad,0x1a,0x8c,0x86,0xb,0xf2,0x8a,0x5e,0xd2,0x41,0xec,0xa2,0x64,0xfd,0x9e, 0x44,0x94,0x47,0x2d,0xd5,0xbc,0x6d,0x8c,0xe1,0x51,0x9f,0xf0,0xe2,0xaf,0x69,0x76, 0xb2,0xa5,0xdd,0xc8,0xde,0xa4,0xec,0x51,0xbf,0x61,0x1c,0x64,0xf6,0x27,0xda,0xac, 0x8c,0xcf,0x90,0xa3,0xcb,0x71,0xf3,0x2e,0xee,0xfe,0xa4,0x71,0x53,0xda,0x31,0x79, 0xe4,0x66,0xfb,0xfe,0x54,0x61,0x8f,0xa9,0xe4,0xff,0x0,0x5a,0x99,0x4e,0x4f,0x46, 0x5c,0x62,0x96,0xc4,0x82,0x3,0xf3,0x12,0xc0,0xe7,0xd1,0x7f,0xfa,0xf4,0xc8,0xad, 0x5d,0x4f,0xfa,0xd0,0x54,0x74,0x1b,0x39,0xfc,0xf3,0x57,0x0,0xa7,0x85,0xa5,0x62, 0x8a,0xd,0xa7,0x87,0x93,0x7b,0x4c,0xe7,0xdb,0xb5,0x4a,0x6d,0xb9,0xf9,0x65,0x74, 0x1e,0x8b,0x8a,0xb5,0xb6,0x94,0x2d,0x16,0xb,0x95,0xd,0x94,0x65,0xb7,0x6e,0x7c, 0xe3,0x9e,0x7a,0xd0,0xb6,0x11,0x28,0x38,0x69,0x39,0xff,0x0,0x6b,0xa5,0x5d,0xb, 0x4b,0x8a,0x39,0x44,0xca,0x8b,0x68,0x8a,0x41,0xd,0x27,0x3,0x1c,0xb9,0x3f,0xce, 0x97,0xec,0xd1,0x63,0x1b,0x0,0x1d,0x70,0x3d,0x6a,0xd6,0x29,0x36,0xd1,0x61,0x5c, 0xaf,0xf6,0x68,0xd9,0x70,0xca,0x58,0x7a,0x16,0x38,0xa5,0x5b,0x64,0x5e,0x8b,0x8f, 0xa5,0x58,0xb,0x4b,0x8a,0x2c,0x17,0x20,0x31,0x29,0x4,0x30,0xc8,0x3d,0x8f,0x4a, 0x45,0x86,0x34,0x18,0x44,0x55,0x1e,0x95,0x63,0x14,0x98,0xa2,0xc3,0xb9,0xf,0x94, 0x83,0xf8,0x45,0x21,0x4c,0x9e,0x95,0x36,0x29,0x31,0x4a,0xc1,0x72,0x2d,0x9b,0x7a, 0x0,0x7,0xb5,0x1b,0x78,0xc0,0xa9,0x31,0x40,0x18,0xa2,0xc1,0x72,0x9d,0xfd,0xbb, 0x4f,0x67,0x22,0x20,0x3e,0x62,0xfc,0xf1,0xf0,0x9,0xe,0x8,0x23,0xaf,0xd2,0xa5, 0x8a,0x45,0x9e,0x28,0xe5,0x5c,0xed,0x75,0xc,0x1,0xed,0x9e,0x6a,0x7c,0x67,0xf0, 0xf5,0xaa,0x96,0x20,0x44,0x66,0xb7,0xe3,0x11,0xc9,0xf2,0x80,0x3a,0x2b,0x72,0x3f, 0x5c,0xd2,0x68,0x77,0x2c,0x62,0x8e,0xd8,0x34,0xec,0x51,0x8a,0x76,0x1,0x9b,0x73, 0xff,0x0,0xd6,0xa5,0xb,0x8a,0x78,0x14,0x15,0xa7,0x61,0x5c,0x4c,0x71,0x4b,0x8c, 0x9c,0xe3,0x14,0xab,0x9e,0xe2,0x9d,0x8f,0x6a,0x2c,0x2b,0x8c,0x23,0xfc,0xe2,0x80, 0xb4,0xf2,0x28,0x2,0x9d,0x82,0xe3,0x30,0x69,0x31,0xfe,0x71,0x52,0xed,0xa4,0xdb, 0x4a,0xc1,0x72,0x3c,0x63,0x8e,0x68,0xc5,0x48,0x56,0x93,0x69,0xa4,0x17,0x23,0x23, 0x8a,0x4c,0x8a,0x73,0xf,0x5a,0x68,0x3,0xd2,0x90,0xc7,0x0,0xd,0x47,0x22,0x2b, 0x2b,0x2b,0xc,0xa9,0x18,0x23,0x1d,0x45,0x3b,0x38,0xa0,0x9a,0x77,0x56,0x3,0x4, 0x62,0xd2,0xec,0x58,0x4e,0x76,0x6,0x1b,0xa0,0x94,0x67,0xc,0xbf,0xdd,0x3e,0xa4, 0x71,0xcf,0xa7,0xd3,0x99,0x25,0x92,0x8,0xc0,0x42,0x5d,0xa3,0xeb,0xb9,0x17,0x20, 0x7d,0x7b,0x8a,0xbf,0x7d,0x6a,0x2e,0xad,0x8a,0x67,0x63,0x2f,0xcc,0x8d,0x8c,0xed, 0x61,0xc8,0x3f,0xe3,0xed,0x9a,0xab,0xc,0xec,0xc5,0x95,0xa2,0x55,0x23,0x87,0xa, 0x79,0xd,0xc0,0xe4,0x7a,0x1e,0xe,0x7b,0x8c,0x54,0x5c,0x62,0x32,0xe6,0x35,0x31, 0xcc,0xb2,0xee,0x21,0x72,0x70,0x54,0xf,0xe7,0xfa,0xd1,0x2a,0xa9,0x21,0x8,0xc, 0xf,0x41,0xef,0x55,0xae,0x55,0xa1,0x8d,0xc2,0x96,0x98,0xb1,0x2c,0x89,0x14,0x40, 0x5,0xf7,0x6e,0xb5,0x66,0xdc,0x4f,0xbb,0x32,0x36,0x32,0xb,0x18,0xf6,0x1,0xf9, 0x1c,0x55,0x58,0x64,0x72,0xdb,0xb1,0x21,0x22,0x2f,0x1c,0x64,0x64,0x94,0x24,0xf, 0x7c,0x53,0xa0,0x8c,0x5,0x52,0xc5,0xd8,0xa7,0xa,0x58,0xe4,0x91,0x40,0x41,0xa, 0x99,0x56,0x76,0x68,0x9b,0x8d,0x92,0x9e,0x86,0xa5,0x6b,0x56,0x8e,0x26,0x58,0x82, 0x2c,0x8c,0xe,0x70,0xc7,0x1c,0xf7,0xa4,0x22,0xb5,0xd4,0x71,0xab,0x6e,0x91,0x47, 0x94,0x78,0x1e,0x9f,0x4f,0x7a,0xb5,0x69,0x72,0x1b,0x11,0x33,0x29,0x23,0x85,0x6c, 0xf2,0xd8,0xea,0x3e,0xbf,0xce,0xab,0xc0,0xb2,0x42,0xaf,0xb,0xfc,0xb1,0x94,0xc2, 0xb1,0x60,0x77,0x1e,0xf8,0xfd,0x2a,0xb7,0xd9,0xfc,0xe5,0x29,0x1,0x69,0x95,0x47, 0x21,0x58,0x9,0x23,0x61,0xd0,0x8c,0xe3,0xde,0x86,0x6,0xf0,0xa2,0xb3,0x6c,0x6f, 0x5e,0x61,0xe4,0x5c,0x65,0x6e,0x90,0x65,0x95,0x86,0x37,0xf,0xef,0xf,0x51,0xfc, 0x8d,0x5d,0xe,0x7d,0x2a,0x1b,0x18,0xe2,0x69,0xd,0x21,0x39,0xa4,0x35,0xd,0x80, 0x86,0x98,0x79,0xa7,0xe0,0x91,0x40,0x46,0x3c,0x1,0x9a,0x9b,0x36,0x17,0x23,0xc6, 0x29,0x31,0xcf,0x4a,0xb2,0x2d,0xdc,0xf5,0x0,0x54,0x8b,0x6e,0x7b,0xd3,0x50,0x6c, 0x2e,0x8a,0xa2,0x33,0xd4,0x73,0x4f,0x11,0xb1,0xed,0x57,0x4,0x60,0x62,0x9d,0x81, 0xe9,0x56,0xa9,0x77,0x15,0xca,0x62,0x12,0x3b,0x50,0xd0,0x93,0xda,0xae,0x11,0x9a, 0x4d,0xb5,0x4e,0x9a,0x15,0xca,0x26,0x1e,0xe4,0x53,0x4a,0x9f,0x4a,0xd0,0xdb,0x4d, 0x31,0xe4,0x54,0xba,0x7d,0x87,0x73,0x3f,0x67,0x39,0xc5,0x35,0xd1,0x5d,0x4a,0xb2, 0x86,0x7,0xb1,0xe6,0xae,0xb4,0x7,0xb7,0x35,0x3,0x42,0xc3,0x3c,0x56,0x6e,0xd, 0x2,0x66,0x7b,0xa3,0xc0,0x37,0x6,0x67,0x4f,0xcc,0xaf,0xf8,0x8f,0xd7,0xeb,0x4e, 0x0,0x96,0x1f,0x36,0x72,0x33,0x9a,0xb2,0x54,0xe7,0xd2,0xa1,0x64,0x68,0xc9,0x31, 0x2e,0xee,0xe5,0x6a,0x2d,0xa9,0x77,0x14,0x29,0xe7,0x34,0x85,0x4e,0x72,0xe,0x29, 0xc8,0xea,0xeb,0x9e,0x7e,0x87,0xb5,0x38,0xa9,0xa0,0x64,0x7c,0x8e,0xa7,0x26,0x93, 0xbd,0x3c,0xf5,0xa8,0xd8,0x8c,0xd0,0x31,0xfb,0x49,0x14,0xa0,0x7a,0xd3,0x1,0xe7, 0x14,0xe0,0x46,0x28,0xb8,0xb,0x83,0x49,0x83,0x4e,0x7,0x22,0x91,0x8e,0x39,0xfc, 0xe9,0x88,0xaf,0x25,0xb8,0x92,0x74,0x95,0x89,0xca,0x2,0x0,0xfa,0xd3,0x8a,0x7a, 0x1c,0x7e,0x14,0xe2,0xe3,0x2a,0x7,0x53,0x4e,0xc7,0x6,0x97,0x51,0x91,0xe3,0x3, 0x9e,0x69,0x31,0x4e,0xe8,0x68,0x27,0x2,0x9b,0x1,0xb8,0x1e,0xbc,0xfb,0xd3,0x76, 0x8c,0xff,0x0,0x3a,0x5c,0xf2,0x38,0xa0,0xb2,0xaf,0x52,0x6,0x69,0x3,0x36,0x3c, 0x3e,0xa1,0x4d,0xc9,0xee,0x76,0xf3,0xf9,0xd6,0xdd,0x63,0x68,0x3f,0xf2,0xf1,0xff, 0x0,0x1,0xfe,0xb5,0xb3,0x5e,0xae,0x1b,0xf8,0x48,0xe5,0x9f,0xc4,0x71,0xde,0x3c, 0xb1,0x5b,0xd5,0xb0,0x1b,0xa4,0xe,0xa6,0x40,0xaa,0xa7,0x0,0xe7,0x6f,0x5e,0x3d, 0xab,0x27,0x4f,0xd1,0xa4,0xb4,0x8d,0x14,0xdc,0x28,0x55,0xe7,0xca,0x44,0xda,0xb9, 0xf7,0xf5,0xae,0xb7,0x5f,0x0,0xfd,0x9b,0x23,0x38,0xdc,0x7f,0x95,0x64,0x86,0x3d, 0xab,0x87,0x15,0x27,0xed,0x1a,0x3a,0x29,0x7c,0x24,0x2,0x16,0x62,0x47,0x9a,0x3d, 0xc2,0xa0,0xff,0x0,0x38,0xa0,0xd8,0x45,0x2b,0x17,0x91,0x13,0x71,0x18,0xdc,0x51, 0x58,0xfe,0x64,0x1a,0xb4,0x87,0xa,0x3,0x63,0x9a,0x6,0x1,0xda,0x39,0x23,0xd2, 0xb1,0x49,0x17,0x62,0x9b,0xe9,0x3e,0x6a,0x79,0x66,0xf2,0xe4,0x47,0xfd,0xd5,0x28, 0x7,0xfe,0x83,0x9a,0x47,0xd1,0x61,0x68,0x7c,0xa6,0xb9,0xbc,0x74,0xee,0xad,0x36, 0x47,0xe5,0x8c,0x56,0x88,0x38,0x1c,0xff,0x0,0x3a,0x33,0xdc,0x11,0x54,0x5,0x14, 0xd1,0x2c,0xf8,0x27,0xcf,0x2a,0x3a,0x2f,0x98,0x40,0x1f,0x95,0x4e,0xfa,0x5d,0xa4, 0xac,0x37,0xc7,0x33,0x0,0x3a,0xb4,0xcf,0xfc,0xb7,0x62,0xac,0xee,0x1e,0xa3,0x34, 0xe2,0x1,0xe4,0x8c,0xd3,0xb8,0x9b,0x2a,0xd,0x2e,0xc0,0xc,0x79,0x4d,0x8f,0x4d, 0xed,0x8f,0xe7,0x4e,0x4d,0x2e,0xc9,0x14,0x81,0x6d,0x1f,0x3e,0xa0,0x93,0xf9,0xe7, 0x35,0x3e,0x46,0x0,0x14,0xe0,0x7d,0xe9,0x8,0x89,0x6d,0x2d,0xd7,0xfe,0x58,0xc7, 0xc0,0xc6,0x48,0xe7,0xf3,0xa4,0x92,0x8,0x1,0x18,0x86,0x1e,0x7f,0xd9,0x15,0x23, 0x3e,0xef,0x94,0x53,0x7e,0xf6,0x3e,0x51,0x81,0x49,0xb0,0x1e,0x8d,0xb1,0x40,0xda, 0x2,0x8e,0x81,0x47,0x4a,0x7e,0xf2,0xc7,0x0,0xd4,0x6a,0x48,0x27,0x0,0x91,0x4f, 0x45,0x27,0xa0,0xa3,0x71,0x31,0xe1,0x8f,0x5c,0x9c,0xfa,0xe4,0x8a,0x14,0xfe,0x14, 0x6c,0xa7,0xc6,0xbb,0xb9,0x3d,0x5,0x5a,0x10,0xe5,0xfc,0x69,0xdc,0x7e,0x34,0xbb, 0x7d,0x29,0x0,0x23,0x24,0xd6,0x88,0x90,0xfc,0xaa,0xa4,0x60,0x5e,0xde,0x79,0xfc, 0xf9,0x30,0xb1,0x11,0x60,0xf0,0xcd,0xd0,0xb7,0xf4,0x1f,0x8d,0x3a,0xe9,0xc9,0x75, 0xb5,0x8c,0xe2,0x49,0x3e,0xf1,0x7,0x5,0x53,0xbb,0x7d,0x7d,0x2a,0xdc,0x71,0x88, 0xd1,0x51,0x3e,0x54,0x51,0x80,0x7,0x40,0x28,0xb0,0xa,0x17,0x9f,0xad,0x48,0x7, 0x14,0xa2,0x94,0xa,0xd1,0x8,0x6e,0xd0,0x7b,0x51,0xb2,0xa4,0x2,0x97,0x14,0xec, 0x21,0x81,0x71,0x46,0xc0,0x69,0xf8,0xa5,0xaa,0x48,0x43,0x31,0x40,0x14,0xe3,0x4a, 0x5,0x16,0x13,0x1b,0x8a,0x50,0x29,0xd8,0xa2,0x8b,0x0,0x98,0xa0,0xa,0x70,0xa5, 0xc5,0x3b,0x0,0x98,0xa3,0x14,0xb4,0xb8,0xa7,0x61,0xd,0xc5,0x1b,0x69,0xd8,0xa4, 0x34,0xc6,0x46,0x45,0x53,0xbf,0x7d,0x96,0x92,0x4,0x3f,0xbc,0x7c,0x22,0x7f,0xbc, 0x4e,0x6,0x3d,0xea,0xe9,0xe6,0xb2,0xb5,0x53,0x97,0xb6,0x89,0x49,0xe,0x58,0xb8, 0x39,0xc6,0x30,0x3a,0xfe,0x67,0xf4,0xa8,0x90,0xd0,0xd7,0x2b,0x4,0xc6,0xde,0x15, 0x53,0xb5,0x55,0x72,0x4f,0xdd,0xf6,0x3e,0xa6,0xa2,0x94,0xef,0x8c,0x82,0xe4,0x48, 0x84,0x60,0xc6,0x70,0xc4,0xfd,0x2a,0x18,0x95,0x21,0x6d,0xa5,0x8c,0xd3,0x2e,0x49, 0x19,0xea,0x7f,0xaf,0x6a,0x48,0xda,0x41,0x70,0xff,0x0,0x67,0xa,0xe5,0xc9,0x60, 0x76,0x72,0x33,0xeb,0x9a,0x9b,0x96,0x5c,0x63,0x75,0x2c,0x48,0x65,0xda,0x8a,0x3a, 0x8d,0xa4,0x93,0xff,0x0,0x1,0x1f,0xe3,0x51,0xcb,0x2f,0x9a,0x0,0x40,0x1f,0x7, 0x0,0x1,0xb0,0xfe,0x19,0xa5,0x1b,0xa3,0x3b,0x23,0x41,0x86,0xea,0xee,0x79,0xfc, 0xe9,0xb2,0xa2,0x5c,0x3a,0x6e,0x49,0x83,0x2f,0x1b,0xf8,0x5f,0xd4,0x73,0x4a,0xe0, 0x35,0xc4,0xa0,0x5,0x95,0x1a,0x2d,0xc7,0x3,0x7e,0x8,0x3f,0x96,0x45,0x48,0xd6, 0xf3,0xc2,0x84,0x4d,0x38,0x2b,0x8f,0x96,0x2c,0xe7,0x8a,0x19,0x4,0xaa,0x22,0x66, 0x5,0x47,0x79,0x4e,0x7f,0x53,0x51,0x18,0x65,0x8e,0x62,0x8a,0x21,0xf6,0x6c,0x73, 0xf9,0xd1,0x70,0x1f,0x14,0x62,0x22,0xae,0xe4,0x29,0xe8,0x0,0x1d,0xaa,0x4d,0x3d, 0xbc,0xc9,0x2e,0xdf,0x68,0x7,0xcd,0xd9,0x8f,0x60,0xa2,0xa9,0xba,0xc5,0xb8,0x24, 0x93,0xbb,0x75,0xcb,0x3,0x9c,0x1a,0xbf,0xa6,0xc7,0xb6,0x29,0x9b,0x39,0xf,0x3b, 0x91,0xf8,0x1c,0x7f,0x4a,0x4c,0x19,0x7d,0x45,0x3c,0x53,0x40,0xa7,0x56,0x84,0x8b, 0x8a,0x0,0xa3,0x34,0xb4,0x0,0x62,0x8a,0x5,0x38,0xc,0x53,0xb1,0x2c,0x40,0xb4, 0xbb,0x69,0xf8,0xa5,0xaa,0xb0,0x88,0xf6,0xd1,0xb6,0xa4,0xe2,0x83,0x45,0x80,0x8f, 0x6d,0x1b,0x6a,0x4c,0x52,0xe2,0x8b,0x1,0x9,0x4a,0x42,0x95,0x29,0xe6,0x92,0x93, 0x43,0x21,0x2b,0x46,0x2a,0x5c,0x53,0x48,0xc5,0x4b,0x43,0x22,0x60,0x70,0x71,0x55, 0x65,0xfd,0xd5,0xfc,0x72,0x73,0xb2,0x55,0x68,0xdb,0x9e,0xfd,0x57,0xfa,0xd5,0xc2, 0x6a,0x9d,0xe2,0xb3,0xdb,0xb1,0x51,0x97,0x42,0x1d,0x78,0xcf,0x23,0x9a,0x86,0x34, 0x59,0x3c,0x76,0xa0,0x53,0x22,0x71,0x2c,0x48,0xe3,0xa3,0x28,0x22,0x9f,0xd2,0x81, 0x8e,0x2,0x9d,0x8a,0x60,0x6c,0xd3,0xc1,0xaa,0x4c,0x43,0xb1,0x46,0x28,0xcd,0x19, 0xa6,0x4b,0x17,0x14,0xb8,0xa4,0x6,0x94,0x53,0x40,0x18,0xa3,0x14,0xb4,0x53,0x1, 0x8,0xa4,0xa7,0x52,0x1a,0x4c,0x8,0xc8,0x7,0xb5,0x46,0x57,0x15,0x21,0x35,0x19, 0x26,0xa1,0xd8,0xa4,0x33,0x14,0x86,0x97,0x77,0x3c,0xd2,0x31,0xa8,0x63,0x18,0x7a, 0xd6,0x56,0xa5,0x6f,0xb1,0xd6,0xf5,0x3,0x92,0x83,0x6c,0xc1,0x9,0x5,0xe3,0xe4, 0x9e,0x83,0xa8,0xeb,0xf4,0x15,0xaa,0x6a,0x36,0xe7,0x8f,0x5e,0x9c,0x66,0xa5,0x8d, 0x18,0xf2,0x48,0xcd,0x10,0x92,0x30,0x5e,0x16,0x50,0xc1,0xd5,0xb1,0xb7,0x23,0xae, 0x7b,0x82,0xd,0x5c,0x4f,0x31,0x64,0x8c,0x17,0x5f,0x99,0x77,0x79,0xab,0x96,0x63, 0xed,0x8e,0xdf,0x8d,0x67,0xc9,0x6e,0xb6,0x77,0x2,0x1d,0x80,0x5a,0xcc,0x73,0x8, 0xc7,0xa,0xe7,0x24,0xa1,0xe9,0xd7,0xa8,0xfc,0x7d,0xaa,0x78,0x16,0xe8,0xca,0xaf, 0x14,0x68,0xa9,0x9c,0x3c,0x4a,0xdf,0x3a,0x8e,0xe7,0x91,0xfd,0x69,0xa6,0x32,0xc4, 0xaa,0x93,0xef,0x8d,0xe2,0x67,0x3e,0xa7,0x8f,0xf3,0xf9,0x54,0x85,0x65,0xf2,0x17, 0x6b,0xed,0x75,0xe9,0x92,0x7a,0x7e,0x54,0xdb,0x58,0xda,0xcd,0xde,0x39,0x66,0x66, 0x52,0xc4,0x8d,0xee,0x4f,0x1e,0xe2,0xa1,0xd4,0x5a,0x53,0xb1,0xe0,0x12,0xb2,0x91, 0x8c,0xc4,0x4f,0x1f,0x4c,0x1e,0x6a,0x84,0x5,0x9d,0x4c,0x8c,0x49,0x91,0xf2,0x17, 0x97,0x1c,0x7d,0x31,0x50,0x86,0x31,0xca,0x92,0xb2,0xb7,0x99,0x9c,0x1d,0xd1,0xb3, 0x8c,0x7f,0x5a,0x94,0x2,0x14,0xb4,0x71,0xdc,0x4f,0x71,0x8f,0xf9,0x68,0xac,0x9f, 0xfd,0x6a,0x4b,0x59,0x83,0x3a,0x9,0x5f,0xe6,0x62,0x76,0xee,0x51,0x9f,0xc2,0x93, 0x2,0x2b,0xd0,0xd7,0x2e,0x1a,0x38,0x9c,0x4e,0x3e,0x68,0x66,0x8c,0x60,0x2b,0x63, 0xbe,0x4f,0x19,0xc7,0x3c,0x7a,0xd5,0xab,0x3b,0xaf,0xb4,0x26,0xd2,0x71,0x32,0x7c, 0xb2,0x20,0x18,0xc3,0x7b,0xf,0x43,0xda,0x91,0x64,0xdd,0x2e,0xc2,0x81,0xdc,0x64, 0x16,0x8d,0xb8,0x3f,0x81,0xaa,0xf7,0x2b,0x74,0x24,0xfb,0x5a,0xc4,0x91,0x18,0xbf, 0xbd,0x27,0xdf,0x4,0xf2,0xb9,0xc5,0x66,0xd0,0x5c,0xd4,0x55,0x26,0xa4,0x11,0x93, 0x49,0x6b,0x3c,0x37,0x70,0x9,0xa2,0xe1,0x4f,0x4,0x1e,0xaa,0x7f,0xba,0x7e,0x95, 0x70,0x20,0x3,0x8a,0xa8,0xd3,0xb8,0xdb,0x22,0x58,0xb8,0x15,0x20,0x4c,0x53,0xc0, 0xa7,0x62,0xb5,0x51,0xb1,0x17,0x23,0xb,0x4b,0x8a,0x7e,0x28,0x22,0x9b,0x40,0x37, 0x2,0x8c,0x52,0xd1,0x48,0x42,0x62,0x80,0x29,0x45,0x28,0xa4,0x2,0x62,0x93,0x14, 0xfa,0x28,0x2,0x32,0x29,0x8,0xa7,0xd1,0x8a,0x18,0xc8,0x1a,0x20,0xdc,0xe2,0xa2, 0x6b,0x61,0x9f,0xf0,0xab,0x98,0xa6,0x91,0x52,0xe2,0x86,0x99,0x9b,0x35,0x9e,0x46, 0xe4,0x62,0xb2,0x7a,0xf6,0xfc,0x6a,0xa8,0x91,0x84,0x86,0x39,0x13,0x64,0x8a,0x39, 0x5f,0x51,0xea,0x3d,0xab,0x5d,0xfa,0x55,0x2b,0xb8,0x52,0x55,0xda,0xd9,0x7,0xa8, 0x60,0x70,0x41,0xf5,0x7,0xb5,0x63,0x28,0xa4,0x5a,0x65,0x47,0x61,0xbb,0x7,0x20, 0xd3,0x71,0x9c,0x83,0x4c,0x2f,0x24,0x27,0x6c,0xec,0x36,0x74,0x59,0x40,0xc0,0x3f, 0x5f,0x43,0xfa,0x7f,0x59,0x0,0x3c,0x73,0xcd,0x64,0x58,0xd2,0x71,0xda,0x84,0x27, 0x9c,0xd3,0xca,0xe6,0x90,0x2f,0x34,0xe,0xe3,0x97,0xd2,0x87,0x38,0x1c,0x75,0xa5, 0xc0,0x5e,0x6a,0x4,0x94,0xcc,0xbb,0xc0,0x60,0x87,0xee,0x12,0x31,0x91,0xeb,0x41, 0x2c,0x72,0x31,0x2c,0x49,0xea,0x38,0x4,0xa,0x52,0xca,0x46,0x33,0x4a,0x13,0xdc, 0xd3,0x76,0x81,0x49,0x8c,0x42,0x47,0x6a,0x42,0x78,0x34,0xbb,0x5b,0xd3,0x8a,0x69, 0xcf,0x4c,0x51,0xa8,0x8,0xa4,0x93,0xcd,0x3b,0x38,0xef,0x8a,0x61,0x42,0x79,0x14, 0x9f,0x39,0xee,0x40,0xf4,0x22,0x80,0xd0,0xdd,0xd0,0xe,0x7e,0xd1,0xff,0x0,0x1, 0xfe,0xb5,0xb5,0x58,0x9e,0x1e,0x18,0xfb,0x47,0xfc,0x7,0xfa,0xd6,0xdd,0x7a,0xd8, 0x6f,0xe1,0x23,0x9a,0xa7,0xc4,0x63,0xeb,0xa0,0x1f,0x23,0xfe,0x5,0xfd,0x2b,0x23, 0x3,0x8a,0xd7,0xd7,0x3a,0xdb,0xff,0x0,0xc0,0xbf,0xa5,0x64,0x64,0x8c,0x64,0x70, 0x6b,0x83,0x13,0xfc,0x56,0x6f,0x4f,0xe1,0x43,0x58,0x82,0x30,0x72,0xf,0xa8,0xa7, 0x46,0xa,0x80,0x14,0x28,0x27,0xae,0x79,0xa6,0xa8,0xcb,0x74,0x20,0xa,0x72,0x92, 0xa4,0x83,0x8c,0xfa,0xd6,0x29,0x96,0x3c,0x9e,0x70,0x40,0xfa,0xd3,0x80,0x24,0xe0, 0x5,0x3f,0x4a,0x8f,0x39,0x19,0x23,0x8e,0xd4,0xe5,0x18,0xe7,0x2,0x9d,0xf5,0x1, 0xc4,0x71,0xc0,0xc3,0xa,0x9,0xc9,0x4,0xe7,0x3e,0xd4,0xdc,0x64,0x75,0x19,0xa0, 0x2e,0x9,0xc7,0x53,0xd6,0x81,0x12,0x76,0xc8,0x14,0xdf,0x34,0xed,0xe0,0x51,0x90, 0xa3,0x2d,0x9a,0x6,0x1d,0x3e,0x53,0xc5,0x2,0x1e,0x3b,0x1e,0x86,0x9a,0xa3,0x2c, 0xd8,0xe0,0x50,0xe,0x69,0xc4,0x64,0x50,0xc0,0x54,0xdc,0x1,0xe7,0x20,0xf6,0xa9, 0x11,0xd8,0xf6,0xc5,0x46,0x99,0x4,0xa,0x98,0x2f,0xbe,0x69,0xc4,0x96,0x38,0x64, 0x9a,0x94,0xc,0xc,0xa,0x40,0x29,0xdd,0xb1,0x5a,0xa4,0x48,0x99,0x3e,0x83,0xf1, 0x35,0xc,0xd7,0x71,0x41,0x13,0xc9,0x23,0xa9,0xd9,0xce,0x14,0xe4,0x9f,0x6a,0x90, 0xc6,0x9d,0x76,0x2e,0x7d,0x71,0x54,0xf6,0xb,0xdb,0xc2,0xcc,0x33,0xc,0xd,0x85, 0xf4,0x2d,0xea,0x3e,0x9f,0xcf,0xe9,0x4c,0x9,0x6c,0xe2,0x64,0xf,0x2c,0xa7,0xf7, 0xd3,0x60,0xbe,0xf,0xdd,0x1d,0x85,0x5e,0x1c,0xd3,0x11,0x0,0x1d,0x29,0xe0,0x55, 0x24,0xc4,0xc7,0x1,0x4e,0xa4,0x14,0xb5,0x62,0x17,0x34,0xb4,0xda,0x75,0x30,0x16, 0x8a,0x29,0x45,0x51,0x21,0x45,0x14,0x53,0x1,0x40,0xa5,0xa2,0x90,0xd3,0x0,0xa5, 0xcd,0x26,0x68,0xcd,0x0,0x38,0x51,0x48,0x29,0x6a,0x90,0x5,0x34,0xd3,0x8d,0x30, 0x9a,0x40,0x35,0xba,0x7e,0x23,0xf9,0xd6,0x1c,0xd3,0x23,0xeb,0x33,0x64,0x16,0x10, 0x22,0xc6,0x17,0xd7,0x39,0x24,0x8f,0xcc,0x56,0xe3,0x10,0x6,0x4f,0x4f,0xf3,0xfd, 0x33,0x5c,0xe5,0xba,0x34,0xaa,0x2e,0x18,0x4f,0xb6,0x42,0x64,0x60,0x8c,0xa0,0x92, 0x4e,0x47,0x27,0xdb,0x15,0x9c,0xd9,0x48,0xb0,0xb1,0xc6,0xd2,0xee,0x20,0x80,0xbd, 0xc7,0x1c,0xd3,0xd2,0x48,0xa1,0x9b,0x62,0x9,0x54,0x9e,0x7c,0xb0,0xb,0xe7,0xf0, 0x1d,0x2a,0x4,0x37,0x1e,0x4b,0x90,0xbe,0x4a,0x13,0xd0,0xca,0x9,0xc7,0xe1,0x81, 0xfa,0xd3,0xed,0x65,0x8d,0x64,0x32,0x39,0x38,0xd9,0xd7,0x9e,0x5,0x49,0x44,0x4a, 0xff,0x0,0x68,0x66,0xdd,0x2a,0x2c,0x6a,0xdf,0xea,0x56,0x32,0x8,0xfa,0x93,0xd4, 0xd5,0x86,0xf3,0x23,0xb8,0x8d,0x43,0xf9,0x6e,0xc3,0x82,0x6,0xee,0x3e,0x9d,0xa9, 0xd1,0x5a,0xc3,0x13,0xcd,0x28,0xce,0xeb,0x86,0xc8,0x51,0xc9,0x1e,0xe0,0x54,0x57, 0x89,0x72,0x8c,0xb2,0xaa,0x36,0x14,0x6d,0x27,0x39,0xe3,0xdc,0x75,0xa0,0xb,0x4e, 0xa9,0x73,0x1b,0x6,0x71,0x2e,0x38,0x20,0xe0,0x7f,0x2a,0xa2,0xab,0x25,0xbe,0x65, 0xf9,0xee,0x5b,0x3b,0x47,0x65,0x51,0xe8,0x5,0x2b,0x42,0xb2,0x5b,0xf,0x2d,0xca, 0x21,0xe5,0x98,0x26,0xd1,0xfe,0x26,0xa6,0x12,0xcd,0xf6,0x5d,0x82,0x42,0xa,0xf1, 0x81,0xc1,0xfc,0x4e,0x29,0x36,0x4,0x25,0xa5,0x62,0x36,0x92,0x1d,0x59,0x77,0xa1, 0x3,0x80,0x4f,0xff,0x0,0xae,0xad,0xe9,0xc,0x5f,0x4e,0x8e,0x42,0x3e,0xf9,0x77, 0xfc,0xdd,0x8f,0xf5,0xaa,0x56,0x52,0x5,0xb6,0x27,0x18,0xcb,0x1f,0x98,0xf7,0x1e, 0xb5,0x7b,0x4b,0x5d,0xba,0x65,0xa0,0x7,0x81,0xa,0x7f,0x21,0x40,0x17,0x83,0x7b, 0x53,0xf3,0x51,0x67,0x27,0x34,0xea,0xbb,0x88,0x71,0x3c,0xd2,0x6e,0xa6,0x13,0x48, 0x49,0x3,0xa5,0x27,0x20,0x2c,0x3,0x4f,0xaa,0xa1,0x88,0xe6,0x9e,0x25,0xc5,0x35, 0x31,0x34,0x59,0x6,0x8d,0xd5,0x7,0x9b,0xf8,0xd2,0x79,0xde,0xd5,0x7c,0xe8,0x56, 0x2c,0x66,0x8c,0xd5,0x71,0x28,0x3d,0xd,0x2f,0x99,0xef,0x47,0x3a,0x15,0x8b,0x22, 0x93,0x35,0x7,0x9a,0x7b,0x1a,0x3c,0xd3,0xde,0x8e,0x74,0x16,0x26,0xcd,0x37,0x23, 0xd6,0xa1,0xde,0x69,0x37,0x64,0xe3,0x35,0x2e,0xa0,0xec,0x4c,0x5c,0xa,0x61,0x7c, 0xd4,0x66,0x8a,0x9e,0x6b,0x8e,0xc3,0xb3,0x4d,0xc6,0x39,0xa2,0x8a,0x4d,0x81,0x5e, 0xd8,0x6c,0x56,0x8c,0xf0,0x23,0x62,0xa3,0xfd,0xde,0xd5,0x39,0xe2,0xa1,0x66,0xf2, 0xee,0xd5,0xb1,0xc4,0xa3,0x69,0xfa,0x8e,0x9f,0xd6,0xa7,0xa4,0x98,0xc4,0x5e,0x3b, 0x1a,0x92,0x9a,0xe,0x29,0x73,0x54,0x84,0x3a,0x8a,0x4c,0xd1,0xba,0x9d,0xc5,0x61, 0xc0,0xe2,0x97,0x75,0x46,0x4d,0x26,0x68,0xb8,0x58,0x97,0x7d,0x26,0xfa,0x8f,0x34, 0x9b,0xfa,0xd1,0xcc,0x16,0x25,0x32,0x81,0xde,0x9b,0xe7,0x3,0xd4,0xd4,0xc,0xff, 0x0,0x8d,0x20,0x39,0xa9,0x73,0x1d,0x89,0x8b,0xa9,0x34,0xd3,0x8e,0xa2,0xa1,0x6c, 0xd4,0x65,0xc8,0xe4,0x9c,0x81,0x50,0xe6,0x34,0x89,0x1b,0x93,0x49,0x9c,0xa,0x68, 0x60,0x57,0x23,0x38,0xa8,0xcb,0xfa,0x9e,0x2a,0x2e,0x51,0x20,0x6c,0xe6,0x83,0x4d, 0x1c,0x8a,0x5c,0xf3,0xd6,0x8b,0x88,0xad,0x77,0x6c,0x2e,0xa0,0x92,0x9,0x14,0x14, 0x90,0x63,0xa7,0x20,0xf6,0x3f,0x81,0xfd,0x71,0x59,0x36,0xa6,0x48,0xa5,0x68,0xef, 0x1a,0x6c,0xdb,0x0,0xad,0x71,0x18,0xc7,0xca,0x72,0x54,0x91,0xce,0x54,0x81,0xd7, 0xb1,0xc8,0xad,0xf2,0x46,0x3e,0x62,0x0,0xac,0xfb,0xfb,0x79,0x24,0x55,0xb8,0xb2, 0x2c,0x2e,0xe1,0xfb,0x9b,0x5b,0x1b,0xc1,0xc6,0xe4,0xee,0x39,0xc6,0x79,0xef,0x4d, 0x77,0x18,0x80,0xc6,0x23,0x53,0x1b,0xb3,0xc7,0xb8,0x1f,0x30,0x82,0x4e,0xf,0x5c, 0x9a,0x5b,0xf3,0x0,0x45,0x78,0xd2,0x39,0xa4,0xe8,0xb9,0x6c,0x5,0x1e,0xb8,0xaa, 0x96,0x97,0xc9,0x24,0x26,0x62,0xd3,0x34,0x6e,0x78,0x27,0x68,0x23,0x9e,0x43,0x83, 0xd0,0x83,0x9e,0x95,0x65,0xd7,0xed,0x28,0x36,0xa1,0xc2,0xb6,0x3e,0x66,0x20,0x30, 0xfc,0x2a,0x93,0x10,0xcb,0x3b,0x86,0x69,0x1d,0xc,0xc4,0xb6,0x39,0x52,0xdc,0xf, 0xa6,0x7a,0x53,0x26,0x9e,0xd6,0x4d,0xb0,0x8f,0x2d,0x8a,0x1c,0x87,0x52,0xd9,0x4f, 0x5e,0xd4,0x1b,0x86,0xf3,0x1a,0x39,0x2d,0x8,0x8d,0x4f,0xcb,0xb5,0x83,0xfe,0x39, 0x38,0x22,0xac,0xad,0xd4,0x6d,0x10,0xf3,0xa3,0x65,0x3d,0x9c,0x32,0xd0,0xd8,0xe, 0x8a,0x34,0x68,0xa,0x97,0x49,0x73,0xd5,0xc2,0xf5,0xa8,0xf7,0xc7,0x66,0xaa,0xad, 0x18,0xf2,0x4e,0x46,0x73,0xb8,0x7d,0x8,0xa9,0x5a,0x40,0xd1,0x9,0x15,0x94,0x81, 0xc9,0x24,0xd0,0xf7,0x76,0xb1,0xc4,0x5a,0x46,0x56,0xcf,0x44,0x1c,0x92,0x7d,0x85, 0x8,0x43,0x55,0xfe,0xc6,0xed,0x3c,0x51,0x6d,0x19,0x5,0x95,0xf,0xdf,0x53,0xfc, 0xc8,0xfc,0x2b,0x62,0x29,0xa3,0x9a,0x25,0x92,0x26,0xc,0x8c,0x32,0xa4,0x7a,0x56, 0x52,0x3c,0x6f,0xe,0xf2,0xb1,0xb7,0x18,0xc3,0x36,0x7f,0xc,0xd4,0x36,0xf7,0x1f, 0x62,0x73,0x2a,0x2,0xd6,0xc7,0x99,0x90,0x72,0xd1,0xff,0x0,0xb7,0x8f,0x4f,0x5f, 0xc2,0x8b,0xd8,0x19,0xd0,0x3,0x4b,0x50,0xa4,0x8a,0xca,0x18,0x1c,0x82,0x32,0x8, 0xef,0xef,0x4f,0xdd,0x9a,0xd7,0x98,0x9b,0xf,0xcd,0x19,0xa6,0x6e,0x1e,0xb4,0x17, 0x3,0xb8,0xfc,0xe8,0xba,0x1d,0x87,0x1a,0x4a,0x6e,0xf5,0x3f,0xc4,0x3f,0x31,0x41, 0x75,0xfe,0xf0,0x1f,0x8d,0x26,0xd0,0x58,0x70,0xa5,0xa8,0xbc,0xd4,0x1d,0x5d,0x7f, 0x3a,0x51,0x2c,0x67,0xf8,0xd7,0xf3,0x14,0xae,0x16,0x24,0xa3,0x34,0xcf,0x31,0x3f, 0xbc,0xbf,0x98,0xa3,0xcc,0x53,0xfc,0x43,0xf3,0xa2,0xe1,0x61,0xf4,0x53,0x37,0x8f, 0x5a,0x5d,0xe2,0x8b,0x85,0x87,0x52,0x1a,0x69,0x71,0xe8,0x7f,0x2a,0x61,0x94,0x1, 0xc8,0x6f,0xfb,0xe4,0xd1,0x70,0xb0,0x3d,0x54,0x9b,0x93,0x9f,0x4a,0x91,0xe6,0x53, 0x9e,0x1f,0xf0,0x46,0x3f,0xd2,0xab,0xbc,0xab,0x83,0xf2,0xc9,0xff,0x0,0x7e,0xdb, 0xfc,0x2b,0x19,0xb2,0x92,0x21,0x91,0x15,0x90,0xa3,0x0,0xca,0x46,0xa,0x91,0xc1, 0xaa,0x5b,0x5e,0xc8,0x28,0x44,0x92,0x68,0x3f,0xba,0x3e,0x67,0x8c,0x7b,0x7f,0x78, 0x7b,0x75,0x1d,0xb3,0xda,0xdf,0x9c,0x59,0x88,0x10,0xca,0x71,0xec,0x7,0xf3,0x34, 0xd3,0x2b,0x83,0xfe,0xa2,0x4e,0xb9,0x1f,0x77,0xfc,0x6b,0x23,0x44,0x2a,0x3c,0x72, 0xc6,0x1e,0x27,0xe,0x8d,0xd0,0xa9,0xce,0x47,0xb6,0x2a,0x4e,0x33,0xfa,0x7d,0x2b, 0x22,0x74,0x9a,0xda,0x57,0x9a,0xc6,0xdd,0xf7,0x39,0xdf,0x24,0x2c,0xea,0x16,0x53, 0xdf,0xf8,0xb8,0x6f,0x7f,0xcf,0xd6,0xaf,0x5a,0xdd,0xc7,0x75,0x8,0x78,0xcb,0xe5, 0x7e,0x57,0x59,0x17,0x6b,0x23,0x7f,0x75,0x87,0x63,0xfc,0xf8,0x20,0x9a,0x40,0xc9, 0xe5,0x4d,0xf1,0xb2,0x64,0x8c,0xfa,0x53,0x40,0xc2,0xe3,0x3,0x8f,0x4a,0x1a,0x65, 0x53,0x82,0x1b,0x3e,0xca,0x7f,0xc2,0xa2,0x69,0x19,0x9f,0x6a,0x46,0x46,0x7f,0x89, 0xc1,0x3,0xf9,0x51,0x6b,0x81,0x30,0xe9,0x48,0x3a,0x76,0xa8,0xd9,0x95,0x8,0xdf, 0x8c,0x9f,0x63,0x49,0xbd,0x47,0x6a,0x76,0x6,0x4c,0x7d,0xbf,0x9d,0x26,0xd1,0xce, 0x4f,0x5a,0x68,0x70,0x47,0xdd,0x38,0xf5,0xa8,0xda,0x6c,0x64,0x84,0x24,0x7a,0xe4, 0x52,0x12,0x24,0xd8,0x7,0xa1,0xa6,0x95,0xe6,0xa1,0x37,0x78,0xeb,0x1b,0x1,0xee, 0xcb,0xfe,0x34,0xd3,0x76,0x84,0xf5,0x1f,0x4d,0xcb,0xfe,0x34,0xb4,0x1d,0x8e,0x83, 0x41,0x18,0xfb,0x47,0xfc,0x7,0xfa,0xd6,0xcd,0x61,0xf8,0x76,0x4f,0x33,0xed,0x3c, 0x63,0x1b,0x7f,0xad,0x6e,0x57,0xab,0x86,0xfe,0x12,0x39,0xea,0x7c,0x46,0x3e,0xba, 0x48,0x6b,0x6f,0x4f,0x9b,0xfa,0x56,0x43,0xf,0x43,0xd3,0xda,0xb5,0xf5,0xce,0xb6, 0xff,0x0,0xf0,0x2f,0xe9,0x59,0x24,0xf1,0xd6,0xb8,0x71,0x3f,0xc5,0x66,0xf4,0xfe, 0x14,0x35,0x73,0x9e,0x73,0x8a,0x78,0x5c,0xf2,0x68,0x27,0x27,0xd8,0x53,0xc8,0x3c, 0x60,0xf1,0x58,0x58,0xb6,0x33,0x4,0xae,0x33,0x8a,0x55,0x5f,0x97,0x3f,0xca,0x9c, 0x10,0x1,0xf3,0x72,0x69,0x3e,0x45,0xf5,0x3,0xd0,0x53,0xb0,0x84,0xc6,0xe,0x70, 0x5,0x38,0x2,0x57,0x3c,0x64,0x52,0x13,0xe8,0xc5,0x47,0xd2,0x86,0x62,0x40,0x19, 0xa0,0x5,0xc9,0xc7,0x23,0x34,0xec,0x60,0x10,0x30,0x33,0x4d,0x4,0xb7,0x1d,0x71, 0xe9,0x41,0x65,0xc7,0x23,0x34,0x84,0xc5,0x4c,0x91,0xc7,0x41,0xd6,0x9e,0x48,0x3, 0x8a,0x62,0xbe,0x79,0x38,0x7,0xd2,0x97,0x78,0x65,0xea,0x7,0xd4,0x53,0x10,0xe4, 0xc9,0xab,0x28,0x31,0x83,0x50,0xc4,0xad,0xd7,0x23,0xe9,0x53,0x83,0xc5,0x5c,0x51, 0x2c,0x7e,0x70,0x28,0xdc,0x2a,0x3c,0xf3,0x51,0xdc,0xce,0xb6,0xd1,0x19,0x5c,0xf4, 0xe8,0x3d,0x4f,0xa5,0x69,0x71,0xd,0xbc,0x99,0x8b,0x25,0xac,0x18,0x33,0xca,0x71, 0x9f,0xee,0x8e,0xe6,0xad,0x43,0x2,0x41,0xa,0x46,0x83,0xa,0xa3,0x2,0xab,0x58, 0xdb,0x34,0x41,0xa5,0x98,0xee,0x9e,0x4e,0x58,0xff,0x0,0x77,0xd0,0xf,0xa6,0x6a, 0xf0,0xaa,0x8a,0x13,0x14,0xa,0x5a,0x29,0x71,0x56,0x20,0xa2,0x8a,0x33,0x40,0xb, 0x4a,0x39,0xa6,0x83,0x4a,0xe,0xd,0x34,0x21,0xf4,0xb4,0xdc,0xd2,0xe6,0xa8,0x4c, 0x5a,0x28,0xa4,0x3c,0xd3,0x1,0x73,0x46,0x69,0x28,0xa4,0x2,0xd0,0x29,0x1,0xa5, 0xa6,0x3,0xa8,0x14,0xdc,0xd1,0x4e,0xe0,0x38,0x9a,0x61,0xa5,0x26,0x98,0x5a,0x8b, 0x8d,0x22,0x96,0xaa,0xed,0x1e,0x9d,0x31,0x50,0x4b,0x15,0x2a,0xb8,0xf5,0x3c,0x7f, 0x5a,0xa5,0xf6,0xb8,0xc0,0xf2,0xed,0xd2,0x55,0x54,0xc2,0xee,0x0,0x10,0x7,0x61, 0xd6,0x9d,0xac,0xca,0xdb,0xed,0xe3,0x41,0xf3,0x2,0x65,0xce,0x39,0x1b,0x47,0x1f, 0xa9,0xaa,0xd3,0xce,0x9e,0x79,0x57,0x91,0xa4,0x4c,0x0,0xcc,0xff,0x0,0x28,0xdd, 0x9f,0xa7,0x4e,0x95,0x94,0x9e,0xa5,0x24,0x4b,0x70,0xde,0x6a,0x88,0xe4,0x67,0x1b, 0x1b,0x25,0xc0,0xe3,0xe9,0xfa,0xfa,0x53,0x94,0x2c,0x90,0xac,0x8a,0x8d,0x87,0x4, 0x1,0x80,0x79,0xcf,0x1d,0x6a,0x2,0xb7,0x31,0xe5,0xcc,0x81,0xdf,0x77,0x1b,0x7e, 0x65,0xdb,0xed,0xc5,0x3b,0xed,0x73,0xc4,0xe5,0xb7,0x94,0x46,0x3c,0x7,0x65,0xc7, 0xf8,0xfe,0x94,0x8a,0x24,0xf2,0xe5,0x8e,0x50,0xeb,0x2e,0x5c,0x7d,0xed,0x8a,0x31, 0xf4,0xe4,0x7f,0x2a,0xac,0x7c,0xe9,0xa5,0x1e,0x7d,0xca,0x79,0x61,0xb3,0xe5,0x86, 0xa,0x7,0xd7,0x8f,0xeb,0x52,0x79,0xcc,0x92,0x10,0xb,0xbb,0x9e,0x42,0xb0,0x2d, 0x9f,0xc7,0xa5,0x24,0x72,0x95,0xb4,0x90,0xac,0xc,0xce,0x4e,0x8,0x24,0x5,0x26, 0x8b,0x88,0xb4,0xf1,0x96,0x80,0x8,0xdd,0x8a,0x93,0xbb,0xe5,0x60,0x73,0xff,0x0, 0xd6,0xa6,0x48,0xde,0x4e,0x76,0xc5,0x9c,0xc,0xb0,0x50,0x4e,0x49,0xaa,0xb2,0x6, 0x78,0x3e,0x68,0xe3,0x93,0xc8,0x0,0xac,0x6a,0x4e,0x7,0xd3,0x9a,0x95,0x6d,0xa7, 0xd8,0xd7,0xb,0x7b,0x14,0xd2,0xb8,0x4,0x2a,0xa9,0xe9,0xe8,0x39,0xfe,0x94,0x86, 0x57,0xb8,0x55,0x8e,0xca,0x57,0x7c,0xee,0x45,0x6d,0xaa,0xe,0x31,0xc6,0x71,0x5b, 0x76,0xb1,0x18,0x6d,0x21,0x88,0xf5,0x44,0x55,0xfc,0x80,0xae,0x7e,0xf4,0x9f,0xb2, 0xdc,0x47,0xb9,0x5f,0x7e,0x17,0xe5,0x39,0xc1,0x3f,0xe7,0xf5,0xae,0x98,0x67,0xd3, 0x93,0xcd,0x34,0x26,0x1d,0xe9,0x68,0x19,0x14,0xbc,0x9e,0xd4,0xc9,0x1b,0x8a,0x43, 0xc5,0x3b,0x6,0x90,0x83,0xe9,0x48,0x63,0x43,0x66,0x82,0x79,0xa5,0xc5,0x34,0x82, 0x4d,0x4b,0x1,0x49,0xcd,0x37,0x3c,0xe3,0x34,0xa1,0x58,0x77,0xa6,0xb0,0x27,0xbe, 0x3f,0xa,0x4c,0x7,0x7d,0x5,0x28,0x35,0x18,0xdf,0xd0,0xd3,0x80,0x34,0x26,0x4, 0x80,0xd2,0x16,0xe6,0x9a,0x38,0xa5,0xdb,0x9e,0x69,0x80,0x16,0xa3,0x8e,0xb4,0x84, 0x60,0xf1,0x40,0xc1,0x1c,0x2,0xd,0x0,0x28,0x34,0xfc,0xd4,0x78,0xe2,0x94,0xe, 0xbe,0x94,0xc0,0x71,0x6a,0x69,0x6a,0x43,0xf4,0xa4,0x3f,0x95,0x26,0xc2,0xc4,0x57, 0x59,0x30,0x17,0x50,0x37,0x21,0xe,0x33,0xed,0xff,0x0,0xd6,0xcd,0x4a,0x93,0x24, 0x88,0xae,0xa4,0x10,0xc3,0x20,0x8e,0xe2,0x99,0xd7,0x23,0x35,0x5a,0xd0,0xb2,0x46, 0xd1,0x30,0x20,0xc4,0xe5,0x7,0xba,0xf6,0xfd,0x31,0x53,0xcd,0x61,0x97,0x4c,0xf1, 0x8e,0xad,0x8f,0xc2,0x93,0xed,0x50,0x8e,0xaf,0xfa,0x1a,0x8b,0x24,0xf2,0x69,0xfb, 0xb8,0xe7,0xf9,0x53,0xe6,0x61,0x61,0xeb,0x3a,0x3f,0xdd,0xc9,0xfc,0x28,0x69,0x82, 0x8f,0xba,0xed,0xf4,0x15,0x19,0x73,0xd8,0x9a,0x55,0x62,0x7a,0x9a,0x39,0x80,0x7a, 0xce,0x18,0x7d,0xc7,0x1f,0x51,0x40,0x97,0x73,0x63,0x6b,0x7e,0x54,0xdc,0x7e,0x34, 0x84,0x36,0x33,0x9c,0x51,0x76,0x2,0xb4,0xac,0x7,0x11,0xb1,0xf6,0xc8,0xa8,0x4c, 0xf2,0x7f,0xcf,0x16,0xcf,0xbb,0xf,0xf1,0xa5,0xef,0xc6,0x68,0xe4,0xf7,0x3f,0x9d, 0x4b,0x93,0x1,0x82,0x69,0x4b,0x7c,0xd1,0x60,0x7f,0xbe,0xd,0x1b,0xe6,0xea,0xb1, 0x8e,0x7f,0xbc,0xf8,0xa7,0x32,0xee,0xe6,0x9c,0x7,0x7a,0x5a,0x80,0xd0,0xd3,0x91, 0xf3,0x47,0x18,0xff,0x0,0xb6,0x9f,0xfd,0x6a,0x63,0x9,0x89,0xff,0x0,0x57,0x1f, 0xfd,0xf6,0x7f,0xc2,0xa6,0xe7,0xd4,0xd3,0xbb,0x53,0x2,0xb1,0xf3,0x31,0xf7,0x23, 0x7,0xfd,0xe3,0xfe,0x14,0xd2,0xb2,0x9e,0x7f,0x77,0x91,0xef,0x56,0x18,0x73,0xfc, 0xe9,0xb8,0xe7,0x8e,0x95,0x2c,0x8,0xf1,0x29,0x5c,0x6,0x40,0x7f,0xdd,0xcf,0xf5, 0xa4,0x11,0xdc,0x7f,0xcf,0x68,0xff,0x0,0xef,0xd1,0xff,0x0,0xe2,0xaa,0x6e,0x7a, 0xd2,0x8c,0xd0,0x4,0x26,0x2b,0x86,0xe9,0x70,0xa3,0xfe,0xd9,0xe7,0xfa,0xd3,0xd, 0xbc,0xff,0x0,0xc5,0x73,0xbb,0xdb,0xcb,0x15,0x68,0x37,0x34,0xb9,0x6,0x84,0x6, 0x1c,0xf0,0xb6,0x9f,0x77,0xf6,0x9d,0xff,0x0,0xe8,0x92,0xc8,0xc,0xb9,0x0,0x79, 0x6c,0x78,0xcf,0x4f,0xba,0x78,0xcf,0xa1,0xe7,0xb9,0xc5,0xd8,0x22,0x93,0x79,0xcb, 0x36,0xf,0x5,0x8b,0x92,0x3f,0xa,0xb5,0x2c,0x6b,0x22,0x32,0x3a,0x2b,0x23,0x2, 0xa4,0x11,0xd4,0x1e,0x31,0x58,0xb6,0xb1,0x35,0xb6,0xa1,0x16,0x9d,0x24,0x8e,0x23, 0xc6,0x62,0x90,0x31,0x5d,0xea,0x1,0xe0,0x91,0xdc,0x7f,0xf5,0xea,0x93,0xe8,0x36, 0x4d,0x25,0xb4,0x72,0x4e,0x51,0x15,0x61,0x25,0x8e,0x1c,0xb9,0xc,0x7f,0x2f,0xf1, 0xa8,0x6e,0x12,0x2b,0x6f,0xdf,0xdc,0xcc,0x66,0x95,0x7e,0xec,0x62,0x5f,0xf1,0xe6, 0xa7,0x31,0x22,0xc8,0x15,0xd5,0xa4,0x75,0xe8,0x4c,0xe4,0x91,0xdf,0x8e,0xd5,0x23, 0x22,0x49,0x2c,0xf2,0xe3,0xce,0xe3,0x1b,0x4b,0x81,0xb4,0x77,0xeb,0x5a,0x58,0x6, 0x12,0xd3,0xc6,0x81,0x62,0x47,0x89,0xf8,0x64,0x32,0xf4,0xf6,0x23,0xfa,0x8a,0x77, 0x91,0x4,0x24,0x41,0x19,0x5,0xc0,0x2c,0x91,0x92,0x9,0xfc,0x9,0x14,0xc8,0xa3, 0x2f,0x3,0x21,0x79,0x7c,0xcf,0xbe,0xa5,0x5c,0x80,0x7,0xe7,0x56,0xd0,0x47,0x14, 0x65,0xdd,0x3c,0xc7,0x41,0x8c,0xe3,0x2d,0x8a,0x4d,0x9,0x91,0xb5,0xac,0x4c,0xab, 0x11,0x8c,0x29,0x6e,0x59,0x49,0x24,0xe7,0xeb,0x9a,0x92,0x8,0xa0,0x86,0x40,0x15, 0x64,0xe,0x9c,0xee,0x20,0xf3,0xed,0xef,0x51,0x41,0x28,0xfb,0x44,0x8c,0x3e,0xd1, 0x1a,0xf5,0xd9,0x22,0x76,0xa9,0x67,0xb7,0x8e,0xf4,0x23,0xb,0x99,0x2,0xa1,0xc8, 0x8,0xd8,0xc9,0xf7,0x1c,0xd2,0x15,0xc6,0xdb,0xb4,0x76,0xff,0x0,0xb9,0x58,0xdc, 0x41,0x92,0x54,0x30,0xfb,0xbe,0xdf,0x4a,0xb5,0x88,0xbf,0xe7,0x92,0x7e,0x55,0x46, 0xea,0x7,0x8d,0xb,0xa8,0x8e,0x6c,0x73,0xb5,0x86,0x9,0xfc,0x45,0x32,0xde,0xfc, 0x79,0x82,0x19,0x8,0x19,0x3f,0x23,0x76,0xfa,0x73,0xde,0xa6,0x57,0x19,0xa3,0xfb, 0xae,0xd1,0x27,0xe4,0x29,0x43,0x46,0xbf,0xc0,0xa3,0xf0,0x15,0x58,0xca,0x1,0x3c, 0x8e,0x3d,0xe,0x68,0xe,0x18,0x67,0x93,0x8f,0x63,0x53,0xcc,0x55,0x91,0x71,0x64, 0x40,0x78,0x0,0x7e,0x14,0xf0,0xea,0x7d,0x2b,0x3c,0x4a,0x79,0x1b,0xf,0xe4,0x7f, 0xc2,0x95,0x64,0x61,0xc7,0x38,0xfa,0x1f,0xf0,0xa3,0x9c,0x56,0x34,0x83,0xf,0x6f, 0xc2,0x9d,0x9a,0xa4,0x92,0xff,0x0,0x9c,0x54,0xa2,0x41,0x9a,0xb5,0x31,0x58,0x9f, 0x39,0xee,0x7f,0x3a,0x33,0xee,0x7f,0x1a,0x8b,0xcc,0x1d,0xa9,0xb,0x7b,0xd3,0xe6, 0x41,0x62,0x52,0xc0,0x77,0xa5,0xde,0x2a,0xd,0xf4,0x6f,0xa9,0xe6,0xb,0x12,0xb3, 0x2,0x3a,0x66,0x99,0xb8,0x63,0x81,0x51,0x19,0x7a,0xf1,0xfa,0x8a,0x88,0xdd,0x46, 0xbf,0xc4,0x33,0xe9,0x91,0x49,0xc8,0x69,0x16,0x9,0x5e,0xea,0x3f,0x4a,0x63,0x44, 0x8c,0x41,0x28,0xa7,0x1d,0x32,0xa2,0xa1,0x33,0x86,0x19,0x52,0x3f,0x3f,0xf0,0xa0, 0x4e,0x48,0xce,0x3f,0x9f,0xf8,0x54,0xf3,0xe,0xc3,0xa4,0x5c,0x63,0x80,0x47,0xbd, 0x46,0x47,0x38,0xe3,0xf0,0x14,0xad,0x2b,0x15,0x3d,0x8f,0xe3,0xcf,0xe9,0x51,0x99, 0x4e,0x39,0x52,0x7f,0x3,0xfe,0x14,0xae,0x86,0x4,0x95,0x39,0x19,0x3f,0x43,0x54, 0x2f,0x6c,0xc5,0xc3,0x2c,0xc8,0x4c,0x33,0xc6,0xa1,0x56,0x5c,0x3,0x91,0xe8,0xde, 0xa2,0xae,0x33,0x33,0xf0,0x6,0x3e,0xa1,0xa9,0xac,0x9,0xe0,0x2,0xf,0x7c,0x13, 0xfd,0x48,0xa9,0x6c,0xa2,0xb5,0xa3,0x2c,0xb9,0x8e,0xe1,0x76,0x4a,0xbd,0x62,0x38, 0x20,0x8f,0x51,0xc7,0x4f,0x6e,0xd5,0x69,0x6d,0x90,0x1c,0x8e,0x9d,0x97,0x3,0x15, 0x52,0x68,0xde,0x41,0x86,0x46,0x38,0x3f,0x29,0xd9,0xd0,0xfa,0xfd,0xee,0xb5,0x2d, 0xb5,0xd4,0xb1,0xd,0x97,0x81,0xb2,0x78,0x59,0x8,0x3,0x77,0xb1,0x3,0xa5,0x9, 0x81,0x3c,0x90,0x87,0xed,0xfa,0xf,0xf0,0xa6,0x88,0x70,0x31,0x96,0x1f,0x97,0xf8, 0x54,0xdb,0xc7,0x73,0x4d,0xde,0xf,0xd2,0x8b,0x8,0x62,0xc2,0xa8,0x38,0xc9,0x3e, 0xa6,0x98,0xd1,0x3,0xce,0x31,0xf4,0xa9,0x5a,0x40,0x3d,0x85,0x46,0xd2,0x28,0x3d, 0x73,0xf8,0x8a,0x52,0xd0,0x43,0x4c,0x6b,0x9c,0xe4,0xfe,0x78,0xa6,0x79,0x8,0x18, 0x9c,0xbe,0x7f,0xdf,0x34,0xaa,0xe1,0x89,0x3,0x9f,0xc6,0x86,0x38,0x34,0x8a,0x36, 0xfc,0x3e,0x81,0x7e,0xd2,0x47,0x53,0xb7,0x3f,0xad,0x6d,0x56,0x27,0x87,0x9b,0x3f, 0x69,0xff,0x0,0x80,0xff,0x0,0x5a,0xdb,0xaf,0x57,0xb,0xfc,0x25,0xfd,0x75,0x39, 0xa7,0xf1,0x18,0xfa,0xf1,0xc0,0x80,0xff,0x0,0xbd,0xfd,0x2b,0x1b,0x1f,0x75,0xcf, 0xdd,0x35,0xb3,0xae,0x7f,0xcb,0xf,0xf8,0x17,0x1f,0x95,0x62,0x94,0x20,0xe,0x18, 0xfa,0x0,0x9,0xae,0x1c,0x4b,0xfd,0xeb,0xfe,0xba,0x1b,0xd3,0xf8,0x51,0x32,0xb2, 0x9e,0x7,0x6a,0x5c,0x2,0x49,0x39,0xa8,0x36,0x95,0x6c,0x90,0x7f,0x1,0x4e,0x2d, 0x20,0xfe,0xd,0xd9,0xf7,0xc6,0x2b,0xb,0x96,0xc9,0xb1,0xc7,0x7,0x9f,0x7a,0x4e, 0x9f,0x7b,0xad,0x46,0x5a,0x40,0x38,0x1b,0x3f,0x5a,0x3e,0x71,0x82,0x49,0x3f,0x5a, 0xab,0x88,0x90,0xe3,0x18,0xa8,0xf7,0x80,0x8,0x3c,0xd3,0x99,0x46,0xb,0x93,0x8a, 0x8f,0x3,0x3d,0xc9,0xf5,0xa4,0xd8,0x12,0xab,0x2f,0x51,0x91,0xed,0xd2,0x9a,0x0, 0x2d,0x8c,0x1d,0xb4,0x2e,0x48,0xce,0x1,0xfa,0xd3,0x91,0x5b,0x4,0xb0,0x1e,0xc0, 0x52,0xd4,0x4c,0x45,0xca,0x31,0x18,0xfc,0x48,0xa9,0x51,0x37,0x72,0xc4,0x91,0x4c, 0xa,0x4b,0x73,0xde,0xac,0xa2,0x61,0x45,0x54,0x50,0x98,0xe0,0x38,0xc5,0x48,0x7, 0x14,0xc0,0x31,0x4b,0x92,0x2b,0x44,0x48,0xb8,0xe6,0xa0,0xda,0x93,0xdd,0x1,0x8d, 0xde,0x4f,0x3c,0x8e,0x32,0x7a,0x53,0xe7,0x92,0x40,0xbb,0x20,0x0,0xcc,0xff,0x0, 0x77,0x3d,0xbd,0xea,0x4b,0x68,0x7e,0xcd,0x8,0x8f,0x76,0xe6,0xea,0xcd,0xea,0x4f, 0x5a,0xa4,0x22,0x70,0x31,0x81,0x4f,0xe3,0xd6,0xa2,0xe6,0x94,0x67,0x6,0xad,0x3b, 0x8,0x97,0x22,0x97,0x35,0x10,0xcd,0x2f,0x35,0x4d,0x88,0x71,0x6a,0x37,0xa,0x67, 0x34,0x1e,0x94,0xae,0xc0,0x7e,0xe0,0x29,0x77,0xa,0x60,0xc7,0x4a,0x5c,0x62,0x84, 0xd8,0xf,0xdd,0x4f,0x7,0x35,0x15,0x38,0x1a,0xbb,0xb1,0x58,0x93,0x34,0x13,0x8a, 0x66,0x79,0xa5,0xa1,0x30,0xb0,0xbb,0xa9,0x33,0x45,0x25,0x3b,0x85,0x85,0xcd,0x2e, 0x69,0xa2,0x97,0x34,0x5c,0x2c,0x2e,0xe3,0x48,0x58,0xfa,0xd3,0x7a,0xd0,0x4d,0x17, 0x1d,0x80,0xe7,0xd6,0xa0,0x2e,0x41,0xeb,0x53,0x1e,0x6a,0x27,0x50,0x14,0xb1,0x20, 0x1,0xd4,0x9a,0x99,0x2,0x31,0xae,0x5f,0x37,0x12,0xca,0xce,0xa1,0x53,0x11,0xf2, 0x7a,0x9c,0x64,0xff,0x0,0x31,0xf9,0x53,0xa0,0x8a,0x4b,0xd2,0x65,0x23,0xcb,0xb7, 0x2d,0xd5,0x73,0xba,0x41,0x8e,0xc0,0xf4,0x1d,0x39,0xf6,0xaa,0xd0,0x34,0x62,0x28, 0x8c,0xac,0x80,0xcc,0x8f,0x2c,0x9c,0xf1,0xf3,0x1c,0x81,0x9f,0xa6,0x2a,0x5b,0x6d, 0x42,0xe8,0x42,0x8d,0x28,0x6,0x1c,0xf9,0x6b,0xb8,0x10,0xed,0xfd,0x2a,0x52,0xea, 0x55,0x81,0x6d,0x55,0x25,0x37,0x13,0x4d,0x76,0xa8,0x9f,0x2a,0xab,0xb8,0x3,0x1f, 0x4c,0xd5,0xa6,0xb4,0x86,0x59,0x84,0x8f,0x20,0x11,0x85,0xce,0xcc,0x63,0xf3,0x27, 0xad,0x57,0x2e,0x2e,0x27,0x59,0x0,0x55,0x87,0xa6,0x5f,0x69,0x39,0xfc,0xf8,0xa7, 0x4d,0x6e,0x87,0x32,0x48,0xf1,0x11,0x19,0xe1,0x9d,0xb3,0x9a,0x6,0x48,0xe8,0x4c, 0x4d,0xe4,0xc1,0x14,0x59,0x18,0x50,0x7,0x26,0xa1,0x9c,0x4b,0xe5,0x5b,0xff,0x0, 0xa9,0x50,0x1c,0x2b,0x84,0x18,0x24,0xe0,0xf7,0xcd,0x31,0xcd,0xcc,0xe,0xa5,0xc4, 0x92,0xdb,0xb0,0xcf,0x3,0x8c,0xff,0x0,0x3f,0xd2,0x84,0xf3,0x2e,0x19,0xd5,0x20, 0x8d,0x58,0x29,0x2b,0xe6,0x13,0xbb,0xa7,0xb8,0xa2,0xc0,0x2,0xdf,0xcb,0x94,0x4f, 0xe6,0xe7,0x62,0x95,0x68,0x8a,0x1d,0xa7,0x3e,0xa7,0xbd,0x28,0x68,0x21,0x84,0xa4, 0x7e,0x6a,0xed,0x20,0xc9,0x2a,0x70,0x49,0xf6,0xa6,0xbc,0xf3,0x48,0x11,0x54,0x18, 0xc1,0x1,0x64,0x7c,0xe4,0x8e,0xdc,0xe,0x9d,0x6a,0x61,0xc,0x36,0xea,0xca,0x67, 0x90,0xe3,0xf8,0x5f,0xe6,0x66,0x3e,0xd8,0x14,0xd8,0xc,0x99,0x2d,0x86,0x9f,0x2, 0xc3,0x20,0x70,0xf3,0xc4,0xa4,0x9e,0x49,0x25,0xc7,0x5f,0x7a,0xde,0x4,0x3,0xc5, 0x73,0xd2,0x40,0xd,0xc5,0x88,0x28,0x23,0x2d,0x70,0xa4,0xc6,0x3f,0xd9,0xc,0x73, 0xfa,0x56,0xf8,0x18,0xa2,0x22,0x64,0x9d,0x68,0xe9,0x48,0x28,0x34,0xc9,0x17,0xad, 0x34,0xf5,0xa3,0x34,0x84,0xf3,0x45,0xc0,0x5a,0x4e,0x3d,0x33,0x48,0x5a,0x90,0x36, 0x7b,0x1a,0x57,0x18,0xa4,0x8c,0xf1,0x4c,0x61,0x90,0x7b,0x52,0x81,0x8f,0x5f,0xc6, 0x86,0x3c,0x70,0x29,0xc,0x4e,0xa2,0x8e,0xd4,0x82,0x93,0x7f,0x3e,0x94,0x80,0x70, 0x14,0xef,0x4a,0x62,0xfc,0xc7,0xf1,0xa7,0xfd,0xde,0xd4,0xc4,0x29,0x3,0xd3,0x34, 0x80,0x62,0x97,0x34,0x75,0xa0,0x0,0xe2,0x82,0x69,0xf,0x5e,0x4e,0x28,0x14,0xc0, 0x43,0x4d,0x6a,0x79,0xa6,0x95,0x38,0xce,0x69,0x34,0x3,0x76,0xe0,0xf5,0xaa,0xa4, 0x8,0x6f,0x89,0xe0,0x79,0xeb,0xf9,0x95,0xff,0x0,0xeb,0x1f,0xd2,0xae,0x63,0xa1, 0x35,0x4f,0x51,0x26,0x18,0x5,0xc0,0x27,0xf7,0x4e,0x1c,0x81,0xe9,0xd0,0xfe,0x84, 0xd4,0xb4,0x32,0x72,0x29,0x33,0xef,0x9f,0xad,0x3c,0xf3,0xda,0x9b,0xbb,0x7,0x18, 0x7,0xf0,0xa9,0xb0,0xc6,0x92,0x7e,0x94,0xab,0x9f,0xc2,0x94,0xaf,0x5e,0x3a,0xd3, 0x97,0x81,0xfd,0x28,0xb0,0x80,0x12,0xd,0x1c,0xb7,0x53,0x41,0xea,0xd,0x3,0xa5, 0x0,0x26,0xd3,0x46,0xdc,0xf7,0xa0,0x9c,0xc,0x64,0xf3,0xed,0x4d,0x19,0x3,0xda, 0x97,0x51,0x1,0xe3,0x8a,0x70,0xe9,0x4d,0x3d,0x7a,0xf1,0x4a,0x3d,0xa9,0x8c,0x75, 0x2f,0x6a,0x8f,0x77,0x34,0xec,0xd0,0x16,0x14,0x8c,0xfd,0x69,0xbb,0x41,0xeb,0x4b, 0x9e,0x29,0x39,0x14,0x0,0x84,0x1,0x9a,0x6b,0x36,0xc5,0xcd,0x3f,0xa8,0xa0,0xf2, 0x3d,0xa9,0x58,0x8,0xd5,0x8b,0x1e,0x94,0xa3,0x3c,0xf3,0x4e,0xe0,0x7b,0x53,0x7e, 0xef,0xd2,0x90,0xc4,0xce,0x78,0x35,0x5a,0xf2,0xdd,0xae,0x23,0xfd,0xdb,0xec,0x99, 0x5b,0x7c,0x6c,0x3a,0x6,0xff,0x0,0x2,0x38,0x35,0x64,0x30,0x27,0x8a,0x46,0x19, 0x14,0x5c,0x65,0x8,0x6e,0x33,0x11,0x95,0x7f,0x77,0x28,0xf9,0x1a,0x3d,0xbb,0xbe, 0x71,0xd4,0x1f,0xf3,0xde,0xac,0xdb,0xc7,0x2c,0xa8,0xd2,0x4d,0xe5,0x96,0x7e,0x70, 0x13,0x18,0xf6,0x38,0x35,0x4b,0x51,0x63,0x63,0x9b,0xe8,0xa2,0xdc,0xa0,0x8f,0x3d, 0x14,0x64,0x91,0xd9,0x87,0xa9,0x5f,0xd4,0x7d,0x2a,0xca,0x4a,0xeb,0x14,0x77,0x38, 0x12,0x17,0x50,0x3e,0x4c,0xf3,0x9e,0x9f,0xcf,0xad,0x5a,0x6c,0x4e,0xe4,0xc0,0xdb, 0x45,0xb8,0x6,0x29,0x21,0x52,0xa7,0x24,0xe1,0x7f,0x3a,0x64,0x12,0xbc,0x5b,0x84, 0x97,0x8,0xe8,0xa3,0x96,0x5e,0xa,0xfb,0x75,0xa6,0xc9,0x19,0x21,0x53,0xcb,0x75, 0xe7,0x24,0x67,0x2b,0xef,0x41,0x96,0x19,0x43,0x46,0x85,0xe1,0x7c,0x7c,0xc9,0xb0, 0x29,0x6f,0x7e,0x95,0x57,0x11,0x28,0x28,0xea,0xf3,0x2f,0xef,0x1,0xe0,0xe3,0x3d, 0x3e,0x86,0xa0,0x68,0xe4,0x1d,0xb,0x18,0x48,0x27,0xcb,0x31,0xee,0xfd,0x7,0x3f, 0xce,0xa2,0x1e,0x50,0x32,0x4e,0xf0,0x9e,0x6,0x1,0xdc,0xb,0x1f,0xc0,0xd5,0x76, 0x9e,0xe5,0x53,0xce,0xb6,0x77,0x2b,0xd1,0x94,0xaa,0x9d,0xa7,0xb5,0x1c,0xa0,0x4b, 0x6d,0x70,0x64,0x66,0x44,0xf2,0xa3,0x20,0xe1,0x17,0x69,0x4,0x1f,0x70,0x45,0x13, 0x7,0x68,0x1,0x92,0x13,0xb1,0xdb,0xf8,0x4e,0x36,0xb7,0xd4,0x7f,0x3a,0xb8,0xea, 0xcf,0x12,0xb4,0xca,0x86,0x72,0x3e,0xe8,0x60,0x1,0x23,0xdf,0x14,0xbb,0x16,0x68, 0x31,0x2c,0x5e,0x59,0x1c,0x85,0x47,0xe4,0x7d,0x29,0x35,0xd0,0xa,0x71,0xcf,0xc, 0x92,0x2c,0x41,0xc9,0x72,0xbb,0x94,0x1c,0x8c,0x8e,0xfd,0x7b,0xf1,0x56,0x36,0x80, 0x31,0xce,0x3f,0xde,0xc7,0xe5,0xcd,0x50,0x68,0x85,0xc4,0x60,0xad,0xd4,0x6d,0x20, 0x39,0x44,0x61,0x86,0x4,0x1e,0xe,0x73,0xd4,0x7f,0x91,0x53,0xd9,0xdc,0xc9,0x70, 0x84,0xcf,0xb,0xc1,0x3a,0x9c,0x3a,0x30,0x23,0x3e,0xe3,0xda,0xb2,0x94,0x75,0x29, 0x12,0x94,0x46,0x3d,0x33,0xef,0xbb,0x3f,0xd6,0x81,0x1d,0xb8,0x3c,0xed,0xcf,0xbd, 0x3b,0xab,0x77,0xf6,0xef,0x49,0xb7,0x73,0x72,0xcd,0xf8,0x7f,0xf5,0x85,0x48,0xc7, 0x85,0x8c,0xf,0x95,0x50,0x7e,0x2,0x9e,0x36,0x81,0xd8,0x7d,0x2a,0x3d,0x8b,0x8e, 0x44,0x87,0xe9,0xba,0x9a,0x51,0xb3,0x80,0x64,0xc7,0x60,0x43,0x7f,0x8d,0x0,0x4e, 0x24,0x1b,0xb6,0x9f,0xc0,0xfa,0xd3,0xf7,0x1,0xc6,0x79,0xaa,0xf8,0x7e,0xe8,0xd8, 0xff,0x0,0x3e,0xf4,0xe2,0x83,0x1d,0x9,0xff,0x0,0x3f,0x5a,0x4,0x4e,0x1b,0x14, 0x79,0x82,0xa0,0x59,0x0,0xe0,0x21,0x1f,0xe7,0xeb,0x4b,0xe6,0x60,0xf2,0x7f,0x51, 0xfe,0x34,0xae,0x16,0x25,0x2e,0x7,0x3d,0x29,0x9b,0xc1,0xef,0x4c,0xf3,0x23,0x39, 0x1b,0xd3,0xf3,0xcd,0x20,0xc1,0xed,0x9a,0x6,0x38,0x49,0x9c,0xe3,0xa5,0x23,0x6c, 0x71,0xf3,0x7f,0x33,0x4c,0x2d,0x81,0xc8,0xe3,0xd0,0xa,0x40,0xc0,0x8e,0x28,0xb9, 0x48,0x72,0x6c,0x5e,0x9f,0xcc,0xff,0x0,0x8d,0x29,0x6c,0xf5,0x34,0xc1,0xd3,0x38, 0xa0,0xe4,0xf4,0xe7,0xf0,0xa2,0xe1,0x61,0xdd,0x7d,0x29,0x30,0xf,0x38,0x4,0xe2, 0x9b,0x92,0xe,0x33,0xd7,0xda,0x94,0xb6,0x7,0x3c,0x1f,0x7a,0x2e,0x3,0x58,0x6e, 0xef,0x8f,0xca,0x98,0xca,0x30,0x46,0xdc,0x82,0x30,0x73,0xcf,0x14,0xf2,0xc3,0x1f, 0xc3,0xf5,0xaa,0xcf,0x71,0x8,0x6e,0x65,0x8c,0x11,0xfe,0xd2,0x8f,0xe6,0x69,0x31, 0x8c,0xc,0x6d,0x47,0x1,0x9e,0x11,0xd8,0x29,0x25,0x47,0xf5,0x15,0x65,0x65,0x52, 0x8a,0xc3,0x95,0x61,0x90,0x40,0x3c,0xd5,0x46,0xb8,0xc,0x78,0x99,0x70,0x3d,0x64, 0x51,0xfc,0x85,0x46,0xa4,0xc0,0xcc,0xf0,0x4,0x3b,0x8e,0x4a,0x21,0x24,0x1f,0xa6, 0x7,0x5a,0x90,0xb1,0x7c,0xe,0x30,0x19,0x8f,0xe7,0x4e,0xa,0xdc,0x9c,0x37,0xe6, 0x6a,0x8,0x67,0x49,0x86,0xe4,0xde,0x8,0xea,0xe,0x41,0x7,0xdc,0x55,0x8d,0xc1, 0x87,0x5e,0x7e,0xb4,0xf7,0x25,0x90,0x2c,0x6e,0x9,0x24,0x31,0x4,0xd3,0x99,0x4e, 0x7e,0xe9,0x15,0x21,0x65,0xdf,0xb7,0x7,0x38,0xf5,0xff,0x0,0xeb,0xd4,0xe,0xe1, 0x9c,0xe0,0x1f,0xd3,0xfc,0x69,0xf2,0x85,0xae,0x6e,0x78,0x74,0x63,0xed,0x3f,0xf0, 0x1f,0xeb,0x5b,0x95,0x87,0xe1,0xdf,0xf9,0x79,0xff,0x0,0x80,0xff,0x0,0x5a,0xdc, 0xaf,0x57,0xc,0xad,0x49,0x1c,0xf5,0x15,0xa4,0xcc,0x6d,0x78,0x90,0x6d,0xf0,0x48, 0xc8,0x7e,0x9f,0x85,0x61,0x79,0xc5,0xa3,0xda,0xca,0xd8,0x7,0xbb,0x75,0xad,0xfd, 0x70,0x64,0xdb,0xff,0x0,0xc0,0xbf,0xa5,0x63,0x10,0xac,0xb8,0x23,0x8f,0xa5,0x70, 0xe2,0x7f,0x8a,0xce,0x8a,0x5f,0xa,0x2b,0xc5,0x1e,0xd7,0x2e,0xcc,0xc4,0xf6,0x0, 0x60,0xa,0x99,0xd1,0x59,0x46,0xe2,0x40,0x7,0x77,0x4a,0x7a,0x22,0xe,0x99,0xa7, 0x0,0x3,0xe,0x4e,0x3d,0x2b,0xb,0x17,0x72,0x30,0x43,0xfc,0xd8,0x18,0xcf,0x6a, 0x52,0x9b,0x8f,0x23,0x8f,0x4a,0x95,0x63,0x4,0x13,0x83,0x4f,0x44,0x20,0x64,0xf3, 0x9a,0x2c,0x4d,0xca,0xc5,0x72,0x71,0xfc,0x3e,0x95,0x20,0x43,0x81,0x9a,0x98,0xc6, 0x32,0x30,0xa0,0xd0,0x3,0x93,0xc2,0x28,0xfa,0xd5,0x72,0x8a,0xe3,0x23,0x8c,0x9e, 0x95,0x20,0x84,0xa8,0xc7,0x6a,0x7a,0xaa,0xc7,0x81,0x8c,0x54,0xaa,0x3,0x64,0x1a, 0xa5,0x11,0x36,0x35,0x10,0x64,0x10,0x38,0xa9,0x2,0xe0,0xe2,0x9e,0xab,0xc7,0x6a, 0x70,0x5a,0xd6,0x31,0xb1,0x37,0x23,0xdb,0x48,0x48,0x51,0x93,0xd0,0x54,0x9f,0xc5, 0x50,0x90,0xb2,0xc8,0x22,0xc6,0x47,0x53,0x49,0xa1,0xf,0x44,0xdc,0xde,0x68,0xe5, 0x88,0xfd,0x2a,0x50,0xa7,0xbf,0x1f,0x4a,0x15,0x40,0xe8,0x31,0xf4,0xa7,0xa8,0x20, 0x75,0xcd,0x5a,0x88,0x98,0xc3,0x40,0x34,0xe2,0xa2,0x8d,0xb4,0xec,0x2,0xa,0x29, 0xd8,0xfc,0x69,0x76,0xd3,0x1,0x0,0xa5,0x2,0x97,0xa5,0x14,0x8,0x30,0x33,0x48, 0x46,0x69,0xc3,0xde,0x8e,0x3d,0x29,0x80,0x80,0x51,0x8a,0x5a,0x3,0x73,0x8a,0x0, 0x31,0x4b,0x46,0x69,0x9,0xa0,0x42,0x9a,0x4a,0x42,0x78,0xa6,0xee,0xa2,0xe8,0x62, 0xb7,0x6a,0x40,0xe0,0xe4,0xa,0x69,0x7c,0xd3,0x77,0x7b,0x54,0xf3,0x5,0x89,0x73, 0xc5,0x28,0xe6,0x98,0x39,0xa5,0xe8,0x29,0xde,0xe0,0x38,0x8c,0x55,0x1d,0x5d,0x8f, 0xf6,0x5c,0xe8,0x9f,0x7e,0x50,0x22,0x5e,0x71,0xcb,0x90,0xa3,0xf9,0xd5,0xa6,0x3e, 0xa6,0xb2,0xf5,0x1d,0xf2,0xde,0x59,0xc0,0x89,0xbf,0xc,0xd3,0x72,0xd8,0xc6,0xd5, 0xc2,0x9f,0xfb,0xe9,0x97,0xf2,0xa4,0xd8,0xd1,0x19,0xf2,0xad,0x88,0x8a,0x38,0xdf, 0xcb,0x8c,0x1,0xc2,0x83,0xf4,0xe4,0xfb,0x52,0x35,0xc5,0xab,0xaa,0xa4,0xab,0x30, 0x24,0xfc,0xa1,0xc3,0x20,0xcf,0xb7,0xad,0x22,0xa4,0xcd,0x72,0xc,0xb7,0x10,0x6e, 0x5e,0x7e,0x43,0xd4,0x8e,0xf8,0x23,0x14,0xed,0xf7,0x32,0xa4,0xa4,0x4c,0x1a,0x43, 0xd2,0x4d,0xab,0xb4,0xf,0x63,0x8a,0x92,0x81,0x55,0x10,0x4,0xf3,0x12,0x56,0xc1, 0x55,0x4d,0x9f,0xe4,0x9f,0xad,0x4d,0x17,0x91,0x2b,0xf9,0x17,0xc8,0x91,0xc8,0xa4, 0x32,0x67,0x0,0x11,0xec,0x47,0x7f,0x6a,0xa7,0xa7,0x43,0x72,0x2e,0x1c,0xc7,0x82, 0x76,0x80,0xe5,0xc9,0xe3,0xbe,0x3e,0xb5,0x6a,0xef,0x4f,0x37,0x67,0x74,0x93,0x3e, 0xe2,0x48,0x28,0x3a,0x7d,0x46,0x7a,0x7d,0x6a,0x90,0x89,0x75,0x55,0x69,0x22,0x51, 0x14,0x8c,0x24,0x47,0x7,0xcb,0xf,0x8d,0xdd,0xb1,0x9c,0xd4,0x31,0x5b,0x14,0x8c, 0xb4,0xad,0x18,0xe3,0xe7,0x6,0x56,0x93,0x1e,0xc4,0xd4,0x4e,0xae,0x90,0xef,0x6d, 0xce,0x90,0x83,0xc9,0x5c,0xb1,0x23,0xfc,0xf5,0xa8,0xe1,0xb9,0x96,0xe4,0x2d,0xc2, 0xa1,0x31,0x6,0xc6,0xd7,0x38,0x27,0x8e,0xbc,0xc,0x53,0x7b,0x8c,0x59,0x21,0x22, 0x64,0x58,0x2d,0xd6,0x45,0x5f,0x98,0x34,0x3d,0x47,0xd7,0x27,0xd7,0x14,0xf6,0x31, 0x5b,0xdc,0x16,0x57,0x74,0x9d,0xbf,0xd6,0x3c,0x9c,0xe0,0x1f,0x61,0x4a,0x67,0x88, 0xde,0xc8,0xeb,0x1c,0x4b,0x29,0x5c,0xd,0xed,0xf3,0x28,0xf6,0x15,0x4e,0x56,0x9e, 0x7b,0x8c,0xb0,0x95,0xb2,0xe,0x4a,0xc1,0x93,0x8f,0xa0,0xa4,0xc0,0xb4,0xec,0xcf, 0xad,0xe9,0xc3,0x69,0x3b,0x77,0xb9,0x24,0x60,0x9c,0x21,0xc7,0xf3,0xad,0xce,0x7, 0x1e,0x95,0x87,0x69,0xff,0x0,0x21,0x4b,0x58,0x4b,0x83,0x24,0x50,0x48,0x59,0x73, 0x92,0x39,0x51,0xcd,0x6c,0x3,0xcf,0x34,0x96,0x82,0x64,0xdd,0xa8,0xa6,0x6e,0xe2, 0x97,0xb5,0x3b,0x92,0x38,0x53,0x1b,0x3e,0xb4,0xbb,0xb1,0x4d,0x2d,0xcd,0x26,0xc6, 0x33,0x8c,0xf1,0x92,0x69,0x73,0x41,0x3d,0x69,0x99,0x1c,0xf3,0x52,0x32,0x4a,0x4c, 0xe0,0x53,0x77,0x8c,0x53,0x59,0x94,0x75,0x34,0xee,0x31,0xd9,0xfc,0xe8,0xe3,0x20, 0x91,0x4c,0xc,0x8,0xc8,0x34,0x6e,0xc1,0xa2,0xe0,0x48,0x6,0x3a,0x7a,0xe6,0x9d, 0x9f,0x5a,0x83,0xcc,0xfc,0x29,0xc2,0x41,0xe8,0x73,0x45,0xd0,0xac,0x4c,0x7a,0xd2, 0x13,0x81,0x51,0xf9,0xa0,0xf5,0xc8,0xa6,0x89,0x41,0xe8,0x4f,0xe5,0x4a,0xe1,0x62, 0x42,0x78,0xe7,0x6,0x97,0x77,0x19,0x35,0x1e,0xe3,0xff,0x0,0xeb,0x14,0x85,0x98, 0xf6,0xc0,0xa3,0x98,0x9,0x81,0x7,0x9a,0x32,0x7f,0x3,0x51,0x21,0x63,0xd2,0x97, 0x6b,0x67,0x93,0x4f,0x98,0x9,0x33,0x81,0xc1,0xa8,0xe4,0xdb,0x24,0x6e,0xb2,0xc, 0xa1,0x4,0x10,0x7a,0x1a,0x76,0x3d,0x29,0xa,0x1c,0x76,0xcf,0x6c,0xd0,0xc0,0xab, 0x60,0xe5,0xac,0xc2,0x31,0xc,0xf1,0x33,0x46,0xd8,0xff,0x0,0x64,0xe3,0xf9,0x1, 0x56,0x14,0x73,0x9d,0xb5,0x4a,0x12,0xd0,0xea,0xd2,0xc6,0x77,0x6c,0xb8,0x41,0x2a, 0x64,0x70,0xa,0xe1,0x5b,0xff,0x0,0x65,0x35,0x71,0x9c,0xf7,0xc5,0x40,0xc5,0xdd, 0x91,0xd2,0x8c,0x80,0x79,0x34,0xc5,0x73,0xd0,0xe3,0xf0,0xa1,0xba,0xf1,0x8f,0xc6, 0x8b,0x88,0x50,0xf9,0x62,0x3b,0x53,0x83,0x64,0x54,0x40,0x8e,0x9d,0x3d,0xc1,0xa7, 0x9e,0x9e,0xbf,0x8d,0x0,0x38,0x9a,0x40,0x7a,0xd3,0x49,0x1c,0x11,0xf9,0x51,0x9f, 0x9b,0xdb,0xf1,0xa4,0x2,0x13,0x91,0x9c,0x74,0xa3,0x75,0x26,0x7b,0x8e,0x94,0xd2, 0x70,0x6,0x33,0xf8,0xc,0xff,0x0,0x5a,0x2e,0x31,0xe5,0xc8,0x23,0xb,0x9a,0x9, 0x63,0xce,0x47,0xe5,0x4d,0x25,0xbd,0x29,0xa3,0xee,0xe4,0xa9,0x5f,0xc6,0x80,0x24, 0xc9,0xea,0x28,0xf,0x95,0xcd,0x30,0x7e,0x63,0xb7,0x34,0x9e,0xcc,0x38,0x1d,0xf3, 0x4a,0xe0,0x48,0x5b,0xb0,0x34,0xdd,0xe6,0x93,0x78,0xeb,0xf2,0xfe,0x67,0xfc,0x28, 0xce,0x79,0xdb,0x40,0xa,0x1c,0xf7,0xa5,0x2d,0xc6,0x7a,0x62,0x9b,0x83,0xc7,0x4a, 0x5e,0xdc,0xf1,0x40,0x9,0xd4,0xee,0x14,0xa3,0x8e,0xc6,0x80,0x3d,0xf,0xe9,0x48, 0x49,0x20,0xe0,0xf3,0xf4,0xa4,0x30,0x23,0x39,0x1d,0x7,0x7c,0xf4,0xac,0x3d,0xed, 0xa6,0x6a,0x9,0x6f,0x26,0xf4,0xb7,0x98,0x1,0x6f,0x20,0xfb,0xaa,0x7b,0xc7,0xd7, 0xb7,0x25,0x7d,0xb8,0xed,0xce,0xde,0xd6,0x2b,0xf7,0xb1,0xee,0x5,0x43,0x73,0x6b, 0x1d,0xdc,0xf,0xc,0xd9,0xfe,0xf0,0x61,0xc1,0x56,0x1c,0x86,0x1e,0xe0,0xe0,0x8a, 0x68,0x3,0xed,0x72,0xed,0x0,0x79,0xb,0x20,0x24,0x1d,0xef,0x80,0x45,0x36,0xd6, 0x47,0xba,0xb8,0x76,0x32,0xa6,0xd4,0xe1,0x82,0x31,0xc7,0xf2,0xaa,0x8b,0x71,0x1b, 0x5a,0x3c,0x77,0x65,0x20,0xb8,0xc,0x11,0xd7,0x66,0xf5,0x27,0xb3,0x1,0x8f,0xba, 0x7f,0xa1,0x1d,0xaa,0x74,0x8d,0xe2,0x4f,0xdd,0xd,0xc8,0xc7,0x94,0xf2,0xca,0xfe, 0x59,0x35,0xa2,0x64,0xda,0xc3,0xa6,0x92,0x21,0x74,0x4a,0xc4,0xc8,0xae,0x36,0x79, 0x9c,0x80,0xc4,0xf6,0xa8,0xa0,0x30,0x43,0xa8,0x32,0x45,0x1c,0x9e,0x71,0x7,0x92, 0xd9,0x18,0xf7,0xa0,0xc6,0xd2,0xca,0x56,0x19,0x67,0xb7,0x94,0xf0,0xd1,0x48,0xbb, 0x90,0xaf,0xd3,0xfa,0xd4,0x9,0x1e,0xa0,0xd7,0xf2,0x4c,0xa8,0x90,0xec,0xe3,0x2e, 0x38,0x60,0x7d,0x38,0xf6,0xaa,0xb8,0xcb,0xd7,0x2,0x74,0xb5,0x12,0x19,0x42,0x4a, 0x83,0x27,0x8c,0x86,0xfd,0x2a,0x8,0xee,0xe5,0x53,0xe6,0x1d,0x82,0x32,0x33,0xf3, 0x36,0x4b,0x7d,0x2a,0xd1,0x60,0xb0,0xab,0xdd,0x95,0x49,0xf,0xf7,0x9,0x39,0xfc, 0x2a,0x95,0xdd,0xad,0xfb,0x6f,0x96,0xd,0x99,0xea,0xa0,0x30,0xdd,0xf9,0x62,0x90, 0x98,0xdb,0x98,0xe6,0xb8,0x2a,0x5,0xb3,0x46,0x78,0x23,0x68,0xcb,0x11,0xeb,0xc5, 0xf,0x6d,0x71,0x71,0x89,0xa3,0x9e,0x44,0x9e,0x3e,0x17,0x23,0x8,0x47,0x70,0x78, 0xef,0x52,0xc3,0x70,0x4d,0xba,0x39,0x8d,0x4c,0x8a,0x32,0x49,0x8c,0xe4,0x8f,0xfe, 0xbd,0x46,0xd2,0x34,0xb1,0xc8,0x89,0x2,0xb8,0x23,0x73,0x2a,0xe,0xc6,0x8b,0x69, 0xa8,0xc9,0x61,0x94,0xcd,0x8,0x90,0xa8,0x56,0xe8,0xeb,0xfd,0xd6,0xee,0x3b,0x71, 0x4e,0xb,0xdf,0xe5,0xcf,0x5f,0x5f,0xeb,0x59,0xf6,0xe5,0xfe,0x67,0xb6,0xb6,0x97, 0xcc,0xea,0x50,0xa6,0x1,0x1d,0xc6,0x4f,0x53,0x5a,0x51,0xed,0x91,0x43,0x46,0x3e, 0x53,0xd5,0x48,0xe4,0x1e,0xe2,0xb2,0x69,0x74,0x28,0x76,0xcd,0xdc,0x82,0xa0,0x7f, 0xba,0xd,0x38,0x22,0xe7,0x8c,0x7d,0x70,0xa2,0x80,0x30,0x48,0xda,0x47,0xe3,0xff, 0x0,0xd6,0xa5,0x7,0x19,0x3c,0x1,0xf8,0x7f,0x85,0x2b,0x8,0x69,0x8d,0x41,0xfb, 0xdf,0xf8,0xea,0xff,0x0,0x85,0x22,0xe1,0x4f,0xfa,0xe3,0xf4,0xf9,0x47,0xf4,0xa9, 0x86,0x48,0xc8,0xfd,0x18,0xd3,0x72,0x73,0xe9,0xf8,0x9a,0x2c,0x2,0x6d,0xcf,0xdd, 0x93,0x9f,0xc0,0xff,0x0,0x4a,0x6b,0x36,0xcc,0x7,0x73,0x93,0xe8,0x3f,0xc0,0x53, 0xc8,0x38,0x3c,0x7e,0xa6,0x98,0x15,0x89,0xe7,0x18,0xfa,0x9a,0x43,0x43,0x37,0x64, 0xe0,0x97,0xc7,0xa8,0xdd,0xfd,0x5,0x0,0xaa,0x9e,0x8f,0xcf,0xa9,0x3f,0xd6,0xa6, 0xda,0x71,0xc1,0x23,0xf3,0xff,0x0,0x1a,0x6e,0xc2,0x39,0xe3,0xea,0x17,0xff,0x0, 0xaf,0x48,0x64,0x7b,0x1,0x1f,0xe3,0x9a,0x52,0x2,0x8c,0xe,0xbd,0xf8,0xa7,0xed, 0xfe,0xee,0x49,0xa6,0x33,0x5,0x1f,0x31,0xda,0x7d,0x9,0x2,0x95,0x82,0xe3,0x59, 0xb1,0xc1,0xa8,0xc9,0x3b,0x87,0xa7,0xb8,0x7,0x34,0xa5,0x91,0xbb,0x8f,0xc5,0x85, 0xc,0x33,0x8d,0xac,0xe,0x3d,0xc7,0xf4,0xa5,0x61,0x8d,0x28,0x9f,0x78,0x22,0x83, 0xfe,0xe8,0xa7,0x12,0xb8,0xe0,0xf,0xd0,0x53,0xb3,0x8c,0x70,0x32,0x69,0x8d,0x92, 0x7a,0x91,0xf4,0xa2,0xc3,0x13,0x1d,0xf8,0xe3,0xd3,0x7,0xfa,0x53,0x3c,0xe7,0x2c, 0x30,0xa3,0x1e,0xb9,0x6f,0xf0,0xc5,0x2e,0x31,0x90,0x4b,0xee,0xfa,0x9a,0x85,0xd3, 0x2f,0x83,0x90,0xbf,0x56,0xcf,0xf3,0xa0,0x76,0x26,0x79,0x46,0x48,0x23,0xeb,0x85, 0x27,0xf9,0x53,0x1b,0x38,0xca,0x6f,0xfc,0x3,0x7f,0x8d,0x41,0xb3,0x77,0x6,0x36, 0x2b,0xe8,0x61,0x3f,0xcf,0x76,0x29,0xee,0xa5,0x50,0x66,0x21,0xb4,0xe,0x1,0x8d, 0x78,0xfc,0xdb,0x2,0x95,0x84,0x12,0x44,0xc4,0xee,0x4d,0xc9,0x28,0xfe,0x3d,0xa3, 0x3f,0x4c,0x93,0x4d,0x8e,0xfb,0xf8,0x1b,0x62,0xc9,0xd3,0x61,0x70,0x1,0xf7,0x1d, 0x6a,0xbe,0x53,0x24,0x10,0xe,0x7f,0xba,0xb0,0xc,0x7e,0x64,0xd4,0x52,0x49,0xb, 0xe1,0x37,0xec,0xc7,0xf1,0x9,0x23,0xce,0x7f,0xc,0xe3,0xf0,0xaa,0x48,0x2c,0x5f, 0x79,0x64,0xc6,0xe,0x1,0xed,0x82,0x4f,0xfe,0xcb,0x48,0xbb,0x81,0xe7,0x76,0x3d, 0x48,0x3f,0xfc,0x4d,0x54,0x86,0x56,0x62,0x3c,0xd9,0xe1,0x27,0xb3,0x45,0x23,0x10, 0x7f,0x10,0x47,0x3f,0x51,0x5a,0x22,0x23,0xce,0x1d,0xa,0x9e,0xe,0x1,0x24,0xfe, 0x39,0xa6,0x95,0xc5,0xb1,0xb5,0xe1,0xb3,0xcd,0xd8,0x3d,0x41,0x50,0x7f,0x5a,0xde, 0xac,0x4f,0xf,0xa8,0xf,0x74,0x40,0xe4,0xec,0xcf,0xeb,0x5b,0x75,0xe9,0xe1,0xbf, 0x84,0x8e,0x6a,0x9f,0x13,0x32,0x35,0xbe,0xb6,0xe3,0xd7,0x77,0xf4,0xac,0x7c,0x2e, 0xe0,0x73,0x8c,0x1e,0x84,0xd6,0xbe,0xbd,0x8d,0xb0,0x67,0xaf,0xcd,0x8f,0xd2,0xb1, 0x80,0xf,0xc6,0x48,0x3f,0x5a,0xe2,0xc4,0xbf,0xde,0xb3,0x7a,0x7f,0xa,0x27,0x20, 0x3,0x90,0x40,0x1e,0xf4,0x3,0x96,0xcf,0x18,0xfa,0x53,0x3,0x91,0xc2,0xe0,0x9e, 0xf4,0xd7,0x91,0x47,0x57,0xe4,0xfa,0x76,0xac,0x2e,0x59,0x65,0x1d,0x70,0x3a,0xd2, 0x87,0xe3,0x39,0xc8,0xaa,0xe1,0xc6,0xe0,0x9c,0x9e,0x33,0x4f,0xdd,0x9e,0xbc,0x62, 0x9d,0xd1,0x2c,0x9f,0x7e,0x8,0xa5,0xf,0x9f,0x4a,0xae,0xcc,0xc0,0xc,0x67,0x27, 0xda,0x9c,0x8e,0x54,0xe0,0x82,0x4f,0xb0,0xa7,0xcc,0x22,0xce,0xe5,0xcf,0x6c,0xd3, 0xc3,0xe0,0x67,0x15,0x4f,0x3f,0x36,0xec,0x1a,0x97,0xce,0x3,0x86,0xc7,0xd2,0xa9, 0x4c,0x4d,0x16,0x90,0xf1,0xe8,0x69,0xfd,0x48,0xe6,0xa1,0x53,0x91,0xdb,0xf0,0xa7, 0xee,0x0,0x1d,0xc7,0x8c,0x64,0xfd,0x2b,0x54,0xc9,0xb1,0x15,0xd5,0xc1,0x84,0x2a, 0xc6,0x33,0x34,0x8d,0xb2,0x30,0x7b,0x9e,0xe7,0xf0,0x15,0x25,0xb4,0x2b,0x4,0x21, 0x41,0x2c,0xdd,0x4b,0x1e,0xf5,0x56,0xd5,0x4d,0xc4,0xe6,0xf1,0xc7,0x4,0x62,0x11, 0xe8,0xbe,0xbf,0x8f,0xf2,0xc5,0x5f,0x3,0x14,0x25,0x77,0x70,0x1f,0x45,0x20,0xe0, 0x52,0xd5,0xdc,0x90,0xcf,0x3d,0x28,0x3c,0x52,0xe4,0x1,0xd6,0x8c,0xf1,0x4c,0x62, 0x7d,0xd,0x14,0x7e,0x34,0x52,0xb0,0x83,0x34,0xb9,0x14,0xd3,0x8f,0x5a,0x4e,0x94, 0x0,0xe2,0x71,0x46,0x69,0xb9,0xe6,0x94,0x9c,0x7b,0xd0,0x3,0xbb,0x52,0x1,0x4d, 0xc9,0xa5,0xcd,0x17,0x1,0x49,0xa4,0x26,0x90,0x9a,0x4a,0x18,0xec,0x1b,0xb3,0x4d, 0x20,0x93,0xc5,0xd,0xc0,0xa0,0x7b,0xe6,0xa4,0x0,0x71,0xe9,0x4e,0x3,0x34,0xdc, 0x77,0xfe,0x74,0xa7,0xd0,0xb7,0xd3,0x14,0xec,0x3,0x85,0x2e,0x78,0xa6,0x83,0x8f, 0x5a,0x1,0xc5,0x0,0x21,0xe7,0xd3,0xa8,0x1c,0xfd,0x6b,0x9d,0xb9,0x79,0xe6,0xf1, 0x4,0xdf,0x67,0x69,0x52,0x48,0x22,0x58,0xc6,0x31,0xd4,0xfc,0xcd,0xd7,0xd8,0xad, 0x74,0xc,0x71,0x93,0x8c,0xf1,0xd2,0xb9,0xe4,0x8c,0x8b,0x48,0xae,0x1c,0x32,0x2d, 0xe4,0xcd,0x33,0xb0,0x39,0x27,0x73,0x1d,0x83,0xe9,0xb7,0x14,0x98,0xcb,0x21,0x26, 0xba,0xb6,0x2,0x78,0x23,0x7b,0x85,0x23,0x3b,0x71,0x96,0xf4,0xcd,0x4e,0xe2,0x6f, 0xb3,0x22,0xcf,0xb7,0x71,0x7f,0xbb,0x1a,0xe1,0x40,0xec,0x29,0xb7,0x96,0x6f,0x75, 0x1c,0x7b,0x15,0x54,0x46,0xdb,0xb2,0x17,0x1c,0x62,0x89,0xa7,0x78,0xec,0xe2,0x9d, 0x5c,0xb1,0xfb,0xb9,0xc0,0xc7,0x1e,0xb8,0xa2,0xd7,0x1f,0x42,0xb5,0xd3,0xdc,0xa2, 0xc7,0x6e,0xbd,0xcf,0x98,0xde,0x5e,0x49,0x63,0x9e,0xe6,0xad,0x4b,0x2c,0x9,0xb, 0x3e,0xf8,0xa2,0x24,0x63,0x13,0x49,0x83,0xf9,0x73,0x52,0x3e,0xcd,0xdf,0xbe,0x48, 0x40,0x6e,0x19,0xba,0x16,0x1e,0xc2,0xa9,0xc5,0xd,0xbc,0x7,0x67,0x9b,0xc6,0x70, 0xa8,0xab,0xf3,0x9f,0xc4,0xa,0x7b,0x8,0x9b,0xed,0x84,0xd9,0xa8,0x49,0x15,0x0, 0x5f,0x99,0xcc,0x44,0xc,0x7b,0x3,0x55,0xcb,0x79,0x7e,0x5b,0x70,0xf0,0x15,0xe8, 0x5b,0x69,0xe7,0xb8,0x15,0x6a,0xb,0x71,0x2c,0x92,0xc6,0x19,0xb6,0x46,0x46,0x5d, 0x8f,0x4f,0x6e,0x83,0x9a,0x7d,0xd5,0xb4,0x42,0x3c,0xa3,0x37,0x9d,0x8e,0x18,0xe4, 0xfe,0x83,0x8a,0x6,0x8c,0x6b,0xcd,0xac,0x9e,0x5c,0x2f,0x3c,0x49,0xfc,0x53,0x94, 0xdc,0xc4,0x7a,0xe,0x3f,0xad,0x59,0x45,0x68,0x63,0xdb,0x18,0x6f,0x24,0x26,0xe5, 0x64,0x66,0xcc,0x80,0x7e,0x34,0xd8,0xed,0x25,0x79,0x12,0x27,0x67,0x9d,0x98,0xe7, 0x71,0x63,0xb0,0xe,0xfc,0x66,0xac,0xbd,0xba,0xc3,0x36,0xd1,0x8d,0xc5,0x40,0x4d, 0xc4,0x91,0x8f,0x4c,0xa,0x6d,0xe8,0xc,0x8f,0x48,0xb7,0x8d,0x35,0x6,0x91,0x15, 0x87,0xfa,0x38,0xce,0xee,0xb9,0x67,0x62,0x7f,0xf4,0x11,0x5b,0xa4,0x9e,0x38,0x15, 0x97,0xa6,0xab,0xfd,0xba,0xf3,0x71,0x4c,0x2e,0xc4,0x5,0x33,0x8e,0x1,0x24,0x7e, 0xb5,0xa9,0x86,0xdd,0x9a,0x94,0x48,0xbc,0x9a,0x5c,0x71,0x49,0xf8,0x52,0xf5,0xa4, 0x2,0x76,0x3c,0xd3,0xd,0x3f,0x9f,0x5a,0x67,0x41,0x8a,0x4c,0x4,0xa6,0x1e,0xb4, 0xbc,0x9c,0xe2,0x81,0x9f,0xa5,0x21,0xa1,0xb8,0xc0,0xe9,0x4d,0x38,0x2d,0xce,0x29, 0xc0,0xee,0x3e,0xa3,0xd6,0x8d,0xa0,0x73,0xd3,0xf1,0xa4,0xc6,0x1,0x82,0xf4,0x2, 0x91,0xb6,0x96,0xc8,0xc6,0x4d,0x2,0x31,0x9c,0x86,0x3f,0x9d,0x37,0x6e,0xf,0x5e, 0x4f,0x7a,0x3a,0x0,0xec,0xe3,0x90,0x28,0x96,0x40,0xaa,0xf,0x73,0x4d,0xe9,0x91, 0x9a,0x86,0x75,0x90,0xa1,0x68,0xc0,0x32,0x28,0xe0,0x30,0x3c,0xd4,0xbb,0xdb,0x40, 0x1d,0x1d,0xc0,0x72,0x50,0x8c,0x10,0x71,0x53,0xe4,0xe,0x4d,0x66,0xda,0x47,0x70, 0x9,0x6b,0x84,0xc1,0xec,0x15,0x7f,0xfa,0xf5,0xa1,0x8c,0xe,0x9d,0x6a,0x60,0xe5, 0x6f,0x78,0x6c,0x90,0x60,0x9e,0x80,0x8f,0x7a,0x8,0x19,0xa3,0xdf,0xb5,0x2e,0xe1, 0x83,0x8a,0xd5,0x12,0x2a,0xe3,0x79,0x38,0xc6,0x69,0xc3,0xef,0x1e,0xe2,0x9a,0xe, 0x40,0xc8,0x14,0x8e,0xfb,0x40,0xda,0x2a,0xb6,0x40,0x3b,0xee,0x83,0x48,0xc7,0x0, 0x11,0xde,0x9b,0x92,0x5b,0x7,0x18,0xc5,0x3b,0x90,0x31,0x42,0x77,0x19,0x9f,0xaa, 0x11,0x7,0xd9,0xef,0x30,0x3f,0x71,0x28,0xdd,0x9f,0xee,0x37,0xca,0xdf,0xcc,0x1f, 0xc2,0xac,0x89,0x18,0xb6,0x7f,0x98,0xe2,0x9b,0x75,0x1f,0xda,0xad,0xa5,0x80,0x92, 0x4,0x88,0x53,0x38,0xcf,0x51,0x8a,0xab,0xa7,0x4c,0xd7,0x16,0x50,0xc8,0x41,0xc9, 0x4f,0x9f,0x3c,0x1d,0xc3,0x83,0xfa,0x83,0x59,0xc9,0x81,0x6c,0xb9,0xcf,0x4f,0x96, 0x94,0x36,0xe1,0xdb,0xf4,0xa4,0xc1,0x23,0x3b,0x72,0x7d,0xd,0x0,0x1d,0xa3,0x31, 0xed,0x3f,0x5c,0x50,0x2,0xa3,0xe4,0xb0,0xc6,0xdf,0xcb,0x9a,0x70,0x6e,0xd9,0xcf, 0xf9,0xfa,0x53,0x39,0x72,0x30,0x3a,0x7b,0xd3,0xf0,0x42,0xfc,0xb8,0x1e,0xe0,0xd3, 0xe8,0x3,0xb0,0xb8,0xe0,0xf,0xcc,0xd3,0x48,0xcf,0x62,0x3f,0x3a,0x30,0x71,0x85, 0x23,0xf1,0x26,0x90,0x2b,0x77,0xda,0x3e,0x80,0x9a,0x42,0xc,0x86,0x24,0x63,0x3f, 0x85,0x1b,0x14,0x90,0x19,0x4f,0x1e,0xdf,0xfd,0x7a,0x4,0x7f,0xc4,0x9,0xfc,0x8d, 0x38,0xe0,0x8c,0xf7,0xf6,0xa2,0xc0,0x46,0xc7,0xe6,0xfb,0xc3,0xe9,0x8a,0x53,0x82, 0xa3,0xd7,0xd3,0x8a,0x36,0xb0,0xe4,0x10,0x3d,0xb0,0x28,0x7,0xe5,0xe0,0x12,0x47, 0xd2,0x82,0x84,0x23,0x6,0x98,0xc7,0x4,0xe5,0x87,0xb7,0x3f,0xfd,0x6a,0x78,0x4, 0x8e,0x7a,0xfb,0x1a,0x6a,0xa1,0x53,0xc9,0x27,0xea,0xd9,0xa4,0x21,0x4,0x80,0xff, 0x0,0x11,0x63,0xef,0x91,0xfd,0x28,0x19,0x39,0x1d,0x3e,0x99,0xa7,0x10,0x33,0xdf, 0x3f,0x5a,0x77,0x40,0xf,0x4f,0xc4,0xd0,0x3,0x42,0x9f,0xf2,0x2a,0x4e,0x0,0xe4, 0x66,0x9a,0xc3,0xeb,0x4b,0xb4,0x9f,0xfe,0xbd,0x20,0x1b,0xbf,0xa8,0x0,0x8f,0xa8, 0xa0,0x70,0x28,0x6c,0x70,0x33,0xcd,0x27,0xd1,0x81,0xa0,0x3,0x70,0xce,0x7f,0x4a, 0x31,0xc1,0x24,0xe6,0x97,0x21,0x47,0x5f,0xcb,0x14,0xd6,0x71,0xdb,0x9f,0xc6,0x98, 0xcc,0xcd,0x5a,0xc7,0xcd,0x44,0xba,0x85,0x41,0x9a,0x0,0x7e,0x5c,0x67,0x7a,0x1e, 0xab,0xf5,0xee,0x3d,0xfe,0xb5,0x2d,0xad,0xe3,0xcb,0x68,0x92,0x24,0x51,0xce,0x85, 0x1,0x57,0x8e,0x5c,0x6e,0xe3,0xd0,0x80,0x41,0xf6,0xab,0x8e,0x54,0xc,0x67,0x19, 0xec,0x6b,0x12,0xee,0x39,0x6c,0x26,0x7d,0x97,0x2d,0x1d,0x9c,0xcc,0x58,0xed,0x8c, 0x49,0xe5,0xb9,0x3d,0x31,0xd8,0x13,0xfa,0xfd,0x69,0xa6,0xae,0xc,0x7e,0x9d,0xbd, 0x67,0x96,0xea,0x44,0x4,0xb3,0x60,0x99,0x1b,0x91,0xe8,0x6,0x7a,0xd6,0x8c,0xb7, 0x2d,0x3a,0x46,0xb1,0x2,0xbb,0x9b,0xe,0x49,0xe4,0x62,0xa8,0x18,0xa5,0x9b,0x4e, 0x82,0x45,0x21,0x65,0x47,0xdd,0x92,0xa7,0x4,0xc,0x8c,0x7b,0x55,0xcb,0x75,0x2b, 0xa7,0x3f,0x9e,0xd0,0xac,0xa4,0x1d,0xc6,0x31,0xc6,0x6b,0x42,0x6e,0x3e,0xe9,0x18, 0x79,0x4b,0x9,0x21,0x8b,0x8f,0x9b,0xae,0x71,0xcd,0x47,0x39,0x69,0x26,0x13,0x8, 0xe4,0x56,0x7,0x1b,0x81,0x39,0x23,0xa7,0x6a,0x86,0xf1,0xed,0xe0,0xd2,0xc2,0xa8, 0x2f,0x33,0xd,0xa8,0x54,0x91,0xcf,0xa9,0x34,0x5b,0xdd,0x23,0x22,0xab,0xcf,0xe5, 0x10,0xf9,0x53,0x29,0x2a,0x1d,0x4f,0xff,0x0,0x5e,0x9d,0x87,0xb9,0x35,0xbd,0x98, 0x99,0x84,0x97,0xf,0x97,0x52,0x76,0x45,0xbb,0x84,0x1d,0x87,0xbd,0x5a,0x16,0x70, 0x46,0xe6,0x48,0xe2,0x45,0x7e,0xe4,0x28,0xc6,0x6a,0xab,0x99,0xb2,0xd3,0x24,0x83, 0x72,0xae,0x54,0x6d,0xdc,0xad,0xf8,0x8c,0x54,0x49,0x3f,0xda,0x91,0x65,0x9e,0x2b, 0x91,0x9c,0x7,0x58,0xcf,0xca,0x3d,0xfd,0xa9,0x0,0xa1,0x51,0xe4,0xd9,0x29,0x4e, 0xe,0x40,0x54,0x31,0xe0,0x8f,0x43,0x9e,0xb5,0x4e,0x4b,0xa9,0xb4,0xdb,0xf9,0x5d, 0xbc,0xd9,0xa1,0x24,0x79,0x83,0x19,0xc0,0xc7,0x51,0x81,0x8e,0x3f,0x97,0xd2,0x9c, 0xfe,0x6c,0xac,0x6d,0x63,0x78,0x76,0x2b,0x65,0xe,0xfe,0x4d,0x4c,0xa2,0xe6,0xda, 0x9,0x51,0xe5,0x8f,0xcd,0x2d,0xf2,0x98,0xc9,0x39,0xf6,0x3c,0x62,0x87,0x1b,0x85, 0xcd,0x38,0x9d,0x26,0x8d,0x64,0x8c,0x87,0x46,0x19,0x52,0xf,0x51,0x4a,0x54,0xa8, 0xc8,0xc8,0xfa,0xd6,0x75,0xae,0xeb,0xe,0x5c,0x6c,0xb6,0x6e,0x64,0x56,0xe3,0xca, 0x6e,0xe4,0x7f,0xb3,0xdf,0xdb,0x93,0xd3,0xa6,0xa1,0x19,0x1c,0xfa,0x73,0x9a,0xcd, 0x80,0xdd,0xbc,0xe,0x4d,0x37,0x1c,0xf5,0x34,0xe0,0x1b,0x3c,0x63,0x14,0x10,0x7b, 0x9a,0x43,0x1b,0x8c,0x67,0x8c,0x66,0x93,0x68,0x20,0x1c,0x66,0x9f,0xd8,0xd0,0xe, 0x7,0x22,0x95,0x80,0x6e,0xdf,0x6a,0x69,0xc7,0x4c,0x60,0x7d,0x29,0xe4,0xe7,0xa7, 0x1f,0x85,0x34,0x3,0x9e,0xa4,0xe6,0x8b,0xc,0x69,0xa,0xc7,0x4,0x2f,0xe2,0x5, 0x46,0x83,0x7,0x0,0x5,0xfa,0x62,0xa6,0x29,0x83,0x9e,0x47,0xe5,0x4d,0xc7,0x3d, 0xe9,0x58,0x6,0xed,0x3d,0x77,0x9f,0xc6,0x9a,0xc1,0x89,0x27,0x83,0xff,0x0,0x2, 0xa7,0x6d,0x20,0xe1,0x98,0xe0,0xd0,0x54,0x11,0x81,0xf9,0xd2,0xb0,0x11,0x6d,0x70, 0xdf,0x36,0xd0,0x3b,0x61,0xb3,0xfd,0x29,0x8c,0x87,0x39,0x38,0xf6,0xeb,0x56,0x48, 0xc0,0xea,0x4d,0x37,0x68,0xc8,0x3c,0xe7,0xeb,0x45,0x8a,0x4c,0xac,0x50,0x9e,0xa5, 0x77,0xf,0x4c,0xd3,0x26,0x84,0x95,0x2a,0x39,0x3e,0x98,0xce,0x7f,0x5a,0xb5,0xb0, 0x3,0xd0,0x7e,0x34,0xc9,0x11,0x24,0xe1,0xd0,0x12,0x3a,0x71,0x53,0x66,0x17,0x28, 0xa5,0xbb,0x85,0xc0,0x21,0x3d,0x47,0x94,0x7,0xf5,0xa4,0x6b,0x73,0xde,0x65,0xc7, 0x7c,0x44,0x9f,0xd6,0xae,0xb4,0x60,0xc,0x1,0xb4,0x7b,0x0,0x29,0x0,0xda,0x3a, 0x8f,0xa8,0x14,0x6a,0x2d,0x4a,0x2e,0x11,0x46,0x5,0xfb,0x2a,0xf6,0xe6,0x21,0xfd, 0x2a,0x20,0x17,0x69,0x51,0x78,0xcc,0xf,0xa4,0xa8,0xf,0xe6,0xa2,0xb4,0x41,0x29, 0xd1,0xb2,0xd,0x31,0x9d,0xb6,0x12,0x0,0xfc,0xff,0x0,0xfa,0xd4,0xf7,0x19,0x41, 0x6d,0x62,0xda,0x77,0xdc,0x49,0x22,0x91,0xc8,0x7b,0x82,0x7f,0x4c,0xa,0x9a,0x1b, 0x86,0x8a,0x5d,0xaa,0xde,0x74,0x1f,0xc2,0x49,0x3b,0x93,0xd8,0xfa,0xff,0x0,0x9e, 0xb5,0x38,0xcb,0x64,0xfc,0xc0,0x1,0xfd,0xe3,0x4d,0x64,0x6e,0x18,0x12,0x49,0x1d, 0xd9,0xa8,0x40,0x74,0x1e,0x1c,0x93,0xcc,0x6b,0xa2,0x6,0x7,0xc9,0xdf,0xeb,0x5b, 0xb5,0x83,0xe1,0xb1,0x8f,0xb5,0x7f,0xc0,0x3d,0x7d,0xeb,0x7a,0xbd,0x4c,0x37,0xf0, 0x97,0xf5,0xd4,0xe6,0xa9,0xf1,0x33,0x1f,0x5d,0x19,0xfb,0x3f,0xfc,0xb,0xfa,0x56, 0x3f,0x96,0xf,0x72,0x3e,0x95,0xb1,0xae,0x9c,0x7d,0x9f,0xfe,0x5,0xfd,0x2b,0x25, 0x58,0x11,0x92,0x0,0x1f,0x5a,0xe1,0xc4,0xff,0x0,0x15,0x9b,0xd3,0xf8,0x50,0x2f, 0xca,0x83,0xe5,0x27,0xde,0x9a,0x51,0x1b,0xf8,0x4e,0x7d,0x81,0xa7,0x17,0x4d,0xbd, 0x4f,0x3d,0x39,0xa0,0x4a,0x43,0x5,0x1f,0x37,0xd3,0x35,0x81,0x63,0xd5,0x41,0xc3, 0x6c,0x39,0xc6,0x39,0xe2,0x97,0xe6,0xd,0x85,0x50,0x7,0xa9,0x1d,0x69,0xac,0x54, 0x90,0x1b,0xd7,0xf1,0xa7,0x3,0xc3,0x67,0x8e,0x78,0xe2,0x98,0x85,0x39,0x1d,0x46, 0x69,0xca,0x72,0xd8,0x18,0xc7,0xad,0x34,0xc9,0xc0,0x5d,0xbd,0x46,0x73,0x4d,0x5, 0x70,0x40,0x27,0x8a,0x77,0x13,0x24,0xd9,0xc6,0x18,0xe,0x68,0x1,0xb7,0x6d,0xc6, 0x7f,0xcf,0xd2,0x94,0x9c,0x60,0x92,0x4f,0xb6,0x69,0xc1,0xc1,0x20,0xe0,0xe6,0xa9, 0xa4,0xc4,0x4e,0x8a,0x54,0xc,0x93,0x9a,0xa5,0x3c,0x9f,0x69,0xba,0x16,0x8a,0x49, 0x40,0x3,0x4e,0x41,0xfb,0xa3,0xb2,0xfd,0x4f,0x3f,0x87,0xd6,0x96,0xfe,0xfb,0xec, 0x96,0xbb,0xf6,0x86,0x73,0x85,0x48,0xf3,0xcb,0xb1,0xe0,0xf,0xeb,0xf8,0x53,0x74, 0xd8,0x4c,0x36,0xc1,0x9d,0x81,0x9a,0x53,0xe6,0x48,0xd9,0xfb,0xcc,0x7a,0xfe,0x1d, 0x87,0xb0,0x15,0x4d,0xf4,0x44,0xd8,0xd4,0x53,0xc0,0x0,0x71,0x8a,0x90,0x72,0x39, 0xaa,0xf1,0x82,0xbe,0xb8,0xa9,0x3,0x12,0x3a,0xfe,0x75,0xaa,0x62,0x64,0x98,0xa4, 0x24,0x83,0x81,0xc5,0x26,0xf3,0x8a,0x69,0x23,0xa9,0xa6,0xd8,0x89,0x33,0xc7,0x38, 0xa4,0xe0,0xd4,0x3e,0x60,0x38,0xe7,0x19,0xa5,0xde,0x1,0xc6,0x4e,0x6a,0x79,0x80, 0x97,0xa5,0x21,0x6c,0xa,0x68,0x6c,0x8c,0x90,0x47,0xd6,0x99,0xbf,0x39,0x14,0xb9, 0x82,0xc3,0xc3,0x8e,0xb8,0xa7,0x7,0x53,0xf5,0xa8,0x72,0x47,0x62,0x68,0xe,0xb9, 0xc9,0x7,0x8a,0x7c,0xc1,0x62,0x62,0x78,0xa6,0x6,0x1d,0xd,0x33,0x78,0x20,0x91, 0xfa,0xd3,0x72,0x1b,0x3,0x3d,0x68,0xe7,0x1d,0x89,0xf2,0x9,0xa5,0x1d,0x33,0x51, 0xc,0x8e,0x3b,0xa,0x71,0x39,0xe9,0x42,0x61,0x61,0xf9,0xf6,0xa3,0x22,0x99,0x9a, 0x6b,0x64,0xd3,0x6c,0x9,0x1,0xc9,0xe9,0x4a,0xe,0x29,0x8a,0xdc,0xe,0x3f,0x5a, 0x52,0x79,0xa4,0x21,0x73,0xec,0x4d,0x4,0xf3,0x9c,0x53,0x8,0xc,0x79,0xcf,0x1e, 0xf8,0xa4,0xda,0xa7,0x4,0x8e,0x9e,0xf4,0x5c,0x63,0xc9,0x38,0xc9,0xa6,0x99,0x0, 0x20,0x16,0x50,0x7d,0xce,0x29,0xa5,0x3,0x1e,0x42,0x91,0xee,0xb9,0xa8,0x5a,0xdf, 0x19,0xc1,0x5c,0xf6,0xc2,0x1,0x49,0xc8,0xa,0xda,0xd5,0xc9,0x8b,0x46,0xba,0x78, 0xc9,0xde,0xc8,0x63,0x4d,0xa4,0x67,0x73,0x7c,0xa3,0x1f,0x9d,0x53,0xb2,0xb4,0x9e, 0x14,0x86,0xde,0x6b,0x57,0x78,0xd1,0x81,0x47,0x79,0x3e,0xe0,0x3,0x0,0x63,0xbd, 0x1a,0x92,0x99,0x6f,0x6c,0x6c,0xda,0x47,0x58,0x9d,0xda,0x47,0x60,0x47,0x1,0x6, 0x7d,0x3d,0x48,0xfc,0xaa,0xd2,0x19,0x8c,0x6c,0x96,0xc7,0xcd,0x1,0x89,0xf,0x27, 0x23,0xe9,0x9a,0x69,0xdc,0x63,0x6f,0x1c,0xc5,0x7b,0x11,0x17,0xc,0xa1,0xbe,0xe8, 0x52,0x4e,0x31,0xec,0x3a,0xfe,0x35,0x34,0xce,0xd1,0x58,0x2e,0xcf,0x9a,0x46,0xc3, 0x30,0x23,0xa8,0xcf,0x3d,0x3a,0x55,0x25,0xb8,0x9e,0x69,0x3e,0xcd,0x79,0x6f,0x68, 0xbb,0x47,0x3b,0x94,0x2,0x8,0xf4,0x19,0x39,0xa9,0x5a,0xe4,0xcd,0x3f,0x96,0x16, 0x58,0x25,0x54,0x38,0x2c,0x81,0x54,0x8f,0xaf,0xe1,0x4c,0x43,0xe2,0x9f,0xf7,0xc2, 0xea,0x4d,0x98,0x55,0xc6,0xd7,0x6c,0x6d,0xe3,0xaf,0xe9,0x4e,0xba,0x92,0x49,0x27, 0x2e,0xcc,0x88,0x8b,0x1e,0x54,0xb7,0x38,0x7,0xa9,0x3f,0x95,0x2b,0xc9,0x18,0xb7, 0x89,0x22,0x88,0xca,0x85,0xfe,0x67,0x90,0x8e,0x9d,0x77,0x7b,0xf6,0xe2,0xab,0xb3, 0x43,0xa8,0xb8,0x6d,0xc6,0x48,0xd0,0xed,0x61,0xc8,0x5,0xbd,0x38,0xc6,0x70,0x78, 0xa6,0x5,0x60,0xf6,0x42,0xdc,0xca,0x16,0x4b,0x94,0xdd,0xfc,0x11,0xb2,0xa7,0xd4, 0x9c,0x62,0xa5,0xb5,0xb9,0x95,0x3c,0xb9,0x64,0x2f,0x2a,0xbf,0x11,0xa4,0x7b,0x76, 0xa0,0x3d,0x9b,0xa7,0x35,0x66,0x16,0x9a,0xe6,0xd5,0xa2,0x8d,0xf6,0x26,0xe2,0xb9, 0x8,0x6,0x71,0xd7,0x6e,0x3f,0x9d,0x44,0x4,0x9,0x70,0xf6,0x70,0xdd,0x46,0x92, 0x81,0xb8,0xa1,0xcb,0x7e,0x3,0x26,0x95,0xc0,0xb2,0x2e,0x9a,0x56,0xc4,0x68,0xa8, 0x1,0xfb,0xc7,0x92,0xc3,0xd3,0x8f,0xf1,0xaa,0x93,0x9,0xcc,0xde,0x69,0xb2,0x0, 0x2e,0x17,0xef,0xe3,0x77,0x3f,0x8d,0x58,0x76,0x9e,0x5d,0xd6,0xf1,0x3b,0x41,0xe5, 0x2e,0x55,0x42,0xee,0xde,0xbe,0xa3,0xa5,0x66,0xf9,0x73,0x5d,0xdc,0xb3,0x47,0xe7, 0x18,0x80,0xe7,0xcd,0x20,0x0,0x70,0x7a,0x1,0xc7,0xeb,0x47,0xa8,0x33,0x53,0x46, 0x4,0xa5,0xd1,0x28,0x13,0xfd,0x21,0xbe,0x50,0x72,0x7,0xca,0xb5,0xad,0xcf,0x63, 0x59,0xfa,0x3a,0x85,0xb3,0x62,0xe,0x77,0x4d,0x29,0xc8,0xe9,0xf7,0xc8,0xfe,0x82, 0xb4,0x7,0x14,0xd2,0x10,0x13,0xc7,0x34,0x80,0xf1,0x4e,0x3c,0xd3,0xf,0x2,0x93, 0x1,0x9,0xa6,0xb1,0xe2,0x94,0xf4,0xa6,0x77,0xa9,0x18,0x80,0xd2,0x75,0xa7,0x63, 0x39,0xa6,0x91,0x48,0x63,0x14,0x60,0xf0,0xa3,0x14,0x6d,0x20,0x12,0x6,0x73,0x4f, 0xc6,0x47,0x4a,0x4d,0x9f,0x36,0x29,0x0,0x8b,0xc9,0xe4,0xe3,0x3,0xbd,0xd,0xb4, 0xf3,0xe9,0xef,0x4f,0x18,0xcf,0x4a,0x36,0xe4,0x50,0x4,0x39,0xc1,0xe4,0xf0,0x69, 0xe,0x5b,0xa1,0xe7,0xeb,0x52,0x15,0x25,0xbe,0xf0,0xfc,0xe9,0x31,0xd9,0xaa,0x5a, 0x1,0xaa,0x4a,0xe4,0x1c,0x3,0xf4,0x26,0x9e,0x58,0x9c,0x0,0x7f,0x4a,0x8c,0x95, 0x19,0x0,0x12,0x7e,0xb4,0xe0,0x38,0xa4,0x80,0x78,0x24,0xbe,0xdc,0x9f,0xca,0x9d, 0xf4,0x3c,0x1a,0xf,0x4c,0x73,0x8a,0x52,0x73,0x8e,0x30,0x5,0x68,0x80,0x42,0x47, 0x4c,0xd2,0x11,0x81,0x93,0xf8,0x50,0x72,0x5b,0x83,0x81,0xeb,0x8a,0x33,0x83,0x82, 0xe0,0xfa,0x50,0x1,0x8c,0xf5,0xe3,0xde,0x94,0x95,0x2d,0x85,0x63,0x9a,0x6e,0xee, 0x9b,0x8f,0x7f,0x5a,0x8a,0x49,0x24,0x32,0xe0,0xa2,0xaf,0xa6,0x4e,0x73,0x45,0xec, 0x3,0x9e,0x12,0x1b,0x8e,0x95,0x9b,0x6a,0xc2,0xd,0x56,0xf2,0xd4,0x5,0x5d,0xdb, 0x6e,0x53,0x1d,0xc3,0xc,0x37,0xd3,0x91,0xfa,0xd6,0xa7,0x39,0x0,0xe3,0x9e,0xb8, 0x35,0x95,0xab,0x21,0xb7,0xbd,0xb1,0xbe,0x4c,0x64,0x49,0xe4,0x48,0x76,0xf5,0x57, 0xc7,0x5f,0xa1,0x1f,0xad,0x4d,0xae,0x6,0x96,0xe3,0x9f,0x99,0x79,0xf5,0x2,0x91, 0xb7,0x31,0xe7,0x25,0x7d,0xb8,0xc5,0x4,0xb0,0x18,0xc3,0x73,0xcf,0x9,0x48,0x49, 0x2b,0x90,0x32,0x47,0x62,0xb4,0xc,0x79,0x6d,0xa3,0xa9,0xc8,0xf4,0x34,0x81,0x88, 0xe7,0x3c,0x7a,0x13,0x4d,0xdb,0xbc,0x6,0x61,0x86,0xc5,0x3b,0x39,0x5c,0x2,0x72, 0x3d,0xe8,0xd4,0x40,0x19,0xc8,0xdd,0x80,0x3f,0x12,0x69,0x43,0xb0,0xe4,0x37,0xe8, 0x6a,0x3f,0x98,0x1e,0x41,0xc7,0xbb,0xe2,0x9d,0x9c,0x73,0xbb,0x8e,0xdf,0x35,0x0, 0x38,0x1e,0xe,0x58,0x9c,0xf6,0xc1,0xa6,0x17,0x70,0x4a,0xa9,0xe3,0xfe,0xb8,0x93, 0x4b,0x9c,0x9e,0xa3,0xf1,0x73,0x48,0xe9,0xb9,0x3e,0xee,0xf3,0xee,0x49,0xfe,0x54, 0x0,0x7e,0xf4,0x2e,0x4e,0xef,0xfb,0xf5,0xff,0x0,0xd7,0xa6,0xee,0x61,0xcb,0x6e, 0xcf,0xd0,0xa,0x4f,0x29,0x4,0x67,0xe5,0x50,0x7b,0xe2,0x32,0x69,0xcd,0x17,0xca, 0x31,0xff,0x0,0xa0,0x50,0x2,0xe4,0xe7,0x93,0x27,0xe0,0x56,0x9d,0xd7,0x1f,0x39, 0xfc,0x48,0xa4,0x58,0xdb,0x1c,0xaf,0x1e,0xa5,0x5,0x29,0x1f,0x2e,0x70,0x46,0x3b, 0xe2,0x90,0x8,0xdb,0x87,0xf0,0x9f,0xfb,0xea,0x90,0x9f,0x97,0xfc,0x49,0x34,0x19, 0x58,0x8d,0xbb,0x72,0x3d,0x77,0xa,0x43,0x20,0xc7,0xd,0x9c,0x76,0x6,0x8d,0x0, 0x38,0x3d,0x97,0xf0,0xcd,0xa,0xc0,0x92,0x3f,0x98,0x35,0x1b,0x39,0x3c,0xf4,0x1e, 0xcd,0x48,0xae,0x18,0x63,0x20,0x9f,0x4c,0x92,0x69,0x5c,0x63,0xca,0x86,0x6f,0x94, 0xf2,0x3a,0xfc,0xb4,0x30,0x3b,0xb8,0x3,0x6f,0xb0,0xff,0x0,0xeb,0xd4,0x79,0x55, 0x38,0x6c,0x7a,0xf4,0x26,0x86,0x1,0x88,0x60,0x1b,0x3e,0xbe,0x5b,0x62,0x86,0x3b, 0x12,0x86,0xb,0x85,0x23,0x4,0xfb,0xa,0x1f,0x23,0x9e,0xd8,0xed,0x8a,0x87,0x73, 0x17,0x24,0x8c,0x90,0x3a,0xf9,0x5d,0x7f,0x33,0x4b,0xba,0x42,0xb9,0xf2,0xa4,0x0, 0xf1,0xf3,0x28,0xeb,0x4a,0xe8,0x40,0x1b,0x72,0xfd,0xe2,0xbe,0xe4,0x8a,0x46,0x55, 0x91,0x19,0x24,0x70,0xd1,0xbf,0x4,0x6e,0xce,0x45,0x48,0x98,0x29,0x8d,0xb8,0x3d, 0x30,0x40,0xe7,0xf0,0xa8,0x58,0xba,0xbf,0xdf,0x65,0x51,0xea,0xc8,0x3f,0x43,0x42, 0x3,0x1a,0xde,0x49,0xb4,0xeb,0xb7,0xb4,0x9a,0xde,0x29,0x11,0x31,0xb2,0x64,0x6d, 0xac,0xd1,0x9c,0xe0,0x9c,0x7d,0xe2,0x3d,0x6b,0x42,0x76,0x69,0x22,0xdf,0x6d,0x4, 0x52,0x37,0xf7,0x5d,0x7b,0xfd,0x73,0x4b,0x7d,0x1a,0xdc,0xc6,0xa6,0x19,0x23,0x17, 0x49,0x93,0x17,0x23,0x27,0xd5,0x7f,0x11,0x9f,0xe7,0xda,0xa9,0x43,0xaa,0xd8,0x3a, 0x24,0x89,0x32,0x47,0xb4,0x15,0xda,0xe5,0x55,0x89,0x1c,0x10,0x49,0x3d,0x41,0xe0, 0xd6,0xb1,0x77,0x27,0x66,0x5c,0xb6,0x64,0x75,0xf2,0xef,0x2c,0xe3,0x85,0x95,0xb8, 0x2c,0x3e,0x56,0x3e,0xa0,0xf4,0xfc,0x2a,0xe4,0xbe,0x41,0x2,0x2b,0xa8,0x22,0x0, 0x9c,0x0,0x40,0xe7,0xe8,0x3a,0x8a,0xc2,0xb8,0xd5,0xa1,0xb2,0xfb,0x3f,0xd9,0xae, 0x6d,0xee,0x1b,0x24,0xcb,0x17,0x9a,0x18,0xe,0x9,0x39,0x60,0x72,0x3b,0x54,0x57, 0x1a,0xce,0x9c,0x9a,0x84,0x66,0x39,0x2d,0x20,0x71,0xf2,0xbc,0x9e,0x6b,0x48,0xa3, 0x3e,0xd8,0x1c,0xd5,0xf2,0xb6,0x85,0xcc,0x99,0xbf,0x15,0xaa,0xc0,0xc,0x71,0x2, 0xb1,0xe4,0xe1,0x49,0x22,0xa1,0xb8,0x69,0xe2,0x75,0x9,0x11,0x90,0xed,0xe5,0xbe, 0xe8,0x41,0xfd,0x6a,0x94,0xba,0xf6,0x94,0xd0,0x1f,0x2b,0x50,0xb7,0xdd,0xb7,0xef, 0x75,0xe7,0xd7,0x6f,0x4,0xd6,0x5b,0xea,0xf2,0x5c,0xbf,0xfa,0x4c,0xca,0xf6,0xd9, 0x1b,0x5e,0xb,0x79,0x3a,0x7d,0x31,0xfd,0x69,0x28,0x30,0x72,0x48,0xd5,0x85,0x20, 0x52,0xd2,0x1b,0x84,0x43,0xd9,0xe2,0x1,0x1f,0xf1,0x0,0x1,0x51,0x48,0x5a,0xde, 0xee,0x55,0x9c,0x99,0x16,0x56,0x5c,0x4a,0x41,0x5c,0x7a,0x67,0x2,0xab,0xcd,0xaa, 0x58,0x32,0x79,0x46,0xee,0xed,0x94,0x70,0x36,0x58,0x31,0xc7,0xe2,0x45,0x30,0xeb, 0x50,0x2b,0x27,0xd9,0xfe,0xd9,0x23,0x29,0x4,0xef,0xb5,0x65,0x4,0xf,0xc3,0x9a, 0x69,0x32,0x79,0xd5,0xcd,0x71,0x29,0x82,0x44,0x89,0xae,0x62,0x24,0x8e,0x23,0x6e, 0x19,0xbe,0x84,0x9e,0x7e,0x94,0x9a,0x75,0xcb,0xd9,0xce,0xd6,0x77,0xa,0xd1,0xc2, 0x48,0x10,0xee,0x39,0x8,0x4f,0x45,0xd,0xdd,0x4f,0x1,0x7d,0xf8,0xf4,0xaa,0x17, 0x3a,0xf5,0xad,0xca,0x8,0x27,0xd3,0x26,0x95,0x8,0xc8,0x21,0x0,0xc1,0xff,0x0, 0x81,0x63,0x7,0xe9,0x55,0x86,0xa4,0xad,0x6b,0xf6,0x53,0x63,0x76,0xf1,0x10,0x57, 0x1f,0x27,0x4f,0x43,0x96,0xf4,0xfe,0x54,0x72,0x95,0xce,0x8e,0xbf,0x27,0x27,0x3c, 0x8c,0xf0,0x68,0x27,0x3e,0x95,0xcd,0xe8,0x3a,0xe3,0xb3,0x35,0x85,0xe9,0x7f,0x36, 0x35,0xdd,0xc,0x97,0x4,0x6,0x92,0x3f,0x53,0x8c,0x8c,0x8e,0xe7,0xf1,0xf5,0xad, 0xd5,0x99,0x98,0x64,0x79,0x3f,0x84,0x99,0xfe,0x95,0x9b,0x4d,0x17,0xa1,0x36,0xec, 0x77,0xa0,0xb0,0x38,0x1f,0xfd,0x6a,0x82,0x6b,0x99,0x22,0x8f,0x74,0x70,0x87,0x6e, 0x85,0x72,0x73,0xfa,0x3,0x54,0x97,0x50,0xbc,0x62,0xcd,0xf6,0x64,0x8c,0x67,0xab, 0x6f,0x1f,0xcc,0xa,0x42,0xb9,0xa9,0x91,0xd0,0x1e,0x45,0x34,0x90,0x7d,0xc0,0xf6, 0xaa,0x11,0xdc,0xcf,0x29,0x20,0xb4,0x39,0xed,0x8d,0xcd,0x9f,0xf0,0xa9,0x4c,0xdb, 0x31,0xba,0x58,0xd7,0x3d,0xb6,0x13,0xfd,0x69,0x6a,0x3b,0x96,0x73,0xc7,0x18,0x0, 0x7b,0xd2,0xe0,0x90,0xf,0x1f,0x9d,0x66,0xde,0x4f,0x71,0x1a,0x7,0x82,0xf2,0x25, 0xcf,0x42,0xcb,0xc7,0xd0,0xd3,0x56,0x5d,0x4c,0x7c,0xb7,0x12,0x1e,0xbc,0x4b,0x0, 0x56,0x5c,0x7e,0x22,0x8b,0x5,0xcd,0x66,0x38,0x1e,0xdf,0x5e,0x95,0x1e,0xd7,0xfe, 0x1d,0xb8,0xf5,0xcf,0xff,0x0,0x5a,0xaa,0x18,0x6e,0x41,0xdc,0x75,0x29,0x88,0xf4, 0x11,0xa0,0xfe,0x6b,0x4e,0x2c,0x21,0x8c,0xb3,0xcb,0x33,0x1e,0xa4,0xe4,0x3,0xfa, 0x62,0x80,0x2c,0xf4,0x7,0x71,0x1f,0x85,0x37,0xa6,0x72,0x38,0xac,0xcf,0xb4,0xda, 0x4a,0xc6,0x45,0xd4,0x6e,0xc1,0xff,0x0,0x9e,0x6c,0x70,0x3f,0x97,0xf5,0xaa,0xce, 0x1f,0x76,0x15,0xee,0xa5,0x66,0xe9,0xe5,0xdc,0x10,0xa3,0xf1,0xe2,0x96,0xbb,0x5, 0xcd,0x9c,0xf3,0x4a,0x47,0x1c,0x62,0xa8,0x41,0x65,0x80,0xa2,0x47,0x99,0x9c,0x8c, 0x9c,0x5c,0x3f,0xf2,0x26,0xab,0x4d,0xa4,0xdb,0x86,0x2e,0x22,0xb9,0x65,0xee,0x4c, 0xac,0x47,0xea,0xd9,0xfd,0x28,0xb0,0x73,0x1a,0xc5,0x72,0xa4,0xe3,0x24,0x7b,0x66, 0xab,0x92,0xca,0x39,0x27,0x1e,0xa7,0x0,0xa,0xcb,0x9b,0x42,0xb0,0x90,0xc,0x59, 0x30,0x27,0x92,0xcc,0x73,0xfa,0x13,0x51,0x49,0xa0,0xe9,0x88,0xbf,0xf1,0xe9,0xc, 0x4d,0xd9,0xf8,0x7,0xf5,0x14,0xf9,0x6e,0x34,0xcd,0x8d,0xc9,0xce,0xe7,0x3,0x1e, 0xa4,0xf,0xeb,0x54,0x67,0xd5,0x2c,0xa3,0x5,0xd,0xfd,0xa2,0x73,0xce,0xeb,0x94, 0x1f,0xd6,0xb3,0x13,0x4c,0xb4,0x8c,0x3f,0x99,0xa7,0x26,0xe5,0xfe,0x25,0xda,0x79, 0xfc,0xaa,0xf4,0x16,0xbe,0x5a,0x3,0x1a,0x5,0x18,0xe1,0x70,0x1b,0xf4,0xc5,0x3f, 0x66,0x3e,0x64,0x98,0xf5,0xd5,0x34,0xf2,0xc0,0x25,0xf5,0xb9,0x63,0xe9,0x30,0x39, 0xfc,0xaa,0x47,0xd4,0x2d,0x57,0x39,0x90,0x37,0x19,0xf9,0x49,0x6c,0x7e,0x55,0x5b, 0xec,0xe9,0x24,0x8d,0x24,0x6d,0x10,0x90,0x60,0x32,0xac,0x44,0x3,0xf8,0x67,0xad, 0x4c,0x6d,0x5,0xcc,0x5f,0x3b,0xcd,0x18,0x1d,0x81,0xfd,0x79,0xcd,0x27,0xb,0x75, 0x17,0x34,0x99,0xd2,0x78,0x52,0xe2,0x3b,0x84,0xba,0x31,0x92,0x40,0xd9,0xd4,0x11, 0xeb,0xeb,0x5d,0x15,0x73,0x1e,0x10,0xb7,0xfb,0x33,0x5e,0xaf,0x9a,0x64,0xcf,0x96, 0x79,0x1d,0x3e,0xf5,0x74,0xf5,0xe8,0xe1,0xd5,0xa9,0xa3,0x9e,0x5b,0x98,0xda,0xf7, 0x5b,0x61,0xeb,0xbb,0xfa,0x56,0x2a,0xb1,0x66,0xc0,0x0,0x83,0xea,0x33,0x5b,0x7a, 0xe2,0x92,0x6d,0xb1,0xd3,0xe6,0xfe,0x95,0x93,0xc,0x3e,0x58,0xc1,0x3c,0xe7,0xa8, 0xae,0xc,0x42,0x7e,0xd5,0xff,0x0,0x5d,0xe,0x8a,0x7f,0xa,0x1a,0x50,0x85,0xdb, 0xfc,0x85,0xa,0x37,0x36,0x1b,0xa0,0xed,0x53,0xf4,0x1d,0x46,0x7d,0xcd,0x35,0x17, 0x9,0x86,0x3f,0x31,0x39,0xe2,0xb1,0xe5,0x2c,0x68,0x5e,0xe,0xec,0x7b,0x50,0x1, 0x29,0xcf,0x4f,0x5a,0x91,0xa4,0x8f,0xee,0x93,0x9c,0x77,0x1d,0x28,0x12,0xc,0x65, 0x5b,0x27,0xd3,0xb5,0x16,0x24,0x6e,0x1,0x5c,0x70,0x71,0xc5,0x37,0xb,0xd1,0x7b, 0x7b,0x51,0x92,0xa4,0xb1,0xe7,0x3d,0xa9,0xc3,0xe7,0xce,0x57,0x1f,0x4a,0x2c,0x31, 0xc5,0x81,0x2b,0x9c,0xfd,0x45,0x38,0xb6,0xd2,0x30,0x3f,0x1a,0x84,0xab,0xa2,0x92, 0x81,0x70,0x39,0x20,0x83,0x54,0xaf,0x66,0x79,0xee,0x23,0xd3,0x91,0x8c,0x6d,0x22, 0xee,0x99,0xd4,0x7f,0xab,0x8c,0x83,0xf9,0x12,0x46,0x5,0x30,0x5,0xdd,0xa8,0xdd, 0xad,0xc8,0x56,0x30,0x26,0x56,0x16,0xdc,0x0,0xf4,0x2c,0x38,0xfa,0x81,0x5a,0xf0, 0xa6,0xc0,0x14,0x1e,0x7,0x40,0x7b,0x53,0x23,0x84,0x44,0x8b,0x1a,0x28,0xa,0x14, 0x28,0x3,0xb6,0x3b,0x54,0xca,0xa7,0x6f,0x7,0x7,0xde,0x9c,0x53,0x26,0x4c,0x7e, 0xf1,0x8e,0xb4,0xe5,0xf9,0x94,0xc,0x9c,0x50,0x6,0xdf,0x7a,0x71,0x62,0xf,0x4, 0xfd,0x31,0x5a,0xa2,0x5,0xc6,0x6,0x33,0xc5,0x30,0xb0,0xce,0xd,0x3b,0x3c,0x1a, 0x8d,0xba,0x7a,0xd3,0x60,0x28,0x60,0x33,0x81,0xf4,0xa3,0x71,0x23,0x3d,0xe9,0x8d, 0x91,0xda,0x90,0x90,0x8,0x5,0x80,0x27,0xa6,0x4d,0x48,0xc9,0xf,0xb,0xc9,0x34, 0x91,0xe3,0x6e,0x8,0x20,0xd2,0xed,0x27,0xef,0x11,0x81,0xe8,0x69,0x9,0x0,0xf3, 0xfc,0xe8,0x0,0xe0,0x9e,0x4d,0x33,0x3d,0xf3,0xc7,0xa5,0x29,0x1d,0x36,0x29,0xa0, 0xe3,0x27,0xd6,0x93,0x1,0x7a,0x8e,0xbc,0x52,0xfc,0xa3,0xbe,0x3f,0xa,0x3b,0x75, 0xfd,0x29,0x18,0x1e,0xbc,0x1a,0xa4,0x4,0x99,0x1,0x4e,0x3a,0x53,0x43,0x2b,0xae, 0x7,0x4a,0x69,0x20,0x8c,0x82,0x32,0x3b,0x53,0x10,0x9c,0xe0,0x8c,0x7d,0xd,0x30, 0xb1,0x22,0xf1,0xc6,0x31,0xf8,0xd1,0x92,0xa4,0xf7,0xfc,0x68,0xc8,0xce,0x4f,0xea, 0x69,0x36,0xee,0xe0,0x30,0x14,0x80,0x72,0xb1,0xc7,0x51,0xcd,0x49,0x8c,0x74,0x39, 0xa8,0x91,0x94,0xb1,0x55,0xc7,0x15,0x26,0xe5,0xa6,0xb6,0x15,0x82,0x4c,0xf0,0x1, 0xc1,0xa0,0x73,0xeb,0x8f,0x7a,0x42,0x72,0xdb,0x97,0xf2,0x34,0xa5,0xc6,0x33,0x83, 0xf4,0xa7,0x60,0xb0,0xa4,0x53,0x1c,0x12,0xb8,0xdd,0xb7,0xde,0x94,0xb0,0xb,0xbb, 0x7,0xe9,0xc5,0x47,0x24,0x83,0x69,0xc9,0x3,0x3,0x9e,0x46,0x71,0x45,0x86,0x8c, 0x42,0xc2,0x7d,0x76,0xea,0x57,0xde,0x21,0xb4,0x85,0x62,0xc9,0x19,0x1b,0xdb,0xe6, 0x6e,0x9d,0x78,0xdb,0x5a,0x36,0xa1,0x45,0xb3,0x37,0x9a,0x2,0x3b,0x12,0x19,0x78, 0xc0,0x3d,0x85,0x66,0x68,0xc2,0xe2,0x6b,0x79,0xde,0x39,0x12,0x25,0xb9,0x9d,0xa5, 0xc3,0x46,0x59,0x88,0x6f,0x5e,0x47,0x61,0x5a,0x71,0xd9,0x19,0x5d,0x32,0x70,0x8b, 0xc6,0x53,0x8c,0xfd,0x7,0x38,0xe0,0x51,0x60,0x64,0x11,0xc7,0x89,0xb3,0x6d,0x14, 0x64,0x3,0xb9,0x9a,0x42,0x4b,0x31,0xf5,0x34,0x3c,0xe,0xaf,0x3b,0xdc,0xb0,0x66, 0x70,0x40,0x58,0xf9,0x24,0x91,0x8f,0x4f,0x73,0x56,0x1,0x8a,0x9,0xa4,0xb7,0x99, 0xa3,0x48,0x50,0x6e,0x4,0xb8,0x4,0xfd,0x7f,0x23,0xf9,0x77,0xaa,0xd0,0x6a,0x11, 0x7d,0xbc,0xf9,0x4e,0xf7,0x24,0x92,0x36,0xc5,0x9,0xc2,0x2f,0xae,0x7f,0xa,0x62, 0x25,0x92,0xd2,0x58,0xec,0xe0,0x89,0x1c,0x8d,0xa7,0x12,0x16,0xc7,0xb,0xdf,0x15, 0x1c,0x2d,0x4,0x6a,0xba,0x7c,0xe,0xf0,0xec,0x52,0x51,0x25,0x1f,0x78,0xe7,0x39, 0xcf,0xae,0x6a,0xef,0xda,0x92,0x78,0xb7,0x2a,0x30,0xc,0x31,0x97,0xe2,0xb2,0x4, 0x77,0xe,0x11,0x5,0x8e,0xe5,0x7,0x26,0x55,0x20,0x36,0x7d,0x79,0xa6,0xc0,0xd0, 0x91,0xa4,0x4c,0x46,0xd9,0x8f,0x23,0x90,0x83,0x1f,0xfe,0xae,0xf5,0x41,0x2d,0x4c, 0xb7,0x86,0xe5,0xe0,0x45,0x58,0x88,0xf9,0xf3,0xf3,0x13,0x8c,0xff,0x0,0x5a,0xb7, 0x32,0xdc,0x4b,0xb,0x45,0x6f,0x13,0x6,0xff,0x0,0x9e,0x93,0xbe,0x30,0x7d,0xc6, 0x33,0x4c,0xb7,0xb6,0x91,0x1d,0x0,0x45,0x46,0x51,0xba,0x5c,0x2,0x43,0x9c,0x1, 0xde,0x90,0x59,0xb2,0x4b,0x8b,0x88,0x2e,0x1b,0x6c,0x37,0x6a,0xee,0x3f,0xe5,0x9a, 0xfa,0x7b,0xe3,0x9a,0x9c,0x48,0x91,0x41,0xf2,0x42,0xc0,0x6e,0xa,0x14,0xa1,0x50, 0x49,0x38,0xe3,0x35,0x8d,0x78,0x23,0x8e,0xfd,0x47,0xd8,0xe3,0xdc,0xab,0xb9,0x9a, 0x12,0x50,0x1e,0x78,0xcf,0xaf,0xe5,0x56,0x1e,0xfa,0xe4,0x43,0x34,0x92,0x30,0x60, 0xaa,0x48,0x20,0x60,0x27,0x1d,0x7,0x1c,0xe2,0x93,0x5a,0x5c,0x1d,0x8d,0x2d,0x1a, 0x3d,0x9a,0x5c,0x3,0x8e,0x41,0x6e,0x3d,0xc9,0x35,0x7d,0x8e,0x6,0x5,0x52,0xd2, 0xd0,0xc3,0xa6,0x5b,0x23,0x70,0x44,0x4b,0x9c,0xfa,0xe0,0x67,0xf5,0xcd,0x59,0x32, 0x28,0x3c,0xba,0xe7,0xd3,0x35,0x49,0xe8,0x4,0x9f,0xc3,0x48,0x18,0xe,0xbd,0xea, 0x33,0x73,0x6e,0xa4,0xa9,0x9e,0x35,0x20,0xe0,0x82,0xe0,0x1a,0x8c,0xdd,0xdb,0x64, 0x8f,0x3e,0x2e,0x39,0xe5,0xa8,0x60,0x4e,0x7a,0x53,0xf,0xd2,0xab,0x4b,0x7d,0x6f, 0x12,0xee,0x69,0x86,0xdf,0x50,0x9,0xfe,0x54,0xd3,0x7f,0x6e,0x31,0x92,0xf9,0x3f, 0x77,0xf7,0x4d,0xcf,0xe9,0x53,0x71,0x96,0x73,0x8e,0xa0,0x8a,0xf,0x41,0x54,0xa5, 0xd5,0x6d,0xe1,0x7c,0x3a,0x4f,0xf5,0xf2,0xc8,0xcf,0xa7,0x7,0x9a,0x63,0xea,0xc8, 0xb8,0x26,0xda,0xe4,0x3,0xd3,0x31,0xe3,0xfa,0xd0,0x6,0x85,0x18,0xe7,0x35,0x9f, 0x16,0xaa,0x26,0x72,0xb1,0xdb,0xcb,0x91,0xc9,0xc9,0x0,0xff,0x0,0x3a,0x1b,0x52, 0x7d,0xe1,0x4,0x2b,0x92,0x71,0x83,0x28,0x7,0xf9,0x54,0xbb,0x1,0xa1,0x9f,0xc8, 0x50,0x9,0x1d,0x8f,0xe5,0x54,0x5a,0x7b,0x82,0xc1,0x45,0xaa,0x31,0x23,0x38,0xf3, 0xbf,0xfa,0xd4,0xd7,0xbb,0xb8,0x8c,0xfd,0xc8,0x76,0x28,0xcb,0x32,0xee,0x3b,0x7f, 0x41,0x4a,0xe0,0x5e,0x6e,0x4e,0x79,0xfc,0x45,0x2f,0x51,0x90,0x8,0xf7,0xac,0xff, 0x0,0xb4,0x5f,0x48,0xdf,0xb9,0x8e,0x19,0x13,0xfb,0xc1,0x73,0xfc,0xd8,0x53,0x2e, 0x24,0xd4,0xa0,0x8c,0xcc,0xe9,0xa,0xc2,0x83,0x2c,0xe1,0x40,0x3f,0x86,0x4e,0x3f, 0x5a,0x18,0x1a,0x2c,0x84,0xaf,0x0,0x92,0x69,0x54,0x60,0x72,0x47,0x1d,0x87,0x24, 0x56,0x44,0x57,0xaf,0x78,0x8,0x8e,0xf5,0x61,0x39,0xfb,0xb2,0x42,0x39,0x1e,0xb9, 0xef,0x4b,0xfe,0x99,0xf6,0x8c,0x7d,0xa2,0x47,0xb7,0x23,0x1,0xe3,0x88,0x2e,0xf, 0xbf,0xb5,0xa,0x20,0x6a,0x1e,0x47,0x5c,0xd3,0xd5,0x4f,0x5c,0x55,0x26,0x44,0x84, 0xe2,0x7b,0xf6,0x57,0x3,0x24,0x19,0x36,0x67,0xd3,0x8a,0xa7,0xfd,0xa4,0x4a,0xca, 0x15,0x76,0xba,0x7d,0xdd,0xf3,0x3b,0x6,0xfc,0x29,0xa0,0x36,0x19,0x48,0xe4,0x72, 0x3d,0x69,0x8,0x60,0x8,0x29,0xcf,0xd2,0xb1,0x62,0x82,0xfa,0x7b,0x35,0x94,0xdd, 0x42,0xf3,0x3f,0x24,0xa4,0x99,0x2a,0xf,0x6c,0xe7,0xf3,0x15,0x1c,0x96,0x36,0xed, 0xbe,0xd8,0x62,0x7b,0xc4,0xc1,0xdc,0xce,0x53,0x77,0xb2,0x81,0xc1,0xa2,0xd7,0x3, 0x6c,0x1f,0x2c,0xe1,0x97,0xaf,0x62,0x47,0xf8,0xd2,0x34,0x81,0xbf,0x88,0x6d,0x1e, 0x87,0x35,0xcf,0xb5,0xcd,0xc5,0xab,0xb4,0xb,0x6b,0x15,0xac,0xc7,0x1d,0x76,0x90, 0x41,0xe8,0x4e,0x4f,0x1d,0xea,0xcd,0xac,0x77,0x57,0x31,0x34,0x92,0x5c,0x6f,0x78, 0xce,0x52,0x54,0xb,0xb0,0x9f,0x63,0xe9,0xef,0x8a,0x39,0x42,0xe6,0xa9,0xb8,0x80, 0x70,0x92,0x46,0x5c,0x8f,0x94,0x6,0x19,0x3f,0x85,0x54,0xd5,0xa0,0x6b,0xed,0x1e, 0xe2,0x2c,0x12,0xcd,0x13,0x6d,0xa,0x48,0xcb,0xe,0x47,0xea,0x5,0x50,0xbc,0x32, 0x45,0x6e,0xf1,0xdf,0x4d,0x17,0x9a,0xdc,0xc5,0xe5,0x9f,0x99,0x5b,0xa8,0xe7,0x1d, 0x2a,0x76,0xd4,0x20,0xbb,0x5b,0x5b,0x75,0x56,0xea,0x1f,0x89,0x47,0xca,0x54,0x71, 0xdf,0xd6,0xab,0x94,0x57,0xb,0x6b,0xc4,0x9e,0xd6,0x29,0xdb,0x8,0x5c,0x0,0x78, 0x73,0xf3,0x60,0x71,0xc7,0xf9,0xe2,0xac,0xc3,0x7f,0x6e,0x8e,0x61,0x26,0x5f,0x33, 0xde,0x17,0xe9,0xf5,0xc5,0x62,0xd8,0xbd,0xcc,0xe2,0xe6,0x8,0xee,0x96,0x38,0x44, 0x89,0x3c,0x4c,0xe0,0x1c,0xef,0x4,0x90,0x4f,0x61,0xb8,0x11,0x49,0x6c,0xc,0xb7, 0xf,0x1b,0xdc,0x43,0x6a,0x54,0x90,0xea,0xaa,0xd8,0x6f,0x70,0x3a,0x7e,0xb4,0xb9, 0x50,0x36,0xfa,0x1b,0xe2,0xf6,0x37,0x0,0xc6,0x92,0xc8,0xa4,0x7d,0xe5,0x8c,0xe3, 0xf5,0xa8,0x1b,0x55,0x51,0x23,0x81,0x6f,0x74,0x76,0x90,0x8,0x58,0xd7,0x23,0xdf, 0x19,0xe9,0xcd,0x55,0xb7,0x68,0x61,0x8b,0x64,0x37,0x59,0x44,0x7,0xee,0x86,0x50, 0x49,0xf6,0x7,0xfc,0x68,0x30,0xdb,0x20,0x7b,0xdb,0xc8,0xcb,0x80,0x46,0x1b,0x2d, 0xf3,0xfb,0x10,0x7a,0xfe,0x54,0xf9,0x45,0x76,0x59,0x1a,0xa8,0x75,0x70,0x96,0x97, 0xb2,0x14,0x1b,0x98,0x2a,0x21,0xc0,0xfc,0xf3,0xeb,0xf9,0x52,0x8b,0xd7,0x92,0x3d, 0xf0,0x5b,0xce,0xcb,0xef,0x22,0x26,0x3e,0xbc,0xf0,0x6a,0xa4,0x13,0x45,0x1c,0xa5, 0x56,0xee,0x48,0xae,0x5d,0x8e,0xd8,0x52,0x31,0xb5,0x41,0xc9,0x3,0x7,0x8e,0x99, 0xa2,0x16,0xba,0x11,0x9,0xe5,0x68,0x66,0x85,0xe5,0x1,0x5d,0x58,0x46,0xe4,0xe7, 0xdb,0xe5,0xed,0xde,0x8e,0x40,0xb9,0x3c,0xd7,0xd7,0xf0,0x28,0x63,0xa6,0xdc,0x95, 0x27,0x1f,0x2c,0xe1,0x8f,0x4f,0x45,0x6,0xa3,0x17,0xf3,0x4a,0x32,0xf0,0xc7,0x1e, 0xf,0xfc,0xb4,0xbd,0x3f,0xd1,0x68,0xb8,0x4b,0xc8,0xe4,0x41,0x22,0xce,0x4,0x92, 0x64,0x32,0x4b,0x90,0xf,0x5d,0xa4,0x67,0x1d,0x5,0x3e,0x6d,0x41,0x59,0xb1,0xb9, 0xd7,0x2c,0x14,0x34,0x8b,0x85,0x27,0xea,0x28,0xe4,0x6,0xc6,0x47,0xab,0xce,0x1, 0x44,0x16,0x4d,0x93,0xc3,0x7d,0xa8,0x9c,0x7e,0x60,0x54,0xa9,0x77,0x79,0x23,0xa8, 0x6,0xcb,0x6b,0x12,0x37,0xd,0xcc,0xbf,0x9f,0xe7,0x44,0x8b,0x75,0x6f,0xe6,0x30, 0x98,0x95,0x61,0x86,0x5d,0x99,0x52,0x3a,0x7a,0x7b,0xd5,0x7b,0x19,0x5c,0x5e,0x79, 0x6b,0x74,0x63,0xb7,0x85,0x47,0xef,0x19,0x41,0xc,0x7d,0x32,0x78,0x1d,0x69,0xf2, 0xab,0x30,0xb9,0x79,0x12,0xfd,0xd7,0x8f,0xb0,0xc,0x75,0x3b,0x59,0xb1,0xf8,0x64, 0x54,0x6,0x59,0x5d,0x99,0x4e,0xa9,0xa7,0xa3,0xaf,0xf0,0x9b,0x52,0x33,0xf8,0x17, 0xa8,0x52,0xde,0x5,0xd4,0x99,0x52,0xed,0xe6,0x7c,0x6f,0x65,0xb5,0x18,0x6c,0x12, 0x73,0x9c,0x7f,0x9e,0x69,0x35,0x2b,0x98,0x21,0x96,0x17,0x36,0xce,0xbe,0x59,0xc, 0x4b,0xae,0xdd,0xe0,0x76,0x3,0xa1,0x34,0x72,0x83,0x6c,0xae,0x97,0x37,0x12,0x4c, 0x62,0x1a,0x94,0x7c,0x3f,0xcc,0xd1,0xda,0xa8,0x0,0x7a,0xf5,0x34,0xab,0x71,0x7a, 0xd2,0x33,0x36,0xaa,0x12,0x25,0x6c,0x6,0x36,0xcb,0x83,0xed,0x90,0xe,0x2b,0x5d, 0x75,0x6b,0x0,0x8b,0xfb,0xfd,0x8b,0xc6,0xa,0xa9,0xdb,0xcf,0xb8,0x18,0x15,0x46, 0xe2,0xe9,0x26,0xba,0x90,0x7e,0xe6,0x38,0x4a,0x61,0x1a,0x73,0x80,0xed,0xdc,0xe4, 0x7e,0x1d,0x29,0x72,0xa6,0xc2,0xee,0xc3,0x52,0x4b,0xb6,0xcc,0x9f,0x6a,0x51,0x18, 0xe0,0x13,0x32,0xed,0x3e,0xe0,0x85,0xfe,0x74,0xe7,0x49,0xae,0x8,0x49,0x24,0x97, 0x8e,0xaf,0x4,0xe3,0x8f,0xc8,0xa,0xc4,0xba,0xb8,0x68,0x8d,0xb5,0xd3,0xf9,0x37, 0x1b,0x1b,0xe6,0x89,0x9c,0x0,0xeb,0xd3,0x1c,0xf1,0xff,0x0,0xea,0xeb,0x5a,0xff, 0x0,0xda,0x5a,0x25,0xd5,0xb0,0x29,0x13,0xc4,0x58,0xc,0xa8,0xb7,0x64,0x20,0xfb, 0x10,0x31,0xfa,0xe2,0x9b,0x82,0x43,0x8b,0x63,0x8d,0xad,0xca,0x5b,0xb9,0x33,0xdd, 0xe1,0x3a,0x38,0x90,0xb7,0xe6,0x32,0x29,0x22,0xb1,0xbb,0x6d,0xad,0x15,0xd3,0xcd, 0x19,0x19,0xdc,0xcf,0x2c,0x64,0x7e,0xa7,0x35,0x15,0x95,0xb2,0x25,0xcc,0xb2,0xdc, 0x1d,0x96,0xce,0x98,0x5,0xd0,0xc6,0x58,0xfa,0x9c,0x71,0xc7,0xeb,0x4c,0x54,0xb8, 0x87,0xcb,0x86,0x1b,0xbd,0xf6,0xf2,0x31,0x54,0x9c,0x49,0x85,0xe9,0x9c,0x67,0x27, 0xd2,0x8e,0x44,0x39,0x48,0x8f,0x54,0x83,0x50,0x8a,0xee,0x2f,0x35,0xd1,0x62,0x90, 0xf9,0x68,0xeb,0x33,0x70,0xd8,0xcf,0xcc,0xf,0xb0,0x3c,0x8f,0x4a,0x92,0xd8,0xc1, 0xe5,0x3,0x1,0x95,0xe5,0x5f,0x99,0xd4,0xc4,0xb2,0xee,0xfa,0x70,0x3f,0x9d,0x57, 0xf2,0xa4,0xba,0xd3,0x5,0xcb,0xde,0x48,0x5c,0xcb,0x80,0x1c,0x97,0x45,0xed,0xd0, 0x2,0x47,0xd4,0x56,0x95,0xb8,0x73,0x6b,0x1b,0x42,0xfe,0x7c,0xa8,0xbb,0x72,0x0, 0x50,0xd9,0xf6,0x38,0xe3,0xa5,0x2e,0x55,0xd4,0x84,0xee,0x43,0x3f,0x98,0xf3,0xda, 0x5d,0x59,0xb3,0x8b,0xa5,0x20,0x34,0xf,0x19,0x50,0xeb,0xdc,0x60,0xf1,0x9f,0xc6, 0xb5,0xcd,0xf0,0xb6,0xf9,0x6e,0x61,0xd8,0xea,0x32,0x42,0x95,0x6c,0xa,0xa1,0x6f, 0xb,0x4f,0x1a,0x8b,0xe9,0x92,0x39,0xc9,0xc2,0x2a,0x9d,0xa5,0x3e,0x80,0x9c,0x54, 0x73,0x2c,0x7a,0x45,0xd4,0x48,0xd7,0x17,0x13,0x3d,0xd1,0xda,0xd2,0x49,0x86,0x3, 0xf1,0x18,0xc7,0x5a,0x69,0x6a,0x17,0xb6,0xe4,0xb3,0xea,0x2d,0xa8,0xa0,0x16,0x71, 0xfe,0xe9,0x18,0x33,0x4a,0xe0,0xed,0xe3,0xe8,0x2b,0x27,0x51,0xb5,0xbc,0x68,0x1f, 0x51,0x4b,0x63,0x20,0x45,0xcc,0x8b,0x16,0x18,0x4a,0x83,0xae,0x3,0x1d,0xd9,0x3, 0x27,0xbf,0xa7,0x7a,0xd9,0x5b,0xdb,0xbf,0x2b,0xcb,0xb5,0x91,0x59,0x40,0xc0,0x32, 0xc4,0x41,0x1e,0xdc,0x1c,0x66,0xab,0x5b,0x4f,0x78,0xb3,0x34,0x6c,0xf3,0xb9,0x4, 0x12,0xb3,0x5,0xc6,0x7f,0x3,0xc8,0xeb,0xd6,0x84,0xac,0xc7,0x7b,0xa3,0x21,0x1a, 0x37,0x40,0xf1,0x63,0x63,0x8c,0xe5,0x47,0xde,0x7,0xf0,0xa5,0xcf,0x7,0x1c,0x1f, 0x6e,0x2a,0x19,0xad,0x9b,0x46,0xba,0x30,0x4a,0xa5,0x2d,0xa6,0x76,0x68,0x5b,0x0, 0x5,0x62,0x49,0x28,0x30,0x7f,0x2f,0xae,0x2a,0x42,0xc4,0x64,0x74,0x35,0xb4,0x75, 0x39,0x25,0x78,0xb0,0xc9,0xe7,0xfa,0x93,0x4c,0x29,0xce,0x46,0x3e,0xa4,0xc,0xd2, 0x6,0x24,0x9a,0x37,0x60,0xfa,0xd5,0xda,0xc3,0x52,0xb8,0xfc,0x7a,0xfe,0x84,0xd1, 0x8c,0x7b,0x8f,0xa9,0xa4,0xce,0x68,0x3d,0xa9,0xd,0xab,0x7,0x6f,0xf0,0xa6,0x12, 0x33,0x4a,0x5b,0x14,0xcc,0xe4,0xd3,0x15,0xae,0x45,0x75,0x6e,0x2e,0x50,0x0,0xed, 0x1c,0xaa,0x77,0x47,0x22,0xf5,0x43,0xed,0xed,0xed,0x56,0xec,0x35,0xcd,0x49,0x91, 0xbc,0xc9,0x62,0x92,0x58,0xe,0xc9,0x62,0x95,0x1,0x27,0xd0,0xa9,0x4,0x70,0x7b, 0x7d,0x31,0x51,0x64,0xe7,0xfc,0xfe,0x75,0x5a,0xe6,0x19,0x3c,0xc4,0xbd,0xb3,0x90, 0x43,0x7b,0x10,0x2a,0xac,0x7e,0xeb,0xaf,0x52,0x8e,0x7,0x55,0x3f,0xa1,0xc1,0x15, 0x12,0x8d,0xcb,0x8c,0xda,0x3a,0xc8,0xf5,0x8b,0x69,0x52,0x31,0x1b,0xc6,0xb,0x0, 0x42,0x4d,0x94,0xeb,0xe9,0x9e,0xb8,0x39,0x15,0x39,0x59,0x1e,0x15,0x2f,0xc,0x64, 0x1e,0x40,0x12,0x1c,0x7f,0x2a,0xe7,0xad,0x2e,0xed,0xb5,0x7b,0x0,0x7e,0xce,0xaa, 0xc8,0xfb,0x64,0x8a,0x71,0x82,0x8c,0x31,0x95,0xdc,0x31,0xd3,0xdf,0xb7,0x4f,0x4a, 0xd7,0xd3,0x6f,0xec,0xe2,0x8d,0xac,0xdd,0x56,0x33,0x1b,0x1d,0xa5,0x41,0x60,0xc3, 0x24,0x8e,0x7b,0x11,0xd0,0xe6,0xb1,0x92,0xb1,0xd0,0xa4,0x9e,0xc5,0x89,0xfc,0x9b, 0x5b,0x66,0x98,0x47,0xe4,0x95,0xeb,0xb5,0xb3,0x4c,0x8a,0x69,0x6e,0x77,0x7,0x85, 0xc2,0xa9,0xea,0x71,0x9f,0xae,0x29,0xb7,0xb7,0xb6,0x77,0x32,0xad,0xad,0xbc,0xa2, 0x49,0x3,0x65,0x93,0x69,0xc1,0x18,0xf5,0x23,0xde,0x89,0x64,0x96,0x74,0x2f,0xbe, 0x5b,0x79,0xd4,0xe0,0x16,0xc0,0x1f,0x5c,0xe3,0x15,0x23,0x15,0x2d,0x56,0x19,0xd6, 0x43,0x14,0x8d,0x1e,0x72,0xc7,0x1b,0x97,0x14,0x12,0xb1,0xb0,0x30,0xcc,0xcd,0x10, 0x3e,0x9c,0x55,0x81,0x35,0xf4,0x36,0xbb,0xa4,0x31,0xcc,0xc0,0x67,0x28,0x4f,0x35, 0x9b,0xe7,0x5c,0x4b,0x21,0x61,0xb,0xa1,0x27,0x91,0x96,0x55,0xfc,0xe9,0x58,0xb, 0x2f,0x7a,0x63,0x43,0x2c,0x66,0x39,0x17,0x3c,0xa7,0x9a,0x33,0xfa,0xd4,0xb6,0xb2, 0xc7,0x7b,0x69,0xe6,0x2b,0xc5,0xb8,0xf0,0x55,0xd7,0x3b,0x4f,0xa7,0x5a,0xcf,0x92, 0xc6,0xf0,0xdc,0x24,0x89,0x6d,0x1c,0xf1,0xa9,0xc9,0xdc,0x43,0x3,0xf8,0x12,0x28, 0x96,0xd0,0xa4,0x73,0x34,0x96,0x6e,0x72,0x32,0xc4,0x2e,0xdc,0x7d,0x30,0x68,0xb0, 0xaf,0x60,0x8a,0x7b,0x89,0x2f,0x31,0xe7,0xc3,0x6c,0xa1,0x47,0xca,0x91,0xf0,0xdd, 0x7d,0x6a,0x79,0x23,0x52,0xc1,0xcd,0xf6,0xe5,0x3c,0x14,0xb,0x8c,0xfd,0x3d,0x2a, 0xb5,0xae,0xa1,0x12,0x44,0x23,0xf,0xca,0x1d,0xa0,0xed,0xdd,0xc5,0x5a,0xcc,0x6c, 0x5b,0x64,0xd1,0x17,0x3,0x70,0x4,0x95,0x23,0xf0,0xa2,0xe5,0x9,0xe6,0x5b,0xb4, 0x6e,0x12,0x3d,0xdb,0x7,0x1,0x89,0x6f,0xd7,0xad,0x32,0xde,0xf2,0xe6,0x59,0x52, 0x24,0x8f,0x72,0x9e,0xa4,0x64,0x6d,0xfc,0x4d,0x27,0xf6,0x9a,0xc2,0x8a,0xd3,0x44, 0x99,0xce,0xe,0xc9,0x77,0x1f,0xca,0xa4,0x59,0x96,0xf9,0xfc,0xb4,0x59,0x44,0x67, 0x95,0x91,0x1b,0x4,0x1f,0x4f,0x4a,0x5b,0x6,0xa5,0x89,0xe6,0x58,0x8a,0xab,0x23, 0xc8,0xfe,0x88,0x1,0x6a,0xab,0xa9,0x45,0xe7,0x5a,0x15,0x31,0x39,0xe3,0x27,0x0, 0x12,0x7,0xe7,0xfc,0xaa,0xb4,0x46,0x3f,0xb4,0xb7,0x99,0x7a,0xa1,0xd3,0x8d,0xc7, 0x96,0xfa,0x67,0xa5,0x3e,0xfa,0x41,0x3b,0x5,0x86,0x41,0x32,0x1,0x97,0x58,0xdb, 0xe6,0xfc,0xbf,0x3a,0x2c,0x2b,0xd,0xb7,0xb7,0x69,0xa1,0xf9,0x9e,0x55,0xa,0x7, 0x2a,0x47,0x35,0x10,0x8e,0x49,0x59,0x8c,0x5e,0x6b,0xe,0x80,0xca,0xf8,0x19,0x15, 0x2c,0x92,0x9,0x46,0xe8,0x8f,0xee,0x88,0xc1,0xc0,0x20,0x93,0xdc,0x52,0xc9,0x70, 0x5e,0x4,0x48,0xa1,0x93,0x6a,0x70,0xe9,0x80,0x79,0xf7,0xef,0x4f,0xd4,0x2c,0xc8, 0xe6,0x73,0x10,0x8e,0x39,0xa4,0x9,0x39,0x18,0x12,0x73,0xfa,0xd3,0xa7,0x9a,0x6b, 0x78,0x3,0xc7,0x2c,0x2e,0xcb,0xcb,0x91,0x37,0xf4,0xc0,0x26,0xa0,0x95,0x61,0xa, 0xad,0x2e,0x36,0x33,0x60,0xa4,0x84,0xf1,0xf9,0x55,0x29,0x8d,0x96,0x5a,0x37,0x91, 0xa4,0x50,0xdc,0x2b,0x8f,0xc8,0x67,0xad,0x1b,0x8f,0xd0,0xeb,0xbc,0x10,0xe2,0x49, 0x35,0x9,0x37,0x97,0xde,0x22,0x6c,0xe0,0x81,0xce,0xff,0x0,0x5a,0xeb,0xeb,0x94, 0xf0,0x4a,0x15,0x8e,0xec,0xe3,0x0,0x88,0xc0,0x19,0xce,0x31,0xba,0xba,0xba,0xf4, 0x28,0xfc,0x8,0xc2,0x7b,0x99,0x7a,0xc7,0xfc,0xb1,0xe3,0x3f,0x7b,0xfa,0x56,0x60, 0xe9,0x8c,0x64,0xd6,0x8e,0xb7,0x9c,0x42,0x37,0x63,0xef,0x7f,0x4a,0xc8,0x71,0x36, 0xc2,0xb1,0xba,0x83,0xd3,0xe6,0xae,0xc,0x43,0xfd,0xe3,0x37,0xa7,0xf0,0xa2,0x53, 0x1e,0x4e,0x76,0x8c,0x7d,0x28,0x92,0x37,0x3f,0x2a,0xb6,0xc1,0xdf,0x3,0x1f,0xad, 0x35,0x3,0xac,0x40,0x19,0x32,0xdf,0xde,0xc0,0xc1,0xa4,0x24,0x88,0xca,0x13,0x92, 0x47,0xb7,0xf2,0x1c,0xd6,0x5a,0x14,0x4a,0x88,0xa3,0x1b,0x63,0x2d,0x8e,0xe3,0x14, 0x80,0x91,0x27,0xcc,0xbc,0x1e,0xe7,0x1f,0xd2,0xa3,0x54,0x28,0xa3,0x1,0xb0,0x5, 0x19,0xcf,0x45,0x1b,0xbd,0x29,0x5c,0x7,0xe0,0x3,0x90,0x37,0xf,0x5d,0xd4,0xc6, 0x25,0x5f,0xe7,0x65,0x5e,0x71,0x80,0x4b,0x7f,0x21,0x42,0xab,0x77,0x4,0x81,0xdb, 0xd2,0x86,0x75,0x55,0x25,0x88,0x20,0x73,0xee,0x28,0x2,0x2b,0xcb,0xb5,0xb5,0xb3, 0x37,0x4,0x6e,0xc7,0x8,0xa7,0x20,0xbb,0x76,0x0,0x75,0xc9,0xaa,0x5a,0x75,0xa4, 0x88,0x9e,0x6c,0xb8,0x33,0xcc,0xfe,0x6c,0x8e,0x78,0x19,0xe3,0x0,0x3,0xd8,0x0, 0x0,0xfa,0x55,0x62,0xef,0xab,0x6a,0x1f,0x68,0x7d,0xc2,0xce,0x1f,0x92,0x25,0xf2, 0x99,0x83,0x1e,0x37,0x37,0x3,0x27,0xb8,0x7,0xeb,0xeb,0x5a,0xa9,0x6f,0x6f,0x91, 0xb6,0xdf,0x69,0x1d,0x41,0x8d,0x3f,0xfa,0xe4,0x7f,0xfa,0xe8,0x6a,0xfb,0xf,0xa1, 0x73,0xcd,0x8f,0x86,0x2e,0x18,0x81,0x82,0x7a,0xd4,0x8b,0x22,0xec,0x25,0x8,0x38, 0xf4,0xaa,0xa6,0x4d,0xac,0x53,0xcb,0x55,0x3d,0x79,0xda,0x38,0xfc,0xe9,0xd0,0xdc, 0x26,0x8,0x90,0xa7,0x3,0x21,0x96,0x45,0xc1,0xfd,0x69,0xa6,0x43,0x2e,0x7,0xce, 0xde,0xbd,0x32,0x4e,0x68,0x2e,0x10,0x16,0x24,0xe0,0xd5,0x6f,0xb4,0x28,0x8b,0x27, 0x38,0x23,0x82,0x6,0x7f,0x95,0x3b,0xed,0x28,0xf8,0x44,0x24,0x92,0x33,0xca,0x9f, 0xcf,0xa5,0x5d,0xc5,0x62,0x7d,0xe5,0x97,0x25,0x78,0xfa,0x53,0x39,0xda,0x40,0x8d, 0xb0,0x6a,0x8c,0xba,0x95,0xba,0x64,0x49,0x22,0x6,0x1d,0xfc,0xb7,0x35,0x23,0xde, 0xc6,0xb1,0x2b,0x95,0x2e,0xa4,0x67,0x72,0xc6,0x31,0x8e,0xbd,0xcd,0x3b,0x8c,0x9c, 0xba,0xa1,0xda,0xc5,0x43,0x7a,0x13,0xcd,0x20,0x2a,0x3e,0x62,0x6,0x4f,0xaf,0x6a, 0xaf,0x18,0x69,0x54,0x4c,0x2c,0x25,0x1b,0xbb,0xed,0x40,0x7f,0x9d,0x13,0xca,0xf6, 0xd0,0x19,0x1e,0x9,0x13,0x90,0x30,0xd2,0x26,0xf,0xeb,0xfd,0x2a,0x5a,0x60,0x59, 0x33,0x60,0x6e,0x62,0x0,0xfa,0xe7,0xfa,0x53,0xb7,0xe5,0x43,0x1e,0x47,0xb0,0x35, 0x90,0x75,0xb,0x80,0xde,0x64,0x76,0x8d,0x24,0x79,0xc6,0x4c,0x85,0x14,0xfd,0x9, 0x51,0x9a,0x91,0x2f,0xaf,0x25,0x3c,0xd9,0x46,0x83,0xae,0xe6,0xb8,0x38,0xfc,0xb6, 0xd3,0x48,0x34,0x35,0x3,0x9c,0xed,0xc9,0xfc,0x14,0x9a,0x51,0x93,0xd4,0x9f,0xca, 0xa8,0x79,0xb7,0x12,0xc4,0xaf,0x8,0x87,0x3d,0xc3,0x16,0x38,0xfc,0xaa,0x19,0xa5, 0xd4,0x8a,0x93,0x1f,0xd8,0xc9,0x1f,0xc2,0x51,0x83,0x1f,0xa6,0x4d,0x21,0x1a,0x8c, 0xe5,0x58,0x28,0x52,0x7d,0x4f,0xa5,0x4,0xe4,0x74,0x38,0xac,0xbb,0x69,0xae,0xaf, 0x2d,0xe4,0x94,0x4e,0xa1,0x23,0x20,0x6,0x58,0x46,0x18,0xe3,0x9c,0x64,0x9f,0x6a, 0xaf,0x15,0xf4,0xd2,0x4a,0xe3,0xcd,0x9e,0x56,0x5f,0xf9,0x65,0xc,0x41,0x8a,0x8f, 0x53,0x81,0xc5,0x3d,0x40,0xda,0x8,0xa0,0xee,0x27,0x3,0xbf,0x34,0x65,0x57,0xe6, 0x5d,0x9c,0xfd,0x6b,0x36,0x6,0x96,0x50,0x5e,0x6b,0xc9,0xad,0xca,0xff,0x0,0xcb, 0x3c,0x20,0x23,0xdf,0x25,0x69,0xa4,0x8,0x6d,0xda,0x69,0x2e,0x6e,0xe4,0xe,0x78, 0xc4,0xac,0x58,0x9f,0x6c,0x60,0x53,0x3,0x58,0x32,0x7e,0x3d,0xc8,0x14,0xee,0x7a, 0x6d,0x6f,0xca,0xb0,0xae,0x6c,0x9c,0x5a,0x2c,0xf1,0x7d,0xb6,0x51,0xd5,0xd0,0xce, 0xc7,0x1f,0x86,0x6a,0xbc,0x10,0xdb,0x4a,0x8f,0x1f,0x96,0x64,0x90,0xa1,0x60,0x24, 0x3,0x8f,0x6c,0x72,0x47,0xe3,0x4d,0x20,0x3a,0x3e,0x14,0xe1,0x71,0x91,0xe9,0x51, 0x35,0xe5,0xbc,0x4c,0x56,0x49,0xe2,0x8c,0xff,0x0,0xb5,0x20,0x15,0x8f,0xa7,0xdb, 0x47,0xf6,0x74,0x8c,0xdb,0x42,0xea,0x4f,0x25,0x10,0xd,0xbf,0x8f,0x43,0xdb,0xa1, 0xa9,0xe0,0xb4,0x82,0xe8,0x36,0xed,0xb0,0xdb,0xf9,0x98,0x48,0xf7,0xc,0xbe,0x3b, 0xff,0x0,0x3c,0x51,0x60,0x2f,0x36,0xa5,0x64,0xa0,0x1f,0xb6,0xdb,0x80,0x7b,0x99, 0x5,0x54,0x97,0x5b,0xb2,0x8c,0x8c,0x5e,0x45,0x83,0xd3,0x62,0xb9,0xe7,0xf0,0x15, 0x56,0x67,0xb6,0x86,0xf0,0xda,0xda,0x12,0xd1,0x46,0x72,0xe7,0x7e,0x55,0x5b,0x1c, 0x81,0x9e,0xbd,0xaa,0x15,0xba,0x96,0x27,0x8d,0xa0,0x8a,0x39,0x94,0x67,0x7a,0x1c, 0x0,0x79,0xe3,0xfa,0xd5,0x72,0xe8,0x2e,0x6b,0x68,0x6a,0x47,0x75,0xe7,0x1c,0xc5, 0x23,0x37,0x19,0xff,0x0,0x8f,0x63,0x9f,0xcc,0x91,0x50,0x5f,0xde,0x4f,0xd,0xb3, 0x95,0x47,0x69,0x8,0xda,0xaf,0xe5,0x0,0x1,0x24,0x1,0xce,0x4f,0xad,0x3e,0xd8, 0x5f,0xdc,0x4a,0xce,0x23,0xb6,0xb6,0x50,0x3e,0x5c,0xe6,0x46,0xfc,0x81,0x2,0xb3, 0xb5,0x89,0xd8,0x4a,0x96,0xcd,0x30,0x9d,0xa2,0x71,0x24,0xd2,0xe,0x39,0x3,0xe5, 0x52,0xa3,0xfd,0xa6,0x53,0xf8,0x54,0x5b,0xb0,0xe4,0xec,0xae,0x42,0x97,0x4f,0x13, 0x86,0x44,0x4c,0x80,0x17,0x7b,0xee,0x63,0xc0,0xc7,0x40,0x7e,0xb5,0x3b,0x5f,0xdc, 0xcd,0x68,0x96,0xf1,0xbc,0xb6,0xe8,0xe,0x5e,0x48,0xd8,0x2b,0x3f,0xb6,0x39,0x20, 0x56,0x7d,0xb1,0x2b,0x1a,0xa6,0xec,0xe1,0x40,0xcf,0xf5,0xab,0xa,0xc0,0x12,0x33, 0xf8,0xd6,0xea,0x1a,0x18,0xaa,0x97,0x13,0xcd,0x78,0xec,0x4c,0x1f,0x60,0xb4,0x32, 0xe7,0xfd,0x79,0x76,0xcf,0xd4,0x8e,0xbd,0x3d,0xea,0xc5,0xa6,0xaf,0x71,0x6d,0x11, 0x8d,0x2c,0x2d,0x78,0x3c,0x18,0xe7,0x68,0xd4,0xfe,0x1b,0x4d,0x57,0x9a,0x4d,0xa0, 0x2e,0xe3,0x9f,0xad,0x56,0x32,0x2,0x4e,0x1b,0x1f,0x8d,0x5a,0xa6,0x99,0x9c,0xeb, 0x58,0xd1,0x9b,0x5b,0xbe,0x76,0xde,0x74,0xfd,0x3c,0x30,0xe0,0x33,0x48,0x5c,0x8f, 0xfc,0x74,0x55,0x13,0x71,0x72,0xc4,0x16,0x75,0x56,0xee,0xd0,0x96,0x8c,0x9f,0x6c, 0x82,0x38,0xa8,0x1a,0x42,0x38,0x4,0xf1,0x4d,0x2f,0xbb,0x91,0x9c,0x8a,0xbe,0x44, 0x43,0xac,0xde,0x88,0xb5,0x5,0xe5,0xed,0xa0,0x22,0xd2,0xe9,0x91,0xf,0x26,0x39, 0x14,0x3a,0xfe,0xbc,0xfe,0xb4,0xe6,0xd5,0x75,0x82,0x77,0x36,0xa3,0x81,0xd8,0x24, 0x2a,0x3f,0x9e,0x6a,0xb0,0x24,0x80,0x69,0xac,0xdf,0x2d,0x35,0x8,0x8b,0xda,0x49, 0x2d,0xc7,0x19,0xae,0x25,0xd,0xe6,0xde,0x4e,0xe5,0x8f,0xcc,0x4b,0x0,0x4f,0xe2, 0x5,0x47,0x3b,0x34,0x36,0xb7,0x2c,0xb2,0xc9,0x83,0x13,0xe4,0x16,0x24,0x1e,0x29, 0x36,0x9c,0x66,0x99,0x21,0x44,0x85,0x4b,0x95,0xc7,0x9a,0x83,0x2e,0x32,0x39,0x61, 0x44,0xe9,0xae,0x57,0x62,0x61,0x52,0x4d,0xad,0x4e,0xd2,0xd4,0xdd,0xcb,0x75,0x23, 0x4d,0xd,0xb3,0x58,0x80,0x1a,0x16,0x43,0x92,0xc3,0x1d,0x47,0xb5,0x43,0x25,0xec, 0x52,0xe5,0x6c,0x88,0x6c,0xf7,0xc8,0x27,0xdf,0x3,0x9e,0xb8,0xeb,0x59,0x12,0xc5, 0x3,0x68,0xca,0xa5,0x25,0xf3,0x5e,0x46,0x8,0x64,0x24,0x46,0x9c,0x92,0x70,0x9, 0xfb,0xbc,0x1a,0xd6,0x96,0xf1,0x1a,0xd2,0xc6,0x25,0xb7,0x51,0x72,0xe1,0x19,0x16, 0x3e,0x88,0x8,0x4,0xe3,0x1d,0x3e,0x95,0xca,0x77,0x9a,0x96,0x13,0xda,0x35,0x98, 0x92,0x5,0xb,0x91,0x97,0x5c,0x12,0x47,0xd7,0xb9,0xa4,0x75,0x82,0x46,0xdf,0x12, 0xa2,0x39,0x1c,0x3e,0xc2,0xf,0xf2,0xaa,0x70,0xda,0xc8,0x92,0x48,0x51,0x8a,0x3b, 0x12,0x3b,0x74,0xa9,0xd6,0xd5,0xdb,0x89,0x44,0x4c,0xa0,0x63,0x70,0x53,0x96,0xfa, 0xff,0x0,0xf5,0xa9,0x5c,0xa,0x93,0xdf,0x69,0x71,0xb9,0x8a,0xee,0x75,0x9e,0x64, 0x3d,0xd3,0x7f,0x3e,0xc7,0xa0,0x3f,0x8d,0x54,0x6b,0xb7,0x95,0x7e,0xd6,0x67,0x68, 0x36,0xe4,0x46,0x80,0xee,0xc1,0xf7,0x19,0xc7,0xd6,0x9c,0xb7,0x63,0x4f,0xbd,0x96, 0x19,0xed,0x62,0x84,0x36,0x18,0xb,0x60,0x30,0x41,0xf6,0xfa,0x83,0x4c,0x99,0x87, 0x9c,0x7c,0xd4,0x8b,0x38,0xc4,0x71,0xa8,0xc7,0x7,0xfc,0x8e,0xd4,0x26,0x32,0x58, 0x60,0x95,0xd0,0xcd,0x22,0xb8,0xc,0x4e,0xe9,0xee,0xf,0x18,0xf6,0xee,0x2a,0xb4, 0x93,0x59,0xc0,0xaf,0x19,0xbe,0xba,0xbb,0x94,0x9f,0xbb,0x1e,0xe,0x7,0xe2,0xf, 0xf3,0xab,0x2b,0x73,0x77,0x24,0x72,0xfd,0xb6,0x4b,0x4b,0x58,0xcf,0x72,0x3,0x16, 0x1d,0xc7,0x2d,0x8f,0x4a,0x7d,0xbd,0xcc,0x56,0x76,0xe8,0xd2,0xb1,0x91,0x5b,0x22, 0x30,0x90,0x63,0x23,0xb6,0x3d,0x5,0x37,0x60,0xb1,0x15,0xb2,0x95,0xb7,0x33,0x2, 0x63,0x42,0xb9,0xf2,0xc4,0x38,0x1c,0x77,0x38,0xeb,0x4d,0xb2,0x8a,0x6b,0x82,0x24, 0x8a,0xd5,0x51,0x41,0xf9,0xa6,0x96,0x76,0x21,0xfd,0x70,0x38,0xe0,0x53,0x9a,0xe8, 0xbe,0xa5,0xe6,0xbc,0x72,0xc3,0x2,0x61,0x55,0x32,0x48,0xce,0xf,0x3b,0x47,0xe1, 0x50,0xdd,0xbd,0xad,0xe4,0x51,0x66,0xee,0x45,0x68,0x93,0x4,0xec,0x61,0x80,0x7b, 0x63,0x8e,0x73,0xfc,0xaa,0x6c,0x4,0xca,0xb0,0xdf,0xdf,0x87,0x59,0x5b,0xcc,0x87, 0x80,0x60,0x43,0x8f,0xc4,0x9a,0xbd,0x2b,0x59,0x15,0x74,0x9e,0x65,0x66,0x61,0xfb, 0xc5,0x69,0x7e,0x66,0xfc,0x5,0x56,0xd3,0xef,0xd5,0xb,0x34,0xb1,0xa5,0xbd,0xb7, 0xb,0x18,0xe8,0xc4,0xfb,0x8f,0x4f,0x73,0x53,0x5e,0x7d,0x89,0xa2,0xfb,0x5d,0xca, 0x42,0x36,0xb6,0x16,0x44,0x6e,0xa7,0xb6,0x8,0xc6,0x68,0x11,0x9a,0xfb,0x12,0x45, 0x86,0xd6,0x17,0x8e,0x49,0xc8,0x3e,0x60,0xb8,0x2b,0x80,0x3a,0xfd,0x78,0xed,0x52, 0x9b,0x19,0x76,0xec,0x78,0x65,0xcf,0x99,0xb8,0x6,0x9c,0x5,0xf4,0xce,0xf,0x5a, 0x2c,0x9f,0xed,0xca,0xc2,0x4d,0x97,0x12,0xef,0xe,0x17,0x71,0xe0,0x70,0x78,0xfe, 0x55,0x3e,0x63,0x71,0x3d,0xac,0xf1,0x7f,0xa4,0x45,0x1f,0x9b,0x1b,0x2b,0x1c,0x90, 0xf,0x0,0x1c,0xe7,0x8e,0x5,0x31,0x8a,0xe2,0x63,0x12,0x5a,0x2d,0xc9,0x82,0xe0, 0xae,0x2,0xe3,0x2a,0x47,0xd7,0x91,0xf9,0x54,0x72,0xdb,0xe6,0x2f,0xb1,0x19,0x67, 0x32,0x95,0xe4,0xc4,0xc7,0x9f,0x5c,0xfb,0x55,0xc9,0x5d,0x23,0xb4,0x79,0xa7,0x85, 0xf7,0x84,0xcb,0xa1,0xc9,0xc1,0xf4,0xcd,0x61,0x2d,0xcf,0x9d,0x12,0x45,0xf6,0x69, 0xa0,0x33,0xf2,0xc4,0x3b,0x5,0x2b,0xc7,0x1c,0xe4,0x13,0xcf,0xa5,0x1b,0x81,0x63, 0x4a,0x8e,0xb,0x9,0xa5,0x79,0x6d,0x57,0x67,0xb,0xbd,0x55,0x8,0x52,0x33,0x9e, 0x73,0xf4,0xa9,0xa7,0xbd,0xb6,0x9e,0x51,0x1d,0x9d,0xba,0x28,0x0,0xb6,0xc9,0x10, 0xe1,0xc8,0xff,0x0,0x64,0x1c,0x1a,0x8a,0x48,0x23,0xb2,0x68,0xcc,0x76,0xae,0xb6, 0xa8,0x3,0x30,0x99,0xce,0x1c,0x9f,0x51,0x4c,0xbc,0x16,0xf2,0xcd,0x63,0x23,0x41, 0x1c,0x7,0xcd,0xd,0xe6,0x2c,0x45,0x5b,0x0,0x7a,0x63,0xa7,0xd6,0x8b,0x80,0xdb, 0x28,0x6e,0xd,0xf9,0x81,0xa4,0xf2,0x95,0xe3,0x67,0x2b,0x16,0x62,0x7,0x4,0xc, 0x6d,0x1c,0xa,0x86,0xf2,0x34,0xb6,0x9e,0x4b,0x6b,0x87,0x43,0x9,0x55,0x97,0x73, 0x26,0x5b,0xa9,0x18,0xe6,0xae,0xcc,0xb6,0xf7,0x12,0x42,0xf1,0xca,0xec,0xfe,0x66, 0xdc,0x88,0xd9,0x58,0x71,0xd8,0xfe,0x15,0x14,0xd3,0xc3,0x3,0xa8,0x92,0x13,0x3c, 0xb1,0xbe,0x62,0x9e,0x7e,0x42,0x1e,0xb8,0x27,0x92,0x79,0xcf,0x6,0x8b,0x8a,0xe4, 0x68,0xde,0x61,0x95,0x6d,0xad,0x60,0x83,0x60,0x1b,0x63,0x92,0x3f,0x9e,0x51,0x9f, 0x43,0xd8,0xf5,0xce,0x2b,0x5a,0x17,0x97,0xed,0xce,0x12,0x75,0xfb,0x20,0x18,0x11, 0xc4,0x98,0x2a,0xfc,0x7b,0x55,0x5,0x9e,0xfe,0x6b,0xb8,0xee,0x9a,0xe0,0xc4,0x63, 0xc2,0xec,0x16,0xc4,0x7,0x1d,0x4e,0x9,0xc9,0x3e,0x95,0x7e,0x3b,0xf9,0x22,0x40, 0xad,0x6a,0xce,0x47,0x39,0x5f,0x94,0x93,0xeb,0x83,0xd3,0xf3,0xa1,0x5f,0xa0,0x2d, 0x4c,0xa8,0xed,0xa6,0x9e,0x47,0x79,0xe7,0x59,0x16,0x42,0x49,0x28,0xe0,0xb8,0x6e, 0xc3,0x9c,0x63,0x1f,0xd2,0x96,0x72,0xe6,0x7b,0x46,0x72,0xa,0x5a,0x93,0x1e,0xe0, 0xb8,0xda,0x4e,0xdc,0x6e,0xeb,0xc6,0x40,0xe4,0x54,0xfa,0x8d,0xd5,0xed,0xc5,0x9b, 0x95,0xb,0x6,0x18,0x2c,0x6a,0x46,0xf2,0xfc,0x8c,0x92,0x7a,0xe,0x3b,0x55,0x91, 0x71,0x75,0x2d,0x94,0x96,0xf2,0xc7,0x12,0xc8,0x63,0x61,0x1b,0x74,0xde,0x3a,0x2, 0x46,0x32,0x3f,0xfa,0xd4,0xed,0xdc,0x56,0x46,0x42,0x5b,0x9b,0x75,0xb6,0x89,0xe1, 0x61,0xb,0x97,0xb5,0xc,0xe,0x37,0x31,0xc4,0x8a,0x47,0xb8,0x60,0x40,0xcf,0xf7, 0xaa,0xcb,0x19,0x12,0x0,0xd1,0xcd,0xfb,0x99,0x9,0xe6,0x75,0x1b,0xd0,0xf4,0xc7, 0x24,0x3,0xd2,0xaa,0x6a,0xb3,0x6a,0x57,0xb6,0x9,0xb2,0x17,0xf,0x12,0x79,0x8e, 0x15,0x36,0x91,0x22,0x72,0x30,0x4f,0x6c,0xe0,0xf1,0x9f,0x4a,0xd9,0x3a,0xd5,0x9a, 0xdb,0xc6,0xf2,0x3e,0xdf,0x35,0x77,0xaf,0x5c,0xe3,0x19,0xed,0x49,0xe8,0x5,0x46, 0xb8,0xd,0x3d,0xb8,0xf2,0x22,0x59,0x59,0x40,0xdc,0xc0,0x85,0x67,0x3c,0xc,0xa9, 0x18,0x3,0xad,0x25,0x94,0x93,0x5b,0x6a,0x11,0x5b,0xbb,0x65,0x26,0x24,0x34,0x72, 0xc,0x80,0xd8,0x27,0x2a,0x3b,0xe,0x31,0x55,0x64,0xbf,0x5b,0xb6,0x31,0xbb,0x88, 0xdc,0xb6,0x61,0x52,0xf,0x23,0xd7,0x3d,0x3d,0xe,0x33,0x56,0xee,0x84,0x77,0xd1, 0xf,0xb5,0x82,0x92,0xc7,0xf3,0x2,0xa3,0xe6,0xcf,0xa8,0x6f,0x4f,0x6c,0x8a,0xa6, 0x84,0x4c,0xda,0x8c,0x96,0xfa,0x8b,0x5b,0xcd,0x5,0xb4,0x13,0x49,0x82,0xf2,0x49, 0x38,0xa,0xca,0x9,0xe7,0x9f,0x6e,0x29,0x2c,0xe2,0xb6,0x6d,0x42,0x76,0x32,0xc3, 0x2c,0x72,0x39,0xc4,0xa,0x73,0x18,0x27,0x18,0x20,0x1e,0x3d,0x6a,0x8d,0xb4,0x76, 0x10,0xb7,0x99,0x79,0x1a,0x3a,0x3a,0xed,0xdd,0xb9,0x9f,0x6b,0x67,0x92,0xd9,0xe4, 0x13,0xc7,0x3d,0x2b,0x58,0xdc,0x5b,0x3a,0x2d,0xbd,0xb5,0xca,0x60,0x29,0x24,0x6, 0xe5,0x40,0xc7,0xa7,0x7e,0x68,0x4,0x8a,0xfa,0xc5,0xba,0xb4,0x91,0x35,0xbc,0x41, 0x9f,0x25,0x5c,0x64,0x72,0x38,0xce,0x3d,0xfd,0xea,0x78,0xae,0xec,0x59,0x56,0xde, 0x22,0x20,0x63,0xc1,0x42,0x98,0xe7,0x1d,0xd,0x40,0x97,0x1b,0x67,0x10,0x79,0xa6, 0xf2,0x30,0x46,0xf7,0xc6,0x4a,0x2,0x7a,0xfd,0x45,0x6a,0xfd,0x91,0x64,0x55,0x22, 0xe2,0x43,0x1f,0x4d,0x99,0x52,0xa7,0xf4,0xcd,0x1,0xca,0x65,0xcc,0x6e,0xad,0x1b, 0xe6,0x56,0x78,0xfe,0xf2,0x2,0xe4,0x8f,0xa6,0x31,0x9a,0x64,0x50,0xc9,0x7c,0xc0, 0xc8,0xb3,0x5b,0xdb,0x28,0xc,0x60,0x31,0xb4,0x61,0x9b,0xd4,0x13,0xcd,0x3a,0x56, 0xb6,0xb6,0xd4,0x76,0xfd,0xbd,0xad,0x9e,0x20,0x40,0x5c,0x12,0x84,0x1e,0xb9,0xec, 0x3f,0x4a,0xd0,0xb7,0xbd,0x59,0xad,0x1a,0x75,0x11,0x38,0x19,0x1f,0x23,0x82,0x8, 0xf5,0xc9,0xc5,0x21,0xd9,0x22,0x9c,0xaa,0xda,0x4e,0xa6,0xb2,0xda,0x22,0xc8,0x97, 0x28,0x7c,0xc4,0x95,0x88,0xfb,0xbc,0x70,0xdd,0x8f,0x26,0x9d,0x75,0xaa,0x24,0xf1, 0xf9,0x52,0x44,0x1f,0x70,0xf9,0xd5,0x89,0xc0,0xf6,0xe4,0x75,0xff,0x0,0xa,0x86, 0x4b,0x9b,0x2b,0x77,0x79,0x2e,0x64,0x28,0xed,0x9d,0xb8,0x25,0xb3,0x93,0x9e,0x3e, 0x95,0x41,0xce,0x3,0xca,0x2e,0x5f,0xca,0x66,0xc2,0x18,0x5b,0x1b,0xff,0x0,0x5c, 0x67,0xe9,0x55,0x15,0x70,0xe6,0x27,0x64,0xb5,0xb0,0xd3,0xcb,0xee,0x2f,0x6c,0xee, 0x40,0x81,0x98,0x82,0x5b,0xbf,0x23,0xe9,0xd3,0x8e,0x95,0x66,0x4b,0x49,0x16,0x35, 0x95,0x96,0xdd,0x15,0x53,0x31,0xec,0x5d,0xe1,0x4f,0xe2,0x39,0xed,0xde,0xb0,0x6f, 0xd6,0xdb,0xcb,0x8c,0x2c,0xed,0x1e,0xd2,0x5f,0xca,0xdc,0x64,0x5,0xfb,0xe7,0x9c, 0x67,0x93,0x4f,0xb4,0x78,0xd6,0x18,0xa6,0x16,0x13,0x4e,0xaf,0x29,0x42,0x59,0x82, 0xa9,0x7c,0xf1,0xb1,0x57,0xa8,0xfa,0xfb,0xd0,0xe3,0xd8,0x5b,0xec,0x6b,0x47,0x6b, 0x71,0x25,0x8c,0x8b,0x15,0xe4,0x4f,0x71,0x82,0xbb,0xd9,0x14,0x14,0xf5,0x5f,0x6f, 0xca,0xb3,0xf4,0xf2,0x89,0x3a,0x35,0xdd,0xac,0xea,0xb2,0x80,0x17,0x64,0x84,0xa8, 0x1f,0xee,0xf5,0x3f,0xaf,0xd0,0x56,0x8b,0xe9,0xe9,0x7f,0x2b,0xcc,0xf6,0xe6,0xd6, 0xe5,0x38,0x90,0x11,0xb8,0x30,0xc0,0x39,0xe3,0xad,0x51,0x49,0x12,0x17,0x71,0x15, 0xcd,0xba,0xac,0x5c,0x96,0x44,0x2a,0x7f,0xef,0x93,0xd4,0x7e,0x94,0x93,0xb0,0xd6, 0x82,0xdb,0x5d,0x24,0x33,0x49,0x64,0xde,0x6c,0xd0,0xb4,0x84,0x11,0x37,0xcc,0x42, 0xff,0x0,0xb8,0x7f,0xcf,0xb5,0x58,0x3a,0x54,0x81,0x5b,0xfb,0x3d,0xc3,0xc3,0x9c, 0x3a,0x4e,0x36,0x85,0x3d,0x72,0x30,0x3f,0xa5,0x5f,0xb2,0xbd,0xb5,0xb8,0xdb,0x24, 0x77,0x71,0xb4,0x84,0x0,0xc8,0x57,0x69,0xfc,0x6,0x33,0xfd,0x2a,0x81,0x6b,0x5d, 0x57,0x12,0x2d,0xe9,0xb1,0xb8,0x65,0xdc,0xa5,0x64,0x0,0x48,0xbe,0xac,0x33,0xce, 0x3d,0x33,0xde,0xa1,0x68,0x1e,0xa4,0x6f,0x72,0xb0,0xab,0x2b,0x13,0x22,0xa8,0xcb, 0x8,0xd5,0x4a,0x93,0x8f,0x42,0x46,0x7a,0x7a,0x53,0xa5,0xd4,0xb4,0xd6,0xb5,0x8e, 0x3d,0x5e,0x37,0xb7,0x46,0xc3,0xc7,0x80,0x70,0x57,0xb7,0xdd,0xe8,0x69,0xf0,0x58, 0x9b,0xd8,0x4c,0x21,0xcc,0xbb,0x25,0x23,0xcf,0x50,0x85,0x78,0x1d,0x87,0x52,0x3f, 0xc6,0x99,0xa,0xc9,0xa6,0xdd,0xe2,0xd5,0x92,0x62,0xc8,0x46,0xd2,0x9b,0xf,0x7, 0x95,0x19,0x3e,0xfd,0x8f,0xd4,0x74,0xa7,0x71,0x25,0x6d,0x4b,0x4c,0xf6,0xb7,0x36, 0x13,0x4b,0xe7,0xc4,0x10,0x29,0x58,0x1d,0xe4,0x61,0xcf,0x5f,0xe2,0xc6,0x73,0xdb, 0xf1,0xac,0xe5,0xd3,0xc4,0x10,0xbb,0x3d,0xc5,0xb8,0x90,0xff,0x0,0x4,0xb0,0xf9, 0x65,0xb9,0x1f,0xc4,0x4f,0x35,0x24,0x29,0x9b,0x81,0x15,0xea,0x79,0x51,0x79,0x85, 0xe3,0x8c,0x23,0x6c,0xc9,0xe0,0x8c,0x8f,0xc2,0xa2,0x99,0x60,0x8a,0x19,0xe4,0xbc, 0x85,0x10,0xb1,0xc4,0x6d,0xc,0xac,0x87,0x27,0xa7,0x1c,0x7f,0x91,0x4f,0x6d,0x85, 0x2d,0x47,0x42,0x65,0x16,0xff,0x0,0xe9,0x41,0xcc,0x71,0xf2,0x80,0xab,0x2,0x72, 0x7a,0x70,0x79,0xf6,0x3d,0xe9,0x64,0xbd,0xba,0x86,0x74,0x29,0x1c,0xeb,0x67,0x28, 0xa,0x3e,0xd1,0x6d,0xc0,0x39,0xee,0x47,0x4f,0x63,0x53,0x58,0x12,0xb2,0x40,0x24, 0x67,0x57,0x8d,0xf0,0x9b,0xc8,0x65,0x6f,0x6f,0x63,0xfe,0x15,0xb1,0x77,0x7f,0x6d, 0x67,0xf2,0x5d,0xca,0x2,0xb8,0xc2,0xab,0x27,0xde,0xf6,0xf7,0xa0,0x71,0x39,0x7d, 0x65,0x63,0x4d,0x30,0xc0,0x9a,0x8d,0xc4,0xa4,0x4a,0xaf,0x24,0x4c,0x81,0x88,0xe4, 0x11,0xb1,0xb1,0xc6,0x31,0xeb,0xcd,0x53,0xd,0x22,0xdc,0x4f,0x6d,0x39,0xcc,0xb1, 0x10,0x43,0xaa,0xe1,0x5e,0x33,0xca,0xb8,0xed,0xc8,0xeb,0x82,0x70,0x73,0x5d,0x5d, 0xbd,0xba,0x89,0x9a,0x79,0x90,0xba,0xa8,0xd,0xc,0x4e,0x72,0xc9,0xd7,0xa0,0xe9, 0x5c,0xed,0xe6,0x9f,0x77,0x3a,0xbd,0xc8,0xb8,0x85,0x2f,0x13,0x73,0x43,0x3,0xb6, 0x4c,0x91,0x92,0x49,0x8c,0xbf,0x4c,0xfa,0xe,0x79,0xfa,0xf1,0x50,0x95,0xb4,0x15, 0x4d,0x8a,0xea,0x8,0xe7,0x9a,0x56,0xa8,0xe0,0x99,0x2e,0x61,0x49,0xa3,0x52,0x15, 0xb9,0xda,0xc3,0x5,0x4f,0x70,0x47,0xad,0x49,0xd0,0xf4,0x15,0xb5,0xee,0x72,0x5a, 0x49,0x88,0xf,0xbd,0x3b,0x77,0xad,0x34,0xd2,0x13,0x81,0x48,0xab,0xdc,0x71,0x19, 0xe4,0xd2,0x1e,0x94,0xd0,0xd8,0xa0,0x7c,0xdd,0x29,0xdc,0x57,0x62,0xee,0xc6,0x38, 0xcd,0x34,0x1a,0x79,0xe9,0x8a,0x69,0xa5,0x74,0x3b,0x36,0x52,0xbc,0x85,0xa2,0x99, 0x6f,0x20,0x69,0x51,0xf2,0x9e,0x72,0x44,0xd8,0x32,0xa0,0x3e,0x9d,0x37,0xc,0xf1, 0x9a,0xec,0xb4,0xcb,0x85,0xba,0xb6,0x4b,0x9b,0x39,0x16,0x6b,0x77,0xea,0x1b,0xa9, 0x3d,0x30,0x7d,0xd,0x73,0xc,0x4f,0x6a,0x86,0xda,0xe5,0xf4,0x2b,0xd7,0xbd,0x86, 0x27,0x6b,0x59,0x4e,0x6e,0x61,0x53,0xd3,0xfd,0xb5,0x1e,0xa3,0xbf,0xaf,0x1e,0x9c, 0xc5,0x48,0x5d,0x1a,0xd3,0x76,0xdc,0xe9,0xcc,0x4b,0x1d,0xd3,0xca,0xb0,0xdd,0x46, 0x9,0x27,0x11,0x1c,0xe0,0x7a,0xe0,0xd3,0xa4,0x8d,0x52,0x33,0x3a,0xdb,0x4b,0x7f, 0x91,0x8d,0xb2,0x36,0x48,0xfa,0x71,0x8a,0x24,0xba,0x82,0xe5,0x20,0xb9,0x86,0xeb, 0x31,0xc8,0x80,0xa9,0x57,0x18,0x65,0xfc,0x6a,0xca,0xac,0x1b,0x3,0x24,0x92,0x44, 0x7b,0x98,0xe4,0x23,0x23,0xf3,0xe6,0xb9,0xf6,0x37,0xb1,0x90,0xf3,0xb,0x86,0x57, 0xb2,0x5,0x48,0xe0,0xac,0x2d,0x91,0x1b,0xe,0xcc,0x7,0x23,0xf2,0xab,0xb7,0x77, 0xbe,0x4b,0x0,0xef,0xb5,0xe5,0x0,0x64,0x49,0xf2,0x83,0xdf,0x83,0x54,0xa5,0xd3, 0x22,0x96,0xe1,0xa5,0x86,0xe1,0xe2,0x97,0x3b,0x81,0x96,0x4e,0xf,0xe3,0x8c,0xfe, 0xb5,0x76,0xb,0x98,0x6d,0x61,0x11,0x4d,0x20,0xb9,0x66,0x39,0x66,0x4,0xbe,0x29, 0xe8,0xb,0x7d,0x4b,0x8b,0x73,0x3c,0x11,0x6,0x9a,0xd9,0xdd,0x55,0x70,0x19,0x36, 0x92,0xdf,0x85,0x49,0x69,0xaa,0xc7,0x77,0x17,0x98,0x91,0x4c,0x0,0x38,0xc3,0x2e, 0x39,0xfe,0x55,0x4,0xba,0x85,0xb4,0x80,0x40,0x14,0x4a,0x58,0x63,0x6b,0x12,0xa0, 0x8f,0xa9,0xe2,0xb3,0xa0,0xb9,0x77,0x2e,0xb7,0x4,0xc0,0x91,0x82,0x56,0x34,0x7c, 0x9e,0xfd,0xcf,0x5a,0x97,0x72,0x89,0x44,0x52,0x4f,0xaa,0x49,0x34,0x11,0xc6,0xab, 0x8e,0x58,0xe0,0x80,0x7f,0x3,0x57,0x56,0xd3,0xfd,0x25,0x67,0x90,0x46,0x59,0x57, 0x1f,0x28,0xce,0x7f,0x3a,0xca,0x8f,0x55,0xfb,0x19,0x4f,0xb6,0x42,0x55,0x1c,0xee, 0xf,0xbc,0xe4,0x7f,0xc0,0x45,0x68,0x2e,0xb7,0x6b,0x70,0xf,0xd9,0xd8,0xc8,0xc0, 0xe0,0x81,0x19,0x38,0xa1,0xa6,0x1a,0x8d,0xb8,0xb7,0x8e,0x58,0xd9,0x7e,0xc8,0xac, 0xdd,0x40,0x18,0xcf,0xe1,0x55,0x3f,0xb5,0x85,0xa4,0x71,0xc4,0xe2,0xe7,0x27,0xa2, 0x98,0x87,0xe9,0xd0,0x52,0xdd,0x24,0x17,0xc4,0x99,0x6f,0x36,0xa8,0xe8,0xd1,0xb9, 0x8c,0x8f,0xc0,0xd5,0x38,0x51,0x66,0xdb,0x6e,0xbb,0xa7,0x54,0xc8,0x5,0xd5,0x89, 0x22,0x9c,0x77,0x13,0xbd,0x8b,0xf6,0xb7,0x76,0x1a,0x83,0x48,0xb9,0x97,0xce,0x1c, 0xb2,0x9f,0x91,0xb1,0xef,0x8a,0x92,0x1b,0x7b,0x74,0x94,0xb8,0xb7,0x57,0xcf,0x21, 0xc4,0xb9,0x61,0xf8,0x64,0xd6,0x14,0x76,0x91,0x35,0xd3,0x2b,0x2a,0x0,0x32,0x36, 0xc8,0xd8,0xc0,0xfa,0xf5,0xa9,0xa3,0xd3,0x23,0x57,0xc,0xa9,0x6a,0xc8,0x39,0xda, 0x27,0x28,0x7d,0xb9,0x51,0xfc,0xe9,0xc9,0x24,0x47,0x33,0xbd,0x8d,0x1b,0x89,0x9e, 0x37,0xb,0x69,0x19,0x20,0xb6,0x5f,0x7f,0x61,0xde,0x9f,0x2d,0xda,0x43,0x11,0xb8, 0x68,0xc4,0x81,0x88,0xc9,0x87,0xaf,0xe2,0x3f,0xfa,0xf5,0x4a,0x2b,0xa8,0x9d,0xda, 0x35,0x92,0x27,0x65,0x1d,0xaf,0x4,0x98,0x3e,0x87,0x34,0xb7,0x37,0x56,0x42,0xd9, 0x84,0xcd,0x6b,0x1c,0xdb,0x79,0x2,0x70,0xa7,0xea,0x31,0x9a,0x4a,0xcf,0x43,0x55, 0x74,0x24,0x70,0xad,0xdd,0xcc,0xac,0x8e,0x92,0x1,0xd0,0x74,0x65,0xfc,0x2a,0x29, 0xd8,0x9b,0x8d,0x8e,0xc2,0x3b,0x98,0xc0,0x29,0x22,0xaf,0x24,0x7b,0xf5,0x15,0x56, 0xcf,0xc4,0x1a,0x6d,0xb4,0xce,0x6e,0x2f,0x52,0x39,0x48,0xc0,0x67,0x90,0x70,0x3d, 0xb8,0xa5,0x3a,0xae,0x89,0x73,0xb9,0xae,0x35,0x81,0x23,0x31,0xff,0x0,0x9e,0x80, 0xf,0xd2,0x8d,0x99,0x3a,0xad,0x8e,0xe3,0xc2,0xf,0xbd,0x6f,0x9,0x39,0x6c,0xa6, 0xee,0x31,0xcf,0xcd,0x5d,0x35,0x72,0x5e,0x9,0xbd,0xb7,0xbb,0x6d,0x41,0x6d,0x98, 0x34,0x71,0xf9,0x78,0x20,0xe7,0xae,0xee,0xff,0x0,0x85,0x75,0xb5,0xdf,0x47,0xe0, 0x46,0x32,0xdc,0xe7,0x7c,0x59,0x33,0x43,0x6f,0x9,0xda,0x4a,0x7c,0xc5,0x88,0xcf, 0x18,0xc7,0xa5,0x72,0xf1,0x6b,0xaa,0x63,0x47,0x9a,0x68,0x60,0xd,0xc6,0x15,0x4b, 0x30,0xfc,0x8e,0x7f,0x4a,0xea,0xbc,0x43,0x1,0x9e,0xff,0x0,0x4e,0x5,0x51,0x90, 0x9,0x4b,0x2b,0x9e,0xf,0xdd,0xac,0x9b,0xa3,0x2c,0x68,0xa2,0x48,0x37,0xa2,0xf6, 0x85,0x79,0x1e,0x87,0x68,0xeb,0x5c,0x38,0x85,0xfb,0xc6,0x74,0x43,0xe0,0x46,0x61, 0xd6,0x6e,0x6e,0x33,0x1e,0x9e,0x97,0x17,0x79,0xff,0x0,0x96,0xc2,0xd,0xa9,0xf9, 0x9f,0xeb,0x4a,0xbf,0xda,0xc2,0xdf,0x7d,0xcc,0xa6,0x37,0x63,0x81,0xa,0xc6,0xa4, 0xb7,0xfc,0xb,0xa5,0x41,0xe,0xad,0x7c,0x88,0xcb,0x8,0x82,0x58,0x54,0x9c,0x17, 0x40,0x87,0x1f,0x40,0xc3,0xf9,0x54,0xed,0x7d,0x35,0xe5,0xaa,0xdc,0xdc,0x5b,0xf9, 0x28,0x87,0x2,0x52,0xe0,0x21,0xf6,0xdb,0x9c,0x9a,0xc5,0xa4,0x5b,0xb1,0x2c,0x97, 0x51,0x59,0x5a,0xee,0x91,0xa4,0x12,0x74,0xf2,0x22,0x6c,0x7c,0xc7,0xb7,0x1c,0x7d, 0x6a,0x19,0x22,0xd4,0x2e,0xa,0x2b,0x4d,0x2a,0x17,0x3f,0xea,0xe1,0x72,0x15,0x47, 0xb9,0x27,0x35,0x62,0x36,0x68,0x1d,0x44,0xec,0x5e,0x2,0xbb,0xd5,0x44,0x63,0x9f, 0xa7,0xff,0x0,0x5e,0xa1,0x5b,0xb9,0xa4,0x93,0x9,0xb,0x47,0x9,0xce,0x39,0xf9, 0x9f,0xa9,0x24,0xb1,0xe9,0x8c,0x1a,0x6a,0x3a,0x93,0x73,0x59,0xad,0x2d,0xa1,0x62, 0xd1,0xdb,0xce,0x5f,0x19,0x25,0xb2,0xc0,0xf1,0xea,0xc7,0x15,0x4a,0x68,0xe0,0xd4, 0x9a,0x3b,0x48,0xad,0x4,0x71,0xb6,0x24,0x95,0xc8,0x1b,0xb6,0xe7,0x80,0x31,0x9c, 0x64,0x8c,0x67,0xd3,0x35,0x99,0x7e,0x9b,0x77,0x49,0x35,0xec,0x8f,0x8,0xdb,0xfb, 0xb3,0x2b,0x32,0x0,0x4e,0x6,0x71,0x81,0xf8,0x7b,0x55,0xed,0x14,0x47,0x1e,0x9f, 0x23,0x46,0x24,0x22,0x5e,0x64,0x93,0x71,0x0,0x9e,0x47,0x5f,0x4e,0xbd,0x3a,0x56, 0xb6,0x41,0x73,0x46,0xee,0x18,0x2d,0xa0,0x1b,0xaf,0x22,0xb6,0x88,0x28,0x1,0xc, 0x5f,0x28,0x1d,0xb8,0xc8,0xa6,0x59,0x47,0x2c,0x90,0x6,0x85,0xe5,0x92,0x32,0x71, 0x86,0x88,0x26,0xe1,0xed,0xe8,0x2a,0xb3,0x45,0x6d,0x35,0xca,0xcf,0x74,0x80,0xa4, 0x6b,0x92,0x72,0x48,0x63,0xc6,0x3a,0xf5,0x15,0xb9,0x6f,0x72,0x2e,0xa0,0x66,0xb7, 0x52,0xc3,0xa2,0x97,0x1b,0x41,0xc7,0xa7,0xb0,0xf6,0xa6,0xa2,0x89,0x32,0xe7,0xd3, 0x63,0xb3,0x99,0x64,0x86,0x16,0x9a,0x79,0xe,0x22,0x89,0x49,0xda,0xf,0x72,0x4f, 0x7f,0xc6,0xae,0x7,0x58,0x55,0x9e,0x4c,0x79,0x8a,0x39,0xda,0xa7,0xaf,0xa0,0xcd, 0x56,0xb6,0x7b,0xf9,0x35,0x39,0x6,0x3,0xa6,0x30,0x65,0x60,0x70,0xbf,0x4e,0x9f, 0xe4,0x54,0x92,0xf3,0xb6,0x3d,0xf2,0xb7,0x25,0xa4,0x65,0x4,0x92,0x7f,0xe,0x5, 0x2b,0x20,0xb,0xf0,0xb3,0xa4,0x2e,0x66,0x2,0x25,0x94,0x67,0x9f,0xbf,0xe8,0x3d, 0xaa,0x63,0x77,0x6b,0x6c,0x46,0xf9,0x63,0xc,0x78,0x55,0x4,0x12,0x7d,0x80,0xaa, 0xa3,0x4b,0x1f,0x34,0xc9,0x8,0x42,0x47,0xca,0xf8,0x25,0x87,0x3e,0x9e,0xb5,0x5e, 0x5b,0x48,0xe0,0x8f,0x6f,0x94,0xec,0x58,0xed,0x27,0x5,0x71,0x9c,0x9a,0x7c,0xa0, 0x4a,0x67,0x19,0x95,0x51,0x12,0x18,0x98,0xe5,0x80,0x39,0x27,0xf1,0x1d,0x3e,0x95, 0x8,0x2a,0x60,0xda,0x6d,0x51,0x11,0x72,0x55,0x55,0xce,0xec,0x1e,0xf8,0xc7,0xa7, 0xad,0x59,0x8c,0xe9,0xee,0x23,0x8e,0x18,0x43,0xca,0x14,0x7c,0x88,0x9b,0x49,0xfa, 0x91,0x8f,0xcc,0xd5,0x79,0xe4,0x99,0xd2,0x48,0xfc,0xd8,0xa6,0x6e,0x8a,0x91,0x8e, 0x13,0xd8,0x77,0x3e,0xf4,0x7a,0x2,0x4c,0x9a,0xd6,0xf6,0xfc,0x43,0x1,0x50,0x93, 0x46,0xf8,0x19,0xc6,0x59,0x47,0x7f,0x4a,0x8f,0x50,0x7b,0x99,0x2e,0x0,0x8a,0x76, 0xdb,0xd7,0xe6,0x18,0xd9,0xfa,0x1a,0xb3,0x60,0x5,0xc4,0x45,0xe5,0xdb,0x18,0x43, 0xb7,0xc9,0x5e,0x36,0x8f,0x7f,0xad,0x2c,0x85,0xed,0x21,0x76,0x24,0x6c,0x32,0xd, 0xab,0x9e,0x79,0xe0,0xf,0xe5,0x45,0xc0,0xaa,0x8e,0x75,0x0,0xbe,0x71,0x49,0x5e, 0x35,0xca,0xac,0x79,0x7,0x71,0xe2,0xa5,0x8a,0x20,0x91,0x19,0x4e,0xf1,0x28,0x62, 0x4c,0xac,0x40,0x50,0x3a,0x74,0xe9,0xed,0x54,0xa5,0xb4,0x11,0xb4,0x66,0xe2,0x66, 0x95,0xca,0xee,0x72,0xf,0xa,0x49,0x4,0x63,0xfc,0xf3,0x52,0x62,0x23,0x79,0xa, 0x79,0x2a,0xec,0x14,0xb1,0xc,0x3e,0xe0,0xf5,0x3d,0xa8,0x2,0xe0,0xb8,0xb7,0xb6, 0xb7,0xf3,0x25,0xbf,0x57,0x61,0xc0,0x58,0xd4,0x1c,0x9f,0x40,0x3f,0xad,0x50,0x97, 0x55,0x4b,0x85,0xfb,0x3f,0xef,0x21,0x62,0x4e,0xe2,0x71,0xbb,0x18,0xe3,0x20,0xc, 0xd4,0x5e,0x54,0xb2,0x5d,0x8b,0xef,0xb1,0x5b,0xb4,0x10,0xc9,0x81,0x18,0x3e,0x83, 0xa9,0xe3,0xaf,0x3e,0x95,0xa5,0xf6,0xe9,0xa5,0x78,0xde,0x69,0x12,0x18,0x49,0xc4, 0x71,0x46,0xfb,0x8b,0x1f,0x73,0xdb,0xf4,0xa5,0x60,0xb0,0x43,0xa8,0x49,0x14,0x2, 0x39,0x61,0x84,0x46,0xa3,0x6f,0x99,0x9,0x38,0x3,0xb6,0x13,0x1c,0x54,0x36,0xb3, 0x28,0xf3,0x6d,0xed,0x2e,0x82,0x42,0xa7,0x77,0x98,0x62,0x0,0x6e,0xea,0x70,0x4d, 0x32,0xf6,0x49,0x2e,0x23,0x50,0xb1,0x31,0x73,0x20,0xda,0x78,0xda,0x73,0xc7,0x5c, 0xfb,0xd4,0x1,0xda,0x36,0x86,0xd4,0x20,0x95,0x89,0xd9,0xe5,0x45,0xe,0xd4,0x5c, 0x7a,0xb1,0xea,0x6a,0xb5,0x27,0x52,0xfd,0xbd,0xa0,0x79,0x33,0xf6,0xc9,0x27,0x2c, 0xb,0x12,0xad,0xf7,0x8f,0xb9,0x39,0xff,0x0,0x22,0x98,0xca,0xf0,0x5d,0x93,0x70, 0x92,0x3a,0x11,0x8c,0xb9,0x6d,0xab,0xf4,0xc5,0x3c,0xc5,0x2c,0x2d,0xb5,0xe3,0xb, 0x2c,0xa0,0x28,0xc4,0x81,0x44,0x63,0xb7,0x6a,0xb0,0x2c,0xe6,0xf3,0x50,0xc9,0x70, 0xef,0x4,0x78,0xda,0x84,0x9f,0x98,0xfa,0x9f,0x6a,0x43,0x65,0x66,0xbf,0xc4,0x52, 0x6c,0x9a,0x58,0xc4,0x6b,0x90,0x8b,0x18,0x19,0x1f,0x52,0x38,0xfa,0xd5,0x58,0x26, 0xb8,0x90,0x7e,0xf8,0x59,0xa4,0x6c,0x78,0x8f,0xca,0x62,0x18,0xe3,0x39,0x66,0x27, 0x24,0xfe,0x2,0xb7,0x9e,0xda,0x26,0x6,0x59,0xd8,0x1c,0x27,0xcc,0xcc,0x38,0x3, 0xf1,0xe0,0xa,0xe5,0xa1,0x16,0xb3,0x27,0x94,0x2e,0x24,0x69,0x2,0xec,0x85,0xc9, 0x58,0xe3,0x18,0xc0,0xcf,0x72,0x4f,0xd7,0x14,0x2d,0xc4,0xd1,0xbd,0x1a,0xab,0x7e, 0xe4,0x4a,0x93,0x4a,0xbd,0x42,0x70,0xa3,0xd1,0x7a,0xfa,0x56,0x7d,0xa1,0x92,0x1b, 0x89,0xa0,0x68,0x51,0x15,0x4e,0xec,0xcc,0x9c,0xa8,0xf4,0x1e,0xa3,0xdc,0x55,0xa8, 0x92,0x7b,0x49,0x8,0x53,0x90,0xc0,0x96,0xa,0xbb,0x98,0x9c,0xf5,0xaa,0xba,0x85, 0xbc,0xd7,0x52,0x5b,0xcf,0x7c,0xb,0x0,0x76,0xc7,0x6c,0xe,0xc5,0xc7,0x53,0xb9, 0xb3,0x9e,0x83,0xa0,0xaa,0xbe,0xb6,0xb,0xd,0x92,0x23,0x21,0x85,0x21,0x68,0xbc, 0xb5,0x6f,0x94,0x36,0x30,0x4e,0x7f,0xfd,0x74,0xd9,0xe2,0xf9,0xa5,0x96,0xd9,0x4c, 0xaf,0x27,0x5,0x84,0x6c,0x2,0x9e,0x84,0x70,0x2a,0x42,0x44,0x96,0xcc,0xe9,0x14, 0x3b,0xf6,0x10,0x88,0x90,0x12,0x17,0x3,0xa8,0x27,0x19,0xeb,0xe9,0x4f,0x81,0x4d, 0xb2,0x1b,0x99,0xee,0x10,0xc6,0x63,0x55,0x84,0xb3,0x84,0x19,0xc7,0x52,0x3d,0xcf, 0xd7,0xa5,0x2d,0x47,0xb9,0x56,0xed,0x1a,0x3b,0x48,0x66,0xb9,0x92,0x48,0x60,0x48, 0xc0,0xfb,0x24,0x4c,0x58,0xcc,0xde,0xf8,0x3e,0xb8,0xf5,0xac,0xd9,0x64,0x56,0x98, 0xf9,0x70,0xc7,0x4,0x6c,0xca,0xbe,0x4a,0x36,0xed,0xb8,0xf9,0x8e,0x7f,0x1d,0xbc, 0x56,0xc4,0x76,0x28,0x8c,0x92,0xcb,0xf,0xda,0x6e,0xa4,0xe9,0x24,0x8a,0x3c,0xb5, 0x3,0xae,0x0,0xf6,0xef,0x8a,0xe7,0x52,0x7f,0xb4,0x48,0xb2,0xab,0x16,0x4,0x33, 0x6,0x6c,0xe5,0x81,0x63,0xb4,0xf3,0xdb,0x6a,0xae,0x3e,0xb5,0x54,0xd5,0xdd,0x88, 0xab,0x2e,0x58,0x3b,0x96,0xa3,0x21,0x4e,0x73,0xd6,0xa4,0xce,0xe3,0x9f,0x4a,0xae, 0xa4,0x81,0x4f,0x7,0x76,0x4f,0xb5,0x6f,0x6d,0x75,0x39,0x23,0x7b,0x68,0x32,0x47, 0xde,0xfd,0x7a,0x53,0x33,0xee,0x3f,0x1a,0x62,0x31,0x25,0xa9,0x1e,0x4e,0x31,0x8e, 0x95,0xaa,0x31,0x9e,0xd7,0x62,0x12,0x37,0xf2,0x9,0x34,0xd2,0xe5,0x1,0x21,0x73, 0xe8,0x5,0xa,0x4e,0x3d,0x28,0x40,0xcc,0x84,0xf7,0xe4,0x53,0x66,0x51,0x6c,0x9c, 0x31,0xc7,0xa0,0xa3,0x1c,0x53,0x50,0x0,0x7a,0x6d,0x50,0x38,0x19,0xcd,0x29,0x60, 0x3f,0x1a,0x56,0x3a,0x22,0xef,0x1d,0x45,0x56,0x7,0x70,0xed,0x8a,0xab,0x77,0x37, 0x94,0x96,0xd2,0x6d,0x2d,0xb2,0xea,0x16,0xda,0x6,0x77,0x61,0xc1,0xc7,0xe9,0x53, 0xc,0x0,0x4f,0xeb,0x45,0xb4,0x2,0xe7,0x56,0xd2,0xe0,0x38,0x21,0xe7,0x67,0xc3, 0x1e,0x32,0xb1,0x3b,0x2f,0xea,0x5,0x29,0x69,0x16,0xc5,0x4b,0x56,0x8d,0xbb,0xed, 0x62,0xfa,0xf6,0xdd,0xa2,0x4b,0x63,0x12,0x17,0x1b,0x8c,0xa0,0xee,0xb,0x91,0x9f, 0x94,0xe,0x7,0x20,0xf5,0xad,0xdf,0xb6,0xb4,0x97,0x2,0x5,0x52,0x99,0x1b,0xa2, 0x90,0xe,0x18,0x77,0x3,0xd2,0xb9,0xcb,0x86,0xd,0x70,0xf2,0x41,0x28,0xf3,0x57, 0x3e,0x66,0x2e,0x7e,0x66,0xe0,0x63,0x0,0xf4,0xc7,0xd7,0xb5,0x5e,0xb0,0x7b,0x89, 0x5b,0xce,0x91,0x62,0xf2,0x23,0x7,0x85,0x7c,0x92,0x3a,0xe4,0xf3,0x5c,0x72,0x7d, 0x8f,0x42,0xfd,0x19,0xb1,0xf6,0xb9,0x55,0xdd,0x3c,0xbf,0x98,0x26,0xf5,0xe,0xbd, 0x7e,0xb5,0x99,0x25,0xcb,0x4a,0x92,0xcd,0xf6,0xb6,0x79,0xd5,0x4b,0x61,0x24,0xf2, 0x95,0x48,0xe9,0x80,0x7f,0xcf,0x14,0xf8,0xf5,0x18,0x62,0xb6,0xf3,0x8c,0x72,0xb6, 0xf2,0x5b,0x7c,0xa0,0x60,0x7d,0x3a,0x9c,0x55,0xfb,0x79,0xac,0x44,0x85,0xfc,0xeb, 0x69,0x1f,0x1f,0x33,0xab,0xa8,0x27,0xf0,0x6,0xa6,0xcc,0x76,0x33,0xed,0x76,0x5d, 0xc2,0xae,0xd1,0x6,0x90,0x1d,0xa2,0x66,0x19,0xe3,0xd8,0x9e,0xb5,0x1c,0xcf,0x72, 0xbb,0x92,0xde,0x6,0x90,0xa2,0x9d,0xef,0xe5,0xe3,0x3,0xd0,0x72,0x3f,0x9d,0x68, 0xdc,0x2c,0x37,0x9b,0x65,0xb6,0x96,0x37,0x9e,0x2c,0x91,0xb5,0xb9,0x3e,0xd5,0x9d, 0xe7,0x5e,0x16,0x8a,0x68,0x55,0xda,0xd8,0x9c,0x3a,0x8f,0x94,0x73,0xef,0x9a,0x2c, 0x5,0x7b,0x5,0xb7,0x95,0x7c,0xab,0xad,0xf0,0xce,0x3e,0x64,0xf,0x90,0xa3,0xea, 0x33,0xff,0x0,0xeb,0xab,0xd7,0x16,0x68,0xd0,0x5,0x6b,0xf8,0x77,0xa6,0x48,0x38, 0x55,0x50,0x3d,0x36,0xe7,0xdb,0xde,0x81,0x7f,0x19,0x8e,0x69,0x9f,0xca,0x8b,0xcb, 0x97,0x62,0x46,0xe4,0x72,0xbe,0xbc,0x1e,0x4d,0x44,0xfa,0xa1,0x98,0xc8,0xe9,0x62, 0x1a,0x38,0xce,0x3c,0xed,0xdb,0x79,0xf6,0x18,0xcd,0x16,0x19,0x56,0xe8,0x42,0xf6, 0x82,0xee,0x1d,0xc0,0x6,0x28,0xe6,0x2c,0x6d,0x3c,0x7d,0x1,0xeb,0x8c,0x74,0xea, 0x6b,0x6a,0xd9,0xad,0xee,0x74,0xf8,0x8e,0xc0,0xb1,0xb0,0xc6,0xd3,0xd7,0xbf,0xe3, 0x9e,0x2b,0x35,0x2d,0xa5,0x9e,0x36,0x8f,0x2e,0x82,0x65,0x3b,0x5d,0xb9,0xd,0x27, 0x4,0x12,0x3b,0x74,0xa9,0x49,0x78,0xa0,0xb5,0xb5,0x75,0xf2,0xe6,0xb9,0x60,0xb, 0x29,0x0,0x60,0x1,0xbb,0x7,0xf3,0xfc,0xe9,0xdc,0x4,0x90,0x7d,0x93,0x4b,0x81, 0xb,0x99,0x1b,0x7f,0xce,0xc0,0xf2,0xfd,0x4e,0x1,0x1d,0x47,0x6a,0x4b,0xc8,0x51, 0x6d,0xa1,0x32,0x25,0xc4,0x4f,0xb,0xef,0x89,0x23,0xf9,0x89,0x39,0x27,0x81,0xc8, 0xeb,0x55,0xe6,0x9a,0x4b,0x79,0x9e,0xde,0x1b,0x55,0x96,0xd9,0x5f,0x6b,0xc1,0x32, 0xe4,0x3,0xea,0x87,0x3d,0x70,0x49,0xa7,0xc5,0x78,0x91,0xdb,0xc9,0x70,0x11,0x96, 0x38,0xc1,0x2c,0xf3,0x92,0x59,0x40,0xff,0x0,0x6b,0x91,0xd7,0xb0,0xcf,0x5a,0x5e, 0x62,0x5b,0x96,0x20,0x76,0x8e,0xe1,0x67,0x8,0xe6,0x76,0x24,0x32,0x48,0x36,0x1c, 0x1f,0xc3,0xd8,0x53,0x6e,0xe1,0x7b,0x67,0xfb,0x69,0x9e,0x38,0x82,0x1e,0x65,0x6c, 0x31,0x55,0xee,0x39,0x18,0xc5,0x49,0xa6,0xca,0xb7,0x31,0x96,0xba,0x38,0x93,0x38, 0x1e,0x61,0xc3,0x15,0xc0,0x3c,0x1f,0xce,0xb2,0x2f,0x61,0x8a,0x57,0x79,0x18,0xde, 0xcf,0x4,0x4e,0x76,0x85,0x70,0x32,0x78,0xc6,0x39,0xf7,0x3c,0xf3,0xd2,0x9c,0x75, 0xb,0x9a,0x37,0x1e,0x75,0xf5,0xb6,0xc4,0xb8,0x63,0x17,0x7,0x94,0xb,0xbd,0x47, 0x23,0x82,0x32,0x7,0xe1,0xda,0xaa,0x2b,0xc4,0xb6,0xf0,0x47,0x25,0xd4,0x72,0x5c, 0x44,0x86,0x38,0xf9,0xca,0xae,0x71,0xc0,0x3,0x4,0x9c,0x1,0xf9,0x54,0x3a,0x74, 0x97,0x88,0x7,0xd9,0xad,0xd1,0xa,0xaf,0xde,0x71,0xbc,0x67,0x19,0xc7,0x6e,0x7e, 0x94,0x97,0x97,0x97,0x5a,0xd6,0xd8,0x5d,0xd2,0x20,0x9f,0x78,0x22,0x17,0x66,0x39, 0xc1,0x0,0xe7,0x1f,0xa8,0xa2,0xc0,0x5c,0x8e,0xee,0x68,0x83,0x79,0x97,0x32,0xda, 0xa3,0x2f,0xcb,0x24,0xf1,0x65,0xb3,0xfe,0xce,0x7b,0x71,0xde,0x9b,0x6d,0xc,0x57, 0x2d,0x19,0xfb,0x44,0xb7,0x2c,0xac,0x73,0x74,0x5b,0x3,0x1d,0x8,0xf9,0xbf,0xcf, 0x15,0x5,0xbd,0xa0,0x4d,0x65,0x31,0x6f,0x70,0xab,0xe4,0x90,0xd2,0xca,0xbb,0x47, 0xa6,0x7b,0xe4,0xd5,0xe8,0x2d,0xc5,0xba,0x1,0xf6,0x99,0x47,0x24,0xa9,0x62,0x2, 0xf5,0xcf,0x4c,0xf3,0x45,0xc2,0xfd,0x19,0xf,0x95,0x7f,0x6d,0x71,0xc,0x73,0xb4, 0x2c,0xa5,0x81,0x8c,0x43,0xf3,0x6f,0xfa,0x82,0x32,0x38,0xf7,0xaa,0xb7,0xf0,0xdd, 0x48,0x31,0x72,0xa4,0x12,0xe4,0x82,0x53,0xe5,0x39,0xed,0x9c,0x91,0xde,0xaf,0x8b, 0x80,0x9a,0x84,0x45,0x5a,0x36,0x9e,0xe1,0xcc,0x79,0x3,0x18,0x50,0x32,0x79,0xf5, 0xe0,0x52,0x6a,0x97,0xd7,0x5b,0xa5,0xb1,0xfb,0x22,0x98,0xdb,0x81,0x23,0xb6,0x17, 0x24,0x67,0xe9,0x91,0xf5,0x14,0x2d,0x58,0x34,0x67,0xd9,0x2a,0x46,0xf6,0xf1,0x43, 0x2c,0xe2,0x73,0xc4,0xc9,0x20,0xc2,0x9e,0xd9,0x18,0xc5,0x5c,0x79,0x6d,0xce,0x9f, 0x2a,0xb6,0xa6,0xe8,0xe3,0x2e,0x99,0x6c,0x6e,0x1d,0xb1,0x9c,0xe6,0xa4,0xb0,0xbc, 0x43,0x6b,0xf2,0x4b,0x1f,0x9b,0xc,0x9f,0xbc,0x44,0x3b,0x9f,0x69,0x3c,0x8c,0x75, 0xc6,0xf,0x6c,0xd5,0x2b,0xd4,0x86,0xde,0x54,0xbb,0xb1,0x37,0x2,0x3c,0xfe,0xf3, 0x6c,0x1b,0xd6,0x31,0xd7,0x23,0x77,0xdd,0x1d,0x4f,0xe3,0x45,0xb5,0x12,0x2b,0xc7, 0x3d,0xf5,0xdc,0xe1,0x6d,0x26,0x95,0xa5,0x3f,0x75,0x3,0x5,0x3,0x1e,0xbd,0x2a, 0xdb,0x8d,0x4e,0x60,0x7c,0xf5,0x5b,0x59,0x1,0xc3,0x3b,0x5c,0x9d,0x92,0x9c,0x74, 0xc0,0xcf,0xd6,0x93,0xfb,0x6e,0xd8,0x13,0x34,0x77,0x33,0xce,0xea,0xbb,0x63,0x2e, 0x62,0x19,0xcf,0x1d,0xb9,0xa7,0x8b,0x9b,0xab,0x2f,0xe,0xbe,0xfb,0x79,0x5a,0xe1, 0x4b,0x7c,0xfb,0x1,0x5c,0x13,0xc1,0x3c,0x7f,0x9c,0x55,0x7a,0xa,0xdd,0x46,0x79, 0x37,0xf3,0xa4,0x3f,0x6d,0x86,0xe1,0x6d,0x9d,0xc3,0x32,0xc4,0x15,0x97,0x3d,0xb8, 0x4,0xb6,0x3e,0xb5,0x90,0x93,0x49,0xfd,0x87,0xa8,0x5a,0x89,0x12,0x58,0xe0,0xb8, 0x30,0xc1,0x14,0x9c,0xb9,0x56,0x7c,0xa9,0x38,0xf6,0x6e,0xbd,0x78,0xc7,0x15,0x76, 0xce,0xe2,0xf6,0xce,0xc8,0x25,0xbc,0x93,0x3b,0x97,0xdc,0xa2,0x70,0x59,0x48,0xc0, 0xce,0xd1,0x9f,0x5e,0x7a,0xe,0xb4,0x5f,0xbc,0x69,0x3d,0x95,0xcc,0xf0,0xa8,0x86, 0xf6,0x23,0x1c,0xe8,0xa7,0x6e,0xd9,0x50,0x66,0x33,0xdd,0xb2,0x46,0xe0,0x7e,0x82, 0xaa,0xda,0x8f,0x47,0xb1,0x2d,0x86,0xa8,0x61,0x71,0x6a,0xf6,0x50,0xdb,0xc6,0xe, 0x14,0x6f,0x66,0xda,0xdd,0x8b,0x64,0x73,0x92,0x7b,0xfe,0xb5,0xd,0xd4,0xb7,0x56, 0x22,0x18,0xad,0xe4,0xc,0x6d,0xe3,0x5,0x49,0x52,0x44,0x84,0x7a,0xf6,0xe4,0x1f, 0xd6,0x92,0x3b,0xc9,0xa2,0xb3,0x53,0x2d,0x99,0xc4,0xec,0x7c,0xb1,0x1c,0xa0,0xb6, 0x3e,0x87,0x92,0x31,0x56,0xcc,0x30,0xea,0x31,0x4b,0xfb,0xc9,0x14,0xec,0xb,0xb6, 0x65,0xc4,0x88,0x70,0x79,0xc7,0xa7,0x23,0xa5,0x1a,0x22,0x6c,0xcb,0xb3,0x5a,0xc9, 0x74,0xc9,0xa8,0x59,0x5c,0x16,0x53,0xc9,0x46,0x90,0x22,0xba,0xe3,0xee,0xe0,0xc, 0xe7,0xd8,0xd5,0x68,0x20,0x92,0xee,0x3f,0x3d,0x24,0xd9,0x28,0x8c,0x46,0xe3,0x6e, 0xd6,0xe0,0xe7,0x9f,0x53,0xef,0xed,0xde,0xb2,0xa,0x8b,0x7c,0x7,0x94,0xb1,0x70, 0xb,0x81,0x78,0x21,0x11,0x9c,0xff,0x0,0x74,0x9e,0x4e,0x2a,0x78,0xee,0x34,0xa9, 0x4b,0x3b,0xea,0x66,0x19,0xb0,0x40,0x13,0x94,0x4d,0xdc,0xff,0x0,0x7b,0x3c,0x8e, 0x3d,0x7d,0x29,0x2b,0xd,0x5c,0xd3,0x78,0xe7,0xb7,0xb3,0x4b,0xaf,0x26,0xde,0xd1, 0x10,0x2,0x58,0x4a,0x4b,0x33,0x31,0x0,0x67,0x3,0xbf,0xa5,0x57,0xfb,0x4d,0x95, 0xc4,0xe1,0x65,0x86,0xf3,0x4f,0x6f,0x55,0x2c,0x43,0xe7,0xfc,0xfe,0xb5,0x55,0x2f, 0x34,0xfb,0x5b,0x29,0x2d,0xae,0x2f,0xad,0xe6,0x8d,0xc8,0x31,0xa0,0x9c,0xb8,0x53, 0xf8,0x13,0xc6,0x79,0xaa,0xcb,0xaa,0xac,0xb3,0x27,0x9f,0x7c,0xb3,0x2,0xcb,0xe6, 0x2a,0x36,0x48,0x51,0xd7,0x3,0x82,0x28,0xd3,0xa8,0xd9,0xa9,0x3d,0x95,0xca,0xdb, 0xdc,0x88,0x22,0xc4,0x2a,0xe8,0xc8,0xc,0x5b,0x9a,0x41,0x9c,0x1e,0x9,0xeb,0xce, 0x79,0xeb,0x56,0x34,0xbd,0x3b,0x4f,0xd4,0xc3,0xdd,0x49,0xf,0x2a,0x76,0x6d,0x7, 0x61,0xc,0x3a,0x82,0x17,0x15,0x90,0xf7,0xe9,0x35,0xcc,0xb6,0xf0,0xde,0xdd,0x91, 0x23,0xee,0x8a,0x58,0xc4,0xce,0x54,0x72,0x40,0xc5,0x16,0x37,0x37,0xb6,0x86,0x41, 0x1a,0xdf,0xac,0x8e,0xdb,0x98,0x88,0x64,0x20,0xb7,0x72,0x41,0x4c,0xf3,0x49,0x5a, 0xd7,0xb,0x1d,0x4d,0xd6,0x9d,0x6f,0x25,0xab,0x5b,0xf9,0x4b,0xcf,0x2b,0xbf,0x2e, 0x73,0xef,0x9a,0xcd,0x9a,0xce,0x78,0xad,0x82,0xb4,0xf6,0xb6,0xb3,0x2b,0x3,0xb, 0x24,0x9b,0x47,0xb8,0x20,0x8c,0x7e,0x14,0xc8,0x35,0x9d,0x4f,0x78,0x59,0x34,0xcb, 0x99,0x94,0xf0,0x1f,0xca,0x78,0xce,0x7f,0x10,0x28,0xba,0x96,0xfa,0xec,0xef,0x3a, 0x75,0xd2,0xf9,0x6a,0x40,0x44,0x28,0x3a,0xf5,0xc9,0xdd,0xed,0x52,0xa4,0x3b,0x12, 0x5c,0x5f,0x40,0x63,0xb7,0x86,0x7b,0x9d,0xd3,0x5c,0x2b,0x3,0x71,0x20,0x2,0x3c, 0x8e,0xe,0x31,0xef,0xd2,0xa0,0xbc,0xb7,0xbb,0xb9,0x8e,0x5,0x8e,0xde,0xda,0x68, 0x1,0xdc,0x4d,0xb3,0xe0,0xae,0x3f,0xbb,0x92,0x31,0xd6,0xab,0x2c,0x1a,0xc4,0xf6, 0xf6,0xd0,0xcd,0xa5,0xfe,0xee,0x7,0xdd,0x1e,0xc,0x61,0xb1,0x82,0x0,0x3f,0x3f, 0xe7,0xc7,0x38,0xab,0xd6,0xad,0xaa,0xda,0xab,0x43,0xf6,0x5,0x95,0x32,0x36,0xef, 0x9e,0x35,0x2b,0xc7,0x4e,0x33,0xc7,0xa5,0x2e,0x6b,0x6c,0x2f,0x22,0xa3,0x34,0xe2, 0x5,0x8d,0xa7,0xbb,0x4,0x9f,0x97,0x6b,0xbb,0x30,0x3d,0x3e,0xee,0x48,0x3f,0x96, 0x29,0x2f,0x6e,0x75,0x60,0x12,0xdf,0x52,0xb6,0x0,0xa9,0xcc,0x57,0x11,0x20,0xdc, 0x70,0x7,0x5,0x43,0x10,0x9,0x1d,0x45,0x6b,0x4c,0x97,0xd7,0x11,0xed,0x7b,0x4b, 0x65,0x6e,0xa1,0x85,0xd3,0x6e,0x53,0xec,0x76,0x55,0x58,0x34,0xa9,0xd2,0x49,0x1e, 0x75,0x81,0x8b,0xf2,0x5d,0xee,0x24,0x66,0x3f,0x53,0xfe,0x14,0x39,0xa1,0xf2,0x95, 0xa6,0xbe,0x84,0xdd,0x27,0xda,0xe1,0xb8,0x92,0x57,0x88,0x6d,0x92,0x24,0x11,0x91, 0xf9,0x9f,0x5f,0x7a,0x8a,0x5b,0x39,0xae,0x22,0x86,0x4b,0x79,0x65,0x33,0xc5,0x90, 0x55,0xd9,0x46,0xf,0x6c,0x2d,0x68,0xc9,0xa6,0x3c,0x91,0xa4,0x6d,0xf6,0x70,0xa9, 0xc2,0xb3,0x3b,0xb9,0x51,0xe8,0x33,0x4a,0xb6,0x52,0x19,0x3,0xcd,0x7f,0x4,0xec, 0x98,0xc6,0xfb,0x63,0xc7,0xe3,0xba,0xa7,0xda,0x21,0x72,0xf7,0x14,0xdb,0x6a,0xd, 0x14,0x91,0xa9,0x48,0xd6,0x52,0xae,0x23,0x8d,0xb6,0x32,0x9c,0xe,0x7,0x7c,0x60, 0x7a,0xfa,0xd4,0x62,0x18,0x96,0xd6,0xcb,0xcf,0x8d,0x85,0xd2,0xc7,0xb6,0x61,0x26, 0x8,0x27,0x18,0x27,0x19,0xeb,0x9f,0x4a,0x95,0xa1,0xbc,0x62,0xe0,0xeb,0x33,0x4, 0x20,0xf1,0x1d,0xaf,0x3,0xe8,0x4e,0x69,0xb1,0xd8,0xca,0x8b,0xff,0x0,0x21,0xb, 0xdc,0x75,0xf9,0x20,0x3,0xf5,0x29,0x47,0x3a,0xea,0x3e,0x52,0x94,0xd7,0xb6,0x56, 0xd6,0xb0,0x38,0xb5,0x3b,0x9d,0x80,0x51,0x1b,0x94,0x6c,0x83,0xdc,0x1e,0xd,0x5f, 0x75,0x84,0x28,0xb,0x7d,0xe5,0x16,0xe5,0xed,0xee,0x40,0x21,0x86,0x3a,0x72,0x38, 0x3f,0x8d,0x44,0x9a,0x4c,0x66,0x55,0x73,0x75,0xac,0xbb,0x2f,0x4f,0x99,0x7f,0x4c, 0xe,0x2a,0x69,0x74,0x88,0xa7,0xe6,0x59,0xb5,0x57,0xda,0x73,0x86,0x98,0xaf,0xe8, 0x30,0x28,0xe7,0x41,0xca,0x65,0x4a,0x91,0x82,0x20,0xf2,0xe4,0x11,0xb0,0x1b,0x30, 0xb9,0x61,0xec,0x8,0x3c,0x8e,0x98,0xe9,0x57,0xfc,0xd7,0x86,0x5,0x8a,0x78,0xae, 0xd,0xe0,0xc0,0x39,0x89,0xa5,0xe9,0xd0,0x83,0xc6,0x45,0x3a,0x3d,0x16,0xc2,0x2c, 0x32,0xda,0xdd,0xaf,0x39,0xdc,0x6f,0xa4,0x5e,0x7d,0x7e,0xfd,0x23,0xe8,0xda,0x7c, 0xac,0xc,0xb6,0x91,0xb6,0x38,0x1e,0x75,0xe3,0xc8,0x3f,0x2c,0xfb,0xd3,0xf6,0x83, 0xb5,0x88,0xa4,0x92,0x6d,0xde,0x6c,0xf7,0x11,0xc4,0xee,0x3f,0xd6,0x32,0x98,0x2, 0x91,0xd3,0x86,0x7,0x9f,0xad,0x41,0xf6,0xf8,0x2d,0xe3,0x6b,0xa9,0xaf,0xac,0x45, 0xc2,0xaf,0x96,0xb8,0x95,0x70,0xf9,0x3c,0x92,0x1,0xc7,0xa7,0x4c,0x7b,0xd5,0xa1, 0xa3,0xe8,0x91,0xf0,0xfa,0x66,0x99,0x9f,0x57,0x1,0xff,0x0,0x2d,0xd5,0x25,0xbe, 0x8d,0xa3,0xae,0x64,0x8f,0x4b,0xd3,0xd3,0x3f,0xdc,0x80,0x7f,0x80,0x14,0x3a,0x81, 0x6b,0x9c,0x9b,0x4d,0x8,0xd4,0x26,0x92,0xde,0x68,0x55,0x2e,0x1f,0x7b,0xc5,0x14, 0x61,0xb6,0xbf,0x4f,0x95,0x15,0x89,0xc1,0xc6,0x6a,0xff,0x0,0x91,0x74,0xd3,0x8, 0x52,0xda,0x76,0x63,0x9c,0x17,0x85,0xa3,0x7,0xf3,0x15,0xa9,0x7b,0xa1,0xdb,0x5c, 0x42,0xea,0xb1,0x5b,0xa1,0x3f,0x71,0xa2,0xb2,0x0,0xc6,0x7b,0x36,0x47,0xa5,0x67, 0x41,0xac,0x18,0x5f,0xec,0x3a,0xdd,0xc5,0xd2,0x5c,0xc4,0xdf,0x24,0xaa,0x8,0xde, 0x98,0xf9,0x58,0x8e,0x9c,0xff,0x0,0x3a,0xa8,0xd5,0x6f,0x44,0x4f,0xb3,0x4c,0xaf, 0x20,0x9e,0x27,0xd9,0x3d,0xa4,0xd0,0xbe,0x33,0x87,0x0,0x7e,0xb9,0xa6,0xb0,0x90, 0xd,0xc2,0x26,0x65,0xce,0x32,0xac,0xa7,0xf4,0xcd,0x6a,0xd9,0x5e,0x79,0xb,0x73, 0x3c,0x97,0x12,0x4d,0x6f,0xc7,0x95,0x95,0xdc,0x4e,0x49,0x1d,0xb8,0x1f,0x4a,0xae, 0xd7,0x6a,0xd7,0xe,0xf2,0x49,0xc,0x59,0x5d,0xd8,0x74,0xea,0x3f,0x22,0x33,0xc5, 0x5b,0x9c,0xb6,0x33,0x74,0xd5,0xca,0x46,0xdb,0x50,0x31,0xb4,0xa9,0xa7,0x48,0xe8, 0xbd,0x76,0xba,0xe7,0xf2,0xce,0x69,0xaa,0x97,0xad,0x3a,0x43,0x1d,0x94,0xa1,0xdf, 0xee,0x99,0x1,0x55,0x3f,0x8e,0x2a,0xe4,0xb3,0xc2,0xca,0x24,0x9a,0xd6,0xe2,0x68, 0x58,0x6d,0xf,0x12,0xed,0x1f,0xa0,0xa5,0xb0,0xb9,0x9b,0xec,0xe9,0x1b,0xcb,0x23, 0xc6,0xaa,0x49,0x47,0x3b,0x9d,0x40,0xed,0x93,0x9a,0x97,0x36,0xe,0x9,0x11,0xb5, 0x8e,0xa5,0x1c,0x9b,0x26,0xb6,0xb7,0x56,0xec,0x3e,0xd1,0xc9,0xfc,0x8,0x14,0xcb, 0x9b,0x6b,0xbb,0x78,0x56,0x59,0x22,0x40,0xac,0xdb,0x70,0x43,0x64,0x1f,0x7e,0x31, 0xfa,0xd5,0xf9,0x6f,0xe3,0x8a,0xe2,0x25,0xb6,0x86,0x79,0x51,0xb0,0x7f,0x79,0x19, 0x27,0x3e,0x9c,0x74,0xa8,0xee,0xef,0x25,0x91,0x4e,0xd9,0x9e,0x58,0x33,0xf3,0x46, 0x4f,0x97,0xb4,0xfa,0x67,0xa9,0xfa,0x62,0x9c,0x6e,0x5b,0x82,0x46,0x7c,0x36,0x93, 0xba,0xae,0xeb,0xcb,0x64,0x90,0xf5,0x8c,0xdb,0x38,0x2b,0xf5,0x24,0x81,0x8f,0x7a, 0x6c,0xf0,0xcb,0x6e,0xca,0xaf,0x75,0x6c,0xe5,0x97,0x2c,0x2,0x95,0xb,0xce,0x7, 0xcd,0xcd,0x6d,0x79,0x5a,0x8b,0x6,0xf2,0x8c,0x8,0xeb,0x8f,0x95,0x99,0x9b,0x3c, 0x7a,0x11,0xd2,0xaf,0xc7,0x76,0xd1,0xda,0x1f,0x3a,0xde,0x19,0x4e,0x3e,0x68,0xed, 0xb2,0x73,0xf8,0x1a,0x4e,0x52,0x13,0xa6,0x9e,0xa7,0x2d,0x1d,0xa5,0xc6,0x97,0xa7, 0xde,0x4b,0x2,0xc3,0x70,0xc1,0x81,0x48,0x55,0x8e,0xd0,0x49,0xe7,0x4,0x75,0x1d, 0xf1,0x8a,0xd2,0xb1,0xbd,0x9f,0xec,0xd0,0x99,0x35,0x18,0x84,0x85,0x41,0x22,0x3d, 0x2e,0x53,0xf8,0x2b,0x1e,0xa3,0xde,0xa6,0xb7,0x85,0xae,0x1d,0x83,0xaa,0xad,0xbb, 0xf2,0xca,0xec,0xca,0xa5,0xb3,0x91,0x8e,0x72,0x8,0xfe,0xb5,0x5a,0x79,0x6f,0xb4, 0xdd,0x45,0x6d,0xcc,0x32,0xfd,0x99,0x86,0x63,0x68,0x6e,0x70,0xb8,0xef,0xf7,0x81, 0xc7,0x27,0xf5,0xa8,0x95,0xcb,0x86,0xc5,0xf6,0x33,0xdd,0x85,0xf,0x2d,0xd3,0xa8, 0x3f,0xc5,0x63,0x8f,0xd4,0xff,0x0,0x85,0x21,0xb1,0x95,0x1b,0x78,0xb9,0xd4,0x17, 0xfd,0xcb,0x78,0xf1,0x8f,0x4f,0xbb,0xfc,0xe9,0x62,0x4b,0x99,0xc1,0x71,0xc,0xc9, 0x8f,0xee,0xde,0xa3,0x1f,0xc7,0x3,0x8a,0xb1,0x1c,0x72,0x31,0x2b,0xe4,0x80,0x71, 0xc9,0x7b,0xd6,0x24,0xfe,0x95,0x9d,0xcd,0x39,0x51,0x5e,0x5b,0x1b,0x86,0xb4,0x65, 0x12,0xdf,0x1e,0xeb,0xbd,0x23,0xe3,0xf2,0x5a,0xc7,0xb5,0xd0,0x75,0x8b,0x9b,0xd0, 0xda,0x9d,0xe9,0x36,0xd1,0xe7,0x62,0xc3,0xb5,0x59,0xbd,0x3a,0xe,0x2b,0xa1,0x48, 0x6e,0x1,0xda,0x11,0x42,0x9e,0x8,0x37,0x32,0x37,0xf4,0xa6,0x9b,0x22,0x58,0x93, 0x1d,0xa8,0xe7,0x8d,0xcc,0xc4,0xfe,0xb4,0xb9,0x98,0xec,0x88,0x61,0xd2,0xc,0x18, 0x64,0x7b,0xf9,0x38,0xc6,0x1a,0xf8,0xe0,0x7e,0x1c,0x50,0xd6,0x65,0xa5,0x12,0x1b, 0x29,0x18,0x8e,0x1,0x7b,0xf6,0xff,0x0,0x1a,0xb6,0xb6,0x49,0x8e,0x22,0xb5,0x4, 0x7a,0x44,0x5b,0xf9,0x9a,0x7a,0xdb,0x46,0xa0,0x87,0x8a,0x26,0xcf,0xf7,0x60,0xe9, 0xfc,0xea,0x5b,0x61,0xe4,0x51,0x96,0xde,0xc,0x96,0x68,0xad,0x83,0xe3,0xfe,0x5a, 0xdf,0x36,0x2a,0x11,0x10,0x8f,0x2f,0x18,0xd2,0xd4,0x8f,0xe2,0xfb,0x53,0xb7,0xea, 0x2a,0xe7,0x90,0xa6,0x62,0x91,0x92,0x87,0xb6,0x6c,0xbf,0x91,0xc5,0x39,0x6d,0xe7, 0x4c,0x96,0x96,0x46,0x3f,0xec,0xc0,0x8b,0xfc,0xc5,0x17,0xb2,0x6,0xbb,0x19,0xb2, 0x2c,0x73,0x60,0xb2,0xe8,0x72,0xb6,0x79,0xf9,0x4c,0x9f,0xce,0x9b,0x25,0xa6,0x9f, 0xbf,0x1e,0x56,0x94,0xbe,0xdf,0x60,0xcf,0xf5,0xad,0x47,0x8e,0x77,0xc0,0xdb,0x78, 0x31,0xd0,0x83,0x18,0xa4,0x78,0x2e,0x89,0x8,0x3e,0xd8,0x54,0xf5,0x6f,0x36,0x30, 0x7f,0x91,0xa5,0x76,0x23,0x15,0xac,0x6c,0x19,0x81,0x55,0xb2,0x77,0x7,0x82,0x9a, 0x49,0x6c,0x7e,0x20,0x54,0xc0,0x32,0xa9,0xdb,0x33,0x2,0x3a,0x79,0x7a,0x41,0x18, 0xfc,0xc5,0x68,0x98,0xa5,0x81,0xb7,0x4b,0x34,0x80,0xf,0xf9,0xe9,0x3e,0x3f,0x41, 0x4d,0x96,0x75,0x56,0xe1,0xa3,0x3,0xfb,0xc6,0xef,0x2,0x8b,0xb2,0xba,0x15,0x4, 0xb2,0xc6,0x0,0x8e,0x5b,0xb0,0xed,0xce,0x56,0xc8,0x20,0xfc,0x88,0x14,0xd4,0xb8, 0xbc,0x12,0x16,0x79,0xb5,0x36,0x51,0xd9,0x6d,0x90,0xf,0xd7,0x34,0xb7,0xd,0xe7, 0x30,0xd9,0x2d,0xb0,0x3,0xa9,0xfe,0xd0,0x91,0x4f,0xfe,0x3a,0x7f,0x9d,0x54,0x90, 0xa4,0x33,0x2a,0x2c,0xd6,0x0,0xbf,0x73,0x2c,0xac,0xc7,0xf1,0x26,0x9d,0xc3,0xa1, 0xdc,0xf8,0x59,0x99,0x92,0xe8,0xb3,0x4a,0x49,0x2b,0xfe,0xb3,0x19,0xef,0xd8,0x57, 0x43,0x5c,0xef,0x85,0x86,0x16,0xe8,0x71,0xfc,0x1d,0x3f,0x1a,0xe8,0xab,0xd3,0xc3, 0xff,0x0,0x9,0x1c,0xb5,0x3e,0x26,0x73,0x5e,0x2a,0xb2,0x96,0xee,0x6b,0x6,0x4d, 0xaa,0x91,0x6f,0x67,0x73,0xd4,0x7d,0xdc,0x60,0x7e,0x75,0x82,0xdf,0x6f,0x7b,0x12, 0xaf,0x78,0xa8,0x25,0x7,0xb,0x81,0x90,0xf,0xd0,0x57,0x4d,0xe2,0x3b,0x98,0xad, 0xd6,0x3,0x3c,0xbe,0x5c,0x78,0x76,0x66,0xc1,0xce,0x6,0xde,0x38,0xfa,0xd7,0x3e, 0x53,0xfd,0x9,0xaf,0x6,0x63,0x1e,0x5f,0xc8,0x9,0xc2,0xc6,0xa7,0xf8,0x8f,0x53, 0x93,0x8a,0xe5,0xc4,0x7f,0x11,0x9b,0x41,0xfb,0xa8,0x57,0x9e,0x6f,0x35,0x42,0x21, 0x58,0xe2,0xe0,0x47,0xa,0xe0,0x63,0xdc,0xf7,0x3f,0x4a,0x64,0xf6,0xd6,0x5f,0x68, 0x59,0xef,0xad,0x99,0x23,0xeb,0x1f,0xcb,0x90,0x4f,0x5e,0x7f,0x2a,0x92,0x2b,0xe5, 0x4b,0x7c,0x43,0x14,0xd3,0x5,0x5f,0x9a,0x42,0x42,0xae,0x7b,0xe4,0x9e,0x45,0x32, 0x47,0x8b,0x50,0xb6,0x59,0xa6,0xbc,0xb,0x0,0xe8,0xb1,0x74,0xcf,0xfb,0xdd,0x4d, 0x61,0x62,0x86,0xea,0x13,0x89,0x65,0xb6,0x16,0x76,0xef,0xb2,0x36,0x2c,0x26,0x2a, 0x40,0xe4,0x74,0x0,0xf3,0xdc,0x1e,0x7d,0x2a,0x49,0x16,0xce,0xd2,0xcf,0x69,0x63, 0x2c,0xb2,0xc6,0x57,0x4,0xf2,0x41,0xc6,0xee,0x9d,0x3f,0xa7,0xad,0x57,0x92,0x79, 0x6e,0x21,0x10,0x45,0x6b,0x1c,0x8,0xe3,0xf7,0x4c,0x22,0x26,0x46,0x3,0x8c,0x81, 0xc9,0x4,0xd6,0x74,0xf0,0x4f,0x71,0x7d,0x15,0xa1,0x69,0x77,0xba,0x97,0x3b,0x9f, 0xe7,0x8e,0x21,0xf7,0x9b,0x4,0x10,0x9,0x1c,0xc,0xf3,0xcd,0x68,0xb4,0x11,0x25, 0xa8,0x93,0x52,0xbd,0x17,0x52,0x41,0x1a,0x59,0xdb,0x4c,0x76,0x21,0x1b,0x84,0x92, 0x1,0x82,0xc7,0xbb,0x63,0xb6,0x38,0xce,0x6b,0x6c,0xdd,0x47,0x7b,0x7f,0xe4,0x23, 0xce,0x3,0x36,0x1,0x1,0x40,0xc6,0x3b,0xe7,0x9a,0xa7,0xa7,0x98,0xae,0x64,0x16, 0xc9,0xe,0x21,0x44,0xf9,0x22,0x57,0xe0,0x8c,0xf1,0x92,0x7a,0x9f,0xf0,0xa9,0x2e, 0x63,0x59,0x64,0x49,0x67,0x98,0xc1,0x65,0x12,0xed,0xd9,0x2,0xe0,0xb7,0xd5,0x8f, 0xf2,0xa7,0x71,0x13,0xdc,0x2c,0x69,0x21,0x84,0x4c,0xd2,0xab,0x7c,0x84,0x6d,0xcf, 0xcd,0xd8,0x3,0x52,0x5e,0x8b,0xc8,0xed,0xe0,0xb7,0xb5,0x12,0x79,0x4c,0xbb,0x47, 0x95,0xfd,0xef,0x52,0x7b,0xe,0xb5,0x1d,0xd8,0x10,0x69,0xcd,0x28,0x89,0xa2,0xc1, 0xe,0x81,0x98,0x6e,0xb,0xc0,0xeb,0xd8,0xf5,0xa9,0x63,0x69,0x2f,0x6c,0xd4,0xc, 0x43,0x8,0x25,0x4c,0x51,0x36,0x4b,0x60,0xe3,0x5,0xbb,0x2,0x45,0x30,0xb9,0x35, 0xc5,0xdc,0xf1,0xdb,0xc7,0x15,0xb8,0x89,0x5f,0x3,0x79,0x63,0x92,0x7,0x7c,0xe, 0xe6,0xa0,0x33,0xa2,0xa8,0x46,0x90,0x47,0x86,0xcb,0x0,0xb,0x16,0xfa,0xe3,0xa5, 0x24,0x8e,0xaf,0x7a,0xbb,0x23,0x8e,0x36,0x85,0x7a,0x60,0x92,0x9,0xff,0x0,0xc, 0x7e,0xb5,0x14,0x77,0xd,0x25,0xec,0x6b,0x1b,0x46,0xbc,0xe0,0x30,0x51,0xcf,0xaf, 0x3c,0xf3,0x43,0xbb,0x13,0x64,0xd1,0xcf,0x72,0xaf,0xb6,0x31,0x31,0xc9,0xca,0xab, 0x20,0xe4,0x7f,0x3a,0x9a,0x7b,0xab,0x8b,0x88,0x8a,0xb,0x63,0x10,0x4f,0x99,0xa4, 0x94,0x90,0x9c,0x76,0xe9,0x4d,0xb6,0xba,0x31,0x47,0x29,0x86,0x39,0xae,0xa5,0xdd, 0xc9,0x32,0x67,0x8f,0xa9,0xce,0x3f,0xa,0x92,0x42,0xd2,0xc5,0xf6,0x8d,0x49,0x76, 0xa2,0x72,0x22,0x42,0x4a,0x8f,0xf7,0xbd,0x4f,0xe1,0x4f,0xa0,0xca,0x76,0x6b,0x3b, 0x91,0x1a,0x4a,0x24,0x4,0x96,0x70,0x57,0x39,0x3e,0xe4,0x7d,0xe3,0xe9,0xd3,0xa7, 0x4a,0x9e,0xdd,0xed,0xed,0xa7,0xb8,0xbb,0x92,0x44,0x8a,0x24,0x25,0x54,0x1,0x81, 0xc7,0x7,0xfa,0x71,0x4c,0xb8,0xbf,0x2f,0x6d,0x22,0xc0,0x24,0x58,0xb1,0x97,0x94, 0x45,0x80,0x7,0xfb,0x38,0xe8,0x6a,0xa4,0x56,0x70,0x1b,0x74,0x79,0xed,0x89,0x44, 0xcb,0x66,0x49,0x70,0xa4,0xe7,0x23,0x8a,0x57,0x2,0xe1,0x9e,0x2b,0xe0,0xca,0xb6, 0x7e,0x56,0xe1,0x9d,0xf3,0x2e,0xd3,0x9f,0x51,0xeb,0xf9,0xd4,0x17,0x16,0x6a,0x1a, 0xd6,0x28,0xd1,0xa6,0x74,0x3e,0x66,0x17,0x1f,0x33,0xe,0x46,0x79,0xe9,0x4b,0xfd, 0xa7,0x39,0x8d,0x4d,0xc2,0x46,0xd1,0xbf,0xa,0x63,0x42,0x1,0xf5,0xc7,0x5c,0xf6, 0xf4,0xa2,0x3b,0xd7,0xda,0xcc,0xf6,0xb1,0xc1,0x12,0x8d,0xcc,0xd8,0x25,0x8a,0xfe, 0x3c,0x3,0x9c,0x51,0x67,0xd0,0x45,0x58,0x6e,0x3c,0x87,0x92,0x4b,0xb5,0xb8,0x96, 0xe0,0xbe,0x19,0x3e,0x50,0x6,0x3d,0xb3,0xcf,0xae,0x6a,0xd4,0x9a,0xac,0x53,0x41, 0x2b,0x8b,0x67,0x69,0x5d,0x4a,0xa8,0x8,0x72,0x47,0x6c,0x9c,0x74,0xa8,0x61,0xb4, 0x46,0xb2,0x8d,0x1e,0x10,0x67,0x27,0x2a,0xf1,0xae,0x5c,0xb7,0x5e,0xa6,0x90,0x58, 0xcf,0x25,0xe2,0x89,0xa0,0x65,0x90,0x0,0xca,0xe6,0x4e,0xb8,0xec,0x0,0x34,0xd5, 0xba,0x8f,0x62,0x2b,0x65,0xbd,0x4c,0xab,0xb0,0x9e,0xe1,0x86,0x5e,0x16,0x8b,0x72, 0xa8,0xed,0xc6,0x7d,0x31,0x52,0xae,0x9d,0x2c,0xd3,0x79,0xa8,0x91,0x8d,0xa3,0x96, 0x45,0x54,0x7,0x9e,0x98,0xed,0xd2,0xb4,0xed,0x2d,0xb3,0x21,0x99,0xc3,0xc0,0xf9, 0x23,0x6b,0x30,0x5,0xb8,0xea,0x4f,0xe0,0x28,0x95,0x61,0x17,0x1,0x91,0xa4,0x2e, 0xc7,0x18,0x23,0x2a,0x68,0xb,0xb3,0x22,0x5b,0x37,0xb4,0x71,0x1c,0x56,0xb3,0x5c, 0x6a,0x12,0x8f,0xf5,0xf2,0x3f,0xca,0x99,0x18,0x38,0x3,0xb,0xc7,0x6f,0xad,0x5b, 0x91,0x8d,0xac,0x71,0x49,0x77,0x1a,0x19,0x55,0x46,0x11,0x5c,0x6e,0x77,0xf5,0x63, 0xd0,0x7e,0x1e,0xb5,0x66,0x69,0x80,0x64,0x17,0x13,0x8,0x31,0xf7,0x4f,0x94,0xc1, 0x8f,0xb6,0x2a,0xa4,0x97,0x76,0x96,0xd2,0x16,0xb5,0xb7,0xfb,0x54,0xed,0xfd,0xe7, 0x0,0x1,0xef,0x9e,0x9f,0x95,0xd,0x81,0x14,0xd2,0xc9,0xa9,0x5c,0xdb,0xb5,0xc2, 0xc2,0x90,0xab,0x1d,0xb1,0x2c,0x9f,0x4e,0xac,0x79,0x3f,0x95,0x69,0x13,0x79,0x20, 0x29,0xb,0xdb,0x2c,0x8a,0xc3,0xe,0xe,0x70,0x3f,0x10,0x6a,0xa5,0xe4,0xb2,0x5e, 0xb4,0x2a,0x21,0x66,0x7c,0x7d,0xc2,0x40,0x3,0xdb,0x3d,0x6a,0x3b,0xe6,0x86,0xd5, 0x62,0xfb,0x3d,0xcb,0x43,0x75,0x90,0x3c,0x94,0x6d,0xfe,0x99,0x18,0x39,0xa5,0x7d, 0x42,0xc6,0x93,0xdb,0x5d,0xf9,0xc,0x2e,0xae,0x63,0xba,0x4e,0xac,0x24,0x4d,0xab, 0x8f,0xc3,0x39,0xfc,0x6b,0x29,0xe1,0xb3,0xba,0x7c,0x5a,0xc9,0x13,0x38,0xc6,0xe8, 0xd1,0x40,0x0,0xf,0x63,0xcd,0x24,0x97,0xf3,0xbc,0x84,0x4f,0x21,0x92,0x30,0x3e, 0x68,0xa6,0x1,0x4b,0x1f,0xa0,0x5c,0xfe,0x62,0xa6,0x9a,0xe2,0xf2,0x48,0x90,0x8, 0x60,0x8f,0x8f,0x96,0x38,0xf2,0x5d,0x47,0xe1,0xfe,0x1f,0x9d,0x31,0x17,0x2d,0xae, 0x23,0xb7,0x4b,0xb9,0xae,0x1d,0x94,0x23,0x65,0x99,0x81,0xf9,0x54,0xf,0xa7,0xd6, 0xb2,0xc6,0xb2,0x6f,0x6d,0xa5,0xb8,0x7f,0x2c,0x2c,0x2e,0x19,0x23,0x27,0x61,0x3, 0x9c,0x64,0xfa,0x9c,0xf4,0xcd,0x36,0x14,0x79,0xe1,0x75,0x12,0x31,0xfd,0xee,0xf6, 0x88,0xc5,0xce,0x47,0x40,0xc4,0xf6,0xe2,0xa7,0xbb,0xb5,0x92,0x75,0x12,0xb5,0xb0, 0x8e,0x63,0x93,0xf3,0xb6,0xe1,0x27,0x7c,0x15,0x1c,0x76,0xa3,0x66,0x16,0x32,0xde, 0x9,0xae,0xe7,0xf9,0x4,0xf7,0x2a,0x54,0x39,0x81,0x18,0x80,0x31,0xf5,0xe3,0x8f, 0x61,0xcd,0x68,0x41,0xe5,0xc1,0x24,0x79,0x82,0xb,0x79,0x15,0x70,0x22,0x9c,0x65, 0x86,0x7b,0x2,0x40,0xcd,0x3a,0xd6,0x3,0x71,0x3c,0xd1,0xc7,0x23,0x2c,0x63,0x83, 0x23,0xc,0x16,0xe3,0xa0,0x50,0x78,0x19,0x34,0x25,0xa7,0xd9,0xe6,0xdf,0x3c,0x50, 0x86,0xea,0x1d,0x57,0x78,0x3d,0xb9,0xef,0x9e,0x68,0xe6,0xd4,0x94,0x57,0xd5,0x4a, 0x99,0xf7,0x5a,0xf9,0x6c,0xfe,0x59,0xe,0x23,0xce,0x79,0xe0,0x67,0x7,0x1f,0x96, 0x2b,0x19,0x30,0x24,0x94,0xa0,0x1,0x3c,0xc2,0x88,0x0,0x38,0xa,0xa7,0x68,0xeb, 0xec,0x5,0x69,0xeb,0x6b,0xc,0x76,0xb6,0xd3,0xa4,0xbb,0x64,0x99,0xde,0x50,0xaa, 0x36,0xee,0x44,0x46,0x62,0x71,0xf5,0xb,0xf9,0xd6,0x62,0x96,0x48,0x91,0x15,0x49, 0xf7,0x27,0xfa,0xd6,0x94,0xae,0xd9,0x9d,0x7d,0x51,0x3a,0x86,0x5c,0x9c,0x66,0x86, 0x90,0x80,0x4e,0x31,0xc7,0x4a,0x84,0x99,0x47,0xf0,0x91,0x9f,0x52,0x5,0x3c,0x8d, 0x83,0xe6,0x20,0x93,0xdf,0x3c,0xa,0xd9,0xe9,0xa9,0xce,0xa6,0xda,0xb5,0x86,0x20, 0x25,0x4e,0x78,0xef,0xf5,0xa6,0xbc,0x79,0x18,0xd,0x4e,0x2c,0x19,0x3e,0x56,0xea, 0x71,0x9e,0x69,0x86,0x58,0xe1,0xc7,0x9d,0x2a,0x21,0xf4,0x66,0x0,0xfe,0xb4,0xe3, 0x35,0xb9,0x9b,0x4d,0xe8,0x9,0x1e,0xd6,0xe4,0xd4,0xdb,0x40,0xa6,0x2c,0xf1,0x33, 0x6d,0x59,0x3,0x37,0xf7,0x53,0xe6,0x3f,0x90,0xa7,0x65,0xba,0xf9,0x33,0xe3,0xd7, 0xca,0x6f,0xf0,0xa5,0xed,0x11,0x3e,0xc6,0x5d,0x5,0x3d,0x3d,0xd,0x35,0xf8,0xc6, 0x46,0x4e,0x29,0x1f,0x78,0x60,0xa2,0x1b,0x82,0xcd,0xf7,0x57,0xc8,0x7c,0xb7,0xd0, 0x62,0x9d,0x1,0x7b,0x85,0xdf,0x6f,0x13,0xcc,0xa1,0x41,0x25,0x54,0xe3,0x9f,0x7e, 0x94,0xd4,0xd6,0xe6,0x91,0xa7,0x3b,0x58,0x85,0x79,0xc8,0x6c,0xe0,0xf4,0x15,0x67, 0x4d,0x54,0x4d,0x7e,0xd6,0x56,0x43,0x27,0x91,0x6d,0x3c,0x81,0x47,0x5c,0x9d,0x8a, 0x3f,0xf4,0x2f,0xd6,0xa6,0x7d,0x37,0x52,0x8c,0xa8,0x93,0x4f,0x70,0x58,0xe0,0x1, 0x24,0x79,0xcf,0xd3,0x75,0x16,0x16,0xb2,0xdc,0x6a,0x25,0x3e,0xcf,0x34,0x32,0x22, 0x6d,0x73,0x27,0xc8,0x50,0x13,0x9e,0xbe,0x87,0x6f,0xe9,0x51,0x52,0xb4,0x5c,0x6c, 0x55,0x2a,0x32,0x83,0xd4,0xde,0xb2,0x45,0xb6,0x43,0x6d,0x6f,0x65,0x6a,0x64,0x72, 0x4c,0x85,0xe4,0xe7,0xf1,0xe3,0x27,0xad,0x53,0x9a,0xce,0xe3,0xcd,0x68,0xe4,0xb3, 0x47,0x4,0x61,0x7c,0x90,0xca,0xbc,0xf7,0xe6,0xaf,0x2d,0xac,0xc9,0x26,0xe8,0x12, 0xc5,0x40,0x18,0x5,0xd8,0xb3,0xfe,0x60,0xa,0xb9,0x19,0xbd,0xca,0x87,0x7b,0x5d, 0xa3,0xbe,0xd6,0x6c,0x7e,0xb5,0xcb,0x74,0x77,0x58,0xc8,0xbc,0xb3,0x9e,0xd,0x31, 0x5a,0xe9,0x91,0x1a,0x20,0xa2,0x38,0xe2,0xef,0xce,0xe,0x49,0x1e,0x87,0xb5,0x6b, 0x4f,0x67,0x2a,0x42,0x25,0xb4,0x89,0x52,0x60,0xb8,0xda,0x4f,0x51,0xe9,0x9c,0x63, 0xf1,0xaa,0xe3,0x4d,0x73,0x3c,0xd2,0xcd,0x77,0xe7,0x2c,0xa3,0x1b,0xa,0xb0,0x51, 0xcf,0xa6,0x6a,0x7f,0x2e,0x6d,0xcc,0x1a,0xfe,0x5c,0x1e,0x8b,0x1a,0x2a,0xa8,0xf6, 0xe8,0x68,0xe6,0x5d,0x42,0xc4,0x36,0x7f,0xda,0x92,0x43,0xe6,0x44,0xcb,0xb0,0xf4, 0x13,0x8c,0x11,0xf4,0xc0,0x35,0x62,0xc5,0x3c,0x82,0xb6,0xf7,0x12,0x42,0xb2,0x92, 0x4c,0x51,0x6,0xc9,0xc7,0xf5,0xfc,0xa8,0x40,0xd1,0x22,0xa0,0x9e,0x55,0xa,0x38, 0xc4,0x6b,0xc7,0xe9,0x50,0xbd,0x8c,0x32,0x4c,0x24,0x73,0x34,0x8e,0xe,0x43,0x39, 0x4,0xff,0x0,0x2a,0x9e,0x74,0x16,0x19,0xab,0x5a,0xc2,0x91,0xa3,0x41,0x3c,0x76, 0x8c,0x64,0x7,0x77,0x62,0x39,0xed,0xd3,0x35,0x42,0xe2,0x66,0x8f,0x4f,0x75,0xe, 0xb7,0x52,0xb4,0x81,0x7c,0xc4,0x8c,0x80,0x4f,0xea,0x33,0xc7,0xad,0x5e,0x9a,0xd6, 0x19,0x6f,0x3c,0xe7,0x80,0xbc,0xc0,0x0,0xa5,0x9b,0x24,0x7e,0x75,0x2b,0x44,0x14, 0x62,0x48,0x87,0x5c,0x9f,0x98,0xf5,0xf5,0xc7,0x4a,0x3d,0xa1,0x56,0x32,0x66,0x7b, 0x8f,0xb7,0xa7,0xda,0xee,0x8d,0x88,0xb,0xca,0x9c,0xf3,0xed,0x85,0x20,0x0,0x7f, 0xa5,0x6a,0xdb,0x2c,0x2,0x35,0x7b,0xe7,0x43,0x20,0x72,0x52,0x49,0x24,0xc8,0xc7, 0xfb,0x3c,0xf0,0x38,0xa8,0xde,0xce,0xda,0x66,0xf3,0x1a,0x8,0x5c,0xe7,0x3f,0x3b, 0x12,0xf,0xd4,0x74,0x35,0x24,0x5f,0xba,0x5f,0x2f,0xf7,0x3b,0x0,0xf9,0x76,0x8e, 0x7,0xe1,0xd2,0x8f,0x68,0x2b,0x15,0xee,0x61,0xb5,0xb8,0xbc,0x67,0x1b,0x5a,0x36, 0x5e,0x24,0x56,0xc3,0x6f,0x7,0xa8,0x39,0xa4,0xb8,0xb3,0x32,0x2c,0x44,0x48,0xab, 0x1c,0x3f,0x32,0xa1,0xe4,0x2b,0x76,0x3e,0xe7,0xeb,0x5a,0x2b,0x2e,0x40,0x2,0x55, 0x7,0x1c,0x65,0x29,0xa5,0x98,0x36,0x4b,0xee,0xf6,0xb,0xfe,0x34,0x39,0xf6,0xb, 0x18,0xab,0x35,0xd6,0xe3,0x20,0x8a,0xea,0x57,0x7,0x2b,0x28,0x82,0x4e,0x3d,0x76, 0xfc,0xb8,0xa8,0xd9,0x6e,0xe7,0x71,0x37,0x95,0x76,0xb8,0x20,0xec,0x6d,0xc3,0x71, 0xce,0x4e,0x71,0xd3,0xf2,0xae,0x8b,0x76,0xe0,0x0,0x32,0x7b,0x90,0x0,0xc7,0xe9, 0x4d,0x60,0x57,0xe6,0xc,0xe4,0xfd,0x47,0x34,0xdc,0xd8,0x9c,0x4c,0xb,0x9b,0x1b, 0x8b,0xdb,0x64,0x89,0xb4,0xe9,0xd1,0x95,0xcb,0x87,0x59,0x14,0x60,0x91,0x8e,0x73, 0xd6,0xa6,0x1a,0x65,0xcb,0x7d,0xfb,0x55,0x76,0x20,0x6f,0x72,0x10,0x36,0x3d,0x88, 0x35,0xaa,0x63,0x5,0xb7,0x6d,0x93,0x9e,0xc5,0xc9,0x3,0xf5,0xa7,0x30,0x20,0xe4, 0x5,0xfa,0x13,0x53,0xce,0xd0,0xd2,0x33,0xd2,0x3b,0xd8,0x62,0xd9,0x3f,0x96,0xdb, 0x5b,0x28,0x64,0x98,0xe4,0x8f,0x71,0x8c,0x66,0x9c,0x63,0xb9,0x70,0x70,0x20,0x19, 0xfe,0xf4,0x87,0x9f,0xd2,0xac,0xb2,0xee,0x73,0xe5,0x95,0x5c,0x72,0xd4,0xfc,0xb2, 0xc6,0xa,0x18,0xc0,0xf4,0xc5,0x25,0x26,0xc6,0x65,0x5c,0x69,0xb7,0x4f,0x24,0x72, 0xc3,0x7d,0x1d,0xa4,0xc9,0x9e,0x23,0xcb,0xe7,0xf1,0x38,0xa8,0x66,0xd2,0x5a,0x59, 0x16,0x63,0x7c,0x9,0xce,0x5b,0x72,0x34,0x8a,0x4f,0xd3,0x76,0x5,0x6d,0x3b,0xb4, 0x8a,0x54,0xb2,0x93,0xdb,0xb,0xd2,0xa2,0xf2,0x88,0xe7,0x7d,0xd1,0xf5,0x1b,0x17, 0x14,0xb9,0xdf,0x40,0x28,0x2d,0x83,0x5b,0xbb,0xba,0xcc,0xea,0xce,0x36,0xf9,0x96, 0xf6,0xa1,0x18,0xf,0x62,0x73,0x8f,0xf3,0xe9,0x56,0x60,0x8e,0x68,0x80,0x48,0x26, 0xbb,0x19,0x18,0x3b,0x91,0x79,0xe3,0x1d,0xc5,0x4a,0xdb,0x99,0xc6,0xd6,0x9f,0x1d, 0xfe,0x6c,0x7f,0x21,0x4f,0x55,0x62,0x31,0xb6,0x40,0x3d,0x4b,0x52,0xe7,0x77,0x2, 0xbf,0xd9,0x9e,0x17,0x3,0xed,0x17,0xcd,0x9e,0x4a,0xe5,0x2,0xfe,0x8a,0x2a,0x46, 0xb7,0x66,0xc,0x25,0x37,0x1b,0x48,0xc7,0xfa,0xf2,0x33,0xf5,0xc1,0xab,0x21,0x4b, 0x2e,0x18,0x71,0xdb,0x27,0xad,0x44,0xd6,0xce,0x4e,0xef,0x2e,0x20,0x3d,0x37,0x51, 0xb8,0x58,0xa0,0x74,0xdb,0x75,0x60,0x42,0x39,0x38,0xf9,0x4b,0x5c,0xb9,0xc7,0xfe, 0x3d,0x58,0xda,0xfe,0x91,0x1f,0xf6,0x54,0xf2,0xc5,0x4,0x6b,0xf6,0x73,0xe7,0x1f, 0x2e,0x42,0x59,0xb1,0xc3,0x64,0xfd,0x9,0xfc,0xab,0xa6,0x10,0xbb,0xe,0x4,0x8, 0x7d,0x4a,0x67,0xfa,0xd3,0x1e,0xcd,0x9e,0x9,0x60,0x96,0x44,0x74,0x91,0x4a,0xb0, 0xf2,0xf1,0x90,0x41,0x7,0xbf,0xa1,0xa6,0xaf,0x70,0xd8,0xc3,0x8f,0xc3,0xba,0x24, 0x57,0x21,0x7e,0xc5,0x8,0xdc,0x81,0x91,0xde,0x77,0x20,0xaf,0x6e,0x33,0x57,0x93, 0x4d,0xd0,0xd7,0x8,0xd6,0x7a,0x78,0xf6,0x98,0x64,0x7e,0xb9,0xaa,0xda,0x55,0xe3, 0x5b,0x58,0xc7,0x14,0xd7,0x36,0x8b,0xf6,0x72,0xd6,0xcc,0xc6,0x16,0xdd,0x94,0x24, 0xe,0x87,0xfb,0xbb,0x4f,0xe3,0x5a,0xf,0x3b,0xca,0x80,0x25,0xfc,0x2a,0x3d,0x52, 0xcd,0x8e,0x7f,0x33,0x54,0xee,0x21,0xa3,0x4a,0xd1,0xf6,0x93,0x1e,0x9b,0xa5,0x92, 0x4f,0xf0,0x44,0x98,0xff,0x0,0xeb,0x54,0xc3,0x4e,0xb1,0x4c,0x79,0x56,0xb6,0x51, 0x8e,0xfb,0x6d,0x95,0xb1,0xfa,0x52,0xc0,0x97,0x4a,0x30,0x75,0x6,0x71,0xd8,0xb, 0x60,0xbf,0x96,0x6a,0xca,0x79,0xea,0x7e,0x79,0xdd,0x97,0xfe,0xb9,0x28,0xfe,0xb4, 0xae,0xc0,0x1d,0x73,0x1a,0x80,0xc0,0x1,0xc7,0xfa,0xbc,0xc,0x7d,0x29,0xaa,0x64, 0x72,0x15,0x65,0x94,0x20,0xfe,0x1f,0x2f,0x3,0xf3,0x7,0x34,0xe9,0x19,0x80,0xc8, 0x66,0x24,0x9e,0xb8,0x15,0x18,0x49,0x43,0x61,0x96,0x62,0xf,0x7d,0xdc,0x7e,0x14, 0x9b,0xe8,0x2,0xba,0x3e,0x3e,0xf4,0xff,0x0,0x4c,0xf4,0xfd,0x4d,0x49,0xb1,0xd4, 0x82,0xc,0xa1,0x58,0xfd,0xd2,0xe1,0x49,0xfe,0x46,0xa0,0x28,0x91,0x49,0xb6,0x38, 0xa5,0xdf,0xfd,0xd4,0x39,0xc9,0xf7,0xa5,0xf2,0xa5,0x56,0x69,0x24,0x87,0xe7,0x38, 0xe4,0xdc,0x63,0xf9,0x7f,0x5a,0x3d,0x1,0x92,0xbc,0x72,0x48,0xc7,0x2a,0xf8,0xed, 0xb9,0x89,0xa1,0xa3,0x70,0xaa,0x10,0x0,0x7,0x55,0xe,0x72,0x4f,0xae,0x29,0x89, 0x12,0x91,0xbf,0xca,0x8c,0x31,0xfe,0xf3,0xe4,0x7e,0x78,0xa7,0x2,0x3f,0xbd,0x6a, 0xa4,0x7e,0x3f,0xe1,0x42,0x1,0x36,0xaf,0x5,0x82,0x2,0x7f,0x8b,0x79,0xfe,0x54, 0xad,0x24,0x4a,0xe,0xe3,0x18,0x1e,0xbb,0x9,0xfe,0x54,0xd4,0x55,0x6c,0xb7,0x9d, 0x1b,0xfa,0x9d,0xb5,0x2a,0xa3,0x90,0x19,0x59,0x3f,0xef,0xde,0x7f,0xad,0x30,0x22, 0x8e,0x48,0x1b,0x94,0x68,0x9b,0xe8,0xa0,0x52,0x33,0x47,0xe6,0x70,0xe1,0x87,0xa0, 0x8f,0x35,0x34,0xbe,0x6a,0xfd,0xe9,0xca,0x63,0xb8,0x8e,0x80,0xf,0xc,0x92,0xcc, 0xc0,0xf7,0xc2,0xff,0x0,0x51,0x52,0xd0,0xc,0xc2,0x85,0x4,0x87,0x1c,0xf6,0x4c, 0x52,0x23,0x4b,0xc9,0xc4,0xcb,0xf4,0x3,0x34,0xf3,0xb,0xbb,0x6f,0x2d,0x3f,0x1e, 0xe3,0xfa,0x52,0xf9,0x60,0xff,0x0,0x4,0xad,0xeb,0xf3,0x54,0xd8,0x0,0x89,0x2, 0x12,0x44,0xe5,0xb1,0xc6,0x5a,0xab,0xa4,0x21,0xf0,0xef,0x6e,0xe5,0xfd,0x4c,0x84, 0xd4,0xed,0x1a,0xaa,0x92,0x61,0x6f,0xfb,0xe8,0xd0,0xd0,0x2e,0xc5,0x26,0x28,0xd4, 0x7a,0x31,0xcd,0x3d,0x40,0x61,0x85,0x5f,0xef,0x46,0x38,0xec,0xd3,0x13,0xff,0x0, 0xea,0xa6,0xa2,0xc4,0xaf,0xf2,0x25,0xb8,0x3e,0xf2,0x6e,0x15,0x32,0xc1,0x10,0xe7, 0xca,0x87,0x8f,0x48,0xc5,0x48,0x13,0x70,0xe9,0x18,0x5f,0xf7,0x69,0xd8,0xa,0xdb, 0x54,0xb6,0xdd,0xb6,0x99,0xee,0x15,0x4d,0x38,0x48,0xb1,0x7f,0xcb,0x44,0x46,0xf6, 0x43,0x56,0x30,0xc4,0x60,0x38,0xe3,0xa7,0xcb,0x4d,0x2b,0x26,0xec,0x9,0x32,0x7b, 0x8c,0x71,0x4f,0x60,0x20,0x2e,0x11,0x8c,0x8b,0x33,0xfb,0xe1,0x9,0xcd,0x48,0xd2, 0x48,0xc8,0x8,0x32,0x73,0xfe,0xc5,0x2b,0xac,0x92,0xe0,0x6e,0x74,0x3,0xa9,0x5e, 0x33,0x4e,0x48,0x72,0xbc,0xbb,0xb1,0xee,0x49,0xc9,0xa4,0x3,0x1f,0x71,0xc3,0x0, 0xfb,0x87,0xbf,0x4a,0xc6,0xd4,0xed,0x5e,0x19,0xa2,0xd4,0x6d,0xad,0x9e,0x49,0xe1, 0xfb,0xc8,0x5f,0x89,0x10,0xfd,0xe5,0x3f,0xcc,0x7a,0x10,0x2b,0x75,0xa2,0x55,0x23, 0x9c,0x67,0xd6,0xa3,0xda,0x99,0xc3,0x0,0x7b,0xf2,0x28,0xb5,0x98,0xcc,0x35,0x82, 0xb,0xdd,0xb7,0xf6,0x73,0x37,0x93,0x20,0xc,0xd1,0x6,0x20,0x6,0x3,0x1c,0x81, 0x9e,0x78,0xfd,0x29,0x21,0x42,0xd3,0x4e,0xb7,0x90,0x42,0x22,0x51,0xb8,0x1c,0x7c, 0xbd,0x79,0xe0,0xfa,0x8e,0x6a,0x39,0xec,0x13,0x47,0xbf,0x92,0xe2,0x10,0x7e,0xcd, 0x72,0xc3,0x8,0xa7,0x1b,0x24,0x27,0xf4,0xd,0xd3,0xeb,0x8f,0x5a,0x97,0x65,0xd0, 0x1,0xe6,0x55,0x1,0x86,0x15,0x22,0x88,0xb1,0x3d,0xb2,0xc0,0xc,0x9a,0xd6,0x2e, 0xe4,0xd8,0x6a,0xa6,0x91,0x78,0xaf,0xc,0x72,0x46,0x1b,0x3d,0x3,0x15,0xfc,0xbb, 0x50,0x6c,0x96,0x19,0xd5,0x15,0x62,0x58,0xc0,0x22,0x3f,0x2e,0x2e,0x73,0xea,0x4d, 0x36,0xf3,0x4e,0x82,0x52,0xb7,0x89,0xb2,0x48,0x94,0x8f,0x35,0x62,0xe1,0xb3,0xed, 0xd7,0x1d,0x79,0x1e,0xd4,0xeb,0x58,0x22,0xba,0x84,0xad,0x95,0xc4,0xd1,0x94,0x3c, 0x5,0x97,0x0,0x8c,0xf7,0x19,0xeb,0x57,0x64,0x1a,0x11,0x5a,0x43,0xac,0x43,0x24, 0x93,0x3c,0x51,0xa8,0x5c,0xe3,0x3b,0x48,0x7f,0xcb,0xa5,0x47,0x77,0x2,0xdc,0xdf, 0x25,0xdb,0x5b,0xca,0xa4,0x2e,0x8,0x92,0x2,0xcb,0x91,0x9e,0x72,0x8,0xf5,0xa6, 0x5e,0x69,0x17,0xb7,0x12,0x31,0x44,0x5b,0x82,0x8a,0x48,0x49,0x67,0x63,0x8c,0xf7, 0xc3,0x71,0xdb,0xd6,0x9f,0x6d,0x32,0xb6,0x92,0x5e,0x21,0x32,0xcd,0xb,0x8,0xe5, 0xb7,0x56,0xc9,0xd,0x8c,0x64,0xf,0xd4,0x52,0xd7,0xa0,0x6e,0x56,0x88,0x6c,0x60, 0x80,0x35,0xd1,0x4,0x62,0x59,0x5d,0xb6,0xae,0x7f,0xc,0x8a,0xb7,0xe,0x9b,0xa9, 0xdd,0x5e,0x9,0xef,0x2e,0xcc,0x50,0xa7,0xdc,0x5b,0x69,0x4e,0xd3,0xf8,0x9e,0x7f, 0xc,0x55,0x98,0xa6,0x73,0x1e,0xcb,0xfb,0x39,0x98,0x48,0xa3,0x64,0x88,0xc5,0x5b, 0xa7,0x70,0xbd,0xea,0x8c,0x37,0x32,0xcb,0x32,0x5a,0x8b,0xab,0xab,0x67,0x66,0xc2, 0xa4,0xc4,0x3f,0xd0,0x67,0xae,0x7f,0xa,0x1b,0x6c,0x2e,0x58,0xd4,0x24,0x68,0x2e, 0x3c,0xa6,0xbb,0x4d,0xc5,0x7e,0x51,0x27,0xf5,0xe2,0xac,0xda,0xcb,0x6b,0xa8,0x62, 0x16,0x9c,0x45,0x3a,0xf0,0x62,0x56,0x7,0x23,0xdb,0x70,0xe4,0x51,0x70,0xda,0x68, 0xc2,0x6a,0x32,0x40,0x4e,0x30,0x43,0x64,0x3,0x8f,0x50,0x78,0xac,0xad,0x42,0xf, 0xe,0xb3,0x22,0x36,0xfd,0x99,0x7,0x74,0x3b,0x99,0x47,0xd0,0x72,0x3f,0x20,0x69, 0x82,0xd0,0xd4,0x59,0x8d,0x85,0xc0,0xb4,0x6b,0xd0,0xca,0xe,0x23,0x1,0x3,0x36, 0x3b,0x2,0x0,0xce,0x7d,0xf1,0xfc,0xab,0x52,0x30,0xe7,0xc,0x5f,0x70,0x3c,0x83, 0xb3,0x7,0x1e,0xb5,0xca,0xcb,0xa4,0x45,0x3b,0xee,0xd3,0x65,0x5f,0x28,0x81,0xb6, 0x46,0x2d,0x13,0x82,0xf,0x4,0x71,0x8c,0x8c,0x7a,0x77,0x35,0xab,0x6d,0x2d,0xd1, 0x93,0xec,0xd7,0x72,0x5d,0xb5,0xe4,0x6a,0x19,0xbc,0x96,0x40,0x1c,0x76,0x38,0xe3, 0xf9,0x56,0x32,0x8a,0x46,0x8b,0x53,0x5d,0x94,0x75,0x2c,0xf9,0x1e,0x95,0x10,0x7c, 0x67,0xd,0x21,0x19,0xea,0x71,0x4d,0x10,0x96,0x1b,0xb1,0x74,0x18,0x8c,0xff,0x0, 0xad,0x0,0xff,0x0,0x3a,0x67,0x94,0xe1,0xa,0x81,0x73,0xb8,0x7f,0xd3,0x7e,0xbf, 0x53,0x50,0x3,0x9f,0x7c,0xa4,0xf3,0x70,0x17,0xd9,0x96,0xa3,0xf2,0xd9,0x7e,0x55, 0xfb,0x41,0xcf,0x42,0x64,0x15,0x13,0x2b,0xa3,0x80,0xfb,0x57,0x8f,0xf9,0x6b,0x76, 0x69,0xca,0x50,0x7d,0xe3,0x6d,0xf5,0xfb,0x49,0x3f,0xd2,0x8b,0x14,0x8b,0xb,0x13, 0xc,0x86,0x59,0x81,0xf5,0x33,0xf0,0x7f,0x23,0x4c,0x78,0x14,0xe4,0x98,0xbf,0xe0, 0x4d,0x31,0xc7,0xf3,0xaa,0x8a,0x90,0xac,0x8d,0x33,0xff,0x0,0x67,0x2b,0xff,0x0, 0x7f,0x79,0x26,0x83,0x77,0x66,0xca,0x77,0x5c,0x69,0xe4,0xf4,0xe6,0x22,0xdf,0xd6, 0x90,0x89,0xa5,0xb5,0x46,0x51,0xbd,0x2d,0x18,0x75,0x1b,0x9c,0xff,0x0,0x8d,0x42, 0x23,0xb5,0x8d,0x59,0x51,0xac,0x17,0x3d,0xb7,0x67,0x9f,0xce,0xab,0x8b,0x8b,0x71, 0x20,0x29,0x7b,0x67,0xc7,0xf0,0xa5,0xa1,0xff,0x0,0x1a,0xb0,0x1f,0x61,0xde,0x2e, 0x4a,0x86,0x3f,0xc1,0x66,0x47,0xf4,0xa2,0xc1,0x72,0x3d,0xd6,0x61,0xf6,0x99,0x6d, 0x5a,0x41,0xd0,0x60,0xe3,0xf9,0xe2,0x90,0xbd,0xb1,0x53,0xfb,0xcb,0x5c,0x8e,0xdf, 0x67,0xdc,0x3f,0x3a,0x92,0x69,0xe4,0x8,0x13,0xcf,0xbd,0xeb,0xc3,0x25,0xa6,0xef, 0xe6,0xb5,0x14,0xb2,0x4b,0xe5,0x82,0x24,0xd5,0x9c,0x8e,0xb8,0x8d,0x50,0x7e,0x8b, 0x40,0x31,0xa2,0x4b,0x72,0xa1,0x84,0xe8,0x8,0xed,0x1d,0xa9,0x38,0xfc,0x40,0xa2, 0x49,0x8b,0xa8,0x2,0x7b,0xe2,0xa4,0xf5,0x4b,0x7c,0x7f,0x35,0xa6,0x89,0x26,0x75, 0x19,0x4d,0x50,0xe7,0x81,0xb2,0x50,0x3f,0x5c,0xa,0x7c,0x50,0xc8,0xbf,0x37,0x93, 0xa8,0x3f,0xbc,0xb7,0x43,0xfa,0x35,0x0,0xce,0xa7,0xc2,0xc7,0x2b,0x70,0x70,0xc3, 0x84,0xfb,0xc3,0x9f,0xe2,0xf4,0xae,0x86,0xb9,0xbf,0xa,0xc,0x1b,0xb0,0x41,0xd, 0x84,0xce,0x4e,0x7f,0xbd,0x5d,0x25,0x7a,0x98,0x6f,0xe1,0x23,0x96,0xa7,0xc4,0xce, 0x7f,0xc4,0xf2,0xc5,0xa,0xdb,0x33,0x5,0xf3,0xe,0xf5,0x4c,0xe7,0xbe,0x3f,0xfa, 0xd5,0xcb,0x4b,0x3d,0xd2,0x5b,0xec,0x29,0xbf,0xce,0x3b,0x58,0x4c,0xf9,0x4,0xfa, 0x1,0xbb,0x3f,0x90,0xae,0x9f,0xc5,0x2d,0xa,0x7d,0x91,0xe6,0x52,0x42,0xef,0x3c, 0x75,0xed,0xd2,0xb2,0x22,0x30,0x99,0xd1,0x51,0x59,0x58,0xa6,0xe0,0xe5,0x79,0xfa, 0x64,0x1e,0x2b,0x8f,0x10,0xed,0x51,0x9a,0xd3,0xd8,0x85,0xac,0x4d,0xbd,0x9c,0xd3, 0xdd,0x20,0x67,0x58,0xce,0x63,0x41,0x9e,0xdd,0x6,0xee,0xb,0x56,0x4c,0x3e,0x4b, 0x5b,0xbb,0xe9,0xd2,0xcd,0x67,0x3c,0x63,0x32,0xc3,0x22,0xf9,0xbb,0x87,0xf7,0xb3, 0x8e,0x95,0x6b,0x54,0x99,0xa2,0xb8,0x16,0x12,0x48,0x61,0xb5,0x97,0x5,0xe5,0x5c, 0x6,0x6e,0x41,0x20,0x12,0x7f,0xce,0x6a,0xba,0x69,0x72,0xcb,0x26,0x43,0xf9,0x36, 0x79,0xde,0x4b,0x95,0xf3,0x18,0x7d,0xf,0xd3,0xd3,0x1e,0xd5,0x92,0x77,0x2f,0x76, 0x5c,0x8b,0x50,0x16,0x16,0xf3,0x5c,0x4b,0x75,0xe7,0x49,0xb3,0x79,0x76,0x83,0x6b, 0xc8,0x7a,0x5,0x50,0x7a,0x8e,0x7f,0x5a,0x4b,0x1f,0xb3,0xa5,0x84,0x8f,0x71,0x70, 0xc2,0xf2,0xe9,0x84,0x93,0xc8,0x50,0x92,0xf,0x45,0x5c,0xe3,0xa2,0x8f,0xc3,0x35, 0x9d,0x1a,0xd9,0x4d,0x7c,0xc2,0xf2,0xe2,0x58,0xa2,0x8b,0xa8,0x23,0x73,0x48,0xc0, 0x9e,0xe1,0x40,0x3,0xa7,0x40,0x33,0x5a,0xa7,0x50,0xb7,0xb9,0xc4,0x56,0xb1,0x95, 0x85,0x39,0x63,0x82,0x73,0xc6,0x31,0x8f,0xd7,0x9a,0xd2,0xe3,0xb1,0x29,0xd3,0x22, 0x8a,0xdc,0x5d,0xcd,0x7b,0x85,0xe4,0xe2,0x64,0x52,0xa7,0xdc,0x1,0xd3,0xdb,0x9e, 0xf4,0xd3,0x35,0xb2,0xe8,0xf1,0xdb,0xfd,0x96,0x65,0xdc,0xff,0x0,0xba,0x8c,0x81, 0xb8,0x92,0x7b,0xf3,0xc1,0xe7,0xfc,0xe6,0xab,0x49,0x8,0x31,0xb7,0x93,0xa,0x87, 0x7,0xe5,0xdb,0x6e,0x41,0xfe,0x43,0xfa,0xd4,0x77,0xce,0xac,0x22,0x8e,0x2b,0x7b, 0xa0,0x98,0x2,0x47,0xf2,0x8e,0xe6,0xc1,0x19,0xc6,0x7b,0xf5,0xa1,0x4a,0x24,0xf2, 0xdc,0xbc,0x65,0xbf,0x5,0x61,0x92,0xe8,0xfc,0x98,0xcc,0x32,0x6d,0x6e,0x7d,0xf, 0x1c,0xfe,0x7d,0xea,0x33,0x2d,0xd4,0x4a,0x20,0xb7,0x66,0x8c,0x7d,0xe6,0x61,0xeb, 0xc0,0xe2,0xa1,0x82,0xd4,0xba,0x6d,0xb2,0xd3,0x2e,0x21,0x51,0x82,0x1e,0x69,0xa, 0x13,0xeb,0xf2,0xe7,0x1f,0x8d,0x5d,0xb7,0x82,0xe6,0x8,0x88,0x3a,0x77,0x9d,0x26, 0x49,0x2f,0xe6,0xaa,0x91,0x9a,0x39,0x90,0x58,0x92,0xd5,0x6e,0x2e,0x2e,0x3c,0xb9, 0x1d,0xe5,0x25,0x79,0x38,0x1,0x40,0xff,0x0,0x6b,0xbf,0xe1,0x52,0xde,0x5a,0x24, 0x10,0x93,0x65,0x1a,0x7d,0xb0,0x81,0xb4,0x20,0x3,0x3,0xb9,0xc7,0xd3,0x35,0x52, 0x7b,0x4d,0x52,0x72,0xa7,0xec,0xf1,0xaa,0xe,0x44,0x46,0x53,0x81,0xef,0xc0,0xc9, 0x35,0x3c,0x36,0x37,0xd0,0x87,0x22,0x3b,0x45,0xe,0xb8,0x2a,0x4b,0x1f,0xaf,0x24, 0x51,0xcc,0x2b,0x12,0x47,0x6d,0x71,0xf6,0x55,0x8a,0x4b,0x81,0x4,0x8e,0x40,0x29, 0x19,0x3,0x0,0xf6,0x18,0xea,0x71,0x50,0xc5,0x76,0x9a,0x6d,0xec,0xb6,0xc6,0x19, 0xdc,0xc,0x8,0xd6,0x33,0xbc,0xf4,0xc9,0x38,0xc8,0xf6,0xa5,0xfb,0x5,0xcc,0xaf, 0x17,0x9e,0xf1,0x2a,0xc4,0x49,0x51,0xe,0x47,0x39,0xf7,0xfc,0xaa,0x75,0xb5,0xb8, 0x49,0xa5,0x96,0x3b,0x85,0x8e,0x59,0x31,0x97,0x8,0x9,0xc0,0x18,0xc0,0xcf,0x4a, 0x39,0xc6,0x24,0xda,0xda,0xbc,0x1f,0xb8,0x57,0x8d,0xc9,0xeb,0x30,0xc6,0xde,0xf, 0x6c,0xf2,0x7d,0xaa,0xa5,0xb7,0x9d,0x71,0x6f,0xfb,0xcb,0xd8,0x63,0x27,0x88,0xe1, 0xce,0xf9,0xf,0xb9,0x0,0x81,0xcf,0xe3,0x8a,0xb2,0x96,0x3e,0x53,0xab,0x24,0xb1, 0x89,0x17,0x92,0xe1,0x3e,0x62,0x7d,0xce,0x6a,0x56,0xb7,0x18,0x64,0x69,0x82,0x96, 0x19,0x20,0x46,0x31,0x49,0xcc,0x2c,0x51,0xfe,0xc7,0xdb,0x89,0xbe,0xd8,0x57,0x66, 0x4c,0x8a,0xca,0x8,0xfc,0x87,0x4a,0x42,0x89,0x2a,0xed,0xf2,0xe4,0x91,0x23,0xe5, 0x54,0x6c,0x54,0xcf,0xa9,0x6,0xac,0xff,0x0,0x67,0x28,0xc2,0x89,0xae,0x6,0x47, 0x48,0x86,0xd1,0x4d,0x3a,0x5c,0x6f,0x71,0xf3,0x8b,0x86,0xd,0xf7,0x8f,0x9b,0xb7, 0x3f,0x96,0x28,0x53,0xb,0x15,0x23,0x70,0x2f,0x60,0x92,0x7b,0x89,0x92,0x32,0xf, 0xf1,0xb7,0x27,0xd3,0x8e,0x0,0xfa,0x55,0x8b,0xbb,0x98,0x8,0x22,0xcd,0x1a,0xe2, 0x51,0xf7,0x9c,0x29,0x60,0xbd,0x4f,0xe2,0x7e,0x95,0x62,0x4d,0x32,0xcf,0x6e,0x3c, 0xb9,0x99,0x40,0xc6,0x1a,0x67,0x23,0xf5,0x26,0x92,0x38,0x6d,0xa2,0x54,0xb,0x0, 0x55,0x7,0x80,0xb2,0xb7,0x3f,0x87,0x4a,0x1c,0xc2,0xc6,0x6c,0x56,0xf7,0xd7,0x97, 0x6b,0x35,0xec,0x6c,0x60,0x6e,0xd2,0xb8,0x55,0x3,0x1c,0x70,0xe,0x7b,0x9a,0xd6, 0x12,0x45,0x69,0x17,0x94,0x97,0xc5,0x19,0xce,0x14,0xf0,0xc4,0x7b,0xc,0xf4,0xa7, 0xb2,0xa8,0x19,0x54,0x84,0x90,0x3f,0x8b,0x2,0x88,0xd4,0xa1,0xde,0x65,0x81,0x4e, 0x3e,0x64,0x8d,0x73,0x8a,0x1d,0x46,0xc0,0xa6,0x82,0x24,0xbc,0x66,0x79,0x83,0x6c, 0x60,0xc2,0x59,0x58,0x6f,0x63,0xe9,0x9f,0xf0,0x15,0x24,0xb7,0x1a,0x7c,0xec,0x4c, 0xd7,0x45,0xa5,0x23,0xf8,0x62,0x27,0x1f,0x8e,0xda,0xbb,0xf6,0x88,0xcc,0x7b,0xfc, 0xd6,0x55,0x1d,0xb6,0x9f,0xd6,0x91,0x27,0xde,0x77,0x47,0x23,0x11,0xdc,0xed,0xc0, 0x14,0xb9,0xae,0x6,0x6c,0x61,0x3c,0xc4,0xc2,0x4a,0xcc,0x99,0xd8,0x7c,0xa6,0xa, 0x33,0xdf,0xa5,0x2d,0xd1,0x97,0xce,0x57,0xb6,0xb5,0x5d,0xc3,0x5,0xa4,0x44,0x21, 0x89,0xf4,0xc9,0xc6,0x2b,0x59,0x4b,0xb0,0xe3,0x79,0x1d,0x7e,0x6a,0x7a,0xa9,0x51, 0x92,0x8,0x27,0xa7,0xcf,0xd2,0x9d,0xc4,0x65,0x46,0x75,0x11,0x62,0xb1,0x8b,0x46, 0x8e,0x40,0x0,0x18,0x2b,0xc8,0xf5,0xfb,0xdc,0x1a,0x6d,0xa8,0xbc,0xb0,0x77,0x6f, 0xb3,0x12,0xb2,0x7d,0xe0,0xf2,0x26,0xe2,0x7e,0xbd,0xeb,0x5b,0x27,0x38,0x2a,0x49, 0xef,0xcd,0x39,0x41,0x3,0x1,0x54,0x67,0xfd,0xa3,0x4f,0x70,0x2a,0x13,0x72,0xc3, 0x22,0xde,0x15,0x38,0xe3,0xf7,0xc7,0x3,0xf0,0xdb,0x50,0x18,0xaf,0xa5,0x90,0x19, 0xcd,0xa9,0x8c,0x74,0x55,0x62,0x2a,0xe1,0x4,0x36,0x30,0x3f,0x3,0x4e,0x62,0x70, 0x11,0x80,0x65,0x3d,0x85,0x4d,0xde,0xc0,0x65,0xc5,0x6d,0x71,0x6e,0xc3,0x65,0xc4, 0xa,0x15,0x71,0xb0,0xc6,0x5b,0x77,0xb9,0x20,0xe6,0x9b,0x70,0xad,0x20,0xdb,0x3c, 0xf1,0xb9,0x23,0xaa,0xc0,0x72,0xbf,0x43,0x9a,0xd6,0x60,0xdb,0x42,0x29,0xe7,0xd3, 0xa6,0x5,0x36,0x48,0x82,0xc5,0xf2,0x33,0x8c,0x37,0xaf,0xf5,0xa4,0xf4,0x2a,0xe7, 0x11,0x4,0x79,0x96,0xf1,0xe4,0x9e,0x46,0x86,0xde,0x33,0xa,0x99,0x98,0x96,0x1, 0xdf,0x6e,0x0,0x3d,0x3e,0x50,0x7f,0x3a,0xd2,0xb9,0xd3,0x2c,0x16,0xcc,0xdc,0x42, 0xf7,0x32,0xb9,0xc6,0x55,0x9c,0x29,0x60,0x7b,0xa,0x96,0x25,0x85,0xe6,0xb9,0xbe, 0x32,0x5a,0x9f,0xb4,0xc8,0xa,0x2c,0xd9,0x60,0x15,0x7e,0x50,0x4f,0xe2,0x9,0xab, 0xd1,0xdb,0xc6,0xee,0xf2,0x7d,0xb5,0x67,0x66,0xea,0xf1,0x8f,0x95,0x40,0xec,0x8, 0xfc,0x7b,0xd6,0x8b,0x4d,0x48,0xb1,0x42,0xce,0xdf,0xc3,0x73,0x9c,0x5,0x31,0xba, 0x80,0xc,0x52,0x48,0xca,0xc0,0xfe,0x7c,0xfe,0xb5,0x6a,0xe7,0x45,0x89,0x49,0x9a, 0xca,0xdf,0xcc,0x1b,0x3e,0xeb,0x48,0xdf,0xa0,0x39,0xa1,0x2c,0x2c,0xf5,0x79,0x65, 0x67,0x96,0x58,0x5c,0xf0,0x16,0x36,0x1b,0x99,0x71,0xd7,0x2c,0xe,0x7f,0xa,0x4b, 0x7d,0x52,0xfc,0xea,0x13,0xe9,0xf6,0x71,0xc7,0x34,0x36,0xdf,0xbb,0x13,0x39,0xda, 0x46,0x0,0xc9,0x39,0x38,0x3c,0x9c,0x70,0x3b,0x53,0x68,0x4e,0xdb,0x19,0xeb,0x1a, 0xcc,0x80,0x41,0x69,0xa9,0x9,0x63,0x1f,0xbc,0x1b,0x90,0x28,0x3d,0x31,0x93,0xef, 0xed,0x56,0xac,0xd5,0x63,0x9a,0xe1,0x52,0x12,0xd7,0x51,0x8e,0x63,0x69,0x54,0xf3, 0x8c,0x8c,0xb6,0x2a,0xc4,0x73,0x4b,0x2d,0xc4,0x91,0x2a,0xb3,0x4c,0x66,0x5,0xfe, 0x55,0xc2,0x8f,0xe2,0x39,0x1e,0xfb,0xbb,0xd6,0xad,0x95,0xb5,0xb4,0x31,0xb4,0x36, 0xa1,0x50,0x16,0x2d,0x21,0x55,0xc9,0x72,0x49,0xe4,0x9a,0x69,0x74,0x27,0x91,0x26, 0x67,0x5a,0x6a,0xf3,0x2c,0x26,0xdc,0xe9,0xcb,0x15,0xe2,0xb1,0x2d,0x6e,0xbf,0x29, 0x3c,0xe3,0x70,0xe3,0x4,0x1c,0x7a,0xd4,0x7f,0x6c,0xd4,0xa1,0x67,0x9a,0xf2,0x29, 0xa1,0x8d,0x8e,0x8,0x0,0x28,0x53,0x9e,0x39,0xcf,0xf3,0xab,0x9a,0xfa,0xd9,0x43, 0x6f,0x14,0xf3,0xdb,0xac,0xae,0xb2,0x5,0x5c,0x36,0xd2,0x33,0x93,0xd4,0x75,0xe9, 0xd2,0x9f,0xa7,0xea,0x91,0x5d,0xc9,0xf6,0x79,0x67,0xb,0x3e,0xdf,0xf5,0x78,0x2b, 0x9e,0xd8,0xe7,0xae,0x29,0x35,0xa9,0x45,0x65,0xb8,0xb4,0x9f,0x4d,0x5b,0x88,0x75, 0x24,0xb6,0xba,0x64,0x1b,0x9d,0xca,0x96,0x1e,0xa3,0x7,0xf9,0xd0,0xfa,0x1c,0x49, 0x14,0x36,0xb0,0x47,0x19,0x43,0xc9,0x99,0x9b,0xe6,0xd,0xfd,0xe2,0x3f,0x8b,0xfa, 0x55,0x7f,0x10,0x69,0xb0,0xc1,0x7,0x99,0x67,0x6f,0xf3,0x97,0x29,0x20,0x8b,0x3c, 0x29,0x4,0x3,0x8c,0xe3,0xae,0x2b,0x56,0xe3,0x51,0xb6,0xb2,0x68,0xd2,0x49,0x4a, 0x5,0x5c,0x33,0x32,0xe7,0x1f,0x52,0x7,0xb5,0x35,0xa0,0x18,0x97,0x3a,0x42,0xe8, 0x72,0x8b,0xbb,0x49,0x84,0x97,0x12,0x9d,0x80,0xcb,0x18,0x2f,0xf8,0x10,0x7,0x1d, 0x8f,0x3,0xa8,0xe6,0xac,0x59,0x5d,0x99,0x2f,0xae,0x27,0x9e,0x58,0xc3,0x18,0xe3, 0x2a,0x26,0xf9,0x42,0x7d,0xec,0x81,0xdb,0xad,0x53,0xb9,0x95,0x2e,0xee,0xa4,0x96, 0xdd,0x9a,0xe5,0x79,0x65,0x48,0xad,0xc2,0xe4,0xf4,0x50,0x58,0xf5,0x19,0x20,0xd6, 0x87,0x87,0x60,0x2a,0xb7,0xaf,0x2e,0x3c,0xc5,0x91,0x13,0xa0,0xec,0x80,0xff,0x0, 0x36,0x34,0x98,0x22,0x4f,0xed,0x7b,0x2c,0xe1,0x2e,0x63,0xcf,0x72,0x23,0x63,0x9f, 0xc4,0xe,0x6a,0xd4,0x37,0x2,0x65,0xdc,0x92,0x6,0x1e,0xbe,0x59,0x1f,0xce,0xac, 0xf9,0x9b,0x9c,0xe5,0xc1,0x1e,0x80,0x52,0x16,0xff,0x0,0x68,0xd6,0x4f,0x72,0x88, 0x1a,0x70,0xab,0xcb,0x39,0x3e,0xd1,0x9a,0x60,0x99,0x9b,0x1e,0x5c,0x6e,0x79,0xe9, 0xb7,0x19,0xab,0x44,0x91,0x8e,0x5b,0xaf,0x6a,0x67,0xfa,0xc6,0x23,0x73,0x2,0x3d, 0xe9,0x34,0x34,0x30,0xbc,0xad,0x29,0xfd,0xcb,0x91,0xee,0x40,0xa5,0x65,0x21,0x40, 0xa,0x79,0x3e,0xbd,0x29,0x36,0x2,0x3,0x6,0x94,0x8f,0x67,0x22,0x9e,0xf,0x9a, 0x40,0x28,0x47,0xa1,0x26,0x95,0x80,0x88,0xc6,0x59,0xfe,0xee,0x7d,0x89,0xa7,0xf9, 0x6c,0xcb,0xb5,0x91,0x38,0xf4,0x34,0xfd,0x8c,0x8a,0x76,0xb1,0x63,0x9e,0x84,0xd1, 0xbb,0x2a,0xc0,0x2,0xe,0x3a,0xf6,0xa7,0x64,0x21,0x82,0x26,0x18,0x5c,0x28,0x1e, 0xb4,0x79,0x2a,0x81,0x94,0xb2,0x91,0xec,0xb8,0xa1,0x55,0xf3,0x99,0x2,0x6d,0x3, 0x86,0x14,0x4a,0xe4,0x47,0xbb,0x73,0x0,0x3a,0x7c,0xb9,0xa3,0x40,0x1a,0x43,0x2, 0xa7,0x24,0x7a,0xe0,0x54,0x82,0x30,0xe3,0x1e,0x63,0x9c,0xfe,0x14,0x85,0xf6,0xb8, 0x1e,0x63,0x8d,0xc3,0x20,0x15,0xa5,0x18,0xf9,0x7e,0xf6,0x7d,0xe8,0x41,0x76,0x21, 0x89,0x23,0x27,0x6b,0x10,0x3b,0x82,0x7a,0xd2,0x3a,0x6,0x20,0x81,0x91,0xed,0x4e, 0x97,0x3c,0x1c,0x67,0xdc,0x76,0xa7,0x72,0x46,0xdd,0xc3,0x91,0xd4,0x50,0xc0,0x41, 0x18,0x74,0xf9,0x93,0x8f,0x4a,0x6f,0x91,0xa,0xb9,0x3b,0x46,0x47,0x6c,0xd3,0x37, 0xa0,0xc9,0x2e,0x70,0xbc,0x67,0x4,0xd4,0xbe,0x74,0x32,0x60,0x86,0x24,0xe3,0x8e, 0x29,0xa6,0x31,0x13,0x26,0x43,0xf2,0xa8,0xe3,0x9a,0x56,0xce,0xee,0x9,0x0,0x74, 0x2,0x91,0x49,0xc0,0x2c,0x70,0x7e,0x94,0xc7,0x63,0xb8,0x90,0x8,0xa4,0x2,0xf2, 0xe,0x5b,0x3f,0x88,0xa4,0x62,0x58,0xe1,0x18,0xa8,0x1d,0x71,0xd2,0x9a,0x24,0x72, 0x30,0x55,0xc8,0x3d,0x8,0xe9,0x4d,0x68,0xe6,0x1c,0xaa,0x9f,0xcc,0x63,0xf9,0xd4, 0x80,0xe7,0xca,0x9c,0x0,0xc4,0x1c,0x74,0x34,0xe5,0xdd,0x9d,0xc7,0x81,0xef,0x4c, 0x32,0x3a,0x26,0xf7,0x8d,0x7f,0x6,0xff,0x0,0xeb,0x54,0x2a,0xe4,0x92,0xce,0xd1, 0x5,0xec,0xa4,0x93,0x48,0xb,0x1,0xc6,0xec,0xb3,0x20,0xf4,0xc1,0xa5,0xdc,0xcd, 0xce,0x48,0x1d,0xf8,0xaa,0xa4,0xb2,0xbe,0xed,0xf0,0xee,0xf4,0xc1,0xa9,0x43,0x12, 0xb9,0x69,0xb,0x7b,0x81,0x45,0xc0,0x73,0x10,0x78,0x1,0x49,0xed,0x9e,0xf4,0xec, 0xe4,0xee,0x60,0x32,0x30,0x1,0x3,0xde,0xa1,0x32,0x12,0xf1,0xe0,0xf0,0xf,0xa6, 0x3f,0x9d,0x24,0x79,0x95,0x87,0xce,0x70,0xab,0xc6,0x4e,0x6,0x69,0xa9,0xc,0xca, 0xb3,0x57,0xb5,0xf1,0x4d,0xe5,0xb3,0xc8,0xe2,0x2b,0xa4,0x17,0x11,0xe5,0x78,0xc, 0x0,0x56,0x1e,0xe7,0x1,0x4f,0xe3,0x5b,0x80,0x48,0x76,0xb6,0xe6,0xc7,0x70,0xc3, 0x93,0x58,0x9a,0xcb,0x18,0x26,0xb2,0xd4,0x98,0x38,0xfb,0x24,0xdb,0x64,0xe7,0x81, 0x1b,0x8c,0x13,0xdf,0xbe,0xd3,0xf8,0x56,0xea,0x44,0xc5,0x4b,0x6f,0x7d,0xc3,0xb1, 0x35,0x5b,0xea,0x21,0x5c,0x80,0x8d,0x21,0x66,0x18,0x1d,0x47,0x14,0x6d,0x18,0x4, 0xef,0xc0,0xfe,0xf3,0x73,0x4b,0xe4,0xa4,0x8a,0x37,0x64,0x83,0xd5,0x73,0x4a,0xe9, 0xb9,0xf8,0x24,0x8f,0x42,0x69,0xf4,0x13,0x23,0xda,0xb2,0x90,0xac,0xb2,0x11,0xef, 0xd3,0xf3,0xa6,0x34,0x71,0xc7,0x32,0x91,0xb9,0xb3,0x9c,0x66,0x66,0xc7,0xe4,0x4d, 0x4a,0x4b,0x36,0x55,0x31,0x91,0xfd,0xe3,0xc5,0x20,0x87,0x7a,0x6e,0x65,0x8b,0x70, 0xf4,0x34,0x84,0x2,0x25,0x2b,0x96,0x2b,0xcf,0x62,0xdf,0xe1,0x41,0x86,0x21,0xf3, 0x2,0x83,0x1d,0x87,0x4a,0x91,0x51,0x1b,0x81,0x8e,0x3b,0x8a,0x71,0x4c,0x9c,0x26, 0xd1,0x8e,0xe0,0x53,0x48,0x8,0x8,0x4c,0x82,0x76,0x28,0xef,0x85,0xc8,0xa7,0x79, 0xa8,0xb9,0x50,0x14,0x7a,0x61,0x7a,0xd3,0x8c,0x1b,0x46,0xe6,0x7c,0x37,0x7e,0x3a, 0xd0,0x55,0x80,0x1,0x58,0x90,0x7d,0xa8,0x1,0x4,0x8d,0xc6,0x54,0xe7,0xd7,0x14, 0xa6,0x47,0x27,0xf8,0xc8,0xf6,0x5a,0x14,0x13,0xc1,0xc8,0xfc,0x2a,0x45,0x40,0x47, 0x46,0xe3,0xdf,0x14,0x6e,0x2,0x1,0x8c,0xf,0x2d,0xf2,0x3b,0x9c,0x7f,0x8d,0x35, 0x99,0x8f,0xf0,0x91,0xea,0x41,0xa7,0x8,0xd3,0x25,0x42,0x61,0xbd,0xfb,0xfe,0x34, 0xa0,0x12,0xa0,0x5,0x34,0x98,0xae,0x44,0xc8,0xe9,0xd4,0x92,0x4f,0x6d,0xd4,0xa7, 0x7a,0x1c,0x2a,0x64,0x7f,0xbd,0x52,0xec,0x2a,0xdf,0x74,0x1a,0x8c,0x2b,0x67,0x25, 0x41,0x3e,0xf4,0x58,0x77,0x10,0x19,0xb,0xf4,0x53,0xed,0x9a,0x56,0x7,0xf8,0xb6, 0xfe,0x54,0xee,0x55,0x47,0xcb,0x93,0xed,0x4a,0xdc,0x74,0x19,0x34,0x58,0x6,0x7c, 0xdd,0x89,0xf6,0xe2,0x98,0xec,0xe8,0xc3,0x73,0x31,0x53,0xe8,0x2a,0x42,0xad,0xd7, 0x71,0x1c,0x75,0xa2,0x36,0xd,0x92,0x18,0x15,0x1c,0x64,0x8a,0x39,0x46,0x44,0x57, 0x2f,0xf3,0x49,0x27,0x3d,0x31,0x4e,0x70,0x57,0x9c,0xb9,0xfa,0x1a,0x70,0x31,0x95, 0x21,0x4f,0xcd,0xdb,0x8e,0xb4,0x34,0x8a,0xa0,0x29,0xfb,0xf8,0xc9,0xc7,0x34,0xd2, 0x1,0x71,0x85,0x2a,0x38,0xe3,0x3f,0x5a,0x60,0x55,0x2c,0x9,0xd,0xf9,0xd2,0x89, 0x50,0x82,0x49,0x24,0xf4,0xa6,0xb3,0xc6,0xb8,0xcc,0xa0,0x7d,0x4d,0x30,0x17,0x0, 0x64,0x3,0x9e,0x7b,0x8e,0x94,0xa2,0x3c,0x64,0x9c,0x10,0x7b,0xd2,0x2d,0xcc,0x78, 0x3c,0x86,0x1e,0xdc,0xd2,0x34,0xf1,0x81,0x8c,0x38,0xcf,0x72,0xbc,0x54,0xe8,0x4, 0x77,0x16,0xc9,0x71,0x3,0xc2,0xeb,0xb9,0x5c,0x6d,0x61,0x9c,0x66,0xb9,0xcd,0x3d, 0xe6,0xb3,0xbe,0xb8,0xd3,0x25,0x12,0xbc,0xb1,0xa0,0x74,0x70,0xe1,0x5a,0x44,0xe7, 0xd,0xee,0x79,0xe7,0xff,0x0,0xaf,0x5d,0x2b,0x48,0x58,0xe1,0x50,0xb0,0xc7,0xf7, 0x7f,0xad,0x65,0x6a,0xb1,0xdc,0x4d,0xf6,0x7b,0x88,0x6d,0x98,0xcf,0x6c,0xdb,0x83, 0x15,0x7,0x70,0xee,0xbf,0x42,0x38,0xa1,0x58,0x68,0xa6,0x66,0x10,0x4a,0xd7,0xd, 0x1c,0xf1,0x3a,0x1e,0x5a,0x54,0x0,0xbf,0xa8,0xc8,0x3f,0xe7,0xf1,0xaa,0x57,0x96, 0xba,0x76,0xa8,0xad,0x73,0xa6,0x96,0x8a,0xf6,0x3e,0xaa,0xa8,0x46,0xec,0x9e,0x41, 0xe3,0xfa,0xf6,0xab,0x3e,0x7a,0x6b,0x50,0xc8,0xd6,0xf0,0x4e,0xeb,0x1b,0x95,0x28, 0x58,0x21,0x53,0x9e,0x7a,0x9e,0xbc,0x55,0x59,0xe6,0xbd,0xb2,0x89,0x56,0x8,0xc1, 0x5,0xf2,0xeb,0x29,0x3b,0xd3,0xf3,0xc0,0x3d,0xab,0x48,0xb2,0x2c,0x3e,0x1b,0xcf, 0xb1,0x48,0x99,0xb7,0xb9,0x89,0xb3,0xb2,0x46,0x85,0x94,0xa6,0x3a,0x64,0x83,0x57, 0x5f,0x4b,0xce,0xa0,0xda,0x84,0x33,0x82,0x9,0x4,0x88,0xa4,0xda,0xc4,0x8c,0x67, 0xa7,0x51,0x4d,0xb7,0xd3,0x65,0x9e,0xdb,0xcf,0x5b,0x82,0xb2,0x13,0xb9,0x43,0xa8, 0x64,0x7,0xbf,0xca,0x3f,0xae,0x69,0x9a,0x14,0xd2,0xcb,0xa7,0xcb,0x75,0x25,0xad, 0xb3,0x3f,0x20,0xbc,0x60,0x21,0x38,0x27,0xae,0x6,0xe,0x3d,0x7d,0xea,0xc1,0x68, 0x3c,0x7f,0xc4,0xc6,0xc6,0x49,0xc,0xf,0x2c,0x38,0x65,0xdb,0x1c,0xac,0x1d,0x71, 0xc6,0x47,0x50,0x7b,0x1f,0xc6,0xb2,0xed,0x34,0xab,0x8b,0xf4,0x20,0xc5,0x2a,0x42, 0x1f,0x72,0x19,0xd7,0x6c,0x9c,0x74,0x23,0x4,0x54,0xda,0x79,0xb9,0x7b,0x83,0x6b, 0x6d,0x78,0x96,0xaa,0xcc,0x64,0xd9,0x9e,0x70,0x78,0xc0,0x38,0xe7,0x0,0xa,0xd4, 0x75,0x5b,0x4,0x70,0xb2,0xcb,0x3b,0x75,0x2d,0x36,0x59,0x72,0x33,0xd0,0x52,0xd8, 0x77,0xb9,0x91,0x15,0xbb,0x2d,0xc4,0xf0,0x5c,0xda,0xcd,0x71,0x34,0x4a,0x8,0x56, 0xc3,0x86,0x1c,0xf3,0xee,0x3a,0xf3,0xcd,0x69,0x8d,0x52,0xd6,0x5b,0x31,0xa,0x89, 0x6d,0x58,0x8d,0xbb,0x16,0x2,0x40,0xfa,0x60,0x62,0xa1,0xb8,0xb5,0xb7,0x99,0x92, 0xfa,0xb,0xe8,0xda,0x57,0xc1,0x54,0x7,0x60,0xff,0x0,0x80,0xf3,0x91,0x52,0x45, 0x67,0x2b,0x44,0x3,0x5a,0x95,0xb9,0x1d,0x43,0x31,0x0,0x8f,0x5c,0x82,0x40,0xa1, 0xca,0xe0,0xdd,0x8c,0xf9,0x25,0xf2,0xf6,0xb4,0x66,0x4b,0x72,0x80,0x29,0x64,0x4c, 0x2c,0x98,0xee,0xcb,0x9a,0x59,0xe7,0x69,0xc2,0xa4,0xd6,0xe5,0xa4,0x50,0x59,0x1a, 0x3c,0x83,0xf8,0x1,0xdb,0x8a,0x75,0xe6,0x99,0xa9,0x89,0x95,0x56,0xde,0xd0,0x2b, 0x74,0x60,0xc7,0x71,0xed,0xd7,0x1e,0xfe,0x94,0xe4,0x8f,0x50,0xb3,0xd4,0x56,0x47, 0xb1,0x79,0xbe,0x4d,0xa0,0xc2,0xee,0x0,0xe9,0xd0,0x81,0xed,0xd0,0xd1,0x75,0x60, 0x8c,0x9a,0x25,0xd2,0xdb,0xed,0x96,0xfe,0x6d,0xb6,0x97,0x6c,0x58,0x64,0x3f,0x9b, 0x78,0xfb,0x83,0xc,0xf6,0x2a,0x48,0xe9,0xde,0xb4,0x17,0xe5,0x52,0xa5,0x34,0xe1, 0xec,0x64,0xdd,0x8f,0xd2,0xb0,0xaf,0x63,0xdb,0x30,0xd4,0x23,0x8e,0x2f,0xb4,0xc5, 0x21,0x32,0x45,0x3f,0x2c,0xea,0x73,0xc7,0xcc,0x2b,0x66,0xd6,0x6b,0x7b,0x88,0x56, 0x78,0xbf,0xb3,0xca,0x32,0x82,0x36,0xc,0x11,0xf5,0x7,0x4,0x56,0x32,0xda,0xe6, 0x89,0xdc,0x25,0x8a,0x36,0xf9,0xd8,0x69,0x48,0x3b,0x7c,0x80,0xd4,0x51,0xbc,0x21, 0xc6,0xc9,0x74,0xbe,0x4e,0x3e,0x58,0x4f,0xf2,0xcd,0x4c,0xd7,0x8,0xb2,0x61,0x26, 0xb3,0xc,0x39,0x23,0x61,0x38,0xfc,0xa9,0xcd,0x72,0xd2,0x27,0xc9,0x76,0xa0,0x1e, 0xa1,0x60,0x6e,0xb5,0x5,0x10,0xb5,0xec,0xa,0xef,0x1c,0x77,0x16,0xc8,0xe3,0x8d, 0xcb,0x1,0xe3,0xf9,0xd3,0x45,0xcd,0xd1,0x61,0xb3,0x50,0xb8,0x91,0x47,0x78,0xec, 0xc1,0x1f,0x9f,0x35,0x28,0x79,0xc9,0xf9,0x75,0x9,0x7e,0x82,0xd8,0xff,0x0,0x5a, 0x63,0x17,0x66,0xd8,0xd3,0x5f,0xef,0x7,0x21,0xd6,0x10,0x3f,0x98,0x34,0xb,0x52, 0x27,0xb8,0x95,0xe4,0x4,0x5f,0x5f,0x8c,0x1e,0x57,0xec,0x79,0xcf,0xfe,0x3b,0x48, 0xd7,0x12,0x48,0x70,0x24,0xd6,0x57,0x9e,0x8,0xb7,0x55,0xff,0x0,0xd9,0x6a,0x64, 0x69,0xd9,0xd8,0x99,0x35,0x36,0xc7,0x19,0x65,0x8d,0x73,0xfa,0xa,0x89,0x6d,0xdf, 0x2e,0x52,0xd,0x40,0x96,0xfb,0xd8,0x91,0x17,0x3f,0x91,0xa2,0xe1,0x76,0x24,0x6b, 0x26,0x58,0xb7,0xf6,0xcb,0x7b,0xb9,0x45,0xcf,0xd3,0x18,0xa4,0xf2,0x38,0x39,0xb6, 0xd4,0xa4,0x3d,0xbc,0xdb,0xae,0x9f,0x86,0xea,0x68,0x8a,0x74,0x19,0x36,0x77,0xae, 0x3b,0x6d,0xbc,0x1f,0xd0,0x8a,0x1e,0xd1,0xa6,0x38,0x9b,0x4f,0x2a,0xa0,0x64,0x34, 0xb7,0x8c,0x7f,0xc6,0x8b,0x86,0xe2,0x18,0xa7,0x8f,0x96,0xd3,0xee,0x55,0xbf,0xbe, 0x6e,0xca,0xe7,0xfe,0xf8,0x3f,0xd2,0xa1,0xfb,0x38,0x25,0xc3,0x69,0xb6,0x8a,0xc4, 0x67,0x7c,0xb7,0x39,0x24,0xfd,0x4f,0x34,0xf9,0x6c,0x49,0x7f,0x92,0xca,0xdc,0x81, 0xdd,0xee,0x9a,0x9e,0x6c,0x50,0xc,0xb5,0xa5,0x89,0x1d,0x8b,0x13,0x21,0xfc,0xe8, 0xb8,0xed,0xdc,0xea,0x7c,0x1c,0x92,0x24,0x77,0x42,0x45,0x8d,0x58,0x6c,0x18,0x42, 0x4f,0xf7,0xbd,0x6b,0xa7,0xae,0x73,0xc2,0x88,0x11,0x6e,0xb8,0x51,0x9d,0x9f,0x74, 0x60,0x77,0xae,0x8e,0xbd,0x4c,0x37,0xf0,0x91,0xcb,0x57,0xe3,0x66,0x4e,0xb4,0x1, 0xf2,0x33,0xfe,0xd7,0x1f,0x95,0x61,0x98,0x23,0x4d,0xc5,0x42,0x86,0x27,0x27,0x73, 0x91,0xf9,0xd6,0xfe,0xac,0x9b,0x8c,0x3c,0x7f,0x7b,0xfa,0x56,0x44,0xb6,0xd2,0xb1, 0xc2,0x24,0x24,0x7f,0xb4,0x99,0xfe,0xb5,0xc7,0x88,0xbf,0xb4,0x66,0xb4,0xdf,0xba, 0x67,0xb3,0xaa,0xba,0xef,0x6b,0x30,0x17,0x9c,0x96,0x2d,0x8f,0xd2,0xa9,0x5f,0xea, 0xab,0x6d,0x6c,0x5e,0x2b,0x98,0x9e,0x62,0x40,0x8e,0x3f,0x25,0xb0,0x4e,0x7b,0x92, 0x71,0x8a,0xd8,0x9a,0xce,0xeb,0xcb,0x26,0x1b,0xa8,0xad,0xc1,0x1c,0xb0,0x80,0x1c, 0xfe,0x66,0xb9,0xd8,0xe5,0x3a,0x96,0xa0,0x67,0x7b,0x97,0x30,0xc0,0x76,0xc2,0x7c, 0x92,0xfb,0x8f,0x76,0xc0,0xe0,0x7b,0x56,0x16,0x2d,0x12,0xe9,0x16,0xcb,0x15,0xa9, 0x90,0x4d,0xba,0x47,0x6d,0xee,0xeb,0x6a,0x5b,0x73,0x1e,0xc3,0x1c,0xe0,0x7b,0xd6, 0xd2,0x90,0xf1,0x3,0x2c,0x92,0xb0,0x7,0xa1,0x8b,0x15,0x55,0x65,0x79,0x25,0xa, 0x6e,0x6f,0xfc,0xbc,0xe4,0x15,0xb7,0x38,0xfe,0x55,0x3c,0x91,0x92,0xe1,0x56,0x6b, 0xd7,0x7,0xae,0xe4,0xa,0x7,0xe4,0x5,0x3,0x26,0xda,0xce,0x77,0x2b,0x61,0x7b, 0x1c,0x1a,0x99,0x49,0x40,0x14,0xb1,0xda,0x38,0xc7,0xb5,0x50,0xf2,0x13,0x71,0x2, 0x4b,0x82,0x47,0xfb,0x64,0x7f,0x2a,0x70,0xb2,0xb4,0x7e,0x59,0x25,0x24,0x77,0x67, 0x6f,0xf1,0xa6,0x9d,0x80,0xbf,0x23,0x31,0x61,0xf7,0x87,0xbf,0x34,0xad,0xc0,0xe7, 0x9e,0x3d,0x6a,0xba,0x42,0xa8,0x76,0xec,0x6d,0xa4,0xe0,0x6e,0x72,0x6a,0x60,0x8b, 0x9e,0x9f,0x76,0x9d,0xc9,0x2,0xab,0xbc,0x30,0x45,0xf4,0xfb,0xa2,0xa4,0x18,0x50, 0x49,0xc0,0x1f,0x5a,0x8f,0x38,0xc6,0x0,0xe6,0x87,0x63,0xe5,0xb1,0x50,0x9b,0x87, 0x23,0x22,0x8e,0x61,0xe,0x67,0x8d,0x7e,0xfb,0x26,0x71,0xc6,0x39,0xc5,0x32,0x12, 0xd2,0x96,0x39,0x2a,0x3d,0x71,0xd6,0x9c,0x98,0x91,0x14,0x96,0x4d,0xc4,0x7a,0x74, 0xa7,0xb0,0x25,0x30,0x87,0x38,0x3d,0x69,0x80,0xd6,0xe,0x5c,0xa0,0x69,0x30,0x7, 0x5e,0x3f,0xc2,0xa2,0x96,0x55,0xa,0x30,0x1f,0x78,0x38,0x24,0x80,0x32,0x2a,0xd3, 0x11,0xb3,0x25,0x9b,0xea,0x2a,0x12,0xa0,0x82,0xac,0x8c,0x38,0xf5,0xa1,0x8d,0x15, 0xcb,0x99,0x59,0xbe,0x69,0x41,0xec,0xaa,0x72,0x29,0xd1,0x47,0x85,0x22,0x54,0xcf, 0xd4,0x90,0x6a,0x44,0x67,0x5e,0x76,0x5,0x51,0xea,0xc6,0x94,0x2b,0x3b,0x63,0x2b, 0x93,0xdf,0x35,0x3b,0x81,0x19,0x18,0x7d,0x8a,0xa3,0xd3,0x22,0x9f,0x12,0x6,0xde, 0x4e,0x4,0x9d,0x32,0x7b,0x53,0xc2,0x95,0x94,0x8c,0xaf,0x1c,0x92,0x29,0x1d,0xdb, 0xf8,0x48,0x19,0xe8,0x40,0xa7,0xaf,0x51,0x9,0x12,0x8,0xd5,0x73,0x22,0x9c,0x64, 0x92,0x79,0xcd,0x4a,0xd8,0x1f,0x36,0x7d,0xc0,0x2,0xa3,0xc3,0x46,0x19,0x8b,0xae, 0xee,0xc2,0x9c,0xa2,0x57,0x51,0xba,0x53,0x8f,0xa5,0x52,0x68,0x3,0x71,0x66,0x27, 0x7,0x3,0xa9,0xef,0x4c,0x72,0x78,0x7d,0xac,0x55,0x79,0xe4,0x75,0xa9,0x56,0x30, 0xa4,0x9c,0xb6,0x7d,0xcd,0x6,0x30,0xe0,0xfc,0xcd,0xee,0x33,0x52,0x17,0x22,0x89, 0xc3,0x29,0x3c,0x92,0xc7,0x35,0x20,0x63,0xbd,0xb2,0x98,0x0,0xc,0x13,0xde,0x97, 0xcb,0x8d,0x71,0x94,0xf9,0xbb,0x53,0xb6,0xee,0x39,0x0,0x63,0xeb,0x4f,0x51,0x8, 0xad,0xce,0x4e,0x9,0x34,0xd7,0x61,0xce,0x2,0x9f,0xc2,0x95,0xb2,0xdc,0x10,0xaa, 0x7,0x4e,0x6a,0x40,0xbf,0x2f,0xdd,0x52,0x48,0xf5,0xa1,0x5c,0x8,0x86,0x47,0x28, 0xaa,0x48,0xf6,0xa1,0xf7,0x12,0xad,0x9c,0x1f,0x4c,0x54,0xa8,0x23,0x3,0xe5,0xdb, 0xb8,0x75,0xe2,0x94,0x5,0x2d,0xd3,0xa5,0x55,0x80,0x87,0x81,0x21,0x2c,0x79,0xc7, 0x5c,0xd5,0x6d,0x42,0x51,0x16,0x9f,0x34,0xcf,0x90,0x15,0xf,0x7f,0xf0,0xf7,0xc5, 0x5d,0x2b,0xbb,0x3b,0x40,0xd,0x59,0x9a,0x92,0xce,0x6d,0xe1,0x84,0xa7,0x9a,0x65, 0x9d,0x41,0x5c,0xe3,0x20,0x65,0xbf,0xa5,0x20,0x33,0xe1,0xd3,0x7c,0xf6,0xb7,0xb6, 0xb4,0xb9,0x5,0x62,0x88,0x9,0xd9,0xd7,0xa6,0x7d,0x7,0xb9,0x6,0xb5,0xa4,0xd3, 0x40,0x58,0xc2,0x49,0x2b,0x2e,0x76,0x98,0xc1,0xa,0x83,0x8e,0xa4,0x0,0x2b,0x2e, 0xd6,0x37,0xb3,0x96,0x49,0x2e,0xe1,0x68,0xad,0xd6,0x32,0x24,0x7c,0xe7,0x9c,0xfc, 0xb8,0xc1,0xe7,0xae,0x2a,0x7b,0x1f,0x10,0x28,0xdc,0xcf,0x6f,0x20,0x85,0x98,0xf9, 0x43,0x8d,0xc7,0x1c,0x77,0x23,0x3d,0xba,0x74,0xe6,0xb4,0x7d,0x89,0xb8,0x9,0xae, 0xee,0x24,0x77,0x69,0xa1,0xb7,0x86,0xdc,0xb6,0xc6,0x11,0xee,0x62,0x1,0xc0,0x0, 0x71,0xc5,0x2a,0xa5,0xa4,0x92,0xdb,0xde,0x48,0x64,0xf3,0x17,0x0,0x98,0xd4,0xf2, 0xe,0x7b,0x8e,0xfc,0xd5,0xbb,0xd1,0x35,0xc1,0x8e,0xf2,0xdd,0xc,0x82,0x35,0x21, 0x42,0xa8,0x25,0x89,0x3c,0xee,0xf6,0xe0,0x56,0x6c,0x16,0x9a,0xc4,0xb2,0x12,0x96, 0xd0,0xdb,0x23,0x10,0x4e,0x57,0xcb,0x51,0xf4,0x0,0x92,0x7a,0x51,0x61,0xee,0x36, 0x5b,0xad,0x32,0xce,0x59,0x52,0xce,0xe2,0xe1,0x77,0x80,0xd2,0xa2,0x1c,0x77,0xe9, 0x96,0xe7,0x9e,0x7d,0x7a,0xd6,0xe4,0x7a,0xa4,0xf,0x6c,0xd,0xa2,0xc9,0x39,0xc7, 0xca,0x81,0x30,0x71,0xef,0x9e,0x2b,0x36,0x3b,0x91,0x6b,0x1c,0xd0,0x79,0xd1,0xc8, 0xe4,0xe5,0x99,0x93,0x8,0x87,0xeb,0x80,0x4e,0x29,0x6c,0x20,0xfb,0x14,0x2c,0xf1, 0x5d,0x61,0x1c,0xe5,0x50,0xd,0xd9,0xfc,0xfa,0xa,0x77,0xb0,0x31,0x82,0xf8,0x5e, 0xdd,0x85,0xbc,0xd3,0x26,0x2f,0x1,0xdc,0xab,0x13,0x16,0x0,0xfa,0x91,0x85,0xa7, 0x5d,0x5d,0x45,0x6d,0x3b,0x49,0x25,0xab,0x3f,0x9a,0x57,0x78,0x90,0xa6,0x10,0x1, 0xfc,0xea,0xc5,0xde,0xa0,0x17,0x4d,0x79,0x96,0x4d,0x8c,0xad,0xb5,0x89,0xe3,0x77, 0x1d,0x39,0xfc,0x2a,0xbd,0xf4,0x76,0xb6,0xf6,0xae,0x6e,0xee,0x1,0x3d,0x7e,0x58, 0xf2,0x73,0xf4,0x1c,0x9e,0xf4,0x2b,0xb1,0xe,0xb1,0xd5,0x7c,0xb9,0xfe,0xc2,0x2c, 0xa5,0xf5,0x53,0x18,0xdc,0xb8,0x3c,0x8c,0xff,0x0,0x76,0xa2,0xbb,0xbc,0x7b,0x59, 0x26,0x7b,0xf8,0x60,0x6d,0xe0,0xaa,0xa0,0xe7,0x3e,0xf9,0x3d,0x40,0x15,0x6a,0xc7, 0x55,0xb5,0xb8,0x63,0x6f,0x64,0x8c,0x64,0xc6,0xe2,0x8c,0x9e,0x59,0xc7,0x3,0xd3, 0xdc,0x55,0xfb,0x8b,0x18,0xee,0xd6,0x2f,0x36,0x3f,0x9a,0x37,0xdc,0xbc,0x74,0x38, 0xc7,0xf5,0xfd,0x28,0xbe,0xa1,0xb1,0x85,0x8,0xfb,0x5a,0x4b,0x1d,0x94,0x4c,0x84, 0xe1,0x82,0xc6,0x2,0x46,0x3e,0xb5,0x77,0x47,0x6f,0x2e,0xde,0xe3,0xcc,0x5f,0x9c, 0x5c,0x15,0x60,0xa3,0x23,0x80,0x17,0x8f,0xca,0xa3,0xb2,0xbb,0x82,0xdb,0x52,0xb9, 0xb5,0x9a,0x72,0xf3,0x3b,0x8c,0x30,0x53,0x86,0xea,0x7a,0x8e,0x32,0x32,0x7,0xe0, 0x29,0xda,0x53,0x28,0x8a,0xe5,0xc2,0xc8,0xde,0x65,0xcc,0x8e,0x30,0xbd,0x6,0xe2, 0x7,0xf2,0xa9,0x93,0xec,0x54,0x75,0x34,0x9d,0xdb,0x5,0x55,0x4f,0xd7,0x34,0xdd, 0xd9,0x5f,0x9a,0x36,0xfa,0xe6,0x98,0x58,0xfd,0xa3,0xcb,0x11,0x3e,0x4f,0x24,0xb1, 0xff,0x0,0x39,0xa5,0x76,0x4f,0xb8,0xcc,0x1,0x3d,0xb7,0x54,0x36,0x8,0x90,0x13, 0x8c,0x1,0xf4,0xe6,0xa1,0xdc,0xb,0x86,0xc1,0x6,0xa1,0xc3,0x3,0x88,0xc2,0x3f, 0x3d,0x4f,0x26,0xa4,0x2c,0xfb,0xa,0xf9,0x23,0x23,0xfd,0xae,0x2a,0x1e,0xa3,0xb0, 0xe6,0x6d,0xaa,0x0,0xc6,0x7d,0x69,0xc,0x8b,0xbf,0x2a,0xc2,0xa3,0x8,0x54,0x7c, 0xc6,0x25,0x27,0xd3,0x26,0x9a,0xae,0xa0,0x9f,0x9e,0x35,0x3,0xa9,0xc8,0xa4,0x5, 0x90,0xc4,0xa9,0xe4,0x1f,0xc2,0x90,0x12,0xdc,0x2b,0x1c,0x81,0x8d,0xb8,0xc5,0x40, 0x64,0x88,0xff,0x0,0xcb,0x73,0xf5,0x8f,0x9a,0x91,0x58,0x6d,0x3,0x73,0x95,0x3d, 0x9,0xe0,0xd1,0x70,0x1e,0xea,0xa7,0x6e,0xec,0x90,0x29,0x13,0x77,0x23,0x69,0x1c, 0xf7,0xa8,0x8a,0xab,0xf5,0x8e,0x76,0x5c,0xd4,0x80,0xb3,0x2e,0x16,0x26,0xdb,0xdb, 0x71,0xc1,0xfd,0x4d,0x17,0x1,0x65,0x46,0x65,0xe0,0x11,0x8e,0xa7,0x75,0x22,0x23, 0x46,0xb8,0x3c,0x8c,0x64,0xb1,0x3f,0xe3,0x4c,0x68,0xc0,0x8d,0x9b,0xc9,0x2d,0x8e, 0x99,0x93,0xbf,0xe1,0x42,0x67,0x67,0xcc,0x89,0xef,0x93,0xd2,0x8b,0x85,0x89,0x12, 0x78,0xdd,0x49,0x5e,0xdf,0xde,0x6,0x9a,0x4b,0xa9,0x60,0xae,0x30,0x46,0x3a,0x54, 0x6f,0x97,0xe4,0x49,0x16,0xc0,0x3b,0x35,0x2,0x55,0x92,0x40,0xc2,0x64,0x20,0x7f, 0x8,0x1c,0xff,0x0,0x3a,0x2e,0x16,0x17,0xe5,0x50,0xa1,0xe5,0xc6,0x7,0x45,0xc9, 0xa9,0x14,0x82,0x32,0xac,0xdb,0x7d,0x90,0x9a,0xac,0x5c,0xc8,0xed,0xba,0x78,0xc8, 0x27,0x85,0x5c,0x74,0xfc,0x6a,0x64,0x8d,0x76,0xc,0x3c,0xa3,0x1d,0x36,0xaf,0xff, 0x0,0x5a,0x84,0xc6,0x4b,0x90,0x39,0x2b,0x31,0x3d,0xbe,0x53,0x55,0x67,0x8a,0x57, 0x7c,0xaf,0xda,0x1,0xcf,0xf0,0xb6,0xdf,0xeb,0x4a,0xc0,0x97,0x67,0x29,0x2b,0x7a, 0x9d,0x87,0x3f,0x9e,0x29,0xad,0x11,0x94,0xc,0x25,0xce,0x33,0xdd,0xc7,0xf5,0xa6, 0xc0,0x9d,0x23,0xca,0x90,0xf1,0x4b,0xff,0x0,0x3,0x7e,0xbf,0xad,0x23,0x40,0x47, 0xb,0x6f,0x11,0x1f,0xed,0x37,0xff,0x0,0x58,0xd4,0x66,0x0,0xa3,0x2d,0x3,0x13, 0xd3,0xe6,0x90,0x53,0xcc,0x27,0x68,0xdb,0x6d,0x13,0x71,0xc8,0xf,0xff,0x0,0xd6, 0xa4,0x2e,0xa0,0x91,0x38,0xe7,0x64,0x23,0xe8,0x7f,0xfa,0xd5,0x19,0x39,0x2c,0x37, 0x5b,0x2,0x3b,0xe,0x4f,0xf3,0xa5,0x31,0xcc,0xac,0xa1,0x6d,0xe1,0x55,0x1c,0xe7, 0x0,0xfe,0x74,0xff,0x0,0x33,0x61,0x6,0x4b,0x88,0x41,0x3e,0x99,0xff,0x0,0x1a, 0x6,0x46,0x1d,0xfc,0xbc,0x97,0x52,0x47,0x6c,0x66,0x9b,0x1b,0x65,0x19,0x9c,0x81, 0x83,0xc0,0xc6,0x69,0xf2,0x3a,0x85,0x27,0xcf,0x53,0x9f,0x43,0xfe,0x26,0xa1,0x92, 0x46,0x74,0xc,0x97,0x40,0x6d,0xe3,0xc,0x99,0xc7,0xe4,0xd,0x2b,0x0,0xe5,0xc9, 0xc9,0xcc,0xac,0xf,0x6d,0xbf,0xcb,0x8a,0xae,0xe9,0x1c,0x6c,0x1c,0xc3,0x72,0xcd, 0x8c,0x72,0xf8,0xcf,0xe0,0x48,0xa9,0x55,0xc3,0x10,0xbf,0x69,0x76,0x6f,0xf7,0x30, 0x7f,0x1,0x8a,0x47,0x54,0x50,0xc3,0xcb,0xbc,0x6f,0xf7,0x30,0xf,0xf3,0x14,0xe, 0xc6,0x5e,0xa5,0x63,0x2d,0xd5,0x8d,0xc2,0xae,0x99,0x74,0xee,0xcb,0xf2,0xb3,0xdc, 0x0,0x17,0xdf,0x1b,0xbb,0x56,0x86,0x81,0x74,0x6e,0x74,0x8b,0x79,0x59,0x9d,0xc1, 0x40,0xac,0x58,0xe5,0xb2,0x38,0x3f,0x5e,0x73,0x53,0x14,0x55,0x40,0xcc,0x93,0xa2, 0xf1,0x9f,0x35,0xfa,0xfd,0x79,0x35,0x43,0x48,0xcd,0x9d,0xe6,0xa1,0xa7,0x47,0x1c, 0x9e,0x42,0x30,0x9a,0x2d,0xd2,0x74,0x46,0xe3,0x8f,0x6d,0xc0,0xfe,0x75,0x49,0x92, 0xce,0x85,0x4e,0xf8,0xf1,0x19,0x39,0x4,0x2,0xf,0x50,0x29,0xec,0x17,0x9c,0x37, 0x3d,0xb3,0x54,0xc4,0x7f,0x32,0xbe,0xcc,0x64,0x1e,0xad,0x91,0xfa,0xd2,0xb2,0xc8, 0x6,0x55,0x60,0xcf,0xf7,0x9b,0x3f,0xd0,0x55,0x36,0x22,0xce,0xf4,0xda,0x72,0x30, 0x7,0x53,0xeb,0x48,0x26,0x88,0xf0,0x85,0xf,0xd5,0xb1,0x55,0xd7,0x76,0x7,0x31, 0xfb,0xe4,0xf1,0x48,0xee,0x23,0x70,0x4,0x91,0x12,0x7b,0x74,0xc7,0xeb,0x53,0x71, 0x58,0xb2,0xb2,0x43,0x1b,0x11,0xba,0x21,0xfe,0xe7,0x34,0xff,0x0,0xb4,0x40,0x6, 0x43,0x8e,0x7d,0x8d,0x57,0xf3,0x42,0x1f,0x9a,0x64,0x3e,0x98,0x34,0xd6,0x71,0xf7, 0x96,0x69,0x47,0xba,0x27,0xf8,0x8a,0xa4,0xc2,0xc5,0x85,0x9d,0xfc,0xed,0xbb,0x1b, 0xcb,0xc7,0xf7,0x4f,0x34,0xe1,0x70,0x7a,0x8,0x66,0xc7,0xfb,0xbf,0xe3,0x54,0x90, 0xab,0x31,0x62,0x6f,0x24,0x73,0xfc,0x5b,0x45,0x2b,0xaa,0xab,0xa8,0x6f,0x3d,0xbd, 0x8c,0x8a,0x8,0xfd,0x68,0xb8,0xcb,0x52,0xbb,0x63,0x26,0x9,0xe,0x3a,0x65,0x94, 0x7f,0x5a,0x89,0xe6,0x95,0x58,0x6d,0x8d,0x54,0x9f,0x59,0x56,0x98,0x85,0x86,0x4a, 0x5b,0xcc,0xcb,0xd8,0xb4,0x9f,0xd0,0xb5,0x2b,0x3,0x21,0x39,0x8b,0x7,0xbe,0xe6, 0xff,0x0,0xf5,0xd2,0xbb,0x2,0x46,0x9a,0x6f,0x30,0x2e,0x23,0x7,0xa9,0xf9,0xbf, 0xae,0x29,0x82,0x77,0xf3,0x37,0xf9,0xf1,0x2a,0x9e,0xdb,0xb3,0x4d,0x31,0x32,0x29, 0x2b,0x4,0x78,0x3d,0x79,0x23,0x3f,0xa5,0x31,0x4b,0xa1,0xcb,0x2d,0xaa,0x1e,0xcb, 0xcd,0x2b,0x81,0x3f,0xda,0x41,0x4,0x9b,0x98,0x7,0xd4,0x7f,0xf5,0xe9,0x9e,0x76, 0xf1,0x91,0x72,0x98,0x1f,0xdc,0x4c,0xff,0x0,0x22,0x69,0xbe,0x79,0x7,0x77,0xda, 0xa2,0x4,0x75,0x3,0x90,0x3f,0x5a,0x45,0xba,0x92,0x43,0x83,0x76,0xa3,0xfd,0xd8, 0xf3,0xfd,0x69,0x5,0x87,0x19,0x18,0x11,0x9b,0x87,0xdb,0xe8,0xb0,0x75,0xfc,0xc5, 0x2f,0x99,0x8c,0xff,0x0,0xc7,0xcb,0x7d,0x63,0xff,0x0,0x1,0x4c,0x12,0x28,0x6d, 0xcd,0x73,0x36,0x7d,0x97,0xff,0x0,0xad,0x4e,0x12,0xc6,0xc3,0x26,0x59,0xa4,0x6f, 0x64,0xc7,0xf4,0xa7,0x70,0x11,0x9b,0x7e,0x58,0x25,0xc7,0xe0,0x40,0xfe,0xb4,0x9b, 0x19,0xc6,0x3c,0x99,0x4a,0xfb,0xb8,0xff,0x0,0x1a,0x47,0x0,0x64,0xf9,0x57,0xa7, 0xfe,0xda,0xe0,0x7f,0x3a,0x8c,0x7c,0x98,0xff,0x0,0x46,0xb9,0x62,0x7f,0xbf,0x3f, 0x1f,0xfa,0x15,0x3,0x44,0x8d,0x1b,0x93,0x81,0x6c,0x9,0x1f,0xf4,0xd0,0x83,0xf9, 0x62,0x9c,0xa0,0xed,0x26,0x48,0x62,0x45,0x3,0x9d,0xc2,0xa2,0x5b,0x79,0x19,0xf2, 0x6d,0x16,0x35,0xcf,0x42,0xd9,0xcf,0xe8,0x6a,0x56,0x81,0x94,0xfc,0xb1,0x5b,0x2a, 0x8f,0x5f,0xff,0x0,0x55,0x0,0x30,0xb2,0xc2,0xb,0x42,0x2d,0x80,0x3d,0x76,0x28, 0xcf,0xf3,0xa9,0x11,0xe3,0x91,0x40,0x12,0x23,0x13,0xd7,0xa5,0x31,0x9e,0x50,0x47, 0xef,0x6d,0xd1,0x48,0xe3,0x11,0x93,0xfd,0x69,0x36,0xcf,0xd3,0xce,0x40,0x3f,0xbc, 0xa8,0x46,0x7f,0x53,0x40,0x12,0x7c,0x8a,0x4a,0x99,0x1c,0x11,0xd8,0x27,0x1f,0xca, 0xab,0x99,0x99,0x24,0x29,0x8b,0x96,0x1e,0xd1,0x9c,0x7e,0x75,0x60,0x89,0xa,0x8f, 0xdf,0xb3,0x31,0x38,0xc8,0x50,0x7,0xf2,0xa6,0x4b,0x1e,0xd1,0x86,0x96,0x6f,0xa2, 0x9f,0xfe,0xb5,0x26,0x2,0x29,0x71,0x19,0x2c,0xb3,0xf2,0x7a,0x1e,0x9f,0xce,0x87, 0x8,0x50,0x6e,0x85,0xb0,0xc3,0x3,0x9a,0x54,0x42,0xcb,0x9c,0x5c,0x7d,0x4b,0x7f, 0xf5,0xe9,0x9e,0x46,0xf1,0x86,0x8f,0x6f,0x3f,0x7c,0xb7,0x5f,0xc2,0x84,0x34,0x73, 0x9a,0xa5,0xad,0xd6,0x97,0x78,0xfa,0x85,0xa1,0x78,0x22,0xb8,0x21,0x66,0xcc,0x87, 0x60,0x7e,0xce,0x40,0xed,0x8c,0xe6,0xb5,0x16,0x69,0x21,0x76,0xba,0x9a,0x20,0xc8, 0x62,0xfd,0xe8,0x8c,0x96,0xdd,0xe9,0xd7,0xe9,0xdc,0xd5,0xeb,0xab,0x8,0x24,0x56, 0xfd,0xda,0x80,0x46,0x18,0x92,0x7a,0x57,0x3f,0x27,0xda,0x2c,0x21,0x96,0xb,0xa0, 0x2e,0x24,0x1b,0x45,0xbe,0x9,0x6f,0x34,0x16,0x3,0x90,0x7,0xcc,0xc3,0x23,0xf3, 0xab,0x8c,0xba,0x9,0xae,0xc3,0xe0,0x99,0x2e,0x4c,0xef,0x70,0xda,0x8c,0x31,0x33, 0x1f,0x2d,0x14,0x96,0x50,0xbf,0xf0,0x10,0x71,0x4b,0x24,0x97,0x11,0x59,0x18,0xed, 0x4,0x71,0xd9,0xb7,0xc8,0x3c,0xd8,0x48,0x93,0x93,0x92,0x70,0x71,0x53,0x3c,0x57, 0x2b,0x64,0xa,0xc5,0x34,0x33,0xe0,0x12,0x60,0x88,0x84,0xe9,0xc8,0xc7,0xf8,0x55, 0x66,0xbf,0x92,0xee,0x37,0x89,0xa,0xad,0xd2,0x8e,0x15,0xa2,0xca,0xb7,0xf2,0x23, 0xf1,0xad,0x6d,0xa9,0x3d,0x7,0x59,0xdb,0x47,0x25,0xa1,0xb8,0xc4,0x73,0xb1,0x4c, 0x31,0x53,0x8d,0x98,0xed,0x8e,0xbf,0x88,0xa6,0xde,0x46,0x26,0xd0,0xa5,0x6b,0x3b, 0x7d,0xa6,0x19,0x3,0x60,0x4b,0xb8,0x90,0x3a,0x91,0x91,0x9e,0xfd,0x2b,0x3e,0xdd, 0x64,0xb8,0xbd,0x8d,0xbc,0x90,0xf2,0x6,0x2c,0xfb,0x54,0x8c,0x63,0xb6,0x47,0xb9, 0x15,0xad,0x6b,0x76,0xd3,0x99,0x21,0xf9,0x6d,0xc3,0xfc,0xc1,0x44,0x64,0x83,0xeb, 0xc9,0xc1,0xcf,0x14,0xde,0x8e,0xe3,0x8e,0xd7,0x2b,0xe9,0x90,0xde,0x6a,0x5a,0x75, 0xb2,0x19,0xe3,0x58,0x90,0xed,0xdd,0x24,0x20,0xbe,0x3d,0x89,0xab,0xb7,0x92,0xc3, 0xa6,0xdd,0x42,0xb2,0xda,0xcb,0x3b,0x3a,0x7c,0x92,0x95,0x5c,0x64,0x76,0xe3,0x2, 0xac,0x58,0xae,0xa3,0xf3,0x1f,0xf4,0x75,0x8f,0x27,0x68,0x45,0x3c,0xff,0x0,0x85, 0x54,0xb9,0x9e,0x69,0x53,0x75,0xf3,0x8b,0x68,0xa2,0x90,0xe5,0x56,0x13,0xf3,0x1e, 0x83,0x9e,0x9e,0xb5,0x2f,0x5d,0x81,0xb4,0xf5,0x23,0xf3,0xa5,0x9a,0xe2,0x9,0x64, 0xda,0xb1,0x21,0xf3,0x9b,0xc,0xc5,0x91,0x41,0x19,0x3b,0x49,0x38,0x1d,0x2b,0xa1, 0x5,0x1d,0x43,0x2f,0x2a,0xd8,0x20,0x86,0x38,0x3e,0xe3,0xb5,0x72,0xf0,0xdb,0xda, 0x4b,0x74,0xcd,0x65,0x25,0xc2,0x3b,0x29,0x6,0x27,0xb,0xca,0x9e,0xbf,0x7a,0xa5, 0x28,0x56,0x1,0x1b,0x34,0xd3,0xc3,0x17,0x0,0x5,0x1f,0x28,0xf4,0x2d,0x8e,0xd8, 0xf5,0xa1,0xae,0xc2,0xb9,0x67,0xc4,0x4a,0x16,0x18,0xe4,0xc,0xc8,0x32,0x77,0x30, 0x19,0xc2,0xe3,0x9e,0x7,0x5e,0x71,0xf9,0x55,0x7d,0x2e,0x78,0x22,0x80,0xcb,0x14, 0xde,0x6c,0x7,0x6,0x50,0x23,0x23,0x7,0x18,0xdd,0xb7,0xb7,0x6c,0xe2,0xa9,0x36, 0xa6,0x52,0x55,0x86,0x3d,0xab,0x1b,0xe0,0x84,0x2c,0xec,0x40,0xc7,0x5a,0x92,0xde, 0xde,0xf2,0xf2,0x77,0x7b,0x5c,0x80,0xc7,0x2d,0x32,0x30,0x41,0xe9,0xdb,0x19,0xa9, 0x71,0xd0,0x69,0x9b,0xf1,0xca,0x41,0x19,0x9c,0xed,0xec,0x2,0xf1,0x8f,0xad,0x4c, 0xd2,0x87,0x1f,0x2c,0x85,0x71,0xdc,0x2e,0x45,0x62,0x5b,0x5e,0x9d,0x32,0x56,0xb2, 0xbb,0x92,0x46,0x8d,0x46,0xe5,0x9b,0x5,0xb0,0x33,0xd0,0x8c,0x93,0x5a,0x1f,0x69, 0x53,0x9c,0x48,0xd8,0xce,0x32,0xb5,0x8b,0x4d,0x6e,0x68,0xb5,0x24,0x77,0x21,0x8f, 0xef,0xa4,0x70,0x47,0x3c,0xf,0xd3,0x8a,0x88,0xd,0xd9,0x2a,0xd7,0x9e,0xde,0x94, 0xf3,0x77,0xc,0x6d,0x80,0xf3,0x93,0xdc,0x88,0x19,0xbf,0x3c,0xe,0x29,0xdf,0x68, 0xdc,0xe,0xcf,0x35,0xd4,0xff,0x0,0x75,0x8,0xfe,0x74,0x80,0x66,0xd9,0x11,0x79, 0x49,0x64,0x6e,0xf8,0x62,0xbf,0xc8,0xd2,0x15,0x66,0x1c,0x41,0x38,0x3e,0xf2,0x9c, 0x7e,0xb4,0xd6,0x75,0x1c,0xb,0x5b,0x83,0xfe,0xf7,0x1f,0xae,0x69,0xd8,0xc8,0xc7, 0xd9,0xdf,0x3,0xd4,0xf5,0xfd,0x6a,0x40,0x89,0x63,0x8d,0xd8,0xff,0x0,0xa3,0x2e, 0x47,0x7f,0x30,0x8a,0x7b,0x43,0x85,0x52,0x91,0x20,0xdb,0xcf,0x2e,0x49,0xa6,0xe5, 0xd5,0x81,0x16,0xbd,0x78,0xe5,0xf1,0xfe,0x34,0x8d,0x34,0xc4,0xd,0xf6,0xa8,0x8a, 0x7b,0x99,0x41,0xfe,0x94,0xd,0x11,0xc4,0xf9,0x46,0x62,0x2d,0xc6,0x38,0xc8,0x1c, 0xd3,0x96,0x5c,0x48,0xbb,0x1e,0xdb,0xe6,0x18,0x20,0x9e,0x69,0xa6,0x7c,0x2,0x15, 0xac,0xd7,0xfe,0x7,0x9f,0xcc,0x62,0xab,0xac,0xb3,0xa9,0x3b,0x25,0xd3,0xd4,0x13, 0xfc,0x24,0xe7,0xf4,0xaa,0x43,0x3b,0xf,0xd,0x63,0x17,0x38,0x39,0x1f,0x2f,0xaf, 0xbd,0x6f,0x57,0x35,0xe1,0x37,0xdd,0xf6,0xc1,0xb8,0x31,0x1b,0x33,0x8e,0x9f,0xc5, 0x5d,0x2d,0x7a,0xb8,0x6f,0xe1,0x23,0x92,0xaf,0xc6,0xca,0x1a,0x97,0xfc,0xb2,0xfc, 0x7f,0xa5,0x67,0xf4,0x19,0x60,0x0,0xab,0xda,0xa3,0x15,0x30,0xff,0x0,0xc0,0xbf, 0xa5,0x62,0x5f,0xdd,0x47,0x6d,0x67,0x2c,0xd3,0x36,0x11,0x54,0xe7,0xfc,0x3e,0xbd, 0xbf,0x1a,0xe6,0xaf,0x2b,0x4d,0x9a,0x53,0xd8,0xa5,0xae,0x5c,0x35,0xcb,0x47,0xa6, 0x40,0x71,0x25,0xc7,0xc,0xcb,0xfc,0x9,0xdc,0xfe,0x3c,0x81,0xf8,0xd3,0xa2,0xb7, 0x78,0xe2,0x48,0xe3,0xbb,0x95,0x36,0xc,0x66,0x35,0x50,0x0,0xf4,0x1c,0x7a,0x62, 0xa3,0xd3,0x2d,0x26,0xc4,0x97,0x53,0x8f,0xdf,0xcf,0x87,0x61,0xfd,0xd1,0xd9,0x41, 0xf4,0x1f,0xcf,0x35,0xa6,0xb1,0xba,0xc2,0xa1,0xb6,0x82,0x49,0x24,0xd7,0x33,0xbb, 0x66,0x9b,0x19,0xe3,0x4d,0xf3,0x33,0x9b,0x89,0x1f,0xbe,0x1d,0x80,0xcf,0xe9,0x53, 0x36,0x9f,0x1a,0x20,0x26,0x79,0xce,0xdf,0xe1,0x12,0x70,0x3f,0xa,0xb9,0xb0,0x2f, 0x21,0xd4,0x90,0x3a,0x53,0x4a,0xc9,0xb3,0x68,0x60,0xce,0xdc,0xe7,0xd0,0x51,0x60, 0xb9,0x12,0xec,0x4c,0x10,0x1b,0x38,0xe4,0xd4,0xbf,0x29,0x84,0xe1,0x48,0x3e,0xf4, 0x9e,0x5a,0x9c,0x2,0xe5,0x89,0xe8,0x71,0x43,0xc2,0x18,0xe3,0x69,0x66,0xf5,0xce, 0x29,0x8a,0xe3,0x49,0x66,0x42,0x40,0xdd,0xce,0x71,0x9e,0x94,0xd8,0xe4,0xd9,0x17, 0x3f,0x28,0x27,0x27,0x71,0x19,0xa9,0x1a,0xd0,0x84,0xf9,0xcf,0x1e,0x9b,0xbf,0xfa, 0xd4,0xe4,0x53,0x8f,0x97,0x0,0x76,0xa2,0xcc,0x4,0x47,0x8d,0xb2,0x54,0xa9,0xa9, 0x23,0x38,0x18,0x1b,0x49,0xfa,0x54,0x6c,0xd2,0xab,0x0,0xe,0x4f,0x60,0x7a,0x53, 0xbc,0xd1,0x90,0x19,0x83,0x30,0x3c,0xed,0xed,0x46,0xdb,0x89,0x82,0x92,0x72,0xb8, 0x0,0x7a,0x81,0x49,0xe7,0x7c,0xc1,0x40,0x62,0x3d,0x5,0x5,0x91,0xa4,0x63,0xbb, 0xbd,0x3d,0x72,0xdf,0xc4,0xe0,0x74,0xe9,0x4d,0x7,0x41,0x19,0x49,0x7,0xe4,0x24, 0xfa,0x13,0x8a,0x6c,0x62,0x62,0x3f,0x7b,0x19,0x18,0xef,0x9a,0x91,0x95,0x81,0xda, 0xa0,0xb1,0xef,0x9a,0x64,0xbc,0x30,0xf3,0x23,0x18,0xed,0x83,0x4e,0xc0,0xc,0xbb, 0x88,0x52,0x31,0x93,0xd7,0x3d,0x29,0x6,0x36,0x10,0x36,0xe4,0x1c,0x12,0x7a,0x9a, 0x72,0xa9,0x72,0xc7,0xb0,0xe9,0x9a,0x72,0x23,0x67,0x20,0x29,0xfc,0x3a,0x52,0x4b, 0x51,0xe,0x55,0x52,0x84,0x82,0xbe,0xc3,0x1c,0xd3,0x19,0x4b,0xb2,0x31,0x6c,0xe3, 0xb5,0x48,0xa6,0x44,0xcf,0x28,0x7,0x73,0x8a,0x79,0x19,0x4c,0x92,0x9,0xea,0xd, 0x53,0x88,0x10,0xba,0x96,0x6c,0xe4,0xf0,0x3b,0x8a,0x55,0x6c,0xb0,0x3,0x71,0xfe, 0x94,0xa3,0x90,0x72,0xdf,0x5c,0x54,0x65,0x53,0x3f,0xeb,0x0,0xfa,0xd4,0xbd,0x0, 0x90,0x94,0xc,0x72,0x49,0x22,0xa3,0x27,0x74,0x44,0xa7,0x5e,0xd9,0xa7,0x2,0xc, 0x6c,0x77,0x17,0x55,0xf4,0xa4,0x38,0x25,0x4a,0xe4,0x63,0xa8,0xa6,0x2,0xa9,0x3b, 0x17,0xe5,0x1b,0xb1,0xce,0x69,0xce,0x8a,0xc8,0xa,0x6c,0x7,0xd0,0xd4,0x66,0x78, 0xa2,0xce,0xf7,0x5d,0xe7,0xa2,0xe4,0x66,0x95,0x24,0x89,0x93,0x7b,0x10,0xf,0x7e, 0xd4,0x5,0x89,0x16,0x34,0x62,0x18,0x85,0xc8,0xf4,0xa7,0x94,0x4,0x63,0x23,0x9a, 0xad,0xf6,0xc4,0x13,0x8,0x8c,0x6f,0xb5,0xbf,0x8b,0x6f,0x2,0x9c,0x26,0xf2,0xc9, 0x2d,0x8d,0xa3,0xa1,0xec,0x68,0xba,0x2,0x70,0xc8,0xb9,0xe5,0x33,0xdf,0x14,0x99, 0x2c,0x7d,0x2a,0x18,0xa5,0x89,0xbe,0x65,0x40,0xf9,0xf4,0xa9,0x11,0xdf,0x9c,0xc6, 0x47,0xa7,0x18,0xc5,0x3b,0x88,0x78,0xb,0xbb,0xa1,0xc9,0xee,0x3b,0x56,0x25,0xeb, 0x5c,0xdd,0x5f,0x24,0x76,0xd0,0xc8,0x66,0x48,0xb7,0xab,0xc6,0x40,0xd9,0xb8,0xfb, 0xf1,0xd0,0x63,0xf1,0xad,0xad,0xcf,0x91,0x95,0x1d,0x7a,0xee,0xeb,0x5c,0xfd,0x9c, 0xa9,0x77,0xfd,0xa3,0x73,0xb5,0xe5,0xdd,0x36,0xcd,0x8a,0x78,0x21,0x47,0x1f,0x87, 0x39,0xa6,0x90,0xb,0xe5,0xdf,0x4d,0x3,0x45,0x74,0xd2,0xb3,0x6e,0x1f,0xbc,0x66, 0x42,0xa0,0x7b,0x1,0xd4,0xd2,0x26,0xa7,0x6c,0x96,0xd1,0xdb,0xb4,0x73,0x2c,0xe9, 0x29,0x11,0x20,0x89,0x98,0xe7,0x27,0x7,0xdf,0xa9,0xe9,0x9a,0x7c,0x46,0x2b,0x7b, 0x75,0x93,0x74,0x1e,0x62,0x1f,0x90,0x21,0x1f,0x29,0x3d,0xbd,0xfa,0xf7,0xa4,0x9a, 0xce,0x61,0x6d,0x24,0xf1,0x44,0x14,0xc4,0x73,0xe6,0x2c,0x9b,0x5b,0x1d,0xcf,0x15, 0x60,0x5b,0x8b,0xed,0x16,0xba,0x78,0x8a,0xe2,0x4c,0x2b,0x12,0xab,0x24,0x7c,0x32, 0x93,0x96,0xe7,0x3d,0x38,0xaa,0xf3,0xdd,0x6a,0x6b,0x60,0x91,0x41,0x22,0x48,0x48, 0xf9,0xae,0x4,0x27,0x2a,0xb8,0x7,0x93,0x9e,0xbc,0xf5,0xa8,0xa1,0x8f,0x32,0x6, 0x30,0xfd,0xb1,0xd9,0x30,0xb1,0x96,0x23,0xd,0xd4,0xe7,0x24,0xfa,0xf,0xf2,0x6a, 0x6b,0xcf,0xb5,0x5d,0x2c,0x71,0x4b,0x71,0xe5,0x29,0xcb,0x32,0x64,0x5,0xe0,0x8c, 0xe,0x3f,0xcf,0x1d,0xe9,0x8,0xcd,0x74,0xb3,0x76,0x54,0x4b,0xc6,0x17,0x1b,0x3f, 0x7a,0x24,0x46,0x20,0x9e,0x39,0xe7,0x83,0xd6,0xb6,0x5e,0xf3,0x4f,0x30,0xa0,0x9a, 0xe7,0x2d,0x90,0x0,0x40,0x77,0x3,0x8e,0x81,0x40,0xcf,0xe9,0x55,0x66,0x82,0x7b, 0xad,0x4d,0x3e,0xc1,0x73,0x1f,0x9e,0xaa,0x3c,0xc9,0x7f,0x81,0x31,0xfc,0xfa,0x9e, 0x3e,0xb5,0x79,0xf4,0xe9,0x3e,0xcc,0xfb,0x65,0xcd,0xc0,0x19,0x12,0x2c,0x61,0x77, 0x1f,0xa7,0x4f,0xf3,0xd6,0x86,0xae,0x1e,0x84,0x31,0x58,0xbe,0xa1,0x68,0xdf,0x6c, 0x47,0x89,0x4c,0x9e,0x64,0x40,0xb0,0x32,0x1,0x8c,0x65,0x8f,0x41,0xc7,0x6e,0xd5, 0x57,0x50,0xb1,0x16,0x76,0xc9,0xe4,0xde,0x79,0x65,0x98,0x20,0x4b,0xb2,0x36,0xc8, 0xf,0x50,0x9,0xc7,0xe9,0x4f,0x9e,0xee,0xce,0xe3,0x4e,0x69,0x61,0x99,0xda,0x65, 0x8f,0x2a,0x64,0x7c,0x10,0x71,0xd3,0xdf,0xa7,0x61,0x59,0x8b,0x6f,0x25,0xcd,0xda, 0xc3,0xb3,0xcd,0x96,0x54,0xc1,0x2f,0x21,0x66,0x60,0x3a,0xf2,0xc7,0x38,0xe6,0xae, 0x31,0xb8,0x1a,0x51,0xe9,0xf6,0xfa,0x6c,0xf,0x23,0xdb,0xf9,0xd7,0x13,0x90,0x8b, 0xb1,0x8f,0xa6,0x76,0x8e,0x78,0x0,0x8e,0xb4,0xb1,0xcf,0x7c,0xd6,0xb6,0xf0,0xda, 0xc9,0x25,0xc0,0x73,0x85,0x72,0xf,0x23,0xa9,0xcb,0x7a,0xc,0x1a,0xad,0xaa,0x5d, 0xfd,0x86,0xf6,0xb,0x2,0x91,0x2d,0xb8,0x2b,0x24,0xb8,0x55,0x52,0xdc,0xf4,0x5f, 0x4e,0x9d,0x73,0x51,0xdf,0xdf,0x41,0x77,0x79,0xfb,0xab,0x8f,0x21,0x4a,0xf0,0xb9, 0x20,0xb3,0x77,0x3f,0x29,0x38,0xed,0x59,0xdd,0xdc,0xd,0x23,0xa2,0x5a,0xfd,0x9f, 0x11,0xbc,0x91,0x4c,0x6,0xef,0x39,0x18,0x83,0x9f,0x5c,0x1e,0x31,0xfa,0xfb,0xd5, 0xd,0x26,0xf,0xf4,0xb,0x62,0x25,0xbb,0xfd,0xe6,0xe2,0x7c,0xb2,0xdb,0x40,0xc9, 0xc6,0x71,0xfd,0x6a,0xbc,0x1a,0x94,0xd6,0x86,0x51,0xe4,0xc7,0x3b,0xcb,0xf3,0x99, 0x4c,0x8c,0xcc,0x80,0xe,0x87,0x19,0xe0,0x7b,0xe2,0xb5,0x74,0xec,0x5b,0x69,0xb0, 0x80,0x2e,0x24,0xde,0xa1,0xb0,0xb1,0xf0,0x33,0xf8,0x54,0x54,0x56,0x2d,0x32,0xdf, 0x91,0x16,0xe1,0x84,0xb9,0x62,0x3a,0x95,0x98,0xfe,0xbf,0x35,0x39,0xa1,0x48,0x18, 0xb2,0xa3,0xf3,0xd7,0x74,0x8c,0x4f,0xea,0x6a,0x35,0x94,0xae,0xf1,0x24,0x17,0x5, 0x4f,0xdd,0xf9,0x31,0x8f,0xc6,0xa0,0x68,0x23,0x70,0xc5,0xe1,0xbd,0x4,0xf6,0x33, 0x39,0x1f,0x96,0x78,0xa8,0xbd,0xd0,0xc9,0x99,0xcc,0x43,0x88,0x1c,0xe7,0xfd,0xbe, 0x29,0x1d,0x24,0x4,0x9f,0x2e,0x23,0x19,0x1f,0x70,0xb6,0x4f,0xf2,0xa7,0x8b,0x4d, 0xbb,0x15,0x22,0x60,0xa0,0x67,0xe6,0x72,0x73,0xf9,0x9a,0x77,0x94,0xe3,0x27,0xc8, 0x0,0xfa,0x92,0xd,0x24,0x98,0x10,0xc7,0x1b,0x3,0xf3,0x43,0x6f,0x1a,0xe3,0x39, 0xdb,0x93,0xfc,0xa9,0x51,0xe4,0x56,0x2a,0xb7,0x10,0xa8,0x3d,0xf6,0x9c,0x8a,0x74, 0x76,0xac,0xab,0xb8,0x44,0x9b,0xc9,0xfe,0x23,0xc7,0xe9,0x4f,0x61,0x21,0x97,0x6e, 0x23,0x51,0xb7,0x92,0xa9,0xfa,0x73,0x40,0x11,0x97,0x97,0x84,0x17,0x6a,0xc7,0xbb, 0x32,0x54,0x6b,0x38,0x2d,0x8f,0xb4,0x17,0xc7,0xa2,0xe0,0x7f,0x2a,0xb0,0xf1,0xba, 0xb0,0x64,0x91,0x3,0x63,0x1,0x59,0x7a,0xd0,0xb1,0x4b,0x9e,0x67,0xda,0x3d,0x0, 0x7,0xfa,0x52,0x68,0x44,0x5e,0x69,0x1c,0x13,0x2b,0x13,0xd0,0x28,0x23,0xfa,0x52, 0xee,0xc3,0x6,0x74,0x97,0x27,0x80,0x49,0x20,0x53,0xfc,0xb6,0x39,0x22,0x67,0x6f, 0x6e,0x94,0xe4,0x80,0x32,0x94,0x6f,0x33,0x3d,0xc1,0xc9,0xa2,0xc3,0x21,0x96,0x23, 0x80,0xc5,0x5d,0x54,0x67,0x3b,0x5b,0xaf,0xe7,0x51,0xa4,0xc,0x17,0x70,0x56,0xe4, 0xf5,0x67,0x1f,0xfd,0x7a,0xb3,0x1c,0x2d,0xbb,0xc,0xae,0xc3,0xd3,0x24,0x52,0x34, 0x11,0x13,0xfe,0xad,0x5b,0x9e,0xa4,0x93,0xfc,0xe8,0xb0,0x5c,0x67,0x94,0xdb,0xa, 0x94,0x84,0x8f,0x77,0xff,0x0,0xeb,0x52,0xc4,0x40,0xc,0x3,0xdb,0x21,0x3c,0x7c, 0x83,0x9f,0xe6,0x2a,0x60,0x8a,0x83,0x2a,0x91,0xa9,0xce,0x30,0x5,0x22,0xab,0x9, 0x59,0x8b,0xa0,0x1d,0x86,0x29,0xd8,0x57,0x21,0x69,0x7c,0xa9,0x2,0xb5,0xd8,0xdd, 0x8e,0xa1,0x33,0xfd,0x69,0xe9,0x2e,0x9,0xcc,0xec,0x47,0x6d,0xa8,0x3f,0xc2,0xa6, 0x62,0x46,0xa,0xb0,0x23,0xb8,0x34,0x8e,0xdf,0xba,0x72,0x5d,0x97,0x8f,0xe1,0xa2, 0xc0,0x40,0xe5,0xa5,0x62,0xc,0xd2,0x5,0xf4,0x2a,0x33,0xf8,0x71,0x4d,0x31,0x95, 0x3b,0x51,0x6f,0x1b,0xdc,0xb8,0x19,0xfc,0xf1,0x48,0x97,0x5,0xa2,0x46,0x9,0x23, 0x21,0xea,0xc4,0xe4,0xfe,0x55,0x2f,0xee,0xe4,0x3c,0xc3,0x21,0x1e,0xac,0x48,0xfe, 0xb4,0xc0,0x81,0xe0,0x2e,0x40,0x6b,0x7b,0x85,0xef,0x93,0x28,0x19,0xfc,0x89,0xa5, 0x7b,0x65,0x50,0x3f,0xd1,0x97,0x77,0xfb,0x73,0x93,0xfe,0x35,0x3f,0x93,0x13,0xa6, 0x56,0x3d,0xa3,0xdd,0xb1,0x49,0xf2,0xbc,0xbf,0xea,0xd5,0x54,0x2e,0x1,0xf5,0x34, 0x58,0xa,0xe2,0xda,0x25,0xf9,0x96,0x18,0x3,0x75,0x39,0x7c,0xff,0x0,0x4a,0x74, 0x5f,0xbb,0x60,0xdb,0x6d,0xd0,0x7a,0xaa,0x73,0xf9,0xf7,0xa9,0x59,0x6,0x54,0x91, 0x18,0xed,0xed,0x4c,0x17,0x7,0x7e,0xcd,0xf1,0x8c,0x67,0xc,0x31,0xc7,0xd2,0xa4, 0x64,0x85,0xf7,0x36,0x55,0xd4,0xfb,0x85,0xc1,0xfe,0x75,0x1b,0x4b,0x26,0xe2,0x4, 0xb2,0xfd,0x36,0xe,0x3f,0x13,0x49,0xbb,0x39,0x6f,0xb4,0x3,0xee,0x17,0x93,0x4b, 0xe6,0x33,0x20,0xf3,0x24,0x70,0x49,0xe8,0x5,0x30,0x21,0x9d,0x66,0x61,0x91,0x2c, 0xe1,0x40,0xe4,0x2a,0xa8,0xfc,0x88,0xe6,0xab,0xa5,0xb4,0x7b,0xb2,0xd7,0x57,0x48, 0x4f,0x41,0xe7,0x0,0x4d,0x59,0x2c,0x46,0x4f,0xef,0xb6,0x83,0xfd,0xff,0x0,0xfe, 0xb5,0x42,0xa4,0xa1,0x2c,0x50,0xaf,0x7,0x93,0xd7,0xf3,0xa9,0x77,0x18,0x3d,0x9a, 0x49,0xc3,0x31,0x91,0x7,0x50,0xef,0xb8,0x9f,0xad,0x50,0xbf,0x8c,0x58,0xeb,0x7a, 0x55,0xcc,0x50,0xae,0xd9,0x3f,0xd1,0x1c,0x86,0xe7,0xe6,0xc1,0x5f,0xd4,0x1a,0xd8, 0x42,0x59,0x50,0x94,0x24,0x9e,0xb9,0x3d,0x6a,0xae,0xb5,0x69,0x3d,0xe6,0x9d,0x22, 0xc0,0xa8,0x25,0x18,0x78,0x4a,0xf2,0x43,0xaf,0x23,0x14,0x44,0x19,0x79,0x23,0x72, 0xd8,0x30,0x29,0xc1,0xc0,0xdc,0xfd,0xa9,0x85,0x32,0xe4,0x98,0xa2,0x72,0x4e,0x7, 0xcc,0x40,0xfd,0x68,0x8a,0x58,0xae,0xad,0x60,0x9c,0x24,0xa4,0x49,0x1a,0xb2,0xa9, 0x18,0xc6,0x79,0x19,0xfc,0x8,0xa9,0xc4,0x48,0xaa,0xb,0x29,0xdc,0x3d,0xff,0x0, 0xa5,0x5d,0x89,0x21,0x91,0x59,0x50,0x61,0x63,0xd,0x9e,0x81,0x54,0x8f,0xe5,0x4e, 0xf3,0xa7,0xde,0x30,0xf0,0xa6,0x7b,0xbf,0x27,0xf9,0xd3,0x8c,0x2c,0xe3,0xee,0x80, 0x9,0xe4,0x1e,0x94,0xe6,0x50,0x17,0x62,0xb4,0x29,0x9e,0xbb,0x4e,0x29,0x8,0x8d, 0xcb,0xbb,0x67,0xed,0xd1,0xa9,0xf4,0xb,0xc7,0xf3,0xa6,0xa3,0xa8,0x18,0x7b,0xbd, 0xfc,0xf5,0x55,0xc7,0xf2,0xa9,0xe4,0x68,0xd2,0x35,0x42,0xe0,0xe3,0xbe,0x6a,0x37, 0xb9,0x8c,0xf,0xf5,0xb8,0xf4,0xc0,0xcd,0x52,0x43,0x9,0x39,0x22,0x4d,0xd7,0xc, 0x40,0xc7,0xb,0x8f,0xe9,0x4c,0x3f,0x32,0xed,0xdf,0x38,0xcf,0x6d,0xc4,0x1a,0x9c, 0xcd,0x19,0x3,0xf7,0x8e,0xc4,0x7f,0x72,0x3f,0xfe,0xb5,0x47,0xd6,0x4d,0xc0,0x4c, 0xf,0xae,0xca,0x1a,0x10,0x81,0x57,0x76,0x7c,0xb9,0x48,0xe9,0xf3,0x4a,0x4f,0xf3, 0x34,0xc9,0x10,0xbf,0xca,0x2d,0xc9,0x19,0xff,0x0,0x9e,0xd8,0xcf,0xe6,0x4d,0x59, 0xf,0xd7,0xf7,0x72,0x9f,0xaf,0x19,0xfd,0x69,0xb2,0x1c,0xf,0x96,0x16,0x2c,0x7a, 0xd,0xd9,0xfc,0xf9,0xa9,0xb3,0xb,0x11,0x98,0x3e,0x4e,0x2d,0x6d,0xf1,0x8f,0xbb, 0xbb,0x39,0xfd,0x2a,0x28,0x23,0x91,0xb0,0xc6,0xde,0x4,0x5e,0x81,0x42,0xe,0x3f, 0x13,0x53,0xa9,0x95,0x72,0x5,0xba,0x6,0xfe,0xf1,0x60,0xbf,0xc8,0x52,0xfe,0xf7, 0x0,0x9f,0x2c,0x1c,0xf3,0xfc,0x43,0xfa,0x53,0xb0,0xc5,0xf2,0xf3,0x8c,0x10,0x30, 0x73,0xd3,0x8f,0xe7,0x4c,0x58,0xdc,0x36,0xe3,0x37,0x24,0xf6,0x4c,0xf,0xe7,0x52, 0x2a,0x30,0x24,0xfc,0x8a,0xdf,0x4c,0x8f,0xe7,0x4b,0xfb,0xcc,0x1f,0x99,0x3d,0xf0, 0xbf,0xfd,0x7a,0x2c,0x82,0xe3,0x83,0x12,0x40,0xf3,0xc1,0xfa,0x28,0xfe,0xb4,0x8d, 0x19,0x2a,0x4e,0xf7,0x1e,0xe3,0xff,0x0,0xad,0x4d,0x25,0x95,0x37,0x19,0x76,0xaf, 0xae,0xda,0x4,0xa9,0x20,0xc0,0x99,0x9b,0xf4,0xa2,0xc2,0x19,0xe5,0xb1,0xdc,0x4b, 0x30,0x1d,0x88,0xc8,0xa5,0xd9,0x1b,0x28,0x39,0x66,0x51,0xd7,0x27,0xfa,0x53,0xc0, 0x52,0x71,0xfb,0xcf,0xa9,0x3c,0x52,0x15,0xb,0xf3,0xf,0xa6,0x29,0x24,0x17,0x10, 0x8,0x90,0x83,0xb5,0x1,0x3d,0xb6,0x8a,0x97,0x6c,0x3c,0xb2,0xaa,0x92,0x46,0x8, 0xa8,0x7c,0x91,0x90,0xc0,0x1,0xf5,0xa9,0xe3,0x54,0x23,0x72,0x5,0xc7,0x73,0x4d, 0x5c,0x6,0x64,0x6d,0x1c,0x28,0x3,0xd3,0x14,0xc8,0xf6,0x6f,0xe0,0x60,0x7b,0x9a, 0x90,0xe1,0x8f,0xa,0x83,0xf0,0xa1,0x23,0xe7,0xa8,0x7,0xda,0x87,0xb8,0xa,0x24, 0x52,0xa4,0xa8,0xef,0x8e,0xf4,0x82,0x50,0x7a,0xff,0x0,0x2c,0x53,0xb7,0x5,0x18, 0xcf,0x1d,0xe9,0xc1,0xb6,0x70,0x9,0x3f,0x5a,0x62,0x20,0x7c,0xe0,0x95,0x56,0xc8, 0xf5,0xc6,0x29,0x85,0xd8,0x95,0x4d,0x8d,0xd7,0xef,0x11,0x80,0x2a,0x77,0x2b,0x9e, 0xe,0x7d,0x40,0x14,0xc4,0x5,0xc9,0x53,0xd3,0x39,0x0,0x8e,0x82,0x86,0x86,0x86, 0xab,0x6e,0x3b,0x7a,0x37,0xa7,0xf5,0xaa,0x77,0x96,0xef,0x3a,0xab,0x40,0x13,0xce, 0x8c,0xee,0x8d,0x98,0x74,0x6f,0x43,0xec,0x46,0x41,0xab,0xea,0x8e,0x8,0xc1,0xdc, 0x7,0x1c,0xf5,0xa6,0xec,0x11,0xa0,0x8f,0x8c,0xf5,0x23,0xbd,0x4d,0x98,0xc8,0x2d, 0x35,0x68,0x27,0x8c,0x93,0xbd,0x65,0x1f,0x2c,0x91,0x80,0x7e,0x56,0x1d,0xb8,0xfc, 0x2a,0xae,0xa9,0x6a,0x2f,0x2e,0x23,0x70,0xa2,0x30,0xa8,0x4b,0x48,0xeb,0xc3,0xe, 0x38,0x38,0x20,0xfe,0x34,0xdb,0xd9,0x5b,0x4c,0x73,0x76,0x72,0xf0,0xb7,0xfa,0xd0, 0xa3,0xe6,0x3,0xfb,0xd8,0xcf,0x27,0xd7,0xdb,0xe9,0xcb,0xa0,0xbd,0x32,0xae,0x5a, 0x12,0x8a,0x41,0xe1,0xba,0x30,0xfa,0xf4,0xad,0x13,0xea,0x84,0xd1,0x80,0x65,0x36, 0xed,0x9b,0x3,0x6a,0x25,0x94,0x98,0x81,0x3f,0x3b,0x2e,0x3b,0xae,0x48,0xa4,0x27, 0x50,0xb1,0xd4,0x60,0xb8,0x99,0x66,0x6d,0x85,0x7c,0xcc,0x90,0x46,0xd3,0xc7,0x6a, 0xd1,0xb2,0xb7,0xd2,0x9a,0x76,0x9d,0x7c,0xa8,0x65,0xdc,0x49,0xe,0x79,0x19,0x39, 0xe3,0x23,0xd2,0xad,0xdd,0xc7,0x6d,0x1a,0x60,0xba,0xb4,0x52,0x67,0xe7,0x2c,0xe, 0xd,0x57,0x31,0x29,0x58,0x93,0xed,0x71,0xdc,0xc2,0xd1,0xda,0xdc,0x98,0xa4,0x23, 0x1,0xb1,0xca,0x93,0xdf,0x15,0xce,0x4b,0xc,0xb6,0x31,0x49,0x6f,0x75,0xf6,0x89, 0x5d,0x4e,0xed,0xcd,0x23,0xaa,0x11,0xeb,0xfc,0xaa,0x5b,0xcb,0x23,0x71,0x71,0x6f, 0x1d,0xa2,0xa9,0x67,0x2d,0x89,0x8c,0xbc,0x63,0x8f,0x4f,0x4a,0xd0,0x7d,0x2e,0xec, 0xb2,0x36,0xf8,0x67,0xd8,0xb8,0x1b,0xcb,0x28,0x7,0xd4,0xc,0x9c,0xd0,0x9d,0x80, 0xa5,0x69,0x6d,0x67,0x77,0x6d,0xbc,0xdb,0x15,0x61,0xd4,0x9,0x98,0xfe,0x20,0xe7, 0xf9,0xd4,0xed,0xa4,0x20,0xb5,0x90,0x34,0x80,0x6f,0x3,0x24,0xa6,0x6,0x1,0xe3, 0x23,0x38,0x34,0x35,0x8e,0xa2,0xf3,0x62,0x9,0xad,0x63,0xc7,0xcb,0xb4,0xc,0x74, 0xf5,0xe0,0xd3,0x9a,0xcf,0x51,0x96,0x2f,0xb2,0x5e,0x47,0x6e,0x49,0xe5,0x25,0x43, 0xf7,0x87,0xa7,0x14,0x9b,0xe,0x5b,0xe8,0x52,0xb4,0x12,0x58,0xc9,0x34,0xaa,0x16, 0x68,0xa4,0xf4,0x5c,0x0,0xc3,0xa6,0xf,0xa7,0xb5,0x59,0xb1,0x92,0x19,0x2d,0xe6, 0x92,0xcd,0xcd,0xab,0x97,0xda,0x23,0x75,0xe0,0x1e,0x3a,0x1e,0x94,0x5c,0xc0,0x96, 0xf1,0xc5,0x6f,0x22,0x24,0x20,0x8d,0xc1,0xd4,0xe3,0x3f,0x81,0xa8,0xaf,0x1b,0xec, 0x43,0x6e,0xc0,0x4c,0x83,0x71,0x48,0x8e,0xee,0x38,0xea,0xbd,0x3f,0x5a,0xad,0xc7, 0xcb,0xca,0x52,0xbc,0x8e,0x59,0x64,0x9,0x77,0x23,0x46,0xc1,0x8a,0xb4,0xca,0x77, 0x75,0xf7,0x18,0xab,0xf6,0x77,0xef,0xc,0xcb,0x67,0xa8,0x5e,0x9f,0x38,0x0,0x61, 0x99,0x62,0xdc,0x26,0x51,0xdc,0x10,0x3a,0xfd,0x6a,0x5,0x3b,0x32,0x16,0x10,0x90, 0xbf,0x2a,0x24,0x84,0x8e,0x7f,0x3e,0x33,0xf8,0xd5,0x5b,0xd8,0xcb,0x2a,0xc3,0x24, 0xe2,0x39,0x43,0x6,0x51,0x2,0xe3,0xca,0x3d,0x43,0x6,0xed,0x43,0x85,0xd0,0xe3, 0xb9,0xd2,0xc7,0x71,0x14,0xa1,0x9d,0x2f,0xae,0x1f,0x7,0x4,0xaa,0x15,0x1f,0x9e, 0x29,0x9b,0xd5,0x64,0x23,0xfd,0x33,0x91,0x90,0x50,0x37,0xcd,0xf8,0x9e,0x2b,0x2b, 0x4b,0xd6,0xa4,0x9d,0x5a,0x1b,0xed,0x52,0x48,0xee,0x51,0xb0,0x51,0xa0,0x3,0x70, 0xec,0xc1,0x80,0xe8,0x6b,0x50,0x4e,0x25,0x97,0x29,0x7b,0x7c,0x50,0x1c,0x12,0xa9, 0xfc,0xf2,0xa6,0xb0,0x96,0x8e,0xc5,0x86,0xfd,0xe8,0x14,0x25,0xe3,0xfa,0xe4,0x67, 0xfa,0xd3,0xc,0x82,0x36,0xd8,0x96,0x57,0x2c,0xf,0x62,0x3f,0xc4,0xd3,0xa4,0xd8, 0xa1,0xa5,0xdf,0x79,0x26,0x3b,0x46,0x98,0xfd,0x0,0x14,0xd2,0x3c,0xc8,0x83,0xac, 0x3a,0x83,0x67,0xf8,0x77,0x6d,0x6c,0x7d,0x9,0xa9,0x65,0x5a,0xc8,0x14,0x12,0xa7, 0xfd,0x7,0x6b,0x67,0xbc,0xbf,0xfe,0xba,0x6f,0x97,0x26,0xdc,0x7d,0x8e,0xdf,0x8f, 0x59,0x49,0x3f,0x96,0x2a,0x48,0xe1,0x2,0x3e,0x2c,0x6e,0xbb,0xf1,0x2b,0x1,0xf9, 0xfc,0xd5,0x5a,0x7b,0x5d,0xa4,0x3f,0xf6,0x5a,0xb3,0x9e,0x81,0xdc,0x35,0x20,0x52, 0x44,0xce,0x81,0x53,0xfd,0x4d,0x92,0x31,0xf5,0x6f,0xfe,0xb5,0x42,0x36,0x82,0xb, 0x49,0xa7,0x2f,0xfb,0xbd,0x68,0x10,0x48,0x14,0x81,0xa7,0xd9,0x9f,0x65,0x6c,0x1f, 0xd0,0x1a,0x71,0xb6,0x9d,0xe3,0xc0,0xb5,0xb5,0x40,0x3d,0x73,0xc7,0xe9,0x4e,0xc2, 0x6c,0xe9,0xfc,0x28,0xb8,0x6b,0xce,0x54,0x92,0x13,0x95,0xe9,0xfc,0x55,0xd2,0x57, 0x37,0xe1,0x43,0x27,0xfa,0x5a,0xc9,0xb7,0x70,0xd8,0x3e,0x53,0x91,0xfc,0x55,0xd2, 0x57,0xab,0x86,0xfe,0x12,0x39,0xaa,0xfc,0x6c,0xcb,0xd6,0x3a,0xc1,0xc9,0x1f,0x7b, 0xfa,0x57,0x24,0xb2,0x7f,0x6d,0x6a,0x4a,0x7,0xcd,0x67,0x6b,0x26,0xe3,0xc7,0x12, 0x38,0x1c,0xf,0xc0,0xff,0x0,0x4a,0xda,0xf1,0xa5,0xe4,0xd6,0xd6,0x96,0xf1,0x5a, 0x9c,0x5d,0x4e,0xcd,0x1c,0x67,0xd3,0x38,0xc9,0xf6,0xe3,0xbd,0x62,0xdb,0x95,0xd3, 0xad,0x22,0xb7,0x8a,0xf6,0xdc,0x6d,0x0,0x74,0x2e,0x4f,0xa9,0x38,0xea,0x73,0x9a, 0xe2,0xc4,0x7f,0x15,0x9a,0xd3,0xf8,0x51,0xb0,0x1c,0x82,0x46,0xd0,0xbe,0x80,0x91, 0xfc,0xa9,0xea,0x3e,0x5d,0xce,0x51,0x8f,0xb1,0xcd,0x67,0x2a,0xc8,0xff,0x0,0x3a, 0x5e,0xc5,0xb8,0xfa,0x43,0x82,0x7f,0x5c,0xd5,0xd8,0xf2,0x31,0xf3,0x2,0x71,0xc9, 0x3,0x2,0xb3,0xba,0x2d,0xa2,0x46,0x65,0x3,0x77,0x0,0x9e,0xe0,0x52,0x6,0xea, 0x7e,0xf6,0x78,0x1d,0xa9,0x84,0x1e,0x1,0x93,0xbf,0xa5,0x29,0x20,0x0,0xb9,0x24, 0xf5,0xf4,0xa1,0xb1,0xe,0x24,0x6c,0xc7,0x20,0x74,0xe3,0xad,0x24,0xb1,0x83,0x16, 0xc2,0x7a,0x73,0x96,0xc1,0x35,0x19,0x25,0xcb,0x80,0x4a,0x91,0xf9,0x53,0x91,0x46, 0x0,0x28,0x73,0xe8,0x5b,0x93,0x49,0x30,0x8,0xca,0x20,0xc,0xaa,0xa9,0xd8,0x13, 0xde,0xa5,0x46,0xa,0x87,0xe6,0x5a,0xad,0x73,0xbf,0x66,0xd3,0x1a,0x1f,0x6c,0xf4, 0xfc,0x5,0x24,0x79,0x8,0xe,0x2d,0x82,0xf4,0xc8,0xcf,0x1f,0x9d,0x3e,0x60,0x2d, 0x16,0xb,0x1b,0x6d,0x75,0xfb,0xbc,0x60,0xe7,0x9a,0x82,0x30,0xd1,0x92,0xbc,0x60, 0x8f,0xee,0xf5,0xa6,0xb0,0x62,0x7,0x97,0x72,0x88,0xbd,0xf0,0x80,0xe6,0x80,0xe2, 0x18,0xf0,0x2e,0x1d,0x98,0x75,0xc5,0x27,0xa8,0x8b,0x9,0x23,0x6d,0xda,0x73,0xf9, 0x53,0x52,0xe4,0xa3,0x12,0xca,0xdf,0x4c,0x53,0x52,0x44,0x68,0xf7,0x6e,0x7c,0x9e, 0xa5,0x54,0x9f,0xd4,0xa,0x6b,0x34,0x44,0x0,0xc6,0x70,0x3f,0x11,0x9a,0x77,0x68, 0x63,0x8d,0xeb,0x33,0x85,0x48,0xa5,0x0,0xf4,0xc8,0xeb,0x4e,0x33,0xb1,0x7,0xf8, 0x48,0xea,0x2a,0x2e,0x44,0xa1,0xca,0x4e,0x54,0xf1,0x8c,0x92,0x3f,0x1a,0x3c,0xa5, 0xf3,0x4b,0x18,0xb2,0xbe,0x85,0xb1,0x8a,0x1b,0x6c,0x12,0x26,0x8a,0x59,0x31,0xb7, 0x2b,0xeb,0xc0,0xa6,0xac,0xee,0xa4,0x8d,0xc3,0x9e,0xb9,0x14,0xd7,0x54,0xb7,0x5d, 0xcd,0x1c,0x67,0x27,0x8e,0xf4,0xf5,0xf3,0x33,0x9f,0x29,0x14,0x63,0x8e,0x95,0x3a, 0xa0,0xb0,0x19,0xbc,0xbd,0xdb,0x98,0x15,0x3d,0x82,0xf2,0x68,0x9a,0x42,0x2,0x0, 0x70,0x4f,0x61,0xe9,0x50,0xc8,0xd3,0x48,0x7a,0xc6,0x7,0xf7,0x80,0xa7,0x1d,0xed, 0x22,0xb3,0x4e,0xbb,0x54,0x74,0x2,0x9f,0x30,0xac,0x4a,0x59,0xd8,0xa8,0x6,0x55, 0x3,0xa8,0xc7,0x5a,0x44,0x6d,0xdb,0xb7,0x24,0x87,0x7,0xd7,0x18,0xa8,0x9e,0x60, 0xa4,0x6e,0x90,0xe4,0xf4,0xc5,0x35,0xa7,0x47,0x65,0x4d,0xce,0xf9,0x3f,0x74,0x2e, 0x69,0x73,0x1,0x39,0x95,0x32,0x70,0x8c,0xe,0x3f,0x8d,0x8f,0xf2,0xa8,0xd8,0xb9, 0x1,0xf0,0xa0,0xfa,0x8e,0xf4,0xd2,0x92,0x2,0xce,0x15,0xc8,0xe9,0x86,0x3d,0xaa, 0x42,0xc1,0x97,0x2b,0x1b,0x60,0xe,0xe6,0x86,0xee,0x4,0x1,0x65,0x91,0x3c,0xc4, 0x89,0x7e,0x53,0x9c,0x95,0x19,0x35,0x2c,0x71,0xb9,0x8f,0xe7,0x11,0xa9,0x63,0x92, 0xa,0xf3,0xfc,0xe9,0xcc,0x48,0x54,0xb,0x18,0xde,0xc3,0x24,0xe7,0xb5,0x38,0x7, 0x62,0x33,0xa,0x1f,0xf6,0x89,0xa6,0x86,0x38,0xe4,0x0,0x32,0x33,0xed,0x4e,0x52, 0x76,0x9c,0xfd,0xef,0xe5,0x4a,0x54,0x80,0x32,0x54,0x1a,0x63,0xb0,0x52,0x72,0xa0, 0xb7,0x6c,0xf4,0xa1,0xa2,0x6e,0x33,0xcc,0x8d,0x4b,0x61,0x8e,0x3b,0x90,0x3a,0x9a, 0x99,0x18,0x32,0x10,0xa5,0xdc,0x7b,0xd4,0x21,0xa4,0x3,0xcb,0xf3,0x17,0x73,0x1e, 0x8a,0x32,0x0,0xa9,0x46,0x4b,0x3a,0xed,0xfc,0x8f,0x5a,0x69,0x1,0xd,0xe1,0x5b, 0x3b,0x39,0xae,0x5,0xb6,0xed,0x91,0xb3,0x1f,0x9b,0x1d,0x7,0x6a,0xcd,0xf0,0xdd, 0xab,0xd9,0xdb,0x1b,0x79,0x14,0xac,0x8d,0x12,0xb9,0x56,0xf5,0x39,0xcd,0x3f,0x5a, 0x8a,0x3f,0xb2,0x45,0x6e,0x61,0x24,0xcf,0x32,0x2a,0xa8,0x39,0x38,0xce,0x5b,0xbf, 0xa0,0x35,0x2d,0xbc,0xf3,0x59,0xbc,0xd2,0x49,0x6e,0xed,0x14,0xbc,0x7,0x52,0xb, 0x29,0x19,0x18,0xab,0x42,0x66,0xb0,0x82,0x15,0xc,0x56,0x15,0xf5,0xce,0xc1,0xc9, 0xfc,0x2a,0x9d,0xcc,0xb1,0xa3,0xc5,0x0,0xc3,0xc9,0x2f,0x5,0x7,0xa7,0x72,0x7d, 0x3b,0x55,0x19,0xdf,0x50,0x96,0x60,0xe9,0xba,0x2b,0x68,0x80,0x1f,0x31,0xda,0xf, 0xa9,0x39,0xa9,0xed,0xa3,0xb5,0x9c,0xb1,0x92,0xe0,0x19,0xd4,0xfc,0xca,0xad,0xd3, 0x3d,0x8,0xf5,0xaa,0x61,0xb0,0xc6,0x0,0xce,0xf1,0xcb,0x14,0x4e,0x14,0x79,0x9b, 0xc1,0xdb,0x83,0xc8,0xc1,0xf7,0xa5,0x7d,0x36,0x14,0x6f,0x33,0xf7,0x2c,0x5b,0x91, 0xba,0x52,0x0,0x7,0xb7,0x1d,0x7f,0xfa,0xd5,0x9f,0x60,0x5a,0x5d,0x56,0x68,0x23, 0x69,0x3c,0xbf,0x9c,0x86,0x75,0xe5,0x80,0xc7,0x27,0xf1,0x27,0xf2,0xad,0x3b,0x5b, 0x2b,0xeb,0x78,0x83,0x19,0x21,0x55,0x19,0x22,0x36,0x4d,0xca,0xde,0xfe,0xd4,0x6a, 0x2d,0xc6,0xc2,0x17,0x4f,0x11,0xc9,0x1c,0x40,0x7,0x94,0x45,0xb0,0x92,0x4b,0x93, 0xdc,0x66,0xa5,0xd6,0xf5,0x1b,0x8b,0x48,0x11,0x6d,0x2,0xf9,0xce,0xc1,0x77,0x37, 0x2c,0x9,0xed,0x8e,0x99,0xce,0x3d,0xaa,0x69,0x22,0x76,0x96,0x2b,0xb0,0xc9,0x23, 0x4,0xda,0x13,0x1f,0x2f,0xe1,0xe9,0x55,0xe7,0xd3,0x85,0xeb,0xba,0x99,0x94,0x90, 0x39,0x18,0xe8,0x4f,0x62,0x7d,0x38,0xaa,0x4c,0x1,0x74,0x76,0xb9,0x86,0x4,0xbe, 0x98,0xb9,0x8c,0x0,0x16,0x20,0x0,0xfd,0x47,0x3f,0x90,0xfa,0x55,0x76,0x49,0xb4, 0xab,0xc3,0x75,0x9b,0x67,0x44,0x46,0x40,0x1d,0xbc,0xb2,0xc0,0xb0,0x3c,0x7d,0x31, 0x53,0x25,0xf5,0xdc,0x36,0xe2,0x29,0x61,0x2f,0x75,0x19,0xc3,0x0,0xb,0x16,0xc7, 0xf1,0x60,0x56,0x34,0xa9,0x25,0xfe,0xad,0x23,0xc5,0x61,0xe5,0xb0,0x5c,0xb0,0x90, 0x9d,0xc7,0xdc,0xef,0x3,0x1e,0xc3,0x1e,0xb4,0xc1,0x9b,0x50,0x6a,0x9a,0x61,0xb9, 0x79,0xe5,0x95,0x23,0xbe,0x75,0xa,0x44,0xad,0x8c,0x76,0x0,0x1e,0xdf,0x85,0x3d, 0x35,0x18,0xa2,0xba,0x9a,0x4b,0x85,0x8d,0x44,0x87,0xe5,0x78,0x9f,0xcc,0x38,0x1e, 0xbb,0x79,0xfe,0x75,0x83,0x34,0x4e,0x2d,0x24,0xfb,0x5a,0xa2,0xcc,0xc0,0x94,0x8c, 0x60,0x3f,0x4e,0xbf,0x9d,0x4d,0xa5,0x6b,0xb6,0xb6,0x3a,0x42,0x5b,0xd,0x36,0x53, 0x74,0x10,0x7,0x55,0xe9,0x21,0xc7,0x2d,0xbb,0x3d,0x3a,0xd0,0xd3,0xb,0x17,0x6e, 0xf5,0x6d,0x3e,0xe6,0xd2,0xf2,0x2b,0x49,0xd9,0xe4,0x92,0x17,0xe9,0x9,0x4e,0x36, 0xfa,0x90,0x3a,0x64,0x7e,0x75,0xa7,0x6d,0x1b,0x43,0x67,0xc,0x2a,0x41,0xd8,0x8a, 0xbc,0xfd,0x7,0xe1,0x5c,0xeb,0xbc,0x29,0xc,0xd7,0xa,0xf0,0xb5,0xc4,0xf1,0xb0, 0x21,0x8,0xc7,0x38,0xce,0x0,0xf4,0x2,0xba,0x2b,0x66,0x8b,0xca,0x55,0x13,0x2c, 0x8c,0x0,0x5,0x87,0x7e,0x3d,0x3b,0x56,0x6d,0xf7,0x28,0x90,0x64,0x82,0xf,0xde, 0x18,0xe9,0x48,0x8d,0x83,0xcf,0x7e,0x28,0xe,0xcc,0x4e,0x17,0x7,0xf9,0xd0,0xcc, 0xb8,0xdd,0xd3,0x9e,0x94,0xae,0x17,0x1d,0x9e,0xc7,0xb7,0x4c,0xa,0x6b,0x6,0x2c, 0x7f,0x76,0x48,0xfa,0xd4,0x26,0x64,0x1d,0x72,0x19,0x8f,0xcb,0xd3,0x9a,0x78,0x25, 0xb0,0x76,0x31,0x1d,0xf2,0x7f,0xfa,0xf5,0x2d,0x8c,0x63,0x20,0x2e,0xa4,0xa1,0x24, 0x1c,0xe3,0x7d,0x31,0x64,0x2d,0xbb,0x6a,0xe4,0x67,0x14,0xe6,0xdc,0x1,0xc8,0x38, 0xec,0x6a,0x34,0xd,0xb4,0xa7,0x0,0x1e,0x41,0x6,0xb3,0xb8,0x58,0x93,0x78,0x71, 0x82,0xbc,0xfd,0x3a,0x52,0x2,0xc5,0xb9,0x6c,0x76,0xc5,0x30,0xb4,0x85,0xc6,0xd0, 0x2,0xa8,0xc6,0x4d,0x2b,0xbc,0xa8,0xbf,0x21,0x8f,0x9f,0xf6,0x49,0x34,0xd3,0x18, 0xf5,0x1f,0x37,0x53,0x81,0xd4,0xd2,0x12,0x7c,0xdc,0xee,0x38,0x23,0x3d,0x69,0xa3, 0x77,0x0,0x38,0xc1,0x1f,0x31,0xdb,0x81,0x9a,0x68,0x52,0x18,0x31,0x7d,0xac,0x83, 0x92,0x7,0x38,0xa1,0xb0,0xb1,0x3c,0x87,0x3,0x85,0xc8,0x3d,0x7e,0x6a,0x8d,0x95, 0xc0,0xa,0xb0,0x92,0x7a,0xf2,0xf9,0x38,0xfc,0xaa,0xb7,0x9a,0x43,0xae,0xc2,0xec, 0xcc,0xdd,0xc8,0xe4,0x55,0xa6,0x51,0xb8,0xef,0x46,0xd,0xea,0xd,0x17,0x15,0x84, 0x8d,0x99,0xe3,0xca,0xc6,0x33,0x92,0xe,0x7a,0x54,0x99,0x71,0x8f,0x99,0x33,0xdc, 0x1,0xc5,0x9,0xb5,0x94,0x6d,0x60,0x40,0xfe,0xef,0x4a,0x8e,0x50,0xb,0x2,0xd1, 0xae,0x47,0xdd,0x3b,0xa9,0x80,0xf1,0x24,0x7c,0xe6,0x48,0x94,0xfe,0x3,0xfa,0xd3, 0x4c,0xf1,0x19,0x36,0x99,0xd0,0xfa,0x85,0x20,0x8a,0x8c,0x9,0x1,0xcf,0x97,0x12, 0x93,0xce,0x5d,0x4e,0x2a,0x26,0xdb,0x1b,0x33,0x19,0x21,0x0,0x72,0x78,0xe0,0x54, 0xdc,0x2c,0x4d,0x14,0x91,0x2a,0x94,0x53,0x28,0xc7,0xa0,0x27,0xf9,0xa,0x42,0xf0, 0x93,0xd6,0xf2,0x4c,0x7f,0xb0,0xd8,0x1f,0xa5,0x31,0x66,0x8d,0xca,0x9f,0xb5,0x22, 0x82,0x38,0x3,0x68,0xfe,0x79,0xa1,0xa4,0x89,0xbf,0x75,0xe7,0xc8,0x47,0x7d,0xab, 0xff,0x0,0xd8,0xd3,0xbe,0x80,0x2a,0x3e,0xf9,0x76,0xb5,0xac,0x9b,0x7b,0x71,0xd6, 0xa4,0xda,0x43,0x64,0x5b,0x49,0xc7,0x6d,0xcb,0x8f,0xe7,0x50,0x90,0xa0,0x67,0xcc, 0xbc,0x7c,0x7f,0x70,0x37,0xf8,0x53,0xd1,0x94,0x2,0x2,0xdc,0x3f,0xfb,0xcc,0x28, 0xb0,0xe,0x6d,0xf8,0x2c,0x21,0x5c,0xff,0x0,0x74,0xb7,0x1f,0x8f,0x15,0x4,0x8f, 0x2c,0x6b,0xbb,0xc8,0xb2,0x8c,0xf6,0xfd,0xe9,0x1c,0xfd,0x30,0x33,0x52,0xf9,0x49, 0x2a,0xef,0x6b,0x49,0x7d,0x83,0xb7,0x5f,0xc0,0x9a,0xac,0x22,0xcb,0x92,0x2c,0x21, 0xe0,0xe7,0x71,0x54,0x1f,0xca,0x8d,0x86,0x4b,0xba,0x66,0xd8,0x65,0x9a,0xcc,0x31, 0xe4,0x7c,0xa7,0x8f,0xcd,0xa9,0x4d,0xd2,0xc6,0x70,0xd7,0x9,0x27,0x63,0xb1,0x47, 0xf8,0xd2,0x46,0xee,0x7e,0x61,0x6f,0x0,0xed,0x82,0xdf,0xe0,0x2a,0x41,0x24,0xa4, 0x6c,0xd,0x6a,0xb9,0x1c,0x86,0x46,0xa1,0x6a,0x3,0xc,0xf0,0x85,0x21,0xe6,0xc7, 0x70,0xa5,0x3a,0xfe,0x86,0xa3,0x69,0x52,0x41,0xbd,0x64,0x94,0xae,0x31,0xf2,0xc7, 0x91,0xfc,0xa9,0xf2,0x4d,0x12,0x26,0xc9,0x2f,0xad,0x54,0x1e,0x8,0x56,0x23,0x8f, 0xfb,0xea,0xab,0xad,0xe5,0xa2,0xb0,0x11,0x5e,0xc0,0x54,0x7c,0xa1,0x44,0x8b,0x9f, 0xfe,0xbd,0xc,0x68,0x4,0x4d,0xb9,0x57,0x6b,0xba,0x93,0x90,0x8f,0xc6,0x7f,0x5a, 0x9a,0x1,0xc6,0x4c,0x6c,0x8,0xc9,0xef,0xd2,0x99,0xf6,0xb8,0x5b,0x81,0x2b,0x13, 0x9c,0x12,0xa9,0x9c,0xfe,0x42,0xa1,0x55,0x8e,0x42,0xc,0x42,0xe6,0x16,0x43,0x81, 0xbe,0x37,0x2a,0x45,0x48,0xc7,0xe8,0xca,0x23,0xb6,0x9a,0xcb,0x95,0x36,0xd2,0xb2, 0xa8,0xf,0x9f,0x91,0xbe,0x65,0xfd,0x8,0x1f,0x85,0x6a,0x29,0x42,0xa8,0x71,0xc9, 0xeb,0x93,0xde,0xb1,0x22,0x2,0x1d,0x7e,0x22,0xc8,0x50,0x5c,0x46,0x53,0x21,0x78, 0x2c,0xbc,0x8c,0x9f,0xa1,0x6f,0xca,0xb6,0x83,0x48,0xaa,0xdc,0xa9,0x1b,0xba,0x9e, 0x82,0xad,0x6c,0x4b,0x43,0x1e,0x2d,0xed,0xba,0x48,0x15,0x88,0xe0,0x6,0x6f,0xfe, 0xb5,0x3a,0x28,0x11,0x47,0xcb,0x6f,0x12,0x9f,0xa5,0x48,0xbc,0xf0,0x79,0x6a,0x72, 0xa8,0xe4,0x7c,0xa0,0x77,0xc9,0xa2,0xc4,0x91,0xa9,0x2a,0x7e,0x50,0xab,0xef,0x4b, 0xb6,0x4e,0x4e,0xe8,0xcf,0xb8,0xe6,0x9c,0xc6,0x25,0x0,0x7c,0xa0,0x7a,0x93,0x4b, 0xe7,0x44,0x30,0x3c,0xc8,0xf1,0xee,0x45,0x50,0x10,0xab,0x49,0xde,0xe1,0xd7,0x3d, 0xb6,0x53,0x8a,0x6e,0x7,0x75,0xc4,0xbf,0x80,0xa1,0xae,0x6d,0xc6,0x40,0x9d,0x3d, 0xc2,0x38,0xff,0x0,0x1a,0x45,0xbb,0xb7,0xe5,0x3,0xee,0xf5,0x20,0x1e,0x3e,0xb4, 0xd2,0x40,0x2e,0xdd,0xa7,0xbb,0xe,0xc4,0xd3,0x30,0x40,0x2c,0xc4,0x8e,0x78,0x1c, 0x54,0x8d,0x79,0x11,0x43,0xe4,0xab,0xcb,0x8e,0xc1,0x5b,0x1f,0xa8,0xaa,0xdf,0x69, 0x7d,0xe1,0x9e,0x6,0xc7,0xa0,0x5f,0xf1,0xa9,0x69,0x26,0x4,0xc5,0x7e,0x40,0xe1, 0x1f,0xaf,0xa0,0xa7,0xed,0x94,0xff,0x0,0xcb,0x5,0x3e,0xec,0xd5,0x13,0x5c,0x4a, 0x40,0x68,0xed,0x24,0xb,0x9e,0x4f,0xca,0x3f,0xad,0x5,0xd9,0x1f,0x3b,0x4e,0x4f, 0x66,0x6c,0x53,0x2,0x41,0x1c,0xbe,0x61,0xd8,0x22,0xda,0x47,0x20,0xb9,0xff,0x0, 0xa,0x47,0x49,0x54,0xf1,0x16,0xe0,0x46,0x9,0xd,0x8a,0x43,0x2c,0xa1,0xb3,0xf2, 0x12,0x7a,0x2,0xc4,0xf,0xe5,0x50,0x19,0xee,0x81,0x24,0xcb,0x66,0xab,0x9e,0x70, 0xe4,0xe2,0x96,0x80,0x5b,0x31,0xb1,0x88,0x2e,0x33,0xd3,0x8c,0x83,0x8a,0x94,0xc6, 0xf8,0x18,0x60,0xf,0xd2,0xaa,0xad,0xda,0xb7,0x2d,0x77,0x1,0x18,0xe0,0x82,0x7, 0xfe,0xcd,0x50,0x34,0xe6,0x36,0xcf,0xf6,0x92,0x0,0x7f,0xd9,0xd,0xfe,0x34,0x68, 0x5,0xe3,0x13,0x85,0xfb,0xce,0xcd,0xdb,0xd2,0x90,0x40,0xe3,0x97,0x7c,0x8f,0x4a, 0xa2,0xb3,0x3b,0x93,0xb6,0xf6,0xe2,0x40,0x7f,0xe7,0x9c,0x4a,0x31,0xf5,0xe3,0x34, 0xab,0x18,0x60,0x7f,0x7b,0x7c,0xc7,0xd4,0x82,0xa3,0xf9,0xa,0x2e,0x82,0xc5,0xe5, 0x29,0x82,0x32,0x78,0xa4,0x51,0x9c,0xf0,0x8,0x3f,0xdd,0x23,0xf9,0x55,0x34,0x81, 0x15,0xd8,0x85,0xbb,0x90,0x81,0xd4,0xcf,0x81,0xf9,0x6,0xa6,0x25,0xa0,0xe5,0xa4, 0xb2,0x4,0x9e,0x87,0x7e,0x3f,0xaf,0x34,0x5c,0x2c,0x5f,0x3e,0x59,0xf9,0x49,0xd9, 0xfe,0xf1,0x3,0x34,0x81,0xe2,0x53,0xb4,0x48,0xa4,0x8e,0x7a,0xd5,0x71,0x68,0x88, 0xb8,0x36,0x70,0x9f,0x77,0xdb,0xfc,0xc0,0xa4,0x58,0x64,0x56,0xcc,0x56,0xf6,0x91, 0x9f,0x6e,0x7f,0x90,0x14,0x68,0x31,0x64,0xbe,0xb7,0xf3,0x3e,0x69,0x10,0x81,0xd4, 0x29,0x14,0xf5,0xbd,0xb4,0xde,0x18,0x4b,0x96,0xed,0xf2,0x13,0x8f,0xc8,0x52,0x37, 0x9a,0x8c,0x4,0x97,0x10,0x86,0x3d,0x14,0xa6,0xf,0xea,0x69,0x92,0x6c,0x4,0x48, 0x6e,0x61,0x8d,0xfd,0x4f,0xf4,0xc9,0xa0,0x2c,0x4a,0xb7,0xb1,0xef,0xc2,0xc3,0x29, 0x7,0xb8,0x8c,0xf3,0xfd,0x68,0x7b,0xde,0xeb,0x6f,0x37,0x1f,0xec,0xc,0xfe,0x44, 0xe6,0xab,0x99,0xd1,0xe,0x4d,0xf7,0xd4,0xa9,0x56,0xcf,0xe8,0x69,0x12,0x68,0x24, 0x27,0x6d,0xd5,0xe3,0xf,0xf6,0x32,0x47,0xe8,0x38,0xa2,0xec,0x2c,0x58,0x13,0xc8, 0xeb,0x95,0x82,0x55,0x5f,0x7c,0x7f,0x8d,0x31,0x5e,0x5c,0x9f,0xdc,0x0,0x7b,0xb1, 0x70,0x4d,0x42,0xf2,0x47,0xb5,0x80,0x86,0xfa,0x52,0x3d,0x98,0x53,0x4,0x71,0xca, 0x1,0xfb,0xc,0xe5,0x88,0xce,0x19,0x7f,0xc4,0xd2,0xbb,0x2,0x49,0x9a,0x52,0x7a, 0x21,0x5f,0x4c,0x93,0xfd,0x2b,0x92,0xd4,0x2,0xe9,0xf6,0xe2,0xd1,0x24,0x45,0x97, 0xcc,0x1e,0x4b,0x45,0x92,0x36,0xf7,0x56,0xcf,0x52,0x39,0xc7,0xe5,0xdb,0x9e,0xb2, 0x3d,0x85,0x59,0x5,0xab,0x21,0x1f,0xdf,0xc2,0xd5,0xb,0xfd,0x30,0x6a,0x36,0x53, 0x5b,0xa5,0xac,0x51,0xbb,0xaf,0xee,0xe4,0xe,0x6,0xd7,0x1d,0xf,0x3,0xae,0x71, 0x4a,0x2f,0x95,0xea,0x3e,0x86,0x69,0xb9,0x82,0xf6,0xd3,0x7c,0xcc,0xab,0x74,0x14, 0xab,0x95,0x4c,0x7,0xc7,0x42,0x3f,0xa,0xb3,0xa3,0xdd,0x44,0xd0,0xb5,0xad,0xd5, 0xae,0x1b,0x71,0xc1,0x65,0x4,0x32,0x92,0x4f,0xf5,0xac,0x9b,0x46,0x97,0xed,0xf0, 0xdb,0x4c,0xb7,0x5b,0xe3,0x62,0x1e,0x34,0x5c,0xec,0xf5,0xe7,0x18,0xc5,0x6d,0xdf, 0xc5,0x24,0xfa,0x74,0xa6,0x44,0xc3,0x20,0x50,0x8e,0x7,0xcd,0x8c,0xf3,0xc8,0x3e, 0x95,0xb6,0x84,0x2b,0xf5,0x28,0xea,0x31,0x46,0x9b,0xe2,0xb7,0x33,0xc5,0xf6,0x79, 0x46,0xc6,0xe0,0x4,0xc8,0x7,0x3,0xf3,0xa9,0xad,0x35,0x6d,0x45,0xcb,0x42,0x2c, 0x96,0xe6,0x44,0x0,0x99,0x55,0xb1,0xc6,0x7a,0x91,0x8e,0xbc,0x55,0x69,0x1e,0xca, 0x59,0x5a,0x65,0x90,0x92,0x51,0x43,0x13,0x93,0x96,0x18,0x1f,0x87,0x4a,0x99,0xbc, 0xdb,0x9,0xe3,0x68,0x23,0x17,0x13,0x30,0xe1,0x95,0x77,0xa6,0x3e,0xbc,0x1c,0xf3, 0x4f,0x4b,0x9,0x5e,0xe3,0x2f,0x2e,0xa5,0x37,0x62,0x49,0x67,0x58,0xd5,0x5f,0x3b, 0xe0,0x39,0x65,0x3e,0xe2,0xb6,0x6c,0xac,0xda,0xf2,0xd9,0x27,0xbb,0xbb,0x6b,0xa6, 0x60,0x1e,0x36,0x1f,0x28,0x5c,0xfd,0x2b,0xf,0x51,0xb7,0x93,0x71,0xba,0xe,0x91, 0x4a,0xf8,0x46,0x50,0x7e,0x61,0xef,0x8f,0xc6,0xa4,0xb5,0xd4,0xee,0x22,0x44,0xb5, 0x80,0xc4,0x2,0x80,0x37,0x45,0x11,0xd,0xd3,0xd0,0x93,0x49,0xd8,0xab,0xea,0x4f, 0xad,0x58,0xc9,0x34,0xa9,0x3c,0x71,0x33,0xa8,0x53,0x13,0xaf,0xd,0x81,0xd8,0x81, 0x9f,0xad,0x43,0x15,0xbc,0x16,0x9e,0x43,0x36,0xa,0xb1,0xa,0xb1,0x81,0x82,0xcd, 0xee,0x9,0x38,0x15,0x61,0xa2,0xbb,0x98,0x2b,0xb3,0x6,0x1d,0x77,0xe,0x8,0x3f, 0xa5,0x3e,0x75,0xb7,0x6b,0x78,0x2e,0xae,0xa6,0x44,0x31,0xe3,0x25,0x46,0x39,0xcf, 0xe3,0x45,0xf4,0x6,0x66,0xea,0x36,0x17,0x12,0x4a,0xaf,0x17,0x9e,0xc4,0x9f,0xf5, 0x41,0xc6,0xdc,0x1e,0xe3,0x9e,0x29,0xc9,0xa7,0x2c,0x2a,0xcf,0x75,0x71,0x34,0x18, 0x5c,0x9d,0xea,0x7,0xd0,0x72,0xd,0x4c,0x97,0x22,0x3b,0x86,0xb9,0x85,0x6e,0xf7, 0x31,0xca,0xe2,0x2f,0xe5,0x91,0x8c,0x53,0x6e,0xb5,0x39,0xae,0xa0,0x1e,0x68,0x80, 0x88,0xc1,0xca,0xb6,0x41,0x6f,0xc0,0xf7,0xa1,0x36,0x4a,0x8f,0x51,0xb2,0xe9,0xcd, 0x69,0x0,0xd4,0x2d,0xa6,0x96,0x59,0xd1,0x49,0x8c,0x8c,0x6d,0x2a,0x71,0xc1,0x3, 0x19,0x7,0x8a,0xb5,0xa6,0x6b,0x49,0xaa,0x5b,0x19,0x5,0xcc,0x31,0x3a,0x8c,0x4d, 0x13,0x21,0xe,0x8d,0xdf,0xbf,0x23,0xde,0xb3,0xed,0xda,0xe7,0x6a,0xbe,0x9b,0x34, 0xc1,0x13,0x22,0x58,0x64,0x65,0x65,0x7,0xd0,0x7b,0x73,0x51,0x2b,0x4d,0x6d,0xa8, 0xc5,0x79,0x6c,0xea,0x92,0xed,0xc4,0xb1,0x16,0xd8,0x25,0x1f,0xdd,0xe3,0xbf,0x5c, 0x51,0x28,0xdd,0x5c,0xa8,0xcf,0x5b,0x23,0xa2,0xf3,0x95,0x94,0xa0,0xbd,0x91,0xc8, 0xe8,0x12,0x3c,0x63,0xf1,0xc5,0x33,0x6e,0x54,0xee,0x9a,0xe9,0xcf,0x5e,0x10,0x64, 0xfe,0x95,0x62,0xb,0xb8,0xae,0x6d,0xd6,0x78,0x64,0x91,0xa3,0x6e,0x1,0x41,0x81, 0x9f,0x4f,0xad,0x3b,0x31,0xb1,0xe1,0xe7,0x38,0xee,0xe,0x2b,0x6,0x6b,0xb9,0x9e, 0x8f,0xbe,0x50,0xa,0x6a,0x40,0x77,0x2e,0xa0,0xa,0x74,0xf1,0x28,0xcb,0xf9,0x37, 0xf,0xfe,0xec,0xa4,0x63,0xff,0x0,0x1e,0xa7,0xc8,0x23,0x62,0x4b,0x43,0x3b,0x9c, 0xff,0x0,0xcf,0x43,0xfc,0xaa,0x55,0x41,0x2e,0xb,0x5b,0xec,0xa,0x38,0x26,0x81, 0x99,0xf2,0x5b,0x9,0x86,0x4d,0x94,0x8c,0xb8,0xc8,0xf3,0x25,0xcf,0xf3,0x27,0x14, 0xe4,0xb4,0x41,0x85,0x1a,0x5c,0x3,0xfd,0xf7,0x1f,0xe1,0x57,0x64,0xd,0x19,0x1, 0x20,0xde,0xbd,0x73,0xd3,0x3f,0xa5,0xa,0xb2,0x70,0xcd,0x2,0xaa,0xf5,0xfb,0xd4, 0xac,0x16,0x46,0xdf,0x85,0x92,0x44,0x6b,0xc0,0xd1,0xac,0x6b,0xf2,0x6d,0xb,0xff, 0x0,0x2,0xae,0x8e,0xb0,0x7c,0x36,0xce,0xdf,0x69,0xdc,0x0,0x1f,0x26,0x3f,0x5a, 0xde,0xaf,0x57,0xd,0xfc,0x24,0x72,0x55,0xf8,0x99,0xcf,0x78,0xa4,0x48,0x3e,0xca, 0xf1,0x2c,0x46,0x45,0xdf,0x83,0x21,0xc6,0x3e,0xef,0xbd,0x62,0x42,0xf7,0xec,0x37, 0x21,0xd3,0x81,0x3c,0xe0,0x6e,0xcf,0xe8,0x6b,0xa0,0xf1,0x14,0x6f,0x21,0xb6,0xd9, 0x10,0x72,0x37,0xf5,0xe8,0x3a,0x56,0x3d,0xad,0xba,0xa6,0xf6,0x96,0x24,0xdf,0xed, 0x83,0x5c,0x58,0x8f,0xe2,0xb3,0x6a,0x7f,0xa,0x11,0x4c,0xaf,0x22,0x99,0xc,0x4c, 0xff,0x0,0xec,0xe7,0x3,0xf3,0xa9,0x10,0xc8,0x18,0xff,0x0,0x8,0xcf,0x26,0xa5, 0x2a,0x88,0x30,0x10,0xc,0x9c,0x70,0x31,0x8a,0x64,0x67,0x7a,0xb1,0x64,0xda,0x14, 0xe3,0x9c,0x1a,0xe7,0x65,0xb1,0xc6,0x60,0xe7,0xa,0xcf,0xc7,0x52,0xb5,0x1e,0xe5, 0x17,0xb,0x9d,0xcc,0xa7,0xae,0x6,0x58,0xd2,0x99,0x3e,0x55,0xd8,0xe8,0xa3,0x3c, 0xd4,0xc4,0xbb,0x44,0x1d,0x24,0xce,0xf,0xf7,0x7a,0xd5,0x21,0x58,0xab,0x24,0xa0, 0xc8,0x47,0x93,0x72,0x32,0xdf,0xf2,0xcf,0x96,0xfc,0x45,0x58,0x1b,0x59,0x9,0x30, 0xcb,0xb7,0xd0,0xb6,0xcf,0xeb,0x4f,0x8f,0x74,0x9c,0x89,0x7f,0x0,0x70,0x7f,0x3a, 0x93,0x78,0x19,0xc9,0x38,0x1d,0x79,0xe2,0x9c,0x44,0x54,0x6b,0x64,0xd8,0x23,0x5d, 0x31,0x8,0x3f,0xc4,0x64,0x50,0x7f,0x3e,0xb4,0x8b,0x7,0x95,0x19,0x58,0xad,0x61, 0x42,0x3f,0xba,0xdb,0x8f,0xea,0x2a,0x72,0xc8,0xfc,0x9e,0x4e,0x78,0xc8,0xe9,0x4a, 0x70,0xaa,0x77,0x29,0x23,0xd0,0x74,0xa2,0xe0,0x22,0xbc,0xa1,0x1,0xcc,0x6a,0x7b, 0xee,0xff,0x0,0xeb,0x52,0x3c,0xb7,0x40,0x64,0x49,0xe,0xc1,0xc9,0x2a,0x3e,0x6f, 0xd4,0xd2,0x28,0xe,0x79,0x5c,0x1,0xdb,0x15,0x21,0x54,0x52,0x5c,0x2e,0xd2,0x47, 0x39,0xf4,0xa5,0x70,0x13,0xcc,0x6d,0x88,0x5e,0x42,0x73,0xd0,0xe,0x29,0x92,0x33, 0xb1,0x20,0x4c,0x40,0xe9,0xce,0x5,0x48,0xac,0xa7,0x82,0xbc,0x1e,0x94,0x99,0x56, 0xc9,0xda,0x80,0xf,0xef,0x1c,0xd3,0xe8,0x4,0x7e,0x5a,0x4b,0xb4,0x34,0xce,0xec, 0xbd,0xcf,0x4a,0x7e,0x77,0x10,0x6,0x58,0x3,0xc0,0xff,0x0,0x26,0x95,0x36,0x10, 0x70,0x7,0x5f,0xce,0xa4,0xc,0x0,0xc2,0xb0,0x51,0xec,0x29,0x24,0x17,0x22,0x75, 0x41,0x26,0xf6,0x82,0x47,0x3d,0xb0,0x6,0x7,0xe7,0x4c,0x9e,0x36,0x67,0x4,0x42, 0xc0,0xfb,0x91,0x8f,0xeb,0x53,0x6e,0x25,0xb0,0x25,0x60,0x7e,0xa6,0x8e,0xab,0xd4, 0xf1,0xdf,0x34,0xdb,0x41,0x72,0x24,0x89,0x63,0x8f,0x1,0x3,0x1e,0xf8,0x18,0xa9, 0x82,0x85,0xda,0x0,0x5c,0x75,0xe9,0x4a,0x80,0xf9,0x67,0x96,0x6f,0x6a,0x48,0xdf, 0x79,0x1f,0xbb,0x64,0xed,0x86,0xeb,0x40,0x31,0xbe,0x5c,0x86,0x52,0xc5,0xd4,0xc, 0x65,0x78,0xa9,0x22,0x85,0xf0,0x4c,0x92,0x12,0x4f,0xe9,0x52,0x77,0xed,0xf8,0xd3, 0x9,0x70,0x79,0xb,0x83,0xc0,0xc7,0x34,0xf4,0x26,0xe3,0x4c,0x79,0x5,0x44,0xc0, 0x8e,0xe3,0x34,0xcf,0x29,0x36,0x60,0x82,0x4d,0x49,0xe5,0x85,0x39,0xc0,0xcd,0x7, 0xee,0x91,0xde,0xa5,0xb0,0x19,0xe5,0x85,0xf5,0xfc,0x79,0xc5,0x48,0x84,0x63,0x3, 0xae,0x31,0x51,0x6,0xa,0xdc,0xb1,0xfc,0xe9,0x5c,0x7c,0xc1,0x94,0x12,0x3d,0x47, 0x34,0x93,0x1,0xec,0xb8,0x9d,0x58,0x8c,0x8c,0x63,0x1e,0x95,0x26,0x33,0x19,0xd, 0x51,0x8d,0xae,0x40,0xe7,0x39,0x15,0x33,0x8e,0xe,0x7,0x4e,0xc2,0xad,0x6a,0x21, 0xaa,0x23,0x4c,0x14,0x50,0x7,0x7a,0x52,0xc1,0x72,0x57,0xfc,0x8a,0x6a,0xa9,0xb, 0xf7,0x1b,0x9e,0x4f,0xb5,0x39,0xb2,0x18,0x2a,0x8e,0xe,0x72,0x73,0xed,0x54,0x6, 0x35,0xd9,0xdf,0xae,0xd9,0x7e,0xf0,0x5,0x85,0x24,0x95,0xf7,0x74,0x19,0x1,0x47, 0xf3,0x6f,0xca,0xa5,0x87,0x54,0x82,0x55,0xfd,0xc4,0x33,0x3b,0x80,0x5b,0xcb,0x11, 0xe4,0xe3,0xd7,0xe9,0xc8,0xfc,0xea,0x10,0x22,0xbf,0xb8,0xd4,0x10,0x5d,0x42,0xaf, 0xb9,0x22,0xa,0xc3,0x92,0x14,0x64,0x81,0xf8,0x93,0x49,0x6,0x9f,0xe7,0x5c,0x88, 0x8c,0x46,0xd6,0x24,0x53,0xe6,0x48,0x1b,0x87,0xe9,0x81,0xf9,0xf3,0xf8,0x53,0x5b, 0x3,0xdd,0x22,0x76,0xb5,0xbb,0xd5,0x59,0x7c,0xe9,0x4d,0xbd,0xb4,0x7c,0xaa,0x20, 0xcb,0xb9,0xf5,0x39,0xe3,0x14,0x7f,0x62,0x47,0xf6,0xb0,0xa2,0xea,0x42,0x50,0x6f, 0xf9,0xb6,0xf9,0x83,0xd3,0x9c,0x62,0xab,0xee,0xb5,0xb6,0x99,0x2d,0xc3,0xb3,0x46, 0x25,0x11,0xf,0x28,0xe0,0xb3,0x1e,0xd8,0xce,0x3a,0xf0,0x71,0x51,0x5c,0x47,0x68, 0xf7,0x12,0x5a,0xd8,0xda,0x9f,0xb4,0x48,0xfb,0x7f,0x78,0x33,0x8c,0x72,0xdc,0x9e, 0x9c,0x3,0xd2,0xae,0xe9,0x85,0xae,0x5a,0xd3,0x62,0x4b,0x4d,0x4e,0xe1,0x77,0x79, 0xd8,0xc8,0x69,0x17,0x4,0xe3,0x83,0xce,0x3e,0xa6,0xac,0xbe,0xab,0x19,0x93,0xcb, 0x8f,0x2e,0x5c,0x10,0x11,0x54,0x92,0x6,0x7a,0x9f,0xd6,0xaa,0x94,0x7d,0x30,0x85, 0x81,0x62,0x7b,0x89,0x7e,0x44,0x8e,0x33,0x83,0x9f,0x5f,0xa6,0x29,0xb7,0x53,0xca, 0xd6,0x86,0x28,0xd8,0xcb,0x70,0xc7,0xcb,0x72,0x0,0x9,0x9e,0x73,0x81,0xd4,0xe2, 0x80,0xb5,0x85,0x4b,0xa9,0xe3,0x69,0xa4,0x89,0x64,0x92,0xdd,0x4e,0x54,0xaa,0x70, 0x3d,0xbf,0x3a,0xb4,0xba,0x91,0x9a,0xe6,0x3f,0x29,0x9a,0x58,0xa,0xe6,0x42,0x8b, 0x82,0x3d,0xbf,0x95,0x22,0x5c,0x1,0x69,0x12,0x5a,0x4e,0x9e,0x58,0x5d,0xa7,0x7a, 0x15,0x38,0x1c,0x10,0xf,0x7a,0xaf,0x71,0x24,0xf6,0xa,0xc6,0xd6,0x37,0x70,0x71, 0xc1,0x18,0x2a,0xf,0x1f,0x8f,0x5a,0x3a,0x88,0xd1,0xd3,0xb5,0xb,0x1b,0xcb,0x6f, 0x36,0x16,0xd8,0xb,0x10,0xca,0xff,0x0,0x2b,0x3,0xe8,0x73,0xf8,0x55,0xd,0x66, 0x35,0xd5,0x14,0xa5,0xa4,0x69,0x3c,0xb0,0x2b,0x6e,0xf9,0x8e,0x1,0xc7,0x40,0x47, 0x53,0xfe,0x15,0x1a,0x3d,0xb2,0x42,0x93,0x99,0xc8,0x98,0xff,0x0,0xaa,0x41,0x86, 0x21,0x8f,0x63,0x81,0x9c,0xf3,0xc9,0xe3,0xb7,0xa5,0x49,0xa7,0xcd,0x1d,0x8b,0xcd, 0x5,0xc2,0xcb,0x6e,0xad,0x80,0xac,0xea,0x77,0x39,0x39,0x27,0x91,0xf5,0xfd,0x69, 0x81,0x3e,0x95,0x6a,0xd1,0xe9,0xf0,0xb4,0x84,0x99,0x5a,0x30,0x1c,0x91,0xcf,0xae, 0xd3,0xe9,0x8f,0xe9,0x59,0xf2,0xcd,0x6f,0x79,0xe2,0x6,0xb5,0x11,0x9,0x52,0x34, 0xc7,0xcc,0xb9,0x1e,0x67,0x7f,0xc8,0x63,0x3d,0x29,0xf2,0xd8,0xbd,0xed,0xd4,0x72, 0x5b,0x32,0xc7,0x6f,0x19,0x20,0xc8,0xf9,0x2e,0x4e,0x73,0xd7,0x3c,0x74,0x15,0x1e, 0xab,0xa5,0xc5,0x69,0x68,0xf3,0x84,0x4b,0x87,0x99,0xb6,0x7c,0xd9,0xc9,0x2c,0x7a, 0xf5,0x39,0xf7,0xf5,0xc5,0x24,0x50,0xdd,0x5a,0xee,0xd6,0x48,0x21,0xb3,0xb6,0x8c, 0x3c,0xa8,0xea,0xe1,0xc2,0x6d,0x58,0x80,0x3f,0xd7,0x91,0x80,0x6b,0x5a,0x27,0x8, 0x4a,0xb1,0x43,0x26,0x79,0xda,0xbd,0x7d,0xeb,0x9d,0x92,0xc3,0xec,0x56,0x76,0x19, 0x57,0x96,0xe9,0xae,0x15,0xa4,0xd,0xf2,0x8e,0x15,0x8e,0xd0,0x7,0x40,0x2b,0x76, 0xde,0x3b,0x90,0x41,0x3a,0x7c,0x31,0x6,0x1c,0xb7,0x98,0x37,0x1f,0xae,0x16,0xa1, 0xee,0x55,0x8b,0xed,0x30,0xe8,0xa7,0xb7,0x50,0x38,0xa6,0x97,0x52,0x98,0x2e,0xac, 0xc6,0xa0,0x12,0x4e,0x58,0xa3,0x43,0x12,0x9e,0xc1,0x58,0x9c,0xfe,0x94,0xc9,0x3c, 0xf8,0xce,0x4a,0xdb,0xa6,0x7,0x3,0x1b,0x8f,0xf4,0xc5,0x4d,0xc5,0x62,0x5c,0xc6, 0xcc,0x15,0xf3,0x94,0x1c,0x11,0x9e,0x3f,0x4a,0x49,0x1c,0x2e,0x2,0x79,0xac,0x7e, 0x87,0x14,0xcc,0xb4,0xaa,0xcb,0x24,0xb0,0xf0,0x3a,0x14,0xcf,0xe5,0xcd,0x56,0x4d, 0xeb,0x38,0x85,0xef,0x57,0xca,0x3,0x24,0x4,0xb,0xf8,0x64,0xd4,0xb1,0x93,0x4b, 0x27,0x9a,0x4a,0xa2,0x12,0xc3,0xa0,0x6e,0x29,0xf1,0x23,0x7,0xdc,0xc0,0xe1,0x80, 0xf9,0x72,0x38,0xfd,0x6a,0x26,0x11,0x42,0x40,0x33,0xc9,0xf3,0x72,0x36,0x8e,0x7f, 0x3c,0x54,0x4c,0x88,0xe4,0x96,0x92,0xec,0x8f,0x41,0x33,0x7e,0xa0,0x52,0xf5,0x29, 0x12,0x98,0xe4,0x1e,0x63,0x4b,0x1a,0xe0,0x1f,0x97,0xf7,0x9f,0xfd,0x6a,0x7a,0x3c, 0xd3,0x20,0x20,0x6d,0xc7,0x0,0xe7,0x83,0x4d,0x54,0x8e,0x38,0xb7,0xe6,0x43,0xbb, 0x80,0x19,0xd9,0xbf,0x42,0x6a,0x21,0x10,0x56,0xdc,0x6d,0x77,0x38,0xe8,0x1b,0xa7, 0xf3,0xa4,0xf7,0x15,0x89,0xa7,0x72,0x8b,0xb1,0xe6,0x84,0x9c,0x7d,0xd2,0x87,0x3f, 0xce,0xa3,0x32,0xab,0x28,0xcd,0xdc,0x18,0xdb,0x8e,0x7a,0x8f,0xd6,0x9c,0x22,0x2e, 0x72,0x74,0xe8,0x78,0xfe,0x26,0x2a,0x7f,0xa6,0x69,0x37,0x5c,0x28,0x2,0x38,0xa1, 0x44,0xcf,0x7,0xee,0x81,0xf9,0xff,0x0,0x85,0x36,0x80,0x8d,0x25,0x45,0xf9,0x65, 0xbd,0xe9,0xf7,0x7c,0xa1,0xc7,0xe7,0x8a,0x43,0x34,0x4f,0x85,0x4b,0xcb,0xa7,0x7c, 0xe4,0xa8,0x8c,0xb8,0xc7,0xe0,0x2a,0xd2,0x99,0xca,0x96,0x67,0x88,0x63,0xa6,0x14, 0x91,0xfd,0x29,0x8d,0x3b,0x20,0x20,0xdd,0x28,0x38,0xe4,0x80,0x6,0x3d,0xb9,0xa0, 0x8,0xc3,0x47,0x92,0xa6,0x1b,0xb3,0xbb,0xf8,0x8e,0x54,0x1f,0xc3,0x8a,0x16,0x3f, 0x29,0xb6,0xc5,0x63,0x31,0xcf,0xac,0x8a,0x73,0xf9,0xb5,0xb,0x79,0x19,0x18,0x7d, 0x40,0xef,0xf4,0x1,0x40,0xfd,0x5,0x30,0x4b,0x6e,0xcd,0x85,0xba,0x94,0xb6,0x79, 0x11,0xff,0x0,0xf5,0x85,0x1,0x61,0xaf,0xe7,0xb3,0xb2,0xc7,0xa6,0x22,0x67,0xab, 0xbb,0xa8,0x34,0xe5,0x86,0x59,0x23,0x2,0x4b,0x1b,0x65,0xf7,0x6e,0x4f,0xe8,0xb8, 0xfd,0x69,0x18,0x62,0x42,0x37,0xdd,0x90,0x7f,0xba,0xcc,0x29,0xb2,0x1b,0x78,0x98, 0x7,0xb5,0xb9,0x72,0xdc,0x5,0xc1,0x20,0x7e,0x66,0x95,0xc0,0xb2,0x1a,0xe2,0x32, 0xa2,0x31,0x2,0xa6,0x3a,0x1d,0xc7,0xf9,0xf,0xe7,0x4c,0x5b,0x97,0xcb,0x33,0xcd, 0x68,0x84,0x77,0xc6,0x7f,0xa8,0xa5,0x16,0xea,0x88,0x4a,0x69,0xe0,0x12,0x3f,0x88, 0x80,0x4d,0x34,0x6,0x48,0xb6,0xfd,0x96,0x34,0x27,0xf8,0x3c,0xc0,0x7f,0xa5,0x3b, 0x86,0x81,0xe6,0x99,0x5f,0xcc,0xfe,0xd0,0x52,0x9d,0x84,0x58,0xc7,0xeb,0x9a,0x74, 0x93,0x28,0xc2,0x35,0xd1,0xdc,0x78,0xda,0x30,0x7f,0x95,0x39,0x52,0x6f,0x28,0xaa, 0x45,0x12,0x63,0xa0,0xde,0x7f,0xc2,0xa3,0x33,0xba,0xc,0xb4,0x90,0x46,0x3a,0x16, 0x63,0x9c,0x7e,0x35,0x2c,0x2c,0x44,0x8b,0xa,0xb1,0x1e,0x65,0xc1,0x1e,0xcc,0x72, 0x4f,0xe5,0x4d,0x8a,0xd9,0x72,0xce,0xe9,0x73,0x29,0xcf,0x5,0x32,0x8,0xfd,0x69, 0xef,0x71,0x6c,0xdb,0x58,0xea,0x56,0xc1,0x90,0x60,0x12,0x46,0x3f,0x43,0xcd,0x20, 0xb8,0x41,0x2e,0x4d,0xf0,0xe4,0x7f,0xcb,0x25,0xeb,0xf8,0xf3,0x40,0x84,0x1e,0x63, 0xb6,0xe8,0xed,0x25,0x64,0xce,0x8,0x3c,0xfe,0xa7,0xa5,0x5b,0x10,0x89,0x54,0x6e, 0xb1,0x88,0x32,0xf0,0x37,0x91,0xfe,0x15,0x4,0xad,0x1b,0x5,0xf,0x3c,0xca,0x3b, 0x7e,0xef,0x1f,0xfb,0x2d,0x2e,0xe4,0x1d,0xee,0x9c,0x1c,0xc,0x2b,0x30,0xfe,0xa2, 0x9a,0x60,0x4c,0xd6,0xec,0xc4,0xf,0xb1,0xc0,0xa1,0x7a,0x1c,0x1c,0xf,0xc7,0x6d, 0x3d,0xcb,0xee,0x8,0xe6,0x35,0xe3,0xee,0xb3,0x71,0x50,0xac,0x2a,0xf9,0xff,0x0, 0x47,0xba,0x65,0x1d,0x4,0x92,0xb9,0x1f,0x93,0x1c,0x50,0x91,0xe1,0xb6,0x9b,0x45, 0x19,0x3c,0x92,0x41,0xa6,0xc0,0x56,0xf3,0x12,0x3d,0x89,0x34,0x11,0x2,0x7e,0xeb, 0x0,0x7f,0x10,0x73,0x55,0xa4,0x6b,0x78,0x98,0x86,0xd5,0x55,0x76,0xf2,0x40,0x61, 0xcf,0xe1,0x9a,0xb6,0x12,0x41,0x23,0x84,0xb6,0x89,0x40,0x1c,0xb1,0x7f,0xfe,0xb5, 0x46,0x5d,0xa3,0x62,0x41,0x89,0xf,0x4c,0x82,0xdf,0xe0,0x29,0x36,0x33,0xb,0x54, 0xbc,0x80,0xac,0x52,0x47,0xa8,0xf9,0x93,0x41,0x28,0x99,0x56,0x35,0x20,0xe0,0x67, 0x23,0x38,0xf7,0xae,0x86,0xd8,0xc5,0x35,0xaa,0x3a,0xc5,0x3b,0x2b,0x80,0xe3,0x79, 0xc3,0x10,0x6a,0x9d,0xd5,0xbc,0xd7,0x48,0xd1,0x3c,0x80,0x23,0x29,0x19,0x55,0x1c, 0x92,0x31,0xfd,0x69,0x34,0x27,0x29,0xa6,0x88,0x64,0xb9,0xf3,0x25,0x85,0xde,0x2, 0x70,0x1,0x1b,0x18,0xa8,0xfd,0x0,0xa7,0x16,0xc,0xbe,0x72,0x79,0x58,0x64,0xf4, 0xe4,0x8c,0xfe,0xa6,0xa2,0x61,0x9c,0xab,0x42,0xab,0x8e,0xf2,0xf3,0x49,0xe7,0x2e, 0xf6,0x12,0x5d,0x3a,0x63,0xa0,0xc6,0x7f,0x95,0x3f,0xe4,0x71,0x9f,0x32,0xf1,0xc7, 0x6c,0x3b,0x5,0xa0,0x92,0x50,0x8a,0x8a,0xf,0x91,0x6f,0xc8,0xea,0xe,0x33,0xfa, 0x54,0x89,0x1c,0x84,0x83,0xe4,0x40,0xa3,0xb1,0x2b,0x9c,0x55,0x32,0xa9,0xe6,0x82, 0x52,0xf0,0x81,0xdb,0x73,0x63,0xf9,0xd2,0xb0,0x89,0x98,0x66,0xce,0x56,0xf4,0xf9, 0x40,0xcf,0xe3,0x9a,0x2e,0x22,0xdc,0xa6,0x5d,0xa0,0xb3,0xc6,0x30,0x71,0x9f,0x2f, 0xa7,0xeb,0x4c,0x90,0xee,0x55,0x2d,0x3c,0xd,0x83,0x8e,0x57,0x1f,0x9f,0x35,0x8, 0x57,0x63,0x93,0xa6,0xc,0x7a,0x99,0x0,0xc7,0xe5,0x56,0x20,0x13,0x46,0x85,0xa3, 0x82,0x32,0xc7,0xd6,0x4e,0x9f,0x90,0xa7,0xb8,0x10,0x94,0x2e,0x40,0x3a,0x82,0x9c, 0x74,0x11,0xa8,0x18,0xa6,0x86,0xb6,0x75,0x65,0x37,0x37,0x3c,0x75,0xda,0x49,0xfe, 0x42,0xa6,0x7f,0xb6,0x67,0x72,0xa5,0xb2,0xb8,0xf5,0xdd,0xfc,0xf0,0x29,0xb1,0x8b, 0xc4,0x52,0x66,0xb8,0x80,0x64,0xfd,0xd0,0xa4,0xff,0x0,0xec,0xd4,0xd8,0x11,0x62, 0x26,0x90,0x14,0x6b,0xd9,0x0,0x1d,0x30,0xc0,0x1a,0x93,0xcb,0x8d,0xb6,0x97,0x86, 0xe4,0x9e,0xca,0x19,0x86,0x7e,0xbc,0x81,0x51,0xb2,0x64,0x12,0xb7,0x51,0x46,0x41, 0xec,0x8a,0x69,0xea,0x22,0x62,0xa,0x5d,0xc9,0xbb,0xb8,0x50,0xbf,0xfc,0x4d,0x21, 0x8c,0x78,0xe2,0x19,0x5f,0xb0,0x38,0x46,0x3d,0x59,0xd7,0x23,0xf5,0x34,0xe1,0x2, 0x67,0x68,0xb4,0x82,0x4c,0x7f,0xb,0xed,0x1f,0xd0,0xd3,0x9,0x8f,0xed,0x1c,0xdd, 0xdc,0x37,0xae,0x49,0xfe,0x43,0x14,0xa1,0x94,0x85,0xc4,0x77,0x1b,0x4f,0x72,0xed, 0xcf,0xeb,0x43,0x2,0x6c,0x5c,0xc6,0x40,0x2,0x8,0x87,0x65,0xdf,0x81,0xff,0x0, 0xa0,0xd3,0xdb,0xed,0xa,0x9b,0xb7,0xc3,0xbb,0xd0,0x2,0x47,0xe7,0x9a,0x88,0x2a, 0xed,0xc0,0x85,0xc8,0x3e,0xac,0x39,0xfc,0xcd,0x1e,0x52,0x6e,0x2c,0xb6,0x7c,0xfa, 0x10,0x98,0xfc,0xc5,0x0,0xd,0x76,0x61,0x61,0xe7,0x5d,0xc0,0xaa,0x47,0x20,0xa9, 0x1f,0xcd,0xaa,0x2f,0xb5,0xc3,0x21,0x21,0xf5,0x28,0xc2,0x9e,0x0,0x43,0x19,0xff, 0x0,0x13,0x52,0x6c,0x78,0xdb,0x31,0xd9,0x5a,0x86,0xf5,0xf3,0x30,0x7f,0xf4,0x1a, 0x7c,0x6f,0x23,0xe0,0x14,0x45,0x61,0xd4,0x6e,0x2d,0xfd,0x5,0x31,0x90,0xc7,0x2c, 0x1b,0xbf,0xe3,0xf2,0x46,0x61,0xc6,0x2,0x8c,0x7e,0x82,0x99,0x38,0x89,0xd8,0x28, 0x37,0xa7,0xfd,0xd8,0xd8,0xf,0xe9,0x56,0xf3,0x3a,0x1f,0xde,0xca,0x81,0x49,0xe3, 0x24,0x92,0x7e,0x83,0x34,0xac,0xee,0xae,0x0,0x9f,0x62,0x91,0x93,0x84,0x14,0x85, 0x72,0x14,0x45,0x65,0x2a,0x6d,0xee,0x5b,0x3,0x8d,0xec,0x47,0xf3,0x22,0xa0,0x2d, 0x6e,0xb2,0xed,0x36,0x52,0x3b,0xe3,0x8c,0x14,0x61,0xff,0x0,0xa1,0x1c,0x55,0x89, 0xa2,0x1b,0x97,0x7c,0xbb,0xc6,0x72,0x19,0x78,0xe6,0x9d,0xe4,0xa3,0xb9,0x4f,0x35, 0xb7,0x11,0xd8,0xe3,0xf5,0xa5,0xb0,0xca,0x8e,0x93,0xb1,0xc8,0xd3,0x21,0x4,0x72, 0xae,0x1d,0x41,0xfc,0x4e,0x29,0xe8,0x6f,0x40,0x3f,0xb9,0x80,0x71,0xc1,0x66,0xc8, 0xff,0x0,0xc7,0x6a,0xd4,0x50,0xaa,0xc2,0x63,0x20,0x91,0xd3,0x1b,0xcd,0x40,0x6c, 0xad,0xe3,0x3b,0xda,0x13,0x81,0xdb,0x27,0x1f,0xa9,0xa7,0x66,0x2,0x22,0x5e,0x20, 0x1b,0xe5,0xb3,0x88,0x9e,0xe1,0x5b,0x8f,0xa6,0x48,0xa7,0x5c,0x3d,0xd6,0x17,0x17, 0xd6,0xc8,0xbf,0xde,0xf2,0x33,0x9f,0xc7,0x75,0x3d,0x1a,0x33,0x16,0xd3,0x12,0xf, 0xf6,0x46,0xd,0x48,0x85,0x55,0x70,0x11,0x0,0xce,0x36,0x67,0x7,0xf4,0xa6,0x17, 0x2b,0xc4,0x58,0xc6,0xde,0x6e,0xa6,0x58,0xff,0x0,0xb0,0xaa,0xbf,0xd0,0xd3,0x56, 0x15,0x57,0xcf,0xdb,0x6e,0x99,0x48,0xfb,0xbb,0xbf,0xc0,0x55,0xb2,0xb2,0x30,0xc0, 0x0,0x1,0xe9,0x48,0x8,0xe7,0xf7,0x8b,0x9f,0x40,0x41,0xa4,0x5,0x67,0x8c,0x49, 0x80,0x1e,0xe3,0xe8,0x5b,0x20,0xfe,0x66,0xa3,0xfb,0x25,0xaa,0x1c,0xfd,0x9e,0x4c, 0x93,0xd9,0xdb,0xfa,0x1a,0xb4,0x5d,0x17,0x2b,0x21,0xc0,0xfe,0xf0,0x14,0xcf,0x3d, 0x4e,0x36,0x3e,0x70,0x7d,0x3a,0xd4,0xb0,0x32,0xaf,0x60,0x6b,0x53,0xf6,0xbb,0x2b, 0x57,0x46,0x5f,0x9a,0x5d,0x87,0x5,0x87,0x39,0xe3,0xb9,0x18,0xe0,0x1f,0x7a,0xa7, 0xf6,0xab,0xd3,0x10,0x71,0x75,0x8,0x49,0x17,0x78,0xe0,0x61,0x87,0xaf,0x4e,0xb5, 0xd0,0x17,0x2c,0x84,0x10,0x58,0x90,0x47,0x1c,0x62,0xb9,0x6b,0xe8,0xae,0xac,0x66, 0x4b,0x14,0x88,0x8b,0x39,0x65,0x2d,0x8,0x65,0xc7,0xce,0x41,0x3b,0x43,0x67,0x8e, 0xe4,0x3,0x55,0x17,0xd0,0x4d,0x3d,0xcd,0x4b,0x1d,0x5e,0x11,0x6b,0x18,0xbc,0xc2, 0x1c,0x91,0xbd,0xb6,0x90,0x79,0x3e,0x9d,0x28,0x9e,0x58,0x1e,0x45,0x4b,0x66,0xde, 0xcc,0x31,0x88,0xf3,0xb4,0x7b,0xd3,0x4c,0x30,0xbe,0x21,0x30,0x4a,0xae,0xa3,0x3b, 0xb2,0x40,0xfc,0x8,0xe0,0xfe,0x75,0x2a,0x9,0x62,0x45,0x64,0x5d,0xb1,0xa9,0xea, 0xea,0x6a,0xee,0x4d,0xcb,0xc6,0xca,0xd1,0xe2,0x51,0x24,0x41,0xdc,0x73,0xb8,0x7d, 0xec,0x8e,0x3a,0xd6,0x63,0xca,0x2c,0x4b,0x49,0xb,0x48,0x51,0x9b,0x0,0xec,0xf9, 0x5b,0xd3,0x26,0xa7,0x8e,0xfa,0xd4,0x3e,0x5a,0x42,0xb9,0x27,0x2a,0x43,0x60,0xd5, 0x66,0xd3,0xa2,0x81,0xa2,0xd8,0x65,0x58,0xf,0x28,0x7c,0xe1,0x85,0x3e,0xd9,0xa2, 0xc0,0xf5,0x23,0x9e,0x6f,0xb5,0xc6,0x56,0x15,0x93,0xcf,0xdb,0xfe,0xac,0xb0,0x19, 0x3e,0xdc,0xd4,0x6b,0x1d,0xdc,0x53,0x14,0x85,0x24,0xb2,0x6e,0x37,0x3b,0x80,0xca, 0x6,0x3a,0x9a,0x8e,0xfb,0x48,0x95,0xa,0xdc,0xda,0xcb,0x31,0x95,0xe,0xe2,0x9, 0x52,0xd,0x46,0xf2,0xea,0xd2,0xda,0x3a,0xb4,0x92,0x32,0xb0,0xc3,0xc,0xae,0x70, 0x7d,0x85,0x55,0x87,0x76,0x68,0xe9,0x53,0x4f,0x7e,0xd2,0xac,0x97,0xe2,0x56,0x8c, 0xd,0xa1,0x40,0xc1,0xeb,0xcf,0x18,0xcf,0x4a,0x9a,0x7b,0x1b,0x95,0x8f,0x7b,0x34, 0x32,0xa8,0xce,0x55,0x97,0x24,0x7b,0xe6,0xb2,0x6d,0x6c,0xa7,0xb5,0xb9,0x52,0x11, 0x88,0xb,0xb4,0x79,0x4e,0x15,0x97,0xf3,0xad,0x9f,0x36,0xef,0xec,0x6e,0xb7,0xa, 0x58,0x60,0x80,0xca,0x32,0x4f,0xd7,0x6,0x86,0xac,0x24,0xee,0xb5,0x30,0xe0,0x88, 0xb5,0xeb,0x36,0x9e,0xaa,0xe1,0x3a,0x95,0x1,0x4f,0xd0,0x82,0x79,0xab,0xcb,0x63, 0x15,0xd5,0xc0,0x17,0x72,0xcd,0x1b,0xe7,0xee,0x64,0x5,0x6f,0xd3,0xfa,0xd5,0xdb, 0xb,0x1d,0x3e,0xda,0x11,0x3a,0x46,0x86,0x47,0x1f,0x31,0x3,0x24,0x1f,0xe9,0x5a, 0x4d,0xc,0x72,0x1,0xbd,0x15,0x94,0x9e,0x84,0x52,0xe6,0x7d,0x2,0x2a,0xc8,0xc1, 0x92,0xdf,0xfb,0x11,0xcd,0xcc,0x2d,0x27,0xd9,0x26,0x6c,0xcc,0x99,0xc9,0x56,0xfe, 0xf8,0x1d,0xfd,0xf1,0xe9,0x57,0xe3,0xb8,0x8d,0xc0,0x22,0xe5,0x19,0x58,0x65,0x59, 0x4f,0xde,0xf7,0xa8,0x35,0xb,0x38,0xe0,0x84,0xb8,0x53,0x2c,0x58,0x23,0xca,0x27, 0xee,0xfd,0x3d,0xbd,0x45,0x62,0xe9,0xfa,0x80,0xb5,0x94,0x59,0x4d,0x20,0x8a,0x7, 0x7f,0xf4,0x79,0x99,0xf2,0x13,0xd1,0x49,0xe3,0xf0,0xa8,0x94,0x1b,0xd4,0xb5,0x2e, 0xe7,0x41,0x26,0xc6,0x25,0xda,0x77,0x7,0xd5,0x8,0xfe,0x95,0xb,0x4d,0x6e,0xa7, 0x8b,0x99,0xd9,0xbd,0x79,0xcf,0xf2,0xa9,0xdb,0x7e,0x7,0xef,0x11,0x5b,0x1c,0x9c, 0xf1,0xfc,0xea,0x16,0x93,0x69,0xdc,0xf7,0xf1,0x91,0xfe,0xc9,0x15,0x95,0xed,0xa1, 0xa6,0xc2,0x34,0x91,0x13,0xff,0x0,0x2f,0x4f,0x9e,0xe0,0x13,0x4d,0x8d,0x63,0x5e, 0x4a,0x5d,0x37,0x39,0xc3,0x29,0xa9,0x56,0xea,0x20,0x70,0x6e,0x90,0xf1,0xd7,0x3c, 0x55,0x69,0xa7,0xb7,0x43,0xb9,0xaf,0xe7,0xe7,0xfe,0x79,0x9c,0x8f,0xd0,0x53,0xbd, 0xc2,0xe7,0x55,0xe1,0x97,0x2c,0xf7,0x63,0x66,0xd0,0x2,0x63,0xdf,0xef,0x57,0x41, 0x5c,0xe7,0x85,0x26,0x8e,0x75,0xba,0x68,0xdc,0xb0,0x1b,0x6,0x48,0xc7,0xf7,0xab, 0xa3,0xaf,0x57,0xd,0xfc,0x24,0x72,0x55,0xf8,0xd9,0x91,0xae,0x31,0x51,0x9,0x7, 0x0,0x6,0x24,0xfe,0x55,0x8a,0xd3,0x7,0xf,0xb5,0x81,0xc,0x3a,0x81,0x83,0x5b, 0x9a,0xc8,0xd,0xe4,0x83,0x8c,0x1d,0xd9,0xcf,0xe1,0x59,0x51,0xa1,0x39,0x8,0xa9, 0xb4,0x1e,0x2b,0x8f,0x10,0x9b,0xa8,0xcd,0x21,0xf0,0x8c,0xdc,0x42,0x6,0x6c,0xe0, 0xc,0xd4,0x2a,0xa0,0xfe,0xf7,0xca,0x52,0x9,0xfe,0x2e,0xff,0x0,0x85,0x5c,0x55, 0x1c,0xf9,0x87,0x71,0xf6,0xe8,0x28,0x74,0x4,0x60,0x82,0x46,0x38,0xc5,0x63,0xc8, 0xcb,0x18,0x17,0x2b,0x9f,0x2a,0x31,0xed,0xb7,0xa5,0x20,0x91,0xcb,0xc,0xca,0xa9, 0xd8,0x0,0xb4,0xb8,0x65,0x4c,0x63,0x71,0x3,0xa9,0x14,0xe7,0x9,0x94,0xb,0x12, 0xab,0xf0,0x73,0xd3,0x34,0xd2,0xb,0x91,0xc4,0x5e,0x36,0x2d,0xb9,0x40,0x3c,0x93, 0x8a,0x95,0xa4,0x5,0x30,0x1b,0xf4,0xa0,0x17,0x55,0xf2,0xca,0x83,0xeb,0x4d,0x46, 0x6d,0xa4,0x92,0xa0,0xe,0xd4,0xf6,0x1,0x8a,0x48,0x39,0x2c,0x7f,0x2a,0x72,0x16, 0x60,0x7e,0x72,0xc7,0xde,0x9d,0x21,0x3b,0x81,0x18,0x39,0x18,0x0,0xa,0x8c,0x44, 0x73,0x96,0x7d,0xb9,0xe3,0x2,0xa1,0xab,0x30,0x1e,0xc4,0x2a,0xff,0x0,0x77,0xdf, 0x14,0xd5,0x20,0x44,0x3c,0xc6,0xc9,0xf5,0x35,0x20,0x81,0x36,0x10,0x64,0x66,0x3, 0xde,0xa0,0x36,0x82,0x46,0xc9,0x2e,0x31,0xd8,0xb5,0x16,0x60,0x2a,0xab,0x2,0xe, 0x70,0xbe,0xf4,0xe0,0xea,0xc8,0xcf,0xb7,0x20,0x71,0x8c,0x72,0x69,0xae,0x90,0x47, 0x1e,0x37,0x31,0x27,0xb8,0xc9,0xa2,0x26,0x8a,0x23,0xf3,0x13,0x93,0xd0,0x9a,0x2f, 0xd1,0x80,0x4a,0x24,0x4b,0x60,0xe1,0x4a,0xe7,0xb7,0xa5,0x4e,0x1,0x5d,0xaa,0x32, 0x4e,0x3a,0xd3,0x65,0x78,0xe4,0xc4,0x6c,0x78,0x22,0x9e,0x48,0x54,0x1b,0x80,0xc0, 0x3e,0xbd,0xa9,0xbd,0xec,0x21,0xa7,0x77,0x99,0x8e,0x9d,0xc9,0xa1,0xc8,0xb,0x81, 0xc7,0x3d,0xe9,0x5a,0x78,0x10,0xf5,0x40,0x7a,0x82,0xd8,0xff,0x0,0x1a,0x86,0x5b, 0xd8,0xf8,0x62,0xe8,0xdc,0xfd,0xd4,0xc6,0x4f,0xeb,0x43,0x48,0x2c,0x3c,0xc8,0x4b, 0x5,0x53,0xc8,0x19,0x23,0x1c,0x52,0xc7,0x24,0x48,0xa4,0xee,0x67,0x3e,0xe6,0x9a, 0xb7,0x2,0x42,0xa,0x1e,0x4e,0x14,0xa9,0xeb,0x8a,0x8d,0xae,0x22,0x86,0x72,0x36, 0x2a,0x8e,0x46,0x14,0x72,0x6a,0x6f,0x60,0x2e,0x26,0xa,0x6e,0x6c,0x8e,0xfd,0x6a, 0x43,0x82,0xb8,0x51,0x9c,0x1a,0xab,0xf6,0xa1,0x26,0x52,0x38,0x9c,0x80,0x3b,0x8f, 0xeb,0x42,0x31,0x77,0x2d,0xf3,0x7d,0x5,0x5f,0x30,0xac,0x5a,0x2b,0xc1,0xfc,0xe9, 0x2,0xa8,0x0,0x9e,0xbd,0x6a,0x7,0x2c,0x30,0x7a,0xe3,0x9a,0x6e,0xe2,0x58,0xb3, 0x82,0xab,0xe8,0xf,0xde,0xa4,0xda,0x61,0x61,0xdb,0x37,0x6e,0x52,0x30,0xc4,0xe7, 0x9e,0x69,0xf1,0xa3,0xa8,0x25,0xdd,0x40,0x1d,0xb8,0xa8,0x3,0x33,0x6,0x62,0x15, 0x40,0x1d,0x71,0xc9,0xa0,0x47,0xb,0xc7,0xbd,0x98,0x1e,0xe4,0xd1,0xa2,0xb,0x16, 0xe3,0xdb,0x9e,0xa,0x93,0xdf,0x9a,0x40,0xe8,0xec,0x70,0xc7,0xf0,0xaa,0xdb,0xb7, 0xa6,0xd4,0x70,0xa0,0xc,0x8a,0x88,0x86,0x91,0x94,0x2,0xa7,0xd4,0xfa,0x53,0xe7, 0x41,0x63,0x41,0xdc,0x22,0x8f,0x9b,0x19,0xe3,0x26,0x99,0x24,0xd1,0xa2,0x33,0x97, 0xc2,0x20,0xdc,0x49,0x3d,0x2a,0xae,0x54,0xca,0xa8,0xa0,0x75,0xe7,0x2,0xa8,0x6b, 0x92,0x83,0xa7,0xc9,0x6c,0xa5,0x23,0x69,0xdd,0x60,0xc,0xc7,0xfb,0xc4,0x3,0xc7, 0xd3,0x34,0xef,0x70,0xb0,0xcd,0x12,0x18,0x9a,0xd4,0x5e,0x4f,0xb6,0x49,0xa4,0x1e, 0x71,0x50,0xb9,0x3f,0x37,0x3f,0xd6,0xb4,0x6f,0x24,0x8f,0x52,0xb3,0x92,0x8,0x2e, 0x51,0x5c,0xe3,0x2a,0x70,0x38,0x4,0x1e,0x47,0xa1,0xaa,0xfa,0x71,0x65,0x9b,0xcb, 0x58,0x65,0x16,0xb2,0x42,0xa9,0x11,0x23,0xf8,0x57,0x38,0x3f,0x8d,0x40,0xb6,0x6, 0xd6,0xcd,0xa4,0x9e,0x11,0x71,0x34,0x6b,0x9f,0x98,0x80,0x30,0x3a,0x75,0xc6,0x7f, 0x5a,0xb4,0xec,0xc,0x9e,0xdd,0x74,0xfb,0x8,0xa1,0x17,0x12,0xc5,0x3c,0x8a,0xdf, 0x28,0x8c,0x2,0x77,0x7b,0xe,0xbf,0x8d,0x51,0x66,0xf3,0x1a,0x79,0xa3,0xb3,0x9b, 0x77,0x9a,0x65,0x5c,0xa9,0xf9,0x0,0x39,0x27,0xd3,0xd6,0xaa,0x45,0x25,0xe9,0x8c, 0x3c,0xb1,0x48,0x11,0xc9,0x8,0x16,0x0,0x10,0x67,0x9c,0x28,0xeb,0xf8,0xd6,0xb1, 0x5d,0x42,0xef,0x4f,0x11,0xce,0xb3,0xa2,0x92,0x6,0x0,0xc1,0x7f,0xf7,0xb9,0xc8, 0x15,0x4c,0x5b,0x92,0xac,0xe9,0x34,0x42,0xe5,0xb0,0x5d,0x94,0xaa,0x0,0xb8,0x3d, 0xc7,0xe7,0x54,0x5d,0x2f,0xed,0x4c,0x33,0x45,0x6b,0x26,0x16,0x30,0x9,0x45,0xc7, 0xcd,0xce,0x49,0x19,0xc9,0xad,0x1d,0x3e,0xd2,0x11,0xe6,0x93,0x18,0x8d,0x1a,0x62, 0xa9,0xc9,0xe5,0x71,0xdb,0xb8,0xe7,0x35,0x62,0xf2,0xe6,0x1d,0x39,0x23,0x69,0x24, 0x28,0xb8,0x3b,0x57,0xab,0x31,0xf6,0xef,0x42,0x43,0xb9,0x42,0x16,0x86,0xcd,0xda, 0x49,0x6e,0x60,0x82,0x19,0xb0,0xd1,0xc6,0xf2,0x61,0x97,0x23,0x7,0xaf,0x6c,0xf3, 0xf8,0xd4,0xef,0x22,0xc7,0x6d,0xfb,0xa3,0xb8,0xc8,0x76,0xab,0x3,0xbb,0x93,0x55, 0x6d,0x35,0xf,0xb7,0x59,0xc8,0x8b,0x67,0xf,0x94,0x49,0x4f,0x9d,0xf2,0x33,0x9e, 0xfe,0xbf,0x9d,0x51,0xb6,0xb0,0xb8,0xd1,0xa,0xc9,0x34,0x8a,0xb0,0xc8,0xc1,0x24, 0x74,0xcb,0x22,0xa6,0x3a,0xe3,0xd7,0xde,0x84,0x4b,0x64,0xd1,0xe9,0xac,0x75,0x9, 0xa5,0xdf,0x23,0x13,0xf3,0x44,0xa9,0x8,0x0,0x37,0xa9,0x35,0x14,0xda,0xb4,0x72, 0x23,0xda,0x5c,0x89,0xa6,0x99,0x58,0xe6,0x54,0x2b,0x85,0x23,0xe8,0x46,0x7f,0xa, 0x4b,0x9d,0x49,0x6e,0x56,0x54,0xf2,0xe1,0x92,0x3c,0x95,0x5b,0x80,0x58,0xd,0xbf, 0x42,0x3a,0xd3,0xf4,0x6d,0x25,0x67,0xb5,0x8a,0x59,0x8a,0x8b,0x48,0xe5,0x62,0xb1, 0x64,0xfc,0xec,0x38,0xcb,0x1f,0x41,0xcf,0x3,0x14,0x27,0xa8,0x93,0x2c,0xe9,0x33, 0x4d,0x6e,0xcf,0x3,0x5b,0x4a,0xde,0x60,0x7,0x85,0xe8,0x7d,0xf3,0xf5,0xa7,0xdf, 0x4b,0x2d,0xc5,0xda,0x45,0x38,0x9a,0xdd,0x2d,0x65,0x57,0x40,0x20,0xde,0x24,0x61, 0xd3,0x91,0xf5,0xfd,0x6a,0xe1,0x9e,0xdd,0x19,0xad,0xa1,0x9d,0x51,0x98,0xec,0x2f, 0xbb,0xbf,0xb9,0xf5,0xeb,0x59,0x17,0xb6,0xf7,0xd6,0xed,0xf6,0x9b,0x55,0x92,0x75, 0x8c,0x6e,0x6f,0x9f,0x23,0x83,0xc9,0xea,0x32,0x4e,0x3b,0x7a,0x52,0x77,0xd8,0xbb, 0xf,0xbd,0x4b,0x96,0xd5,0xed,0x1a,0xe1,0x89,0x8a,0x42,0x5a,0x30,0x4e,0xa,0x0, 0x30,0x7f,0x3d,0xde,0xb5,0x7c,0x5a,0xda,0x5d,0x1d,0xcf,0x1,0x66,0x4,0xe4,0x92, 0x48,0x1f,0x95,0x55,0xba,0x32,0x5e,0x6a,0x96,0x4d,0x11,0x10,0x93,0x3,0x48,0x58, 0x0,0x48,0xfb,0xbf,0xcb,0x35,0x6c,0xd9,0x4c,0xb9,0x3f,0x6c,0x9f,0x71,0xe4,0xb2, 0xe3,0xfc,0x31,0x59,0xbd,0xca,0x5,0xb2,0xb5,0x56,0xf9,0x6c,0xf0,0x3b,0xfc,0x99, 0x7,0xf5,0xa6,0xa5,0xa4,0x4b,0x30,0x7f,0xb3,0x28,0xe7,0xa6,0xd0,0x29,0x44,0x13, 0x23,0x1c,0x6a,0x33,0xca,0x31,0x93,0xb8,0x1,0xb7,0xf2,0x2,0x9f,0x1c,0x46,0x45, 0x52,0x66,0x94,0xb7,0x53,0xf3,0x52,0x60,0x3a,0x4b,0x77,0x91,0xc3,0x5,0xa,0x53, 0x90,0x73,0xde,0x89,0x9a,0x43,0xc4,0x89,0x8,0x38,0xce,0xe6,0x3c,0x9f,0xa0,0xc5, 0x24,0x9e,0x5b,0x1f,0x99,0x77,0x1,0xd3,0x39,0xa1,0x21,0x88,0x39,0x65,0x83,0x24, 0xf1,0xd6,0xa4,0x6,0x3b,0xbb,0x22,0xe6,0x68,0xd4,0x1e,0x6,0x17,0xff,0x0,0xaf, 0x50,0xc7,0x23,0x65,0x58,0xc8,0x70,0x78,0xe1,0x5,0x4d,0x71,0x0,0x11,0xe1,0x63, 0x55,0x18,0xcf,0x7,0x26,0x97,0x19,0x60,0xc5,0x42,0xfc,0xb8,0x51,0x8e,0x82,0xa7, 0x51,0xa2,0x26,0x9a,0x38,0xa3,0x23,0xcf,0x60,0xb9,0xea,0x23,0x3f,0xe1,0x52,0x17, 0x89,0xd4,0x3a,0x3c,0xed,0xd8,0x95,0x4e,0x7f,0x95,0x34,0x44,0x13,0x39,0x94,0x6c, 0xeb,0x86,0x34,0xab,0xb5,0x57,0xe4,0x95,0x6,0x4f,0x1b,0x58,0x67,0xf2,0x34,0xc, 0x8d,0xbc,0xb2,0xc7,0x22,0xf1,0x7d,0xb,0x48,0xc3,0xff,0x0,0x66,0xa8,0xc4,0x69, 0xbf,0x71,0x8a,0xe2,0x46,0x1d,0xfe,0xd0,0xd8,0xfd,0x58,0xd5,0x9f,0x33,0x23,0xe6, 0xb8,0x6f,0x70,0x7,0x3f,0xa0,0xfe,0xb4,0x9b,0x11,0xa4,0xe6,0xe2,0x5e,0x47,0xa, 0x17,0x26,0x9e,0xa2,0xb9,0x2,0x79,0xc5,0x89,0xfb,0xf,0x3,0xfb,0xee,0x18,0x7e, 0xb4,0xe1,0x1a,0x36,0x41,0x8e,0xd5,0x5b,0xae,0xf,0x1f,0xfb,0x2d,0x38,0xc1,0x18, 0x52,0x19,0x24,0x7,0xfb,0xdd,0xcf,0xe7,0x47,0x93,0x1a,0x61,0xd8,0x4a,0xab,0x8e, 0xec,0x39,0xa1,0xa1,0x8e,0x59,0x2e,0x9c,0xe4,0x3d,0xb9,0x5e,0x99,0xc,0x4e,0x29, 0xb,0x5c,0x39,0x68,0xd6,0x78,0xd4,0x8f,0x48,0xb3,0xfd,0x69,0xea,0xc0,0xc6,0x48, 0x8b,0x2b,0xd8,0x74,0xfe,0x94,0xd1,0xe6,0x99,0xf7,0x18,0x70,0x8,0xc7,0xde,0xe9, 0x40,0x11,0x43,0x4,0xe8,0x48,0x7b,0xb9,0x1c,0x1f,0xee,0xae,0x3f,0xa1,0xa7,0x18, 0x37,0x1d,0xcd,0x34,0xbd,0x31,0x85,0x5c,0x1f,0xce,0xa4,0x5,0xb0,0xc3,0x20,0x1, 0xdc,0x67,0x9a,0x7e,0x1,0x8f,0x71,0x6c,0x7a,0x77,0xa4,0x26,0xc8,0x8c,0x31,0xf9, 0x58,0x7f,0x3d,0xbe,0xae,0x47,0xf2,0x22,0x91,0xa3,0xb7,0x84,0x8d,0xdb,0x8e,0xe1, 0x85,0x19,0xa9,0x46,0x1b,0xaf,0x4e,0xa0,0x66,0x9c,0xfb,0x1d,0x40,0x6c,0x9c,0x1d, 0xd9,0xc7,0x43,0x4e,0xc2,0x2b,0x2d,0x95,0xb4,0xb9,0x76,0xb3,0x5c,0x8e,0x32,0x63, 0x19,0x3f,0x8e,0x29,0xff,0x0,0x66,0x85,0xa2,0xda,0x6d,0x21,0x8,0x3a,0x6,0x50, 0x73,0xfa,0x54,0x92,0x31,0x59,0x3,0x6f,0x90,0xae,0x39,0xe0,0xe2,0x8e,0x19,0x41, 0x53,0x9f,0xa9,0xa3,0x61,0xa2,0x6,0x82,0x45,0x52,0x23,0x8a,0x23,0xb4,0x64,0x46, 0xa7,0x1f,0xa0,0x22,0x94,0xc3,0x34,0x91,0x66,0x4b,0xaf,0x25,0xb1,0xf7,0x0,0xc7, 0xf2,0x35,0x61,0x41,0x52,0x23,0x78,0xf9,0x27,0xae,0x79,0x35,0x1c,0x8c,0xa2,0x43, 0x1e,0xc5,0x2c,0xbd,0x99,0xb1,0x48,0x4c,0x8d,0x7a,0x4,0x7b,0x95,0x7e,0x39,0xca, 0xe4,0xd0,0xca,0x8a,0xe3,0xf7,0xcc,0x0,0xe7,0x3b,0x2a,0x52,0x93,0x7c,0xaf,0x1c, 0x28,0x57,0xf8,0xb0,0x73,0x8f,0xaf,0x4a,0x8f,0xf7,0xd2,0xfc,0xe0,0x40,0xcb,0xed, 0x9e,0x28,0x1,0x48,0x8c,0xc7,0xbd,0x64,0x9d,0x8e,0x7a,0xb3,0x10,0x3f,0x2c,0xd3, 0x51,0x22,0x66,0x38,0x8d,0x8b,0xe,0x7e,0xf6,0x41,0xfc,0xcd,0x3d,0x5a,0x44,0x24, 0x16,0x8,0x4f,0x45,0x55,0xc9,0xff,0x0,0xeb,0x54,0x32,0x14,0xc,0x4f,0x98,0x1a, 0x40,0x39,0xe9,0x4c,0x64,0x85,0x44,0x8e,0x1c,0xa6,0x54,0xc,0x6d,0x26,0x92,0x28, 0x9d,0xa7,0x79,0x25,0x1,0x50,0x8c,0x4,0xe9,0xfc,0xaa,0x32,0xbb,0xa1,0x73,0x6d, 0x38,0x32,0x63,0xa1,0x3f,0x2e,0x7d,0xf1,0x4c,0x4b,0x9c,0x42,0xab,0x26,0xff,0x0, 0x34,0x7d,0xe6,0x24,0xed,0x27,0xbe,0x33,0xda,0x90,0xcb,0x2c,0xe9,0x2,0xaf,0x9a, 0xdb,0x0,0xce,0x1,0xe4,0xf4,0xf4,0x15,0x9f,0x6a,0x76,0x6b,0x33,0xc6,0xae,0x3c, 0xab,0x85,0x13,0xa0,0xce,0x31,0xb7,0xa,0x7f,0x4c,0x1a,0xb0,0x66,0x1,0xff,0x0, 0x75,0x1c,0xee,0x48,0xe0,0xaa,0xe1,0x7,0xe2,0x6a,0x8e,0xaf,0x22,0x5a,0xcb,0x63, 0x77,0x1e,0xd0,0xf1,0xcc,0x37,0xb1,0xff,0x0,0x9e,0x6c,0x40,0x61,0xfd,0x7f,0xa, 0x68,0x2d,0x73,0x72,0x41,0x33,0x83,0xb6,0x45,0x0,0xf4,0x57,0x51,0xcf,0xe7,0x42, 0xef,0xf2,0xf2,0x1d,0x54,0xfa,0x90,0x30,0x2a,0x38,0x8b,0x34,0x91,0x85,0x42,0x62, 0xd8,0x1,0x24,0xfe,0xb5,0x2a,0x85,0xa,0x4a,0xa2,0x1c,0xf7,0x7,0x91,0x4c,0x96, 0x24,0x65,0x99,0x32,0xd7,0x4e,0x72,0x71,0x9d,0x8a,0x1,0xfd,0x29,0x42,0x8f,0x33, 0x2,0xe6,0x53,0x83,0x92,0x1,0x0,0x7e,0x82,0x9b,0x24,0x52,0xb4,0x58,0xc2,0x9e, 0x41,0xf9,0x4e,0x48,0xa9,0x14,0x4d,0xb4,0xef,0x28,0xa4,0x74,0x20,0x7f,0x3a,0x11, 0x20,0xeb,0x1e,0x77,0x2f,0x98,0xc3,0x39,0x3c,0x9e,0x3f,0x2a,0x85,0xa3,0x4c,0xf3, 0x13,0xb2,0x13,0x90,0x9,0x23,0xf9,0xd2,0xb3,0xcd,0xbf,0x26,0x64,0x9,0x8e,0x48, 0x19,0xfd,0x29,0xe2,0x36,0x51,0x96,0x9d,0xb1,0xd4,0xed,0xc0,0xfe,0x94,0xfa,0x80, 0xd1,0x69,0x9,0x6f,0x32,0x3b,0x70,0x5c,0x75,0x4,0xf1,0xfc,0xe9,0xee,0x91,0x8d, 0xa5,0x6d,0x23,0x4,0x74,0x3,0x6f,0x34,0xc5,0xd9,0x21,0x1b,0xde,0x46,0xf7,0xcf, 0x4f,0xc8,0x53,0xd6,0x24,0xcf,0x52,0x47,0x4d,0xc3,0x20,0xd3,0x0,0x1,0xa5,0x73, 0x1b,0xac,0x4c,0x0,0xce,0xd5,0x73,0xc7,0xe2,0x29,0xc7,0x23,0x0,0x2a,0xa9,0xec, 0x1,0x3f,0xce,0x8f,0x2c,0xf9,0x99,0x53,0x84,0x3,0x8c,0x8e,0x7f,0x9d,0x40,0x42, 0x89,0x8b,0x15,0x66,0x50,0x32,0xc2,0x81,0xd8,0x56,0x1e,0x64,0x89,0x23,0xcc,0xb1, 0xb2,0x1e,0xaa,0xc0,0xe7,0xeb,0x4e,0x55,0x48,0xce,0xd3,0x72,0x2,0x75,0xc0,0x38, 0x22,0x9c,0x4,0x65,0x78,0xb7,0x50,0x8d,0xce,0x70,0x33,0x48,0x22,0xe,0xe0,0x85, 0x46,0xc7,0xa8,0x7,0x14,0x98,0xc1,0x64,0xf9,0x8f,0xef,0x79,0xff,0x0,0x65,0x9, 0xfc,0xf8,0xa2,0x49,0xa2,0x0,0x6e,0x92,0x5d,0xd9,0xe8,0x1,0x2,0x9e,0x30,0x62, 0x1c,0x74,0x6c,0x52,0xa4,0xe8,0x55,0x8e,0x39,0x53,0x83,0xc5,0x52,0x42,0x23,0x8e, 0x58,0xd9,0x8e,0xd1,0x21,0xf5,0x3b,0xbf,0xc4,0xd2,0x7c,0xea,0xd8,0x5b,0x67,0x7f, 0xf6,0xb7,0x81,0xfd,0x6a,0x66,0x90,0x12,0x2,0xb7,0xe1,0xd2,0xa3,0x82,0x47,0x70, 0xc6,0x71,0xb4,0xe7,0xa2,0x93,0x40,0x0,0xde,0x58,0xe2,0xd8,0xc,0x72,0x1d,0x9f, 0x3c,0xfe,0x15,0x1e,0xcb,0xb7,0x8c,0x21,0x30,0xf,0xf6,0xb9,0x6,0xa7,0x32,0x20, 0x6c,0xee,0x1b,0x4f,0x3,0x9a,0x6b,0x63,0x7e,0x55,0x33,0xee,0x5a,0xa7,0x70,0x45, 0x57,0x49,0xa3,0x42,0x8f,0x72,0x1,0xfe,0x17,0xd9,0x9c,0x55,0xa8,0xfc,0xcf,0x29, 0x7,0x9e,0xc7,0x3,0x93,0x81,0xcd,0xd,0x19,0x93,0x9,0x83,0x83,0x8e,0x33,0x4b, 0xb4,0x26,0x42,0xc6,0x0,0x1d,0x40,0xe6,0x8b,0xd,0x8d,0xc0,0x2e,0x47,0x9d,0xf3, 0x75,0xc8,0x14,0x8f,0x18,0xca,0xef,0x95,0x99,0x4f,0x7a,0x91,0xe4,0x29,0x8c,0xb6, 0xcc,0xf0,0x5,0x1,0x58,0xca,0xa4,0x7c,0xc4,0x8c,0x7b,0x53,0x12,0x2a,0x88,0x8f, 0x9d,0xb4,0x2d,0xc0,0x3,0xee,0xba,0xca,0xdc,0xd4,0xa2,0x14,0x19,0x3b,0x71,0xea, 0xe,0x5b,0xf9,0xd2,0x89,0x1b,0x6b,0x2,0x14,0x6d,0x3d,0xe9,0xbb,0x15,0xdc,0xba, 0x7c,0xb8,0x19,0x6f,0x96,0x8b,0xc,0x23,0xb6,0x83,0x25,0xa3,0xb7,0x42,0x7e,0x83, 0xfa,0xd3,0xd1,0x36,0x8e,0x55,0x54,0xe7,0xd2,0x9c,0xfb,0x54,0x3,0xd4,0x13,0xe9, 0x4a,0x32,0xbd,0xdb,0x7,0xa0,0xcd,0x20,0x12,0x4f,0xef,0x6d,0x51,0x8e,0xe2,0x9a, 0x9,0x63,0x92,0x50,0x8f,0x5c,0xe7,0x14,0xd9,0x64,0x11,0x92,0x24,0xa,0x41,0xe0, 0x1f,0x5a,0x22,0x74,0xf2,0xb1,0x82,0xab,0xd0,0x63,0xbd,0x16,0xb,0xe,0x0,0x2f, 0x20,0x83,0x9f,0x43,0x55,0x2f,0xec,0x53,0x50,0xb7,0x30,0x33,0xb2,0x30,0x21,0x91, 0xd4,0xe0,0xab,0x3,0xc1,0x7,0xd6,0xac,0x82,0x43,0xee,0x4,0x10,0x6,0x0,0xc5, 0x32,0x59,0xe3,0x40,0xc,0xa5,0x37,0x76,0x1b,0x80,0xe6,0x8d,0x86,0x72,0xb0,0xde, 0xcf,0x26,0xa1,0x35,0xae,0xa3,0xa8,0xb5,0xa5,0xcd,0xb9,0xc0,0xfd,0xd1,0xdb,0x22, 0xff,0x0,0x78,0x10,0x78,0xcf,0xa5,0x5e,0xb2,0xb9,0x96,0xe0,0x34,0x4c,0xc1,0xd8, 0xc,0xab,0x22,0xb1,0x43,0xd7,0x83,0xd8,0x76,0xa9,0xf5,0x98,0xe3,0x99,0x12,0xf1, 0x42,0x97,0x87,0x1b,0xb0,0x7f,0x84,0xf0,0x41,0xac,0x98,0x4f,0x94,0xbe,0x62,0x48, 0x10,0x1f,0xe3,0x88,0x91,0x91,0xef,0xc9,0x1f,0xa5,0x68,0x9d,0xd0,0x9d,0x8b,0xe6, 0xea,0xea,0x1b,0x8f,0xb3,0x5d,0xdb,0x18,0xb7,0x63,0x69,0x72,0x2,0x90,0x7d,0xea, 0x4,0x57,0x92,0xed,0x61,0x60,0xb1,0x98,0xcf,0x54,0x93,0x23,0xeb,0xef,0x53,0x68, 0xeb,0x77,0x71,0x79,0x3c,0xab,0x30,0x96,0x1d,0xbb,0x0,0xdf,0xbb,0x9f,0xa5,0x5f, 0xf3,0x87,0xda,0x44,0x17,0x2c,0xde,0x73,0x10,0x15,0x2,0x93,0x9c,0xf1,0x81,0x8a, 0x6b,0x72,0x6e,0x91,0x56,0xea,0x4b,0xb1,0xe,0xc8,0xe6,0x46,0x62,0x30,0x49,0x19, 0x38,0xfc,0xea,0xd,0x1e,0x5b,0x16,0x84,0x2c,0x92,0x9f,0xb5,0x74,0x22,0x63,0x83, 0xf8,0x55,0xa6,0xb3,0xd5,0x62,0xd5,0xcb,0xfd,0x85,0x9e,0x22,0xa4,0x29,0x8,0xc7, 0x8e,0xd9,0xa4,0xd6,0xbc,0x37,0x2d,0xc4,0x6b,0x75,0x14,0x12,0x2d,0xc2,0xe3,0x2b, 0x1a,0x13,0x91,0xee,0x31,0xfd,0x6a,0xb9,0x5f,0x61,0x5e,0xe4,0x52,0xc5,0x33,0x3c, 0x9f,0x2c,0x82,0x33,0xd0,0x33,0x29,0x22,0x99,0x16,0xa7,0xa8,0x45,0x81,0x1c,0x6b, 0x71,0x17,0xdd,0x6,0x42,0xaa,0x41,0xfe,0xb5,0x66,0x3f,0xe,0xdd,0xcd,0x1a,0xc8, 0xca,0x63,0x6c,0x7d,0xdf,0x25,0x81,0x3f,0x5a,0xa7,0x77,0xa1,0xea,0xb7,0x17,0x91, 0x42,0x61,0x92,0x28,0x10,0x70,0xc2,0xd9,0x9d,0x73,0xc7,0x5c,0x63,0x14,0x72,0xf7, 0x15,0xc7,0xc0,0xaf,0xc,0x2d,0xa8,0x5a,0xc8,0x5e,0x29,0x3e,0x69,0x23,0x27,0xf3, 0xc7,0xeb,0xc5,0x59,0x83,0x59,0x8d,0xb5,0xf,0xb3,0xb6,0x10,0xba,0xee,0x8d,0x99, 0x48,0xdd,0xf5,0xcd,0x32,0x1b,0x5d,0x53,0x48,0x66,0x82,0x4d,0x3e,0x4b,0x8b,0x79, 0x18,0xb2,0xb5,0xba,0x31,0x3,0x23,0x91,0x80,0x32,0xb5,0x56,0xeb,0x4a,0xd5,0x92, 0xde,0x4,0x4b,0x29,0xe7,0xb6,0x8d,0x89,0x50,0xb1,0x30,0x91,0x33,0xd7,0x3,0xfc, 0xf4,0xa5,0xc8,0xd9,0x4a,0x44,0xfa,0xc0,0xd4,0x1a,0x28,0xa2,0x59,0x44,0x41,0xb2, 0x1b,0x6a,0xf0,0x46,0x7f,0xbd,0xdb,0xf2,0xaa,0x10,0xd8,0x5b,0x4d,0x6f,0x73,0x15, 0xd7,0x91,0x71,0x23,0x80,0x8a,0x8b,0xfc,0x20,0x67,0x90,0x7d,0x79,0xeb,0x5b,0xfa, 0x75,0xb5,0xe7,0xd9,0xf6,0xbd,0xb5,0xd9,0x39,0xcf,0xef,0x22,0x6c,0xe3,0xf1,0x1e, 0xd5,0x2d,0xee,0x99,0x75,0x34,0x65,0x52,0xd6,0x54,0x25,0xb3,0x95,0x8b,0xb5,0x25, 0xcd,0x1d,0x2c,0x4b,0x8a,0xdc,0xe7,0xf4,0x9b,0xa9,0xa0,0x54,0xd3,0xee,0xa1,0xc, 0xe8,0x2,0xc5,0x2b,0xe0,0x6f,0x1e,0x87,0xe9,0xeb,0x5a,0xa6,0x39,0x89,0xf9,0x2c, 0xed,0x90,0x8e,0xee,0x3f,0xc2,0x92,0xf7,0x4f,0xbb,0x4f,0xf5,0x56,0x57,0x12,0xa3, 0xf,0xb9,0xe5,0xb2,0x95,0x3e,0xa0,0xe2,0xab,0x59,0xc5,0x7f,0x75,0x11,0x12,0xd9, 0x6a,0x70,0xca,0x84,0x86,0x59,0x63,0x6c,0x11,0xea,0xe,0x31,0x59,0xb8,0x49,0xeb, 0x62,0xf9,0xd3,0x65,0xc5,0x59,0xa3,0x51,0x81,0x8,0x62,0x72,0x46,0xde,0x3f,0x2a, 0x8e,0x44,0xbb,0x7,0x72,0xc9,0x0,0xef,0xca,0x9c,0xa,0xb3,0x1d,0xb4,0x88,0x14, 0x1b,0x4b,0xd2,0x71,0xde,0x36,0x34,0x4b,0x1c,0x85,0x1b,0x36,0x17,0x5,0x40,0x24, 0x97,0x84,0x80,0x7,0xe3,0x51,0xcb,0x2e,0xc5,0x2b,0x1b,0x3e,0x15,0x2e,0x63,0xb9, 0xdf,0x22,0xb9,0xf9,0x79,0x51,0x81,0xde,0xba,0x1a,0xe7,0xfc,0x2e,0x8a,0x89,0x73, 0xb6,0x30,0x99,0xd9,0xc0,0x1f,0x5a,0xe8,0x2b,0xd4,0xc3,0x7f,0x9,0x1c,0xf5,0x3e, 0x26,0x63,0xeb,0x8c,0x3,0x5b,0x86,0x7,0x7,0x77,0x4f,0xc2,0xb3,0x23,0x99,0x10, 0x84,0x2b,0x80,0x3b,0xf5,0xad,0x1d,0x79,0x95,0x5a,0xdb,0x70,0xe3,0xe6,0xfe,0x95, 0x8e,0x5c,0xb0,0x3f,0x20,0xc7,0xae,0x4f,0x35,0xc5,0x88,0x76,0xaa,0xcd,0x69,0xaf, 0x75,0x12,0xb5,0xc2,0x49,0x27,0x96,0xc8,0xa,0x67,0xef,0x73,0x4a,0xf7,0x4,0x4d, 0x86,0x31,0xed,0x3,0xa0,0x6,0x95,0x44,0xdc,0x6d,0x11,0x5,0xfa,0x13,0x51,0x47, 0x1c,0xa0,0xb3,0x48,0x14,0x12,0x78,0x18,0xce,0x6b,0x1b,0xbd,0xcb,0xb0,0xaf,0x7c, 0x9e,0x60,0x8a,0x23,0xbb,0x1c,0xb1,0xcf,0x41,0x41,0xb9,0x25,0xb7,0x28,0x66,0x61, 0xe8,0x3a,0xa,0x8c,0x45,0xe4,0x16,0x2,0x64,0x1b,0x8f,0x23,0x68,0x7,0xf5,0xa7, 0x6e,0x62,0x3f,0xd6,0x1e,0x38,0xc0,0x2,0x95,0xdb,0x1d,0x87,0x89,0x9d,0x94,0xe6, 0x37,0x0,0x9e,0x68,0x32,0x95,0x60,0xa0,0xc,0x8f,0x7c,0x7f,0x3a,0x87,0x62,0x84, 0xdf,0x24,0xaf,0xf4,0xe3,0xfc,0x29,0xaa,0x63,0x79,0x40,0x5,0x82,0x1f,0xf6,0x59, 0xb3,0xfa,0x52,0x77,0x15,0x89,0x4c,0xd2,0xb4,0xbc,0x22,0xc,0x77,0xde,0xd,0x2b, 0x3c,0x92,0x63,0x72,0x27,0x5f,0xa7,0xf5,0xa0,0xc3,0x10,0x24,0x98,0xa4,0xe3,0xd4, 0x10,0x29,0x36,0x2b,0x15,0x9,0x10,0xda,0xdd,0xf1,0x9a,0x7a,0x85,0x86,0x2b,0xc9, 0xbc,0x84,0x64,0x50,0x4e,0x38,0xe6,0xa5,0x12,0x15,0x47,0x91,0xe5,0xcb,0xe,0x30, 0x3b,0xd2,0xac,0x4b,0xb,0x7c,0xb1,0x2a,0xe6,0xa2,0x77,0x91,0x58,0x99,0x58,0x5, 0x7,0xe5,0xe7,0x9f,0xcb,0x14,0x87,0x62,0x74,0x64,0xf2,0xc2,0xb1,0x60,0x48,0xce, 0x7,0x6a,0x88,0x98,0x98,0x8f,0x9e,0x62,0x3d,0xc7,0x14,0xb1,0xc7,0x32,0xe7,0x62, 0x82,0x1b,0x92,0xc4,0xd1,0x1b,0xf9,0x80,0x94,0x65,0x2a,0xe,0x32,0x14,0x81,0xfa, 0xd0,0x2b,0xa,0x44,0x78,0x24,0x82,0x7,0x4c,0x9e,0xf5,0x17,0x99,0x1a,0x85,0x76, 0x50,0x73,0xd0,0x11,0x9c,0xd3,0xd9,0x56,0x41,0xfb,0xcb,0x84,0xdb,0x9e,0x80,0xe2, 0xaa,0x30,0xb7,0x91,0xd5,0x4d,0xe1,0x2b,0x1f,0x1,0x15,0x39,0x3f,0x8d,0x16,0x19, 0x6c,0x92,0x13,0x71,0xc3,0xf7,0xa,0x8,0x19,0xf6,0x14,0x8d,0x3c,0x8a,0xe3,0xe5, 0x8d,0x49,0x1f,0x71,0x7e,0x63,0x9e,0xc3,0x8e,0xf4,0xe5,0x36,0xfb,0x36,0xaa,0xc8, 0x48,0xe8,0x8,0x20,0x67,0xd6,0x91,0x0,0x8e,0xdc,0x13,0xb,0x92,0x4e,0x4b,0x28, 0x27,0x34,0xd2,0x1,0xc8,0x93,0x73,0x23,0xc8,0x99,0x5e,0xa3,0x24,0xe2,0x95,0x55, 0x24,0x18,0x79,0x57,0x9e,0x79,0x5c,0x3,0xf9,0xd2,0xfc,0xc6,0x2d,0xab,0x8,0xc1, 0xe8,0x8,0xc6,0x3f,0x3a,0x8,0x6d,0xc2,0x30,0x37,0x38,0xeb,0xb7,0x81,0xfa,0x51, 0x6b,0x12,0xc2,0x40,0x31,0xb3,0xcd,0x1,0x38,0xe1,0x3b,0xd3,0x63,0x64,0x6d,0xd9, 0xce,0x4f,0xca,0x0,0xce,0x40,0xa5,0x69,0x25,0x6b,0x81,0x13,0x40,0x55,0x36,0xee, 0x2c,0x5b,0x3f,0x86,0x29,0x47,0x98,0x72,0x53,0xe4,0xcf,0x41,0x8e,0x94,0x5c,0x5, 0x2a,0x81,0x4a,0xf9,0x8f,0x91,0xeb,0x9a,0x6a,0xbc,0x31,0x44,0x5d,0x6d,0xe5,0x6e, 0xe4,0x81,0x93,0xfa,0x9a,0xaf,0x33,0x5c,0x95,0x29,0xb2,0x27,0x75,0xe4,0x96,0xeb, 0xfc,0xe9,0xf0,0xb4,0xe1,0xa,0xca,0xf1,0xe0,0xff,0x0,0xcf,0x3c,0x60,0x7e,0x22, 0x97,0x30,0xc9,0xa3,0x99,0x25,0x57,0x54,0x86,0x42,0x3a,0x92,0xd8,0x3,0xf3,0xaa, 0xf9,0x2c,0x86,0x38,0xd1,0xf6,0x8e,0x70,0xbc,0xf3,0xf5,0xab,0x6,0x14,0xf2,0xb6, 0x89,0xa,0xa1,0x39,0xf9,0x7b,0x9a,0x95,0x63,0xc4,0x40,0xc6,0xe4,0x8c,0xf7,0x3, 0x18,0xab,0xd5,0x81,0x59,0x77,0xac,0x81,0x63,0x8c,0x28,0xdb,0x96,0x2c,0x38,0xa9, 0x47,0xee,0x62,0x2c,0x76,0x97,0x39,0xc6,0x5,0x49,0x73,0x1e,0xf8,0xb6,0x82,0x54, 0xb6,0x6,0x56,0xa4,0x44,0xed,0xb0,0x92,0x3f,0x88,0xd1,0xca,0xf6,0x15,0xca,0x6f, 0x79,0x1c,0x68,0xbe,0x6b,0x8,0xb3,0xc8,0xc7,0x52,0x3d,0x6b,0x33,0x58,0xb8,0xb7, 0xb9,0xd4,0x2d,0xa1,0xf3,0xe2,0xdb,0x1a,0xb4,0xb2,0x6,0x3d,0xc0,0xf9,0x71,0xf9, 0x9a,0xe8,0x8,0x6d,0xe0,0xac,0x6a,0x73,0xc6,0x73,0x8c,0xf,0x7a,0xe5,0x6f,0x8c, 0x32,0xbd,0xf5,0xe4,0xd3,0x33,0xb2,0x3c,0x6a,0x90,0xf,0xf9,0x68,0xc7,0x4,0x83, 0xc7,0x4c,0x7a,0x7b,0xd5,0x24,0xd3,0x13,0xda,0xe7,0x5b,0xa6,0xc5,0x24,0x16,0x31, 0x47,0x21,0x62,0xe0,0x72,0x39,0xe3,0x8e,0x9f,0x80,0xc5,0x64,0x78,0x82,0x21,0x7a, 0xc,0x4c,0xe1,0x61,0x85,0x7d,0x88,0xde,0x7a,0x67,0x3d,0x87,0xf5,0xaa,0x90,0xc9, 0x7d,0x77,0x77,0x38,0xf3,0x19,0x55,0x17,0x83,0x1b,0x30,0x19,0xfe,0x10,0xa3,0x3d, 0x73,0x9e,0x4d,0x54,0x92,0xb,0xf1,0xa7,0xba,0xdb,0x5d,0x3a,0x3c,0x80,0x89,0xd4, 0x3f,0xce,0x33,0xd7,0x25,0x87,0x52,0x3d,0x3d,0xab,0x66,0xd1,0x2f,0xb9,0x63,0x44, 0xba,0x68,0xb5,0x18,0xa0,0xf9,0x5f,0xfd,0x1c,0x95,0xf9,0xbe,0xe6,0x31,0xce,0x7d, 0x3a,0xfe,0x75,0xd0,0x8d,0x42,0xda,0x35,0x1,0xee,0x63,0x77,0x6f,0x98,0x85,0x39, 0x20,0x7f,0x3e,0xb5,0x87,0xe1,0xab,0x79,0x22,0x37,0xab,0xe5,0x2a,0x92,0xcb,0xfb, 0xe6,0xfb,0xc7,0xe5,0x1c,0x7e,0x1c,0x7e,0x66,0xad,0x59,0x42,0xda,0xa5,0xc4,0xb2, 0x4b,0x18,0x89,0x23,0x2a,0xad,0x1a,0x2f,0x2e,0x47,0xa9,0xa1,0xbd,0x45,0x1d,0x8b, 0xf1,0x45,0x31,0xb8,0x9d,0xd7,0xfd,0x43,0x7c,0xc9,0x91,0xd1,0xbb,0xe3,0xbf,0xff, 0x0,0xae,0xb1,0xd3,0x4a,0x7d,0x55,0x66,0xba,0x12,0xab,0x24,0x9b,0x95,0x3,0x3f, 0xcd,0x8e,0x9c,0x9e,0xc3,0xaf,0x4a,0xdb,0x9a,0xf5,0xfc,0xe7,0x8a,0x14,0x8d,0x8a, 0xe1,0x77,0xbb,0x71,0x9c,0xf4,0xa4,0xb2,0xd3,0xc5,0xa5,0x8b,0x5b,0xf9,0x8c,0x49, 0x3b,0x99,0x93,0x8f,0x4e,0x7,0xb6,0x0,0xa6,0x87,0x7b,0x18,0x83,0x59,0x45,0xd5, 0x23,0xd3,0x1a,0xc2,0x34,0x88,0xb2,0xc7,0xb7,0x3c,0x64,0x92,0x1,0xc6,0x39,0xe7, 0xbd,0x5d,0xd5,0x81,0x11,0x44,0x92,0x36,0xd8,0x9e,0x45,0x8b,0x60,0x93,0x69,0x39, 0x3d,0x6,0x7a,0xf4,0x3c,0x54,0xf7,0x96,0xf0,0x4b,0x24,0x72,0x88,0x77,0x4b,0x18, 0x22,0x33,0x8e,0x41,0xc8,0x3f,0xd0,0x57,0x2f,0x73,0x69,0x75,0xa9,0xca,0xaf,0x1a, 0xb5,0xc2,0x16,0x8,0xb2,0x48,0xc3,0x6c,0x79,0xc1,0x24,0x8f,0xa7,0x3f,0x80,0xa8, 0xdd,0x82,0xb3,0x3a,0x96,0x3a,0x7c,0x8a,0x2d,0xd5,0x60,0x90,0x85,0x3b,0x62,0x23, 0x2c,0x0,0xfd,0x6b,0x12,0x7d,0x5c,0xdd,0x5c,0x3d,0xa6,0x9b,0x6,0xc8,0x51,0x59, 0x24,0x23,0xb,0xb9,0x8f,0x51,0x8e,0xa0,0xf,0xd7,0x3c,0x53,0x6e,0x2f,0x35,0x3b, 0x1d,0x4e,0x21,0x69,0x2,0x98,0xcb,0x79,0x51,0xa1,0x42,0x4b,0x2f,0x72,0xc4,0x74, 0xfe,0x95,0xb2,0xa9,0x14,0xb7,0x6c,0xf7,0x7e,0x5f,0x3c,0xae,0x17,0x60,0x3f,0x5f, 0xa5,0x53,0xb2,0x7,0xe4,0x73,0x68,0xd7,0x16,0xd2,0xdb,0x48,0xd3,0x5a,0x86,0x92, 0x4d,0xa9,0x4,0x2d,0xbf,0x73,0x13,0x80,0x8,0x38,0x0,0xc,0xf5,0x24,0x9a,0xea, 0x8d,0x99,0xfb,0x3f,0x94,0x93,0x14,0x42,0x70,0x51,0x47,0xca,0x7f,0x3e,0x79,0xfa, 0xd6,0x75,0xce,0x9d,0x15,0xe6,0xb1,0x6e,0xd0,0x98,0x96,0x18,0xd4,0xb4,0x9b,0x46, 0x77,0x1,0xe9,0xf8,0xe3,0x9a,0xd4,0x4e,0x4c,0x80,0x13,0x8d,0xd8,0x1f,0xd6,0x93, 0xd4,0x69,0xdc,0xc1,0xb1,0x6b,0x87,0xd7,0x80,0x60,0xa,0xc5,0x13,0xc4,0x55,0x7a, 0x0,0x1b,0xa8,0xfa,0xe2,0xb7,0xda,0x42,0xd9,0xa,0x38,0xf5,0xac,0x4b,0x43,0x5, 0xbe,0xb7,0x30,0x8f,0x7b,0x20,0x8d,0x40,0xda,0xb,0x73,0x8c,0x9e,0x95,0xaa,0x63, 0x59,0x5c,0x3c,0x5b,0x91,0x87,0x55,0x23,0x9f,0xca,0xb2,0xb8,0xd1,0x2a,0x46,0x24, 0x1b,0x88,0x50,0x3a,0x7a,0xd0,0xc7,0x7,0x3b,0xbd,0xb8,0x1c,0x50,0x5c,0x28,0x4, 0xa3,0x1c,0xe,0x83,0x83,0x4c,0x59,0x15,0xc1,0xc4,0x64,0x91,0xd8,0xf5,0xa4,0xd8, 0xc,0x0,0x63,0x2f,0x28,0xc1,0x3d,0x40,0xa4,0x77,0x84,0x1c,0xab,0xc9,0x9e,0xe7, 0x1c,0xa,0x93,0x95,0x2a,0x3c,0xb3,0x96,0xc9,0x19,0x38,0xa4,0x59,0x25,0x75,0x70, 0xc2,0x22,0xa0,0x75,0x22,0xa0,0x64,0x10,0x39,0x92,0x24,0x71,0xd4,0x8e,0x47,0x3c, 0x8f,0xad,0xe,0xc8,0x1,0x53,0x13,0x0,0x7a,0x10,0x73,0x44,0x8c,0xd2,0x0,0xbb, 0xc2,0xc6,0x7,0xdc,0xdb,0x8c,0x9f,0xcf,0x91,0x48,0x9e,0x62,0x43,0xb4,0xde,0x2a, 0x9e,0xa1,0x76,0xaf,0x1f,0x9e,0x69,0xdc,0x68,0x73,0x28,0x9,0xbd,0x62,0xca,0x80, 0x31,0xbb,0xd6,0x87,0x8d,0xf9,0x1f,0x65,0x88,0x29,0xea,0xc4,0xe0,0x7d,0x69,0x87, 0xd,0x90,0xd7,0xd2,0x49,0x91,0xd3,0xe5,0xc0,0xfc,0x85,0x44,0xf0,0x27,0x51,0x7b, 0x28,0x52,0x7e,0xe9,0x24,0x8f,0xc8,0x62,0x93,0x2,0x5f,0x35,0x96,0x22,0xb1,0xac, 0x6c,0x3,0x6d,0xc6,0xb,0x3,0x4e,0x41,0x22,0xc,0xef,0x41,0xc6,0x40,0x31,0x70, 0x3f,0xad,0x31,0x9,0x6f,0x94,0xab,0xf0,0x72,0x36,0x92,0x1,0x1f,0x9d,0x24,0x70, 0x47,0xbc,0x3a,0xda,0x32,0x76,0x2c,0xcf,0xd7,0xf3,0x34,0x95,0xc0,0x9c,0x4a,0x51, 0x33,0x3c,0xe9,0x19,0xea,0xe,0x54,0xf,0xd7,0x9a,0x68,0x58,0x64,0xe5,0xe5,0xf, 0x9e,0x78,0xe4,0x1f,0xc4,0x54,0x2e,0xaa,0xd2,0xe5,0x44,0x51,0xb1,0x38,0x5,0x6, 0x18,0xfe,0x38,0xab,0x64,0x4b,0xfc,0xb,0x1e,0xfe,0x98,0xdc,0x4f,0xe9,0x8a,0xab, 0x8c,0xae,0xd2,0xdb,0x8f,0x97,0x2c,0x14,0x77,0xc,0xc2,0xab,0xcb,0x3d,0xa8,0x50, 0x4a,0xc8,0xc7,0x3c,0x65,0x98,0xd5,0xdd,0xb3,0x81,0xf3,0x34,0x51,0xb7,0x7c,0x2f, 0x1f,0xce,0xa9,0xca,0x6e,0x51,0xc9,0x7b,0xc8,0x62,0xc7,0x53,0xb1,0x77,0x7e,0x58, 0xfe,0xb4,0x98,0x3,0x5c,0x12,0xab,0xb2,0xd6,0x6c,0x13,0xf7,0xb6,0xe1,0x7f,0x9d, 0x48,0x2e,0xdb,0xe6,0x1f,0x65,0x94,0xe,0x99,0x38,0x3,0x3f,0x5c,0xd5,0x63,0x75, 0x9,0x20,0x7f,0x6b,0xa3,0xf3,0xce,0x1d,0x41,0xfc,0xa8,0x9e,0xe2,0xd1,0xd8,0x1, 0x74,0x49,0x4,0x10,0xdb,0xf9,0xcf,0xd0,0x52,0xb,0x16,0xf7,0x4c,0x30,0x3c,0xa4, 0xcf,0x7c,0xb9,0xff,0x0,0xa,0x74,0x9f,0x69,0x1,0x49,0xf2,0x54,0x76,0x51,0x21, 0xc9,0xfc,0x31,0xcd,0x55,0x2f,0xc,0x8c,0x5b,0x37,0x24,0x9f,0x41,0x29,0x7,0xfa, 0x50,0x8b,0x2,0xf1,0xf6,0x49,0x8b,0x9e,0xed,0xf,0x1f,0x8e,0x69,0xa,0xc5,0x84, 0x7b,0x9c,0xf9,0x9e,0x74,0x4b,0x8f,0xe1,0x78,0xc8,0x3,0xf3,0x20,0x55,0x66,0x2e, 0xcf,0x85,0xd4,0xa0,0x5c,0xf2,0x56,0x38,0xc1,0xe7,0xeb,0x9e,0x29,0xc8,0x8a,0xb9, 0xd,0xa4,0xab,0xf7,0xc8,0x48,0xc6,0x7f,0x2,0x6a,0x54,0x9e,0x6d,0xe1,0x21,0xb2, 0x8e,0x30,0x47,0x19,0x90,0x2e,0x3f,0x0,0x8,0xa7,0x70,0x20,0x91,0x15,0xd7,0x6c, 0xd7,0x93,0x48,0x80,0xf2,0x63,0x3,0xfc,0xf,0xe9,0x4e,0x5f,0xb3,0xee,0x5d,0xb7, 0x97,0xf2,0x1,0xd0,0x28,0x6f,0xe7,0x8a,0x6c,0x71,0xdd,0xc3,0x30,0x57,0x28,0x70, 0x38,0x65,0x94,0x9c,0x1f,0xa6,0x2a,0xc1,0x7d,0x45,0xd3,0x28,0xd6,0xc4,0xf4,0xda, 0xca,0xc3,0x3f,0xaf,0x1f,0xa5,0x2b,0x89,0x91,0xc9,0x1d,0xb8,0xfb,0xf1,0x5e,0xdc, 0x64,0xe7,0x69,0xdc,0x31,0xf9,0x91,0x4d,0xd9,0x6,0xdc,0x9b,0x3b,0x82,0x3a,0x6d, 0x72,0xbf,0xaf,0x34,0xe8,0x96,0xe6,0x25,0x26,0x6b,0xa8,0xa3,0x3d,0xf8,0x5,0x47, 0xd3,0x2d,0x48,0xc5,0xb2,0x33,0x75,0x26,0xcf,0xf9,0xe8,0x9b,0x0,0xfe,0x46,0x9d, 0xc6,0x44,0x22,0x29,0x84,0x5d,0x2d,0x11,0x9,0xc9,0x91,0xdc,0x36,0x3f,0x4e,0x29, 0x62,0x12,0xc6,0xef,0x1c,0x36,0x91,0xc6,0x4f,0x46,0x12,0x12,0x8,0xf6,0x18,0xa6, 0xba,0xc7,0x3b,0x61,0xb5,0xb,0x92,0xbd,0xb,0x2c,0xa9,0xfa,0x80,0x3a,0x52,0xb4, 0x76,0xeb,0x97,0x92,0x49,0x66,0x60,0x30,0x19,0x5b,0x9c,0x7e,0x1c,0xd2,0xb8,0xc9, 0x50,0xdc,0x2b,0x16,0xda,0x9f,0xf0,0x1d,0xd9,0xfc,0x88,0xa9,0x8b,0xe7,0x72,0x3c, 0x80,0x37,0x7c,0x29,0xe3,0xeb,0xcd,0x66,0xaa,0xd8,0xdc,0x6e,0x68,0xad,0xe5,0x98, 0x81,0x9f,0xbc,0xc7,0x91,0xdb,0xe6,0x35,0x68,0x3c,0x42,0x76,0x56,0xd3,0xdd,0x4b, 0x28,0x21,0x5a,0x34,0x3,0xf3,0x26,0x84,0x2,0xbd,0xcd,0xba,0x2f,0x94,0xd7,0xf1, 0x44,0x7f,0xbc,0xae,0xbf,0xd4,0x55,0xd,0x41,0xb4,0xd9,0xed,0x1a,0x29,0xb5,0x23, 0x29,0xe7,0x0,0x32,0x9e,0x70,0x79,0xf9,0x56,0xac,0xb2,0x48,0xee,0x7c,0xbd,0x2d, 0x12,0x3c,0x7f,0xcf,0x45,0x19,0xfc,0x0,0x3f,0xce,0x99,0x34,0x53,0xc8,0x9b,0x7e, 0xcd,0x6d,0x11,0x27,0x8f,0x9f,0x2c,0x71,0xf4,0x5e,0x29,0xbd,0x0,0x9b,0x49,0xb9, 0x5b,0xdd,0x1e,0xd2,0xe5,0xb7,0x23,0x30,0xf9,0x8b,0x8e,0x77,0x2,0x43,0x74,0xf7, 0x6,0xb4,0x55,0xf1,0x80,0xb9,0x61,0x8e,0xbd,0x6,0x6b,0x27,0x41,0x56,0x82,0x6b, 0xbb,0x69,0xb6,0x83,0x91,0x3a,0x63,0x8f,0xbd,0x80,0xd8,0xfc,0x46,0x7f,0xe0,0x55, 0xb2,0x5c,0x48,0xb,0x63,0x19,0x39,0xeb,0x55,0x62,0x58,0x98,0x88,0x46,0x59,0xa3, 0x62,0xdd,0xd8,0xe,0x28,0xb7,0x84,0x2a,0x64,0x2b,0x36,0xe3,0x9c,0x9c,0x53,0x98, 0xab,0x26,0x32,0x30,0x3f,0xbd,0xd2,0x98,0x6e,0xa,0xb2,0xe4,0xc4,0xb1,0x8e,0xc7, 0x8f,0xe6,0x69,0xa1,0x58,0x6c,0xb3,0x34,0x78,0xcc,0x21,0x8b,0x7b,0xe3,0xfa,0x54, 0x91,0x6,0xf2,0x78,0x1f,0x2b,0x67,0x92,0x3f,0xad,0x31,0xaf,0xe0,0xa,0x33,0x71, 0x12,0x37,0x4d,0xcb,0xcd,0x57,0x8e,0xfd,0x15,0xc0,0x37,0x12,0xba,0x96,0xfb,0xaa, 0x99,0x27,0xf0,0x1c,0xd3,0x15,0x8b,0x2a,0xac,0xae,0x84,0x90,0xa,0xd3,0xb7,0xcc, 0xca,0xf2,0x6d,0x4,0x3,0x81,0xc7,0x5a,0x82,0x5d,0x46,0x46,0x8e,0x55,0x16,0xf2, 0x99,0xe,0x40,0x2b,0x11,0xc8,0xe3,0xbe,0x40,0xa8,0x23,0xbe,0x99,0x42,0x24,0x56, 0xd7,0xe,0xea,0x3e,0x6d,0xc3,0xb,0xc0,0xf5,0xa4,0xd8,0xec,0x5b,0x54,0x93,0x24, 0xb9,0xc3,0x52,0xc6,0xb9,0x5,0x4a,0x38,0xc1,0xfe,0x3e,0x33,0x54,0x52,0xfd,0x8c, 0x4b,0x38,0x85,0xd8,0x49,0x92,0x9,0x6c,0x1c,0xfa,0x54,0xcb,0x71,0x77,0xe4,0x96, 0x48,0x20,0x8f,0x1d,0x9d,0xcb,0x7e,0x80,0x51,0x71,0x96,0x95,0x42,0x92,0x80,0x63, 0x3d,0x1,0x34,0xd8,0x65,0xf,0x2b,0xa8,0x5c,0x6d,0x1f,0x4c,0x9a,0xab,0x14,0xb3, 0xdf,0x3a,0x34,0x5e,0x52,0x2a,0xb7,0xce,0xec,0xf,0x1f,0x4a,0x64,0xcb,0x75,0x6f, 0x3b,0x2c,0x72,0x46,0xf1,0x38,0xcb,0x3a,0xa8,0x3b,0x4f,0xa1,0x4,0xe6,0x86,0x2b, 0x17,0xce,0xc6,0x91,0x88,0x60,0xf,0x42,0x7,0x35,0x24,0x6a,0x99,0xe4,0xf5,0xeb, 0x91,0x8a,0xcb,0x77,0x9b,0x72,0x94,0xd4,0x22,0x8,0x78,0x2a,0x54,0x2e,0x3f,0xe, 0x69,0x92,0x3a,0x4b,0x26,0x6,0xa1,0x95,0x1c,0x61,0x25,0x51,0xfa,0x62,0x97,0x30, 0xec,0x68,0x22,0xa4,0x72,0xb7,0x2d,0xb7,0x76,0x41,0xa4,0x92,0xe6,0x14,0x38,0x79, 0x54,0x60,0x77,0xe3,0x3f,0x4c,0xf5,0xac,0xff,0x0,0xdd,0xc6,0xea,0x92,0x49,0x71, 0xb7,0xb1,0x4,0x9c,0xfe,0x95,0x33,0x43,0x6c,0xa8,0x54,0xc5,0x2b,0x6,0xe3,0x92, 0x70,0x7f,0x51,0x45,0xc7,0x62,0xcb,0xca,0x80,0x8e,0x63,0x2a,0x79,0xc8,0x1d,0x3f, 0x1a,0x46,0xb8,0x82,0x3d,0xc7,0xcd,0x8c,0x1c,0x74,0xde,0x3f,0xc6,0xab,0x18,0x50, 0xa2,0xaa,0xdb,0x15,0x54,0x23,0x1,0x9b,0x1c,0x7e,0x74,0xac,0xb8,0xe2,0x3b,0x75, 0xf9,0x8e,0x3e,0x79,0xe,0xdf,0xd7,0xfa,0x51,0x70,0xb0,0xe7,0xd4,0x22,0x2c,0x16, 0x39,0xd5,0x5c,0x11,0x93,0x82,0x78,0xfc,0x5,0x58,0xfe,0xd0,0x80,0x2f,0x19,0x64, 0xcf,0x2c,0x10,0xe7,0x3f,0x95,0x31,0x4,0xea,0x85,0x71,0xc,0x64,0x64,0xe0,0x65, 0xbf,0xc2,0xa2,0x92,0x9,0x37,0x2c,0xb9,0x84,0x9e,0xfb,0x90,0x8f,0xea,0x68,0xbb, 0xb,0x13,0xc9,0x75,0x1c,0x8b,0x8f,0xb3,0x4c,0xde,0x9f,0xbb,0x3c,0xfe,0x35,0x11, 0xbc,0x67,0xa,0x8b,0x1c,0xc8,0xcd,0xdf,0x3,0xb7,0xe3,0x4c,0x26,0x49,0x32,0xad, 0x71,0xc0,0x39,0x8,0x57,0x83,0xf8,0x55,0x79,0x9a,0x21,0xb0,0x49,0x79,0xe5,0x4c, 0xad,0x93,0x86,0x50,0x0,0xf4,0xe9,0xc5,0x26,0xd8,0x58,0xb8,0xc6,0xe7,0x69,0x55, 0x8d,0xb9,0xe0,0x82,0x45,0x23,0x34,0xc8,0xa3,0x84,0x19,0xe0,0x92,0x4b,0x7e,0x95, 0x48,0xdc,0x5a,0x2b,0x4,0x17,0xaf,0x24,0x98,0xe7,0xc,0x70,0x7f,0x15,0x14,0xf1, 0x75,0x10,0x70,0xa6,0x39,0x48,0xfe,0xf1,0x49,0x48,0x1f,0x89,0xa4,0x4,0x8a,0x6e, 0x4,0x45,0x43,0xc2,0x8c,0x7,0x44,0x4,0x9f,0xcb,0x35,0x1b,0x2d,0xc9,0x61,0xff, 0x0,0x13,0x1c,0x12,0x3a,0x79,0x2a,0x71,0xfa,0xd4,0x72,0x18,0xa6,0x61,0xba,0xc6, 0x57,0xdb,0xc7,0x98,0x90,0x7f,0x53,0x52,0x9,0x27,0xe,0x4,0x16,0x20,0xaf,0x3, 0xef,0x2f,0xea,0x73,0x49,0x83,0x1e,0x99,0x8d,0x1c,0x3d,0xdb,0x92,0x70,0x32,0x14, 0xc,0xfe,0x95,0x1a,0xf9,0x6d,0x9d,0xc6,0xea,0x4c,0x74,0x65,0x2d,0x82,0x7f,0x1, 0x52,0x34,0x9a,0x86,0xc9,0x36,0xd9,0xc5,0x11,0x3c,0x3,0x34,0xa4,0x8f,0xae,0x0, 0x3f,0xce,0x91,0x9f,0x51,0x52,0x8a,0x56,0xd9,0x70,0xbf,0x33,0x92,0xc4,0x1f,0xe5, 0x8a,0x60,0x84,0x54,0x89,0x8b,0x6,0xb5,0xb8,0x24,0x72,0x77,0x3e,0x47,0xfe,0x85, 0x9f,0xd2,0x97,0xce,0x40,0xc9,0x8d,0x3c,0xb0,0x1d,0xdc,0xa8,0xc7,0xeb,0x9a,0x1e, 0x57,0x58,0xce,0xfd,0x42,0xda,0x36,0x3d,0x32,0x38,0xfd,0x4d,0x9,0x3,0x3c,0x60, 0x7d,0xb9,0xc9,0xf5,0x54,0x51,0xf9,0x12,0xd,0x31,0xb0,0x5d,0xf8,0x29,0x1c,0x31, 0xa9,0x3c,0x9d,0xee,0x31,0x8f,0x43,0xc1,0xe2,0xb9,0xfd,0x42,0xd6,0x6d,0x3a,0xf3, 0xcc,0x74,0xb5,0x4b,0x39,0x8e,0xc5,0xcf,0xcc,0x88,0xc4,0xe,0xd8,0x18,0xce,0x2b, 0xa0,0x5b,0x45,0xc1,0x6,0xf6,0xed,0xff,0x0,0xd8,0x5c,0x63,0xff,0x0,0x41,0xaa, 0xf7,0xf6,0x10,0x5e,0x58,0xbc,0x32,0xa5,0xe1,0x18,0xfa,0xb7,0xe1,0xfa,0x55,0x41, 0xd8,0x96,0xae,0x64,0xd8,0xea,0xb7,0x30,0xcf,0x2d,0x82,0xdb,0xc3,0x73,0x11,0x25, 0x94,0x8c,0xae,0xd1,0x81,0x9c,0x9c,0x1e,0x3a,0x55,0xbb,0x6f,0xb6,0xdc,0x6b,0xba, 0x7b,0x3c,0x56,0xe9,0x6f,0x14,0xeb,0xb2,0x18,0x9c,0xf7,0x61,0x96,0xed,0x9e,0xd5, 0x8d,0xa6,0x6d,0xb2,0x98,0xc1,0x75,0x6f,0x3a,0xea,0x11,0xa1,0x65,0x62,0xc4,0x79, 0xc8,0x4f,0x50,0xb,0x63,0x3d,0x1,0x1d,0xab,0x76,0xd2,0xd9,0x67,0xd6,0x2c,0xee, 0xa2,0x82,0x65,0x53,0x34,0x4d,0xf3,0x15,0x6c,0x1d,0xc3,0x39,0xe7,0xfc,0xfa,0x56, 0xc9,0xae,0x65,0x62,0x24,0x78,0x8f,0xc3,0xef,0x87,0xd3,0xfc,0x42,0xb9,0xd6,0x3f, 0xe2,0x78,0xda,0x78,0xb1,0x28,0x49,0x31,0x99,0x37,0x6,0x2d,0xfe,0xd0,0xc6,0x36, 0xfe,0xb5,0xd7,0x7f,0xc2,0x88,0xb5,0xff,0x0,0xa2,0x85,0x6b,0xff,0x0,0x7e,0x87, 0xff,0x0,0x1d,0xa3,0xe0,0x47,0xfc,0x78,0x78,0xeb,0xfe,0xbd,0xd3,0xf9,0x4d,0x5e, 0x18,0x4d,0x7a,0x67,0x39,0xec,0xbe,0x21,0xf8,0x2a,0x74,0x4f,0xa,0xea,0x3a,0xe4, 0x1e,0x2f,0x5b,0xe4,0xb2,0x88,0xc8,0x63,0x8e,0xe,0x18,0x8c,0x71,0xb8,0x48,0x71, 0xd6,0xba,0xbf,0x87,0x1e,0x1e,0x93,0xc6,0x1f,0x1,0xee,0x74,0x41,0x7c,0xd6,0xaf, 0x73,0x78,0xf8,0xb8,0x2a,0x5c,0xae,0xd7,0x46,0xe9,0x91,0xe9,0x8e,0xbd,0xeb,0x9d, 0xf0,0x27,0xfc,0x9b,0x9f,0x8c,0xbf,0xeb,0xbc,0xbf,0xfa,0x2e,0x2a,0xef,0xfe,0x1, 0x7f,0xc9,0x33,0x8f,0xfe,0xbf,0x26,0xfe,0x62,0x80,0x38,0xc1,0xfb,0x3e,0x66,0xe4, 0xdb,0xf,0x1c,0xc6,0x67,0x1d,0x62,0x16,0xdf,0x3f,0x4c,0xf4,0xf3,0x33,0x5c,0x3e, 0x85,0xae,0xdd,0xfc,0x2b,0xf8,0x8f,0xa9,0xa4,0x70,0xb6,0xb0,0xd6,0x9e,0x6d,0x9e, 0xb,0xb4,0x7b,0xbe,0x61,0xf3,0x60,0x6e,0xc7,0x4e,0x9e,0xf5,0xea,0xdf,0x10,0x34, 0x31,0xe0,0x2d,0x7a,0xeb,0xe2,0x75,0x95,0xc7,0xda,0x6f,0x9a,0x65,0x8c,0x59,0xcc, 0x98,0x88,0x7,0x4f,0x2c,0xf2,0xe,0x7a,0xc,0xd7,0x8d,0xe8,0xdf,0x12,0x75,0xd, 0x17,0xc7,0xba,0x87,0x8b,0x61,0xb2,0xb5,0x92,0xea,0xf7,0xcc,0xdf,0xb,0x96,0xd8, 0xbb,0xd8,0x13,0x8c,0x1c,0xf6,0xa0,0xf,0x41,0xf8,0xd,0xa8,0xcb,0xaa,0x7c,0x47, 0xf1,0x15,0xec,0x8a,0xd1,0xfd,0xa2,0xde,0x49,0xbc,0xa2,0xc4,0x84,0x2d,0x32,0x9c, 0x73,0xe9,0x9c,0x57,0xa4,0xfc,0x4a,0xf8,0x8b,0x73,0xe0,0x29,0x34,0xb5,0xb7,0xd1, 0xff,0x0,0xb4,0x3e,0xdb,0xe6,0x6e,0x3e,0x69,0x4f,0x2f,0x6e,0xdf,0x45,0x39,0xce, 0xef,0xd2,0xbc,0x9b,0xe0,0x8f,0x88,0xec,0x63,0xf1,0xfe,0xbd,0xaa,0x6a,0xd7,0xb6, 0x76,0x2,0xf2,0x7,0x93,0x33,0x4c,0x23,0x4d,0xcd,0x28,0x62,0xa0,0xb1,0xfa,0xd6, 0x95,0xff,0x0,0xc7,0xbf,0x16,0xe9,0xd3,0xaa,0xdc,0xf8,0x6e,0xce,0x18,0xa4,0x62, 0x21,0x79,0xa3,0x99,0x4,0x80,0x1e,0xa0,0x93,0xcf,0x51,0xd3,0xd6,0x80,0xf,0x8f, 0xf1,0x49,0x79,0xe3,0x2f,0xd,0xda,0x24,0xcd,0x17,0xda,0x20,0xf2,0xf7,0x2,0x78, 0xdd,0x20,0x19,0xc7,0x7e,0xb4,0xb3,0xfe,0xcf,0xe9,0x6a,0xfb,0x2e,0x3c,0x79,0xc, 0x2e,0x46,0x42,0xc9,0x6f,0xb4,0xe3,0xd7,0x6,0x4a,0x9b,0xe3,0x89,0xcf,0xc4,0x4f, 0x8,0x1f,0x55,0x43,0xff,0x0,0x91,0x85,0x73,0xdf,0xb4,0x5f,0xfc,0x94,0x2b,0x3e, 0x9f,0xf2,0xd,0x8f,0xff,0x0,0x46,0x49,0x40,0x1b,0x31,0xfc,0x3,0x86,0x69,0x4, 0x71,0x78,0xfe,0xde,0x49,0x18,0xe0,0x2a,0xc2,0x9,0x27,0xe9,0xe6,0xd6,0x1f,0x85, 0xf4,0x46,0xf0,0x77,0xc7,0x6,0xd1,0x67,0xd4,0x4d,0xcc,0x76,0x76,0xf3,0x97,0xb8, 0x61,0xe5,0x82,0xd,0xab,0x3e,0x48,0x24,0xe3,0x19,0xf5,0xed,0x5c,0xbf,0xc2,0x8f, 0xf9,0x2a,0x3e,0x1f,0xe9,0xff,0x0,0x1f,0x3e,0x9f,0xec,0xb5,0x7a,0x25,0xda,0x24, 0xbf,0xb5,0x6,0xa1,0x1c,0x8a,0xae,0x8d,0x4,0x8a,0xca,0xc3,0x20,0x83,0x65,0xd0, 0xd4,0xcb,0xe1,0x63,0x5b,0x9e,0xc7,0xe1,0x2b,0xeb,0x4b,0xd1,0x76,0x6d,0x6e,0xa1, 0x9f,0x6e,0xcd,0xde,0x5c,0x81,0xb1,0xf7,0xb1,0x9c,0x57,0x4b,0x5c,0xcf,0x84,0x2c, 0xad,0xac,0xfe,0xd8,0x2d,0xad,0xe2,0x84,0x36,0xcc,0x88,0xd0,0x2e,0x71,0xbb,0xd2, 0xba,0x6a,0xcb,0xd,0xfc,0x25,0xfd,0x75,0x2a,0xa7,0xc4,0xcc,0x2f,0x11,0xc7,0xbc, 0x5b,0x66,0x42,0x80,0x6e,0xc9,0x1d,0x7b,0x56,0x1b,0xb2,0x6d,0xc2,0x79,0xaf,0x8e, 0x84,0x2,0x49,0xad,0xff,0x0,0x10,0x92,0x22,0x8b,0x68,0xc9,0xc3,0x60,0x7e,0x55, 0x8c,0x22,0x20,0x7c,0xa4,0x86,0x1e,0x84,0x8c,0xd7,0x6,0x25,0x7e,0xf5,0x9d,0x14, 0xbe,0x14,0x43,0x13,0x96,0x4e,0x41,0xcf,0x70,0x47,0x4a,0x96,0x33,0xb,0xc7,0x9f, 0xb3,0xe4,0x16,0xc1,0xc8,0xc5,0x2a,0xc2,0xeb,0x92,0x6,0x4b,0x70,0x47,0xa0,0xa9, 0x19,0x72,0x82,0x34,0x38,0x8d,0x7a,0xb5,0x62,0x93,0x28,0x81,0xca,0xe4,0x6c,0xb5, 0x1,0x71,0xc7,0xbf,0xe9,0x4f,0x8f,0xcd,0x78,0xf2,0x60,0x55,0xc7,0x62,0xdd,0x3f, 0x4a,0x95,0x79,0xdb,0xb9,0x89,0xc0,0xe9,0x9a,0xa,0xa9,0x63,0xcc,0x80,0x7b,0x9e, 0xb4,0xed,0xa8,0x9,0xfb,0xe0,0xb,0xa9,0xe3,0xa1,0x18,0xa8,0xc4,0x93,0x31,0xdb, 0xbe,0x30,0x7d,0x81,0xe6,0x9d,0x3a,0x97,0x43,0xf2,0x1f,0x62,0xc3,0x34,0xb1,0xc7, 0x1a,0x44,0x8c,0x10,0x12,0x3b,0x60,0x51,0xd6,0xc8,0x4,0x65,0x78,0xdd,0x59,0x98, 0x6d,0x3c,0x31,0xcf,0x3f,0x85,0x1b,0xd5,0x5c,0x84,0x9c,0xe7,0xb0,0x3c,0x7f,0x2a, 0x92,0x4d,0xaf,0x11,0x58,0xa3,0x4d,0xfd,0x73,0x8c,0x51,0x1c,0x2b,0xf,0xfc,0xb3, 0x4f,0x33,0xa9,0x6c,0x64,0xd5,0x8,0x73,0x94,0x5c,0xb4,0xb2,0x36,0x36,0xf6,0xaa, 0x86,0xd9,0x37,0xf9,0x8e,0xce,0xe0,0x1e,0x6,0x2a,0xd3,0xc6,0xac,0xbb,0xd8,0x61, 0xcf,0x72,0x69,0x1a,0x62,0x1,0x66,0x50,0xd9,0xe3,0x3c,0x52,0x68,0x64,0x3b,0x23, 0x79,0x3,0x6c,0x39,0xee,0xbc,0x60,0xfe,0x75,0x3c,0x20,0xa2,0x65,0x60,0x48,0xd3, 0x38,0xda,0x3b,0xd1,0x8,0x8c,0xc6,0xc5,0xc6,0xc0,0xbc,0xe0,0xe3,0x27,0xe9,0x52, 0x31,0x64,0xf9,0x55,0xd5,0x47,0xfb,0x5d,0x69,0xad,0x85,0x72,0x25,0x1b,0x3,0x22, 0x90,0x83,0x39,0x19,0x34,0xac,0xb3,0x18,0xc7,0xcb,0x1b,0xff,0x0,0xb4,0x41,0xe2, 0x95,0xd0,0x8,0xf2,0x24,0x2c,0x3b,0x9c,0x1e,0x69,0xa8,0x4a,0x9c,0xb8,0x62,0xf, 0x41,0x93,0x4a,0xe0,0x36,0x43,0x96,0xc,0x49,0xdd,0x1f,0x60,0x38,0x35,0x2d,0xba, 0x38,0x2,0x42,0xe7,0x69,0xe8,0x85,0x7a,0x1a,0x6c,0x84,0xc6,0x46,0x63,0x1,0x33, 0xd4,0xd4,0x8d,0x2a,0x2b,0x85,0xf2,0x8e,0x5b,0xa1,0xec,0x4d,0x34,0xbb,0x8a,0xe4, 0x41,0x1b,0xcf,0x6d,0xab,0xfb,0xbe,0xa4,0x9c,0x67,0x34,0xed,0xc8,0x4a,0xa8,0x7f, 0x9b,0xad,0x3a,0x45,0x8d,0x58,0x96,0x51,0xb9,0xb8,0x39,0x3d,0x29,0x8c,0xb2,0x3a, 0x86,0x89,0x63,0x62,0xbd,0xb,0x64,0x52,0xb0,0xe,0x86,0x25,0x66,0x67,0x90,0x6d, 0xc7,0x3,0xad,0xa,0x76,0x65,0xa4,0x1,0xb0,0x71,0x8f,0x4a,0x93,0xf7,0xce,0x15, 0x65,0x61,0x9e,0xa7,0x6f,0x4a,0x1d,0x53,0x4,0x96,0x6d,0xdd,0x85,0x16,0x11,0x1a, 0xc5,0x9d,0xce,0xcd,0x9c,0xfa,0x7a,0x53,0x11,0xb,0xa3,0x3e,0xe,0x1,0xe0,0x67, 0x8a,0x95,0x99,0x82,0x8d,0xaa,0x4a,0x63,0x93,0x9c,0x62,0x92,0x25,0x76,0x85,0x4c, 0x78,0x23,0x77,0x25,0xbb,0x7d,0x29,0x25,0x76,0x17,0x24,0x36,0xec,0xc0,0x82,0x2, 0x8c,0x63,0x83,0xd2,0x91,0xe0,0x2c,0x8b,0x11,0x5,0x63,0x5c,0x1,0xcf,0x38,0xa7, 0xb0,0x4f,0x37,0x61,0x3b,0x98,0x9c,0xe3,0x3d,0x5,0x48,0xaa,0x36,0xe7,0x20,0xe1, 0xb8,0xc7,0xa5,0x6b,0x18,0x85,0xc1,0x7c,0xa0,0x30,0x36,0xe0,0xc,0x72,0x79,0xa1, 0xca,0x6c,0x25,0x19,0x4b,0x1,0x8e,0xd,0x30,0x47,0xb,0x5c,0x6f,0x75,0x1b,0x8f, 0x4d,0xc2,0xa5,0x74,0x8f,0x1b,0x15,0x6,0xf,0x70,0x31,0x56,0x22,0x29,0xc9,0x54, 0x7,0x27,0x8e,0xbc,0x71,0x5c,0x54,0x12,0x42,0xac,0xaf,0x77,0x24,0xd1,0xad,0xc1, 0x33,0x64,0x45,0xb8,0xf3,0xd0,0x2,0x47,0x40,0x31,0xd0,0x57,0x4f,0xaf,0xdd,0x7d, 0x8b,0x46,0xb8,0x61,0xb9,0x99,0x94,0xa2,0x85,0x4,0xf2,0xdc,0xe,0x95,0x89,0x68, 0xd2,0xde,0x49,0x6b,0x65,0xa8,0xa0,0x48,0x63,0x8b,0x11,0x5,0xca,0x12,0x40,0xc0, 0xc9,0xce,0x7a,0x7a,0x50,0x96,0xb7,0xf,0x23,0x42,0x19,0xd2,0xde,0xc5,0x9b,0x4e, 0x69,0xaf,0xa6,0x9c,0xfc,0x86,0x45,0xdb,0x83,0xd0,0x92,0x70,0x3a,0x7f,0x4e,0xd4, 0x8b,0xa6,0xdd,0xcc,0x19,0xaf,0x59,0x9,0x73,0xba,0x43,0x9,0xc1,0x18,0x1f,0x74, 0x67,0xf9,0xd4,0xfa,0x44,0x71,0x69,0x8f,0x25,0xbb,0xc8,0xdb,0x5d,0xcb,0xc4,0x64, 0x6e,0x8,0x20,0x64,0x3,0xdf,0x90,0x7f,0x3a,0x92,0xfb,0x54,0x82,0xd5,0x4c,0x50, 0x9f,0x3e,0xe9,0x86,0x23,0x50,0x3b,0x9e,0xff,0x0,0x41,0xeb,0xfc,0xe8,0xb7,0x50, 0x6b,0xb9,0x98,0x35,0x48,0x74,0xfb,0x19,0x63,0xb4,0xb1,0x94,0x9e,0xbf,0x34,0x83, 0x2d,0x93,0xef,0xcd,0x4d,0x69,0x67,0x7b,0x68,0xd,0xd5,0xed,0xd2,0xc1,0x71,0x33, 0x82,0x63,0x50,0x48,0x0,0x74,0x4,0xe7,0x15,0x65,0x34,0x93,0x73,0x6d,0xc,0x97, 0x97,0x72,0x3c,0xcf,0x12,0xab,0x32,0x2a,0x81,0x8e,0xbe,0x94,0xdb,0xdb,0xa3,0x69, 0x3c,0x56,0xd1,0xc0,0xd7,0x4e,0xc3,0x76,0xdc,0xf0,0x1,0xe8,0x71,0x83,0xcd,0x3b, 0xdd,0x58,0x1f,0x91,0x66,0xfc,0x42,0x60,0xdb,0x12,0x66,0x79,0x5c,0x14,0xa,0x79, 0xcf,0xaf,0xd2,0x95,0x6e,0xa5,0x5b,0xa4,0x82,0xe2,0xee,0x31,0x3b,0x74,0x89,0xf, 0xcc,0xdf,0x5a,0xcf,0x6b,0xc6,0x8a,0x49,0x12,0xe6,0xd5,0xad,0x65,0x8,0x4c,0x45, 0xb9,0xca,0xe0,0xe4,0x2,0x38,0xf4,0xad,0x5b,0x2b,0x7b,0x41,0x17,0xda,0x61,0x44, 0x69,0x1b,0xac,0xc0,0x65,0x98,0xfd,0xde,0xbd,0xbe,0x94,0x58,0x37,0x12,0xea,0x48, 0xcc,0xd,0x5,0xc6,0xd5,0xde,0xa7,0x24,0x9c,0xc,0x77,0xe7,0xd6,0xb2,0xa0,0xb6, 0x7b,0x18,0xa6,0x5b,0x4b,0xc8,0xf6,0x48,0xc1,0x95,0x9d,0x94,0x84,0x1b,0x40,0xe3, 0xf0,0x2,0xa3,0xbd,0xf1,0x12,0x2d,0xcc,0xe1,0x62,0x82,0xe6,0xd1,0x5f,0xa,0xe5, 0xb0,0x38,0x51,0xbb,0xa8,0xe7,0x9c,0x8f,0xc0,0xd5,0xb,0x4b,0x38,0xb5,0x1d,0x40, 0xcb,0x7e,0xd6,0xe1,0x1c,0xfe,0xea,0x8,0xdb,0x69,0x6c,0xf1,0xc6,0x39,0xe3,0x8e, 0x9e,0xf4,0x5a,0xc4,0xde,0xe5,0x8d,0xe,0x43,0x75,0x79,0x37,0xfa,0x43,0xb4,0xa8, 0xdb,0xbe,0x67,0xca,0xca,0xad,0xd4,0x8c,0x1f,0x55,0x39,0xfc,0x2b,0x22,0xd2,0x75, 0x7d,0x49,0x65,0xbe,0xb9,0x95,0x1d,0xd9,0x97,0xcc,0x52,0xdb,0x41,0x7,0xa,0xa7, 0x9f,0x94,0x56,0xc6,0x8b,0x1e,0x99,0x1d,0xb0,0x95,0xb5,0x2,0xd7,0x11,0x33,0x7, 0xf3,0xe,0xc2,0xa3,0xb0,0xc1,0xe7,0xa6,0x28,0x9b,0xc3,0x50,0xdd,0x62,0x7b,0x7d, 0x42,0x48,0xa3,0x66,0xde,0xc0,0xa0,0x2a,0x57,0xa9,0xdb,0x9e,0x87,0xdf,0x9a,0x71, 0x69,0x3b,0xd,0x95,0xf4,0xc7,0x8e,0xcf,0x5e,0xf3,0xb1,0x23,0xc9,0x2a,0x14,0xd9, 0x1,0xc,0x5f,0x24,0x1c,0x9e,0x7a,0x70,0x7a,0xd6,0xd5,0xe3,0x6a,0xf,0x7b,0x1c, 0x16,0x8a,0xcd,0xb7,0x6,0x4d,0x84,0x5,0xfa,0x31,0x23,0xd3,0xd3,0xde,0xb9,0x8b, 0x1d,0x46,0xfa,0xce,0x2b,0x98,0xed,0x6e,0x27,0x8e,0x1,0x23,0x32,0xac,0x91,0xf, 0x30,0xc,0x92,0x48,0x3e,0xe3,0x19,0xfa,0x57,0x45,0xa5,0x78,0x82,0xde,0x5d,0x25, 0x7c,0x90,0xf2,0x5c,0xb9,0x2a,0x22,0xd9,0xc9,0x7f,0x43,0xe8,0x7f,0xa5,0x26,0x84, 0xb4,0x20,0xd3,0x63,0x91,0xb5,0x7b,0xc7,0x57,0xf2,0xa2,0x47,0x54,0x28,0x41,0x1c, 0x84,0x0,0xf4,0xf7,0xcf,0x7e,0xd5,0xac,0xf0,0x79,0x9b,0x81,0xbe,0x74,0xcf,0x51, 0x19,0x0,0xd7,0x3b,0xe1,0xd9,0xa6,0x8c,0x4b,0x13,0xdb,0xbc,0xd2,0x79,0x8c,0x24, 0x3b,0xf0,0x77,0x74,0x63,0x9e,0x87,0x9c,0xd7,0x4f,0x1a,0x98,0xd7,0xb,0x6f,0x9c, 0x9e,0xe4,0x66,0xb1,0x2e,0xc4,0x68,0xa6,0x38,0x3f,0xd6,0x99,0x3b,0xd,0xed,0x9f, 0xe9,0x4c,0x51,0x20,0xe4,0xb8,0x54,0xf5,0x1c,0x54,0xad,0x39,0x42,0xa0,0x0,0xbd, 0xc8,0xaa,0x73,0x25,0xfc,0x97,0x3b,0xe2,0x4b,0x4f,0x2c,0x9c,0x82,0x77,0x67,0xf1, 0xc6,0x7,0xe7,0x50,0xc6,0x58,0x67,0x82,0x45,0xf9,0xb,0xb9,0x5f,0xee,0xe4,0x9a, 0x8e,0x4b,0xa8,0x63,0x2a,0xad,0x6b,0x31,0xcf,0xa8,0x0,0x7e,0xa6,0x9e,0xa2,0xe9, 0x9b,0x79,0x9f,0xa7,0xa2,0x10,0x3f,0x9d,0x34,0xa4,0xae,0x1b,0x73,0xe4,0x9f,0x4e, 0xf4,0x36,0x34,0x81,0x25,0xc9,0x25,0x2d,0xf0,0xf,0x4f,0x99,0x49,0xfe,0x75,0x15, 0xc5,0xc7,0xd9,0xa4,0x52,0xe1,0x63,0x67,0xe8,0x58,0x8c,0x9f,0xca,0x9a,0xe6,0x76, 0x2a,0x12,0xee,0x18,0xd5,0x4f,0xce,0xc4,0xa9,0x20,0x7d,0x3f,0xfa,0xf4,0x31,0x41, 0xf3,0xb5,0xd8,0x29,0x8c,0xe5,0x58,0x3,0x4a,0xec,0x10,0xad,0x35,0xcb,0xa0,0x70, 0xf1,0x10,0x5b,0x3,0x7b,0x72,0x3f,0x21,0x4d,0x8a,0x4b,0xa0,0xf2,0x2c,0xb8,0x74, 0xe8,0xb9,0x4c,0xf3,0xed,0xdf,0xbd,0x1b,0x2d,0xdc,0xaf,0xcf,0x3b,0xab,0x72,0x54, 0x86,0x3f,0xca,0x99,0x32,0xc4,0xe8,0x51,0x2d,0xa7,0x3,0x23,0x5,0x94,0x8c,0x81, 0xfe,0xf1,0xe6,0x81,0x96,0x22,0x6d,0xd2,0xa9,0x95,0xa3,0x3b,0x47,0x2a,0xc4,0xa9, 0x1f,0x85,0x5,0xd5,0xe4,0x25,0x6e,0x2,0xe,0xea,0x8c,0xa4,0x1f,0xcf,0x35,0x58, 0xdb,0x98,0x55,0x42,0x59,0x3b,0xc7,0x9c,0x80,0x15,0x3f,0xf8,0xae,0x2a,0x52,0xd2, 0xec,0xdb,0x2d,0x9f,0x96,0x9,0xc8,0x2d,0x22,0xe7,0xf4,0xcd,0x0,0x36,0x46,0x50, 0x46,0xd9,0x5d,0x94,0x75,0x6f,0x33,0x1c,0xfe,0x14,0xd7,0x82,0x6,0x50,0xe6,0x46, 0xe4,0xe4,0xb1,0x95,0x85,0x4c,0xd0,0x48,0x48,0x64,0xb7,0x85,0x78,0xce,0x55,0xf8, 0x3f,0xa5,0x38,0x47,0x78,0xc5,0x43,0x8b,0x61,0x11,0x3f,0x36,0x14,0xee,0xe3,0xf1, 0x14,0x58,0x6,0x35,0x9c,0x6e,0xe1,0xf0,0xb,0x81,0xd2,0x36,0xc9,0x3f,0x9d,0x44, 0x60,0x8b,0x4,0xb5,0xa8,0x4,0x77,0x31,0x28,0x35,0x29,0x47,0x61,0x98,0xe6,0xda, 0x33,0xc7,0xc9,0xbb,0x1f,0x9d,0x41,0x3b,0x4f,0x1c,0x91,0x83,0x73,0x21,0x46,0x1c, 0xec,0x55,0xe2,0x80,0x3,0xf6,0x84,0xda,0xf1,0x59,0x29,0x1e,0xb9,0xa,0x3e,0xb5, 0x31,0x4b,0xc9,0xe1,0x61,0x2a,0x23,0x1c,0xe4,0x6d,0x27,0x8f,0x6e,0xd5,0x5e,0x5d, 0x8a,0x3,0xb,0xc9,0x33,0x9e,0x56,0x49,0x42,0xfe,0x64,0xa,0x81,0xd6,0xd9,0xd9, 0x89,0xbb,0x9d,0xa3,0x5e,0x4e,0xdb,0x96,0x20,0x7d,0x0,0xe6,0x80,0x2e,0x27,0x9f, 0x1f,0xc8,0xa1,0x62,0xef,0x87,0x56,0x27,0xf9,0xd3,0x64,0xf3,0xa4,0x9f,0x3f,0x69, 0x48,0xf8,0xc7,0x28,0xbf,0xc8,0xb5,0x54,0x81,0x34,0xb8,0xf3,0x71,0x14,0x73,0xcf, 0x21,0xee,0x15,0xd8,0xfd,0x2a,0xc3,0x4f,0xc,0xcb,0xb5,0xb4,0xdb,0xbc,0x9e,0xa7, 0xc8,0xfe,0xa6,0x80,0x10,0x13,0x8,0x66,0xb8,0xd4,0x84,0xa8,0x3f,0xba,0xa8,0xb8, 0xfd,0x29,0x8c,0xf1,0xdc,0xae,0xe5,0xbf,0x9c,0x28,0xea,0x22,0x94,0xc,0x7e,0x42, 0xa6,0x8a,0x40,0xa0,0xa4,0x1a,0x63,0x29,0x1d,0x77,0x10,0xe,0x29,0x12,0xeb,0xce, 0x6c,0x25,0xbc,0x4d,0x36,0x9,0xc1,0xeb,0xfc,0xa9,0x0,0x2f,0x96,0x91,0x8f,0xde, 0xdc,0x4a,0x7b,0x82,0xcc,0xc4,0xfe,0x94,0x49,0x3d,0x9c,0x4a,0xa1,0xed,0xa7,0x62, 0xc7,0x18,0x78,0xdb,0xaf,0xe3,0xd6,0xa5,0x59,0xee,0x5c,0xe5,0x44,0x30,0x85,0xea, 0xc1,0xb3,0x8c,0xfb,0x10,0x2a,0x75,0x17,0xd,0x96,0x2f,0xb,0x81,0xc8,0xca,0x92, 0x73,0xfd,0x28,0x15,0x8c,0xe8,0x76,0x97,0x61,0x16,0x9c,0xe3,0x71,0xc6,0xdf,0x28, 0x3,0x56,0x36,0xca,0x78,0x1a,0x6a,0x81,0x8f,0x55,0x27,0xf9,0x51,0x34,0x82,0x54, 0xc,0xf2,0xaf,0xca,0x4e,0xe0,0xaf,0x83,0x9f,0x7f,0x6a,0x45,0x98,0x22,0x20,0x7b, 0x88,0xd4,0x11,0xc2,0x16,0x55,0xff,0x0,0xf5,0xd2,0x2,0x47,0xf3,0xb6,0x82,0xf0, 0x85,0x24,0x63,0x6e,0xe0,0x38,0xfc,0x2a,0x69,0x4,0xa9,0x6a,0x58,0x2b,0x94,0x5c, 0x61,0x7,0x27,0xf3,0xeb,0x55,0xa4,0x61,0x9d,0xff,0x0,0x36,0x7,0x3,0x66,0x7a, 0x7e,0x15,0xc,0x8f,0xc,0x8f,0xbd,0x56,0xea,0x75,0x3,0x18,0x1b,0xb6,0xaf,0xeb, 0xcd,0x52,0xd4,0x65,0xa5,0x12,0x79,0x83,0x7c,0x7c,0xf5,0xc1,0x1d,0x3e,0xbc,0xd4, 0x69,0x21,0x52,0xcb,0x3d,0xda,0xf4,0x3f,0x28,0xc0,0xc7,0xe1,0x51,0x5b,0x49,0xcb, 0x81,0xa5,0x5e,0x16,0x3d,0xe4,0x54,0x51,0xf8,0x6,0x6c,0xd3,0x26,0x4b,0x86,0x9b, 0x71,0xd0,0xd0,0xe,0x83,0x74,0xb1,0xfc,0xdf,0x51,0x4d,0x46,0xc1,0x71,0xb2,0x3d, 0x8c,0x61,0x17,0xfb,0x59,0xb8,0xe4,0x85,0x9b,0x24,0x7d,0x40,0x1c,0x53,0xd,0xd5, 0x93,0x4c,0x88,0x24,0x91,0xc2,0xaf,0xde,0xf3,0x5f,0x2c,0x7e,0x99,0xad,0x8,0x45, 0xfe,0x0,0x5b,0x3b,0x64,0x5e,0x9b,0x56,0x40,0x76,0xfe,0x1,0x69,0x65,0x8e,0xfd, 0x48,0x57,0xf2,0xbf,0xde,0xd8,0xe4,0xf,0xaf,0x3,0xf5,0xa1,0xab,0x8a,0xe6,0x74, 0xa6,0xd6,0xda,0xf2,0xce,0x75,0xb2,0xb8,0xc,0xcd,0xe5,0x96,0x8e,0x36,0xc0,0x52, 0x3b,0x93,0xd7,0x9c,0x55,0xf9,0xa3,0x46,0x95,0x72,0x66,0x0,0x75,0x50,0xa5,0x7f, 0x30,0x70,0x6b,0x3e,0xfa,0xda,0x75,0x2d,0x1b,0xde,0x40,0x12,0x40,0x70,0xc8,0x31, 0x93,0xfe,0xe9,0x62,0xe,0x29,0xd6,0x97,0xb7,0x33,0xdb,0x24,0xd2,0x5c,0x42,0xcc, 0xbf,0x2e,0x52,0x22,0xc3,0xd7,0xf3,0xe6,0xa7,0x51,0x17,0xca,0x24,0x6e,0x44,0x5a, 0x7b,0xb3,0x1,0xc9,0x6c,0x63,0xf5,0x34,0xe8,0x99,0xb7,0xd,0x96,0x99,0x27,0x82, 0x46,0x38,0xfc,0xb3,0x50,0xa1,0xb8,0x90,0x79,0x92,0x5d,0xd,0x8d,0xd1,0x4d,0xbe, 0x18,0xfd,0x6,0x6a,0x13,0x19,0x69,0x8c,0x5e,0x7d,0xf0,0x1d,0x49,0x8e,0x25,0x5f, 0xe7,0x4d,0x6a,0x8,0xd3,0x29,0x72,0x1b,0x63,0x95,0xc0,0x39,0x18,0xed,0xf9,0x55, 0x79,0x85,0xe0,0x12,0xca,0xbe,0x40,0x23,0x8c,0x82,0x77,0xf5,0xf4,0x3c,0x54,0x48, 0x8c,0xf2,0x0,0x90,0xde,0x49,0xd4,0x12,0xec,0x13,0xe8,0x72,0x5,0x39,0x6c,0x49, 0x5d,0xd3,0x47,0x29,0x7e,0xdb,0xa5,0x7,0x1f,0xad,0x30,0x1f,0xf,0x9f,0x2a,0x79, 0xaf,0x32,0x79,0x98,0xc6,0x52,0x3e,0x78,0xf5,0xe7,0x14,0x8c,0xef,0x80,0xb2,0x6a, 0x2e,0xa3,0xba,0x80,0x83,0xf4,0xa6,0x9b,0x5f,0x35,0x98,0xac,0x71,0x17,0x3c,0x6e, 0x69,0x9,0x3f,0xa7,0x14,0xa2,0xd6,0x75,0x90,0x2a,0xc3,0x0,0x55,0x1f,0x78,0xa8, 0xfe,0x64,0x67,0xf2,0xa0,0x68,0xab,0x2,0xe2,0x70,0x93,0x5d,0x46,0x22,0x50,0x70, 0xeb,0x22,0x82,0x3e,0x80,0x7f,0x5a,0x74,0x97,0x36,0xa9,0x34,0xa8,0xb7,0x13,0x4a, 0xe4,0x7c,0xa3,0x2c,0xc7,0xeb,0xc0,0xab,0x32,0xa4,0xf2,0x60,0x3f,0x92,0xc7,0x23, 0xa,0xb0,0x92,0x3e,0xb9,0xa6,0x1f,0xb5,0x5b,0xf1,0x2d,0xd0,0x8d,0x33,0x9d,0xdf, 0x28,0x5f,0xe5,0x9a,0x0,0xa7,0x23,0x69,0xd7,0xe,0xd8,0xb3,0xb8,0x97,0x72,0xe2, 0x46,0x11,0x31,0x19,0xf6,0xf4,0xfc,0xaa,0x48,0x2c,0xad,0x24,0x1,0x92,0xc6,0x56, 0x39,0xea,0x55,0x50,0xfe,0x40,0x83,0xf9,0xd4,0xd3,0x48,0x9b,0x77,0x26,0xa4,0x59, 0xf3,0xd1,0xa,0x13,0xfc,0xa9,0x9f,0x68,0x8d,0x91,0x63,0x79,0xe5,0x96,0x46,0x7, 0x3b,0x24,0xfc,0xba,0xe,0xb4,0xae,0x5,0x8f,0x29,0xfc,0xd2,0x46,0x9c,0x42,0xe3, 0xab,0xb2,0xe3,0xf9,0xe6,0x95,0x24,0x63,0xb,0x2a,0xc1,0x2,0x23,0x71,0xb5,0xe5, 0xca,0xfe,0x44,0x55,0x68,0x7e,0xca,0xa8,0x54,0xc7,0x71,0x8e,0x84,0x6e,0x72,0x73, 0xef,0x8a,0x22,0x36,0x99,0x6f,0xf4,0x17,0x93,0x6f,0xae,0x4f,0xf3,0x14,0x8,0x7c, 0x8c,0x96,0x68,0x25,0x96,0x6b,0x68,0x51,0x7a,0x18,0xe5,0x38,0xfc,0xb0,0x5,0x54, 0x9b,0x57,0xb4,0xa,0x4b,0xea,0xb6,0x49,0x9e,0x72,0xaa,0x18,0x8f,0xc8,0xe6,0x86, 0xb2,0xb0,0x96,0x42,0xf1,0x69,0x89,0xc9,0xc9,0x26,0x35,0xe0,0xfd,0x6a,0xc8,0x12, 0xc1,0x83,0x1d,0x8a,0x90,0x3b,0xb6,0xc5,0x3,0xf2,0xe6,0x9e,0x85,0x58,0xcd,0x3e, 0x22,0xd3,0xd4,0x1f,0x2b,0x58,0x9a,0x49,0x3a,0x4,0x86,0xd4,0xf3,0xf4,0xdc,0xf, 0xf3,0xa6,0xff,0x0,0x69,0xac,0x8a,0x37,0xd,0x6b,0x3d,0x83,0xa2,0x6d,0x3f,0xa7, 0xf5,0xad,0xa6,0x92,0xf2,0x62,0x15,0x56,0xd8,0x3,0xf7,0x4f,0x98,0x78,0xfa,0x7c, 0xb4,0xc0,0x35,0x1f,0x29,0x92,0x53,0x10,0x0,0xf0,0xcc,0x32,0x4f,0xd3,0xff,0x0, 0xd5,0x47,0x32,0x3,0x35,0x1e,0x17,0x94,0x39,0xd2,0xb5,0x17,0x90,0xc,0xef,0xc9, 0x52,0xf,0xd3,0x70,0xa5,0xb8,0x43,0xbf,0xcd,0x93,0x48,0x61,0xb8,0x70,0xd7,0x17, 0x1,0xba,0xff,0x0,0xb3,0xb8,0xfb,0x55,0xf0,0xb7,0xc6,0x39,0x36,0x5d,0x28,0x55, 0x19,0x21,0xd7,0x76,0x7d,0xa9,0x23,0x8e,0x47,0x80,0xf,0xb5,0x2a,0xe4,0xfc,0xc6, 0x32,0xb8,0xfc,0xf1,0xc5,0x1c,0xc0,0x57,0x8a,0x31,0x35,0xba,0x3c,0x7a,0x15,0xbc, 0xa7,0x18,0xe4,0x2e,0xe,0x3e,0xa0,0xd0,0x3f,0xb4,0x4b,0x84,0xb6,0xb2,0xb2,0xb4, 0x61,0xe8,0x77,0xe3,0xdb,0x85,0xc0,0xa7,0x3c,0x50,0x28,0x58,0x4e,0xa2,0x42,0x29, 0xc9,0x63,0x32,0x9f,0xe7,0xd3,0xf0,0xa9,0x10,0xe9,0xce,0x4e,0xe7,0x96,0x43,0xd3, 0x3e,0x73,0xb1,0x23,0xf3,0xa5,0xcc,0x22,0x26,0x87,0x52,0x88,0x96,0x37,0xd6,0xe8, 0xfd,0xd7,0xcb,0x91,0x97,0xf3,0xdf,0x81,0xf9,0x55,0xc8,0x24,0x9a,0x38,0x81,0xb9, 0xbd,0xb7,0x42,0xc3,0xb3,0xf0,0x7f,0x3a,0xa2,0xa6,0xda,0x16,0x65,0x48,0xa4,0x8, 0x4f,0x46,0x56,0x6c,0xfe,0x75,0x61,0x1a,0xdb,0x3f,0xbb,0xb3,0x67,0x1e,0x82,0x1, 0x81,0xf9,0xe2,0x95,0xc1,0x93,0xfd,0xa6,0xda,0x32,0x77,0xdd,0xc1,0xd3,0x83,0xb8, 0x73,0x51,0xcf,0x79,0x14,0x90,0x62,0x6,0x49,0x7f,0xd9,0x1c,0x8f,0xd4,0x7f,0x5a, 0x8a,0x7d,0xd2,0x2f,0x94,0x74,0xa9,0x7d,0x41,0x5d,0x8b,0xff,0x0,0xb3,0x53,0x63, 0x5b,0xa0,0xea,0xab,0x6d,0x85,0xfe,0xeb,0xdc,0x80,0x3f,0x91,0xa0,0x56,0x26,0x4b, 0xd8,0x9a,0x5,0x63,0xc,0xcc,0xdd,0x36,0x6d,0xcf,0xe4,0x5,0x33,0xcf,0x6c,0x86, 0xfb,0x25,0xda,0x27,0x7f,0x32,0x35,0xc7,0xf8,0xfe,0x62,0xa4,0x90,0xde,0x1c,0x2f, 0xd9,0xed,0x53,0xe9,0x23,0x37,0xe8,0x14,0x51,0x1c,0x7a,0x82,0xa9,0xb,0x71,0x68, 0xa8,0x4f,0x1b,0x62,0x27,0x1f,0x99,0xfe,0x94,0xc,0xaf,0x3d,0xc4,0x50,0x48,0x9, 0xd3,0x3,0xc8,0x7a,0x4a,0xd1,0x2e,0xdf,0xc4,0x81,0x91,0x57,0x11,0xae,0xb7,0x79, 0x82,0xb,0x7f,0x2c,0x8f,0xf9,0xea,0x4f,0xfe,0xcb,0x9a,0xad,0x73,0x24,0xb0,0xe0, 0x4d,0xa9,0x38,0xf7,0x8e,0x14,0x1f,0xcf,0x35,0x13,0x2d,0xa9,0x6d,0xed,0xab,0xc8, 0xc4,0x8e,0xb9,0x40,0x47,0xe4,0xb5,0x40,0x5d,0x44,0xbb,0x69,0x19,0xd5,0x6d,0x55, 0x4f,0xbb,0x1a,0x56,0x8f,0x50,0xf2,0xf7,0x19,0x13,0x77,0x4f,0x2e,0x35,0x18,0xfa, 0xf3,0x59,0xe1,0xac,0xd8,0x11,0xf6,0xab,0xab,0x80,0x7b,0x97,0x90,0xe3,0xf2,0xc5, 0x3e,0x3b,0x3d,0x3f,0x3b,0x84,0x32,0x4a,0xf,0xa8,0x97,0xfa,0x9a,0x76,0x29,0xab, 0x14,0x75,0xdd,0x6,0x5b,0x9b,0x54,0x99,0x6f,0x42,0xdc,0x5a,0xee,0x78,0x56,0x45, 0x50,0xbc,0xe3,0x2a,0x4f,0xa7,0x1e,0xb5,0x2f,0x85,0x5c,0x3d,0xbd,0xb6,0xe7,0x31, 0xa9,0x9a,0x36,0x5c,0x11,0x8f,0xbe,0x6,0x6,0x3e,0x98,0xab,0xd1,0xc1,0x3,0x23, 0x22,0xe9,0xb2,0x5,0x3c,0x65,0xb1,0x8f,0xc9,0xab,0x2a,0xb,0x19,0x2c,0x7c,0x4f, 0x6d,0x70,0xba,0x43,0x47,0x69,0x3d,0xcc,0x21,0xfc,0x96,0x5d,0xaa,0xfb,0xc0,0xf, 0xb4,0x74,0x1d,0x33,0x8f,0x4a,0xd2,0x9c,0xb5,0x49,0x99,0xcb,0x63,0xcf,0x3e,0xa, 0x78,0x87,0x41,0xd1,0x1b,0xc5,0x30,0x6b,0x9a,0xa4,0x16,0x29,0x78,0x23,0x8d,0xc, 0x8d,0x82,0xc3,0xf7,0x81,0xb1,0xc7,0x6c,0x8f,0xce,0xac,0xff,0x0,0xc2,0x9,0xf0, 0x6f,0xfe,0x87,0x9b,0x9f,0xfc,0x8,0x8f,0xff,0x0,0x8d,0xd4,0x87,0x4a,0xf8,0x16, 0xf7,0x5,0x3f,0xb6,0x75,0xf,0x31,0x9b,0x18,0xcc,0xdd,0x73,0xfe,0xe5,0x6b,0x78, 0x93,0xc0,0x3f,0x8,0xbc,0x25,0x77,0x15,0xae,0xb9,0x7d,0xa8,0x5a,0xcd,0x34,0x7e, 0x62,0x2f,0x99,0x23,0xe5,0x72,0x46,0x7e,0x55,0x3d,0xc1,0xaf,0x58,0xe5,0x23,0xbd, 0xbd,0xf0,0x7,0x86,0x3e,0x14,0x78,0x87,0xc3,0xfe,0x1f,0xf1,0x32,0x5e,0xbd,0xe2, 0x3c,0xa8,0x93,0x48,0x19,0xd9,0xc8,0x51,0x81,0x85,0x3,0xa2,0xd6,0xef,0xc1,0x6d, 0x56,0xc7,0x45,0xf8,0x42,0x75,0xd,0x4a,0xea,0x3b,0x6b,0x48,0xaf,0x25,0xdf,0x34, 0x87,0xa,0xb9,0x65,0x3,0xf5,0x20,0x56,0x45,0x8f,0xc3,0xff,0x0,0x84,0x7a,0x9f, 0x87,0x2f,0x35,0xfb,0x4b,0xdd,0x42,0x4d,0x2e,0xcd,0x8a,0xcf,0x3f,0x9b,0x20,0xd8, 0x40,0x4,0xfc,0xa5,0x72,0x78,0x61,0xd0,0x77,0xad,0x4b,0xcd,0xb,0x48,0xd5,0xbe, 0x6,0xea,0x7a,0x4f,0xc3,0xff,0x0,0x3f,0x50,0xb7,0x9a,0x70,0x62,0x56,0x24,0x33, 0x38,0x95,0xb,0xfd,0xf0,0xbd,0x0,0xa0,0xc,0x8f,0x14,0x78,0x86,0x6f,0x19,0xeb, 0x13,0x69,0xda,0xc4,0x8b,0x6f,0xf0,0xf2,0x49,0x43,0x45,0xad,0x41,0x11,0x50,0xcc, 0xab,0xc0,0x12,0x1c,0xa9,0xfd,0xe0,0x2b,0xf7,0x7b,0x62,0xb8,0xd,0x37,0xc0,0x5a, 0x18,0xf1,0x4d,0xd3,0xeb,0x77,0x77,0xd6,0x5e,0xf,0x73,0x22,0xd8,0x6a,0xcd,0x85, 0x5b,0x82,0xf,0xc8,0x3,0x95,0x20,0xe4,0x6,0x3d,0x3b,0x56,0xaf,0x82,0xa3,0xd6, 0x75,0x4d,0x76,0xd3,0xe1,0x6f,0x8a,0x15,0xa1,0xd2,0xe0,0x32,0x49,0x25,0xaa,0x5, 0x59,0x15,0x82,0xb4,0xa3,0xf7,0x83,0x27,0xab,0x67,0xf1,0xae,0xd6,0xcf,0xc0,0xda, 0xf6,0xb3,0xad,0xcb,0xe1,0x2d,0x7e,0xca,0xe1,0x7c,0x11,0xa7,0xb4,0x8d,0xa7,0x3a, 0xba,0x2b,0x92,0xa7,0x11,0xe5,0xc7,0xcc,0x7e,0x56,0x6e,0xa2,0x80,0x3c,0x27,0xc4, 0x1e,0x1a,0xbe,0xd1,0x66,0x6b,0x93,0x67,0x74,0xba,0x4c,0xf2,0xb8,0xb1,0xbb,0x9a, 0x32,0x16,0xe2,0x3e,0x4a,0xb2,0x9c,0x60,0xe5,0x70,0x7f,0x1a,0xf5,0x5f,0x8e,0xff, 0x0,0xf2,0x6,0xf0,0x2f,0x27,0xfe,0x3d,0x9f,0xff,0x0,0x41,0x86,0xba,0x1d,0x2b, 0xc0,0xda,0xf7,0x8a,0x75,0x29,0x74,0x1f,0x19,0xd9,0x5c,0x47,0xe1,0xad,0x29,0x19, 0x34,0x96,0x46,0x44,0x62,0x15,0x82,0x26,0x59,0x72,0x5b,0xe4,0x1d,0xeb,0x7f,0xe2, 0x56,0x9d,0xf0,0xfd,0x61,0xd0,0xed,0xfc,0x61,0x7b,0x73,0x6c,0xb0,0x23,0xc7,0x65, 0xe5,0x17,0x25,0x80,0xd8,0x1b,0x3b,0x54,0xfa,0x2f,0x5a,0x0,0xe2,0x3e,0x3a,0xcd, 0x1d,0xbf,0x8f,0x7c,0x25,0x34,0xae,0x12,0x38,0xe3,0x56,0x76,0x3d,0x0,0x12,0x82, 0x4d,0x6c,0x78,0xd6,0xf,0x85,0x7e,0x3a,0xd6,0x63,0xd5,0x35,0x2f,0x19,0x79,0x33, 0x47,0x0,0x80,0x2d,0xbc,0xca,0x17,0x68,0x66,0x39,0xe5,0xf,0x3f,0x31,0xad,0xdf, 0x89,0x3a,0x6f,0xc3,0xed,0x4b,0x5b,0xd2,0xa1,0xf1,0x6d,0xed,0xcc,0x37,0xb2,0x45, 0xe5,0xda,0x24,0x45,0xc0,0x65,0x2d,0x8e,0x76,0xa9,0x1d,0x4f,0x7a,0x6f,0xfc,0x28, 0x3f,0x4,0x7f,0xcf,0x3d,0x43,0xff,0x0,0x2,0xcf,0xf8,0x50,0x7,0x27,0xe1,0xed, 0x3,0xe1,0x27,0x86,0xb5,0xfb,0x3d,0x62,0xcf,0xc6,0xb2,0x49,0x71,0x69,0x27,0x98, 0x8b,0x2c,0xe8,0x54,0x9c,0x11,0xce,0x10,0x1e,0xf5,0x8f,0x1e,0xaf,0x65,0xaa,0x7e, 0xd1,0x77,0xba,0xa6,0x9b,0x75,0x1d,0xcd,0xa3,0xdb,0x4c,0xd1,0xcb,0x11,0xca,0xb6, 0x2c,0xc8,0x38,0xfc,0x41,0x15,0xe8,0x9f,0xf0,0xa0,0xfc,0x11,0xff,0x0,0x3c,0xf5, 0xf,0xfc,0xb,0x3f,0xe1,0x58,0xb6,0xfe,0x18,0xf8,0x6d,0xe1,0x8f,0x14,0x5e,0x69, 0xfa,0x65,0xe5,0xe0,0xf1,0x25,0xb5,0xa4,0xfb,0x6d,0xe4,0x79,0x19,0x46,0x60,0x62, 0x72,0x76,0xed,0x3f,0x21,0xcf,0x5a,0x52,0xd9,0x82,0x3d,0x1b,0xc2,0x17,0x31,0x5d, 0x41,0x3c,0xb0,0xb0,0x64,0x65,0x43,0xd7,0xfd,0xea,0xe9,0x6b,0x8c,0xf0,0x5,0xb9, 0x81,0x6f,0x8e,0xd5,0x54,0x71,0x13,0x0,0xf,0xfb,0xd9,0xae,0xce,0xb2,0xa0,0xad, 0x4d,0x22,0xa6,0xef,0x2b,0x99,0x1a,0xe0,0xc9,0x83,0x8e,0x3e,0x6f,0xe9,0x58,0xfc, 0x9d,0xc8,0xf,0x4e,0x33,0x5b,0x3a,0xdf,0xfc,0xb0,0xff,0x0,0x81,0x7f,0x4a,0xc7, 0x40,0xa3,0x24,0x1c,0x92,0x73,0xd2,0xb8,0xb1,0x1f,0xc4,0x67,0x45,0x3f,0x85,0xa, 0xa7,0x4,0x81,0x18,0x3c,0x63,0x24,0xd4,0x46,0x52,0x1b,0xcb,0x8b,0xef,0xe,0x79, 0x3d,0x2a,0x49,0x54,0x37,0x4,0x9d,0xa7,0x93,0xf5,0xa1,0x23,0x89,0x57,0x39,0xf9, 0x88,0xe9,0x58,0x32,0xc6,0xc7,0x1b,0x21,0xf3,0x54,0x89,0x19,0xba,0x9c,0xf3,0x9a, 0x71,0xc,0xb8,0x33,0x48,0xc0,0x93,0xd0,0x2d,0x48,0xa0,0x5,0xc2,0x21,0x1f,0xed, 0xa,0x73,0x22,0xe3,0x19,0x27,0xd7,0xbd,0x3e,0x56,0x4d,0xc8,0x9c,0xb0,0x6c,0x72, 0x7b,0x1,0x9a,0x50,0xae,0x13,0x3f,0x2f,0x1d,0x0,0xeb,0x53,0x4,0xe3,0x84,0x1c, 0x8e,0x9,0xc7,0x15,0x5c,0xc8,0x22,0x3c,0x90,0xc4,0x75,0xe4,0x50,0xd5,0x82,0xe3, 0xd2,0x12,0xd1,0xfd,0xec,0x33,0x1e,0x71,0xda,0x9f,0xb0,0xb1,0x61,0xf3,0xc,0x77, 0xa6,0x19,0x88,0x65,0x68,0xc7,0x1d,0x7e,0x56,0x7,0x34,0xf7,0x96,0x57,0x52,0x3, 0x28,0xd,0xeb,0xdb,0xda,0x9a,0x48,0x35,0x23,0x1,0xb6,0x82,0x73,0x9c,0xe0,0x67, 0xa5,0x35,0x6d,0xa3,0x67,0x32,0x14,0xcb,0x63,0x81,0xd4,0xf,0xc2,0xa4,0x46,0x71, 0xe,0x25,0x1c,0x3,0xd8,0x50,0x10,0x1f,0x91,0xb0,0x41,0x19,0xc1,0x19,0xe2,0x93, 0x40,0x46,0xab,0x1a,0xb0,0x52,0xa4,0x3f,0xae,0x2a,0xc7,0x7d,0xdb,0x6,0x49,0xfe, 0x2e,0x69,0x9e,0x52,0x22,0x2f,0x96,0x56,0x22,0xf,0x1c,0xe,0x6a,0x56,0xce,0x70, 0x6,0x68,0x88,0x84,0x26,0x43,0x90,0x76,0x80,0x3b,0x67,0x8a,0x6a,0x26,0xec,0x33, 0x20,0x6c,0x1e,0xa0,0xf4,0xa1,0xe3,0x7d,0xc0,0x60,0xe,0x39,0x19,0xa7,0x46,0x50, 0x26,0x17,0x6b,0x30,0xfd,0x28,0xbe,0xa0,0x49,0x22,0x92,0x6,0x18,0x2f,0x72,0x48, 0xcd,0x41,0x32,0xc8,0x57,0x2,0x5d,0xc3,0x39,0xe3,0xad,0x4f,0x92,0xf,0xce,0xcb, 0xcf,0xf0,0x91,0x4d,0x49,0x62,0x90,0x10,0x23,0x23,0x1f,0xc4,0x5,0x53,0x49,0xea, 0x4,0x79,0x3b,0x37,0x19,0xd4,0x71,0xcb,0x11,0xdf,0xd2,0xa5,0x8d,0x71,0x1f,0x52, 0x79,0xcf,0xb1,0xaa,0xc2,0x18,0x65,0x2c,0xa9,0xbc,0xe,0xa4,0x76,0x35,0x3c,0x8f, 0xa,0x80,0xe,0x30,0x7,0x19,0x34,0x95,0x90,0x6a,0x35,0x4a,0x17,0x70,0x31,0x91, 0xd7,0x1d,0x29,0x26,0x64,0xa,0x65,0x6d,0xe1,0x7a,0x0,0x3d,0x6a,0x28,0xee,0x22, 0x53,0xb9,0xbc,0xa5,0x6e,0x80,0x3,0x40,0xbb,0x48,0xc7,0xe,0x9,0xcf,0xde,0xc6, 0x28,0xba,0xb0,0x13,0x18,0xa2,0x75,0xe,0xf1,0x92,0x7b,0xe7,0x8a,0x9e,0x20,0x23, 0x50,0x83,0xa,0xbd,0x40,0xcf,0xf5,0xaa,0x71,0xdc,0xc2,0x3,0x4,0x62,0xca,0x4e, 0x48,0x55,0x27,0x26,0x98,0x26,0xf3,0xb2,0xbe,0x4c,0x85,0xbb,0x64,0x63,0x14,0x26, 0x90,0x58,0xb9,0x1a,0x44,0x92,0x34,0x81,0xb7,0x33,0x1e,0x4e,0x6a,0x70,0x40,0x5c, 0x26,0x38,0xf6,0xaa,0x50,0x33,0x92,0x40,0x4e,0x9d,0x77,0xc,0x62,0xa5,0x3e,0x73, 0x12,0xa6,0x1f,0x94,0xf7,0x2d,0xc5,0x54,0x64,0x26,0x89,0x4b,0x96,0xca,0x8f,0x95, 0xbf,0x3c,0xd2,0x48,0x8,0x11,0x8d,0xdc,0xe7,0x15,0x1,0x6f,0x2e,0x45,0xdb,0xd0, 0x70,0x7d,0x45,0x49,0x24,0x80,0x30,0x53,0xd5,0xba,0xa,0x7c,0xda,0x5,0x8c,0x5f, 0x10,0x13,0x79,0x73,0x63,0x67,0x8,0x5c,0x16,0x69,0x5d,0x9c,0xe0,0x0,0xb8,0xe3, 0xf3,0x23,0xf2,0xaa,0xda,0x4d,0xba,0xcf,0x7b,0x24,0x8e,0x38,0xb7,0xca,0x80,0x83, 0x3b,0xdb,0x4,0x13,0x9f,0x41,0x9f,0xd6,0xa8,0xdf,0x4f,0x4,0xda,0xd5,0xc5,0xc4, 0x84,0xc9,0xd,0xa9,0x48,0x94,0xe,0xe4,0xe7,0x23,0xf4,0xfd,0x2a,0x7b,0x4b,0xd5, 0x4b,0x79,0x75,0x16,0xcd,0xb5,0x94,0x50,0xed,0x81,0x41,0xc1,0x95,0x8f,0x71,0xeb, 0xce,0x3f,0x3a,0x7a,0xd8,0x6d,0x22,0xdc,0x7a,0x63,0xdd,0xdf,0xcb,0x28,0x2c,0x20, 0x46,0xfd,0xdc,0x72,0x67,0x19,0xc0,0xe7,0x7,0xb7,0x19,0xe2,0x9d,0x3e,0x85,0x72, 0x22,0x92,0x65,0xbb,0x12,0x4e,0x4e,0x4e,0xe4,0x23,0x3f,0x8f,0x63,0xfa,0x56,0xb6, 0x9f,0x75,0xd,0xec,0x11,0xca,0x1b,0x77,0x98,0x81,0x87,0x3c,0xe7,0x1c,0x8f,0xf3, 0xe9,0x50,0xeb,0x1a,0x84,0x76,0x30,0x48,0x91,0xc9,0xba,0x6d,0x8c,0x54,0x11,0x9d, 0x9c,0x75,0xf6,0xa7,0xca,0xec,0x2d,0x4a,0xf7,0x7a,0xc9,0x49,0x64,0x82,0xd2,0x13, 0x2c,0xc0,0x7c,0xc7,0x82,0xa0,0xf1,0xe9,0x45,0xab,0xce,0x9b,0xa6,0x99,0x8b,0xdc, 0x4c,0xe0,0x31,0x3c,0x67,0x3d,0x87,0xa0,0x1f,0xd6,0xa4,0xd0,0xee,0xd2,0x5d,0x3a, 0x8,0x7c,0xa8,0xd2,0x5f,0x25,0x7e,0x56,0x6e,0x58,0xf4,0x27,0xdf,0x90,0x6a,0xbd, 0xed,0xa6,0xad,0x71,0x72,0xef,0x11,0x48,0x82,0xb0,0xd9,0x17,0x18,0x23,0xd7,0x34, 0x6c,0x26,0xac,0x5c,0xb8,0xb8,0xb7,0x96,0x71,0x6b,0x74,0x76,0x84,0x1b,0xc2,0xaf, 0xcc,0x7d,0x3a,0x8a,0xc6,0xfb,0x33,0x1b,0x9d,0x47,0x4d,0x8b,0x30,0xf9,0xa8,0x70, 0xa1,0x88,0xcb,0x64,0x1c,0x8e,0x7a,0xb0,0x6e,0x6a,0xc5,0xc4,0x57,0x16,0xd7,0xd3, 0x19,0x60,0x22,0x35,0x97,0x31,0xc8,0xa7,0x1b,0xf8,0x18,0x5f,0xcc,0x1a,0x34,0x65, 0xfb,0xd,0xe4,0xb2,0xea,0xaf,0xe5,0xde,0x4c,0x7f,0x73,0x24,0xac,0x31,0x81,0x80, 0x40,0x3e,0xb9,0xfe,0x74,0x20,0x5a,0x10,0xda,0xe8,0x7a,0x8b,0x14,0x46,0xb5,0x86, 0xb,0x6f,0xba,0x44,0xb2,0x7c,0xc5,0x47,0x1,0x40,0x3,0xfa,0xf6,0xab,0x3a,0x85, 0xed,0x8d,0xdd,0xda,0xe9,0x53,0xab,0x34,0xbb,0xc2,0x2c,0xac,0xa3,0x68,0x7e,0x8, 0x5d,0xd9,0xce,0xe2,0x31,0x5a,0x17,0x5a,0xad,0xa6,0x92,0xc,0xb7,0x57,0x2a,0x9b, 0x41,0xe0,0xbf,0xcc,0x47,0x38,0xc0,0xfc,0xeb,0x91,0x59,0xa0,0xbe,0xd4,0xef,0xae, 0xee,0xd9,0x12,0xdf,0x61,0x92,0x65,0xc8,0x4,0x1c,0x2e,0x2,0x9e,0xec,0x36,0xf5, 0x1d,0xf1,0xeb,0x57,0xca,0xd8,0x45,0x1a,0xb7,0x50,0x35,0xbd,0xd7,0xd8,0x5,0xb2, 0xb2,0x3a,0x6f,0xf3,0x48,0x6e,0x17,0xa7,0xe3,0xcf,0x1f,0x4a,0x9e,0xea,0xe2,0xde, 0xe6,0xd1,0x21,0x81,0xe4,0x95,0x84,0x61,0x5d,0xf0,0x40,0x53,0xd1,0x46,0x71,0xeb, 0x57,0x61,0xd4,0x6d,0x6d,0xf4,0x5b,0x7b,0x84,0xb8,0x7b,0x81,0x30,0x1b,0x1d,0xbe, 0x66,0x72,0x79,0xe7,0xdf,0xd7,0xd3,0x15,0x8f,0x79,0x2,0x69,0x8d,0x6f,0xe5,0xcf, 0x26,0x2e,0xa5,0x8c,0x99,0xe4,0x7c,0xe0,0xb3,0x72,0x40,0xe8,0x31,0xce,0x2a,0x3e, 0x40,0xd1,0x6e,0x3d,0x69,0x75,0xb,0x36,0xb5,0x8,0xa2,0xf1,0x6,0xd9,0xcc,0xa1, 0x48,0x56,0x19,0xcb,0x1,0xfc,0x5c,0xf6,0xe2,0xb9,0xc8,0x59,0xf4,0xd,0x56,0x11, 0x15,0xc0,0x9a,0xda,0xdc,0x2a,0x9c,0x92,0x32,0x18,0x6d,0x3f,0x88,0x23,0x8e,0x3a, 0x62,0xba,0xbd,0x4a,0xd,0x3e,0xc6,0xd6,0x48,0xd8,0x46,0x67,0x90,0x11,0xa,0xe0, 0x7,0x62,0x47,0x5c,0xf7,0xf5,0xcf,0xe9,0x5c,0x80,0x5b,0x9b,0x79,0xa1,0x6b,0xdb, 0x47,0x45,0x84,0xa4,0x84,0x92,0xbc,0x95,0xe9,0xdc,0xfa,0xf,0xca,0xae,0xa,0xf7, 0xb8,0x38,0xb7,0xb1,0xbb,0xe1,0xfb,0x4b,0x95,0x37,0x12,0xac,0xe5,0x11,0xe6,0x66, 0x61,0x9c,0x2f,0x3c,0xff,0x0,0x2c,0x7e,0x39,0xad,0x8b,0x8b,0x67,0x9f,0x6a,0xfd, 0xbe,0x44,0x55,0xed,0x14,0x9b,0x49,0xfe,0x75,0x8b,0xa3,0xb8,0x8e,0xc6,0x23,0x36, 0x9e,0x67,0xc9,0x66,0x2c,0x17,0x27,0x24,0x93,0xdf,0x1e,0xa3,0xa5,0x6b,0x7d,0xa5, 0xf7,0x71,0x66,0xc0,0x9f,0xba,0x8c,0xc4,0x1c,0x7e,0xb5,0xcf,0x72,0xd5,0xc1,0xfe, 0xcf,0x6b,0x1a,0x9,0x2e,0xa6,0x2a,0xa3,0x93,0x2b,0xe4,0xd3,0xad,0xee,0x60,0xbb, 0x8d,0x96,0x29,0x64,0xc0,0xe9,0xce,0x8,0xfc,0x45,0x48,0x45,0xd4,0xfb,0x44,0x61, 0x21,0x8f,0xab,0x63,0x5,0xcf,0xb5,0x1e,0x6a,0xee,0x11,0x2b,0x13,0xdb,0x4,0x71, 0xf8,0x9c,0x54,0x3d,0x0,0x89,0xa3,0xb5,0x59,0xd5,0x64,0x95,0xe4,0x6c,0x7d,0xc6, 0x52,0xdf,0xad,0x30,0xad,0x94,0x92,0x6d,0x8e,0xd1,0x19,0x89,0xe0,0x18,0xc7,0xf9, 0x15,0x65,0xa7,0x78,0xdb,0x6,0xea,0xd9,0x8,0xe0,0x8f,0xbd,0xfd,0x45,0x47,0x2b, 0x46,0x57,0x2b,0x79,0xa,0x8e,0xa4,0x80,0x14,0x7f,0x3a,0x18,0x6,0xc4,0xf2,0x15, 0xe3,0x88,0xc4,0x77,0x7f,0x1,0x1b,0x48,0xa6,0x16,0x76,0x42,0x82,0x10,0xe0,0x7f, 0xc,0x8c,0x3f,0x96,0x2a,0xa4,0x57,0x96,0xc8,0xdb,0x1a,0xf3,0x72,0x21,0x3b,0x15, 0x17,0x20,0x7e,0x95,0x76,0xda,0x4b,0x69,0x4b,0xf9,0x73,0xdc,0x39,0x6e,0xb8,0x46, 0x18,0xfc,0x40,0xa1,0x26,0xc6,0x82,0x23,0x73,0x20,0xcb,0xa2,0x0,0x8,0x8,0xa1, 0xce,0x7,0xe9,0x4c,0x69,0x27,0x95,0xf3,0xb5,0x2,0x86,0xc1,0x2a,0x9,0xc1,0xfc, 0xe9,0x4c,0x51,0x87,0x65,0x65,0xba,0x90,0x7a,0x3b,0x31,0xfd,0x28,0x48,0xa1,0x55, 0x2e,0xb6,0x5,0x81,0xe0,0x90,0x46,0x3f,0x53,0x40,0xee,0x27,0xcc,0x85,0xa4,0x96, 0xfe,0x20,0x3b,0xe5,0x57,0x8f,0xcc,0xd5,0x6b,0x8b,0xb4,0x42,0x59,0x6f,0xcb,0xa2, 0x80,0x4b,0x23,0x26,0xf,0xe4,0xd,0x4c,0x60,0x95,0x49,0xd9,0xa4,0x45,0xb1,0xba, 0x19,0x5d,0x6,0x3e,0xbc,0x54,0xc1,0x2f,0x55,0x4,0x49,0x6b,0x66,0xa8,0x7,0x3f, 0xbd,0x24,0x7e,0x8b,0x4e,0xc2,0x2a,0xc9,0x3d,0xac,0xa9,0x11,0x96,0xf2,0x75,0x66, 0x1,0x80,0x8b,0x77,0x3f,0x90,0xa5,0xfd,0xdb,0x33,0xe1,0x2f,0x5d,0x18,0x70,0x24, 0x12,0xe3,0xf5,0x0,0xd5,0x82,0x35,0x25,0x88,0x5,0x36,0x9b,0x46,0x0,0xc1,0x7e, 0x5,0x34,0xa5,0xd4,0x84,0x89,0x2e,0x20,0x2b,0x91,0x90,0xab,0x91,0xf8,0x93,0xcd, 0x3b,0xc,0xac,0x11,0x72,0x1c,0x58,0xdd,0x3f,0xfb,0x25,0x78,0xff,0x0,0xc7,0x9a, 0x91,0x2d,0x9a,0x3f,0xde,0x5b,0x69,0xd,0xee,0x4b,0xa0,0x23,0xf0,0x4,0xd4,0xdf, 0x66,0x70,0x5b,0xce,0xd4,0x5a,0x25,0x4e,0x55,0x23,0x8,0x9f,0xa9,0xcf,0xeb,0x55, 0xc4,0x56,0xed,0x23,0x99,0x35,0x39,0xd2,0x53,0x82,0x4c,0x72,0x2a,0x83,0xf9,0xe, 0x69,0x72,0xab,0x1,0x2c,0xd1,0x5c,0xc8,0x17,0x16,0x4a,0xcc,0x7f,0x85,0xb0,0x48, 0xfd,0x28,0x89,0x6f,0x64,0xca,0x49,0xe4,0x36,0xdc,0x64,0xf9,0x85,0x80,0xf6,0x3c, 0x54,0x6,0x3b,0x15,0x7,0xcd,0xbb,0x92,0xe5,0x98,0xf0,0xa6,0x56,0x73,0xfa,0x53, 0x45,0xbe,0x98,0x10,0x83,0xa7,0xc9,0xbb,0x9e,0x36,0x4b,0xff,0x0,0xc4,0xe2,0x95, 0x90,0x16,0xff,0x0,0xd3,0x94,0x6c,0x77,0x44,0x4e,0xa1,0x95,0xb,0x7e,0xa5,0xa9, 0xb2,0x38,0x52,0x16,0x7d,0x51,0x73,0xd7,0x6e,0x57,0x23,0xf5,0xaa,0xd0,0x43,0x65, 0xfc,0x1a,0x44,0xa4,0x9e,0xed,0x8,0x27,0xf5,0x3c,0x55,0x95,0xb4,0x89,0xe2,0x2a, 0x9a,0x5a,0xa8,0x27,0x83,0xc2,0xb5,0x16,0x11,0x59,0xa5,0xb7,0x46,0xfd,0xfe,0xa2, 0x98,0x63,0x80,0xc8,0x17,0x3f,0xca,0x89,0x9f,0x4e,0x40,0x9,0x96,0xe2,0x56,0x1c, 0x28,0xd8,0x7f,0x3c,0xa8,0x15,0xa0,0xb3,0x5c,0xc7,0x18,0x8b,0xfb,0x3d,0x55,0x40, 0xe3,0x32,0x8f,0xe8,0x3f,0x9d,0x47,0x2c,0xf7,0xb1,0xc0,0x4a,0x8,0x37,0x1f,0xbb, 0xf3,0x1c,0x93,0xe9,0xd2,0x8b,0x6,0xa5,0x55,0xba,0xb7,0x66,0xb,0x18,0xb9,0x3c, 0x74,0x48,0x19,0xdb,0xf3,0xff,0x0,0x1a,0x95,0xc,0x2a,0xdb,0x23,0xb0,0xbb,0x32, 0x1e,0x7,0x9b,0x1e,0xdf,0xd4,0x9a,0x96,0xdd,0x75,0x44,0xff,0x0,0x59,0x25,0x9a, 0x90,0x78,0x61,0x1b,0x39,0x1f,0x8e,0x45,0x23,0xfd,0xbe,0x47,0xf9,0xe6,0x55,0x70, 0xdf,0x7a,0x38,0x81,0x3f,0xa9,0xa2,0xc0,0x9,0xc,0xbb,0x87,0x9b,0xa5,0x2c,0x84, 0x1e,0xb,0xca,0x7,0xe9,0xcd,0x59,0xf,0x7b,0xb8,0x91,0x65,0x4,0x4a,0x7b,0x99, 0xb0,0x3f,0x1c,0xa,0xaa,0xe9,0x76,0xb2,0x31,0x96,0xee,0x66,0x5f,0xe1,0xc8,0x55, 0xdb,0xf9,0xa,0x44,0x78,0x43,0x2a,0xbd,0xf3,0x12,0x47,0x69,0x32,0xbf,0x98,0xa2, 0xeb,0x60,0x27,0x96,0x3b,0xa6,0xa,0xc7,0xec,0xdb,0xb3,0xc0,0x24,0x90,0x7f,0x3c, 0x53,0x5d,0x35,0x29,0xa3,0x65,0x79,0xe2,0x84,0x9e,0x37,0xa5,0xb9,0xc8,0xfd,0x71, 0x4b,0x2c,0x76,0xa7,0xb,0x2b,0x99,0x30,0x32,0x37,0x4c,0xc7,0xfa,0xd1,0xa,0x5b, 0x46,0xc5,0xcc,0x48,0x3d,0x31,0x93,0x4f,0xd0,0x63,0x63,0xb1,0x9e,0x18,0x82,0x35, 0xfc,0xa5,0x71,0xdd,0x10,0xe4,0xfe,0x20,0xd1,0x2d,0x8a,0xcb,0x22,0x79,0xd7,0xf7, 0x4d,0x8c,0x71,0xe6,0x2c,0x6a,0x3f,0x5,0x15,0x65,0xc,0x64,0x12,0xb0,0x95,0x3e, 0xeb,0xb6,0x98,0x5d,0x39,0x72,0x8c,0xac,0xbc,0x6e,0x0,0x7f,0x5a,0x1b,0x25,0x90, 0xc9,0x69,0x69,0x1c,0x5b,0x83,0xdc,0x15,0x3d,0x84,0xf2,0x10,0x4f,0xe0,0x6a,0xbb, 0xc3,0x61,0x1a,0x2e,0x6c,0x4b,0x1e,0xcd,0xba,0x47,0x1f,0x9d,0x5c,0xf3,0x27,0xe0, 0x88,0xf6,0xa6,0x38,0x50,0xc3,0x9f,0x7e,0x94,0x48,0xb7,0xc1,0x41,0x48,0xed,0x42, 0x1e,0xbe,0x62,0xb1,0xfd,0x6,0x31,0x49,0x31,0xe8,0x64,0xb4,0x96,0xb1,0x32,0x95, 0xd1,0xc9,0x25,0xb1,0x97,0x88,0x22,0x63,0xfd,0xee,0xa6,0xa3,0xf0,0xb4,0xb3,0x42, 0xb7,0xd6,0x3,0x60,0x74,0x91,0x5c,0x2b,0x64,0x80,0x18,0x1,0xc7,0xe2,0xa7,0xf3, 0xad,0x29,0x62,0xd4,0x25,0x46,0x2,0xe6,0xde,0x21,0xd3,0xe5,0x88,0x30,0xfc,0x9a, 0xb0,0x2e,0xe3,0x1a,0x6f,0x88,0x2d,0x9e,0x7b,0xf5,0xc4,0xc0,0xc7,0x23,0xc6,0x2, 0x30,0x7,0x91,0x9c,0x7b,0xed,0xfd,0x69,0xa1,0x1d,0x44,0xc2,0xe9,0xf1,0xb9,0xad, 0xd0,0x9f,0xe2,0x2c,0x46,0x69,0x54,0xdf,0x13,0xb5,0xe5,0xb7,0xf2,0xc7,0x65,0x42, 0x4f,0xf3,0xaa,0xab,0xf6,0x79,0x1,0x78,0xef,0x5a,0x63,0x8c,0xf3,0x28,0x39,0xfc, 0xaa,0x45,0x48,0x63,0xf9,0x5a,0x4b,0x83,0xb8,0x72,0x19,0x98,0xe2,0x96,0xc3,0x45, 0x9d,0x92,0x99,0x43,0xb,0x82,0x98,0xf4,0xff,0x0,0xc,0xd4,0x17,0xb,0x70,0x24, 0x52,0xda,0x84,0xb8,0x1d,0xb6,0x20,0x7,0xf1,0xc5,0x52,0x68,0x61,0x76,0x56,0x1e, 0x6c,0xca,0xa7,0x90,0xf1,0x48,0x4f,0xd3,0x3d,0xe9,0x25,0x25,0xe4,0x2,0x2b,0xf, 0x25,0xbf,0x84,0xaa,0x1,0x91,0xee,0x68,0xb,0x16,0x83,0x5a,0x1d,0xc7,0xfb,0x42, 0x55,0x20,0xe1,0x93,0x78,0x4,0x1f,0xc0,0xa,0x88,0x7d,0x91,0x9f,0x1f,0x6c,0x79, 0x14,0x76,0x37,0xe,0x3f,0x91,0xa6,0x34,0x13,0xa9,0x57,0x8a,0xd1,0xc3,0xe,0xa7, 0xe4,0xc7,0xf3,0xa9,0xa1,0x4b,0x8f,0x21,0x98,0xd9,0x41,0x1b,0x9f,0xee,0x6d,0xfc, 0xc8,0x19,0xa2,0xe0,0x36,0x6f,0xec,0xf9,0xc6,0xd9,0x19,0xdc,0x2f,0x60,0x1f,0x1f, 0xa5,0x3b,0xec,0xda,0x78,0x5d,0xf1,0xd9,0xb3,0x61,0x7e,0xf6,0xd2,0xdf,0x9e,0x45, 0x21,0x17,0x43,0x7,0xf7,0x2a,0xea,0x3b,0x13,0x83,0xf5,0xa9,0xcd,0xbd,0xd4,0xb6, 0xc6,0x36,0x96,0x34,0x2c,0x32,0x48,0x8f,0x20,0x67,0xf1,0x19,0xa4,0x80,0xab,0xe6, 0x79,0x4a,0xab,0x1d,0xbc,0xc5,0x72,0x78,0x8a,0x0,0x7,0xe7,0x9a,0x94,0x3c,0xa6, 0x45,0xdb,0x6d,0x83,0x8e,0xb,0xb2,0x82,0x47,0xa6,0x1,0xa6,0x9b,0x39,0xd3,0xf7, 0x7e,0x68,0xf9,0x79,0x4,0x40,0x39,0x3f,0xad,0x44,0xf6,0x73,0x2d,0xd0,0x2b,0x34, 0xe3,0x78,0xc9,0x90,0x63,0x68,0x3e,0xe0,0x52,0xb0,0xfa,0x13,0xb1,0x2f,0x31,0x41, 0x83,0x28,0x19,0x8,0x64,0x60,0x7,0xe4,0x28,0x31,0xea,0x2c,0xa1,0x33,0x67,0x1c, 0x7f,0xee,0x33,0x37,0xeb,0x4a,0xb6,0x28,0xa7,0xe6,0x9e,0x52,0xd8,0xc9,0x2b,0x31, 0x5c,0xd0,0xd6,0x36,0xb3,0xb8,0xda,0x9b,0xc8,0xe3,0x22,0xe1,0x9f,0xfa,0xd3,0x48, 0x42,0x33,0x5c,0x33,0x88,0xd6,0xe1,0x14,0x81,0xd4,0x45,0xf2,0xfe,0xa6,0x86,0x8e, 0x42,0x3f,0x79,0xa8,0x20,0x3d,0xc6,0xc4,0x1f,0xe3,0x8a,0x53,0x6f,0x6d,0x1a,0x47, 0xb6,0x25,0x6c,0x9f,0x95,0x1b,0x9f,0xad,0x4c,0x2d,0x6c,0xd6,0x53,0xb2,0xde,0x25, 0x7e,0xe4,0x20,0x6,0x8b,0xc,0xae,0xc2,0x2f,0x28,0x6f,0xb9,0x21,0x7b,0x61,0x94, 0x7f,0x2c,0x53,0x56,0x7b,0x14,0xc1,0x6b,0x96,0x91,0xfb,0x12,0xc5,0x9a,0xae,0x79, 0x69,0xe6,0x63,0xca,0x5,0x4f,0x70,0xb4,0x86,0xd9,0x14,0x96,0x56,0xa,0xdd,0x46, 0x79,0x34,0x58,0x2e,0x67,0x4c,0xf6,0x8b,0x3e,0xef,0xb2,0xcb,0x26,0x46,0x58,0x85, 0x66,0xfc,0xe9,0x15,0xad,0x8b,0x3b,0x9d,0x36,0xd8,0x82,0x78,0x26,0x10,0xf,0xeb, 0xd6,0xb4,0x80,0x94,0xa1,0x23,0x79,0x7c,0x67,0x6f,0x0,0x9a,0x6d,0xbc,0x86,0x65, 0x75,0xc1,0x45,0x1c,0x1c,0xa8,0x1f,0x5e,0x94,0x5,0xca,0xc9,0xbd,0x93,0x7a,0x69, 0x71,0x28,0xe8,0x3e,0xee,0x8,0xf5,0xa9,0x15,0x2e,0xa6,0x8f,0xe5,0x82,0xd8,0x91, 0xd0,0x99,0xe,0x17,0xf2,0x15,0x61,0x63,0x1b,0x40,0x93,0xe7,0x3,0xa6,0x69,0xea, 0xe5,0x5f,0xa,0x80,0x2e,0x3a,0xf7,0xfd,0x28,0xb0,0x8a,0x4b,0xe,0xab,0xfe,0xac, 0xfd,0x95,0x50,0x9e,0x59,0x59,0x8e,0x5,0x39,0xac,0xae,0xd8,0x73,0x7a,0x8a,0xa3, 0xfe,0x98,0x6,0xcf,0xe6,0x4d,0x68,0xab,0x60,0xf0,0xf9,0x18,0xe7,0xa9,0xa6,0xbc, 0x8a,0xcb,0x81,0x9c,0xe0,0xf4,0x14,0xec,0x86,0x66,0x4d,0x61,0x33,0x80,0xa2,0xf0, 0x36,0x7f,0x8d,0x23,0x3,0x1f,0x87,0x35,0x28,0xb3,0xce,0x15,0xaf,0xae,0xd8,0x1, 0xfd,0xe0,0x3f,0x92,0xd4,0xe2,0x3c,0x30,0x8c,0x93,0xb5,0xbd,0x3a,0x8a,0x22,0x91, 0xd1,0x4a,0xe4,0x90,0xa7,0xf8,0xc7,0x4a,0x9b,0x6a,0x5,0x73,0xa5,0xda,0xbf,0xc, 0xf7,0x32,0x7f,0xdb,0x76,0xff,0x0,0x1a,0x24,0xd3,0x6d,0xca,0xec,0x64,0x2c,0xa3, 0xa9,0x6f,0x98,0xe3,0xeb,0x9a,0xb2,0x57,0x74,0xa5,0x93,0x68,0xfc,0x69,0xe0,0xb1, 0x7,0x95,0xe0,0x73,0x4e,0xc2,0x28,0x1d,0x2e,0xd2,0x37,0x55,0x86,0xda,0x25,0x7, 0x9f,0x98,0x75,0xfc,0x6a,0x44,0x8e,0x34,0x9f,0x6a,0xda,0xc0,0x8e,0x3a,0x13,0x16, 0x9,0xfc,0x6a,0xc3,0x6e,0x0,0x2a,0x4c,0xa3,0x9c,0x63,0xd6,0xa1,0x21,0xc3,0x1d, 0xf9,0x38,0xef,0xbb,0x26,0x8b,0x8c,0x9d,0xed,0x91,0x97,0x27,0x62,0x30,0xfe,0x21, 0x51,0x10,0xc2,0x65,0x57,0x71,0xf8,0x1e,0x2a,0x68,0xe2,0x8d,0xc0,0xf9,0x89,0x38, 0xee,0x68,0x28,0xa4,0x95,0xc,0xc0,0xf6,0xa4,0xc9,0x6c,0x0,0xc9,0xe4,0x9c,0xfe, 0x55,0x25,0xba,0x87,0xbd,0xb7,0xe,0x4a,0xb0,0x91,0x48,0xc1,0xeb,0xcf,0x4f,0xcf, 0x15,0x1,0x5f,0x2f,0x90,0x49,0x1e,0xa4,0x55,0x8b,0x46,0x3f,0x6a,0x85,0x87,0xf7, 0xc7,0xf3,0xaa,0x83,0xf7,0x90,0x9b,0xd0,0xf2,0x7f,0x7,0x7c,0x19,0x92,0xce,0xdb, 0x5f,0xbb,0xf1,0x86,0x92,0x85,0xe3,0x8f,0xcd,0xb0,0x64,0xbb,0xce,0xd6,0x1,0xcb, 0x1c,0x23,0x7f,0xbb,0xd6,0xbc,0xee,0x6b,0x3f,0x1b,0x7c,0x4a,0xb0,0xbc,0xd7,0xee, 0xa5,0xfe,0xd0,0x87,0x49,0x84,0x89,0x65,0x91,0xe3,0x8c,0xc6,0x80,0x17,0x20,0x1, 0x8c,0xf7,0x35,0xd6,0x78,0xf,0xe3,0x1f,0xf6,0x2c,0x9a,0xcc,0x3e,0x2f,0xba,0xd5, 0xb5,0x58,0xae,0x36,0xa4,0x9,0xb8,0x48,0x10,0xd,0xe1,0xc7,0xcc,0xc3,0x19,0x4, 0x74,0xf4,0xae,0x87,0x4e,0xf8,0xbb,0xf0,0xc3,0x48,0xd3,0xaf,0x34,0xfd,0x3f,0xc3, 0x5a,0x85,0xbd,0xa5,0xea,0x95,0xb8,0x85,0x20,0x4d,0xb2,0x82,0xa,0x90,0x7f,0x79, 0xe8,0x48,0xaf,0x6c,0xe5,0x38,0x4f,0x1,0x43,0xe2,0x4f,0xf8,0x46,0x2e,0x6e,0x24, 0x77,0x3e,0x6,0x4b,0xbf,0xf8,0x9c,0x42,0xae,0x80,0xba,0xe1,0x37,0xe0,0x7d,0xff, 0x0,0xbb,0xb7,0xee,0x91,0x5e,0x93,0xe0,0x58,0xb5,0x79,0xfc,0x53,0x69,0x73,0xe0, 0xa3,0x24,0x1f,0xf,0x44,0xcc,0x24,0x82,0x57,0x5d,0xdb,0xf6,0x7c,0xfc,0x3e,0x5f, 0xef,0xe3,0xbd,0x6d,0xf8,0x7b,0x5f,0xf0,0x25,0xd7,0xc3,0xd,0x73,0x51,0xd3,0x74, 0x9,0xa0,0xd0,0x21,0x91,0xc5,0xe5,0xa1,0x89,0x43,0x4a,0xc1,0x50,0x92,0x6,0xe2, 0xf,0x5,0x7b,0x8e,0x95,0xe7,0x9e,0x10,0xf1,0x94,0x37,0xbf,0x18,0x74,0xbb,0xf, 0xb,0x3d,0xee,0x9d,0xe1,0xa9,0xa4,0xff,0x0,0x90,0x71,0x6d,0x88,0x5b,0xca,0x3b, 0x89,0x50,0x48,0xe5,0x86,0x7a,0xd0,0x7,0x4d,0xe3,0x23,0xa4,0xcf,0xe3,0x9b,0xcb, 0x6f,0x5,0xc3,0x3c,0x3f,0x10,0xfc,0xc1,0x9b,0x82,0x48,0x4d,0x9e,0x5f,0xcf,0xcb, 0x9d,0x9f,0x73,0x1d,0xab,0x8b,0xd3,0xbc,0x4d,0xf1,0x7b,0x55,0xf1,0x4d,0xdf,0x86, 0xed,0x35,0x97,0x7d,0x4e,0xd3,0x7f,0x9b,0x19,0xf2,0x0,0x1b,0x48,0xd,0xf3,0x15, 0xc1,0xe4,0x8a,0xf4,0xf,0x10,0xfc,0x42,0xf8,0x7d,0xe1,0x2f,0x88,0x37,0xb2,0xdd, 0x68,0x17,0x6d,0xaf,0x5b,0xb0,0x59,0x6f,0x61,0x85,0xe,0xed,0xd1,0x8e,0x84,0xb8, 0xfe,0x12,0x7,0x4a,0xf3,0xef,0x1a,0xfc,0x49,0xf0,0xcd,0xe4,0x6d,0xa8,0x78,0x32, 0xc6,0xff,0x0,0x48,0xf1,0x4,0xd7,0x3e,0x65,0xc5,0xf8,0x2,0x36,0x92,0x32,0xe, 0xe5,0x25,0x5c,0xf5,0x6d,0xa7,0xa7,0x6a,0x0,0x5d,0xf,0xc4,0xdf,0x17,0xbc,0x45, 0xad,0xdf,0x68,0xfa,0x6e,0xb2,0xf2,0x5e,0x59,0x6e,0xf3,0xd1,0xbc,0x85,0xb,0xb5, 0xb6,0x9e,0x4a,0xe0,0xf3,0xe9,0x5b,0x9f,0xd,0x21,0x93,0xe2,0xae,0xa3,0xa9,0xc3, 0xe3,0xb7,0x93,0x55,0x3a,0x52,0xa7,0xd9,0x43,0x3f,0x95,0xe5,0x17,0x66,0xf,0xfe, 0xaf,0x6e,0x73,0xb1,0x7a,0xe7,0xa5,0x7a,0xa7,0xc3,0xdf,0xf,0x69,0x36,0x7e,0x1e, 0xd3,0x35,0xb8,0x2c,0x22,0x8f,0x54,0xbf,0xd3,0xe1,0x7b,0xab,0xa0,0xe,0xf9,0x99, 0xd5,0x5d,0x8b,0x1e,0xe4,0xb7,0x26,0xbc,0xac,0x23,0x78,0xc7,0x50,0x9a,0x3f,0x84, 0xd1,0x4b,0xe1,0xf9,0xac,0xf7,0x7f,0x6a,0x33,0xca,0x6d,0xfc,0xfd,0xc7,0xf7,0x7f, 0x74,0xb6,0x70,0x56,0x4e,0xb8,0xc6,0xea,0x0,0xf5,0xdf,0x15,0xf8,0x53,0xc3,0x3a, 0x99,0x4d,0x77,0x5d,0xb1,0x69,0xdf,0x4a,0x85,0xa5,0x49,0x16,0x47,0x5,0x15,0x3e, 0x73,0x80,0xa4,0x67,0xa7,0x7a,0xf2,0xdf,0x17,0x78,0xdf,0xc5,0xde,0x22,0x8a,0xeb, 0xc4,0x7e,0x2,0xd4,0x66,0x8b,0xc3,0xba,0x7d,0xbe,0xdb,0xb3,0x22,0x46,0x8c,0xb2, 0x8c,0xb3,0x10,0xae,0xb,0x1f,0x94,0xa7,0x4a,0xb9,0xa4,0x78,0x87,0x53,0xf0,0x4, 0xd2,0xf8,0x7f,0xe2,0x35,0xd5,0xde,0xaf,0x2e,0xb5,0xb1,0x2d,0x84,0x52,0xf9,0xe8, 0xa8,0x49,0x46,0xc,0x58,0xa9,0x19,0x2c,0x3a,0x66,0xbb,0xfd,0x5b,0xc1,0x16,0x30, 0x78,0x13,0x5b,0xd0,0x7c,0x37,0x61,0x6d,0x64,0xd7,0xf0,0x3a,0x84,0x19,0x54,0x32, 0x15,0xc6,0x49,0xe7,0xd0,0x50,0x7,0x8c,0x78,0x6f,0x54,0xf8,0xcf,0xe2,0xdd,0x28, 0xea,0x5a,0x46,0xac,0xd3,0x5a,0x89,0x1a,0x2d,0xcc,0xd6,0xe8,0x77,0xc,0x67,0x82, 0x33,0xdc,0x57,0x45,0xe1,0x89,0x34,0x48,0x3c,0x45,0x35,0xbf,0x8a,0x61,0x9e,0x4f, 0x88,0xcb,0xc,0xff,0x0,0x68,0xb8,0xc9,0x29,0x8f,0x25,0x8a,0xf2,0xa7,0xcb,0xff, 0x0,0x55,0x81,0xd3,0xf5,0xac,0x7d,0x2b,0xe1,0x5f,0xc5,0x7d,0x12,0xd0,0xda,0x69, 0x7a,0xf4,0x36,0x76,0xe5,0xcb,0xf9,0x50,0x5f,0xba,0xae,0xe3,0xd4,0xe0,0x2f,0xb5, 0x61,0xf8,0x73,0x4f,0xd6,0xb4,0xdf,0x8d,0x93,0x59,0x78,0x86,0xef,0xed,0x5a,0xaa, 0x5a,0xdc,0x9,0xe7,0xf3,0x4c,0x9b,0xb3,0x6a,0xc5,0x7e,0x63,0x82,0x70,0xa4,0x7e, 0x54,0xa5,0xb3,0x1a,0xdc,0xf7,0xdf,0x5,0x2e,0xd1,0x7b,0xc0,0xe9,0x1f,0x23,0xa7, 0xf1,0x57,0x59,0x5c,0xbf,0x83,0x25,0x59,0x21,0xba,0x51,0x1e,0xc2,0xbb,0x1,0xc0, 0xe0,0xfd,0xea,0xea,0x2b,0x3a,0x1f,0xc3,0x43,0x9f,0xc4,0x63,0xeb,0xc7,0x9,0x8, 0x3d,0x8,0x6f,0xe9,0x59,0x30,0x82,0xab,0x82,0x7a,0x1,0xcd,0x69,0x78,0x84,0x65, 0xad,0x86,0xec,0xc,0x39,0xe9,0x9c,0x9f,0x96,0xb0,0xa6,0x8d,0x77,0xc,0xcc,0xbb, 0xc8,0xf9,0x41,0x50,0x73,0xeb,0xc1,0x35,0xc1,0x88,0x7f,0xbd,0x67,0x4d,0x3f,0x85, 0x17,0x5d,0x4b,0xc7,0xb5,0x49,0x6d,0xdd,0xc0,0xa4,0xdf,0x18,0x65,0x42,0x8c,0x48, 0xe0,0x9e,0x95,0x45,0xe7,0x8e,0x20,0x1,0x94,0xa9,0xc7,0x38,0x18,0xa9,0x62,0x95, 0x5d,0x77,0x6,0x71,0xc7,0x62,0x4f,0xf2,0xac,0x2f,0xd8,0xab,0x1a,0x6b,0x32,0x85, 0xc2,0xaf,0x3,0xb6,0x6a,0x23,0x32,0x33,0x92,0x85,0x3f,0x13,0x59,0xb3,0x5c,0x26, 0xdd,0xc0,0xc9,0xc0,0x23,0x71,0xcf,0x5f,0xc6,0x92,0x17,0x27,0x99,0x2d,0xbc,0xd5, 0xdb,0xc1,0x11,0xff,0x0,0x8d,0x57,0xb4,0x62,0xb1,0x72,0x49,0xa2,0x81,0xf0,0x55, 0x72,0xdc,0x91,0xff,0x0,0xeb,0xa4,0x82,0x7b,0x79,0x3,0x12,0x11,0x33,0xc1,0x52, 0x7,0x22,0xab,0xed,0x8b,0xcc,0xdc,0x96,0x49,0xb9,0x87,0xf1,0x75,0xa7,0x48,0xd2, 0x44,0x30,0xd0,0xf9,0x2a,0x47,0x38,0x61,0xfa,0xf7,0xa5,0x70,0x48,0x7b,0x5c,0xdb, 0xa6,0x16,0x5,0x54,0x50,0x79,0x20,0x7f,0x2a,0x71,0xbb,0x89,0x7e,0xf3,0xb6,0x3a, 0xe0,0x23,0x1c,0xfe,0x42,0xa0,0x54,0x9d,0x94,0x30,0x58,0xa,0x75,0x19,0x66,0xcd, 0x44,0x2d,0xee,0x8c,0xae,0x1a,0xe9,0x57,0x3c,0x80,0xac,0x4f,0xf8,0x62,0x8b,0x95, 0x62,0x56,0xd5,0xa3,0x91,0xd6,0x18,0x23,0x91,0x99,0x8e,0xf,0x18,0xc7,0xe7,0x53, 0x19,0xa4,0x69,0x54,0x2c,0x6c,0x48,0x5c,0x60,0x11,0xfa,0x9a,0xa9,0x24,0x32,0x96, 0x41,0x1d,0xc2,0xef,0x53,0x9f,0xb9,0x83,0xf9,0xd4,0xb0,0x97,0x2c,0xed,0x24,0xf2, 0x81,0x8c,0x64,0x0,0xbf,0xfd,0x7a,0x97,0x70,0x69,0xe,0xf2,0x1e,0x76,0xde,0x23, 0xa,0x47,0x42,0xcf,0xde,0x95,0x1e,0x4b,0x85,0x23,0x21,0x36,0x70,0x48,0x63,0xd6, 0xa1,0x18,0x13,0xff,0x0,0xc7,0xeb,0x79,0x60,0x7c,0xc0,0xb9,0x38,0xfd,0x71,0x4f, 0x49,0x2d,0x79,0x51,0x29,0x91,0x3a,0x96,0xd,0xc7,0xf3,0xa6,0x84,0x5a,0x8a,0x17, 0x8d,0x58,0xe1,0x77,0x11,0x92,0x79,0x34,0xc4,0x1f,0x31,0x57,0x95,0x23,0x3,0x9e, 0x70,0x69,0x8b,0xf6,0x70,0x9b,0x99,0x19,0xfd,0x36,0xab,0x9a,0x8a,0x49,0xe3,0x89, 0x4f,0x95,0x63,0x20,0xf5,0x67,0x87,0x20,0xf,0x5a,0x7b,0x9,0x93,0xc9,0x3c,0x20, 0x36,0xeb,0xd0,0xc7,0xfd,0x86,0x1f,0xc8,0x55,0x54,0xb8,0xb6,0x91,0x82,0x7,0x65, 0x3c,0xe1,0x79,0xcb,0x7b,0xd4,0x96,0x8d,0xb9,0xc,0xcb,0x3,0xca,0x4f,0x19,0x6c, 0x71,0xf8,0x66,0xa7,0x8a,0x59,0x18,0xe3,0xcb,0x3,0x3c,0x15,0x7,0xa7,0xe5,0x4b, 0x70,0x20,0xd8,0x8e,0xe3,0x6e,0xe5,0x65,0x3d,0xa,0xe7,0xfa,0xd3,0xfe,0xcb,0x6e, 0xa5,0x9f,0xec,0xce,0x5b,0x3f,0x79,0x6,0x32,0x7f,0x3a,0x55,0x8e,0x58,0xe4,0x65, 0x22,0x36,0x4,0xe7,0x2b,0x96,0xc7,0xe7,0x50,0xcd,0x3a,0x2b,0x32,0xfd,0xa6,0xdf, 0x70,0x39,0xb,0xbb,0xe6,0xfc,0xb3,0x91,0x4a,0xc3,0x2c,0xac,0xc1,0xae,0x4a,0x2d, 0xb3,0x29,0x1c,0x10,0x7e,0x55,0xfe,0x54,0xe6,0x8a,0xe3,0x76,0xef,0xdd,0x82,0x38, 0x18,0x3d,0x7,0xe5,0x59,0x93,0xde,0xb1,0xd8,0x5,0xf4,0x4,0x5,0x39,0xea,0xf8, 0x3f,0x80,0x3f,0xa9,0x15,0x66,0xd2,0xea,0x16,0x18,0x5b,0x86,0x98,0x83,0xcb,0x6d, 0xda,0x3f,0x2a,0x1b,0x15,0x8b,0x13,0x2c,0xb0,0xa0,0x91,0xda,0x12,0x7,0x72,0xa4, 0x9f,0xc2,0x9d,0x13,0x4c,0xf0,0x83,0x1c,0x91,0x80,0x46,0x72,0x17,0x7,0xf9,0x55, 0x5f,0x38,0x48,0x48,0xde,0x58,0x86,0x25,0x79,0xfd,0x29,0xeb,0xe6,0x65,0x22,0x16, 0xd3,0xd,0xa7,0x77,0xd,0xd7,0xf1,0x38,0x14,0xd6,0xe0,0x59,0x41,0x2c,0xa9,0x1b, 0x6f,0x50,0xd9,0xf9,0x9a,0xa5,0x85,0x4b,0x2b,0x19,0x73,0xd4,0xe0,0xe7,0xb5,0x56, 0x81,0xae,0x95,0xb1,0x24,0x60,0x2,0x7a,0x36,0x30,0xa3,0xf0,0xcd,0x32,0x76,0xbc, 0xb9,0x62,0x88,0xab,0x1a,0xa3,0x64,0x3e,0xee,0xbf,0xa5,0x52,0xb,0x12,0x97,0x48, 0x9b,0x7f,0xcc,0xc0,0xf4,0x56,0x27,0xf9,0x8a,0xaf,0x71,0x73,0xd,0x9c,0x32,0x4c, 0xb6,0x92,0xb1,0xe0,0x8c,0xf4,0x24,0xfd,0x6a,0x51,0xe7,0x22,0xe2,0x59,0xe1,0x2f, 0xd3,0xee,0xee,0xc9,0xfa,0xf6,0xac,0xbd,0x5e,0x49,0xa3,0xd3,0xe6,0x75,0xb8,0x59, 0xf,0xa,0xb1,0xc7,0x9,0x50,0xe,0x7b,0x73,0xcf,0x38,0xa4,0x1b,0x18,0x96,0x1e, 0x75,0xe8,0xbf,0xb8,0xf2,0xe1,0x48,0xc9,0x69,0x24,0x92,0x6c,0xf9,0x6a,0x4b,0x70, 0x9,0xe9,0x9c,0x1a,0x92,0xca,0x49,0x75,0x32,0x90,0xdd,0xd,0xf3,0xc7,0x12,0xed, 0x28,0x80,0x85,0xe9,0x81,0xe9,0x9f,0xf0,0xa1,0xac,0x6d,0xa7,0x9e,0x3d,0x3e,0xe2, 0xe0,0xdb,0xc7,0xbc,0x16,0x53,0x2b,0xe,0x40,0xea,0x7,0x4c,0xf1,0xd6,0xba,0x1, 0xa7,0x69,0xba,0x45,0xa8,0x6f,0xb5,0x34,0x16,0xf8,0xc8,0x6f,0x33,0x96,0xcf,0x52, 0x78,0xe9,0x5b,0x27,0x64,0x29,0x2b,0x99,0x13,0xac,0x36,0x90,0x24,0xa,0x18,0x1, 0x26,0x4a,0x90,0x37,0x3,0xce,0x79,0xfc,0x3f,0x5a,0xdb,0xd3,0xf4,0xa8,0x56,0x19, 0x64,0xf9,0xb6,0x4c,0xbd,0xd8,0x72,0x3f,0x9d,0x73,0x65,0x66,0xd4,0xb5,0x24,0x2, 0x9,0xd7,0x4e,0x69,0xd6,0x38,0xe4,0x65,0xda,0x5e,0x32,0xd9,0xeb,0xf9,0xd7,0x66, 0xb6,0x36,0xf6,0xf1,0xef,0x8e,0x32,0x81,0x4f,0x3c,0xe7,0x23,0x1d,0x6a,0x9e,0xc4, 0x24,0xca,0x7a,0x35,0xbc,0x36,0x82,0x65,0x49,0x3c,0xc9,0x37,0xec,0x5,0xb9,0xc2, 0x8e,0x40,0xfd,0x4d,0x68,0x49,0xa8,0x2c,0x4c,0xd8,0x8d,0x9d,0x31,0xcb,0x20,0x1f, 0xe3,0x59,0xda,0xbc,0x96,0xf6,0xda,0x73,0x88,0x52,0x34,0x9e,0xe0,0x6c,0x8c,0xf1, 0x93,0x9e,0xa7,0xf2,0xaa,0x3a,0x6d,0x9a,0xe8,0xea,0x97,0x57,0xa,0x2e,0x26,0x9d, 0x40,0x2,0x35,0xc8,0x8d,0x7a,0x8f,0xa9,0xe9,0x93,0xfe,0x14,0xb9,0x9d,0x87,0xea, 0x68,0xea,0x9a,0xbd,0xb1,0x51,0x6f,0x13,0x3,0x39,0x70,0x17,0x2a,0x48,0x4e,0xe4, 0xff,0x0,0x9f,0x5a,0xe7,0xfc,0x49,0x2,0x3f,0xd8,0xe5,0xdd,0x24,0x92,0x3e,0x59, 0xcb,0x0,0x6,0xc0,0x39,0x38,0x3c,0xe7,0x38,0xe9,0x56,0xec,0x4c,0xf3,0xcc,0x35, 0x2b,0x59,0xe3,0x12,0xcc,0x5c,0x18,0x99,0x71,0xb7,0x91,0x9a,0x9a,0x53,0x79,0xab, 0xda,0x25,0xd6,0x23,0x8d,0xe1,0x2c,0x9,0x20,0x85,0xe4,0x72,0x7,0xaf,0x41,0x4e, 0xfd,0x46,0xd5,0xf6,0x30,0x60,0xd2,0x63,0x6b,0x98,0x26,0x16,0x77,0x72,0xc4,0x14, 0x64,0x72,0xb9,0x38,0x1d,0xe,0xd1,0xc7,0x27,0xa1,0x15,0x62,0xe2,0xd2,0xda,0xe7, 0x51,0x86,0xd1,0x12,0xe2,0x18,0x10,0x92,0xd0,0x33,0xa9,0x63,0x8e,0x78,0x2d,0x93, 0xd4,0x8e,0xfe,0xf5,0x6a,0xd6,0xc3,0x5c,0x6b,0x56,0x96,0x59,0x27,0x58,0x63,0x42, 0x55,0x65,0x7e,0x58,0x0,0x4e,0x2,0xc,0x7e,0x64,0xd6,0x4d,0xee,0xe9,0xdc,0xab, 0xbc,0xd7,0x16,0xf6,0xec,0x3c,0xd3,0x1c,0x44,0x4,0xee,0xd9,0x60,0x8,0x7,0x1c, 0x72,0x68,0xdd,0xdd,0xec,0x44,0xa5,0xca,0x6d,0x69,0xf7,0xb6,0x50,0xe9,0xab,0x25, 0xb4,0x73,0xbc,0x52,0x92,0x90,0xc7,0x24,0x83,0x7,0xe8,0xab,0xd4,0x67,0xbd,0x43, 0x67,0x69,0x75,0x6d,0x6f,0x75,0x1d,0xe5,0xa1,0x92,0x19,0x48,0x66,0xe,0x46,0x7a, 0xf3,0xc7,0xe5,0x5a,0x3a,0x75,0xed,0x92,0xe9,0xd1,0xdc,0xc6,0x91,0x85,0x84,0xf9, 0x58,0x7c,0x12,0x80,0x70,0x2,0xfb,0x1a,0x92,0x5d,0x61,0x1e,0x31,0x10,0x83,0x2d, 0x21,0x11,0xed,0x89,0xfa,0x92,0x7a,0x1e,0x80,0x7e,0xb5,0xd,0x3b,0x96,0xd3,0x7b, 0x18,0x9,0xa4,0x46,0xda,0xb2,0x36,0x9c,0x43,0x5d,0x1,0xb8,0xc5,0x1c,0x60,0xf9, 0x20,0xc,0x72,0xc4,0xfb,0xff,0x0,0x9c,0x53,0xae,0xb4,0xfb,0x9f,0xb4,0xea,0xaf, 0x83,0x1b,0xc5,0x1b,0x6f,0x2f,0x9e,0x57,0x67,0x18,0x20,0xe3,0x1d,0x2b,0xa9,0x4b, 0x7b,0x8b,0x28,0x24,0x78,0x22,0xb4,0x46,0x6f,0x99,0xf6,0xa6,0x49,0xcf,0x72,0x78, 0xc9,0x0,0xd6,0x2e,0xa9,0x7f,0x72,0xc9,0xa8,0xda,0x4a,0xca,0x44,0xde,0x52,0x44, 0xc0,0x60,0x90,0x70,0xe,0x47,0xe1,0x45,0xdd,0x82,0xec,0xb3,0xa4,0xc3,0x15,0xbe, 0x93,0x6d,0xbe,0xf1,0xb7,0x49,0x1a,0xb6,0xd1,0x8c,0x29,0xc0,0xcf,0x4a,0xb0,0x97, 0x96,0x88,0x71,0x35,0xc3,0x29,0xe3,0x8d,0xc4,0xe6,0xae,0x79,0x30,0x79,0xea,0x5, 0xb7,0xa,0x30,0x6,0xc1,0x8c,0x52,0x4b,0x37,0xd9,0x50,0x88,0x6d,0x63,0x8b,0x77, 0x1b,0xc0,0x3,0x3f,0x90,0xa8,0x68,0x77,0x12,0x19,0x20,0x90,0x7c,0x92,0x66,0x37, 0xff,0x0,0x68,0x8a,0x90,0xc1,0x67,0x18,0x18,0x44,0x5c,0x1c,0x92,0xa9,0xd4,0x54, 0x45,0x65,0xb9,0x89,0x4,0x88,0x63,0x5,0xb9,0x27,0x8c,0xd4,0x92,0xdc,0x49,0x1a, 0x85,0xf2,0x51,0x90,0x8d,0xb9,0x32,0x63,0x1f,0xa5,0x9,0xae,0xa0,0x26,0x60,0x28, 0xc5,0xed,0x9a,0x40,0x7a,0x7c,0x99,0xe3,0xb5,0x40,0x92,0xab,0xe5,0x61,0xb0,0x9f, 0x8e,0xc5,0x55,0x41,0xfd,0x69,0xfb,0xee,0x16,0x24,0x29,0x1a,0x1c,0xf0,0x30,0x4d, 0x4e,0x4c,0xf1,0x21,0x67,0x90,0x28,0x23,0x9c,0xc,0xe2,0xa6,0xe3,0x29,0xa5,0xce, 0xa4,0x1b,0x63,0xd8,0xd,0x99,0xe3,0xf7,0xaa,0xb8,0x1f,0xad,0x5a,0x92,0x79,0x55, 0x95,0x7c,0xa1,0xbb,0x19,0xe1,0xce,0x7,0xe8,0x33,0x51,0x49,0x24,0xcd,0x10,0x64, 0x98,0xf0,0x71,0x82,0xa3,0x9f,0xce,0xa2,0x27,0xcc,0x24,0x49,0x36,0xf3,0xdb,0x12, 0xc,0xf,0xd6,0x8e,0x6b,0x6c,0x4,0x90,0xa4,0xd1,0xc8,0xf2,0x48,0xe8,0xa5,0xfd, 0x46,0x49,0xfa,0x73,0x4a,0xf1,0x3b,0xca,0x53,0xce,0x8f,0x91,0x9c,0x79,0x63,0x8f, 0xd6,0xab,0x4a,0x22,0x55,0x5d,0xb7,0x80,0xca,0x18,0x64,0xa9,0xce,0x3d,0xa9,0xc2, 0x75,0x67,0x66,0x2a,0x59,0x80,0x23,0x1b,0x4f,0x35,0x17,0xb,0x16,0x16,0xda,0x72, 0xc1,0x5a,0x57,0x60,0xe,0x77,0x1c,0x10,0x5,0x36,0xe3,0x63,0x48,0x8a,0x2e,0x92, 0x3e,0x7e,0x67,0x12,0x0,0x71,0xe9,0x8a,0xa4,0xd2,0x59,0xad,0xc4,0x51,0xc9,0x4, 0x80,0xb7,0xdd,0xdc,0x98,0xc9,0xf6,0x24,0xd4,0xc4,0x43,0x15,0xc0,0xf2,0xad,0x2e, 0x37,0x96,0xe0,0x17,0x4c,0x3,0xf8,0x9a,0xbb,0x85,0x89,0xc8,0xb2,0x5d,0xc6,0x4b, 0xa6,0x94,0x75,0xff,0x0,0x5c,0x72,0x3f,0x23,0x50,0xc7,0x2d,0x81,0x53,0x80,0x1b, 0xb8,0xda,0xac,0xdf,0xcc,0x1a,0x8a,0xfe,0xe0,0xa2,0x13,0x25,0xaa,0xb6,0x4e,0x1b, 0xe7,0x3,0x7,0xf0,0x14,0x86,0x4b,0xc9,0x52,0x35,0xf2,0x20,0x8b,0x6f,0x43,0x28, 0x62,0x48,0xf6,0xe0,0x51,0x71,0xd8,0x72,0x88,0x50,0xab,0x9b,0x5f,0x3b,0x77,0x3b, 0x44,0x58,0x1f,0xa8,0xe6,0xa6,0x8e,0x48,0x82,0xb3,0x47,0xa6,0xba,0x63,0x8f,0xb8, 0xa3,0xfa,0xd5,0x64,0x6b,0xf9,0x49,0xfd,0xf5,0x98,0x9,0xf2,0xed,0x19,0x50,0x8, 0xeb,0xc5,0x4f,0xf6,0x7b,0xb6,0x1b,0x8d,0xda,0x85,0xee,0xa9,0x16,0x47,0xe1,0xcd, 0x24,0xee,0x21,0x64,0xb9,0x93,0xcb,0x5,0x2c,0x98,0xfd,0x19,0x7f,0xa5,0x39,0x65, 0xba,0x7c,0x28,0x85,0x57,0x3,0x3b,0x59,0xc1,0x35,0x1c,0x96,0x4d,0x36,0x37,0x5e, 0x5c,0x83,0xd8,0x22,0xa8,0xff,0x0,0xd9,0x73,0xfa,0xd3,0x5a,0xd4,0xc4,0x81,0x8c, 0x93,0x49,0x8e,0x32,0x64,0x2a,0xc6,0x90,0xc7,0xcc,0x2e,0x25,0xc0,0x68,0xe0,0x0, 0x1e,0xb,0x64,0xfe,0x5c,0x8a,0x2,0xdf,0xb1,0x2a,0x2f,0x2,0xfa,0x1f,0x2c,0x1e, 0x3e,0xa4,0xd4,0x7f,0x64,0x59,0x57,0xe5,0x32,0x28,0xee,0x3c,0xe7,0xc7,0xf3,0xa9, 0xe,0x97,0x64,0xb1,0xe5,0x21,0x56,0x90,0x8c,0xe5,0x98,0x9c,0xfe,0x79,0xa6,0x98, 0x11,0x49,0x24,0x90,0x37,0xfa,0x46,0xa8,0x80,0x11,0xd3,0x8,0xa6,0xab,0xb2,0xd9, 0x3b,0x2,0x35,0x16,0x95,0x97,0x90,0x16,0x40,0xdf,0x96,0x3b,0xd5,0xb8,0xf4,0xbb, 0x12,0xbb,0x9a,0xd6,0x2d,0xe7,0x92,0x59,0x15,0x8f,0xea,0x28,0x8e,0xb,0x56,0x93, 0x6c,0x51,0x15,0x41,0xc1,0x1b,0x40,0x5f,0xca,0x98,0x14,0x22,0x9e,0xc2,0x29,0x9e, 0x29,0x75,0xb,0xc9,0x1f,0xbf,0x98,0xee,0x3f,0x20,0x31,0x4f,0xd,0x68,0xd2,0x89, 0x44,0x37,0x93,0xa8,0xe0,0x2e,0xc7,0x6f,0xfd,0x8,0x55,0xed,0x81,0x49,0xc9,0x60, 0x19,0x88,0xa,0x3a,0x71,0x4e,0xf9,0x37,0x8,0xc6,0x42,0x8e,0xca,0x71,0x9f,0xaf, 0x14,0x82,0xe5,0x36,0x7b,0x69,0x13,0x62,0x69,0xf3,0xc6,0xf9,0x1b,0x73,0x18,0x56, 0xfc,0x32,0x6a,0x40,0x75,0x15,0x39,0x8b,0x4c,0x95,0x46,0x39,0x26,0x54,0x42,0x7f, 0x53,0x56,0x1e,0x3b,0x68,0x66,0x86,0x4d,0xa0,0x6e,0x6c,0x7d,0xe2,0x4e,0x6a,0x75, 0xb8,0x79,0x25,0x2b,0x95,0x5d,0xa7,0x19,0x23,0x93,0xf4,0x34,0x2b,0x9,0xb2,0xa1, 0x9b,0x50,0x18,0xdd,0x67,0x2,0x13,0xff,0x0,0x2c,0xda,0x70,0x48,0xf7,0xe9,0x4e, 0xcd,0xf8,0x1,0xb6,0xc1,0x90,0x79,0x51,0x96,0xc7,0xe1,0xc5,0x5b,0x67,0xc5,0xc9, 0xdc,0x91,0x84,0xc0,0xc3,0x67,0x4,0x53,0xce,0xd2,0xa5,0x84,0xc3,0x9f,0xe2,0x6, 0xaa,0xda,0x31,0x5c,0xa6,0xe2,0xeb,0xef,0xb5,0xca,0x3,0xea,0xb1,0x72,0x3f,0x33, 0x4a,0x6d,0x6e,0xa4,0x88,0x17,0xba,0x6c,0xf5,0xc7,0x94,0xa4,0x9a,0x9d,0xa7,0x8e, 0x32,0x14,0xcc,0x14,0xb0,0xce,0x31,0xd6,0xa2,0x86,0x48,0x96,0x66,0x93,0x32,0x4a, 0xfe,0xa0,0x74,0x14,0xac,0x22,0x28,0xed,0x9e,0x45,0xca,0xdd,0xdc,0x1,0xd0,0x81, 0xb5,0x48,0xfd,0x29,0xc9,0x65,0xc9,0x2d,0x2c,0xc7,0xb7,0xcd,0x29,0xc9,0xfc,0xaa, 0xcb,0xcc,0x86,0x4c,0x11,0xb5,0xc8,0xc8,0x7,0x8c,0x8a,0x2,0x31,0x62,0x36,0xed, 0xcf,0x4f,0x9b,0xad,0x16,0x29,0x14,0x6,0x83,0x60,0xa1,0x9d,0xe1,0x66,0x72,0x72, 0xcc,0x64,0x63,0xfd,0x6b,0x1b,0xc4,0x7a,0x3c,0x23,0x48,0xf3,0xad,0x6d,0x42,0x4f, 0x1b,0x16,0xf,0xb8,0x96,0xf6,0x1e,0xfc,0xe2,0xba,0x31,0x11,0x5,0xc8,0xdc,0xb, 0xe3,0x3c,0xfa,0x54,0x57,0x96,0xcf,0x3d,0xb8,0x8c,0x3e,0x9,0xe3,0x4,0xf1,0x9c, 0xe4,0x7e,0xb8,0xa4,0x16,0x21,0xb4,0xba,0x13,0x69,0xd0,0x5c,0xda,0xaa,0xc5,0x14, 0xf1,0x2c,0xbc,0xe,0xc4,0xe,0x33,0xec,0x72,0x2a,0x4f,0x25,0xe1,0xba,0x69,0xa6, 0x92,0x32,0x58,0xc,0x21,0x1c,0x8a,0xcb,0xf0,0xcc,0xbe,0x4d,0x95,0xc6,0x98,0xe7, 0x79,0xb5,0x9d,0xd0,0x0,0x3f,0x81,0x89,0x61,0xfa,0x86,0xfc,0xab,0x70,0xdb,0xa1, 0xc9,0xdc,0x48,0x6e,0x70,0xc3,0x93,0x43,0x5a,0x80,0xdf,0xf9,0x64,0x36,0x96,0x38, 0xec,0xc4,0xd3,0x97,0xcb,0x95,0xbe,0x69,0x9d,0x5c,0x7f,0xa,0x67,0xf5,0xf5,0xa8, 0x56,0x36,0xc8,0xf3,0x15,0x87,0x38,0xe1,0xba,0xfe,0x14,0x49,0x2,0x34,0x8b,0xfb, 0xd5,0x8d,0xc3,0x1c,0xa9,0x39,0xde,0xb8,0x3c,0x52,0x2,0xc4,0xa4,0xc6,0xf,0x1, 0x8f,0x4c,0x1e,0xf5,0x7,0x9d,0x20,0x23,0xee,0x1,0xd9,0x4f,0x6a,0x42,0xcb,0xc2, 0x33,0x2a,0x2c,0x63,0xc,0x76,0xf2,0x38,0xa8,0xd3,0x6c,0x9f,0x2c,0x47,0x74,0x4c, 0x78,0x6c,0x73,0x49,0x80,0xeb,0x75,0xb8,0x59,0xb,0x4f,0x73,0xb9,0x4f,0xf0,0x85, 0x1c,0x55,0xa1,0x2c,0x60,0xed,0x7,0x24,0x76,0x39,0x35,0x1f,0x0,0x81,0xce,0xe1, 0xd6,0x98,0x8f,0x13,0x96,0x64,0x20,0xc8,0x33,0xc6,0xec,0x13,0x4d,0x68,0x32,0x56, 0xb8,0xa,0xe1,0x41,0x50,0x17,0x96,0xa7,0xab,0x7c,0xa4,0x93,0x81,0x9c,0xf4,0xfe, 0x55,0x58,0xc2,0x6e,0xb0,0x24,0x4d,0xbe,0xb9,0x18,0xfe,0x5d,0x69,0x21,0x22,0xdd, 0x2,0x0,0xcc,0x9,0xe5,0x8e,0x48,0x51,0xf5,0xa2,0xe4,0xb2,0xd0,0x8f,0xcc,0xc, 0x71,0xc9,0xfe,0x2e,0xf5,0x17,0x94,0x8a,0xe1,0xfc,0x95,0x59,0x57,0x8d,0xc1,0x7a, 0xfe,0x55,0x1c,0xb7,0xa,0x15,0x64,0x47,0x38,0xd,0x86,0xc7,0x50,0x3d,0x71,0x52, 0x2c,0x9b,0xf7,0xf,0x35,0x90,0x81,0xc1,0x61,0xc7,0xf3,0xaa,0xb9,0x48,0x8c,0xa2, 0xc7,0x2c,0x2a,0x23,0x55,0x40,0x48,0x52,0x9,0xe0,0xf7,0xa9,0xce,0xee,0xdc,0x37, 0x7a,0x82,0x37,0xdd,0x1f,0xce,0xe3,0xcc,0xc6,0x47,0xcd,0xc1,0x34,0xe1,0x30,0x66, 0xc,0xca,0x23,0x6f,0x50,0xd9,0xc7,0xb5,0x21,0x32,0x7d,0xc4,0x23,0x1,0x21,0xc0, 0xa8,0x9e,0x36,0x66,0x57,0xf3,0x40,0x3,0xfd,0x9c,0xe6,0xab,0xc8,0x24,0x79,0x11, 0x95,0x9d,0x5d,0x49,0xe1,0x41,0xc3,0x3,0xea,0x3f,0xa,0x78,0xba,0x32,0xaa,0xc1, 0x1c,0x64,0xcd,0x9c,0xb1,0xc7,0x41,0x48,0x9,0x24,0x54,0x75,0xdb,0x93,0x8c,0xf2, 0xcc,0x7a,0xfb,0x51,0xa,0xa4,0x63,0xf7,0x65,0x59,0x99,0xb9,0xff,0x0,0x64,0x54, 0x6e,0xfb,0x1f,0xc,0xa5,0xb,0xc,0x82,0x48,0x1f,0x95,0x2a,0xc3,0x24,0xaf,0xbc, 0x2a,0x67,0x1c,0xb6,0x7e,0xf7,0xe5,0x45,0xc6,0x58,0xc0,0xa,0x30,0x8b,0xcf,0xad, 0x21,0xe0,0xd,0xbf,0x2e,0x9,0xcf,0x5a,0x8f,0xf7,0xdf,0x79,0x7c,0x92,0x33,0xc6, 0x9,0x38,0xa9,0x1d,0x24,0x29,0xf3,0xc9,0x16,0xf,0xa2,0x9c,0x8a,0x60,0x1,0xd5, 0xd7,0x23,0x68,0xf7,0xc8,0x20,0xd4,0x42,0xd7,0xcb,0x25,0xb6,0x2a,0xa9,0xe7,0x39, 0xff,0x0,0xa,0x43,0x1c,0xa3,0x25,0xe6,0x5c,0x74,0x54,0xa,0x0,0xa6,0x48,0xa0, 0x47,0x97,0x9f,0x8e,0xf8,0xc8,0xc5,0x21,0x12,0x48,0x5d,0x5e,0x35,0x70,0x38,0x20, 0xe7,0x3d,0xa9,0xcc,0x40,0x6c,0x2b,0xe1,0x81,0xea,0x6,0x78,0xaa,0xa6,0x68,0x6, 0x9,0x27,0x23,0x8d,0xdd,0x78,0xfa,0x52,0x97,0x80,0xe0,0x98,0xdd,0xfb,0x64,0x2, 0x2a,0x46,0x48,0x25,0x83,0x74,0x80,0x4b,0xf3,0x75,0xc9,0xf5,0xa9,0x7c,0xc8,0xbc, 0x90,0x4,0x83,0x71,0xc1,0x39,0x35,0x5d,0x23,0x8c,0x31,0xb,0x13,0xff,0x0,0xc0, 0x85,0x4e,0x8,0x44,0xc8,0x88,0x9e,0xde,0x94,0xee,0x3,0x18,0xc6,0xa1,0x9c,0xb6, 0x54,0x9c,0xe4,0x73,0x8a,0x61,0xb9,0x8c,0x8c,0xc6,0x1d,0xc7,0x4e,0x1,0xa9,0x1b, 0xcc,0x23,0x1b,0x14,0x60,0xf1,0xfb,0xc3,0xfe,0x14,0xd6,0x59,0xc6,0x19,0xc4,0x5f, 0xf0,0x12,0x77,0x50,0x2,0xf9,0xcc,0xca,0x4c,0x71,0xb0,0x61,0xe9,0x4d,0x69,0xa6, 0xdb,0xf2,0xc6,0xf9,0x23,0xfb,0xc3,0xfc,0x69,0x96,0xf2,0xc7,0x2f,0x98,0x16,0x65, 0xeb,0x8e,0x84,0x63,0xf5,0xa7,0x2a,0x7c,0xc0,0x64,0xb1,0x1f,0xc4,0x14,0x62,0x90, 0x59,0xf,0x53,0x78,0xd1,0x0,0xf1,0x42,0x4f,0x6c,0xb9,0x1f,0xd2,0xa7,0xb6,0x13, 0xad,0xd5,0xb8,0x3b,0x71,0xe6,0x2e,0xe0,0x7,0x4e,0x7d,0xea,0x84,0xa4,0xc6,0xc4, 0x34,0x85,0x41,0x3d,0x43,0xe3,0xf4,0xa9,0xed,0x65,0xb4,0x6b,0xdb,0x6d,0xcc,0x49, 0x12,0xa0,0x52,0x5f,0x3c,0xe7,0xda,0xaa,0x1f,0x12,0x14,0xa3,0xa5,0xcf,0x90,0xd4, 0x6,0xd5,0x0,0x60,0xa,0x99,0xb0,0x41,0xff,0x0,0x7a,0xbe,0x87,0xf8,0xad,0xa9, 0xf8,0x33,0xc1,0xf0,0xcb,0xa2,0xff,0x0,0xc2,0x1b,0x62,0xd7,0x77,0xf6,0x12,0x18, 0x6e,0x61,0xb6,0x89,0x3c,0xa6,0x3b,0x94,0x1e,0x99,0xc8,0x3c,0xf1,0x58,0x5f,0x1, 0x74,0x98,0x35,0x3f,0xf8,0x4b,0xa0,0xb8,0xb7,0x89,0x99,0x96,0x25,0x8d,0xe5,0x88, 0x36,0xc2,0x7c,0xd1,0x91,0x9f,0xc2,0xb4,0x6c,0x7f,0x67,0xab,0xdb,0x7d,0x5e,0xca, 0xfa,0xe7,0xc4,0xd1,0xdc,0xad,0xbc,0xc9,0x21,0x8d,0xed,0x18,0xee,0xa,0xc0,0x95, 0xe5,0xcf,0x5c,0x57,0xb8,0x71,0x9e,0x2b,0xe1,0xaf,0x10,0xc9,0xa2,0xea,0x96,0x86, 0xe1,0xe7,0x9f,0x4a,0x5b,0x85,0x96,0xe6,0xc0,0x4a,0x7c,0xb9,0xd4,0x11,0x90,0xca, 0x7e,0x53,0x90,0x31,0xc8,0xae,0xf3,0xc2,0xba,0xd6,0x97,0xaf,0xfc,0x7b,0xd1,0xf5, 0xd,0x1f,0x4b,0x4d,0x32,0xcd,0xdf,0x6a,0xdb,0x22,0xaa,0x85,0x22,0x16,0x4,0xe1, 0x78,0xe4,0xf3,0x5e,0x8b,0xf1,0x1b,0xc0,0x51,0x59,0x6b,0xa9,0xe3,0xe8,0xd,0xaf, 0xd9,0x74,0x78,0x63,0x95,0xf4,0xc1,0x6e,0x14,0x4f,0xb1,0xc9,0x23,0x70,0xe0,0x67, 0x76,0x3e,0xe9,0xe9,0x5c,0xb4,0x7f,0x1f,0xac,0x6d,0xa4,0x13,0x45,0xe0,0x2b,0x58, 0xa4,0x5e,0x8e,0x93,0xaa,0x91,0xf8,0xf9,0x54,0x1,0xab,0xe3,0x9f,0x81,0xfa,0xdf, 0x8a,0xbc,0x69,0xa9,0x6b,0x76,0xba,0x9e,0x9f,0xc,0x17,0x6e,0xac,0xa9,0x2e,0xfd, 0xc3,0x8,0xab,0xce,0x17,0x1d,0xab,0x9e,0x5f,0x2,0x2f,0xc2,0x9,0xe3,0xf1,0xf, 0x8a,0x6d,0xf4,0xed,0x76,0xc2,0x62,0x6d,0x16,0xd2,0x35,0xdc,0x44,0x8c,0x37,0x6, 0xc4,0x8b,0x8e,0x2,0x11,0xeb,0xcd,0x37,0xc0,0x1e,0x2d,0x7f,0x13,0xfc,0x79,0x5d, 0x6a,0x50,0x6c,0xe1,0xba,0x49,0x5b,0xc8,0x69,0xf7,0x2a,0x62,0x1d,0xbd,0x4e,0x1, 0xe9,0x9e,0x95,0xea,0x1a,0x5f,0xc4,0x7b,0x3f,0x12,0x7c,0x40,0xd4,0x7c,0x27,0x79, 0xa3,0x5b,0xad,0xb5,0x91,0x94,0xad,0xdc,0xd3,0x2b,0xac,0x85,0x18,0x28,0x21,0x4a, 0xe0,0x67,0x27,0xbd,0x0,0x70,0x76,0xdf,0xb,0xfc,0x6d,0xae,0xda,0xc5,0xab,0xe9, 0x5e,0x2a,0x5b,0x1d,0x3a,0xf9,0x45,0xcd,0xad,0xa0,0xbb,0x9d,0x7c,0x88,0x9f,0xe6, 0x44,0xc2,0x8c,0xd,0xa0,0x81,0xc7,0x1c,0x71,0x5e,0x2d,0x6f,0xa9,0x6a,0x5a,0x35, 0xe4,0xc2,0xd3,0x50,0xba,0xb7,0x72,0xfb,0x65,0x6b,0x79,0x99,0x37,0xe0,0x9e,0xb8, 0x23,0x3d,0xfa,0xfa,0xd7,0xd5,0x7e,0x7,0xf8,0x94,0x9e,0x2a,0xf1,0x5e,0xad,0xe1, 0xe8,0xb4,0x84,0xb4,0x8b,0x4c,0x57,0x9,0x2a,0x4f,0xbc,0x38,0x49,0x2,0xc,0x28, 0x51,0x81,0xdf,0xad,0x7c,0x97,0x7f,0xff,0x0,0x21,0xb,0x9f,0xfa,0xea,0xdf,0xcc, 0xd0,0x7,0xbf,0x8f,0x8d,0x7e,0x13,0xf1,0x6,0xad,0x60,0x97,0xbe,0xe,0x6b,0x9b, 0x9f,0x31,0x22,0x86,0x6b,0x81,0x14,0x8d,0x19,0x2c,0x31,0x82,0x46,0x47,0x3c,0xf1, 0x55,0x7e,0x30,0xf8,0xa2,0xf7,0xc3,0x5f,0x17,0x34,0x3b,0x94,0xbb,0xbc,0x16,0x50, 0x5b,0xc1,0x71,0x35,0xac,0x33,0xb2,0x2c,0xa0,0x4a,0xe4,0x82,0x33,0x8e,0x40,0xc7, 0x35,0xe0,0xa2,0x39,0x41,0x4,0x23,0x82,0x39,0xc8,0x6,0xbd,0xb,0xc1,0x3e,0x26, 0x59,0xb4,0xa9,0xfc,0x15,0x73,0xa6,0x47,0x35,0xce,0xb9,0x72,0x20,0x8f,0x52,0x9d, 0xb7,0x35,0xb7,0x98,0x15,0x1,0xa,0x54,0x92,0x1,0xe7,0x82,0x28,0x3,0xb0,0xf1, 0x7f,0xc7,0xbb,0x4d,0x7f,0xc2,0xb7,0xda,0x5e,0x9f,0xa7,0x6a,0x16,0x37,0x77,0xa, 0xa2,0x3b,0x91,0x70,0xa0,0xa1,0xc,0xf,0x55,0xe7,0xa0,0x23,0xf1,0xa6,0xfc,0x2b, 0xf1,0xa6,0x8f,0x7a,0xb0,0x68,0xb7,0x9a,0x21,0xb9,0xf1,0x4,0x90,0xdd,0x16,0xd5, 0xe5,0xd8,0xf2,0x30,0xd8,0xec,0x1,0x73,0xf3,0xfd,0xd1,0xb7,0xaf,0xe9,0x5c,0x46, 0xa9,0xa4,0x8f,0x85,0x1f,0x12,0xad,0x63,0xb9,0xf2,0xb5,0x85,0xb3,0x9,0x3b,0x21, 0x4f,0x2d,0x64,0xc,0xa7,0xe5,0x20,0xee,0xc7,0x5f,0x7a,0xf5,0x2f,0x4,0xf8,0x60, 0x78,0xa3,0x5f,0x1f,0x14,0x21,0x7b,0x7b,0xb,0x69,0xd2,0x65,0x1a,0x52,0x45,0x9d, 0x9b,0x63,0x68,0x7e,0xf8,0xc0,0xe4,0x8d,0xdf,0x77,0xbf,0xe3,0x53,0x2f,0x85,0x8d, 0x6e,0x7a,0x5f,0x84,0x63,0x8e,0x35,0xba,0xf2,0xf8,0x4,0x21,0x23,0xd0,0xfc,0xd5, 0xd3,0x57,0x3f,0xe1,0x80,0x83,0xed,0x7b,0x31,0x9f,0x93,0x38,0xcf,0xfb,0x55,0xd0, 0x56,0x78,0x7f,0xe1,0xa1,0xcb,0x73,0x13,0xc4,0x4c,0x16,0x38,0x33,0x9e,0xa7,0xfa, 0x57,0x35,0x71,0x28,0x2e,0x1d,0xd5,0xd1,0x51,0x70,0xa0,0x77,0xf5,0xfe,0x95,0xd0, 0xf8,0x9e,0x3f,0x31,0x2d,0xbf,0x78,0x53,0x1b,0xb0,0x47,0xaf,0x15,0xce,0x5b,0xdb, 0x22,0x33,0xf9,0xb3,0xb9,0x4e,0xa7,0xa1,0x4,0xfe,0x35,0xc1,0x89,0x7f,0xbd,0x67, 0x55,0x2f,0x81,0x12,0x34,0xa6,0xd5,0x50,0x79,0x0,0x17,0x19,0x55,0x65,0x4,0x9f, 0xeb,0xf9,0xd4,0x8d,0x73,0x3e,0xc0,0x52,0xc5,0x6,0x47,0xf7,0x80,0x3f,0x95,0x24, 0x50,0xc3,0x14,0xa6,0x6f,0x30,0xf2,0x3f,0x8f,0x19,0xfd,0x29,0x67,0x98,0x70,0x50, 0x9,0x7,0x1c,0x6,0x20,0x9f,0xca,0xb1,0x45,0x5c,0x68,0x8e,0x40,0x8c,0xd2,0xc3, 0x1a,0x80,0x32,0x3,0x3f,0x7f,0xa0,0xa5,0x69,0x25,0x65,0xdf,0x1c,0xd1,0xb0,0x3, 0x9d,0x9c,0x63,0xf5,0xab,0xc,0x63,0xc6,0x42,0xb7,0x1d,0x54,0x82,0x78,0xaa,0x2d, 0x4,0x13,0xce,0xa,0x2e,0xc0,0xa0,0x7c,0xa1,0x48,0x53,0xf8,0xd0,0x5,0xd8,0x65, 0x2,0x35,0x22,0xe4,0x33,0x37,0x4c,0x28,0x38,0xa6,0xb4,0x71,0xac,0xef,0x2c,0xb3, 0x32,0x9c,0x63,0x70,0x5a,0x48,0x49,0x47,0xda,0x22,0x89,0x33,0xd1,0x14,0xc,0x9f, 0xd6,0x89,0x43,0x16,0xc,0xb0,0x12,0xca,0x40,0xfb,0xdd,0x3f,0x2a,0x4,0x53,0x8a, 0x73,0x14,0xcd,0xb9,0xe4,0x64,0xc1,0xda,0x14,0xff,0x0,0x4a,0x96,0x49,0xf3,0x6d, 0xbf,0xcb,0x99,0x46,0x76,0xfc,0xea,0x43,0x1a,0xb5,0x71,0xe6,0x61,0x5c,0xc2,0xac, 0x41,0x4,0xe3,0x19,0xa7,0x42,0x26,0x2a,0x1f,0xcc,0xdb,0xee,0x4e,0xe3,0x45,0xac, 0x3b,0x95,0x94,0x86,0x1b,0x7c,0x96,0xdd,0x8e,0x3,0xf6,0xfc,0xe9,0x52,0x18,0x9c, 0x65,0xe1,0x41,0x8e,0xa4,0x70,0x7f,0x4a,0x91,0xa3,0x9f,0x73,0x48,0x24,0x52,0x7, 0x19,0x41,0x9a,0x62,0xa4,0xb1,0xc8,0xcb,0xe6,0x36,0xe6,0x3,0xa0,0x0,0x7e,0x34, 0x80,0x7d,0xb9,0x98,0xc4,0x3c,0xb8,0xa3,0x8d,0x58,0x70,0x4,0x64,0x54,0xeb,0x16, 0x6,0x19,0x61,0xd,0xfe,0xca,0xe3,0xfa,0xd5,0x32,0xbb,0xbc,0xc3,0x2d,0xe3,0xc2, 0x3,0x60,0x2,0x76,0xf0,0x3e,0xb4,0xe6,0x16,0x4c,0xab,0xbe,0x61,0x20,0x1d,0xfc, 0xcc,0x9f,0xd2,0xa9,0xa,0xc4,0xe3,0xcf,0x3,0xa,0xc8,0xe3,0x3d,0x36,0x91,0xfa, 0xf3,0x51,0xcd,0xc,0x6f,0x96,0x69,0xca,0x9c,0xf2,0x17,0x6f,0xf5,0xa8,0x6f,0x4, 0x71,0xc4,0x10,0x44,0x18,0xe4,0x7c,0xac,0x49,0x1f,0xa1,0xa6,0x18,0xa1,0x79,0x43, 0xa2,0xc4,0x9c,0xf,0x91,0x20,0x3f,0xcc,0x9a,0x4c,0x9,0xd1,0x22,0x80,0x97,0xfb, 0x44,0xbb,0x9b,0xfd,0xae,0xbe,0xf8,0x14,0x91,0xdc,0x44,0x81,0x86,0xe2,0xcc,0x78, 0x32,0x23,0x9f,0xe4,0x6a,0x61,0x31,0x63,0x85,0xb7,0x9b,0xe5,0xed,0xb4,0xa,0x63, 0x85,0x65,0x66,0x58,0xc9,0x27,0xae,0x71,0xf2,0xd0,0x16,0x15,0xe5,0x8a,0x38,0x11, 0x52,0x36,0x21,0x87,0x75,0xcf,0xf3,0xa8,0x1e,0x18,0x53,0x3,0xec,0xa,0xd9,0xf4, 0x85,0x9,0xfe,0x54,0xe2,0xf3,0x25,0xbc,0x59,0x45,0x50,0xa7,0x6a,0xfe,0xf0,0x96, 0x6f,0x7c,0xa,0x8d,0x4c,0xad,0x21,0x64,0x44,0xdd,0xbb,0x5,0x8a,0x12,0xd9,0xfc, 0xe9,0x6a,0x32,0xde,0xe9,0x82,0x5,0x54,0xda,0x40,0xe1,0x7e,0x5e,0x9f,0xce,0xa5, 0x2d,0x3c,0xb1,0x71,0x6c,0xa0,0xe,0x72,0xc0,0x9c,0x1f,0xca,0xa0,0x8a,0x29,0xc1, 0x62,0x67,0x10,0xb1,0x3c,0xa8,0x41,0x93,0xfa,0xd3,0x99,0x11,0x43,0x3c,0x92,0xba, 0x91,0xdf,0xe5,0x1f,0xca,0x8e,0x84,0x92,0x6c,0x78,0xd7,0x71,0xf2,0x51,0xb3,0x92, 0x16,0x3c,0xff,0x0,0x5a,0x73,0x2d,0xcc,0x80,0x14,0x9d,0x19,0xf,0x51,0xb7,0x3, 0xf2,0xe6,0xa1,0x98,0x91,0x2,0x88,0xa4,0x77,0x39,0xfb,0xc5,0x8f,0x4f,0xc6,0xa6, 0xdf,0xc,0xaa,0xbb,0x64,0x62,0xaa,0x3e,0x60,0x9,0x1c,0xd3,0x42,0x1d,0xb0,0xc3, 0xd0,0xe1,0x71,0xf4,0xcd,0x45,0x20,0x81,0x21,0x69,0x9,0x20,0xfa,0x36,0x7f,0x90, 0xa5,0x70,0x82,0x32,0xe8,0xae,0x6,0x3a,0xae,0x72,0x69,0x91,0x5c,0x5c,0x4a,0x9, 0x8a,0x1d,0xa0,0xe,0xa7,0x1c,0xd3,0xea,0x4,0x6b,0x24,0x12,0x92,0xc9,0xf3,0xfa, 0xf9,0x71,0x92,0x47,0xe7,0xd2,0xb1,0x35,0xcb,0xad,0x92,0x59,0x88,0xa1,0x65,0x2a, 0xe6,0x43,0x93,0x80,0xca,0xbc,0x9c,0x9c,0x7a,0xe2,0xba,0x1c,0x5d,0x3b,0xaa,0xca, 0xcc,0x55,0xb3,0xf2,0x30,0x1b,0x7d,0xeb,0x12,0x78,0x92,0xeb,0x5b,0x95,0x27,0x7d, 0xc6,0xd2,0x24,0x85,0x55,0x48,0xc6,0xe6,0x39,0x23,0xa7,0xa6,0xda,0x69,0x6a,0x32, 0xb,0xe4,0x44,0xbb,0x67,0x65,0x8a,0xf6,0x66,0x5,0x98,0xc6,0x1b,0x8,0x49,0xe9, 0xc1,0x1,0x8f,0xa7,0x3e,0xb5,0x2d,0xed,0xb5,0x9c,0x51,0x46,0xfa,0x8b,0xc3,0x3, 0x11,0x88,0xe0,0x8c,0x72,0x47,0xae,0x49,0xc7,0xf8,0x73,0x53,0x5c,0xe9,0xf2,0x1b, 0xa4,0x82,0xdb,0x65,0xb8,0x84,0x65,0x8a,0x39,0x5,0x7a,0x60,0x8c,0x1e,0xbc,0x9a, 0xce,0x9b,0x4f,0x8f,0x57,0x75,0x7b,0x7b,0xa7,0x2b,0xca,0xbc,0xc0,0x33,0x7c,0xb9, 0xcf,0x4,0x9e,0xbf,0xe3,0x5a,0x2b,0x5e,0xe4,0xf5,0x23,0xd5,0xf5,0x5b,0xb9,0xc, 0x4a,0xd7,0x50,0x4b,0x1a,0xf,0x95,0x12,0x41,0x90,0xfc,0x72,0x40,0x3e,0xfe,0x95, 0xb8,0x97,0x37,0xb6,0x93,0x59,0xe9,0xe8,0xd6,0xee,0xf7,0xb,0xf2,0x9e,0x58,0xa8, 0xf5,0x39,0xe3,0x1c,0x1c,0x71,0xce,0x5,0x61,0xea,0x1a,0x78,0xd3,0xf5,0x78,0xa6, 0xda,0x60,0x5f,0xb4,0x2b,0x21,0x60,0x65,0x45,0xc6,0x6,0x46,0x73,0x83,0xc0,0x3d, 0xba,0xd6,0xfd,0x8d,0xc4,0x92,0xea,0x32,0xba,0xcb,0xf6,0xe7,0xb,0x83,0x38,0x5d, 0x9b,0x3b,0xe3,0x1d,0xf9,0xaa,0x95,0xb4,0xb0,0xc7,0x6a,0x36,0x11,0x4d,0x67,0xb2, 0x38,0xd,0xe5,0xce,0xf5,0x2f,0x33,0x11,0x95,0xc1,0x4,0xe0,0xf6,0xf4,0xc0,0xa9, 0xa5,0x48,0xac,0x6c,0x19,0x3c,0x92,0x54,0x7c,0xaa,0xbb,0xf0,0x7a,0xfa,0xe7,0x8a, 0xaf,0x24,0xef,0xa7,0x79,0xbb,0x8,0x9a,0x29,0x79,0xb,0x92,0xbf,0x30,0xf7,0x1d, 0x7b,0x54,0xd6,0xd6,0x5e,0x75,0xbb,0x1b,0xa7,0x99,0xd9,0xb0,0xde,0x5b,0x31,0xda, 0xe,0x3a,0x62,0xa7,0x98,0x45,0x4d,0x2f,0x42,0xbb,0xb1,0xb7,0x69,0xde,0xed,0x24, 0x6c,0x65,0x63,0xc6,0x54,0x3,0x8c,0x8c,0xe7,0xa9,0xc7,0x5a,0xca,0xbb,0xb8,0xbd, 0x8f,0x52,0xba,0x95,0x6f,0x25,0x1f,0x64,0x99,0x49,0xf,0x8f,0x2d,0x54,0x9c,0x80, 0x57,0xbf,0x6,0xb4,0x5e,0xfa,0x53,0xa9,0x3c,0x30,0xdb,0xa4,0x5c,0xe0,0xcc,0xe8, 0x63,0x50,0x31,0xd7,0x18,0xe6,0x9f,0x6f,0xa6,0xad,0xce,0xbf,0x16,0xa1,0x6e,0x7e, 0x5f,0x2c,0xca,0xc7,0x23,0x6e,0x70,0x2,0x30,0xeb,0xd4,0x66,0x9a,0x7a,0x82,0x28, 0xd,0x5a,0xe7,0x5a,0x32,0x45,0x3e,0xa5,0x6d,0x5,0xae,0xdc,0xb1,0x80,0x18,0xcc, 0xbc,0x91,0x8d,0xd9,0x3c,0x71,0xd3,0x23,0xad,0x6d,0xe9,0x52,0x58,0x5b,0x68,0x8d, 0x14,0x45,0x44,0x6a,0x1b,0xcc,0x4d,0xbf,0x9f,0x1c,0x7a,0xa,0x8a,0x4f,0xc,0x18, 0x9e,0x5b,0x8f,0xb4,0x2c,0xb2,0x82,0x5c,0x2b,0x44,0x7,0xbe,0x3f,0xfa,0xf5,0x38, 0xb9,0xb6,0x64,0x11,0xdb,0xaa,0xc9,0x3c,0xcb,0xf7,0x36,0x75,0xe3,0xa9,0xff,0x0, 0xf5,0xd3,0x93,0xe8,0x24,0x8e,0x7f,0x47,0x80,0x45,0x77,0x6b,0x70,0x2c,0xc3,0x9, 0x61,0x60,0xa2,0x57,0xc2,0x92,0xe,0x3,0x74,0x39,0xc7,0x4a,0xd9,0xb8,0xb9,0x86, 0x29,0x20,0x8e,0x58,0xe2,0x83,0x6b,0x9,0x54,0x81,0x95,0x70,0xf,0x4c,0xe3,0x83, 0x9f,0x6a,0x65,0xbb,0xb,0xd4,0x8d,0x8f,0x97,0xa,0xdb,0xfc,0xa9,0xb5,0x30,0x46, 0x3d,0x79,0xe3,0xa7,0xe9,0x54,0x6e,0xaf,0x85,0xe6,0x9f,0x6b,0x35,0xbb,0xa9,0xb8, 0xb8,0xb8,0x1,0x3,0x1f,0xf5,0x6a,0x9,0x4,0xe3,0xa7,0x51,0x53,0x70,0xbb,0x5b, 0x1d,0x29,0xd4,0xad,0xcd,0xb9,0x9c,0x4c,0x8b,0x18,0x1c,0xc8,0xc7,0xa,0x7,0xb9, 0x3d,0x38,0xae,0x3a,0xe2,0xea,0xdf,0x55,0xbe,0xba,0x9a,0xdc,0xc8,0x5b,0xce,0x89, 0x6d,0xdb,0x23,0x69,0xf9,0x80,0xe9,0x9f,0xc4,0x54,0xb7,0xfe,0x1f,0xbf,0xbe,0xbb, 0xb,0x17,0xd9,0x66,0x91,0x93,0x99,0x3c,0xcf,0xb9,0xee,0x78,0x23,0xff,0x0,0xd5, 0x56,0x75,0x1b,0x1b,0xf8,0xf5,0xb,0x3,0x77,0x2c,0x6e,0xad,0x3c,0x2a,0x4c,0x63, 0xa9,0xd,0x9f,0x4c,0xf4,0x6,0x9b,0xd5,0x2,0x67,0x40,0x82,0xe0,0xb6,0xe6,0x65, 0x38,0x62,0x6,0x2a,0xc3,0xa1,0x65,0xfb,0xb9,0xc7,0xf3,0xa4,0x29,0xba,0x53,0x9e, 0x10,0x1c,0x80,0x3b,0xd2,0xb3,0xe1,0x94,0x67,0x96,0xeb,0x93,0xd2,0xa5,0x21,0x91, 0x4a,0xb3,0xc8,0x14,0x9,0x1d,0x0,0x3d,0xc6,0x6a,0xb3,0xc5,0x88,0xa3,0x5c,0x92, 0xa1,0x8e,0x4b,0x31,0xe6,0xad,0x48,0xc9,0x18,0x3b,0x99,0x87,0xd7,0x35,0xa,0x4d, 0x1c,0x8a,0x76,0x3e,0xf8,0xc1,0xc1,0xdb,0xd7,0x35,0x9c,0x90,0xc8,0x12,0xca,0x42, 0xcb,0xbc,0xce,0x10,0x7f,0xd3,0x4c,0xaf,0xe1,0x53,0xb5,0x84,0x61,0x40,0x54,0x52, 0xec,0x73,0x92,0x73,0x4a,0x5b,0x71,0x23,0xca,0xf9,0x7d,0xc7,0x3f,0x8d,0x53,0xb7, 0x26,0xc8,0x4b,0x28,0x67,0x60,0x4e,0x36,0x9f,0xe9,0x4a,0xe8,0x35,0x2e,0x18,0x60, 0xd8,0xc1,0x21,0x87,0x72,0xf5,0x2c,0x3f,0xae,0x29,0x55,0x14,0x88,0x81,0xda,0x15, 0x4e,0x48,0x8c,0x71,0x9f,0xc6,0xa1,0x8a,0x55,0x75,0xde,0xc8,0x15,0x94,0x64,0xa9, 0x38,0xa4,0x37,0x4c,0x65,0x55,0x9,0x10,0x63,0x8e,0xe,0x4f,0x14,0x6e,0x5,0x86, 0x8d,0x23,0x62,0xe1,0x70,0x37,0x67,0x3,0xfc,0x2a,0x9d,0xcc,0x2f,0x34,0xc9,0x2f, 0x31,0xe0,0x91,0x81,0xc9,0xed,0x5a,0x47,0x1b,0x47,0x3,0x9f,0x6a,0x89,0xd5,0x81, 0xc4,0x60,0x2,0x73,0x92,0x69,0xb4,0x2,0x80,0x1b,0x68,0x38,0x3b,0x46,0x9,0x20, 0x66,0xab,0x4b,0xc,0x92,0x4c,0x24,0xf2,0xc9,0x61,0x8c,0x11,0xed,0xff,0x0,0xeb, 0xa6,0xcf,0x9d,0x83,0x6c,0x6c,0xd2,0x13,0x8e,0x78,0xa7,0x3c,0x72,0x24,0x68,0x2, 0x86,0x41,0xfe,0xb0,0x6e,0xa4,0x80,0x95,0xb,0x2d,0xb0,0x24,0x10,0xe1,0xb9,0xc9, 0xf7,0xaa,0xe2,0x69,0x22,0xb7,0x9a,0x46,0x2a,0xec,0x81,0x9b,0x0,0xe3,0x1e,0x95, 0x23,0x38,0x4,0x28,0x55,0x55,0xea,0x14,0x9e,0x9e,0xf5,0x1a,0x4a,0x11,0x9f,0x73, 0x6,0xdc,0x39,0x18,0x23,0xe9,0xfd,0x69,0xec,0x51,0x5a,0xd6,0x46,0xf2,0x83,0x96, 0xc,0x1b,0xe7,0x6d,0xa0,0x12,0x9,0xeb,0x52,0xc9,0x3e,0xd2,0x18,0x9c,0x97,0xf9, 0x40,0xe8,0x71,0x51,0x83,0x5,0x80,0x2c,0xab,0x26,0xd7,0x39,0x27,0x19,0xc7,0xaf, 0xd2,0x9f,0xc,0xf0,0xcf,0x72,0x2,0xc7,0xcc,0x63,0x70,0x35,0x21,0x60,0xdf,0xbc, 0x81,0xbb,0x6b,0x63,0x8,0xc3,0x3f,0x95,0x1,0x66,0xd9,0x82,0xac,0xdb,0x7a,0x91, 0xd7,0x35,0x64,0x36,0x71,0xc7,0x4,0x76,0xec,0x2a,0x18,0x25,0x32,0x46,0x92,0x2a, 0x3,0x93,0x8e,0x4f,0xbe,0x29,0x81,0x61,0x3f,0xd5,0xae,0x50,0x6,0xc7,0x20,0x9a, 0xad,0x38,0xc2,0x6f,0x3,0x25,0x18,0x60,0x1e,0x0,0x24,0xd4,0x88,0xbf,0xbc,0x60, 0xc1,0x72,0x1b,0x23,0x19,0xe7,0x9a,0x94,0x8d,0xca,0xca,0x7a,0x9e,0xa2,0x96,0xc2, 0x18,0xb2,0x4a,0xd1,0x2b,0xc6,0x98,0xc9,0x39,0xe2,0x90,0x96,0x72,0xab,0xe5,0xb2, 0x83,0x9e,0xbd,0x69,0xc6,0x41,0xc,0x63,0xaf,0x1c,0x28,0xcf,0x5a,0xad,0x70,0xc2, 0x68,0xc8,0x59,0xc2,0x83,0xcb,0x61,0xbe,0x61,0xed,0x4e,0xe0,0x48,0xa1,0xc9,0xc6, 0xd0,0xdb,0x7a,0x60,0xd2,0xef,0x2c,0x9c,0x6,0x53,0xd0,0x83,0x8c,0xd5,0x75,0x64, 0xda,0xab,0x14,0x2c,0xcf,0x91,0xf3,0x39,0xc0,0xfa,0xd3,0xd7,0x8,0xee,0x1d,0xa4, 0x62,0x7b,0xed,0xa4,0xc2,0xc0,0xd3,0xc6,0x93,0x0,0xa1,0x8,0x4,0x6e,0x25,0xc7, 0x15,0x22,0x79,0x6e,0x7f,0x7b,0xb7,0x69,0xfb,0xa4,0x72,0x4e,0x2a,0xac,0x11,0x47, 0x1b,0x39,0xf2,0x95,0x81,0xee,0xc0,0x12,0x2a,0xd6,0xc6,0x70,0xa,0xe0,0x60,0x60, 0x73,0x8f,0xe5,0x42,0x63,0xb1,0x61,0xbc,0xb5,0x61,0xbb,0x3b,0xf,0x4d,0xbd,0x4f, 0xd6,0xa5,0x12,0xaa,0x46,0x0,0x40,0xa0,0x73,0xf3,0x1e,0xd5,0x47,0x26,0x13,0xe6, 0x10,0x8c,0xc3,0x8e,0x79,0xa9,0x9b,0x3e,0x58,0x32,0x32,0xc,0xf5,0xca,0xe7,0xf0, 0xaa,0x4c,0x91,0xc6,0x45,0x90,0x73,0xf3,0x2a,0xe3,0x1b,0x5b,0x1f,0xca,0x90,0x3c, 0xbc,0x84,0x75,0x0,0x9e,0xd9,0x26,0xa9,0xc7,0x32,0x20,0x24,0x46,0xc3,0xd0,0x28, 0x3,0xfa,0xd4,0xa1,0xcb,0x31,0xdc,0xae,0x83,0xb1,0x2f,0xfe,0x14,0xae,0x8,0x9a, 0x48,0xfc,0xd9,0x12,0x47,0xf9,0x9d,0x38,0x52,0x78,0xa6,0x79,0xcb,0xc,0xab,0x13, 0xb0,0xc,0x54,0x31,0x6c,0x60,0x64,0xe7,0x8a,0xaf,0x34,0x6b,0x22,0x90,0xc1,0x59, 0x3b,0x86,0x62,0xf,0xe3,0x4d,0x44,0x81,0x2,0xaa,0x41,0xb0,0x67,0xb3,0xe7,0x8f, 0xc4,0x51,0xcd,0x61,0x96,0x9e,0xec,0xa4,0xac,0x85,0x58,0x80,0x85,0xb0,0x39,0x27, 0xa5,0x42,0x6f,0x6d,0x62,0x1b,0xa6,0xb8,0x8,0xab,0xd7,0xcc,0x1b,0x7f,0x53,0x4f, 0x12,0x8,0xc3,0x61,0x46,0xf,0x4e,0xd5,0x14,0xa1,0x5e,0x58,0xf7,0x47,0x96,0x4f, 0x9b,0x4,0x10,0x79,0xf7,0xeb,0x4a,0xf7,0x3,0xf,0x4f,0xbd,0xb3,0x87,0xc5,0x87, 0xec,0x6e,0xcf,0xd,0xd2,0x32,0x9e,0x31,0xf3,0x8e,0x47,0x5f,0x6d,0xff,0x0,0x9d, 0x74,0x4d,0x30,0x1f,0xf2,0xed,0x3b,0x95,0xe0,0x10,0x3f,0xfa,0xf5,0xcd,0xf8,0x91, 0x6f,0x93,0x7c,0xf1,0x5a,0x81,0x1d,0xaa,0xac,0xb1,0xb8,0xe4,0xee,0xc,0x9,0xcf, 0xe0,0x31,0xf8,0xd6,0xd9,0x74,0x96,0x34,0x4d,0xf1,0xc8,0x8c,0xa1,0xd7,0x8d,0xc0, 0xe7,0x90,0x45,0x36,0xc0,0xb4,0x24,0x95,0x80,0x2,0xca,0x70,0x33,0x9c,0xb1,0x55, 0xc7,0xeb,0x50,0x4c,0xcc,0x6e,0x92,0x44,0x8d,0x9,0x53,0xf3,0x6,0x60,0x43,0x7a, 0x67,0xf5,0xa8,0xe4,0xfb,0x6a,0x48,0xab,0x9d,0xea,0x7b,0x87,0x24,0x1,0xf8,0xe2, 0x9d,0x2c,0x4a,0xa0,0xbc,0x8e,0xeb,0x8f,0xee,0x91,0xcf,0xf3,0xa4,0xd8,0xa,0xea, 0xcd,0x31,0xdd,0x1a,0xa1,0xce,0x4f,0x3d,0x7f,0x2a,0x7a,0x49,0x22,0xc8,0x61,0x20, 0x6d,0x23,0x20,0x88,0xcf,0x1f,0x8e,0x6a,0xa4,0x19,0xf2,0x4e,0xe9,0x81,0x24,0x9d, 0xb1,0xe7,0x95,0x1f,0xd6,0xa5,0x7c,0x28,0xdc,0xd3,0x3a,0xa8,0x19,0x39,0x27,0xf2, 0xc6,0x79,0xa5,0x72,0x89,0x9a,0x69,0x10,0x48,0x65,0x11,0x8d,0xb1,0x92,0x18,0xe, 0x4f,0xeb,0x50,0x6f,0x86,0x7b,0x91,0x6f,0x24,0x9b,0x32,0x6,0x1b,0x60,0xc1,0xc8, 0xcf,0xe1,0x51,0x45,0x3c,0x2,0x27,0x79,0xda,0x20,0xc7,0x8d,0x99,0xe7,0x1f,0xe4, 0xd4,0xcf,0x2d,0x9a,0x82,0x24,0x2c,0xa0,0x8f,0x95,0xd6,0x26,0x60,0xc3,0x1d,0xb8, 0xa1,0x3d,0x44,0x49,0x1c,0x21,0x54,0x3,0x30,0x1,0x4e,0x33,0x9c,0x3,0x4c,0x5, 0x40,0x2a,0xce,0x40,0x91,0x30,0x6,0x78,0xce,0x78,0xa2,0x2b,0x98,0x47,0x97,0xd, 0xb4,0x72,0x38,0xc7,0x3b,0xa1,0x61,0xfa,0xb6,0x33,0x44,0xf7,0xa,0xef,0x21,0x7b, 0x29,0xa4,0x8c,0xe3,0x72,0x6d,0x52,0x7,0xeb,0xc5,0x37,0x61,0x58,0xb0,0xeb,0x6c, 0x57,0xd,0xbd,0x9f,0x1d,0x2,0x9e,0x45,0x40,0xb0,0xc3,0x28,0x3b,0xa1,0x90,0x49, 0xdf,0xae,0x45,0x3d,0x26,0xb8,0x8e,0x37,0xf2,0x62,0x59,0xa3,0x27,0x3b,0x19,0xc2, 0x9f,0xcc,0x7f,0x85,0x36,0x17,0xbe,0x63,0x95,0x82,0xdd,0x1c,0xf6,0x33,0x13,0x8f, 0xc8,0x50,0x32,0xca,0x97,0x53,0x85,0x8c,0x95,0xf5,0xce,0x31,0x48,0x26,0x72,0xdb, 0xe,0xd5,0x7,0xa0,0x2d,0xc9,0x3f,0x8d,0x55,0x71,0x7e,0xc9,0x80,0xf0,0x2b,0x3, 0xd3,0x69,0x27,0xf0,0x39,0x14,0xc7,0x86,0xe9,0x64,0x47,0x96,0xfe,0x24,0x7f,0xbd, 0x8f,0x24,0x6,0xc7,0xd4,0xb1,0xa2,0xc0,0xd1,0x79,0xa0,0x95,0xe6,0x59,0x54,0x20, 0x75,0x3c,0x33,0x2,0x3f,0xa5,0x55,0x96,0x69,0xd9,0xa4,0x5,0xe2,0x3b,0x86,0xd6, 0xa,0xdb,0x8f,0xe5,0x9a,0xc6,0xd4,0xb5,0x7b,0xb1,0x72,0xf1,0x5a,0x5c,0x3a,0xac, 0x68,0x33,0x26,0xc5,0xdc,0xec,0x7f,0x3,0x5b,0x8d,0x18,0x5b,0x8,0x9e,0xea,0xe9, 0xa3,0x62,0xa0,0xb7,0xce,0x15,0x49,0xfa,0x50,0xd3,0x44,0xa6,0x3e,0x21,0x36,0xc0, 0x8e,0xd2,0x10,0xbc,0x2e,0x50,0x12,0x5,0x4b,0x24,0x19,0x8c,0x13,0x3c,0xc4,0xfa, 0x29,0xb,0x8f,0xd2,0xb3,0x1e,0x6d,0x38,0xa6,0xd3,0x78,0x8c,0xf,0x67,0xb9,0x2a, 0x3f,0x20,0xd5,0x5d,0xe7,0xd3,0xed,0x97,0x64,0x6b,0x7,0x1d,0x7,0x96,0xcf,0xfa, 0xe0,0x9a,0x6,0x8d,0x28,0xcc,0x8,0xdb,0x52,0xe7,0x69,0x7,0xee,0x19,0x41,0xcf, 0xe9,0x4d,0x9a,0x5b,0x16,0x60,0x19,0xe1,0x2f,0x9e,0x77,0x37,0x4f,0xc3,0xbd,0x45, 0x1d,0xe5,0xa2,0xa0,0xdb,0xc,0xa1,0xba,0x95,0x4b,0x77,0x19,0xfc,0xc0,0xa9,0xd7, 0x52,0x93,0xcb,0x61,0x16,0x9f,0x72,0x5b,0x1f,0x2e,0x53,0x68,0x27,0xdc,0x93,0x45, 0x86,0xc5,0x5b,0x9d,0x3f,0x66,0x61,0x8e,0x36,0xc7,0x19,0xf2,0x88,0xfe,0x74,0xef, 0xb5,0x45,0xb3,0x72,0x42,0x5d,0x73,0xf7,0xa3,0x4c,0xfe,0x95,0x4b,0xed,0x5a,0xac, 0xe9,0xb6,0x6b,0x2f,0x26,0x45,0x39,0xc,0xb3,0x29,0xfd,0x2a,0x41,0x3e,0xa4,0x6, 0xf7,0xb5,0xb5,0x43,0x8f,0xbd,0xbc,0xf3,0xf8,0x1,0x4c,0x45,0x95,0xb9,0xa,0xf9, 0x4b,0x59,0x3,0xe3,0x2b,0xbc,0x2a,0x67,0xf3,0xa6,0xc6,0xf7,0x65,0x98,0x3d,0xbc, 0x40,0x37,0x38,0x91,0xb0,0x4f,0xd0,0xf3,0x48,0x23,0xd5,0x25,0x8c,0x37,0x99,0x6a, 0x88,0xde,0xa1,0xf3,0xfc,0xc5,0x43,0x71,0x67,0x77,0x29,0x50,0xf7,0xb1,0x60,0x7f, 0x76,0xf,0xf1,0x34,0x86,0x5c,0x2,0xe9,0xd5,0x91,0x63,0x85,0x5b,0x1c,0x7c,0xe4, 0xff,0x0,0x4a,0xac,0x3e,0xda,0xca,0x63,0x90,0xc2,0x8,0xea,0x56,0x33,0xc5,0x42, 0x2c,0x27,0x33,0x89,0x65,0xd4,0x58,0x90,0x30,0xa,0x0,0x3f,0xa5,0x2b,0x47,0x2, 0x4a,0xde,0x6d,0xdb,0x2,0x78,0xfd,0xe5,0xc0,0x52,0x7f,0x2a,0x40,0x48,0x62,0xba, 0x62,0x0,0xba,0x3,0xdf,0x60,0xfe,0xb4,0xe6,0x8d,0x88,0x1,0xef,0x66,0x66,0x1d, 0x76,0xc8,0xa9,0xfd,0x2a,0x8d,0xd4,0xba,0x74,0x30,0xee,0x33,0x45,0x29,0x7,0x0, 0x79,0xdb,0x8f,0xe1,0x93,0x44,0x77,0x9a,0x53,0xb0,0x1b,0x11,0x93,0x1d,0xa3,0x27, 0x9f,0x43,0x8a,0x12,0xd,0x49,0x66,0x6b,0x34,0x6f,0x96,0xfd,0xa4,0x90,0x9e,0x43, 0xc9,0x93,0xf8,0x91,0x49,0xd,0xde,0x9c,0x19,0x83,0x3a,0x92,0xbd,0x57,0x71,0x7c, 0x51,0x15,0xcd,0x9c,0x92,0x32,0x8d,0x25,0xf8,0xe8,0x44,0x3,0x7,0xf3,0xc5,0x4e, 0x67,0x98,0x26,0x13,0x4f,0x9d,0x54,0x7d,0xd0,0x76,0x2f,0xf3,0x34,0x68,0x4,0x62, 0x6b,0x47,0x3b,0xa2,0x84,0x49,0xce,0x38,0x88,0x9f,0xe9,0x56,0xb4,0xe9,0xd3,0xed, 0xf0,0x8,0xec,0xa4,0x41,0xe6,0xa8,0xc9,0x8b,0x6e,0x39,0x1e,0xb5,0xc,0x53,0xea, 0x4c,0xa4,0x7d,0x8a,0x18,0x4f,0xab,0xcc,0x39,0x1e,0xc0,0x3,0x56,0x6c,0x56,0xfc, 0xde,0x40,0x48,0xb6,0x9,0xe6,0x2e,0xec,0x33,0x13,0x8c,0xd5,0x47,0xe2,0x44,0xc9, 0x9e,0x5f,0x7,0xc7,0xff,0x0,0x12,0x5d,0x4b,0x2a,0x59,0x78,0x56,0xda,0x7f,0x2c, 0xe1,0xbc,0x9f,0x35,0xb1,0xd7,0x19,0xc0,0xf6,0xab,0x1f,0xf0,0xbc,0xbc,0x65,0xff, 0x0,0x42,0x58,0xff,0x0,0xbf,0x73,0xff,0x0,0x85,0x41,0xfb,0x3f,0xdc,0x3d,0xac, 0x5e,0x34,0xb8,0x4c,0x16,0x8a,0x38,0xa4,0x50,0x7a,0x12,0x3c,0xd2,0x33,0x58,0x87, 0xf6,0x8b,0xf1,0x7f,0xfc,0xf8,0xe8,0xff,0x0,0xf7,0xe6,0x4f,0xfe,0x2e,0xbd,0xb3, 0x90,0xde,0x9b,0xe3,0xc7,0x8b,0x60,0x85,0xe5,0x9f,0xc1,0xf1,0xc7,0x12,0x8c,0xb3, 0x3a,0x4c,0x14,0xf,0x72,0x45,0x76,0xda,0x44,0xef,0xf1,0x93,0xe1,0x55,0xd4,0x77, 0xab,0x1e,0x98,0xd7,0x73,0x98,0x8b,0x5b,0xae,0xfd,0xa2,0x37,0x56,0xe8,0x71,0xd7, 0x18,0xac,0x8,0x3c,0x6b,0xa9,0x78,0xeb,0xe0,0x57,0x8a,0xf5,0x2d,0x4e,0x2b,0x68, 0xa6,0x8b,0xcc,0x81,0x45,0xb2,0xb2,0xae,0xd0,0xa8,0x79,0xc9,0x3c,0xfc,0xc6,0xa9, 0xf8,0x17,0xc4,0x57,0x9e,0x13,0xfd,0x9e,0x6f,0x75,0xbb,0x4,0x85,0xee,0x6d,0xaf, 0x1b,0x62,0xcc,0xa4,0xa1,0xdd,0x22,0x29,0xc8,0x4,0x1e,0x84,0xf7,0xa0,0xe,0x1a, 0xdb,0xe1,0x2c,0xb3,0x7c,0x52,0x9b,0xc2,0x8d,0x71,0x78,0xb6,0x11,0xee,0xc6,0xa1, 0xf6,0x53,0x83,0x88,0xf7,0xff,0x0,0xbb,0xd7,0x8e,0xb5,0xd7,0xc5,0xa2,0xdf,0xf8, 0xb6,0x75,0xf8,0x5f,0x77,0x6f,0x25,0x96,0x99,0xa2,0xc8,0xef,0xe,0xaa,0xb6,0xcc, 0x5a,0x7f,0x2c,0x95,0x19,0x7,0xb,0xc8,0x72,0x78,0x3d,0xa9,0xfe,0x9,0xf8,0xf3, 0xa9,0xea,0xde,0x28,0xb7,0xb3,0xf1,0x11,0xd2,0x2c,0x74,0xc7,0x57,0x32,0x4e,0x15, 0x93,0x69,0xa,0x4a,0x8c,0x96,0x23,0x93,0x8a,0xf5,0x4f,0xf8,0x59,0x5e,0xa,0xff, 0x0,0xa1,0xa3,0x4b,0xff,0x0,0xc0,0x81,0x40,0x1c,0x77,0x80,0x7c,0x1f,0xe1,0x6f, 0x87,0x5a,0xdd,0xe5,0xd8,0xf1,0xa5,0x8d,0xcc,0xb2,0xc2,0x6d,0xde,0x29,0x65,0x8a, 0x32,0x84,0x30,0x27,0xf8,0xc9,0xce,0x46,0x31,0x5e,0x37,0xf1,0x17,0xc2,0x1a,0x37, 0x85,0xef,0x74,0xf9,0x74,0x9f,0x11,0x43,0xab,0x9b,0xc9,0x24,0x69,0x44,0x45,0xf, 0x95,0x82,0xa4,0x67,0x6b,0x1e,0xbb,0x8f,0x5c,0x74,0xae,0xe7,0x51,0xf0,0x37,0xc2, 0x8d,0x4b,0x53,0xbb,0xbe,0x97,0xc7,0xdb,0x64,0xb9,0x99,0xe6,0x65,0x5b,0x88,0xb0, 0xb,0x31,0x24,0xf,0x97,0xa7,0x35,0xe1,0x92,0x85,0x8a,0xe5,0xc4,0x4d,0xb9,0x11, 0xce,0xd6,0xf5,0x0,0xf0,0x68,0x3,0xeb,0x6f,0x1b,0x78,0xdf,0x57,0xf0,0xc7,0x88, 0x34,0x6d,0x3b,0x4e,0xd0,0x92,0xfa,0xde,0xf1,0x57,0xcd,0x9b,0xcb,0x73,0xe5,0xe5, 0xc2,0xff,0x0,0x8,0xc7,0x4e,0x79,0xae,0xf,0xe2,0x60,0xb,0xfb,0x42,0xf8,0x40, 0x0,0x7,0xfc,0x7a,0x74,0x1f,0xf4,0xdd,0xab,0x2,0x2f,0xda,0x1b,0xc6,0x52,0x3a, 0x43,0x16,0x9d,0xa4,0xbb,0xb1,0xa,0xaa,0xb0,0x48,0x49,0x3d,0x0,0x1f,0x3d,0x3d, 0x57,0xc7,0x7e,0x2e,0xf8,0xa5,0xe1,0xcd,0x73,0x5c,0xf0,0xbd,0xe5,0xaf,0xd9,0x6e, 0x6d,0xe3,0x67,0x8a,0xc6,0x54,0x8d,0x63,0x59,0x77,0x16,0x62,0xd9,0xc7,0x53,0xce, 0x68,0x3,0xd2,0xbc,0x73,0xf0,0x62,0xd7,0xc6,0xde,0x25,0x93,0x5a,0x97,0x5a,0x9a, 0xd5,0x9e,0x34,0x8f,0xca,0x4b,0x70,0xe0,0x6d,0x18,0xce,0x49,0x15,0xcf,0xf8,0x67, 0x5f,0xb8,0xf0,0x8f,0x8a,0x65,0xf8,0x57,0xc,0x30,0xdc,0xd9,0xdb,0xc5,0x39,0x17, 0xaf,0x95,0x91,0xb7,0x42,0xd3,0x7d,0xdc,0x91,0xd4,0xe3,0xe9,0x5e,0x9d,0xe3,0xfd, 0x7e,0xef,0xc2,0xde,0x7,0xd4,0xf5,0xab,0x14,0x89,0xee,0x6d,0x51,0x19,0x16,0x60, 0x4a,0x1c,0xba,0xaf,0x20,0x10,0x7a,0x13,0xde,0xbc,0xa3,0xc0,0xaf,0xa1,0x78,0xa7, 0x5c,0x5f,0x1b,0x5e,0xeb,0x71,0x47,0xe2,0xdb,0x88,0xa7,0xce,0x97,0xb,0x28,0x4c, 0x2c,0x6d,0x18,0xc2,0x9c,0xb7,0xdc,0x50,0xdd,0x69,0x4b,0x66,0x35,0xb9,0xea,0x3e, 0xb,0x9a,0x39,0x52,0xf5,0x55,0x36,0x48,0x9b,0x3,0x80,0x3f,0xde,0xc7,0xf5,0xae, 0xaa,0xb9,0x5f,0x6,0x4d,0xf6,0x8f,0xb7,0xbb,0x42,0xb1,0xc8,0x19,0x15,0xb6,0xf7, 0xc6,0xea,0xea,0xab,0x2a,0xa,0xd4,0xd0,0xe5,0xb9,0x83,0xe2,0x4c,0x66,0xd7,0x70, 0x25,0x49,0x60,0x7d,0xba,0x56,0xb,0x5c,0x43,0x2,0x2a,0xb4,0x64,0x9e,0xa7,0xe5, 0xad,0xff,0x0,0x12,0x2b,0x32,0xdb,0xed,0x19,0xfb,0xdf,0x9f,0x15,0x92,0x20,0x9f, 0x68,0x32,0xb2,0x6,0x6e,0x70,0x17,0x38,0xae,0x1c,0x42,0xbd,0x57,0xfd,0x74,0x3a, 0x29,0x3f,0x75,0xd,0x69,0x4e,0xc3,0xb1,0x70,0x48,0xe3,0xa0,0xa3,0xcd,0x92,0x58, 0xf0,0x15,0x88,0xc6,0x6,0xe3,0xb7,0x3f,0xce,0x9d,0xe4,0xdc,0x19,0x8,0xf,0xc9, 0x3f,0x7b,0x68,0xc0,0xa6,0xc9,0x1c,0x91,0x30,0x53,0x24,0xb2,0x28,0xec,0xa3,0xfa, 0xd6,0x9,0x77,0x34,0xd0,0x72,0x49,0x22,0x8e,0x8a,0xbe,0xde,0x66,0x69,0xb2,0xdc, 0xcd,0xc2,0x15,0x8c,0x2,0x7b,0x31,0x3f,0xca,0xa5,0x82,0xd4,0xa9,0xdc,0xee,0xc1, 0x9b,0x9e,0xa3,0x8f,0xce,0x91,0xad,0xb6,0x93,0x8c,0xb8,0xf5,0x66,0x14,0xec,0xd0, 0x88,0x4,0x2d,0x2c,0xb9,0xc,0xa4,0x8e,0x9b,0x87,0xf5,0xa6,0xc5,0x71,0x23,0x4a, 0xd1,0x79,0x81,0x0,0x38,0xce,0x38,0xf7,0xa9,0xcd,0xac,0x6e,0xe7,0xcc,0x4,0x80, 0xb9,0x3,0x77,0x7a,0x92,0x2b,0x1b,0x75,0x87,0x2,0x20,0xae,0xe3,0x3c,0xf3,0xfc, 0xe8,0x8a,0xb,0x90,0x49,0x3c,0x48,0x48,0x69,0x40,0x3d,0xf2,0x40,0x18,0xfa,0x9a, 0xaa,0x97,0x6c,0xcd,0x96,0x76,0xd8,0x47,0x0,0x3f,0x20,0x7a,0xf1,0xd6,0xaf,0xb5, 0x8d,0x82,0x3a,0xf9,0x91,0x99,0x25,0xeb,0x8e,0xdf,0x95,0x22,0xda,0xc3,0x13,0xb6, 0xd4,0xa,0x48,0xfa,0xff,0x0,0xfa,0xa9,0xb4,0x4,0x4a,0x2d,0x9a,0x12,0x1e,0x47, 0x93,0x3d,0x81,0x61,0x9f,0xd6,0x89,0x1a,0x8,0xe3,0x62,0xb6,0xf2,0x88,0xc2,0x81, 0x92,0xcd,0x81,0xf9,0x66,0xad,0xc4,0xa0,0x38,0x4c,0x36,0x2,0xee,0xc9,0x15,0x32, 0x84,0x67,0x2a,0x17,0x9c,0x64,0x66,0x9f,0x2b,0x15,0xcc,0x37,0xba,0xb5,0x9a,0x54, 0x10,0xc6,0x24,0xc7,0xde,0xf9,0xf,0x35,0x7d,0xe5,0xb8,0x21,0x7c,0x9b,0x3,0xe5, 0xe3,0x90,0x48,0x52,0x7f,0x5a,0xb3,0x3c,0xc2,0x36,0xa,0x17,0x27,0xb6,0x3a,0xd3, 0x4,0x91,0x34,0x8a,0xac,0xbf,0x31,0xeb,0x9e,0x31,0x49,0xc4,0x35,0x2a,0xc8,0x97, 0x53,0x4,0x79,0x63,0x48,0x42,0xf2,0x77,0xc9,0xff,0x0,0xd6,0xa7,0xa2,0x5d,0x4a, 0x1b,0x3e,0x4e,0xc6,0xe8,0x1,0x24,0xd5,0xa6,0xd8,0xc0,0xa3,0xe0,0x80,0x7b,0xf3, 0x9a,0x67,0x9d,0x2a,0xc7,0xb7,0x60,0xdc,0xcd,0x85,0x3,0xa0,0x1e,0xf4,0xac,0x84, 0x45,0x25,0xbb,0x12,0x3f,0x7e,0x88,0xc1,0x71,0xf7,0x49,0x3f,0xce,0x9a,0x90,0x48, 0xa8,0x81,0x25,0x63,0xb8,0x67,0xa0,0x1c,0xfe,0x39,0xab,0x61,0x63,0x57,0x1e,0x63, 0x12,0xc3,0xd3,0xa5,0x36,0x5c,0xc8,0xdb,0xc1,0x38,0x3,0x18,0xa2,0xc8,0x77,0x64, 0x32,0xc3,0x39,0x1,0x1e,0x79,0x3,0x6,0xe4,0xa8,0x7,0x8f,0xca,0x9d,0xe,0x9d, 0xa,0x16,0x2e,0xf2,0x30,0xce,0x40,0x63,0x52,0x2b,0x9,0x79,0x53,0x9c,0x1c,0x71, 0x52,0x12,0xa3,0x3f,0x2b,0x83,0xdc,0xd0,0x92,0x13,0x64,0x6d,0xe,0x13,0x9,0x85, 0xe7,0x82,0x46,0x69,0x82,0xdc,0xab,0xa9,0x75,0x46,0x39,0xe4,0x8f,0xfe,0xbd,0x48, 0xe1,0xd8,0xfd,0xc7,0x2b,0xf5,0xaa,0x52,0x93,0x7d,0x2f,0x96,0xe3,0x6a,0x46,0x79, 0x52,0x4f,0x34,0xb6,0x15,0xcb,0xa0,0xed,0x79,0x49,0xc9,0x5,0xb8,0x38,0xe0,0x52, 0x31,0x11,0x80,0xc6,0x55,0x40,0xf8,0xe1,0x98,0xa,0x30,0xa1,0x55,0x1f,0x1c,0x76, 0x14,0x18,0x4,0xa5,0x5d,0xa2,0x46,0x2b,0xd3,0x78,0xfe,0x94,0xe3,0xa8,0xc7,0x22, 0xa4,0xb1,0xb9,0x25,0xdb,0x9d,0xbf,0x33,0x71,0xf8,0x62,0x9f,0x1f,0x96,0x8a,0x0, 0x5c,0x28,0x38,0xc7,0x5a,0x55,0x52,0x10,0x92,0x31,0xec,0xb4,0xb1,0x7,0x1f,0x33, 0x9d,0xaa,0x7b,0x1c,0x55,0xa1,0xd,0xb8,0x97,0xc8,0x84,0xb8,0xc,0x48,0xce,0xd1, 0x8f,0x6a,0xe6,0x6c,0x6d,0x44,0xdf,0x68,0xbc,0x93,0x60,0x56,0x9d,0x88,0x39,0xe5, 0x80,0xf9,0x47,0xea,0xd,0x6c,0xeb,0x32,0x18,0xad,0x65,0x65,0xe5,0x84,0x2f,0x80, 0x41,0xc1,0x6c,0x71,0xfa,0xd6,0xe,0x99,0x63,0x7c,0x5a,0x8,0x51,0xa4,0x48,0xed, 0xd3,0x2d,0x24,0x8b,0xc7,0x4e,0x80,0x1c,0x67,0xa9,0xa7,0x6b,0xb0,0xe8,0x3e,0xeb, 0xec,0x8c,0x64,0xb8,0x12,0xc9,0xc,0xa1,0xcc,0x64,0x1,0x96,0x7f,0x6c,0x67,0xa5, 0x53,0x78,0xe6,0x16,0xd6,0xb1,0x2c,0xea,0xaa,0x71,0xb6,0x22,0xfb,0x47,0x73,0xdb, 0xa7,0x6e,0x39,0xab,0xb7,0x30,0x49,0x25,0xab,0x43,0xf6,0x83,0x3d,0xc4,0x4e,0x5d, 0x33,0x18,0xef,0x9e,0xe,0x3e,0xb5,0x93,0x34,0x57,0x91,0x17,0x7d,0xb2,0x3a,0x2a, 0xa3,0x3b,0x65,0x41,0x4c,0x60,0x70,0x32,0x33,0xd0,0x74,0xad,0x20,0x96,0xc2,0x6d, 0x26,0xae,0x6c,0x69,0xf3,0x49,0x67,0xa0,0xbd,0xca,0xc4,0xcc,0xcd,0x23,0x9,0x11, 0x9f,0x27,0x4,0xe0,0x71,0xdc,0x1,0x8f,0x4e,0xf5,0x3c,0x9a,0x8a,0xcf,0xa7,0xc7, 0x29,0x8c,0x5b,0xa6,0xf,0x98,0x7,0x4,0x73,0xfc,0xbd,0x3e,0xb5,0x85,0x6,0xaf, 0x7b,0x66,0x6e,0x23,0x82,0x16,0x90,0xb7,0xfa,0xb9,0xe4,0x52,0xdb,0xf,0x7e,0xbc, 0x1e,0xb5,0x7d,0x6c,0xfe,0xd7,0x14,0x4b,0xa8,0x4b,0x9,0x28,0x7c,0xc9,0x23,0x85, 0x15,0x5e,0x42,0x7a,0x2,0xc0,0x74,0xf5,0xfa,0xd4,0xcb,0x46,0x34,0xd3,0xd8,0x95, 0xf5,0x77,0x5b,0x1,0xb2,0xd4,0x79,0x2d,0xf2,0x46,0xef,0x9d,0xa0,0xe3,0xaf,0x4f, 0xe4,0x6a,0x3b,0x6,0x92,0x3b,0x51,0x2a,0xcf,0x21,0xbd,0x99,0xb3,0x12,0x48,0x7e, 0x5d,0xb8,0xfb,0xc4,0x1e,0x9c,0x3,0x5a,0x90,0x64,0xe1,0x7c,0x90,0xc8,0x30,0x39, 0xe0,0x2,0x2a,0x67,0xb2,0x86,0x77,0x2c,0xdb,0x96,0x53,0xd2,0x4c,0xf2,0xbf,0x4f, 0x6f,0xf1,0xa9,0x52,0x5d,0x1,0xc5,0x94,0x4d,0xe4,0x77,0xfa,0x9a,0xc1,0x72,0xb2, 0x5,0x20,0x79,0x63,0xf8,0x19,0xf0,0x3a,0x9e,0xa3,0x9d,0xc3,0xd2,0xb6,0x6d,0x19, 0x6d,0xa6,0x60,0xc,0x11,0xae,0xd1,0xf2,0x3,0x8e,0x99,0xac,0x6b,0xd,0x63,0x4a, 0xb9,0xbc,0x4b,0x6b,0x94,0x8e,0x6,0x56,0x3e,0x43,0xcd,0x8f,0x9b,0x4,0x8c,0x83, 0x8e,0x3a,0x1e,0x2a,0xcb,0xea,0x42,0xb,0xa6,0x8e,0xd6,0x26,0xb9,0x8d,0x5c,0x3, 0x20,0x70,0xc4,0x12,0x39,0xea,0x8,0xe3,0x27,0xa5,0x3b,0xb5,0xa8,0x3b,0xa2,0x5b, 0xfd,0x4d,0x2e,0xf4,0xf7,0x86,0xda,0xe4,0x47,0xe6,0xbe,0xd1,0x23,0x7c,0x8b,0x83, 0xdb,0x27,0xb9,0xe9,0x50,0x78,0x5e,0xf0,0xcb,0xa3,0x3b,0xfd,0x95,0x86,0xd9,0x8, 0x18,0xe8,0xdd,0x3a,0x1c,0x76,0xe9,0xf8,0x55,0x1d,0x72,0xd1,0x5,0xa1,0xb9,0x8f, 0xce,0x76,0x12,0x8c,0xd,0xc3,0x62,0xee,0x38,0x3d,0x46,0x7f,0x2a,0x8f,0xc3,0xda, 0x93,0x41,0x31,0xb0,0x91,0xd2,0x48,0x57,0xe6,0x5d,0xe0,0x82,0xae,0xdc,0xe3,0x8c, 0xf1,0x9c,0xe3,0x35,0xa6,0xea,0xe0,0x5f,0xba,0x1f,0x65,0xd3,0xb5,0x2b,0x8b,0xb8, 0xcf,0xef,0xc9,0xda,0xa0,0xf2,0x32,0xa4,0x60,0x7f,0x9e,0xa6,0x9d,0x6b,0xa5,0xe9, 0xa2,0xca,0x38,0xe3,0x75,0x0,0x46,0x3,0xb1,0x3,0x91,0x8e,0x4f,0x3d,0xbf,0xc6, 0xa4,0xd7,0xa3,0xb9,0x96,0xf3,0x4b,0xb7,0x8d,0xc2,0xdb,0x3c,0xac,0x64,0x94,0x2e, 0x76,0x90,0x30,0x3b,0x77,0xc9,0xc6,0x7b,0x81,0x5c,0xfd,0xd6,0xa4,0x6f,0xaf,0x7c, 0xad,0x3d,0xfc,0xab,0x5b,0x69,0x4,0x4b,0x21,0xcb,0x79,0x87,0x38,0xc9,0xc7,0x51, 0xd7,0x8c,0xfe,0x55,0xe,0x20,0x6c,0xe8,0xff,0x0,0x67,0xb1,0xb8,0x96,0xce,0x32, 0xb2,0x2c,0xee,0xd9,0x64,0xe3,0x4,0x28,0xeb,0x8e,0xd8,0x1e,0xbd,0xfd,0xe9,0x2f, 0x27,0x96,0x6d,0x7f,0x4f,0xb6,0xf2,0x4a,0xdb,0x41,0x21,0x60,0x59,0x8e,0x59,0xc2, 0x13,0xfa,0x67,0xf5,0xac,0x7d,0x53,0xec,0x71,0x68,0xef,0x24,0x13,0x37,0x9e,0xd2, 0x4,0xf3,0x64,0x62,0xac,0xfc,0xe0,0xe1,0x3f,0xcf,0xbd,0x3f,0x46,0xbf,0xbd,0xd4, 0x35,0x1b,0x69,0xdc,0xc1,0x2b,0x24,0xd2,0x33,0xac,0x40,0x82,0xa3,0x80,0x77,0x67, 0xa7,0x4,0x62,0x8b,0x2,0xd0,0xec,0xa,0x61,0xd8,0x6e,0x38,0x6c,0xe3,0x9f,0xe5, 0x49,0xf,0xee,0xa3,0xf9,0xd9,0xe4,0x0,0xf7,0xa7,0x79,0x92,0x49,0x2f,0xfa,0x93, 0xe5,0x81,0xcb,0xee,0x1d,0x7e,0x94,0xc9,0x99,0x8b,0x84,0x8d,0x43,0x16,0x38,0xca, 0xf6,0xa8,0x97,0x71,0x92,0x7c,0xca,0x19,0x5d,0xf7,0x30,0x3b,0x86,0xe1,0xd0,0x55, 0x13,0xe5,0xc2,0x1e,0x54,0x89,0xb9,0x62,0xf8,0x1d,0xcd,0x3e,0xea,0x56,0x4,0x0, 0x8a,0xdb,0xe4,0x9,0xd3,0x9a,0x46,0x99,0xe1,0x66,0x65,0x1b,0xd5,0x4e,0x0,0x84, 0x12,0x6a,0x5c,0x86,0x86,0xb4,0xf0,0xc9,0x2f,0x97,0x2a,0xae,0x58,0x6e,0xc3,0x74, 0xa8,0xbc,0xc8,0xad,0xd7,0x6c,0x2a,0x84,0x1c,0x9c,0x45,0xce,0x31,0xeb,0x42,0x48, 0xf2,0x49,0xb8,0xef,0x25,0x8f,0x53,0xc5,0x4e,0xa9,0x6c,0x8e,0x37,0x31,0x67,0x3c, 0x13,0x93,0xc5,0x40,0xc2,0x49,0x54,0x1d,0xa5,0xc4,0x8f,0xd7,0xe5,0x5a,0x94,0x94, 0x91,0x14,0x96,0x25,0xb1,0xdc,0x0,0x6a,0xb9,0x6b,0x60,0x58,0x82,0x51,0xb3,0xf7, 0xb6,0x93,0xf9,0x62,0xa5,0x6d,0xab,0x10,0x31,0xc6,0xcc,0x5b,0x8f,0x98,0x62,0x9a, 0x42,0x6,0x9c,0x60,0xa3,0x4d,0x18,0x3d,0x31,0xbb,0x9a,0xaf,0x1c,0xf2,0x9,0x59, 0xcb,0x32,0xaa,0xfc,0xab,0xce,0x77,0x7b,0xfb,0x54,0x92,0x44,0xea,0x5a,0x41,0xc1, 0xf6,0x18,0xa0,0xc9,0xfe,0x8d,0x23,0x10,0xcf,0x85,0xcf,0x19,0xa9,0x6c,0x76,0x20, 0xb9,0x79,0x76,0x49,0x84,0x69,0x59,0x71,0x82,0x41,0xf5,0xa4,0x79,0xe5,0x6f,0x34, 0x30,0x70,0xae,0x32,0xd9,0x53,0xc6,0x3f,0xa5,0x38,0xc8,0xf2,0x6c,0x8c,0x21,0xda, 0xc0,0x31,0xde,0x47,0x14,0xe3,0xc,0x89,0x19,0x3,0x18,0x2b,0x8f,0x94,0xff,0x0, 0x31,0x40,0xf,0x69,0x65,0x91,0x4c,0xc8,0xaa,0xaa,0x57,0xe5,0x64,0x60,0x70,0x3f, 0x1a,0x60,0x37,0x12,0xa8,0x3e,0x5c,0xc,0x71,0xf7,0x9c,0x9c,0xfd,0x6a,0xb2,0x45, 0x24,0x28,0x7,0x98,0xa8,0x9d,0x80,0x0,0x8a,0xb0,0xef,0x13,0xdb,0xb9,0x32,0x2b, 0x2e,0x0,0xda,0xad,0xfc,0xfa,0x53,0xdc,0x8,0x4a,0xdd,0xb0,0x75,0xf2,0xe2,0x23, 0xd4,0x3,0x83,0xf4,0xc9,0xa6,0xda,0x41,0x38,0x52,0x1a,0x60,0xa1,0xba,0xa0,0x4c, 0xf,0x6c,0x9a,0x97,0x7c,0x40,0x7c,0x8e,0x18,0x2a,0x8c,0xe4,0xe4,0x8f,0x6a,0x80, 0xed,0x97,0x2f,0xe7,0x88,0xc3,0xe,0x14,0x9f,0xf0,0x34,0x98,0xfa,0x16,0xed,0x8a, 0x88,0x0,0x33,0x2f,0x98,0xb9,0x2c,0x81,0xbb,0x1f,0x4a,0x8b,0xca,0x4b,0x76,0x32, 0x9,0xb6,0xab,0x1c,0x85,0x62,0x0,0x15,0x24,0x26,0xdf,0x60,0xf3,0x4,0x20,0xe7, 0x87,0x41,0x9a,0x54,0xb8,0x5,0xdb,0xcb,0x89,0xf8,0xe5,0x7e,0x5c,0x93,0xef,0xe9, 0xf9,0xd3,0x42,0x44,0x6e,0xf1,0x4a,0xf9,0x8e,0x66,0xc0,0x1c,0x85,0x6e,0x86,0xa5, 0xde,0x82,0x5,0xdd,0xc,0x93,0xb7,0x3c,0x85,0x3f,0xa9,0x15,0xc,0xf7,0x4f,0xe6, 0x6c,0x78,0x25,0x2c,0x79,0x5,0xd3,0x19,0xfc,0xb8,0xa9,0x3c,0xf9,0x54,0x2e,0xe8, 0x8f,0x39,0xf9,0x77,0xf4,0xa4,0xc0,0x62,0xe4,0x21,0x6,0xd,0x8b,0xe8,0x10,0xe7, 0xf5,0xa6,0xc4,0xab,0x6c,0xc6,0x28,0xad,0xcc,0x61,0x86,0xe3,0xbc,0x8c,0xb5,0x4a, 0xfe,0x7c,0xd1,0xb0,0x28,0xaa,0xbe,0x9e,0x65,0x42,0x92,0xcc,0xf1,0xed,0x95,0x80, 0x2b,0xd9,0x80,0xe9,0x40,0xd6,0xa4,0xa9,0x2b,0x97,0x28,0x2d,0x40,0x7,0xbe,0xfc, 0xff,0x0,0x21,0x52,0x32,0x3a,0x2f,0xb,0x9e,0xe4,0xf2,0xdf,0xe7,0xf1,0xa8,0x90, 0xbb,0x3a,0xec,0xe,0x37,0x75,0x28,0x83,0xf9,0xf2,0x29,0x64,0x86,0x51,0x86,0x12, 0xc8,0xc3,0x38,0x2b,0x80,0x7,0xf2,0xa1,0x0,0x6c,0xdc,0x14,0xc7,0xb1,0xd8,0x9e, 0x55,0x7a,0x8f,0xaf,0x6a,0x55,0xb7,0x92,0x33,0xe6,0x60,0xa9,0x6e,0x19,0x13,0xfc, 0x9a,0x85,0xc2,0xc6,0x8d,0xe6,0xab,0xaa,0x13,0x8c,0xef,0x18,0xfc,0xb3,0x55,0xc4, 0xb6,0x4a,0x40,0x2b,0x19,0x8d,0x47,0x2e,0xf2,0x15,0x2c,0x7d,0x85,0x3b,0x3,0x46, 0xa1,0x5c,0x45,0xbb,0x20,0x71,0xfc,0x5c,0x62,0x9b,0xe6,0x5a,0x2a,0x29,0x17,0x31, 0xb3,0xaf,0x25,0xbc,0xce,0x7,0xb5,0x65,0xa5,0xc6,0x9c,0x59,0x76,0xc4,0x8e,0x1b, 0x81,0x80,0x5f,0x1f,0x86,0x2a,0x79,0x2e,0xd0,0xb2,0xc6,0xb6,0x73,0x49,0x13,0x2f, 0xde,0xf2,0x48,0xc1,0xf4,0xc1,0x14,0x58,0x5c,0xa4,0x91,0xdd,0xdb,0x23,0xb1,0x33, 0x2,0xad,0xe8,0x9,0x1f,0x86,0x7,0xbd,0x2f,0xda,0x62,0x86,0x0,0xab,0xc,0xb2, 0xc8,0x7a,0x22,0xa1,0xe4,0x7d,0x71,0xc5,0x41,0xf6,0xbc,0xab,0x47,0x1c,0x33,0xb8, 0x40,0x3e,0x40,0x51,0x57,0x3e,0xe7,0x35,0x32,0x3d,0xcc,0xa0,0x3b,0xdb,0xc8,0x80, 0x81,0xc7,0xda,0x38,0x1f,0x97,0x5a,0x76,0x15,0x88,0xe1,0x9a,0xe9,0x64,0x69,0x23, 0x8a,0x41,0xe,0x3f,0xd5,0x95,0x18,0x1f,0x89,0x20,0xd4,0xed,0x71,0x73,0x72,0xcb, 0xb2,0xc9,0x99,0x71,0xd7,0x70,0x5f,0xca,0x9c,0xc6,0xea,0x55,0x21,0x12,0x2d,0xb8, 0xfe,0x27,0x24,0x9f,0xd3,0x9a,0xa9,0x2c,0xda,0xab,0xc6,0xb1,0xc0,0xb6,0xaf,0x97, 0xda,0x76,0x93,0x94,0xf7,0x23,0x3c,0x7f,0xf5,0xa8,0x18,0xef,0x32,0x76,0x12,0x79, 0xd0,0x45,0x11,0x3,0xe5,0xdf,0x36,0xe2,0xf,0xae,0x0,0xa5,0x2,0x42,0x5e,0x4d, 0xca,0xb9,0x0,0x96,0xc,0x58,0x9c,0xfa,0x7e,0x5f,0xad,0x3a,0x5b,0x4d,0x44,0xf2, 0xb7,0xe1,0x48,0x18,0x0,0x40,0x8,0xcf,0xea,0x6a,0xb,0x18,0x6e,0xbe,0xd0,0xde, 0x7e,0xe2,0x4a,0xfc,0xf9,0xf9,0x73,0xff,0x0,0x7c,0x81,0x49,0xa0,0x1d,0x77,0x14, 0x8d,0x13,0x20,0x94,0x13,0x22,0x90,0xad,0xe5,0x93,0xce,0x3b,0xfb,0x74,0xac,0x9d, 0x12,0x75,0x7d,0x22,0x3b,0x69,0xae,0x42,0x4b,0x6e,0xcd,0x6d,0x9c,0xe0,0xfc,0xbd, 0x7,0xbf,0x18,0xab,0x77,0xb1,0xc5,0x2d,0xcb,0xab,0x4d,0x29,0x55,0x0,0x17,0xf3, 0x58,0x63,0xd8,0xf3,0xd2,0xb3,0xac,0x1a,0xd2,0xd,0x5e,0x6b,0x28,0x8c,0x41,0x64, 0x8f,0xcd,0x56,0x43,0x91,0xbd,0x7a,0xfe,0x63,0xf9,0x51,0x61,0xde,0xc6,0xc9,0x48, 0x6d,0xe3,0x57,0x79,0xe4,0x6d,0xd8,0x3,0x2c,0x40,0x35,0x9,0x96,0xcf,0xed,0x4a, 0xaf,0xe4,0x2c,0x63,0xef,0x31,0x97,0x76,0x2a,0x39,0x65,0xb4,0x82,0xd4,0x3c,0x91, 0xc4,0x6e,0x37,0x63,0x26,0xdf,0x39,0x19,0xf5,0xc7,0x15,0x20,0xbf,0x8e,0x48,0x76, 0xb,0x5b,0xa9,0x10,0x8c,0x0,0x10,0x11,0x9f,0x6e,0x69,0x8,0x9e,0x49,0xf4,0x92, 0x1,0x8f,0x23,0x23,0x19,0x58,0x99,0x81,0xfc,0x40,0xa0,0xcf,0x6c,0xd3,0xc6,0xd0, 0xf9,0xe4,0x46,0x3a,0x79,0x67,0x0,0xfe,0x22,0x9c,0xb7,0x52,0xc2,0x9c,0x58,0xbc, 0x79,0x1f,0x29,0xc2,0xa9,0x15,0xc,0x6,0xf5,0x9d,0xe3,0x4b,0x71,0x3f,0x99,0x8c, 0xb4,0xb2,0x80,0x7,0xe4,0xd,0x0,0x4a,0xf7,0x89,0xe,0x76,0xe9,0xd7,0x67,0x23, 0x97,0x8a,0x10,0x38,0xfa,0x93,0x4d,0xfb,0x54,0xb1,0x20,0x45,0xb1,0xb9,0x43,0xb7, 0x20,0xbb,0xa8,0x3f,0xcf,0xfa,0x54,0x30,0xdd,0x4d,0x35,0xd1,0x85,0x62,0xb4,0x56, 0x8b,0x20,0x99,0x18,0xb6,0x71,0xfd,0xde,0x5,0x4d,0xb6,0xfa,0x49,0xf9,0x9e,0xd8, 0x82,0x38,0xca,0xb6,0xe0,0x3f,0xdd,0xcf,0xf5,0xa4,0x1,0x34,0xf7,0x11,0x85,0x79, 0x2c,0x20,0xe7,0x82,0xc6,0x40,0xc4,0xfe,0x43,0x8a,0x45,0x97,0x52,0x7c,0xf9,0xf, 0x68,0xbb,0x97,0xfd,0x5b,0x31,0xc0,0x14,0x85,0x2f,0xdc,0x99,0xe,0xa6,0x36,0xa9, 0xff,0x0,0x56,0x90,0x83,0x8f,0xcc,0xd4,0x9f,0x61,0x79,0x42,0xca,0x6f,0x6e,0xc9, 0xc7,0x24,0x6c,0x4c,0x7e,0x4b,0x45,0x81,0xa1,0xf1,0xd,0x44,0x29,0xf3,0xae,0x6d, 0xe3,0xff,0x0,0x69,0x63,0x63,0x9f,0xc7,0x70,0xa5,0x86,0xde,0x6b,0x70,0x5e,0xe7, 0x51,0x79,0x37,0x7d,0xd4,0x48,0x50,0x1f,0xe4,0x4f,0xeb,0x54,0x5a,0x3f,0xb3,0xcc, 0xa9,0x25,0xdd,0xcb,0xa3,0xf0,0x18,0x4c,0x78,0xfa,0xf1,0x4b,0x35,0x96,0x96,0xa5, 0x44,0xc9,0xe6,0x47,0xdc,0x9b,0x83,0xc7,0xe1,0x9a,0xa4,0x16,0x28,0xde,0xcb,0x73, 0xf6,0xb7,0x86,0x7b,0x89,0x53,0xcb,0x39,0x45,0x2c,0x40,0x23,0x8e,0x7b,0x66,0xa0, 0x2c,0x77,0x64,0xc8,0xec,0x7d,0x4b,0x16,0xfe,0x64,0xd6,0xc3,0x36,0x92,0x91,0x2a, 0x45,0x71,0x6a,0x55,0x47,0xdd,0x0,0x13,0x4c,0x8a,0x5b,0x66,0x89,0xe2,0x78,0x51, 0xe4,0x62,0x4a,0x3c,0x30,0xb1,0x38,0xfa,0x6d,0xa7,0x7b,0x13,0x24,0xcc,0x95,0x5, 0xa7,0x88,0x18,0xe4,0x93,0xe6,0xc9,0x5d,0x99,0x25,0x6b,0x5d,0x5b,0x4c,0x42,0x19, 0x6c,0x1a,0x7f,0x50,0xb6,0x64,0xe3,0xff,0x0,0x1d,0xa9,0x22,0x9b,0xcb,0x55,0x1f, 0xd9,0xb7,0x3e,0x68,0xe3,0x88,0xb6,0x29,0xfc,0x7b,0x53,0xd2,0xea,0xec,0x4a,0x4, 0xba,0x7d,0xc4,0x44,0xf,0x97,0xfd,0x20,0x60,0xfe,0x0,0x9a,0x1b,0x4,0x87,0xc9, 0xa8,0xc6,0xf0,0x79,0x51,0xd8,0x5f,0xd,0xdc,0xc,0x5b,0x10,0x7,0xe6,0x5,0x40, 0x6f,0xe6,0x8f,0x11,0x9b,0x19,0x9c,0x1,0x83,0xca,0xae,0x3e,0xa3,0x9c,0x8f,0xad, 0x4c,0xb7,0x53,0xb4,0xb8,0x8a,0xd6,0x7,0x61,0xc9,0x26,0x50,0xb8,0xfd,0x29,0xd2, 0xcf,0x7c,0xf,0xfc,0xb2,0x49,0x3f,0x85,0x55,0x99,0xf8,0xfc,0xb9,0xa4,0xca,0xd8, 0x4b,0x79,0xaf,0x33,0xba,0xda,0xc5,0x76,0x9e,0xff,0x0,0x68,0x18,0x1e,0xd8,0x2, 0xa6,0x73,0xaa,0x0,0x0,0x5b,0x45,0x7,0x92,0x1d,0x99,0xbf,0xa0,0xa8,0x1a,0x4d, 0x44,0x26,0x4d,0xc5,0xac,0x79,0xe8,0xc,0x4,0x73,0xff,0x0,0x7d,0x55,0x75,0x8a, 0xee,0x4,0x2f,0x73,0xad,0x60,0x31,0xed,0x6f,0x80,0x3f,0x31,0x43,0x40,0xfc,0x89, 0x18,0x6a,0xcd,0x33,0x6f,0xbc,0x82,0xdc,0x1e,0x8a,0x13,0xe5,0x35,0x27,0xd8,0x6e, 0x40,0xdb,0x71,0x7c,0xc4,0x9e,0x7f,0x77,0x1a,0xaf,0xea,0x2a,0x29,0xa0,0x81,0xe2, 0xdd,0x36,0xab,0x29,0x4e,0xcd,0xe6,0x22,0x8f,0xe4,0x29,0xa5,0xf4,0x89,0xa2,0xb, 0x25,0xd4,0x8e,0x7,0x19,0x7b,0x82,0xd9,0xfd,0x69,0xa0,0x45,0x94,0xb1,0x77,0xf9, 0x5b,0x53,0xbd,0xfa,0x79,0x81,0x7f,0x50,0x1,0xfd,0x6a,0x37,0xb4,0xb2,0xf3,0x64, 0xd,0x74,0xcf,0x22,0x8c,0xb6,0xf9,0x19,0xbf,0x99,0xaa,0x2c,0xfa,0x30,0x62,0xb0, 0xc8,0x64,0xc0,0xe5,0xa,0x3b,0x1,0xf4,0xab,0x30,0xfd,0x8d,0x61,0x1e,0x55,0xae, 0xe0,0x7a,0x15,0x88,0x8f,0xe7,0xd6,0xa4,0x10,0xac,0xfa,0x3a,0xc4,0xb8,0xb8,0x89, 0x98,0xf5,0xd,0x96,0x3f,0xfd,0x6a,0x53,0x3e,0x9a,0xac,0x59,0x61,0x8e,0x61,0x8e, 0x71,0xf,0x3f,0xca,0x9a,0x27,0xf2,0x95,0xb6,0x59,0x4d,0xc7,0x47,0xf2,0xd5,0x7f, 0x5a,0x58,0x2e,0x2f,0xa4,0xc9,0x4d,0x3c,0x6f,0xff,0x0,0x9e,0x8d,0x20,0x39,0x1f, 0x95,0x0,0x89,0x85,0xcd,0xa4,0x71,0x86,0x87,0x4e,0x98,0x82,0x3b,0x5b,0x8f,0xd7, 0x34,0x82,0xe2,0x6f,0x23,0x7c,0x3a,0x74,0xd2,0x28,0xe8,0xbb,0x82,0xf,0xe7,0x9a, 0x89,0xce,0xa6,0xe3,0xcb,0x2,0x18,0x71,0xce,0x49,0x39,0xfc,0xea,0xc4,0x49,0x7c, 0xcc,0x4,0xd3,0x44,0x18,0x8c,0x87,0xd9,0x90,0x7f,0xe,0x29,0xdc,0x77,0x8,0x2e, 0x6f,0xe6,0x5d,0xdf,0x62,0x8e,0x3e,0x3a,0x49,0x39,0xc7,0xf2,0x34,0x8d,0x1e,0xa4, 0xf2,0xe7,0x6d,0xaa,0x28,0xe9,0xf3,0x16,0xfe,0x82,0x9c,0xd6,0xd7,0x5b,0x89,0x6b, 0xe0,0x17,0xd1,0x22,0x1f,0xca,0xa1,0xfb,0x13,0x4a,0xf8,0x93,0x51,0xb9,0x2c,0x3b, 0x2b,0x5,0x1f,0x90,0x14,0x34,0x84,0xc9,0x24,0xb5,0xd4,0x9d,0xc1,0x3a,0x84,0x28, 0x3b,0xaa,0xdb,0xff,0x0,0x52,0x6a,0xc5,0x84,0x12,0x7d,0xbe,0x3,0x25,0xe3,0x86, 0x59,0x54,0xe0,0x5,0x1,0xf9,0xe9,0x55,0x84,0x70,0x19,0x7c,0xb6,0x96,0x53,0x8f, 0xef,0x93,0xcf,0xe3,0x56,0xed,0x2d,0x6c,0xd2,0xf6,0x9,0x0,0xda,0x52,0x45,0x39, 0x6c,0xfa,0xfb,0xd3,0x82,0xf7,0x91,0x36,0xba,0x3c,0xc3,0xe0,0x1c,0x6f,0x35,0xb7, 0x8d,0xe2,0x8d,0x4b,0x48,0xf0,0xc6,0xaa,0xa3,0xa9,0x24,0x4a,0x0,0xaf,0x3b,0x3f, 0xa,0x3c,0x75,0xff,0x0,0x42,0xd5,0xef,0xfe,0x3b,0xfe,0x35,0xd5,0xe8,0x1e,0x11, 0xf8,0xab,0xe1,0x39,0xef,0x5f,0x40,0x10,0x5a,0x8b,0xb6,0x6,0x52,0x2e,0xad,0x9f, 0x76,0xd2,0x76,0xfd,0xe2,0x71,0xf7,0x8f,0xe7,0x5b,0xbe,0x67,0xc7,0x8f,0xf9,0xfe, 0x87,0xfe,0xfe,0xd9,0xd7,0xb3,0xcd,0x1e,0xe7,0x2d,0x99,0x3e,0x81,0xe1,0xed,0x5b, 0xc3,0x5f,0xb3,0xff,0x0,0x8b,0xac,0xf5,0x8b,0x19,0x6c,0xee,0x1d,0xe4,0x91,0x63, 0x93,0x19,0x2b,0xb2,0x31,0x9e,0xf,0xa8,0x3f,0x95,0x59,0xf8,0x7f,0x6f,0xa1,0x5d, 0x7e,0xcf,0xf7,0x70,0xf8,0x96,0xea,0x4b,0x6d,0x21,0xaf,0x1f,0xcf,0x96,0x32,0x41, 0x5f,0xde,0x26,0xdc,0x60,0x13,0xf7,0xb0,0x3a,0x56,0x1e,0xa9,0x63,0xf1,0xaf,0x58, 0xd3,0x2e,0x34,0xdd,0x42,0xe6,0x9,0xad,0x2e,0x13,0x64,0xb1,0x99,0xed,0x17,0x72, 0xfa,0x64,0x60,0xd6,0xed,0x97,0x84,0x75,0x7b,0x7f,0x80,0x7a,0x8f,0x86,0x25,0x4b, 0x65,0xd5,0xe6,0xb9,0xde,0x90,0x7d,0xae,0x2c,0x11,0xe6,0xa3,0x7d,0xed,0xd8,0xe8, 0xf,0x7a,0x39,0xa3,0xdc,0x2c,0xcf,0x3c,0xf0,0xef,0x84,0xfc,0x2d,0xe2,0x3f,0x8c, 0xd,0xa1,0x69,0xf7,0x37,0x37,0x1a,0x3,0xab,0x98,0x65,0x57,0xda,0xed,0xb6,0x2d, 0xdd,0x4a,0xff,0x0,0x7b,0x3d,0xaa,0xe7,0x85,0xfe,0x1f,0x68,0xba,0xbf,0xc6,0x1d, 0x67,0xc2,0xf7,0x4d,0x75,0xfd,0x9d,0x67,0xe7,0xf9,0x45,0x25,0x1,0xfe,0x46,0x50, 0x32,0x71,0xcf,0x4,0xf6,0xad,0xcf,0x85,0x3f,0xf,0x3c,0x49,0xe1,0xaf,0x1f,0xd9, 0x6a,0xba,0xad,0xad,0xbc,0x36,0x71,0xc7,0x2a,0xb4,0x82,0xf2,0x27,0xc1,0x64,0x20, 0x70,0xac,0x4f,0x52,0x2a,0xd,0x4f,0xc3,0x9e,0x3a,0xb0,0xf8,0x97,0xae,0x6b,0xde, 0x17,0x96,0xca,0x37,0xb9,0xb9,0x98,0x47,0x28,0xbd,0xb6,0x24,0xa3,0x36,0x71,0xb5, 0xdb,0x83,0xc0,0xea,0x33,0x4f,0x99,0x77,0xb,0x33,0x2e,0xc7,0xe1,0xee,0x8f,0xa1, 0x78,0x97,0x51,0x1e,0x3c,0x5b,0xed,0x2b,0x43,0x2d,0x22,0x69,0xf7,0x5,0xb9,0x95, 0x83,0xfc,0xa3,0x2a,0x18,0x9f,0x93,0x9e,0x82,0xbd,0x3e,0xf,0x80,0x5e,0x6,0xb8, 0x82,0x39,0xe2,0x97,0x53,0x68,0xe4,0x50,0xe8,0xdf,0x69,0x1c,0x82,0x32,0xf,0xdd, 0xae,0x96,0xf3,0xc2,0xfa,0x57,0x8c,0x3c,0x2d,0xa3,0xc1,0xe3,0x0,0x97,0x17,0x96, 0xf0,0xa3,0xcd,0xb6,0xe7,0x66,0x26,0x28,0x3,0x9c,0xa1,0x0,0xf3,0x9f,0x6a,0xc1, 0xf8,0x87,0xa8,0xf8,0x9e,0x18,0x74,0x8b,0x6f,0x0,0x6a,0xb6,0x49,0x1c,0x2a,0xf1, 0x5c,0xa9,0xb9,0xb7,0xcf,0x1,0x42,0xf,0xde,0x1e,0xbc,0x37,0x4f,0xc6,0x8e,0x65, 0xdc,0x2c,0xcc,0x1d,0x5f,0xe1,0xef,0xc2,0xaf,0x4,0x6a,0x96,0x6d,0xab,0x6a,0xf7, 0xf6,0x77,0x39,0x13,0xc2,0xaf,0x2b,0x30,0x6d,0xad,0xd7,0xe5,0x8c,0xf7,0x15,0x4b, 0xc6,0x9f,0x19,0xb5,0x59,0xbc,0x59,0x65,0xa7,0xf8,0xe,0xfa,0xda,0xfa,0xda,0xe2, 0x24,0x40,0xbf,0x66,0x25,0x9a,0x76,0x76,0x1b,0x46,0xfc,0x76,0xdb,0x5a,0x7e,0x1f, 0xf0,0x5d,0xdf,0x8b,0x56,0xe2,0xe7,0xe2,0xab,0x45,0x71,0x73,0x6,0xc4,0xb2,0x75, 0xbc,0x8d,0x0,0x43,0x92,0xc3,0xf7,0x24,0xe,0xb8,0xeb,0x57,0x75,0x6f,0x86,0x7e, 0xb,0xd1,0xf4,0xbb,0x8d,0x47,0xc3,0x62,0x8,0x75,0xcb,0x54,0xf3,0x6c,0x64,0x7d, 0x4b,0x85,0x99,0x79,0x42,0x77,0xb6,0xde,0xa3,0xbf,0x14,0x73,0x2e,0xe1,0x66,0x79, 0x5f,0x8d,0xfe,0x22,0x78,0xf9,0xed,0x2e,0xfc,0x33,0xe2,0x68,0xe1,0xb7,0x13,0xa2, 0x99,0x61,0x36,0xea,0xad,0xb7,0x21,0x87,0x20,0xfa,0x8a,0xcb,0xf8,0x47,0xb8,0xfc, 0x43,0xb4,0xa,0x48,0x3f,0x66,0xba,0xc6,0x3f,0xeb,0x83,0xd7,0xb0,0x78,0x6f,0xc0, 0x5a,0x7f,0x8c,0x34,0xe9,0x35,0x5f,0x88,0x46,0xb,0xdd,0x74,0xca,0x50,0xcb,0xd, 0xfa,0x81,0xe5,0x0,0x36,0xc,0x44,0xdb,0x7d,0x7d,0xeb,0x13,0x4b,0xf0,0x17,0xfc, 0x23,0x5f,0x17,0x26,0xd5,0x34,0xb8,0xed,0xa3,0xf0,0xdd,0xbc,0x32,0x88,0xdc,0x5f, 0x24,0x8c,0x33,0x6e,0x54,0xfc,0xa5,0x8b,0x9f,0x9c,0x91,0xd2,0xa6,0x52,0x56,0x7a, 0x82,0x47,0xa9,0xf8,0x19,0xa,0x25,0xf1,0x2c,0x49,0x62,0x84,0x82,0x3b,0xfc,0xd5, 0xd7,0x56,0xf,0x86,0xd8,0x32,0xdc,0x32,0x90,0x41,0x8,0x41,0x1d,0xc7,0x35,0xbd, 0x51,0x87,0x77,0xa6,0x81,0xab,0x32,0xa5,0xe5,0x97,0xda,0xda,0x33,0xe6,0x5,0x9, 0x9e,0xa,0xe7,0x39,0xc7,0xbf,0xb5,0x55,0x7d,0x14,0x3b,0x67,0xcf,0x23,0xfe,0x3, 0xff,0x0,0xd7,0xad,0x5a,0x2a,0xa5,0x4a,0x12,0x77,0x68,0x6a,0x4d,0x6c,0x64,0x8d, 0x13,0x3,0xfe,0x3e,0x33,0xff,0x0,0x0,0xff,0x0,0xeb,0xd3,0x86,0x8e,0x46,0x31, 0x72,0x78,0xff,0x0,0x67,0xff,0x0,0xaf,0x5a,0x94,0x54,0xfd,0x5e,0x9f,0x61,0xfb, 0x49,0x19,0x4d,0xa3,0x6e,0x4,0x79,0xeb,0xcf,0xfd,0x33,0xff,0x0,0xeb,0xd3,0x23, 0xd0,0xb6,0x64,0x35,0xc9,0x61,0xd8,0x6c,0xc7,0xf5,0xad,0x8a,0x28,0xf6,0x14,0xfb, 0x7,0xb4,0x91,0x94,0x9a,0x2a,0xc7,0x9c,0x4d,0xc9,0xf5,0x4f,0xfe,0xbd,0x2a,0xe9, 0x4,0x67,0x75,0xc6,0xec,0x8c,0x7d,0xcf,0xfe,0xbd,0x6a,0x51,0x47,0xb0,0xa7,0xd8, 0x39,0xe4,0x64,0x7f,0x61,0x26,0x72,0x25,0x0,0xfa,0xec,0xff,0x0,0xeb,0xd0,0xfa, 0x1e,0xfe,0xc,0xeb,0x8f,0x78,0xb3,0xfd,0x6b,0x5e,0x8a,0x3e,0xaf,0x4f,0xb0,0x7b, 0x49,0x19,0x6b,0xa3,0xb2,0x83,0x89,0xd4,0x1f,0x55,0x8b,0x1f,0xd6,0x95,0x74,0x92, 0xe,0x4d,0xc6,0x4f,0xae,0xcf,0xfe,0xbd,0x69,0xd1,0x4f,0xd8,0x53,0xec,0x1c,0xf2, 0x32,0xdf,0x47,0x2e,0x4e,0x2e,0x58,0x2,0x3f,0xbb,0xff,0x0,0xd7,0xa6,0x7f,0x61, 0x29,0x50,0x1e,0x7d,0xc7,0xd4,0xaf,0xff,0x0,0x5e,0xb5,0xe8,0xa5,0xf5,0x7a,0x7d, 0x83,0x9e,0x5d,0xcc,0x9f,0xec,0x4c,0x11,0xb6,0x75,0x3,0xd0,0xc7,0x9f,0xeb,0x49, 0xfd,0x86,0x3,0x96,0x59,0xf1,0x9e,0xdb,0x3f,0xfa,0xf5,0xaf,0x45,0x1f,0x57,0xa7, 0xd8,0x39,0xe4,0x65,0x1d,0x11,0x58,0xf3,0x37,0xfe,0x39,0xff,0x0,0xd7,0xa1,0x74, 0x44,0xa,0x47,0x9b,0x9c,0x8c,0x7d,0xdf,0xfe,0xbd,0x6a,0xd1,0x4b,0xea,0xd4,0xbb, 0x7,0x3c,0x8c,0x45,0xf0,0xdd,0xba,0x90,0x55,0xf9,0x7,0x3c,0x83,0xfe,0x35,0x67, 0xfb,0x27,0xb,0x81,0x3f,0xfe,0x39,0xff,0x0,0xd7,0xad,0x2a,0x28,0x58,0x7a,0x4b, 0xa0,0x73,0xc8,0xcc,0xfe,0xc8,0x39,0x7,0xcf,0x19,0xff,0x0,0x73,0xff,0x0,0xaf, 0x49,0xfd,0x8e,0xfb,0xc9,0xfb,0x51,0xc1,0xed,0xe5,0x8f,0xf1,0xad,0x4a,0x29,0xfd, 0x5e,0x9f,0x61,0x73,0xc8,0xcb,0x1a,0x30,0xd,0xbb,0xed,0xd,0x9f,0xf7,0x69,0xe, 0x8e,0xe7,0x3b,0x6e,0xb1,0x9f,0xf6,0x3a,0x7e,0xb5,0xab,0x45,0xb,0xf,0x49,0x74, 0x1f,0x3c,0x8c,0x98,0x74,0x43,0x11,0xc9,0xbb,0x91,0xfd,0x99,0x78,0xa9,0x3f,0xb2, 0x89,0x39,0xf3,0x87,0xbf,0xc9,0xff,0x0,0xd7,0xad,0x2a,0x28,0xf6,0x14,0xfb,0x7, 0x3c,0x8e,0x7f,0x51,0xf0,0xc0,0xbf,0x4d,0xa2,0xef,0xca,0xc9,0x1b,0x8f,0x97,0xbb, 0x38,0x20,0xfa,0xf1,0xd2,0xaa,0x5d,0xf8,0x2d,0xee,0xa2,0x81,0xe,0xaf,0x38,0xf2, 0xc6,0x1b,0x29,0xc3,0x1f,0x5c,0x2,0x31,0xce,0x6b,0xab,0xa2,0x9f,0xb0,0xa7,0xd8, 0x39,0xe4,0x63,0x69,0xfe,0x1f,0x4b,0xb,0x44,0x85,0x66,0xc,0xea,0x3e,0x67,0x11, 0xe3,0x71,0xf5,0xea,0x69,0xba,0x87,0x87,0x96,0xf9,0x40,0x37,0x1,0x8,0xe8,0x7c, 0xac,0x9f,0x7e,0xf5,0xb7,0x45,0x1e,0xc6,0x1d,0x85,0xcf,0x23,0xe,0xcf,0xc3,0x89, 0x65,0x60,0x96,0xb1,0xdc,0x12,0x0,0xf9,0x98,0xa7,0x2c,0x7b,0xf7,0xa0,0xf8,0x6a, 0x12,0x49,0x32,0x2,0x48,0xc1,0x25,0x9,0xfe,0xb5,0xb9,0x45,0x2f,0x61,0x4f,0xb0, 0x73,0xc8,0xc4,0x1a,0x3,0xa8,0xda,0xb7,0x63,0x6f,0x6d,0xd1,0x64,0x8f,0xd6,0x87, 0xf0,0xf9,0x64,0x2a,0xb7,0x7b,0x9,0xea,0x56,0x3f,0xfe,0xbd,0x6d,0xd1,0x47,0xd5, 0xe9,0xf6,0x1f,0xb4,0x97,0x73,0x93,0x8b,0xc0,0xf0,0xc7,0x74,0xb3,0xb5,0xc4,0x72, 0x32,0xe4,0x82,0xf0,0x64,0x82,0x7b,0x8f,0x9b,0xfa,0x56,0x82,0x78,0x71,0x63,0x0, 0x2d,0xce,0x7,0x24,0xfc,0x9d,0x4f,0xaf,0x5a,0xdc,0xa2,0x9f,0xb0,0xa7,0xd8,0x1d, 0x49,0x33,0xe,0x7f,0xf,0x3c,0xe8,0x47,0xdb,0xe4,0x56,0xc7,0xca,0x42,0x74,0x3e, 0xb8,0xcf,0x5a,0x4d,0x1f,0xc3,0x51,0x68,0xf6,0xa6,0x24,0x9d,0xa5,0x76,0x7d,0xef, 0x2b,0xaf,0x2c,0x7f,0x3f,0x4e,0x2b,0x76,0x8a,0x6a,0x94,0x12,0xb5,0x85,0xcf,0x23, 0x1e,0xf7,0x40,0x8e,0xfb,0x60,0x92,0x79,0x15,0x17,0x3f,0x2a,0x7c,0xbf,0xa8,0x39, 0xef,0x59,0xa3,0xc1,0x68,0x90,0x3d,0xac,0x77,0x31,0xad,0x9b,0x7f,0xcb,0x13,0x13, 0x1c,0x7e,0x3b,0xfa,0xd7,0x55,0x45,0x2f,0x63,0xe,0xc1,0xcf,0x23,0x9a,0x87,0xc1, 0xd6,0xf0,0x3c,0x45,0x6e,0x9,0x58,0x86,0x15,0x5a,0x25,0xc0,0x1e,0xd8,0xe6,0x99, 0x69,0xe0,0xd8,0xec,0xf5,0x79,0xaf,0xe3,0xbc,0x60,0x25,0xdd,0x98,0xc2,0x60,0x7c, 0xdb,0x72,0x73,0xbb,0xfd,0x9f,0xd6,0xba,0x8a,0x28,0xf6,0x14,0xfb,0x7,0x3c,0x8c, 0xbf,0xec,0x76,0xe7,0xfd,0x2e,0x4e,0x7b,0x6d,0x18,0xa8,0xc6,0x85,0xd4,0xfd,0xa9, 0xf2,0x7b,0x85,0xc5,0x6c,0x51,0x49,0xe1,0xe9,0xbe,0x83,0xe7,0x91,0x90,0xba,0x10, 0x3,0x99,0xf2,0x73,0x9c,0xec,0xe7,0xf9,0xd0,0x34,0x8,0x97,0x18,0x94,0xf1,0xd3, 0xe5,0xff,0x0,0xeb,0xd6,0xbd,0x14,0x7d,0x5e,0x9f,0x60,0xf6,0x92,0xee,0x64,0xff, 0x0,0x61,0x47,0x83,0x99,0x41,0xcf,0xaa,0x7f,0xf5,0xea,0x1,0xe1,0xcd,0xae,0x59, 0x2f,0xa4,0x5c,0xff,0x0,0xe,0xd0,0x40,0xad,0xda,0x29,0x7d,0x5a,0x97,0x60,0xf6, 0x92,0xee,0x64,0x1d,0xf,0x72,0xe1,0xae,0x33,0xef,0xe5,0xff,0x0,0xf5,0xe9,0x7f, 0xb1,0x3a,0x7e,0xff,0x0,0xa7,0xfd,0x33,0x1f,0xe3,0x5a,0xd4,0x53,0xfa,0xbd,0x3e, 0xc1,0xed,0x25,0xdc,0xc7,0x3a,0x1f,0x5d,0xb7,0x38,0xff,0x0,0x80,0x9f,0xfe,0x2a, 0x99,0xfd,0x83,0x20,0x1c,0x5d,0xa7,0xe3,0x11,0x3f,0xfb,0x35,0x6d,0xd1,0x4b,0xea, 0xd4,0xbb,0x7,0xb4,0x97,0x73,0x10,0xe8,0x32,0x91,0xc5,0xf6,0xf,0xb4,0x5f,0xfd, 0x7a,0x6f,0xfc,0x23,0x9c,0x36,0x2e,0xc8,0x66,0xea,0x44,0x78,0xfe,0x46,0xb7,0x68, 0xa3,0xea,0xd4,0xbb,0x7,0xb4,0x97,0x73,0x9b,0x3e,0x13,0xc,0xca,0xcf,0x7f,0x2b, 0x10,0x7a,0x6d,0xe3,0xf2,0xcd,0x4c,0x3c,0x2f,0x2,0xf2,0x25,0xe7,0xfd,0xcf,0xfe, 0xbd,0x6f,0x51,0x47,0xd5,0xa9,0x76,0x1f,0xb5,0x9f,0x73,0x9d,0x3e,0x14,0x8c,0x8e, 0x2e,0x88,0xc1,0xc8,0xfd,0xd0,0x35,0x2c,0x1e,0x1c,0xf2,0x50,0xa9,0xb8,0x47,0xc9, 0xce,0x5a,0x1f,0xfe,0xca,0xb7,0x68,0xa3,0xea,0xd4,0xbb,0xb,0xda,0x4b,0xb9,0x8c, 0x74,0x1c,0x8f,0x96,0xe1,0x53,0xfd,0xd8,0xb1,0xfd,0x6a,0x4,0xf0,0xce,0xdf,0xf9, 0x7d,0x6e,0x98,0xc7,0x97,0xc7,0xe5,0x9a,0xe8,0x28,0xa3,0xea,0xb4,0xbb,0x7e,0x61, 0xed,0x25,0xdc,0xc0,0x6f,0xd,0xb6,0xdd,0xa9,0x78,0x14,0x7f,0xd7,0x23,0xfd,0x18, 0x52,0x37,0x87,0x6e,0x1b,0xfe,0x5f,0x60,0xfa,0x9b,0x52,0x4f,0xe7,0xbe,0xba,0xa, 0x28,0xfa,0xb5,0x2e,0xc3,0xf6,0xb3,0xee,0x60,0x7f,0xc2,0x37,0x21,0x40,0xad,0x7e, 0x7d,0x4e,0x21,0x18,0xfd,0x4d,0x1f,0xf0,0x8c,0xe4,0x60,0xdf,0x49,0x8e,0xf8,0x40, 0x3f,0x95,0x6f,0xd1,0x47,0xd5,0xa9,0x76,0xf,0x6b,0x3e,0xe7,0x39,0xff,0x0,0x8, 0xa0,0xff,0x0,0x9f,0xf9,0x8f,0x3f,0xde,0x71,0xc7,0xd0,0x30,0x1f,0xa5,0x3,0xc2, 0x50,0xe4,0x97,0xb8,0x2e,0x7b,0x6e,0x4e,0x9f,0xaf,0x35,0xd1,0xd1,0x47,0xd5,0xa9, 0x76,0x17,0xb4,0x97,0x73,0x9f,0x4f,0xb,0x42,0x99,0xfd,0xe4,0x7c,0xfa,0x42,0x7, 0xf5,0xa7,0x41,0xe1,0x78,0x20,0x90,0xb8,0x9d,0x98,0xf6,0xde,0xb9,0xc5,0x6f,0x51, 0x47,0xd5,0xa9,0x76,0xf,0x69,0x2e,0xe6,0x32,0x68,0x24,0x6e,0xdd,0x72,0xa4,0x93, 0x91,0x88,0x80,0xc7,0xeb,0x4d,0x7f,0xf,0xb3,0x82,0x3e,0xd6,0x6,0x7a,0xe2,0x2c, 0x9f,0xd4,0xd6,0xdd,0x14,0x7d,0x5e,0x97,0x60,0xf6,0x92,0xee,0x60,0x9f,0xf,0x4c, 0x22,0x8,0x97,0xb1,0xae,0xf,0x4,0xdb,0xe7,0x1f,0xf8,0xf6,0x2a,0x27,0xf0,0xd5, 0xc4,0x84,0x17,0xd4,0x63,0x6c,0x7a,0xdb,0xff,0x0,0xf6,0x58,0xae,0x8e,0x8a,0x7f, 0x57,0xa7,0xd8,0x3d,0xa4,0xbb,0x9c,0xd1,0xf0,0xa4,0x8c,0x31,0xfd,0xab,0x32,0x2f, 0xa4,0x51,0x22,0xd0,0x7c,0x22,0x19,0xb2,0xda,0xa5,0xe1,0xf6,0xdd,0x80,0x6b,0xa5, 0xa2,0x97,0xd5,0xa9,0x76,0xf,0x69,0x2e,0xe7,0x32,0xde,0xf,0x89,0x90,0x86,0xbb, 0x76,0x38,0xc0,0x2e,0x9,0xc7,0xfe,0x3d,0x52,0xc1,0xe1,0x2b,0x48,0x23,0xa,0x9e, 0x5e,0x71,0xc9,0xf2,0xb3,0x9f,0xcc,0x9a,0xe8,0x68,0xa3,0xea,0xf4,0xbb,0x7,0xb4, 0x97,0x73,0x2,0x4f,0xb,0xc5,0x23,0x64,0xcb,0x16,0xde,0xc0,0xc0,0xe,0x3f,0x5a, 0xad,0x71,0xe0,0xd5,0x9a,0xe6,0xde,0x75,0xbc,0x8,0xf0,0xb0,0x6c,0xf9,0x3d,0x47, 0xa7,0x5f,0x4c,0x8f,0xc6,0xba,0x8a,0x28,0xfa,0xb5,0x2e,0xc1,0xed,0x25,0xdc,0xc6, 0x3a,0x8,0x75,0xda,0xf3,0xa3,0xf,0x43,0x17,0xff,0x0,0x5e,0xa9,0x2f,0x84,0x12, 0x37,0xcc,0x57,0x7e,0x52,0x92,0x49,0x55,0x43,0x8e,0x7d,0xb7,0x71,0x5d,0x35,0x14, 0x7d,0x5a,0x97,0x60,0xf6,0x92,0xee,0x73,0xab,0xe1,0x89,0x63,0x5c,0x25,0xfa,0x67, 0x3d,0x5a,0x2,0xdf,0xfb,0x35,0x35,0xfc,0x37,0x7d,0xb7,0x6c,0x5a,0xac,0x51,0xc, 0xe4,0x91,0x69,0xcf,0xfe,0x87,0x5d,0x25,0x14,0x7d,0x5a,0x97,0x6f,0xcc,0x7e,0xd2, 0x5d,0xce,0x59,0x7c,0x1d,0x82,0x18,0xea,0x1f,0x3e,0x72,0x59,0x6d,0x90,0x12,0x69, 0xa7,0xc1,0x67,0xce,0x69,0x46,0xa9,0x2e,0xe6,0x1c,0x93,0xa,0xe7,0xf3,0x18,0xae, 0xae,0x8a,0x3e,0xad,0x4b,0xb0,0xbd,0xa4,0xbb,0x9c,0xcc,0x5e,0xe,0x44,0xfb,0xfa, 0x8d,0xd3,0x1f,0x67,0x65,0x1f,0x90,0x6a,0x47,0xf0,0x5d,0xb3,0xf5,0xb9,0x91,0xff, 0x0,0xeb,0xab,0xc8,0xe3,0xf5,0x7a,0xe9,0xe8,0xa3,0xea,0xd4,0xbb,0xf,0xda,0xcf, 0xb9,0xcc,0x8f,0x6,0x59,0xa0,0xf9,0x1d,0x73,0xea,0xc9,0xbb,0xf9,0x9a,0x7a,0x78, 0x4e,0x28,0xd5,0x82,0x4d,0x1a,0x96,0xef,0xf6,0x71,0xfe,0x35,0xd1,0xd1,0x47,0xd5, 0xa9,0x76,0xf,0x6b,0x2e,0xe6,0xc,0x7e,0x1b,0x9,0x19,0x46,0xb8,0x47,0x53,0xeb, 0xe,0x31,0xf9,0x1a,0x80,0xf8,0x48,0xef,0x2c,0x9a,0x83,0x44,0x7b,0x79,0x51,0xed, 0xff,0x0,0xd9,0xb9,0xae,0x96,0x8a,0x3e,0xad,0x4b,0xb0,0xbd,0xa4,0xbb,0x9c,0xf4, 0x7e,0x1b,0x9a,0x35,0xff,0x0,0x8f,0xf0,0xc7,0xfb,0xcd,0xe,0x4f,0xfe,0x85,0x51, 0xb7,0x86,0xaf,0x58,0x6d,0xfe,0xd2,0x80,0x2f,0xa7,0xd9,0x5b,0xff,0x0,0x8e,0x57, 0x4b,0x45,0x1f,0x56,0xa5,0xd8,0x3d,0xa4,0xbb,0x9c,0xb8,0xf0,0x9d,0xde,0x2,0xb6, 0xb7,0x2e,0xcf,0xee,0x2c,0xb,0x8f,0xd7,0x26,0x9c,0xde,0x11,0x76,0x52,0xa7,0x58, 0xbb,0x3,0xa7,0xca,0xaa,0x8,0xfd,0x2b,0xa6,0xa2,0x8f,0xab,0x52,0xec,0x1e,0xd2, 0x4f,0xa9,0xca,0x8f,0x3,0xdb,0x90,0x4,0x9a,0x85,0xe4,0xa0,0x7f,0x7a,0x56,0xe7, 0xf2,0x6a,0x53,0xe0,0x7b,0x1e,0x48,0x7d,0xc7,0xb7,0x98,0x19,0xc7,0xe4,0x5a,0xba, 0x9a,0x28,0xfa,0xbd,0x2e,0xc3,0xf6,0xb3,0xee,0x73,0x43,0xc1,0xd6,0xb8,0x0,0x98, 0xa,0x8f,0xe1,0xfb,0x38,0xc7,0xe5,0x9a,0x95,0x3c,0x2b,0x6d,0x11,0x26,0x17,0x48, 0xf3,0xd9,0x62,0x0,0x57,0x41,0x45,0x1f,0x56,0xa5,0xd8,0x5e,0xd2,0x5d,0xcc,0x37, 0xf0,0xee,0xf5,0xc7,0xda,0xca,0x91,0xd0,0xac,0x7d,0x3f,0x5a,0x84,0x78,0x5b,0x6b, 0x16,0x5b,0xe6,0xc,0x7a,0xfc,0x9c,0x7e,0x59,0xae,0x8a,0x8a,0x3e,0xad,0x4b,0xb7, 0xe6,0x1e,0xd2,0x4b,0xa9,0xcf,0x9f,0xc,0x64,0x73,0x78,0x3f,0x8,0xbf,0xc5,0xa9, 0xe3,0xc3,0x98,0x18,0xfb,0x50,0x3e,0xfe,0x50,0xff,0x0,0x1a,0xdd,0xa2,0x8f,0xab, 0x52,0xed,0xf9,0x8f,0xda,0xcb,0xb9,0x85,0xff,0x0,0x8,0xe7,0xcb,0x83,0x76,0xc4, 0x7a,0x6c,0xff,0x0,0xeb,0xd3,0x3f,0xe1,0x17,0x8f,0x39,0x17,0x24,0x1f,0xf7,0x3f, 0xfa,0xf5,0xd0,0x51,0x47,0xd5,0xa9,0x76,0x17,0xb4,0x91,0x83,0xff,0x0,0x8,0xd8, 0xff,0x0,0x9f,0xaf,0xc7,0xcb,0xe7,0xf9,0xd2,0xa7,0x87,0xa,0xc,0x1b,0xd2,0xdf, 0xf6,0xcf,0xff,0x0,0xaf,0x5b,0xb4,0x51,0xf5,0x6a,0x5d,0x83,0xda,0x4b,0xb9,0x8b, 0xff,0x0,0x8,0xfa,0x95,0xc1,0x9c,0x1f,0x7f,0x2f,0xff,0x0,0xaf,0x4b,0xfd,0x83, 0x84,0xa,0xb7,0x44,0x7b,0xec,0xff,0x0,0xeb,0xd6,0xcd,0x14,0x7d,0x5a,0x97,0x60, 0xf6,0x92,0xee,0x62,0xff,0x0,0x60,0xb0,0xe9,0x74,0xb9,0xf7,0x8b,0x3f,0xd6,0x99, 0xff,0x0,0x8,0xe1,0x24,0x97,0xbc,0x2d,0xff,0x0,0x6c,0xf1,0x8f,0xd6,0xb7,0x68, 0xa3,0xea,0xd4,0xbb,0xf,0xda,0xcf,0xb9,0x86,0x3c,0x3d,0x80,0x40,0xbb,0xc7,0xfd, 0xb3,0xff,0x0,0xeb,0xd4,0x4f,0xe1,0x54,0x71,0xf3,0x5e,0x39,0xff,0x0,0x80,0xa, 0xe8,0x68,0xa3,0xea,0xd4,0xbb,0x7,0xb5,0x9f,0x73,0x9d,0x4f,0xa,0x22,0xb0,0xdd, 0x75,0xb9,0x7b,0x8f,0x2f,0x19,0xfd,0x6a,0x8c,0xfe,0x3,0x53,0xa8,0xad,0xed,0xa6, 0xa4,0xf6,0xf2,0x60,0x6f,0x5f,0x2b,0x7a,0xb1,0x1d,0xe,0x37,0x71,0xc5,0x76,0x14, 0x53,0x54,0x29,0xad,0x90,0x9d,0x49,0x3d,0xcc,0x24,0xf0,0xfc,0xea,0x0,0xfe,0xd1, 0x27,0xfe,0xd9,0x7f,0xf5,0xeb,0x29,0x3c,0x4,0xab,0x70,0xd2,0xb6,0xa0,0xad,0xb9, 0xd9,0x8a,0x9b,0x7e,0x39,0x3f,0xef,0x57,0x65,0x45,0x3f,0x63,0xe,0xc2,0xe7,0x91, 0xce,0x5b,0x78,0x57,0xc9,0xc2,0xbd,0xe7,0x99,0x1a,0xfd,0xd5,0x31,0x63,0x1f,0x8e, 0x6a,0xcc,0xbe,0x1d,0x8a,0x68,0xca,0x49,0x22,0xb2,0x91,0x82,0x1a,0x30,0x7f,0xad, 0x6d,0x51,0x4b,0xea,0xf4,0xfb,0x3,0x93,0x67,0x1c,0xbe,0x4,0x36,0xf3,0x16,0xb3, 0xd5,0x1e,0xde,0x32,0x41,0xd8,0x21,0xcf,0xd7,0x9d,0xd4,0xf6,0xf0,0x32,0x34,0xad, 0x21,0xbf,0xcb,0x30,0xc1,0x26,0x1e,0xbf,0xf8,0xf5,0x75,0xd4,0x53,0xf6,0x14,0xfb, 0x7,0x33,0x31,0xf4,0x2d,0x8,0xe8,0x82,0xe1,0x7e,0xd6,0xd3,0xa4,0xa5,0x4a,0xab, 0x2e,0x36,0x63,0x39,0xc7,0x3e,0xff,0x0,0xa5,0x6c,0x51,0x45,0x69,0x18,0xa8,0xab, 0x22,0x5b,0xb9,0xff,0xd9, }; static const unsigned char qt_resource_name[] = { // new 0x0,0x3, 0x0,0x0,0x74,0xc7, 0x0,0x6e, 0x0,0x65,0x0,0x77, // prefix1 0x0,0x7, 0x7,0x8b,0xd0,0x51, 0x0,0x70, 0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x78,0x0,0x31, // backgrand.jpeg 0x0,0xe, 0xb,0x36,0xdd,0xb7, 0x0,0x62, 0x0,0x61,0x0,0x63,0x0,0x6b,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x2e,0x0,0x6a,0x0,0x70,0x0,0x65,0x0,0x67, }; static const unsigned char qt_resource_struct[] = { // : 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/new 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/new/prefix1 0x0,0x0,0x0,0xc,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/new/prefix1/backgrand.jpeg 0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x6e,0x2e,0xcc,0xa0,0x83, }; #ifdef QT_NAMESPACE # define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name # define QT_RCC_MANGLE_NAMESPACE0(x) x # define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b # define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b) # define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \ QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE)) #else # define QT_RCC_PREPEND_NAMESPACE(name) name # define QT_RCC_MANGLE_NAMESPACE(name) name #endif #ifdef QT_NAMESPACE namespace QT_NAMESPACE { #endif bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); #ifdef QT_NAMESPACE } #endif int QT_RCC_MANGLE_NAMESPACE(qInitResources_image)(); int QT_RCC_MANGLE_NAMESPACE(qInitResources_image)() { int version = 3; QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData) (version, qt_resource_struct, qt_resource_name, qt_resource_data); return 1; } int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_image)(); int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_image)() { int version = 3; QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData) (version, qt_resource_struct, qt_resource_name, qt_resource_data); return 1; } namespace { struct initializer { initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_image)(); } ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_image)(); } } dummy; }
[ "hukunlun@buaa.edu.cn" ]
hukunlun@buaa.edu.cn
cd33e1a7c03dc313e438b05134764735bc92d22e
84004dea4f3f618a3429cc24e82928dc7f35de79
/include/eosiock/utils.hpp
909d0f54ad2c982ec84c4bd8e53e7afba1d14f28
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
Shinkay3/eosio.ck
aaff1ef2692647b2d8d624d1a0e9a7eef6961f1a
8264037b35b1e8de1aebb8fa4dc1089b2063bcc2
refs/heads/master
2023-08-14T21:21:02.894417
2021-10-06T12:13:23
2021-10-06T12:13:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,808
hpp
// Copyright © 2021 ZeroPass <zeropass@pm.me> // Author: Crt Vavros #pragma once #include <cstdint> #include <string_view> #include <eosio/eosio.hpp> #include <eosio/rope.hpp> #include <eosio/string.hpp> #include "types.hpp" namespace eosiock { inline byte_t from_hex( char c ) { if( c >= '0' && c <= '9' ) return byte_t(c - '0'); if( c >= 'a' && c <= 'f' ) return byte_t(c - 'a' + 10); if( c >= 'A' && c <= 'F' ) return byte_t(c - 'A' + 10); eosio::check( false, eosio::rope("Invalid hex character '" + eosio::rope(std::string_view(&c, 1)) + "'").c_str() ); return 0; } [[maybe_unused]] static size_t from_hex( const char* hex_str, size_t hex_str_len, byte_t* out_data, size_t out_data_len ) { if( hex_str_len == 0 ) { return 0; } eosio::check( hex_str != nullptr && hex_str_len % 2 == 0, "Invalid hex string" ); if ( out_data == nullptr || out_data_len == 0) { return hex_str_len / 2; // return required out data size } // from eosio/fc auto i = hex_str; auto i_end = hex_str + hex_str_len; byte_t* out_pos = (byte_t*)out_data; byte_t* out_end = out_pos + out_data_len; while ( i != i_end && out_end != out_pos ) { *out_pos = byte_t( from_hex( *i ) << 4 ); ++i; if( i != i_end ) { *out_pos |= from_hex( *i ); ++i; } ++out_pos; } return size_t(out_pos - (byte_t*)out_data); } inline size_t from_hex( const eosio::string& hex_str, byte_t* out_data, size_t out_data_len ) { eosio::check( hex_str.size() % 2 == 0, "invalid hex string length" ); return from_hex( hex_str.data(), hex_str.size(), out_data, out_data_len ); } inline size_t from_hex( const std::string_view& hex_str, byte_t* out_data, size_t out_data_len ) { eosio::check( hex_str.size() % 2 == 0, "invalid hex string length" ); return from_hex( hex_str.data(), hex_str.size(), out_data, out_data_len ); } inline bytes from_hex( const char* hex_str, size_t hex_str_len ) { bytes r( from_hex( hex_str, hex_str_len, nullptr, 0 )); eosio::check( from_hex( hex_str, hex_str_len, r.data(), r.size() ) == r.size(), "failed to parse hex string"); return r; } inline bytes from_hex( const eosio::string& hex_str ) { return from_hex( hex_str.data(), hex_str.size() ); } inline bytes from_hex( const std::string_view& hex_str ) { return from_hex( hex_str.data(), hex_str.size() ); } inline bytes operator""_hex(const char* hex_str, std::size_t len) { return from_hex( std::string_view{ hex_str, len }); } }
[ "smlu@s5.net" ]
smlu@s5.net
984cea32194150bd4a5bbb101078b5f7c4a97de3
26171021868d77253f7ef94613418f235b524d2f
/Practica1/Practica1/main_prac5.cpp
7667f09bad3c1de4b1b9315a1a9bfe8b395b6411
[]
no_license
hector19D/Practica-1
6dc7632487c5603c1cde8abd16263bad5be96cb9
f2a0ec403e0f760c12ba13cefd1f1879d2924075
refs/heads/master
2021-01-22T18:24:42.048378
2017-11-03T04:40:07
2017-11-03T04:40:07
100,757,969
0
0
null
null
null
null
ISO-8859-1
C++
false
false
14,272
cpp
//Semestre 2018 - 1 //************************************************************// //************************************************************// //************ Alumno (s): Lorenzo Cruz Hector Eduardo *******// //************* ******// //************* ******// //************************************************************// #include "Main.h" float posX = 0, posY = 2.5, posZ = -3.5, rotRodIzq = 0; #define MAX_FRAMES 60 int i_max_steps = 90; int i_curr_steps = 0; float transZ = -5.0f; float transX = 0.0f; float angleX = 0.0f; float angleY = 0.0f; int screenW = 0.0; int screenH = 0.0; float angHombro = 0.0; float angCodo = 90.0; float angMano = 0.0; float angPulgar1 = 0.0; float angPulgar2 = 0.0; float angIndice1 = 0.0; float angIndice2 = 0.0; float angIndice3 = 0.0; float angMedio1 = 0.0; float angMedio2 = 0.0; float angMedio3 = 0.0; float angAnular1 = 0.0; float angAnular2 = 0.0; float angAnular3 = 0.0; float angMeñique1 = 0.0; float angMeñique2 = 0.0; float angMeñique3 = 0.0; GLfloat Position[]= { 0.0f, 3.0f, 0.0f, 1.0f }; // Light Position GLfloat Position2[]= { 0.0f, 0.0f, -5.0f, 1.0f }; // Light Position typedef struct _frame { //Variables para GUARDAR Key Frames float posX; //Variable para PosicionX float posY; //Variable para PosicionY float posZ; //Variable para PosicionZ float incX; //Variable para IncrementoX float incY; //Variable para IncrementoY float incZ; //Variable para IncrementoZ float rotRodIzq; float rotInc; float giroMonito; float giroMonitoInc; float giroBrazoIzq; float giroBrazoIzqInc; float giroBrazoDerInc; float giroBrazoDer; float rotRodDer; float rotRodDerInc; float giroCabezaInc; float giroCabeza; float giroCinturaInc; float giroCintura; }FRAME; FRAME KeyFrame[MAX_FRAMES]; int FrameIndex = 0; //introducir datos bool play = false; int playIndex = 0; int frame = 0, time, timebase = 0; char s[30]; void saveFrame(void) { printf("frameindex %d\n", FrameIndex); KeyFrame[FrameIndex].posX = posX; KeyFrame[FrameIndex].posY = posY; KeyFrame[FrameIndex].posZ = posZ; KeyFrame[FrameIndex].rotRodIzq = rotRodIzq; KeyFrame[FrameIndex].giroMonito = giroMonito; KeyFrame[FrameIndex].giroBrazoIzq = giroBrazoIzq; KeyFrame[FrameIndex].giroBrazoDer = giroBrazoDer; KeyFrame[FrameIndex].rotRodDer = rotRodDer; KeyFrame[FrameIndex].giroCabeza = giroCabeza; KeyFrame[FrameIndex].giroCintura = giroCintura; FrameIndex++; } void interpolation(void) { KeyFrame[playIndex].incX = (KeyFrame[playIndex + 1].posX - KeyFrame[playIndex].posX) / i_max_steps; KeyFrame[playIndex].incY = (KeyFrame[playIndex + 1].posY - KeyFrame[playIndex].posY) / i_max_steps; KeyFrame[playIndex].incZ = (KeyFrame[playIndex + 1].posZ - KeyFrame[playIndex].posZ) / i_max_steps; KeyFrame[playIndex].rotInc = (KeyFrame[playIndex + 1].rotRodIzq - KeyFrame[playIndex].rotRodIzq) / i_max_steps; KeyFrame[playIndex].giroMonitoInc = (KeyFrame[playIndex + 1].giroMonito - KeyFrame[playIndex].giroMonito) / i_max_steps; KeyFrame[playIndex].giroBrazoIzqInc = (KeyFrame[playIndex + 1].giroBrazoIzq - KeyFrame[playIndex].giroBrazoIzq) / i_max_steps; KeyFrame[playIndex].giroBrazoDerInc = (KeyFrame[playIndex + 1].giroBrazoDer - KeyFrame[playIndex].giroBrazoDer) / i_max_steps; KeyFrame[playIndex].rotRodDerInc = (KeyFrame[playIndex + 1].rotRodDer - KeyFrame[playIndex].rotRodDer) / i_max_steps; KeyFrame[playIndex].giroCabezaInc = (KeyFrame[playIndex + 1].giroCabeza - KeyFrame[playIndex].giroCabeza) / i_max_steps; KeyFrame[playIndex].giroCinturaInc = (KeyFrame[playIndex + 1].giroCintura - KeyFrame[playIndex].giroCintura) / i_max_steps; } void InitGL ( void ) // Inicializamos parametros { glShadeModel(GL_SMOOTH); // Habilitamos Smooth Shading glClearColor(0.0f, 0.0f, 0.0f, 0.0f); // Negro de fondo glClearDepth(1.0f); // Configuramos Depth Buffer glEnable(GL_DEPTH_TEST); // Habilitamos Depth Testing //Configuracion luz glLightfv(GL_LIGHT0, GL_POSITION, Position); glLightfv(GL_LIGHT0, GL_SPOT_DIRECTION, Position2); glEnable(GL_LIGHTING); glEnable(GL_LIGHT0); glDepthFunc(GL_LEQUAL); // Tipo de Depth Testing a realizar glEnable ( GL_COLOR_MATERIAL ); glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST); } void prisma(void) { GLfloat vertice [8][3] = { {0.5 ,-0.5, 0.5}, //Coordenadas Vértice 0 V0 {-0.5 ,-0.5, 0.5}, //Coordenadas Vértice 1 V1 {-0.5 ,-0.5, -0.5}, //Coordenadas Vértice 2 V2 {0.5 ,-0.5, -0.5}, //Coordenadas Vértice 3 V3 {0.5 ,0.5, 0.5}, //Coordenadas Vértice 4 V4 {0.5 ,0.5, -0.5}, //Coordenadas Vértice 5 V5 {-0.5 ,0.5, -0.5}, //Coordenadas Vértice 6 V6 {-0.5 ,0.5, 0.5}, //Coordenadas Vértice 7 V7 }; glBegin(GL_POLYGON); //Front glNormal3f( 0.0f, 0.0f, 1.0f); glVertex3fv(vertice[0]); glVertex3fv(vertice[4]); glVertex3fv(vertice[7]); glVertex3fv(vertice[1]); glEnd(); glBegin(GL_POLYGON); //Right glNormal3f( 1.0f, 0.0f, 0.0f); glVertex3fv(vertice[0]); glVertex3fv(vertice[3]); glVertex3fv(vertice[5]); glVertex3fv(vertice[4]); glEnd(); glBegin(GL_POLYGON); //Back glNormal3f( 0.0f, 0.0f, -1.0f); glVertex3fv(vertice[6]); glVertex3fv(vertice[5]); glVertex3fv(vertice[3]); glVertex3fv(vertice[2]); glEnd(); glBegin(GL_POLYGON); //Left glNormal3f( -1.0f, 0.0f, 0.0f); glVertex3fv(vertice[1]); glVertex3fv(vertice[7]); glVertex3fv(vertice[6]); glVertex3fv(vertice[2]); glEnd(); glBegin(GL_POLYGON); //Bottom glNormal3f( 0.0f, -1.0f, 0.0f); glVertex3fv(vertice[0]); glVertex3fv(vertice[1]); glVertex3fv(vertice[2]); glVertex3fv(vertice[3]); glEnd(); glBegin(GL_POLYGON); //Top glNormal3f( 0.0f, 1.0f, 0.0f); glVertex3fv(vertice[4]); glVertex3fv(vertice[5]); glVertex3fv(vertice[6]); glVertex3fv(vertice[7]); glEnd(); } void display ( void ) // Creamos la funcion donde se dibuja { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Limiamos pantalla y Depth Buffer //glMatrixMode(GL_MODELVIEW); glLoadIdentity(); glTranslatef(transX, 0.0f, transZ); glRotatef(angleY, 0.0, 1.0, 0.0); glRotatef(angleX, 1.0, 0.0, 0.0); //Poner Código Aquí. //Brazo detallado glPushMatrix(); glRotatef(angHombro,0.0,0.0,1.0); //hombro glPushMatrix(); glColor3f(0.0,1.0,0.0); glScalef(0.5,0.5,1); prisma(); glPopMatrix(); //bicep glTranslatef(0.0, -0.75, 0.0); glPushMatrix(); glColor3f(1.0, 0.0, 0.0); glScalef(0.5,1.0,1.0); prisma(); glPopMatrix(); //codo glTranslatef(0.0,-0.75,0.0); glRotatef(angCodo,0.0,0.0,1.0); glPushMatrix(); glColor3f(0.0,0.0,1.0); glScalef(0.5,0.5,1.0); prisma(); glPopMatrix(); glTranslatef(0.0,-0.75,0.0); //Antebrazo glPushMatrix(); glColor3f(0.5,0.5,0.5); glScalef(0.5,1.0,1.0); prisma(); glPopMatrix(); glTranslatef(0.0, -0.75, 0.0); glRotatef(angMano,0.0,0.0,1.0); //Mano glPushMatrix(); glColor3f(1.0, 0.0, 1.0); glScalef(0.5, 0.5, 1.0); prisma(); glPopMatrix(); //Pulgar glPushMatrix(); glTranslatef(0.25, 0.0, 0.2); glRotatef(angPulgar1, 0.0, 0.0, 1.0); glTranslatef(0.1, 0.0, 0.0); glColor3f(0.0, 1.0, 1.0); glPushMatrix(); glScalef(0.2, 0.1, 0.5); prisma(); glPopMatrix(); glTranslatef(0.1,0.0,0.0); glRotatef(angPulgar2,0.0,0.0,1.0); glTranslatef(0.1,0.0,0.0); glColor3f(1.0, 1.0, 0.0); glScalef(0.2, 0.1, 0.5); prisma(); glPopMatrix(); //Indice glPushMatrix(); glTranslatef(0.18, -0.25, 0.2); glRotatef(angIndice1, 1.0, 0.0, 0.0); glTranslatef(0.0, -0.1, 0.0); glPushMatrix(); glColor3f(0.0, 1.0, 1.0); glPushMatrix(); glScalef(0.07, 0.2, 0.5); prisma(); glPopMatrix(); glTranslatef(0.0, -0.1, 0.0); glRotatef(angIndice2, 1.0, 0.0, 0.0); glTranslatef(0.0, -0.1, 0.0); glColor3f(1.0, 1.0, 0.0); glPushMatrix(); glScalef(0.07, 0.2, 0.5); prisma(); glPopMatrix(); glTranslatef(0.0, -0.1, 0.0); glRotatef(angIndice3, 1.0, 0.0, 0.0); glTranslatef(0.0, -0.1, 0.0); glColor3f(1.0, 0.0, 0.4); glScalef(0.07, 0.2, 0.5); prisma(); glPopMatrix(); //Medio glPushMatrix(); glTranslatef(0.07, -0.25, 0.2); glRotatef(angMedio1, 1.0, 0.0, 0.0); glTranslatef(0.0, -0.15, 0.0); glPushMatrix(); glColor3f(0.2, 0.3, 1.0); glPushMatrix(); glScalef(0.07, 0.3, 0.5); prisma(); glPopMatrix(); glTranslatef(0.0, -0.15, 0.0); glRotatef(angMedio2, 1.0, 0.0, 0.0); glTranslatef(0.0, -0.15, 0.0); glColor3f(1.0, 0.4, 0.1); glPushMatrix(); glScalef(0.07, 0.3, 0.5); prisma(); glPopMatrix(); glTranslatef(0.0, -0.15, 0.0); glRotatef(angMedio3, 1.0, 0.0, 0.0); glTranslatef(0.0, -0.15, 0.0); glColor3f(1.0, 0.1, 0.4); glScalef(0.07, 0.3, 0.5); prisma(); glPopMatrix(); //Anular glPushMatrix(); glTranslatef(-0.04, -0.25, 0.2); glRotatef(angAnular1, 1.0, 0.0, 0.0); glTranslatef(0.0, -0.1, 0.0); glPushMatrix(); glColor3f(0.2, 0.3, 0.6); glPushMatrix(); glScalef(0.07, 0.2, 0.5); prisma(); glPopMatrix(); glTranslatef(0.0, -0.1, 0.0); glRotatef(angAnular2, 1.0, 0.0, 0.0); glTranslatef(0.0, -0.1, 0.0); glColor3f(0.8, 0.4, 0.3); glPushMatrix(); glScalef(0.07, 0.2, 0.5); prisma(); glPopMatrix(); glTranslatef(0.0, -0.1, 0.0); glRotatef(angAnular3, 1.0, 0.0, 0.0); glTranslatef(0.0, -0.1, 0.0); glColor3f(0.0, 0.1, 0.4); glScalef(0.07, 0.2, 0.5); prisma(); glPopMatrix(); //Meñique glPushMatrix(); glTranslatef(-0.15, -0.25, 0.2); glRotatef(angMeñique1, 1.0, 0.0, 0.0); glTranslatef(0.0, -0.05, 0.0); glPushMatrix(); glColor3f(0.2, 0.7, 0.6); glPushMatrix(); glScalef(0.07, 0.1, 0.5); prisma(); glPopMatrix(); glTranslatef(0.0, -0.05, 0.0); glRotatef(angMeñique2, 1.0, 0.0, 0.0); glTranslatef(0.0, -0.05, 0.0); glColor3f(0.8, 0.4, 0.8); glPushMatrix(); glScalef(0.07, 0.1, 0.5); prisma(); glPopMatrix(); glTranslatef(0.0, -0.05, 0.0); glRotatef(angMeñique3, 1.0, 0.0, 0.0); glTranslatef(0.0, -0.05, 0.0); glColor3f(0.5, 0.1, 0.4); glScalef(0.07, 0.1, 0.5); prisma(); glPopMatrix(); glPopMatrix(); glutSwapBuffers ( ); // Swap The Buffers } void reshape ( int width , int height ) // Creamos funcion Reshape { if (height==0) // Prevenir division entre cero { height=1; } glViewport(0,0,width,height); glMatrixMode(GL_PROJECTION); // Seleccionamos Projection Matrix glLoadIdentity(); // Tipo de Vista //glOrtho(-5,5,-5,5,0.2,20); glFrustum (-0.1, 0.1,-0.1, 0.1, 0.1, 50.0); glMatrixMode(GL_MODELVIEW); // Seleccionamos Modelview Matrix //glLoadIdentity(); } void keyboard ( unsigned char key, int x, int y ) // Create Keyboard Function { switch ( key ) { //Manipulacion de brazo case 't': angHombro += 1.0f; break; case 'T': angHombro -= 1.0f; break; case 'y': angCodo += 1.0f; break; case 'Y': angCodo -= 1.0f; break; case 'u': angMano += 1.0f; break; case 'U': angMano -= 1.0f; break; case 'i': angMeñique1 += 1.0f; break; case 'I': angMeñique1 -= 1.0f; break; case 'o': angMeñique2 += 1.0f; break; case 'O': angMeñique2 -= 1.0f; break; case 'p': angMeñique3 += 1.0f; break; case 'P': angMeñique3 -= 1.0f; break; case 'k': case 'K': angPulgar1 += 1.0f; break; case 'l': case 'L': angPulgar1 -= 1.0f; break; case 'm': angPulgar2 += 1.0f; break; case 'M': angPulgar2 -= 1.0f; break; case 'z': angIndice1 += 1.0f; break; case 'Z': angIndice1 -= 1.0f; break; case 'x': angIndice2 += 1.0f; break; case 'X': angIndice2 -= 1.0f; break; case 'c': angIndice3 += 1.0f; break; case 'C': angIndice3 -= 1.0f; break; case 'v': angMedio1 += 1.0f; break; case 'V': angMedio1 -= 1.0f; break; case 'b': angMedio2 += 1.0f; break; case 'B': angMedio2 -= 1.0f; break; case 'n': angMedio3 += 1.0f; break; case 'N': angMedio3 -= 1.0f; break; case 'f': angAnular1 += 1.0f; break; case 'F': angAnular1 -= 1.0f; break; case 'g': angAnular2 += 1.0f; break; case 'G': angAnular2 -= 1.0f; break; case 'h': angAnular3 += 1.0f; break; case 'H': angAnular3 -= 1.0f; break; case 'w': case 'W': transZ +=0.2f; break; case 's': case 'S': transZ -=0.2f; break; case 'a': case 'A': transX +=0.2f; break; case 'd': case 'D': transX -=0.2f; break; case 27: // Cuando Esc es presionado... exit ( 0 ); // Salimos del programa break; default: // Cualquier otra break; } glutPostRedisplay(); } void arrow_keys ( int a_keys, int x, int y ) // Funcion para manejo de teclas especiales (arrow keys) { switch ( a_keys ) { case GLUT_KEY_UP: // Presionamos tecla ARRIBA... angleX +=2.0f; break; case GLUT_KEY_DOWN: // Presionamos tecla ABAJO... angleX -=2.0f; break; case GLUT_KEY_LEFT: angleY +=2.0f; break; case GLUT_KEY_RIGHT: angleY -=2.0f; break; default: break; } glutPostRedisplay(); } int main ( int argc, char** argv ) // Main Function { glutInit (&argc, argv); // Inicializamos OpenGL glutInitDisplayMode (GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH); // Display Mode (Clores RGB y alpha | Buffer Doble ) screenW = glutGet(GLUT_SCREEN_WIDTH); screenH = glutGet(GLUT_SCREEN_HEIGHT); glutInitWindowSize (500, 500); // Tamaño de la Ventana glutInitWindowPosition (0, 0); //Posicion de la Ventana glutCreateWindow ("Practica 5"); // Nombre de la Ventana printf("Resolution H: %i \n", screenW); printf("Resolution V: %i \n", screenH); InitGL (); // Parametros iniciales de la aplicacion glutDisplayFunc ( display ); //Indicamos a Glut función de dibujo glutReshapeFunc ( reshape ); //Indicamos a Glut función en caso de cambio de tamano glutKeyboardFunc ( keyboard ); //Indicamos a Glut función de manejo de teclado glutSpecialFunc ( arrow_keys ); //Otras glutMainLoop ( ); // return 0; }
[ "loch.21d@gmail.com" ]
loch.21d@gmail.com
5374c5b5b90dcd34a65a3534fb81c04d3b3f1fe3
6cee5dc9e23d8ac46744c613a08f430d7ed824d5
/factorial-trailing-zeroes.cpp
19c453bb1b54fcb3676f20537fa7f9b2a073620f
[]
no_license
johnjohnlin/leetcode
2c3f43fccdf76617ef0f5f1f5efc3e821c5ee48c
b69a9b9c644bb34fdf0e2831e51da273688aee50
refs/heads/master
2021-01-18T22:03:38.387085
2016-04-27T08:52:32
2016-04-27T08:52:32
30,757,081
0
0
null
null
null
null
UTF-8
C++
false
false
312
cpp
#include <cstdio> class Solution { public: int trailingZeroes(int n) { int num_five = 0; do { n /= 5; num_five += n; } while (n); return num_five; } }; int main(int argc, char const* argv[]) { Solution s; for (int i = 0; i < 10; i++) { printf("%d", s.trailingZeroes(i)); } return 0; }
[ "johnjohnlys@gmail.com" ]
johnjohnlys@gmail.com
76d2ff157aa2943b4bd5f67fc4ab49833762d8ea
1fd30b1df13d20666edddc0f83f7ae517c00ee4f
/backtracking/classAssignment.cpp
5402c32b0b73871e6f0df00096c0d9625b5b6bf2
[]
no_license
manalarora/coding-blocks-online-questions
0d93b0a1d458fe2c7143788363ba76b07524aa27
0b60bb28ed11ab844eccd3fda0024d7fb37d196a
refs/heads/master
2020-04-21T07:09:19.293649
2019-02-11T19:07:42
2019-02-11T19:07:42
169,385,383
3
1
null
null
null
null
UTF-8
C++
false
false
245
cpp
#include<iostream> using namespace std; int fun(int n){ if(n==1)return 2; if(n==0)return 1; return fun(n-1)+fun(n-2); } int main() { int t; cin>>t; while(t--){ int n; cin>>n; cout<<"#"<<n<<" : "<<fun(n)<<endl; } return 0; }
[ "manalarora21@gmail.com" ]
manalarora21@gmail.com
a0d920588583f8ed7dabd4c2848216ba96b650e8
46f53e9a564192eed2f40dc927af6448f8608d13
/cc/quads/checkerboard_draw_quad.cc
db6ad1ea3569cf2a8370af7541093e3217d16146
[ "BSD-3-Clause" ]
permissive
sgraham/nope
deb2d106a090d71ae882ac1e32e7c371f42eaca9
f974e0c234388a330aab71a3e5bbf33c4dcfc33c
refs/heads/master
2022-12-21T01:44:15.776329
2015-03-23T17:25:47
2015-03-23T17:25:47
32,344,868
2
2
null
null
null
null
UTF-8
C++
false
false
2,065
cc
// Copyright 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "cc/quads/checkerboard_draw_quad.h" #include "base/logging.h" #include "base/trace_event/trace_event_argument.h" #include "base/values.h" namespace cc { CheckerboardDrawQuad::CheckerboardDrawQuad() : color(0), scale(0.f) { } void CheckerboardDrawQuad::SetNew(const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& visible_rect, SkColor color, float scale) { gfx::Rect opaque_rect = SkColorGetA(color) == 255 ? rect : gfx::Rect(); bool needs_blending = false; DrawQuad::SetAll(shared_quad_state, DrawQuad::CHECKERBOARD, rect, opaque_rect, visible_rect, needs_blending); this->color = color; this->scale = scale; } void CheckerboardDrawQuad::SetAll(const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, bool needs_blending, SkColor color, float scale) { DrawQuad::SetAll(shared_quad_state, DrawQuad::CHECKERBOARD, rect, opaque_rect, visible_rect, needs_blending); this->color = color; this->scale = scale; } void CheckerboardDrawQuad::IterateResources( const ResourceIteratorCallback& callback) {} const CheckerboardDrawQuad* CheckerboardDrawQuad::MaterialCast( const DrawQuad* quad) { DCHECK(quad->material == DrawQuad::CHECKERBOARD); return static_cast<const CheckerboardDrawQuad*>(quad); } void CheckerboardDrawQuad::ExtendValue( base::trace_event::TracedValue* value) const { value->SetInteger("color", color); value->SetDouble("scale", scale); } } // namespace cc
[ "scottmg@chromium.org" ]
scottmg@chromium.org
cc3702c1e71bc38a2e91a86d46f6b943bc0a4e0e
e9acf56f8545281397b5da70954c01f216080a1a
/Integration1/Integration1.ino
b67db759649896694dc393bd5cc236d3b826832a
[]
no_license
melimathlete/Artduino
3ad4f1805ad03d8f9c6d9f9a57893ae9bbc9bf5f
1cf65c96fd1a0f8e9927b4debf75ecc7b84e77de
refs/heads/master
2020-04-11T09:59:42.481954
2018-12-14T00:20:43
2018-12-14T00:20:43
161,698,994
0
0
null
null
null
null
UTF-8
C++
false
false
2,128
ino
#include <Servo.h> Servo servo1; // create servo object to control a servo Servo servo2; int half = 800; int quarter = 400; int eighth = 200; int travel = 100; int notedistance = 20; int pitchA = 30; int pitchB = 50; int pitchC = 70; int pitchD = 90; int pitchE = 110; int pitchF = 130; int pitchG = 150; // twelve servo objects can be created on most boards int downPos = 150; // Servo poition required to hit key int upPos = 130; //Servo position when not hitting key int servo1pin = 11; int servo2pin = 12; void setup() { // put your setup code here, to run once: servo1.attach(servo1pin); servo2.attach(servo2pin); Serial.begin(9600);//serial rate } void play(Servo finger, int notetime) { int time_play = millis(); finger.write(downPos); // tell servo to go to position in variable 'pos' while (millis() < time_play + notetime - travel){ } } void retract(Servo finger, Servo belt, int traveltime, int note) { int time_retract = millis(); finger.write(upPos); // tell servo to go to position in variable 'pos' belt.write(note); while(millis() < time_retract + traveltime){ // waits traveltime for the servo to reach the position } } void quit(Servo finger) { finger.detach(); } void loop() { // put your main code here, to run repeatedly: //delay(5000); retract(servo1, servo2, travel, pitchA); play(servo1, quarter); retract(servo1, servo2, travel, pitchA); play(servo1, quarter); retract(servo1, servo2, travel, pitchA); play(servo1, half); retract(servo1, servo2, travel, pitchA); play(servo1, quarter); retract(servo1, servo2, travel, pitchA); play(servo1, quarter); retract(servo1, servo2, travel, pitchA); play(servo1, half); retract(servo1, servo2, travel, pitchA); play(servo1, quarter); retract(servo1, servo2, travel, pitchC); play(servo1, quarter); retract(servo1, servo2, travel, pitchF); play(servo1, half); retract(servo1, servo2, travel, pitchG); play(servo1, eighth); retract(servo1, servo2, travel, pitchA); play(servo1, quarter); //Serial.println("Done"); }
[ "23112766+melimathlete@users.noreply.github.com" ]
23112766+melimathlete@users.noreply.github.com
8c31a8d09759c433d8d5591ffacef9abb01b42f0
ef29cc4958d08095860e9ee24413aa7977fdbfe1
/FuncionesComunes.h
85a254d2cf97ec7dc3239db6aeea72c371ef6e9f
[]
no_license
sjm00010/meta-practica3
6ff18a19594ac042c6f8673151a4d87b1d521e70
decf99a94e47039a64b5838c74dadf6c1fcd82a0
refs/heads/master
2022-04-19T12:50:29.535632
2020-04-20T18:30:45
2020-04-20T18:30:45
257,369,694
0
0
null
null
null
null
UTF-8
C++
false
false
1,421
h
/* * File: FuncionesComunes.h * Author: PORTATIL * * Created on 1 de noviembre de 2019, 21:39 */ #ifndef FUNCIONESCOMUNES_H #define FUNCIONESCOMUNES_H #include "Individuo.h" using namespace std; // Carga Datos void cargaParametros(); void cargaDatos(string &archivo, vector<vector<int>> &flu, vector<vector<int>> &dis, bool &sim); // Registros .log void creaLog(string nombreAr); void registraCadena(string log, string elec); void registraTiempo(string log, double t, int semilla); void registraLogGeneracion(string log, int generacion); void registraLogPoblacion(string log, vector<Individuo> poblacion); void registraLogIndividuos(string log, vector<Individuo> poblacion, pair<int, int> seleccionados); void registraLogSolucion(string log, Individuo i); void registraLogVector(string log, vector<int> v, string id); void registraLogTabu(string log, vector<int> v, int coste, string id); // Otros vector<int> creaSolucion(int tam); int calculaCoste (vector<int> sol, vector<vector<int>>& flu, vector<vector<int>>& dis, bool sim); int calculaCoste2(int costeViejo, int pos1, int pos2 ,vector<int> sol, vector<vector<int>>& flu, vector<vector<int>>& dis); int calculaSemilla(int prueba); void mostrarResultado( vector<int> v, const int coste, double t); #endif /* FUNCIONESCOMUNES_H */
[ "sjm00010@red.ujaen.es" ]
sjm00010@red.ujaen.es
2fa87c34e4eeb6d39cdda38d2496130c04499570
844540e5103e2d88b3fbb26b00ccdd29bed13058
/format_check.h
1b69c4101ba29823be8bc76c2c32195aa543d223
[]
no_license
ij96/ingress-passcode-analyser
9b090000ff11e42bdcaff4533078ce9344d23c47
1a0aeb764ff224d79287b6f0396bcc85fb15abec
refs/heads/master
2021-01-23T06:40:16.196198
2017-07-11T03:06:11
2017-07-11T03:06:11
86,390,701
1
1
null
null
null
null
UTF-8
C++
false
false
214
h
#ifndef FORMAT_CHECK_H #define FORMAT_CHECK_H #include <string> using namespace std; int format_check(string passcode); bool is_digit_2_9(char c); bool pattern_match(string str, string pattern); #endif
[ "noreply@github.com" ]
noreply@github.com
ab5bf55d8dd92eac6bc24a628a098feebc026996
da426fa63ca1009eeac2bd465cc6c413d8a02263
/ap_IUT-master/Debug/build-ap-Desktop_Qt_5_11_2_MinGW_32bit-Debug/debug/moc_organizer_wrestling.cpp
bf9effa9246988077a2c23b9668ef1758de5ba37
[]
no_license
mahdi-hejazi/ap_IUT
5a9690030c97b30dbd6d684194045f20fd2aac78
9fe80c722e7c7bbf03073954d4cb67fd9b31b8ba
refs/heads/master
2020-05-30T07:56:49.326533
2019-06-20T11:09:27
2019-06-20T11:09:27
189,610,532
0
0
null
2019-05-31T14:47:07
2019-05-31T14:47:06
null
UTF-8
C++
false
false
2,812
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'organizer_wrestling.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.11.2) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../../../ap_IUT-master/ap/organizer_wrestling.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'organizer_wrestling.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.11.2. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE QT_WARNING_PUSH QT_WARNING_DISABLE_DEPRECATED struct qt_meta_stringdata_organizer_wrestling_t { QByteArrayData data[1]; char stringdata0[20]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ qptrdiff(offsetof(qt_meta_stringdata_organizer_wrestling_t, stringdata0) + ofs \ - idx * sizeof(QByteArrayData)) \ ) static const qt_meta_stringdata_organizer_wrestling_t qt_meta_stringdata_organizer_wrestling = { { QT_MOC_LITERAL(0, 0, 19) // "organizer_wrestling" }, "organizer_wrestling" }; #undef QT_MOC_LITERAL static const uint qt_meta_data_organizer_wrestling[] = { // content: 7, // revision 0, // classname 0, 0, // classinfo 0, 0, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount 0 // eod }; void organizer_wrestling::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { Q_UNUSED(_o); Q_UNUSED(_id); Q_UNUSED(_c); Q_UNUSED(_a); } QT_INIT_METAOBJECT const QMetaObject organizer_wrestling::staticMetaObject = { { &QWidget::staticMetaObject, qt_meta_stringdata_organizer_wrestling.data, qt_meta_data_organizer_wrestling, qt_static_metacall, nullptr, nullptr} }; const QMetaObject *organizer_wrestling::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *organizer_wrestling::qt_metacast(const char *_clname) { if (!_clname) return nullptr; if (!strcmp(_clname, qt_meta_stringdata_organizer_wrestling.stringdata0)) return static_cast<void*>(this); return QWidget::qt_metacast(_clname); } int organizer_wrestling::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QWidget::qt_metacall(_c, _id, _a); return _id; } QT_WARNING_POP QT_END_MOC_NAMESPACE
[ "user.email" ]
user.email
5494df04d5b7856e891ce915195a56c6d904dfde
3b663565b572e0c761b705821ed2e1d3d5c954d3
/land.cpp
643588565d817f86d1f14eb9377f3d97ed7ce812
[]
no_license
tj-dsk-tpp-zz/CPtrials
3600054ba4c52307efe19bf73d223e580fd72f07
abdd70d208316a291aa4af667847830bfdda94f4
refs/heads/master
2022-04-02T20:01:41.826964
2020-01-26T18:18:05
2020-01-26T18:18:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
546
cpp
#include<bits/stdc++.h> using namespace std; int main() { int t=0; cin>>t; while(t--) { int n=0,m=0; cin>>n>>m; int x=0,y=0,s=0; cin>>x>>y>>s; int a=1,b; int hsum=0,vsum=0; for(int i=0;i<x;i++) { cin>>b; hsum+=(b-a)/s; a=b; } for(int i=0;i<y;i++) { cin>>b; vsum+=(b-a)/s; a=b; } cout<<hsum*vsum<<endl; } return 0; }
[ "noreply@github.com" ]
noreply@github.com
897c8cc2da49a4930df906fe78b987f14a6892df
f6ba7d7d255d4f3d2ff65f5d1381f706e5477d6f
/Graphics/GraphicsEngineD3D11/include/EngineD3D11ImplTraits.hpp
907755fcee930c0362bc61f4dd9deb6be9283978
[ "Apache-2.0", "LicenseRef-scancode-nvidia-2002", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "MIT", "BSD-3-Clause" ]
permissive
jcpulido97/DiligentCore
c02528142e7b46d1dd67510cc7d27ff83209f742
589986c083c631624507811cc802f0973f41452b
refs/heads/master
2023-04-07T18:30:04.222310
2021-03-29T11:53:20
2021-03-29T11:53:20
352,618,756
0
0
Apache-2.0
2021-03-29T11:52:47
2021-03-29T11:27:51
null
UTF-8
C++
false
false
5,247
hpp
/* * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * In no event and under no legal theory, whether in tort (including negligence), * contract, or otherwise, unless required by applicable law (such as deliberate * and grossly negligent acts) or agreed to in writing, shall any Contributor be * liable for any damages, including any direct, indirect, special, incidental, * or consequential damages of any character arising as a result of this License or * out of the use or inability to use the software (including but not limited to damages * for loss of goodwill, work stoppage, computer failure or malfunction, or any and * all other commercial damages or losses), even if such Contributor has been advised * of the possibility of such damages. */ #pragma once /// \file /// Declaration of Diligent::EngineD3D11ImplTraits struct #include "RenderDeviceD3D11.h" #include "PipelineStateD3D11.h" #include "ShaderResourceBindingD3D11.h" #include "BufferD3D11.h" #include "BufferViewD3D11.h" #include "TextureD3D11.h" #include "TextureViewD3D11.h" #include "ShaderD3D11.h" #include "SamplerD3D11.h" #include "FenceD3D11.h" #include "QueryD3D11.h" #include "RenderPass.h" #include "Framebuffer.h" #include "CommandList.h" #include "PipelineResourceSignature.h" #include "DeviceContextD3D11.h" namespace Diligent { class RenderDeviceD3D11Impl; class DeviceContextD3D11Impl; class PipelineStateD3D11Impl; class ShaderResourceBindingD3D11Impl; class BufferD3D11Impl; class BufferViewD3D11Impl; class TextureBaseD3D11; class TextureViewD3D11Impl; class ShaderD3D11Impl; class SamplerD3D11Impl; class FenceD3D11Impl; class QueryD3D11Impl; class RenderPassD3D11Impl; class FramebufferD3D11Impl; class CommandListD3D11Impl; class BottomLevelASD3D11Impl; class TopLevelASD3D11Impl; class ShaderBindingTableD3D11Impl; class PipelineResourceSignatureD3D11Impl; class FixedBlockMemoryAllocator; class ShaderResourceCacheD3D11; class ShaderVariableManagerD3D11; struct EngineD3D11ImplTraits { using RenderDeviceInterface = IRenderDeviceD3D11; using DeviceContextInterface = IDeviceContextD3D11; using PipelineStateInterface = IPipelineStateD3D11; using ShaderResourceBindingInterface = IShaderResourceBindingD3D11; using BufferInterface = IBufferD3D11; using BufferViewInterface = IBufferViewD3D11; using TextureInterface = ITextureD3D11; using TextureViewInterface = ITextureViewD3D11; using ShaderInterface = IShaderD3D11; using SamplerInterface = ISamplerD3D11; using FenceInterface = IFenceD3D11; using QueryInterface = IQueryD3D11; using RenderPassInterface = IRenderPass; using FramebufferInterface = IFramebuffer; using CommandListInterface = ICommandList; using PipelineResourceSignatureInterface = IPipelineResourceSignature; using RenderDeviceImplType = RenderDeviceD3D11Impl; using DeviceContextImplType = DeviceContextD3D11Impl; using PipelineStateImplType = PipelineStateD3D11Impl; using ShaderResourceBindingImplType = ShaderResourceBindingD3D11Impl; using BufferImplType = BufferD3D11Impl; using BufferViewImplType = BufferViewD3D11Impl; using TextureImplType = TextureBaseD3D11; using TextureViewImplType = TextureViewD3D11Impl; using ShaderImplType = ShaderD3D11Impl; using SamplerImplType = SamplerD3D11Impl; using FenceImplType = FenceD3D11Impl; using QueryImplType = QueryD3D11Impl; using RenderPassImplType = RenderPassD3D11Impl; using FramebufferImplType = FramebufferD3D11Impl; using CommandListImplType = CommandListD3D11Impl; using BottomLevelASImplType = BottomLevelASD3D11Impl; using TopLevelASImplType = TopLevelASD3D11Impl; using ShaderBindingTableImplType = ShaderBindingTableD3D11Impl; using PipelineResourceSignatureImplType = PipelineResourceSignatureD3D11Impl; using BuffViewObjAllocatorType = FixedBlockMemoryAllocator; using TexViewObjAllocatorType = FixedBlockMemoryAllocator; using ShaderResourceCacheImplType = ShaderResourceCacheD3D11; using ShaderVariableManagerImplType = ShaderVariableManagerD3D11; }; } // namespace Diligent
[ "assiduous@diligentgraphics.com" ]
assiduous@diligentgraphics.com
0728cd7ef35f6a00be2d4fdbe3ffffe74a7a9ab7
76aab74b58991e2cf8076d6b4ed6f4deba1c57bd
/Codeforces/1091B.cpp
56478f6c865af1ac891bb6420b07f8938f89895e
[]
no_license
StudyingFather/my-code
9c109660c16b18f9974d37a2a1d809db4d6ce50a
8d02be445ac7affad58c2d71f3ef602f3d2801f6
refs/heads/master
2023-08-16T23:17:10.817659
2023-08-04T11:31:40
2023-08-04T11:31:40
149,898,152
6
2
null
null
null
null
UTF-8
C++
false
false
452
cpp
#include <cstdio> #include <algorithm> using namespace std; struct point { int x,y; }p1[1005],p2[1005]; bool cmp(const point&a,const point&b) { return a.x<b.x||(a.x==b.x&&a.y<b.y); } int main() { int n; scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%d%d",&p1[i].x,&p1[i].y); for(int i=1;i<=n;i++) scanf("%d%d",&p2[i].x,&p2[i].y); sort(p1+1,p1+n+1,cmp); sort(p2+1,p2+n+1,cmp); printf("%d %d\n",p1[1].x+p2[n].x,p1[1].y+p2[n].y); return 0; }
[ "594422141@qq.com" ]
594422141@qq.com
8ef6954ba92dfe16bc564a8c5c558e88427de5b6
af0ecafb5428bd556d49575da2a72f6f80d3d14b
/CodeJamCrawler/dataset/13_1492_100.cpp
5852a38f514ad9160925b941a21f74aa359a3ad8
[]
no_license
gbrlas/AVSP
0a2a08be5661c1b4a2238e875b6cdc88b4ee0997
e259090bf282694676b2568023745f9ffb6d73fd
refs/heads/master
2021-06-16T22:25:41.585830
2017-06-09T06:32:01
2017-06-09T06:32:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,051
cpp
#include <iostream> #include <vector> #include <string> #include <map> using namespace std; char get_winner(map< char, int > mp) { if ((mp['O'] + mp['T']) == 4) { return 'O'; } if ((mp['X'] + mp['T']) == 4) { return 'X'; } return '-'; } int main() { int n; cin>>n; for (int t = 1; t <= n; ++t) { cout<<"Case #"<<t<<": "; vector< string > v(4); for (int i = 0; i < 4; ++i) { cin>>v[i]; } map< char, int > mp; for (int i = 0; i < 4; ++i) { ++mp[v[i][i]]; } char res = get_winner(mp); if ((res == 'O') || (res == 'X')) { cout<<res<<" won"<<endl; continue; } mp.clear(); for (int i = 0; i < 4; ++i) { ++mp[v[3 - i][i]]; } res = get_winner(mp); if ((res == 'O') || (res == 'X')) { cout<<res<<" won"<<endl; continue; } bool fl = false; for (int j = 0; j < 4; ++j) { mp.clear(); for (int i = 0; i < 4; ++i) { ++mp[v[i][j]]; } res = get_winner(mp); if ((res == 'O') || (res == 'X')) { cout<<res<<" won"<<endl; fl = true; break; } mp.clear(); for (int i = 0; i < 4; ++i) { ++mp[v[j][i]]; } res = get_winner(mp); if ((res == 'O') || (res == 'X')) { cout<<res<<" won"<<endl; fl = true; break; } } if (fl) { continue; } int ct = 0; for (int i = 0; i < 4; ++i) { for (int j = 0; j < 4; ++j) { if (v[i][j] == '.') { ++ct; } } } if (ct) { cout<<"Game has not completed"<<endl; } else { cout<<"Draw"<<endl; } } return 0; }
[ "nikola.mrzljak@fer.hr" ]
nikola.mrzljak@fer.hr
3e40156f6cdbbc3fdc27ccc461b027b60ce820ee
7c0b229dc12b60507502f1197a2225f1d1bc88cc
/SuperPass/Dictionary.h
668d02f1b849f65b503bb26741cbe497a4495ff9
[]
no_license
WilliamPlusPlus/SuperPass
be20261f36bfadf6f328cd660ac4ad5e3155a177
2e1de06c645e11f482552f12da37c2345523374a
refs/heads/master
2022-04-17T11:51:36.349030
2020-04-15T17:03:46
2020-04-15T17:03:46
255,981,690
1
0
null
null
null
null
UTF-8
C++
false
false
300
h
// // Dictionary.h // SuperPass // // Created by William Phenicie on 4/14/20. // Copyright © 2020 Peer Group Softwrae. All rights reserved. // #ifndef Dictionary_h #define Dictionary_h using namespace std; struct Key { char letter; string key; }; #endif /* Dictionary_h */
[ "williamphenicie@outlook.com" ]
williamphenicie@outlook.com