From eab93f4fdc6a11dd22960ffc4b6235845eaf624f Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Fri, 27 Sep 2024 12:00:54 -0700 Subject: [PATCH 01/18] [upstream_utils] Upgrade to libuv 1.49.0 (#7129) --- upstream_utils/libuv.py | 2 +- ...ss-write-minidumps-when-sending-SIGQ.patch | 18 +- .../0002-Fix-missing-casts.patch | 419 ++++++++++-------- .../libuv_patches/0003-Fix-warnings.patch | 46 +- .../0004-Preprocessor-cleanup.patch | 49 +- .../0005-Cleanup-problematic-language.patch | 4 +- ...Fix-Win32-warning-suppression-pragma.patch | 22 - ...atomics.patch => 0006-Use-C-atomics.patch} | 128 ++++-- ...07-Remove-static-from-array-indices.patch} | 4 +- ...issing-libraries-and-set-_WIN32_WIN.patch} | 8 +- ...aring.patch => 0009-Remove-swearing.patch} | 8 +- .../main/native/thirdparty/libuv/include/uv.h | 62 ++- .../native/thirdparty/libuv/include/uv/tree.h | 253 +---------- .../thirdparty/libuv/include/uv/version.h | 2 +- .../native/thirdparty/libuv/include/uv/win.h | 4 +- .../native/thirdparty/libuv/src/random.cpp | 2 +- .../thirdparty/libuv/src/threadpool.cpp | 2 +- .../thirdparty/libuv/src/unix/async.cpp | 132 +++++- .../native/thirdparty/libuv/src/unix/core.cpp | 169 ++++++- .../thirdparty/libuv/src/unix/cygwin.cpp | 40 +- .../libuv/src/unix/darwin-syscalls.h | 19 + .../thirdparty/libuv/src/unix/darwin.cpp | 8 +- .../thirdparty/libuv/src/unix/freebsd.cpp | 7 +- .../native/thirdparty/libuv/src/unix/fs.cpp | 181 +++++++- .../thirdparty/libuv/src/unix/fsevents.cpp | 13 +- .../thirdparty/libuv/src/unix/getaddrinfo.cpp | 2 +- .../thirdparty/libuv/src/unix/getnameinfo.cpp | 2 +- .../thirdparty/libuv/src/unix/internal.h | 58 ++- .../thirdparty/libuv/src/unix/kqueue.cpp | 44 ++ .../thirdparty/libuv/src/unix/linux.cpp | 292 ++++++++---- .../native/thirdparty/libuv/src/unix/loop.cpp | 8 + .../native/thirdparty/libuv/src/unix/pipe.cpp | 39 +- .../thirdparty/libuv/src/unix/process.cpp | 9 +- .../thirdparty/libuv/src/unix/signal.cpp | 2 +- .../thirdparty/libuv/src/unix/stream.cpp | 45 +- .../native/thirdparty/libuv/src/unix/tcp.cpp | 42 +- .../native/thirdparty/libuv/src/unix/tty.cpp | 33 +- .../native/thirdparty/libuv/src/unix/udp.cpp | 193 ++++---- .../native/thirdparty/libuv/src/uv-common.h | 6 +- .../native/thirdparty/libuv/src/win/error.cpp | 3 +- .../thirdparty/libuv/src/win/fs-event.cpp | 20 +- .../native/thirdparty/libuv/src/win/fs.cpp | 298 +++++++++---- .../thirdparty/libuv/src/win/getaddrinfo.cpp | 124 +++--- .../thirdparty/libuv/src/win/getnameinfo.cpp | 4 +- .../native/thirdparty/libuv/src/win/pipe.cpp | 267 ++++++----- .../libuv/src/win/process-stdio.cpp | 35 +- .../thirdparty/libuv/src/win/process.cpp | 75 ++-- .../native/thirdparty/libuv/src/win/req-inl.h | 10 +- .../thirdparty/libuv/src/win/signal.cpp | 2 +- .../thirdparty/libuv/src/win/stream.cpp | 2 +- .../native/thirdparty/libuv/src/win/tcp.cpp | 45 +- .../thirdparty/libuv/src/win/thread.cpp | 44 +- .../native/thirdparty/libuv/src/win/tty.cpp | 8 +- .../native/thirdparty/libuv/src/win/udp.cpp | 12 +- .../native/thirdparty/libuv/src/win/util.cpp | 90 ++-- .../thirdparty/libuv/src/win/winapi.cpp | 10 + .../native/thirdparty/libuv/src/win/winapi.h | 61 +++ 57 files changed, 2212 insertions(+), 1275 deletions(-) delete mode 100644 upstream_utils/libuv_patches/0006-Fix-Win32-warning-suppression-pragma.patch rename upstream_utils/libuv_patches/{0007-Use-C-atomics.patch => 0006-Use-C-atomics.patch} (75%) rename upstream_utils/libuv_patches/{0008-Remove-static-from-array-indices.patch => 0007-Remove-static-from-array-indices.patch} (94%) rename upstream_utils/libuv_patches/{0009-Add-pragmas-for-missing-libraries-and-set-_WIN32_WIN.patch => 0008-Add-pragmas-for-missing-libraries-and-set-_WIN32_WIN.patch} (79%) rename upstream_utils/libuv_patches/{0010-Remove-swearing.patch => 0009-Remove-swearing.patch} (78%) create mode 100644 wpinet/src/main/native/thirdparty/libuv/src/unix/darwin-syscalls.h diff --git a/upstream_utils/libuv.py b/upstream_utils/libuv.py index 6cf89cb957a..97f0959c254 100755 --- a/upstream_utils/libuv.py +++ b/upstream_utils/libuv.py @@ -56,7 +56,7 @@ def copy_upstream_src(wpilib_root): def main(): name = "libuv" url = "https://github.com/libuv/libuv" - tag = "v1.48.0" + tag = "v1.49.0" libuv = Lib(name, url, tag, copy_upstream_src) libuv.main() diff --git a/upstream_utils/libuv_patches/0001-Revert-win-process-write-minidumps-when-sending-SIGQ.patch b/upstream_utils/libuv_patches/0001-Revert-win-process-write-minidumps-when-sending-SIGQ.patch index 8db5c3cd0c6..ca17c36d868 100644 --- a/upstream_utils/libuv_patches/0001-Revert-win-process-write-minidumps-when-sending-SIGQ.patch +++ b/upstream_utils/libuv_patches/0001-Revert-win-process-write-minidumps-when-sending-SIGQ.patch @@ -1,8 +1,8 @@ From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Fri, 14 Jul 2023 17:33:08 -0700 -Subject: [PATCH 01/10] Revert "win,process: write minidumps when sending - SIGQUIT (#3840)" +Subject: [PATCH 1/9] Revert "win,process: write minidumps when sending SIGQUIT + (#3840)" This reverts commit 748d894e82abcdfff7429cf745003e182c47f163. --- @@ -13,10 +13,10 @@ This reverts commit 748d894e82abcdfff7429cf745003e182c47f163. 4 files changed, 2 insertions(+), 131 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt -index 5e8e0166d743bc23f446b180fdbe6843492c754b..4b6ff2477e494dde7a876d8b5bd3e8985c93f0e8 100644 +index 28c6df2566696785383716bf463c37cf2d07f987..36fef0fdff5090bb3a56d7e231c3bfe390772318 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -188,10 +188,7 @@ if(WIN32) +@@ -193,10 +193,7 @@ if(WIN32) advapi32 iphlpapi userenv @@ -29,7 +29,7 @@ index 5e8e0166d743bc23f446b180fdbe6843492c754b..4b6ff2477e494dde7a876d8b5bd3e898 src/win/async.c src/win/core.c diff --git a/configure.ac b/configure.ac -index d4cc003e34388de77fe1cfe2ebf12ab25b00b9b8..b215638506223e1c9edb1847bbcfccb7404be33f 100644 +index b7981d6194969b74751b97747cfc7bc1d679536b..0ad8026905453e27fff8f720913fdda2544baef2 100644 --- a/configure.ac +++ b/configure.ac @@ -74,7 +74,7 @@ AM_CONDITIONAL([OS400], [AS_CASE([$host_os],[os400], [true], [false]) @@ -42,7 +42,7 @@ index d4cc003e34388de77fe1cfe2ebf12ab25b00b9b8..b215638506223e1c9edb1847bbcfccb7 AS_CASE([$host_os], [solaris2.10], [ CFLAGS="$CFLAGS -DSUNOS_NO_IFADDRS" diff --git a/include/uv/win.h b/include/uv/win.h -index f4adaa216c6f0c17437ed42ca594acbf1b8c2c56..518b17606c3b0c114845594e6be9c3c4d95f1776 100644 +index 12ac53b4f217d212d1b5c32cfe090800f8770a09..d4c271d4d856a5ec847439825cace5bafb0d4acd 100644 --- a/include/uv/win.h +++ b/include/uv/win.h @@ -91,7 +91,6 @@ typedef struct pollfd { @@ -54,10 +54,10 @@ index f4adaa216c6f0c17437ed42ca594acbf1b8c2c56..518b17606c3b0c114845594e6be9c3c4 #define SIGWINCH 28 diff --git a/src/win/process.c b/src/win/process.c -index 4e94dee90e13eede63d8e97ddc9992726f874ea9..4f0af83e83442bb905762361775abe05ab6beb4e 100644 +index 9d48ddc6f84d6f8c425a8f6f8a344f39d3deb5cc..79bec0090cc94bfe20dab722cf2d8135ddd03cb8 100644 --- a/src/win/process.c +++ b/src/win/process.c -@@ -32,9 +32,6 @@ +@@ -31,9 +31,6 @@ #include "internal.h" #include "handle-inl.h" #include "req-inl.h" @@ -67,7 +67,7 @@ index 4e94dee90e13eede63d8e97ddc9992726f874ea9..4f0af83e83442bb905762361775abe05 #define SIGKILL 9 -@@ -1179,129 +1176,7 @@ static int uv__kill(HANDLE process_handle, int signum) { +@@ -1160,129 +1157,7 @@ static int uv__kill(HANDLE process_handle, int signum) { return UV_EINVAL; } diff --git a/upstream_utils/libuv_patches/0002-Fix-missing-casts.patch b/upstream_utils/libuv_patches/0002-Fix-missing-casts.patch index 2c9355b4402..c8da12bf728 100644 --- a/upstream_utils/libuv_patches/0002-Fix-missing-casts.patch +++ b/upstream_utils/libuv_patches/0002-Fix-missing-casts.patch @@ -1,10 +1,10 @@ From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: PJ Reiniger Date: Tue, 26 Apr 2022 15:01:25 -0400 -Subject: [PATCH 02/10] Fix missing casts +Subject: [PATCH 2/9] Fix missing casts --- - src/fs-poll.c | 10 ++++---- + src/fs-poll.c | 10 +++---- src/idna.c | 2 +- src/inet.c | 11 ++++---- src/strscpy.c | 2 +- @@ -15,22 +15,22 @@ Subject: [PATCH 02/10] Fix missing casts src/unix/darwin-proctitle.c | 5 ++-- src/unix/darwin.c | 2 +- src/unix/freebsd.c | 4 +-- - src/unix/fs.c | 20 +++++++-------- - src/unix/fsevents.c | 34 ++++++++++++------------- + src/unix/fs.c | 22 ++++++++-------- + src/unix/fsevents.c | 34 ++++++++++++------------ src/unix/getaddrinfo.c | 8 +++--- src/unix/ibmi.c | 2 +- src/unix/kqueue.c | 6 ++--- - src/unix/linux.c | 46 +++++++++++++++++----------------- + src/unix/linux.c | 48 +++++++++++++++++----------------- src/unix/loop.c | 2 +- src/unix/netbsd.c | 4 +-- src/unix/openbsd.c | 4 +-- - src/unix/pipe.c | 6 ++--- + src/unix/pipe.c | 8 +++--- src/unix/poll.c | 4 +-- src/unix/posix-poll.c | 2 +- src/unix/process.c | 4 +-- src/unix/proctitle.c | 2 +- src/unix/random-sysctl-linux.c | 2 +- - src/unix/stream.c | 31 ++++++++++++----------- + src/unix/stream.c | 33 +++++++++++------------ src/unix/tcp.c | 2 +- src/unix/thread.c | 5 ++-- src/unix/udp.c | 8 +++--- @@ -39,15 +39,15 @@ Subject: [PATCH 02/10] Fix missing casts src/win/dl.c | 2 +- src/win/fs-event.c | 4 +-- src/win/fs-fd-hash-inl.h | 2 +- - src/win/fs.c | 38 ++++++++++++++-------------- - src/win/getaddrinfo.c | 12 ++++----- + src/win/fs.c | 38 +++++++++++++-------------- + src/win/getaddrinfo.c | 10 +++---- src/win/pipe.c | 12 ++++----- - src/win/process.c | 22 ++++++++-------- + src/win/process.c | 20 +++++++------- src/win/tcp.c | 2 +- - src/win/thread.c | 4 +-- + src/win/thread.c | 6 ++--- src/win/tty.c | 6 ++--- - src/win/util.c | 35 +++++++++++++------------- - 43 files changed, 210 insertions(+), 205 deletions(-) + src/win/util.c | 35 +++++++++++++------------ + 43 files changed, 213 insertions(+), 208 deletions(-) diff --git a/src/fs-poll.c b/src/fs-poll.c index 1bac1c568e36cadd0b68451926c6f045f88342d2..5a39daed095502b2db34f23fcaf0ab04f31f96ff 100644 @@ -177,7 +177,7 @@ index c67c0a7dd7279af6c67b7d5d4a623c47bdf3fff2..c0e39b543df229dd8cb8492bb695e61e return UV_ENOMEM; #endif diff --git a/src/threadpool.c b/src/threadpool.c -index dbef67f2f10f1df498f228c21eba2a71ceceee29..f572de5aaf1a1b150e58c7b989949441cac279c4 100644 +index 45af50dcd04ea6ab1d0cfd7ed48ced3aac9c562a..ccb5249893df2733fc607fec6e8d3037ebe2e212 100644 --- a/src/threadpool.c +++ b/src/threadpool.c @@ -207,7 +207,7 @@ static void init_threads(void) { @@ -203,10 +203,10 @@ index 11ca95591fc38244e931fecd9dd4038d3968af7a..c3dd71a1889bfae08cfdf95acda61e6c if (*addresses == NULL) { freeifaddrs(addrs); diff --git a/src/unix/core.c b/src/unix/core.c -index 965e7f775250cf9899266bc3aaf62eda69367264..8c08d607884335a2da5cb49f35e3108cb833da32 100644 +index 1935ba87381db2616326188eed075dfee9bf70e9..d8c09f5e41ff96dae4d0df9982f227eaac3c8576 100644 --- a/src/unix/core.c +++ b/src/unix/core.c -@@ -856,7 +856,7 @@ static unsigned int next_power_of_two(unsigned int val) { +@@ -866,7 +866,7 @@ static unsigned int next_power_of_two(unsigned int val) { } static void maybe_resize(uv_loop_t* loop, unsigned int len) { @@ -215,7 +215,7 @@ index 965e7f775250cf9899266bc3aaf62eda69367264..8c08d607884335a2da5cb49f35e3108c void* fake_watcher_list; void* fake_watcher_count; unsigned int nwatchers; -@@ -875,8 +875,8 @@ static void maybe_resize(uv_loop_t* loop, unsigned int len) { +@@ -885,8 +885,8 @@ static void maybe_resize(uv_loop_t* loop, unsigned int len) { } nwatchers = next_power_of_two(len + 2) - 2; @@ -226,7 +226,7 @@ index 965e7f775250cf9899266bc3aaf62eda69367264..8c08d607884335a2da5cb49f35e3108c if (watchers == NULL) abort(); -@@ -885,7 +885,7 @@ static void maybe_resize(uv_loop_t* loop, unsigned int len) { +@@ -895,7 +895,7 @@ static void maybe_resize(uv_loop_t* loop, unsigned int len) { watchers[nwatchers] = fake_watcher_list; watchers[nwatchers + 1] = fake_watcher_count; @@ -235,7 +235,7 @@ index 965e7f775250cf9899266bc3aaf62eda69367264..8c08d607884335a2da5cb49f35e3108c loop->nwatchers = nwatchers; } -@@ -1217,7 +1217,7 @@ static int uv__getpwuid_r(uv_passwd_t *pwd, uid_t uid) { +@@ -1227,7 +1227,7 @@ static int uv__getpwuid_r(uv_passwd_t *pwd, uid_t uid) { * is frequently 1024 or 4096, so we can just use that directly. The pwent * will not usually be large. */ for (bufsize = 2000;; bufsize *= 2) { @@ -244,7 +244,7 @@ index 965e7f775250cf9899266bc3aaf62eda69367264..8c08d607884335a2da5cb49f35e3108c if (buf == NULL) return UV_ENOMEM; -@@ -1243,7 +1243,7 @@ static int uv__getpwuid_r(uv_passwd_t *pwd, uid_t uid) { +@@ -1253,7 +1253,7 @@ static int uv__getpwuid_r(uv_passwd_t *pwd, uid_t uid) { name_size = strlen(pw.pw_name) + 1; homedir_size = strlen(pw.pw_dir) + 1; shell_size = strlen(pw.pw_shell) + 1; @@ -253,7 +253,7 @@ index 965e7f775250cf9899266bc3aaf62eda69367264..8c08d607884335a2da5cb49f35e3108c if (pwd->username == NULL) { uv__free(buf); -@@ -1293,7 +1293,7 @@ int uv_os_get_group(uv_group_t* grp, uv_uid_t gid) { +@@ -1303,7 +1303,7 @@ int uv_os_get_group(uv_group_t* grp, uv_uid_t gid) { * is frequently 1024 or 4096, so we can just use that directly. The pwent * will not usually be large. */ for (bufsize = 2000;; bufsize *= 2) { @@ -262,7 +262,7 @@ index 965e7f775250cf9899266bc3aaf62eda69367264..8c08d607884335a2da5cb49f35e3108c if (buf == NULL) return UV_ENOMEM; -@@ -1324,7 +1324,7 @@ int uv_os_get_group(uv_group_t* grp, uv_uid_t gid) { +@@ -1334,7 +1334,7 @@ int uv_os_get_group(uv_group_t* grp, uv_uid_t gid) { members++; } @@ -271,7 +271,7 @@ index 965e7f775250cf9899266bc3aaf62eda69367264..8c08d607884335a2da5cb49f35e3108c if (gr_mem == NULL) { uv__free(buf); return UV_ENOMEM; -@@ -1381,7 +1381,7 @@ int uv_os_environ(uv_env_item_t** envitems, int* count) { +@@ -1391,7 +1391,7 @@ int uv_os_environ(uv_env_item_t** envitems, int* count) { for (i = 0; environ[i] != NULL; i++); @@ -297,10 +297,10 @@ index 5288083ef04fd78d90c34071cc76281adbc310d8..9bd55dd764b845cf8ea441d525b4e136 if (display_name_key == NULL || *display_name_key == NULL) goto out; diff --git a/src/unix/darwin.c b/src/unix/darwin.c -index 5e764a65ee4c71efd61876c70b0e999420f24f61..dc93d236b6b7c6da62dc7aa66cb42ddc125575a2 100644 +index 009efbefaa70ee1e552cf6177893bd412201e276..b1657a2ffdab4e41c7900d6dda92f23bd8d137c2 100644 --- a/src/unix/darwin.c +++ b/src/unix/darwin.c -@@ -217,7 +217,7 @@ int uv_cpu_info(uv_cpu_info_t** cpu_infos, int* count) { +@@ -211,7 +211,7 @@ int uv_cpu_info(uv_cpu_info_t** cpu_infos, int* count) { return UV_EINVAL; /* FIXME(bnoordhuis) Translate error. */ } @@ -310,10 +310,10 @@ index 5e764a65ee4c71efd61876c70b0e999420f24f61..dc93d236b6b7c6da62dc7aa66cb42ddc vm_deallocate(mach_task_self(), (vm_address_t)info, msg_type); return UV_ENOMEM; diff --git a/src/unix/freebsd.c b/src/unix/freebsd.c -index 191bc8bc213ffddb15c5e04baa66e2a0a8d69a3d..1bd63886b823be6451ac013d94e29885795375b7 100644 +index a6de29c558cde45dacc5bba7d75950fe6e57e857..8fb03c7803cd6d8e3c65558bee0be21f7ad07a3c 100644 --- a/src/unix/freebsd.c +++ b/src/unix/freebsd.c -@@ -220,7 +220,7 @@ int uv_cpu_info(uv_cpu_info_t** cpu_infos, int* count) { +@@ -225,7 +225,7 @@ int uv_cpu_info(uv_cpu_info_t** cpu_infos, int* count) { if (sysctlbyname("hw.ncpu", &numcpus, &size, NULL, 0)) return UV__ERR(errno); @@ -322,7 +322,7 @@ index 191bc8bc213ffddb15c5e04baa66e2a0a8d69a3d..1bd63886b823be6451ac013d94e29885 if (!(*cpu_infos)) return UV_ENOMEM; -@@ -237,7 +237,7 @@ int uv_cpu_info(uv_cpu_info_t** cpu_infos, int* count) { +@@ -242,7 +242,7 @@ int uv_cpu_info(uv_cpu_info_t** cpu_infos, int* count) { size = maxcpus * CPUSTATES * sizeof(long); @@ -332,10 +332,10 @@ index 191bc8bc213ffddb15c5e04baa66e2a0a8d69a3d..1bd63886b823be6451ac013d94e29885 uv__free(*cpu_infos); return UV_ENOMEM; diff --git a/src/unix/fs.c b/src/unix/fs.c -index 3a74350f0e5ab6b268b9fb72eda2a4da909f3f5d..22f31f7285c995c981aca0fa5125bc70aeedc151 100644 +index 6d810debf5d469ec3d67420062eeb9b6810137dd..77f3a17ad3d102f0aa2860eaf88602fe9555bc4e 100644 --- a/src/unix/fs.c +++ b/src/unix/fs.c -@@ -136,7 +136,7 @@ extern char *mkdtemp(char *template); /* See issue #740 on AIX < 7 */ +@@ -126,7 +126,7 @@ extern char *mkdtemp(char *template); /* See issue #740 on AIX < 7 */ size_t new_path_len; \ path_len = strlen(path) + 1; \ new_path_len = strlen(new_path) + 1; \ @@ -344,7 +344,16 @@ index 3a74350f0e5ab6b268b9fb72eda2a4da909f3f5d..22f31f7285c995c981aca0fa5125bc70 if (req->path == NULL) \ return UV_ENOMEM; \ req->new_path = req->path + path_len; \ -@@ -498,7 +498,7 @@ static ssize_t uv__fs_scandir(uv_fs_t* req) { +@@ -478,7 +478,7 @@ static ssize_t uv__preadv_or_pwritev(int fd, + dlerror(); /* Clear errors. */ + #endif /* RTLD_DEFAULT */ + if (p == NULL) +- p = is_pread ? uv__preadv_emul : uv__pwritev_emul; ++ p = (void*)(is_pread ? uv__preadv_emul : uv__pwritev_emul); + atomic_store_explicit(cache, (uintptr_t) p, memory_order_relaxed); + } + +@@ -600,7 +600,7 @@ static ssize_t uv__fs_scandir(uv_fs_t* req) { static int uv__fs_opendir(uv_fs_t* req) { uv_dir_t* dir; @@ -353,7 +362,7 @@ index 3a74350f0e5ab6b268b9fb72eda2a4da909f3f5d..22f31f7285c995c981aca0fa5125bc70 if (dir == NULL) goto error; -@@ -522,7 +522,7 @@ static int uv__fs_readdir(uv_fs_t* req) { +@@ -624,7 +624,7 @@ static int uv__fs_readdir(uv_fs_t* req) { unsigned int dirent_idx; unsigned int i; @@ -362,7 +371,7 @@ index 3a74350f0e5ab6b268b9fb72eda2a4da909f3f5d..22f31f7285c995c981aca0fa5125bc70 dirent_idx = 0; while (dirent_idx < dir->nentries) { -@@ -564,7 +564,7 @@ error: +@@ -666,7 +666,7 @@ error: static int uv__fs_closedir(uv_fs_t* req) { uv_dir_t* dir; @@ -371,7 +380,7 @@ index 3a74350f0e5ab6b268b9fb72eda2a4da909f3f5d..22f31f7285c995c981aca0fa5125bc70 if (dir->dir != NULL) { closedir(dir->dir); -@@ -593,7 +593,7 @@ static int uv__fs_statfs(uv_fs_t* req) { +@@ -695,7 +695,7 @@ static int uv__fs_statfs(uv_fs_t* req) { #endif /* defined(__sun) */ return -1; @@ -380,7 +389,7 @@ index 3a74350f0e5ab6b268b9fb72eda2a4da909f3f5d..22f31f7285c995c981aca0fa5125bc70 if (stat_fs == NULL) { errno = ENOMEM; return -1; -@@ -657,7 +657,7 @@ static ssize_t uv__fs_readlink(uv_fs_t* req) { +@@ -759,7 +759,7 @@ static ssize_t uv__fs_readlink(uv_fs_t* req) { maxlen = uv__fs_pathmax_size(req->path); #endif @@ -389,7 +398,7 @@ index 3a74350f0e5ab6b268b9fb72eda2a4da909f3f5d..22f31f7285c995c981aca0fa5125bc70 if (buf == NULL) { errno = ENOMEM; -@@ -677,7 +677,7 @@ static ssize_t uv__fs_readlink(uv_fs_t* req) { +@@ -779,7 +779,7 @@ static ssize_t uv__fs_readlink(uv_fs_t* req) { /* Uncommon case: resize to make room for the trailing nul byte. */ if (len == maxlen) { @@ -398,8 +407,8 @@ index 3a74350f0e5ab6b268b9fb72eda2a4da909f3f5d..22f31f7285c995c981aca0fa5125bc70 if (buf == NULL) return -1; -@@ -700,7 +700,7 @@ static ssize_t uv__fs_realpath(uv_fs_t* req) { - ssize_t len; +@@ -811,7 +811,7 @@ static ssize_t uv__fs_realpath(uv_fs_t* req) { + (void)tmp; len = uv__fs_pathmax_size(req->path); - buf = uv__malloc(len + 1); @@ -407,7 +416,7 @@ index 3a74350f0e5ab6b268b9fb72eda2a4da909f3f5d..22f31f7285c995c981aca0fa5125bc70 if (buf == NULL) { errno = ENOMEM; -@@ -1898,7 +1898,7 @@ int uv_fs_read(uv_loop_t* loop, uv_fs_t* req, +@@ -2042,7 +2042,7 @@ int uv_fs_read(uv_loop_t* loop, uv_fs_t* req, req->bufs = req->bufsml; if (nbufs > ARRAY_SIZE(req->bufsml)) @@ -416,7 +425,7 @@ index 3a74350f0e5ab6b268b9fb72eda2a4da909f3f5d..22f31f7285c995c981aca0fa5125bc70 if (req->bufs == NULL) return UV_ENOMEM; -@@ -2083,7 +2083,7 @@ int uv_fs_write(uv_loop_t* loop, +@@ -2227,7 +2227,7 @@ int uv_fs_write(uv_loop_t* loop, req->nbufs = nbufs; req->bufs = req->bufsml; if (nbufs > ARRAY_SIZE(req->bufsml)) @@ -426,7 +435,7 @@ index 3a74350f0e5ab6b268b9fb72eda2a4da909f3f5d..22f31f7285c995c981aca0fa5125bc70 if (req->bufs == NULL) return UV_ENOMEM; diff --git a/src/unix/fsevents.c b/src/unix/fsevents.c -index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c79b952fe 100644 +index 7fb6bb2ec36ae0b1584a43a2fc0101db54c42f97..0d1c9ebad6f490f3f890d81a66496ff31417e213 100644 --- a/src/unix/fsevents.c +++ b/src/unix/fsevents.c @@ -183,7 +183,7 @@ static void (*pFSEventStreamStop)(FSEventStreamRef); @@ -452,7 +461,7 @@ index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c /* For each handle */ uv_mutex_lock(&state->fsevent_mutex); -@@ -304,7 +304,7 @@ static void uv__fsevents_event_cb(const FSEventStreamRef streamRef, +@@ -300,7 +300,7 @@ static void uv__fsevents_event_cb(const FSEventStreamRef streamRef, continue; } @@ -461,7 +470,7 @@ index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c if (event == NULL) break; -@@ -438,7 +438,7 @@ static void uv__fsevents_reschedule(uv__cf_loop_state_t* state, +@@ -434,7 +434,7 @@ static void uv__fsevents_reschedule(uv__cf_loop_state_t* state, uv_mutex_lock(&state->fsevent_mutex); path_count = state->fsevent_handle_count; if (path_count != 0) { @@ -470,7 +479,7 @@ index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c if (paths == NULL) { uv_mutex_unlock(&state->fsevent_mutex); goto final; -@@ -594,7 +594,7 @@ static int uv__fsevents_loop_init(uv_loop_t* loop) { +@@ -590,7 +590,7 @@ static int uv__fsevents_loop_init(uv_loop_t* loop) { if (err) return err; @@ -479,7 +488,7 @@ index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c if (state == NULL) return UV_ENOMEM; -@@ -696,7 +696,7 @@ void uv__fsevents_loop_delete(uv_loop_t* loop) { +@@ -692,7 +692,7 @@ void uv__fsevents_loop_delete(uv_loop_t* loop) { } /* Destroy state */ @@ -488,7 +497,7 @@ index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c uv_sem_destroy(&state->fsevent_sem); uv_mutex_destroy(&state->fsevent_mutex); pCFRelease(state->signal_source); -@@ -710,8 +710,8 @@ static void* uv__cf_loop_runner(void* arg) { +@@ -706,8 +706,8 @@ static void* uv__cf_loop_runner(void* arg) { uv_loop_t* loop; uv__cf_loop_state_t* state; @@ -499,7 +508,7 @@ index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c state->loop = pCFRunLoopGetCurrent(); pCFRunLoopAddSource(state->loop, -@@ -739,8 +739,8 @@ static void uv__cf_loop_cb(void* arg) { +@@ -735,8 +735,8 @@ static void uv__cf_loop_cb(void* arg) { struct uv__queue split_head; uv__cf_loop_signal_t* s; @@ -510,7 +519,7 @@ index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c uv_mutex_lock(&loop->cf_mutex); uv__queue_move(&loop->cf_signals, &split_head); -@@ -770,7 +770,7 @@ int uv__cf_loop_signal(uv_loop_t* loop, +@@ -766,7 +766,7 @@ int uv__cf_loop_signal(uv_loop_t* loop, uv__cf_loop_signal_t* item; uv__cf_loop_state_t* state; @@ -519,7 +528,7 @@ index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c if (item == NULL) return UV_ENOMEM; -@@ -780,7 +780,7 @@ int uv__cf_loop_signal(uv_loop_t* loop, +@@ -776,7 +776,7 @@ int uv__cf_loop_signal(uv_loop_t* loop, uv_mutex_lock(&loop->cf_mutex); uv__queue_insert_tail(&loop->cf_signals, &item->member); @@ -528,7 +537,7 @@ index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c assert(state != NULL); pCFRunLoopSourceSignal(state->signal_source); pCFRunLoopWakeUp(state->loop); -@@ -814,7 +814,7 @@ int uv__fsevents_init(uv_fs_event_t* handle) { +@@ -815,7 +815,7 @@ int uv__fsevents_init(uv_fs_event_t* handle) { * Events will occur in other thread. * Initialize callback for getting them back into event loop's thread */ @@ -537,7 +546,7 @@ index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c if (handle->cf_cb == NULL) { err = UV_ENOMEM; goto fail_cf_cb_malloc; -@@ -830,7 +830,7 @@ int uv__fsevents_init(uv_fs_event_t* handle) { +@@ -831,7 +831,7 @@ int uv__fsevents_init(uv_fs_event_t* handle) { goto fail_cf_mutex_init; /* Insert handle into the list */ @@ -546,7 +555,7 @@ index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c uv_mutex_lock(&state->fsevent_mutex); uv__queue_insert_tail(&state->fsevent_handles, &handle->cf_member); state->fsevent_handle_count++; -@@ -870,7 +870,7 @@ int uv__fsevents_close(uv_fs_event_t* handle) { +@@ -871,7 +871,7 @@ int uv__fsevents_close(uv_fs_event_t* handle) { return UV_EINVAL; /* Remove handle from the list */ @@ -556,7 +565,7 @@ index df703f3635fc95bab21debc9697dba06a2a44827..c31d08ba37cfd10672ab6a7a8fd38a1c uv__queue_remove(&handle->cf_member); state->fsevent_handle_count--; diff --git a/src/unix/getaddrinfo.c b/src/unix/getaddrinfo.c -index 77337ace9454e032a392c97cb9aa311f15518956..41dc3909969a643e129847ae3a3252d51feadb27 100644 +index b70753436665901c5fc8a4126b9537d01a47ffa0..5a205d0ebd89009472d6062f5173aac1be2f8a87 100644 --- a/src/unix/getaddrinfo.c +++ b/src/unix/getaddrinfo.c @@ -172,7 +172,7 @@ int uv_getaddrinfo(uv_loop_t* loop, @@ -603,10 +612,10 @@ index 837bba6e2fef7b834a8d104d263bef47eaed0950..5e0fa98d104428534e5264a1c6358e3f return UV_ENOMEM; } diff --git a/src/unix/kqueue.c b/src/unix/kqueue.c -index 4d09edc06a0972a32ef66a91100404d95e006e60..c307e6631eefb1effb0e0c304eb400e0cb8d984e 100644 +index 876b717086c6098dda97461ccc50292065d8137d..2dd3b2156f363c73e4ba3ebc7e52367c85f654a8 100644 --- a/src/unix/kqueue.c +++ b/src/unix/kqueue.c -@@ -303,8 +303,8 @@ void uv__io_poll(uv_loop_t* loop, int timeout) { +@@ -336,8 +336,8 @@ void uv__io_poll(uv_loop_t* loop, int timeout) { nevents = 0; assert(loop->watchers != NULL); @@ -617,7 +626,7 @@ index 4d09edc06a0972a32ef66a91100404d95e006e60..c307e6631eefb1effb0e0c304eb400e0 for (i = 0; i < nfds; i++) { ev = events + i; fd = ev->ident; -@@ -326,7 +326,7 @@ void uv__io_poll(uv_loop_t* loop, int timeout) { +@@ -359,7 +359,7 @@ void uv__io_poll(uv_loop_t* loop, int timeout) { /* Skip invalidated events, see uv__platform_invalidate_fd */ if (fd == -1) continue; @@ -627,7 +636,7 @@ index 4d09edc06a0972a32ef66a91100404d95e006e60..c307e6631eefb1effb0e0c304eb400e0 if (w == NULL) { /* File descriptor that we've stopped watching, disarm it. */ diff --git a/src/unix/linux.c b/src/unix/linux.c -index 4164e90dbb0a39457d565a35be2d7890f66a7d71..09b02cd5df6c32a954cbed817111cf3c1874c3db 100644 +index a5f74e8901600412267ce25bc4e739da482423d0..96c8b1dfe060e896f768493448ec20cfb9203592 100644 --- a/src/unix/linux.c +++ b/src/unix/linux.c @@ -514,8 +514,8 @@ static void uv__iou_init(int epollfd, @@ -658,7 +667,7 @@ index 4164e90dbb0a39457d565a35be2d7890f66a7d71..09b02cd5df6c32a954cbed817111cf3c sqelen, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_POPULATE, -@@ -701,7 +701,7 @@ void uv__platform_invalidate_fd(uv_loop_t* loop, int fd) { +@@ -700,7 +700,7 @@ void uv__platform_invalidate_fd(uv_loop_t* loop, int fd) { int i; lfields = uv__get_internal_fields(loop); @@ -667,7 +676,7 @@ index 4164e90dbb0a39457d565a35be2d7890f66a7d71..09b02cd5df6c32a954cbed817111cf3c /* Invalidate events with same file descriptor */ if (inv != NULL) -@@ -776,7 +776,7 @@ static struct uv__io_uring_sqe* uv__iou_get_sqe(struct uv__iou* iou, +@@ -786,7 +786,7 @@ static struct uv__io_uring_sqe* uv__iou_get_sqe(struct uv__iou* iou, return NULL; /* No room in ring buffer. TODO(bnoordhuis) maybe flush it? */ slot = tail & mask; @@ -676,7 +685,7 @@ index 4164e90dbb0a39457d565a35be2d7890f66a7d71..09b02cd5df6c32a954cbed817111cf3c sqe = &sqe[slot]; memset(sqe, 0, sizeof(*sqe)); sqe->user_data = (uintptr_t) req; -@@ -1053,7 +1053,7 @@ int uv__iou_fs_statx(uv_loop_t* loop, +@@ -1063,7 +1063,7 @@ int uv__iou_fs_statx(uv_loop_t* loop, struct uv__statx* statxbuf; struct uv__iou* iou; @@ -685,7 +694,7 @@ index 4164e90dbb0a39457d565a35be2d7890f66a7d71..09b02cd5df6c32a954cbed817111cf3c if (statxbuf == NULL) return 0; -@@ -1117,7 +1117,7 @@ static void uv__iou_fs_statx_post(uv_fs_t* req) { +@@ -1127,7 +1127,7 @@ static void uv__iou_fs_statx_post(uv_fs_t* req) { uv_stat_t* buf; buf = &req->statbuf; @@ -694,7 +703,7 @@ index 4164e90dbb0a39457d565a35be2d7890f66a7d71..09b02cd5df6c32a954cbed817111cf3c req->ptr = NULL; if (req->result == 0) { -@@ -1146,7 +1146,7 @@ static void uv__poll_io_uring(uv_loop_t* loop, struct uv__iou* iou) { +@@ -1156,7 +1156,7 @@ static void uv__poll_io_uring(uv_loop_t* loop, struct uv__iou* iou) { tail = atomic_load_explicit((_Atomic uint32_t*) iou->cqtail, memory_order_acquire); mask = iou->cqmask; @@ -703,16 +712,16 @@ index 4164e90dbb0a39457d565a35be2d7890f66a7d71..09b02cd5df6c32a954cbed817111cf3c nevents = 0; for (i = head; i != tail; i++) { -@@ -1243,7 +1243,7 @@ static void uv__epoll_ctl_prep(int epollfd, - pe = &(*events)[slot]; - *pe = *e; +@@ -1241,7 +1241,7 @@ static void uv__epoll_ctl_prep(int epollfd, + pe = &(*events)[slot]; + *pe = *e; -- sqe = ctl->sqe; -+ sqe = (uv__io_uring_sqe*)ctl->sqe; - sqe = &sqe[slot]; +- sqe = ctl->sqe; ++ sqe = (uv__io_uring_sqe*)ctl->sqe; + sqe = &sqe[slot]; - memset(sqe, 0, sizeof(*sqe)); -@@ -1299,7 +1299,7 @@ static void uv__epoll_ctl_flush(int epollfd, + memset(sqe, 0, sizeof(*sqe)); +@@ -1296,7 +1296,7 @@ static void uv__epoll_ctl_flush(int epollfd, while (*ctl->cqhead != *ctl->cqtail) { slot = (*ctl->cqhead)++ & ctl->cqmask; @@ -793,7 +802,16 @@ index 4164e90dbb0a39457d565a35be2d7890f66a7d71..09b02cd5df6c32a954cbed817111cf3c if (!(*addresses)) { freeifaddrs(addrs); return UV_ENOMEM; -@@ -2517,12 +2517,12 @@ int uv_fs_event_start(uv_fs_event_t* handle, +@@ -2321,7 +2321,7 @@ static int uv__get_cgroupv2_constrained_cpu(const char* cgroup, + static char* uv__cgroup1_find_cpu_controller(const char* cgroup, + int* cgroup_size) { + /* Seek to the cpu controller line. */ +- char* cgroup_cpu = strstr(cgroup, ":cpu,"); ++ char* cgroup_cpu = (char*)strstr(cgroup, ":cpu,"); + + if (cgroup_cpu != NULL) { + /* Skip the controller prefix to the start of the cgroup path. */ +@@ -2647,12 +2647,12 @@ int uv_fs_event_start(uv_fs_event_t* handle, goto no_insert; len = strlen(path) + 1; @@ -809,7 +827,7 @@ index 4164e90dbb0a39457d565a35be2d7890f66a7d71..09b02cd5df6c32a954cbed817111cf3c w->iterating = 0; RB_INSERT(watcher_root, uv__inotify_watchers(loop), w); diff --git a/src/unix/loop.c b/src/unix/loop.c -index a9468e8e19cbede795032980c47eb83aee1e0c68..3babe4d701949ebc69d74f7dedee33c777d89892 100644 +index 179ee999d8052e779dc692aeb5b673d210aaa997..006db94d0080507bf3d52bf206bffbbc812cc375 100644 --- a/src/unix/loop.c +++ b/src/unix/loop.c @@ -148,7 +148,7 @@ int uv_loop_fork(uv_loop_t* loop) { @@ -865,10 +883,10 @@ index 9c863b6c90dad9864cb8341c2b6203c1390a9487..2aa61e2ee3321d91ba84887c7ed6dcfa return UV_ENOMEM; diff --git a/src/unix/pipe.c b/src/unix/pipe.c -index fca364426f809e2085a3e6c4d984cfb88de548d3..ea26ce45c9b4c298528ab45cd4e8a21917f4be0e 100644 +index 1f9acfac41e9c561cbd823c27863d9a3dc52f7b8..7627ee39c1be869d4d2bbf93dbae0bbd52a4464f 100644 --- a/src/unix/pipe.c +++ b/src/unix/pipe.c -@@ -104,7 +104,7 @@ int uv_pipe_bind2(uv_pipe_t* handle, +@@ -109,7 +109,7 @@ int uv_pipe_bind2(uv_pipe_t* handle, if (*name == '\0') { addrlen = offsetof(struct sockaddr_un, sun_path) + namelen; } else { @@ -877,7 +895,16 @@ index fca364426f809e2085a3e6c4d984cfb88de548d3..ea26ce45c9b4c298528ab45cd4e8a219 if (pipe_fname == NULL) return UV_ENOMEM; memcpy(pipe_fname, name, namelen); -@@ -410,7 +410,7 @@ int uv_pipe_pending_count(uv_pipe_t* handle) { +@@ -377,7 +377,7 @@ static int uv__pipe_getsockpeername(const uv_pipe_t* handle, + slop = 0; + addrlen -= offsetof(struct sockaddr_un, sun_path); + } else { +- p = memchr(sa.sun_path, '\0', sizeof(sa.sun_path)); ++ p = (char*)memchr(sa.sun_path, '\0', sizeof(sa.sun_path)); + if (p == NULL) + p = ARRAY_END(sa.sun_path); + addrlen = p - sa.sun_path; +@@ -425,7 +425,7 @@ int uv_pipe_pending_count(uv_pipe_t* handle) { if (handle->queued_fds == NULL) return 1; @@ -886,7 +913,7 @@ index fca364426f809e2085a3e6c4d984cfb88de548d3..ea26ce45c9b4c298528ab45cd4e8a219 return queued_fds->offset + 1; } -@@ -447,7 +447,7 @@ int uv_pipe_chmod(uv_pipe_t* handle, int mode) { +@@ -462,7 +462,7 @@ int uv_pipe_chmod(uv_pipe_t* handle, int mode) { if (r != UV_ENOBUFS) return r; @@ -931,10 +958,10 @@ index 2e016c2fbaed2eeccd78080969a86aff821a4251..b71eee3f01a3f30b3b5efef539194139 abort(); diff --git a/src/unix/process.c b/src/unix/process.c -index 4812a90f2f5047fc18ddb9b6f70e3f380641ddde..8271d513b15588a3a73401cc2df3be160940ab10 100644 +index f2038f2c0e823e1d5ebf3331b1d93c12fe23e83e..e1349689065b4593a929509a3daafa5a48916768 100644 --- a/src/unix/process.c +++ b/src/unix/process.c -@@ -423,7 +423,7 @@ static int posix_spawn_can_use_setsid; +@@ -420,7 +420,7 @@ static int posix_spawn_can_use_setsid; static void uv__spawn_init_posix_spawn_fncs(void) { /* Try to locate all non-portable functions at runtime */ posix_spawn_fncs.file_actions.addchdir_np = @@ -943,7 +970,7 @@ index 4812a90f2f5047fc18ddb9b6f70e3f380641ddde..8271d513b15588a3a73401cc2df3be16 } -@@ -989,7 +989,7 @@ int uv_spawn(uv_loop_t* loop, +@@ -986,7 +986,7 @@ int uv_spawn(uv_loop_t* loop, err = UV_ENOMEM; pipes = pipes_storage; if (stdio_count > (int) ARRAY_SIZE(pipes_storage)) @@ -979,7 +1006,7 @@ index 66ba8d74ec22b72d318b91d82365f5b9693feb3c..9ef18df01a51aa6a26ae6d1d9660a819 while (p < pe) { diff --git a/src/unix/stream.c b/src/unix/stream.c -index 28c4d5463c4622725a433b8807e5e7bde580dadd..265ddade7aec129eb9dbf07cde2a16a0e341d1a7 100644 +index 18763b4744c30a93f067a911b8059984bf36eb86..2d2b5d2f45e673d495ac814fbc1c6a877950ab9b 100644 --- a/src/unix/stream.c +++ b/src/unix/stream.c @@ -123,7 +123,7 @@ static void uv__stream_osx_interrupt_select(uv_stream_t* stream) { @@ -1020,7 +1047,7 @@ index 28c4d5463c4622725a433b8807e5e7bde580dadd..265ddade7aec129eb9dbf07cde2a16a0 /* Read first */ server->accepted_fd = queued_fds->fds[0]; -@@ -942,11 +942,12 @@ static int uv__stream_queue_fd(uv_stream_t* stream, int fd) { +@@ -943,11 +943,12 @@ static int uv__stream_queue_fd(uv_stream_t* stream, int fd) { uv__stream_queued_fds_t* queued_fds; unsigned int queue_size; @@ -1036,7 +1063,7 @@ index 28c4d5463c4622725a433b8807e5e7bde580dadd..265ddade7aec129eb9dbf07cde2a16a0 if (queued_fds == NULL) return UV_ENOMEM; queued_fds->size = queue_size; -@@ -956,9 +957,9 @@ static int uv__stream_queue_fd(uv_stream_t* stream, int fd) { +@@ -957,9 +958,9 @@ static int uv__stream_queue_fd(uv_stream_t* stream, int fd) { /* Grow */ } else if (queued_fds->size == queued_fds->offset) { queue_size = queued_fds->size + 8; @@ -1049,7 +1076,16 @@ index 28c4d5463c4622725a433b8807e5e7bde580dadd..265ddade7aec129eb9dbf07cde2a16a0 /* * Allocation failure, report back. -@@ -1356,7 +1357,7 @@ int uv_write2(uv_write_t* req, +@@ -999,7 +1000,7 @@ static int uv__stream_recv_cmsg(uv_stream_t* stream, struct msghdr* msg) { + assert(count % sizeof(fd) == 0); + count /= sizeof(fd); + +- p = (void*) CMSG_DATA(cmsg); ++ p = (char*) CMSG_DATA(cmsg); + pe = p + count * sizeof(fd); + + while (p < pe) { +@@ -1361,7 +1362,7 @@ int uv_write2(uv_write_t* req, req->bufs = req->bufsml; if (nbufs > ARRAY_SIZE(req->bufsml)) @@ -1058,7 +1094,7 @@ index 28c4d5463c4622725a433b8807e5e7bde580dadd..265ddade7aec129eb9dbf07cde2a16a0 if (req->bufs == NULL) return UV_ENOMEM; -@@ -1490,7 +1491,7 @@ int uv___stream_fd(const uv_stream_t* handle) { +@@ -1495,7 +1496,7 @@ int uv___stream_fd(const uv_stream_t* handle) { handle->type == UV_TTY || handle->type == UV_NAMED_PIPE); @@ -1067,7 +1103,7 @@ index 28c4d5463c4622725a433b8807e5e7bde580dadd..265ddade7aec129eb9dbf07cde2a16a0 if (s != NULL) return s->fd; -@@ -1508,7 +1509,7 @@ void uv__stream_close(uv_stream_t* handle) { +@@ -1513,7 +1514,7 @@ void uv__stream_close(uv_stream_t* handle) { if (handle->select != NULL) { uv__stream_select_t* s; @@ -1076,7 +1112,7 @@ index 28c4d5463c4622725a433b8807e5e7bde580dadd..265ddade7aec129eb9dbf07cde2a16a0 uv_sem_post(&s->close_sem); uv_sem_post(&s->async_sem); -@@ -1543,7 +1544,7 @@ void uv__stream_close(uv_stream_t* handle) { +@@ -1548,7 +1549,7 @@ void uv__stream_close(uv_stream_t* handle) { /* Close all queued fds */ if (handle->queued_fds != NULL) { @@ -1086,10 +1122,10 @@ index 28c4d5463c4622725a433b8807e5e7bde580dadd..265ddade7aec129eb9dbf07cde2a16a0 uv__close(queued_fds->fds[i]); uv__free(handle->queued_fds); diff --git a/src/unix/tcp.c b/src/unix/tcp.c -index 799fca77aa53920e86c128336f19903f522c3b6a..6fe6361c81e39133b605edfedd88da840ba9ba20 100644 +index 98970d75278e312578facdfd06e349fdf51c0ba3..018ec144c78e9dcc7cbebcdaa432b31832f6e902 100644 --- a/src/unix/tcp.c +++ b/src/unix/tcp.c -@@ -295,7 +295,7 @@ int uv__tcp_connect(uv_connect_t* req, +@@ -301,7 +301,7 @@ int uv__tcp_connect(uv_connect_t* req, memcpy(&tmp6, addr, sizeof(tmp6)); if (tmp6.sin6_scope_id == 0) { tmp6.sin6_scope_id = uv__ipv6_link_local_scope_id(); @@ -1122,10 +1158,10 @@ index f05e6fe0f7dd5ac579f6a9d6f93bffb99e1bcbc2..20409541de3cb300504b823472a73bc9 return UV_ENOMEM; diff --git a/src/unix/udp.c b/src/unix/udp.c -index c2814512a5f507ceb9e764cdb7c6ff3d36e77974..cbee16b22a36b1c82e74f6a81c3811052e9b8482 100644 +index f6640fc72318635d9c1aba6015646cf241747774..50506752d0b168aec9507cd36ac81586bb912981 100644 --- a/src/unix/udp.c +++ b/src/unix/udp.c -@@ -191,11 +191,11 @@ static int uv__udp_recvmmsg(uv_udp_t* handle, uv_buf_t* buf) { +@@ -198,11 +198,11 @@ static int uv__udp_recvmmsg(uv_udp_t* handle, uv_buf_t* buf) { if (msgs[k].msg_hdr.msg_flags & MSG_TRUNC) flags |= UV_UDP_PARTIAL; @@ -1139,7 +1175,7 @@ index c2814512a5f507ceb9e764cdb7c6ff3d36e77974..cbee16b22a36b1c82e74f6a81c381105 flags); } -@@ -245,7 +245,7 @@ static void uv__udp_recvmsg(uv_udp_t* handle) { +@@ -252,7 +252,7 @@ static void uv__udp_recvmsg(uv_udp_t* handle) { memset(&peer, 0, sizeof(peer)); h.msg_name = &peer; h.msg_namelen = sizeof(peer); @@ -1148,7 +1184,7 @@ index c2814512a5f507ceb9e764cdb7c6ff3d36e77974..cbee16b22a36b1c82e74f6a81c381105 h.msg_iovlen = 1; do { -@@ -719,7 +719,7 @@ int uv__udp_send(uv_udp_send_t* req, +@@ -754,7 +754,7 @@ int uv__udp_send(uv_udp_send_t* req, req->bufs = req->bufsml; if (nbufs > ARRAY_SIZE(req->bufsml)) @@ -1156,7 +1192,7 @@ index c2814512a5f507ceb9e764cdb7c6ff3d36e77974..cbee16b22a36b1c82e74f6a81c381105 + req->bufs = (uv_buf_t*)uv__malloc(nbufs * sizeof(bufs[0])); if (req->bufs == NULL) { - uv__req_unregister(handle->loop, req); + uv__req_unregister(handle->loop); diff --git a/src/uv-common.c b/src/uv-common.c index 2200fe3f0a41e295acb426f39ccc9f0133994675..69e95801a18104ea910abf86db236d85f62afb66 100644 --- a/src/uv-common.c @@ -1271,7 +1307,7 @@ index 7880c9595be1f66ea0dcbdbcc4a91ce40577587f..d88400f0e819d74998e13f60f13c67a6 lib->handle = LoadLibraryExW(filename_w, NULL, LOAD_WITH_ALTERED_SEARCH_PATH); if (lib->handle == NULL) { diff --git a/src/win/fs-event.c b/src/win/fs-event.c -index fce411813e937018f636aefd6b8c172eebc7532b..dba981c68821ece88e0beb80422b214b77e84b79 100644 +index 7ab407e05345f96a2c5f577e51dc9b21b2f610b9..3754437b4989d67f688153e066ef047268911708 100644 --- a/src/win/fs-event.c +++ b/src/win/fs-event.c @@ -73,7 +73,7 @@ static void uv__relative_path(const WCHAR* filename, @@ -1306,10 +1342,10 @@ index 0b532af12d4371c2311bd50a66913287a0716f43..703a8d8f87de1089ac8b18bd817d416d uv_fatal_error(ERROR_OUTOFMEMORY, "uv__malloc"); } diff --git a/src/win/fs.c b/src/win/fs.c -index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc370142104cc0de77 100644 +index d87246e0ff34aae2c1e456e2530aa089d3031b29..b90d2368aa769cb66f9367e97f004fa8bd4da3c0 100644 --- a/src/win/fs.c +++ b/src/win/fs.c -@@ -280,7 +280,7 @@ INLINE static int fs__readlink_handle(HANDLE handle, +@@ -302,7 +302,7 @@ INLINE static int fs__readlink_handle(HANDLE handle, } assert(target_ptr == NULL || *target_ptr == NULL); @@ -1318,7 +1354,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 } -@@ -323,7 +323,7 @@ INLINE static int fs__capture_path(uv_fs_t* req, const char* path, +@@ -345,7 +345,7 @@ INLINE static int fs__capture_path(uv_fs_t* req, const char* path, return 0; } @@ -1327,7 +1363,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 if (buf == NULL) { return ERROR_OUTOFMEMORY; } -@@ -331,7 +331,7 @@ INLINE static int fs__capture_path(uv_fs_t* req, const char* path, +@@ -353,7 +353,7 @@ INLINE static int fs__capture_path(uv_fs_t* req, const char* path, pos = buf; if (path != NULL) { @@ -1336,7 +1372,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 req->file.pathw = pos; pos += pathw_len; } else { -@@ -339,7 +339,7 @@ INLINE static int fs__capture_path(uv_fs_t* req, const char* path, +@@ -361,7 +361,7 @@ INLINE static int fs__capture_path(uv_fs_t* req, const char* path, } if (new_path != NULL) { @@ -1345,7 +1381,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 req->fs.info.new_pathw = pos; pos += new_pathw_len; } else { -@@ -1390,13 +1390,13 @@ void fs__scandir(uv_fs_t* req) { +@@ -1447,13 +1447,13 @@ void fs__scandir(uv_fs_t* req) { continue; /* Compute the space required to store the filename as WTF-8. */ @@ -1361,7 +1397,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 uv__realloc(dirents, new_dirents_size * sizeof *dirents); if (new_dirents == NULL) -@@ -1410,7 +1410,7 @@ void fs__scandir(uv_fs_t* req) { +@@ -1467,7 +1467,7 @@ void fs__scandir(uv_fs_t* req) { * includes room for the first character of the filename, but `utf8_len` * doesn't count the NULL terminator at this point. */ @@ -1370,7 +1406,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 if (dirent == NULL) goto out_of_memory_error; -@@ -1418,7 +1418,7 @@ void fs__scandir(uv_fs_t* req) { +@@ -1475,7 +1475,7 @@ void fs__scandir(uv_fs_t* req) { /* Convert file name to UTF-8. */ wtf8 = &dirent->d_name[0]; @@ -1379,7 +1415,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 goto out_of_memory_error; /* Fill out the type field. */ -@@ -1512,7 +1512,7 @@ void fs__opendir(uv_fs_t* req) { +@@ -1569,7 +1569,7 @@ void fs__opendir(uv_fs_t* req) { goto error; } @@ -1388,7 +1424,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 if (dir == NULL) { SET_REQ_UV_ERROR(req, UV_ENOMEM, ERROR_OUTOFMEMORY); goto error; -@@ -1527,7 +1527,7 @@ void fs__opendir(uv_fs_t* req) { +@@ -1584,7 +1584,7 @@ void fs__opendir(uv_fs_t* req) { else fmt = L"%s\\*"; @@ -1397,7 +1433,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 if (find_path == NULL) { SET_REQ_UV_ERROR(req, UV_ENOMEM, ERROR_OUTOFMEMORY); goto error; -@@ -1564,7 +1564,7 @@ void fs__readdir(uv_fs_t* req) { +@@ -1621,7 +1621,7 @@ void fs__readdir(uv_fs_t* req) { int r; req->flags |= UV_FS_FREE_PTR; @@ -1406,7 +1442,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 dirents = dir->dirents; memset(dirents, 0, dir->nentries * sizeof(*dir->dirents)); find_data = &dir->find_data; -@@ -1621,7 +1621,7 @@ error: +@@ -1678,7 +1678,7 @@ error: void fs__closedir(uv_fs_t* req) { uv_dir_t* dir; @@ -1415,7 +1451,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 FindClose(dir->dir_handle); uv__free(req->ptr); SET_REQ_RESULT(req, 0); -@@ -2612,7 +2612,7 @@ static ssize_t fs__realpath_handle(HANDLE handle, char** realpath_ptr) { +@@ -2754,7 +2754,7 @@ static ssize_t fs__realpath_handle(HANDLE handle, char** realpath_ptr) { return -1; } @@ -1424,7 +1460,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 if (w_realpath_buf == NULL) { SetLastError(ERROR_OUTOFMEMORY); return -1; -@@ -2645,7 +2645,7 @@ static ssize_t fs__realpath_handle(HANDLE handle, char** realpath_ptr) { +@@ -2787,7 +2787,7 @@ static ssize_t fs__realpath_handle(HANDLE handle, char** realpath_ptr) { } assert(*realpath_ptr == NULL); @@ -1433,7 +1469,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 uv__free(w_realpath_buf); return r; } -@@ -2725,7 +2725,7 @@ retry_get_disk_free_space: +@@ -2867,7 +2867,7 @@ retry_get_disk_free_space: } len = MAX_PATH + 1; @@ -1442,7 +1478,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 if (pathw == NULL) { SET_REQ_UV_ERROR(req, UV_ENOMEM, ERROR_OUTOFMEMORY); return; -@@ -2741,7 +2741,7 @@ retry_get_full_path_name: +@@ -2883,7 +2883,7 @@ retry_get_full_path_name: return; } else if (ret > len) { len = ret; @@ -1451,7 +1487,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 if (pathw == NULL) { SET_REQ_UV_ERROR(req, UV_ENOMEM, ERROR_OUTOFMEMORY); return; -@@ -2757,7 +2757,7 @@ retry_get_full_path_name: +@@ -2899,7 +2899,7 @@ retry_get_full_path_name: uv__free(pathw); } @@ -1460,7 +1496,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 if (stat_fs == NULL) { SET_REQ_UV_ERROR(req, UV_ENOMEM, ERROR_OUTOFMEMORY); return; -@@ -2916,7 +2916,7 @@ int uv_fs_read(uv_loop_t* loop, +@@ -3058,7 +3058,7 @@ int uv_fs_read(uv_loop_t* loop, req->fs.info.nbufs = nbufs; req->fs.info.bufs = req->fs.info.bufsml; if (nbufs > ARRAY_SIZE(req->fs.info.bufsml)) @@ -1469,7 +1505,7 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 if (req->fs.info.bufs == NULL) { SET_REQ_UV_ERROR(req, UV_ENOMEM, ERROR_OUTOFMEMORY); -@@ -2949,7 +2949,7 @@ int uv_fs_write(uv_loop_t* loop, +@@ -3091,7 +3091,7 @@ int uv_fs_write(uv_loop_t* loop, req->fs.info.nbufs = nbufs; req->fs.info.bufs = req->fs.info.bufsml; if (nbufs > ARRAY_SIZE(req->fs.info.bufsml)) @@ -1479,51 +1515,56 @@ index b73c17d8c1c831c29aef6454cb0525bb0b951071..7e2367e8c1c6ad96af55a2cc37014210 if (req->fs.info.bufs == NULL) { SET_REQ_UV_ERROR(req, UV_ENOMEM, ERROR_OUTOFMEMORY); diff --git a/src/win/getaddrinfo.c b/src/win/getaddrinfo.c -index 8b8406ada8e7434e291b2e50caf4ed7f36613fa0..5bc63d8e19411b967a2acf5c24b34b9b17323ccc 100644 +index f20e10d49d974ac547f44ea7a9c3e9a0a84fcfa5..1181695550d3ed3f4cad9ff059a53d9af1fd854a 100644 --- a/src/win/getaddrinfo.c +++ b/src/win/getaddrinfo.c -@@ -132,7 +132,7 @@ static void uv__getaddrinfo_done(struct uv__work* w, int status) { - addrinfo_len += addrinfo_struct_len + - ALIGNED_SIZE(addrinfow_ptr->ai_addrlen); +@@ -129,7 +129,7 @@ static void uv__getaddrinfo_done(struct uv__work* w, int status) { + cur_off += addrinfow_ptr->ai_addrlen; if (addrinfow_ptr->ai_canonname != NULL) { -- name_len = uv_utf16_length_as_wtf8(addrinfow_ptr->ai_canonname, -1); -+ name_len = uv_utf16_length_as_wtf8((const uint16_t*)addrinfow_ptr->ai_canonname, -1); + ssize_t name_len = +- uv_utf16_length_as_wtf8(addrinfow_ptr->ai_canonname, -1); ++ uv_utf16_length_as_wtf8((const uint16_t*)addrinfow_ptr->ai_canonname, -1); if (name_len < 0) { req->retcode = name_len; goto complete; -@@ -281,9 +281,9 @@ int uv_getaddrinfo(uv_loop_t* loop, +@@ -141,7 +141,7 @@ static void uv__getaddrinfo_done(struct uv__work* w, int status) { + + /* allocate memory for addrinfo results */ + addrinfo_len = cur_off; +- alloc_ptr = uv__malloc(addrinfo_len); ++ alloc_ptr = (char*)uv__malloc(addrinfo_len); + + /* do conversions */ + if (alloc_ptr != NULL) { +@@ -292,7 +292,7 @@ int uv_getaddrinfo(uv_loop_t* loop, } /* allocate memory for inputs, and partition it as needed */ -- alloc_ptr = uv__malloc(ALIGNED_SIZE(nodesize * sizeof(WCHAR)) + -- ALIGNED_SIZE(servicesize * sizeof(WCHAR)) + -- hintssize); -+ alloc_ptr = (char*)uv__malloc(ALIGNED_SIZE(nodesize * sizeof(WCHAR)) + -+ ALIGNED_SIZE(servicesize * sizeof(WCHAR)) + -+ hintssize); - if (!alloc_ptr) +- req->alloc = uv__malloc(off); ++ req->alloc = (char*)uv__malloc(off); + if (!req->alloc) return UV_ENOMEM; -@@ -294,7 +294,7 @@ int uv_getaddrinfo(uv_loop_t* loop, +@@ -300,7 +300,7 @@ int uv_getaddrinfo(uv_loop_t* loop, * request. The node here has been converted to ascii. */ if (node != NULL) { - req->node = (WCHAR*) alloc_ptr; -- uv_wtf8_to_utf16(node, (WCHAR*) alloc_ptr, nodesize); -+ uv_wtf8_to_utf16(node, (uint16_t*) alloc_ptr, nodesize); - alloc_ptr += ALIGNED_SIZE(nodesize * sizeof(WCHAR)); + req->node = (WCHAR*) req->alloc; +- uv_wtf8_to_utf16(node, req->node, nodesize); ++ uv_wtf8_to_utf16(node, (uint16_t*)req->node, nodesize); } else { req->node = NULL; -@@ -304,7 +304,7 @@ int uv_getaddrinfo(uv_loop_t* loop, + } +@@ -309,7 +309,7 @@ int uv_getaddrinfo(uv_loop_t* loop, * the req. */ if (service != NULL) { - req->service = (WCHAR*) alloc_ptr; -- uv_wtf8_to_utf16(service, (WCHAR*) alloc_ptr, servicesize); -+ uv_wtf8_to_utf16(service, (uint16_t*) alloc_ptr, servicesize); - alloc_ptr += ALIGNED_SIZE(servicesize * sizeof(WCHAR)); + req->service = (WCHAR*) ((char*) req->alloc + serviceoff); +- uv_wtf8_to_utf16(service, req->service, servicesize); ++ uv_wtf8_to_utf16(service, (uint16_t*)req->service, servicesize); } else { req->service = NULL; + } diff --git a/src/win/pipe.c b/src/win/pipe.c -index 3c8abe1c28ce369dc9fbc91936f6a97b0c178fdc..27868221455dcbb90c00066fd8b716d2c0a4d371 100644 +index 76ea169e19ff0a3fc92e8b3be981b21b39b03e94..8226369294299fd2a9d7d05a91d3d711015b7fd0 100644 --- a/src/win/pipe.c +++ b/src/win/pipe.c @@ -739,7 +739,7 @@ int uv_pipe_bind2(uv_pipe_t* handle, @@ -1553,7 +1594,7 @@ index 3c8abe1c28ce369dc9fbc91936f6a97b0c178fdc..27868221455dcbb90c00066fd8b716d2 if (!req->u.connect.name) { uv_fatal_error(ERROR_OUTOFMEMORY, "uv__malloc"); } -@@ -1548,7 +1548,7 @@ static int uv__build_coalesced_write_req(uv_write_t* user_req, +@@ -1547,7 +1547,7 @@ static int uv__build_coalesced_write_req(uv_write_t* user_req, data_length; /* (c) */ /* Allocate buffer. */ @@ -1562,7 +1603,7 @@ index 3c8abe1c28ce369dc9fbc91936f6a97b0c178fdc..27868221455dcbb90c00066fd8b716d2 if (heap_buffer == NULL) return ERROR_NOT_ENOUGH_MEMORY; /* Maps to UV_ENOMEM. */ -@@ -1797,7 +1797,7 @@ int uv__pipe_write_ipc(uv_loop_t* loop, +@@ -1796,7 +1796,7 @@ int uv__pipe_write_ipc(uv_loop_t* loop, bufs = stack_bufs; } else { /* Use heap-allocated buffer array. */ @@ -1571,7 +1612,7 @@ index 3c8abe1c28ce369dc9fbc91936f6a97b0c178fdc..27868221455dcbb90c00066fd8b716d2 if (bufs == NULL) return ERROR_NOT_ENOUGH_MEMORY; /* Maps to UV_ENOMEM. */ } -@@ -2494,7 +2494,7 @@ static int uv__pipe_getname(const uv_pipe_t* handle, char* buffer, size_t* size) +@@ -2545,7 +2545,7 @@ static int uv__pipe_getname(const uv_pipe_t* handle, char* buffer, size_t* size) FileNameInformation); if (nt_status == STATUS_BUFFER_OVERFLOW) { name_size = sizeof(*name_info) + tmp_name_info.FileNameLength; @@ -1581,10 +1622,10 @@ index 3c8abe1c28ce369dc9fbc91936f6a97b0c178fdc..27868221455dcbb90c00066fd8b716d2 *size = 0; return UV_ENOMEM; diff --git a/src/win/process.c b/src/win/process.c -index 4f0af83e83442bb905762361775abe05ab6beb4e..25f1075745267785cdd7d7de83d9c62750305852 100644 +index 79bec0090cc94bfe20dab722cf2d8135ddd03cb8..5a648494ae03688f6a56705f2c3d65b026605818 100644 --- a/src/win/process.c +++ b/src/win/process.c -@@ -547,14 +547,14 @@ int make_program_args(char** args, int verbatim_arguments, WCHAR** dst_ptr) { +@@ -546,14 +546,14 @@ int make_program_args(char** args, int verbatim_arguments, WCHAR** dst_ptr) { dst_len = dst_len * 2 + arg_count * 2; /* Allocate buffer for the final command line. */ @@ -1601,7 +1642,7 @@ index 4f0af83e83442bb905762361775abe05ab6beb4e..25f1075745267785cdd7d7de83d9c627 if (temp_buffer == NULL) { err = UV_ENOMEM; goto error; -@@ -568,7 +568,7 @@ int make_program_args(char** args, int verbatim_arguments, WCHAR** dst_ptr) { +@@ -567,7 +567,7 @@ int make_program_args(char** args, int verbatim_arguments, WCHAR** dst_ptr) { arg_len = uv_wtf8_length_as_utf16(*arg); assert(arg_len > 0); assert(temp_buffer_len >= (size_t) arg_len); @@ -1610,43 +1651,34 @@ index 4f0af83e83442bb905762361775abe05ab6beb4e..25f1075745267785cdd7d7de83d9c627 if (verbatim_arguments) { /* Copy verbatim. */ -@@ -596,8 +596,8 @@ error: +@@ -595,8 +595,8 @@ error: - int env_strncmp(const wchar_t* a, int na, const wchar_t* b) { + static int env_strncmp(const wchar_t* a, int na, const wchar_t* b) { - wchar_t* a_eq; - wchar_t* b_eq; + const wchar_t* a_eq; + const wchar_t* b_eq; - wchar_t* A; - wchar_t* B; int nb; -@@ -614,8 +614,8 @@ int env_strncmp(const wchar_t* a, int na, const wchar_t* b) { - assert(b_eq); - nb = b_eq - b; - -- A = _alloca((na+1) * sizeof(wchar_t)); -- B = _alloca((nb+1) * sizeof(wchar_t)); -+ A = (wchar_t*)_alloca((na+1) * sizeof(wchar_t)); -+ B = (wchar_t*)_alloca((nb+1) * sizeof(wchar_t)); - - r = LCMapStringW(LOCALE_INVARIANT, LCMAP_UPPERCASE, a, na, A, na); - assert(r==na); -@@ -688,11 +688,11 @@ int make_program_env(char* env_block[], WCHAR** dst_ptr) { - } + int r; + +@@ -668,12 +668,12 @@ int make_program_env(char* env_block[], WCHAR** dst_ptr) { /* second pass: copy to UTF-16 environment block */ -- dst_copy = uv__malloc(env_len * sizeof(WCHAR)); -+ dst_copy = (WCHAR*)uv__malloc(env_len * sizeof(WCHAR)); - if (dst_copy == NULL && env_len > 0) { + len = env_block_count * sizeof(WCHAR*); +- p = uv__malloc(len + env_len * sizeof(WCHAR)); ++ p = (char*)uv__malloc(len + env_len * sizeof(WCHAR)); + if (p == NULL) { return UV_ENOMEM; } -- env_copy = _alloca(env_block_count * sizeof(WCHAR*)); -+ env_copy = (WCHAR**)_alloca(env_block_count * sizeof(WCHAR*)); +- env_copy = (void*) &p[0]; +- dst_copy = (void*) &p[len]; ++ env_copy = (WCHAR**) &p[0]; ++ dst_copy = (WCHAR*) &p[len]; ptr = dst_copy; ptr_copy = env_copy; -@@ -702,7 +702,7 @@ int make_program_env(char* env_block[], WCHAR** dst_ptr) { +@@ -683,7 +683,7 @@ int make_program_env(char* env_block[], WCHAR** dst_ptr) { len = uv_wtf8_length_as_utf16(*env); assert(len > 0); assert((size_t) len <= env_len - (ptr - dst_copy)); @@ -1655,20 +1687,20 @@ index 4f0af83e83442bb905762361775abe05ab6beb4e..25f1075745267785cdd7d7de83d9c627 *ptr_copy++ = ptr; ptr += len; } -@@ -740,7 +740,7 @@ int make_program_env(char* env_block[], WCHAR** dst_ptr) { +@@ -721,7 +721,7 @@ int make_program_env(char* env_block[], WCHAR** dst_ptr) { } /* final pass: copy, in sort order, and inserting required variables */ - dst = uv__malloc((1+env_len) * sizeof(WCHAR)); + dst = (WCHAR*)uv__malloc((1+env_len) * sizeof(WCHAR)); if (!dst) { - uv__free(dst_copy); + uv__free(p); return UV_ENOMEM; diff --git a/src/win/tcp.c b/src/win/tcp.c -index 187f36e2a61c870b0d16e17e9d4a9e1161ba8851..d8da4d941a51b0625fc0c072342ec4edf74c0ea3 100644 +index c452c12e8f06f13e519a198f786eec63faebe2bf..2b43d03ea227b87a717b128ed0d8f0767c8233fd 100644 --- a/src/win/tcp.c +++ b/src/win/tcp.c -@@ -585,7 +585,7 @@ int uv__tcp_listen(uv_tcp_t* handle, int backlog, uv_connection_cb cb) { +@@ -597,7 +597,7 @@ int uv__tcp_listen(uv_tcp_t* handle, int backlog, uv_connection_cb cb) { if (handle->tcp.serv.accept_reqs == NULL) { handle->tcp.serv.accept_reqs = @@ -1678,10 +1710,19 @@ index 187f36e2a61c870b0d16e17e9d4a9e1161ba8851..d8da4d941a51b0625fc0c072342ec4ed uv_fatal_error(ERROR_OUTOFMEMORY, "uv__malloc"); } diff --git a/src/win/thread.c b/src/win/thread.c -index 57c25e8f5a861c9d8a4c402c260d3ac235200423..57f1698f595e2410a51044f7f228b5a235206819 100644 +index bf39b88633b0d87de02b56579121d384aa5f2d3e..dd958ccd782772869d5448d788a563c1526a89f6 100644 --- a/src/win/thread.c +++ b/src/win/thread.c -@@ -98,7 +98,7 @@ static UINT __stdcall uv__thread_start(void* arg) { +@@ -39,7 +39,7 @@ typedef struct { + } uv__once_data_t; + + static BOOL WINAPI uv__once_inner(INIT_ONCE *once, void* param, void** context) { +- uv__once_data_t* data = param; ++ uv__once_data_t* data = (uv__once_data_t*)param; + + data->callback(); + +@@ -76,7 +76,7 @@ static UINT __stdcall uv__thread_start(void* arg) { struct thread_ctx *ctx_p; struct thread_ctx ctx; @@ -1690,7 +1731,7 @@ index 57c25e8f5a861c9d8a4c402c260d3ac235200423..57f1698f595e2410a51044f7f228b5a2 ctx = *ctx_p; uv__free(ctx_p); -@@ -141,7 +141,7 @@ int uv_thread_create_ex(uv_thread_t* tid, +@@ -119,7 +119,7 @@ int uv_thread_create_ex(uv_thread_t* tid, return UV_EINVAL; } @@ -1700,7 +1741,7 @@ index 57c25e8f5a861c9d8a4c402c260d3ac235200423..57f1698f595e2410a51044f7f228b5a2 return UV_ENOMEM; diff --git a/src/win/tty.c b/src/win/tty.c -index 9f8dd698d761248a994e66c4039b35cb216f1d82..0b51b6c82fad711480c28ad6cee7125ddb72ca87 100644 +index c0339ded2e4b763c3b09331e3acd58bf43dccc28..145706e27a7b596dc003d43d94b54f6ceb0eabee 100644 --- a/src/win/tty.c +++ b/src/win/tty.c @@ -528,7 +528,7 @@ static DWORD CALLBACK uv_tty_line_read_thread(void* data) { @@ -1731,7 +1772,7 @@ index 9f8dd698d761248a994e66c4039b35cb216f1d82..0b51b6c82fad711480c28ad6cee7125d &last_key_buf, &char_len)) diff --git a/src/win/util.c b/src/win/util.c -index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abeaf735b8be 100644 +index e0dba1aaa94e285a6e10f57d3b923b53126767d8..1aca4e9a081cd7e4481503d59f39872acbbc6a9c 100644 --- a/src/win/util.c +++ b/src/win/util.c @@ -124,7 +124,7 @@ int uv_exepath(char* buffer, size_t* size_ptr) { @@ -1752,7 +1793,7 @@ index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abea if (p == NULL) return UV_ENOMEM; -@@ -548,14 +548,14 @@ int uv_cpu_info(uv_cpu_info_t** cpu_infos_ptr, int* cpu_count_ptr) { +@@ -546,14 +546,14 @@ int uv_cpu_info(uv_cpu_info_t** cpu_infos_ptr, int* cpu_count_ptr) { GetSystemInfo(&system_info); cpu_count = system_info.dwNumberOfProcessors; @@ -1769,7 +1810,7 @@ index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abea if (sppi == NULL) { err = ERROR_OUTOFMEMORY; goto error; -@@ -699,7 +699,8 @@ int uv_interface_addresses(uv_interface_address_t** addresses_ptr, +@@ -697,7 +697,8 @@ int uv_interface_addresses(uv_interface_address_t** addresses_ptr, case ERROR_BUFFER_OVERFLOW: /* This happens when win_address_buf is NULL or too small to hold all * adapters. */ @@ -1779,7 +1820,7 @@ index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abea if (win_address_buf == NULL) return UV_ENOMEM; -@@ -707,7 +708,7 @@ int uv_interface_addresses(uv_interface_address_t** addresses_ptr, +@@ -705,7 +706,7 @@ int uv_interface_addresses(uv_interface_address_t** addresses_ptr, case ERROR_NO_DATA: { /* No adapters were found. */ @@ -1788,7 +1829,7 @@ index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abea if (uv_address_buf == NULL) return UV_ENOMEM; -@@ -758,7 +759,7 @@ int uv_interface_addresses(uv_interface_address_t** addresses_ptr, +@@ -756,7 +757,7 @@ int uv_interface_addresses(uv_interface_address_t** addresses_ptr, continue; /* Compute the size of the interface name. */ @@ -1797,7 +1838,7 @@ index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abea uv_address_buf_size += name_size + 1; /* Count the number of addresses associated with this interface, and -@@ -773,7 +774,7 @@ int uv_interface_addresses(uv_interface_address_t** addresses_ptr, +@@ -771,7 +772,7 @@ int uv_interface_addresses(uv_interface_address_t** addresses_ptr, } /* Allocate space to store interface data plus adapter names. */ @@ -1806,8 +1847,8 @@ index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abea if (uv_address_buf == NULL) { uv__free(win_address_buf); return UV_ENOMEM; -@@ -982,7 +983,7 @@ int uv_os_tmpdir(char* buffer, size_t* size) { - } +@@ -991,7 +992,7 @@ int uv_os_tmpdir(char* buffer, size_t* size) { + /* Include space for terminating null char. */ len += 1; - path = uv__malloc(len * sizeof(wchar_t)); @@ -1815,7 +1856,7 @@ index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abea if (path == NULL) { return UV_ENOMEM; } -@@ -1019,7 +1020,7 @@ int uv__convert_utf16_to_utf8(const WCHAR* utf16, size_t utf16len, char** utf8) +@@ -1028,7 +1029,7 @@ int uv__convert_utf16_to_utf8(const WCHAR* utf16, size_t utf16len, char** utf8) return UV_EINVAL; *utf8 = NULL; @@ -1824,7 +1865,7 @@ index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abea } -@@ -1039,13 +1040,13 @@ int uv__convert_utf8_to_utf16(const char* utf8, WCHAR** utf16) { +@@ -1048,13 +1049,13 @@ int uv__convert_utf8_to_utf16(const char* utf8, WCHAR** utf16) { return UV__EINVAL; /* Allocate the destination buffer. */ @@ -1840,7 +1881,7 @@ index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abea return 0; } -@@ -1065,11 +1066,11 @@ int uv__copy_utf16_to_utf8(const WCHAR* utf16buffer, size_t utf16len, char* utf8 +@@ -1074,11 +1075,11 @@ int uv__copy_utf16_to_utf8(const WCHAR* utf16buffer, size_t utf16len, char* utf8 return UV_EINVAL; if (*size == 0) { @@ -1854,7 +1895,7 @@ index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abea } if (r == UV_ENOBUFS) *size += 1; /* Add space for NUL. */ -@@ -1099,7 +1100,7 @@ static int uv__getpwuid_r(uv_passwd_t* pwd) { +@@ -1108,7 +1109,7 @@ static int uv__getpwuid_r(uv_passwd_t* pwd) { return uv_translate_sys_error(r); } @@ -1863,7 +1904,7 @@ index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abea if (path == NULL) { CloseHandle(token); return UV_ENOMEM; -@@ -1180,7 +1181,7 @@ int uv_os_environ(uv_env_item_t** envitems, int* count) { +@@ -1189,7 +1190,7 @@ int uv_os_environ(uv_env_item_t** envitems, int* count) { for (penv = env, i = 0; *penv != L'\0'; penv += wcslen(penv) + 1, i++); @@ -1872,7 +1913,7 @@ index a96cb915930a30a49ba55fd7d15ea48f0b471f89..924d878e89260c2d3cf9a30b7151abea if (*envitems == NULL) { FreeEnvironmentStringsW(env); return UV_ENOMEM; -@@ -1269,7 +1270,7 @@ int uv_os_getenv(const char* name, char* buffer, size_t* size) { +@@ -1281,7 +1282,7 @@ int uv_os_getenv(const char* name, char* buffer, size_t* size) { uv__free(var); varlen = 1 + len; diff --git a/upstream_utils/libuv_patches/0003-Fix-warnings.patch b/upstream_utils/libuv_patches/0003-Fix-warnings.patch index 03d0127af32..3e367612ab6 100644 --- a/upstream_utils/libuv_patches/0003-Fix-warnings.patch +++ b/upstream_utils/libuv_patches/0003-Fix-warnings.patch @@ -1,7 +1,7 @@ From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: PJ Reiniger Date: Tue, 26 Apr 2022 15:09:43 -0400 -Subject: [PATCH 03/10] Fix warnings +Subject: [PATCH 3/9] Fix warnings --- include/uv/win.h | 5 +++++ @@ -10,6 +10,7 @@ Subject: [PATCH 03/10] Fix warnings src/threadpool.c | 4 ++++ src/unix/core.c | 12 ++++++++++-- src/unix/internal.h | 4 ++-- + src/unix/linux.c | 2 +- src/unix/thread.c | 6 ------ src/uv-common.c | 8 ++++++++ src/win/fs-event.c | 2 ++ @@ -18,10 +19,10 @@ Subject: [PATCH 03/10] Fix warnings src/win/process.c | 2 ++ src/win/thread.c | 4 ++-- src/win/tty.c | 2 ++ - 14 files changed, 47 insertions(+), 14 deletions(-) + 15 files changed, 48 insertions(+), 15 deletions(-) diff --git a/include/uv/win.h b/include/uv/win.h -index 518b17606c3b0c114845594e6be9c3c4d95f1776..9a8c990c1b182633f23890cb5f4532b6bee2b22c 100644 +index d4c271d4d856a5ec847439825cace5bafb0d4acd..48e1402d155ceb80e35a904815cb5739cab2fbe8 100644 --- a/include/uv/win.h +++ b/include/uv/win.h @@ -201,11 +201,16 @@ typedef int (WSAAPI* LPFN_WSARECVFROM) @@ -79,7 +80,7 @@ index dd94bea3886ca37945fcad7909d765e3700e3c21..71c9e5b774d64d505e6c6d6ed2637178 #define UV__INET6_ADDRSTRLEN 46 diff --git a/src/threadpool.c b/src/threadpool.c -index f572de5aaf1a1b150e58c7b989949441cac279c4..aa282af468935b680140295a175e503ca82d8fa4 100644 +index ccb5249893df2733fc607fec6e8d3037ebe2e212..a08832cd4c292f9e7c83b2e8b6c326f542e49cd8 100644 --- a/src/threadpool.c +++ b/src/threadpool.c @@ -27,6 +27,10 @@ @@ -94,10 +95,10 @@ index f572de5aaf1a1b150e58c7b989949441cac279c4..aa282af468935b680140295a175e503c static uv_once_t once = UV_ONCE_INIT; diff --git a/src/unix/core.c b/src/unix/core.c -index 8c08d607884335a2da5cb49f35e3108cb833da32..4bc870214afa1e08da2f7b335c031d67d221fdd6 100644 +index d8c09f5e41ff96dae4d0df9982f227eaac3c8576..d9f868b13b4fa2c340c542fe567b4193cf079748 100644 --- a/src/unix/core.c +++ b/src/unix/core.c -@@ -576,6 +576,16 @@ int uv__accept(int sockfd) { +@@ -586,6 +586,16 @@ int uv__accept(int sockfd) { return peerfd; } @@ -114,7 +115,7 @@ index 8c08d607884335a2da5cb49f35e3108cb833da32..4bc870214afa1e08da2f7b335c031d67 /* close() on macos has the "interesting" quirk that it fails with EINTR * without closing the file descriptor when a thread is in the cancel state. -@@ -590,10 +600,8 @@ int uv__close_nocancel(int fd) { +@@ -600,10 +610,8 @@ int uv__close_nocancel(int fd) { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdollar-in-identifier-extension" #if defined(__LP64__) || TARGET_OS_IPHONE @@ -126,10 +127,10 @@ index 8c08d607884335a2da5cb49f35e3108cb833da32..4bc870214afa1e08da2f7b335c031d67 #endif #pragma GCC diagnostic pop diff --git a/src/unix/internal.h b/src/unix/internal.h -index bcb3be577e584925d4bf4a20d2429ce13aad0584..4c167f5e529cb38a7418fc35dbbafc2a2cea626c 100644 +index 529c783e6e93200e52dab98ea9a3c1e0aea557ce..0bf3736cd682e43beedcf4c701a147787f1329fc 100644 --- a/src/unix/internal.h +++ b/src/unix/internal.h -@@ -384,8 +384,8 @@ UV_UNUSED(static void uv__update_time(uv_loop_t* loop)) { +@@ -396,8 +396,8 @@ UV_UNUSED(static void uv__update_time(uv_loop_t* loop)) { loop->time = uv__hrtime(UV_CLOCK_FAST) / 1000000; } @@ -140,6 +141,19 @@ index bcb3be577e584925d4bf4a20d2429ce13aad0584..4c167f5e529cb38a7418fc35dbbafc2a s = strrchr(path, '/'); if (s == NULL) +diff --git a/src/unix/linux.c b/src/unix/linux.c +index 96c8b1dfe060e896f768493448ec20cfb9203592..cfb0c6eebf2fb231f610020be35187a488127477 100644 +--- a/src/unix/linux.c ++++ b/src/unix/linux.c +@@ -2294,7 +2294,7 @@ static int uv__get_cgroupv2_constrained_cpu(const char* cgroup, + if (uv__slurp(path, buf, sizeof(buf)) < 0) + return UV_EIO; + +- if (sscanf(buf, "%15s %llu", quota_buf, &constraint->period_length) != 2) ++ if (sscanf(buf, "%15s %lld", quota_buf, &constraint->period_length) != 2) + return UV_EINVAL; + + if (strncmp(quota_buf, "max", 3) == 0) diff --git a/src/unix/thread.c b/src/unix/thread.c index 20409541de3cb300504b823472a73bc95fa38f62..688c042e1aedf379264900c29758c8b01a4a90ed 100644 --- a/src/unix/thread.c @@ -184,7 +198,7 @@ index 69e95801a18104ea910abf86db236d85f62afb66..49126e50f07bac16d198775454b731f4 static uv_loop_t default_loop_struct; static uv_loop_t* default_loop_ptr; diff --git a/src/win/fs-event.c b/src/win/fs-event.c -index dba981c68821ece88e0beb80422b214b77e84b79..2f566f796a55c68329d5aed19bd5bb392d0082fa 100644 +index 3754437b4989d67f688153e066ef047268911708..2fdcbcb73a9ee29dd282b366011a6878fc431a47 100644 --- a/src/win/fs-event.c +++ b/src/win/fs-event.c @@ -19,6 +19,8 @@ @@ -197,7 +211,7 @@ index dba981c68821ece88e0beb80422b214b77e84b79..2f566f796a55c68329d5aed19bd5bb39 #include #include diff --git a/src/win/fs.c b/src/win/fs.c -index 7e2367e8c1c6ad96af55a2cc370142104cc0de77..b812293048e60264f3e849367b7a129c306f8502 100644 +index b90d2368aa769cb66f9367e97f004fa8bd4da3c0..a4b47fe5ec4135059b8e08be6a232ddd7798bebe 100644 --- a/src/win/fs.c +++ b/src/win/fs.c @@ -19,6 +19,8 @@ @@ -210,7 +224,7 @@ index 7e2367e8c1c6ad96af55a2cc370142104cc0de77..b812293048e60264f3e849367b7a129c #include #include diff --git a/src/win/pipe.c b/src/win/pipe.c -index 27868221455dcbb90c00066fd8b716d2c0a4d371..d747dc72362a0b21077fa7b9beb57234ca62baad 100644 +index 8226369294299fd2a9d7d05a91d3d711015b7fd0..43ea270e618fd9fd0c0cb30981a3425967b6dbcd 100644 --- a/src/win/pipe.c +++ b/src/win/pipe.c @@ -19,6 +19,8 @@ @@ -223,7 +237,7 @@ index 27868221455dcbb90c00066fd8b716d2c0a4d371..d747dc72362a0b21077fa7b9beb57234 #include #include diff --git a/src/win/process.c b/src/win/process.c -index 25f1075745267785cdd7d7de83d9c62750305852..e4bf93d707da3d22b747300775e8c96a34039ddb 100644 +index 5a648494ae03688f6a56705f2c3d65b026605818..d6b61c14015b8d72d8a9aca71bd0483c06a16820 100644 --- a/src/win/process.c +++ b/src/win/process.c @@ -19,6 +19,8 @@ @@ -236,10 +250,10 @@ index 25f1075745267785cdd7d7de83d9c62750305852..e4bf93d707da3d22b747300775e8c96a #include #include diff --git a/src/win/thread.c b/src/win/thread.c -index 57f1698f595e2410a51044f7f228b5a235206819..03b33e9b4de6fe2532095d717a8639e8df454cce 100644 +index dd958ccd782772869d5448d788a563c1526a89f6..6a4d4498577b0abaa8408052051b0472dde5afec 100644 --- a/src/win/thread.c +++ b/src/win/thread.c -@@ -204,8 +204,8 @@ int uv_thread_setaffinity(uv_thread_t* tid, +@@ -182,8 +182,8 @@ int uv_thread_setaffinity(uv_thread_t* tid, threadmask = 0; for (i = 0; i < cpumasksize; i++) { if (cpumask[i]) { @@ -251,7 +265,7 @@ index 57f1698f595e2410a51044f7f228b5a235206819..03b33e9b4de6fe2532095d717a8639e8 return UV_EINVAL; } diff --git a/src/win/tty.c b/src/win/tty.c -index 0b51b6c82fad711480c28ad6cee7125ddb72ca87..67df01396ab50260b986fc9e7aff0368f6ceb308 100644 +index 145706e27a7b596dc003d43d94b54f6ceb0eabee..62ddf32f0fbd29664dd05c6ba426532a2faf4668 100644 --- a/src/win/tty.c +++ b/src/win/tty.c @@ -19,6 +19,8 @@ diff --git a/upstream_utils/libuv_patches/0004-Preprocessor-cleanup.patch b/upstream_utils/libuv_patches/0004-Preprocessor-cleanup.patch index 7d7a6c89e40..310d5047e98 100644 --- a/upstream_utils/libuv_patches/0004-Preprocessor-cleanup.patch +++ b/upstream_utils/libuv_patches/0004-Preprocessor-cleanup.patch @@ -1,20 +1,21 @@ From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: PJ Reiniger Date: Tue, 26 Apr 2022 15:19:14 -0400 -Subject: [PATCH 04/10] Preprocessor cleanup +Subject: [PATCH 4/9] Preprocessor cleanup --- - include/uv.h | 12 ------------ - include/uv/unix.h | 8 -------- - src/unix/internal.h | 2 ++ - src/win/fs.c | 1 + - src/win/tty.c | 2 ++ - src/win/util.c | 8 ++++++++ - src/win/winsock.c | 1 + - 7 files changed, 14 insertions(+), 20 deletions(-) + include/uv.h | 12 ------------ + include/uv/unix.h | 8 -------- + src/unix/darwin-syscalls.h | 2 ++ + src/unix/internal.h | 2 ++ + src/win/fs.c | 1 + + src/win/tty.c | 2 ++ + src/win/util.c | 8 ++++++++ + src/win/winsock.c | 1 + + 8 files changed, 16 insertions(+), 20 deletions(-) diff --git a/include/uv.h b/include/uv.h -index a62b3fa69b1087847f37c7093954e19a07959b74..931c96262b33090422cc1f6c519f8eb4bfc4f9b3 100644 +index 9e450c5110fe57117b686bf683cc6631f37efaeb..d8d59a03512eff879d9688c09fb4a9a57a82ffb7 100644 --- a/include/uv.h +++ b/include/uv.h @@ -23,9 +23,6 @@ @@ -27,7 +28,7 @@ index a62b3fa69b1087847f37c7093954e19a07959b74..931c96262b33090422cc1f6c519f8eb4 #if defined(BUILDING_UV_SHARED) && defined(USING_UV_SHARED) #error "Define either BUILDING_UV_SHARED or USING_UV_SHARED, not both." -@@ -796,16 +793,10 @@ UV_EXTERN int uv_tty_get_winsize(uv_tty_t*, int* width, int* height); +@@ -824,16 +821,10 @@ UV_EXTERN int uv_tty_get_winsize(uv_tty_t*, int* width, int* height); UV_EXTERN void uv_tty_set_vterm_state(uv_tty_vtermstate_t state); UV_EXTERN int uv_tty_get_vterm_state(uv_tty_vtermstate_t* state); @@ -44,7 +45,7 @@ index a62b3fa69b1087847f37c7093954e19a07959b74..931c96262b33090422cc1f6c519f8eb4 UV_EXTERN uv_handle_type uv_guess_handle(uv_file file); enum { -@@ -1936,7 +1927,4 @@ void uv_wtf8_to_utf16(const char* wtf8, +@@ -1964,7 +1955,4 @@ UV_EXTERN void uv_wtf8_to_utf16(const char* wtf8, #undef UV_LOOP_PRIVATE_PLATFORM_FIELDS #undef UV__ERR @@ -71,11 +72,25 @@ index 538f98b6c5d657169e2750a549dd82bf0b948542..2073fe61a569386cc850d733a6c94cbb #elif defined(__APPLE__) # include "uv/darwin.h" #elif defined(__DragonFly__) || \ +diff --git a/src/unix/darwin-syscalls.h b/src/unix/darwin-syscalls.h +index dc2d1bd234b1f12e39b7e76d6e290c15b19a3735..851af81c74e5b5d62f5f7e72da84703c15eace90 100644 +--- a/src/unix/darwin-syscalls.h ++++ b/src/unix/darwin-syscalls.h +@@ -11,7 +11,9 @@ struct mmsghdr { + size_t msg_len; + }; + ++extern "C" { + ssize_t recvmsg_x(int s, const struct mmsghdr* msgp, u_int cnt, int flags); + ssize_t sendmsg_x(int s, const struct mmsghdr* msgp, u_int cnt, int flags); ++} + + #endif /* UV_DARWIN_SYSCALLS_H_ */ diff --git a/src/unix/internal.h b/src/unix/internal.h -index 4c167f5e529cb38a7418fc35dbbafc2a2cea626c..35ac6d1f6da75522d4bd69dcde696a8d0fd42bce 100644 +index 0bf3736cd682e43beedcf4c701a147787f1329fc..c1ead096f7d43b9e7a0daf8de2b65cc82bec7eaf 100644 --- a/src/unix/internal.h +++ b/src/unix/internal.h -@@ -233,6 +233,8 @@ struct uv__statx { +@@ -241,6 +241,8 @@ struct uv__statx { #if defined(__linux__) && O_NDELAY != O_NONBLOCK #undef uv__nonblock #define uv__nonblock uv__nonblock_fcntl @@ -85,7 +100,7 @@ index 4c167f5e529cb38a7418fc35dbbafc2a2cea626c..35ac6d1f6da75522d4bd69dcde696a8d /* core */ diff --git a/src/win/fs.c b/src/win/fs.c -index b812293048e60264f3e849367b7a129c306f8502..05488e5d67101adba611f882ded4f6dc5a462d9a 100644 +index a4b47fe5ec4135059b8e08be6a232ddd7798bebe..af07d092a65909ac4948c679b95468eef549ccca 100644 --- a/src/win/fs.c +++ b/src/win/fs.c @@ -43,6 +43,7 @@ @@ -97,7 +112,7 @@ index b812293048e60264f3e849367b7a129c306f8502..05488e5d67101adba611f882ded4f6dc #define UV_FS_FREE_PATHS 0x0002 #define UV_FS_FREE_PTR 0x0008 diff --git a/src/win/tty.c b/src/win/tty.c -index 67df01396ab50260b986fc9e7aff0368f6ceb308..7294f311e17d5d02e5873e60f8f0cdd551f6d34d 100644 +index 62ddf32f0fbd29664dd05c6ba426532a2faf4668..9a4252d9d89d82fdd316312cc4550dd3c0fe798d 100644 --- a/src/win/tty.c +++ b/src/win/tty.c @@ -37,6 +37,8 @@ @@ -110,7 +125,7 @@ index 67df01396ab50260b986fc9e7aff0368f6ceb308..7294f311e17d5d02e5873e60f8f0cdd5 # define InterlockedOr _InterlockedOr #endif diff --git a/src/win/util.c b/src/win/util.c -index 924d878e89260c2d3cf9a30b7151abeaf735b8be..5767c66c988c67edaf17155d5cb299a1936870ee 100644 +index 1aca4e9a081cd7e4481503d59f39872acbbc6a9c..1239831dcc0c5fdb8e267d4dd8e73cb73fdc88c9 100644 --- a/src/win/util.c +++ b/src/win/util.c @@ -64,12 +64,20 @@ diff --git a/upstream_utils/libuv_patches/0005-Cleanup-problematic-language.patch b/upstream_utils/libuv_patches/0005-Cleanup-problematic-language.patch index e016c2ee1c4..60bd213023f 100644 --- a/upstream_utils/libuv_patches/0005-Cleanup-problematic-language.patch +++ b/upstream_utils/libuv_patches/0005-Cleanup-problematic-language.patch @@ -1,14 +1,14 @@ From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: PJ Reiniger Date: Tue, 26 Apr 2022 15:24:47 -0400 -Subject: [PATCH 05/10] Cleanup problematic language +Subject: [PATCH 5/9] Cleanup problematic language --- src/unix/tty.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/unix/tty.c b/src/unix/tty.c -index d099bdb3b677212d21e06ac7bb1031c8e5386499..1bd217b5a15eed13a8349c479b53471dd36ca216 100644 +index 793054ba5a9bffe4e2db9040ca09a7fff0ec6b23..699a092da2dea77277557211065f6594bcad4e0b 100644 --- a/src/unix/tty.c +++ b/src/unix/tty.c @@ -79,7 +79,7 @@ int uv__tcsetattr(int fd, int how, const struct termios *term) { diff --git a/upstream_utils/libuv_patches/0006-Fix-Win32-warning-suppression-pragma.patch b/upstream_utils/libuv_patches/0006-Fix-Win32-warning-suppression-pragma.patch deleted file mode 100644 index 90355bb98da..00000000000 --- a/upstream_utils/libuv_patches/0006-Fix-Win32-warning-suppression-pragma.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Tyler Veness -Date: Sat, 21 May 2022 22:58:06 -0700 -Subject: [PATCH 06/10] Fix Win32 warning suppression pragma - ---- - src/win/util.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/win/util.c b/src/win/util.c -index 5767c66c988c67edaf17155d5cb299a1936870ee..52c31979589e4ed7fe12af200f7e8daab9e02797 100644 ---- a/src/win/util.c -+++ b/src/win/util.c -@@ -1544,7 +1544,7 @@ int uv_os_uname(uv_utsname_t* buffer) { - } else { - /* Silence GetVersionEx() deprecation warning. */ - #ifdef _MSC_VER -- #pragma warning(suppress : 4996) -+ #pragma warning(disable : 4996) - #endif - if (GetVersionExW(&os_info) == 0) { - r = uv_translate_sys_error(GetLastError()); diff --git a/upstream_utils/libuv_patches/0007-Use-C-atomics.patch b/upstream_utils/libuv_patches/0006-Use-C-atomics.patch similarity index 75% rename from upstream_utils/libuv_patches/0007-Use-C-atomics.patch rename to upstream_utils/libuv_patches/0006-Use-C-atomics.patch index 26b488bb68a..2e68b27d0a1 100644 --- a/upstream_utils/libuv_patches/0007-Use-C-atomics.patch +++ b/upstream_utils/libuv_patches/0006-Use-C-atomics.patch @@ -1,21 +1,21 @@ From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Thu, 13 Jul 2023 22:13:47 -0700 -Subject: [PATCH 07/10] Use C++ atomics +Subject: [PATCH 6/9] Use C++ atomics --- src/unix/async.c | 25 +++++++++++++------------ src/unix/core.c | 3 ++- - src/unix/fs.c | 20 +++++++++++--------- + src/unix/fs.c | 33 +++++++++++++++++---------------- src/unix/kqueue.c | 10 ++++++---- src/unix/linux.c | 45 +++++++++++++++++++++++---------------------- src/unix/tty.c | 5 +++-- src/uv-common.c | 2 +- src/uv-common.h | 8 +++----- - 8 files changed, 62 insertions(+), 56 deletions(-) + 8 files changed, 68 insertions(+), 63 deletions(-) diff --git a/src/unix/async.c b/src/unix/async.c -index 0ff2669e30a628dbb2df9e28ba14b38cf14114e5..fef4ae93343edc0341179a1c4739dcd831ef6e26 100644 +index bc97ec54c4fcc60ec51583b5f8b87582265d4ff6..ce63d0ac8c4d761a8765ffcaa7ce1516c9d2485a 100644 --- a/src/unix/async.c +++ b/src/unix/async.c @@ -26,7 +26,6 @@ @@ -32,10 +32,10 @@ index 0ff2669e30a628dbb2df9e28ba14b38cf14114e5..fef4ae93343edc0341179a1c4739dcd8 +#include + - static void uv__async_send(uv_loop_t* loop); - static int uv__async_start(uv_loop_t* loop); - static void uv__cpu_relax(void); -@@ -63,14 +64,14 @@ int uv_async_init(uv_loop_t* loop, uv_async_t* handle, uv_async_cb async_cb) { + #if UV__KQUEUE_EVFILT_USER + static uv_once_t kqueue_runtime_detection_guard = UV_ONCE_INIT; + static int kqueue_evfilt_user_support = 1; +@@ -91,14 +92,14 @@ int uv_async_init(uv_loop_t* loop, uv_async_t* handle, uv_async_cb async_cb) { int uv_async_send(uv_async_t* handle) { @@ -55,7 +55,7 @@ index 0ff2669e30a628dbb2df9e28ba14b38cf14114e5..fef4ae93343edc0341179a1c4739dcd8 return 0; /* Set the loop to busy. */ -@@ -90,12 +91,12 @@ int uv_async_send(uv_async_t* handle) { +@@ -118,12 +119,12 @@ int uv_async_send(uv_async_t* handle) { /* Wait for the busy flag to clear before closing. * Only call this from the event loop thread. */ static void uv__async_spin(uv_async_t* handle) { @@ -72,7 +72,7 @@ index 0ff2669e30a628dbb2df9e28ba14b38cf14114e5..fef4ae93343edc0341179a1c4739dcd8 /* Set the pending flag first, so no new events will be added by other * threads after this function returns. */ -@@ -135,7 +136,7 @@ static void uv__async_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { +@@ -165,7 +166,7 @@ static void uv__async_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { struct uv__queue queue; struct uv__queue* q; uv_async_t* h; @@ -81,7 +81,7 @@ index 0ff2669e30a628dbb2df9e28ba14b38cf14114e5..fef4ae93343edc0341179a1c4739dcd8 assert(w == &loop->async_io_watcher); -@@ -166,7 +167,7 @@ static void uv__async_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { +@@ -202,7 +203,7 @@ static void uv__async_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { uv__queue_insert_tail(&loop->async_handles, q); /* Atomically fetch and clear pending flag */ @@ -91,7 +91,7 @@ index 0ff2669e30a628dbb2df9e28ba14b38cf14114e5..fef4ae93343edc0341179a1c4739dcd8 continue; diff --git a/src/unix/core.c b/src/unix/core.c -index 4bc870214afa1e08da2f7b335c031d67d221fdd6..f13ffd1714af26dede3d4d5f6f01efa39fc78959 100644 +index d9f868b13b4fa2c340c542fe567b4193cf079748..6c701c0c5a89bc851c709b1a13f1a79210ac0a00 100644 --- a/src/unix/core.c +++ b/src/unix/core.c @@ -45,6 +45,7 @@ @@ -102,7 +102,7 @@ index 4bc870214afa1e08da2f7b335c031d67d221fdd6..f13ffd1714af26dede3d4d5f6f01efa3 #ifdef __sun # include -@@ -264,7 +265,7 @@ int uv__getiovmax(void) { +@@ -274,7 +275,7 @@ int uv__getiovmax(void) { #if defined(IOV_MAX) return IOV_MAX; #elif defined(_SC_IOV_MAX) @@ -112,10 +112,18 @@ index 4bc870214afa1e08da2f7b335c031d67d221fdd6..f13ffd1714af26dede3d4d5f6f01efa3 iovmax = atomic_load_explicit(&iovmax_cached, memory_order_relaxed); diff --git a/src/unix/fs.c b/src/unix/fs.c -index 22f31f7285c995c981aca0fa5125bc70aeedc151..75c3093cb7cd6998637c31348265e9299404f91f 100644 +index 77f3a17ad3d102f0aa2860eaf88602fe9555bc4e..49a7d52b5651e0c73a147da2167d8acb6bfbc940 100644 --- a/src/unix/fs.c +++ b/src/unix/fs.c -@@ -45,6 +45,8 @@ +@@ -31,7 +31,6 @@ + + #include + #include +-#include + #include + #include + #include +@@ -46,6 +45,8 @@ #include #include @@ -124,7 +132,7 @@ index 22f31f7285c995c981aca0fa5125bc70aeedc151..75c3093cb7cd6998637c31348265e929 #if defined(__linux__) # include #endif -@@ -309,7 +311,7 @@ static int uv__fs_mkstemp(uv_fs_t* req) { +@@ -299,7 +300,7 @@ static int uv__fs_mkstemp(uv_fs_t* req) { static uv_once_t once = UV_ONCE_INIT; int r; #ifdef O_CLOEXEC @@ -133,7 +141,7 @@ index 22f31f7285c995c981aca0fa5125bc70aeedc151..75c3093cb7cd6998637c31348265e929 #endif static const char pattern[] = "XXXXXX"; static const size_t pattern_size = sizeof(pattern) - 1; -@@ -334,7 +336,7 @@ static int uv__fs_mkstemp(uv_fs_t* req) { +@@ -324,7 +325,7 @@ static int uv__fs_mkstemp(uv_fs_t* req) { uv_once(&once, uv__mkostemp_initonce); #ifdef O_CLOEXEC @@ -142,7 +150,7 @@ index 22f31f7285c995c981aca0fa5125bc70aeedc151..75c3093cb7cd6998637c31348265e929 uv__mkostemp != NULL) { r = uv__mkostemp(path, O_CLOEXEC); -@@ -348,7 +350,7 @@ static int uv__fs_mkstemp(uv_fs_t* req) { +@@ -338,7 +339,7 @@ static int uv__fs_mkstemp(uv_fs_t* req) { /* We set the static variable so that next calls don't even try to use mkostemp. */ @@ -151,7 +159,57 @@ index 22f31f7285c995c981aca0fa5125bc70aeedc151..75c3093cb7cd6998637c31348265e929 } #endif /* O_CLOEXEC */ -@@ -869,10 +871,10 @@ static int uv__is_cifs_or_smb(int fd) { +@@ -459,19 +460,19 @@ static ssize_t uv__pwritev_emul(int fd, + } + + +-/* The function pointer cache is an uintptr_t because _Atomic void* ++/* The function pointer cache is an uintptr_t because std::atomic* + * doesn't work on macos/ios/etc... + */ + static ssize_t uv__preadv_or_pwritev(int fd, + const struct iovec* bufs, + size_t nbufs, + off_t off, +- _Atomic uintptr_t* cache, ++ std::atomic* cache, + int is_pread) { + ssize_t (*f)(int, const struct iovec*, uv__iovcnt, off_t); + void* p; + +- p = (void*) atomic_load_explicit(cache, memory_order_relaxed); ++ p = (void*) atomic_load_explicit(cache, std::memory_order_relaxed); + if (p == NULL) { + #ifdef RTLD_DEFAULT + p = dlsym(RTLD_DEFAULT, is_pread ? "preadv" : "pwritev"); +@@ -479,7 +480,7 @@ static ssize_t uv__preadv_or_pwritev(int fd, + #endif /* RTLD_DEFAULT */ + if (p == NULL) + p = (void*)(is_pread ? uv__preadv_emul : uv__pwritev_emul); +- atomic_store_explicit(cache, (uintptr_t) p, memory_order_relaxed); ++ atomic_store_explicit(cache, (uintptr_t) p, std::memory_order_relaxed); + } + + /* Use memcpy instead of `f = p` to work around a compiler bug, +@@ -494,7 +495,7 @@ static ssize_t uv__preadv(int fd, + const struct iovec* bufs, + size_t nbufs, + off_t off) { +- static _Atomic uintptr_t cache; ++ static std::atomic cache; + return uv__preadv_or_pwritev(fd, bufs, nbufs, off, &cache, /*is_pread*/1); + } + +@@ -503,7 +504,7 @@ static ssize_t uv__pwritev(int fd, + const struct iovec* bufs, + size_t nbufs, + off_t off) { +- static _Atomic uintptr_t cache; ++ static std::atomic cache; + return uv__preadv_or_pwritev(fd, bufs, nbufs, off, &cache, /*is_pread*/0); + } + +@@ -980,10 +981,10 @@ static int uv__is_cifs_or_smb(int fd) { static ssize_t uv__fs_try_copy_file_range(int in_fd, off_t* off, int out_fd, size_t len) { @@ -164,7 +222,7 @@ index 22f31f7285c995c981aca0fa5125bc70aeedc151..75c3093cb7cd6998637c31348265e929 errno = ENOSYS; return -1; } -@@ -891,7 +893,7 @@ static ssize_t uv__fs_try_copy_file_range(int in_fd, off_t* off, +@@ -1002,7 +1003,7 @@ static ssize_t uv__fs_try_copy_file_range(int in_fd, off_t* off, errno = ENOSYS; /* Use fallback. */ break; case ENOSYS: @@ -173,7 +231,7 @@ index 22f31f7285c995c981aca0fa5125bc70aeedc151..75c3093cb7cd6998637c31348265e929 break; case EPERM: /* It's been reported that CIFS spuriously fails. -@@ -1382,14 +1384,14 @@ static int uv__fs_statx(int fd, +@@ -1526,14 +1527,14 @@ static int uv__fs_statx(int fd, uv_stat_t* buf) { STATIC_ASSERT(UV_ENOSYS != -1); #ifdef __linux__ @@ -190,7 +248,7 @@ index 22f31f7285c995c981aca0fa5125bc70aeedc151..75c3093cb7cd6998637c31348265e929 return UV_ENOSYS; dirfd = AT_FDCWD; -@@ -1423,7 +1425,7 @@ static int uv__fs_statx(int fd, +@@ -1567,7 +1568,7 @@ static int uv__fs_statx(int fd, * implemented, rc might return 1 with 0 set as the error code in which * case we return ENOSYS. */ @@ -200,7 +258,7 @@ index 22f31f7285c995c981aca0fa5125bc70aeedc151..75c3093cb7cd6998637c31348265e929 } diff --git a/src/unix/kqueue.c b/src/unix/kqueue.c -index c307e6631eefb1effb0e0c304eb400e0cb8d984e..bd09ac39dda916dd5a7d664979ce5735586fd7e3 100644 +index 2dd3b2156f363c73e4ba3ebc7e52367c85f654a8..6f0e06476a65f0d9ed92b28c1b932d17d98dfaa2 100644 --- a/src/unix/kqueue.c +++ b/src/unix/kqueue.c @@ -37,6 +37,8 @@ @@ -230,7 +288,7 @@ index c307e6631eefb1effb0e0c304eb400e0cb8d984e..bd09ac39dda916dd5a7d664979ce5735 uv__free(loop->cf_state); loop->cf_state = NULL; } -@@ -565,7 +567,7 @@ int uv_fs_event_start(uv_fs_event_t* handle, +@@ -609,7 +611,7 @@ int uv_fs_event_start(uv_fs_event_t* handle, goto fallback; if (0 == atomic_load_explicit(&uv__has_forked_with_cfrunloop, @@ -239,7 +297,7 @@ index c307e6631eefb1effb0e0c304eb400e0cb8d984e..bd09ac39dda916dd5a7d664979ce5735 int r; /* The fallback fd is no longer needed */ uv__close_nocheckstdio(fd); -@@ -601,7 +603,7 @@ int uv_fs_event_stop(uv_fs_event_t* handle) { +@@ -645,7 +647,7 @@ int uv_fs_event_stop(uv_fs_event_t* handle) { #if defined(__APPLE__) && MAC_OS_X_VERSION_MAX_ALLOWED >= 1070 if (0 == atomic_load_explicit(&uv__has_forked_with_cfrunloop, @@ -249,7 +307,7 @@ index c307e6631eefb1effb0e0c304eb400e0cb8d984e..bd09ac39dda916dd5a7d664979ce5735 r = uv__fsevents_close(handle); #endif diff --git a/src/unix/linux.c b/src/unix/linux.c -index 09b02cd5df6c32a954cbed817111cf3c1874c3db..e0c4902385edac10ac31bc5075a85a45025615f9 100644 +index cfb0c6eebf2fb231f610020be35187a488127477..be72054ab6513dce8099caeb4dca5083dfbef9df 100644 --- a/src/unix/linux.c +++ b/src/unix/linux.c @@ -27,7 +27,6 @@ @@ -319,7 +377,7 @@ index 09b02cd5df6c32a954cbed817111cf3c1874c3db..e0c4902385edac10ac31bc5075a85a45 } return use > 0; -@@ -767,8 +768,8 @@ static struct uv__io_uring_sqe* uv__iou_get_sqe(struct uv__iou* iou, +@@ -777,8 +778,8 @@ static struct uv__io_uring_sqe* uv__iou_get_sqe(struct uv__iou* iou, if (iou->ringfd == -1) return NULL; @@ -330,7 +388,7 @@ index 09b02cd5df6c32a954cbed817111cf3c1874c3db..e0c4902385edac10ac31bc5075a85a45 tail = *iou->sqtail; mask = iou->sqmask; -@@ -797,12 +798,12 @@ static struct uv__io_uring_sqe* uv__iou_get_sqe(struct uv__iou* iou, +@@ -807,12 +808,12 @@ static struct uv__io_uring_sqe* uv__iou_get_sqe(struct uv__iou* iou, static void uv__iou_submit(struct uv__iou* iou) { uint32_t flags; @@ -347,7 +405,7 @@ index 09b02cd5df6c32a954cbed817111cf3c1874c3db..e0c4902385edac10ac31bc5075a85a45 if (flags & UV__IORING_SQ_NEED_WAKEUP) if (uv__io_uring_enter(iou->ringfd, 0, 0, UV__IORING_ENTER_SQ_WAKEUP)) -@@ -1143,8 +1144,8 @@ static void uv__poll_io_uring(uv_loop_t* loop, struct uv__iou* iou) { +@@ -1153,8 +1154,8 @@ static void uv__poll_io_uring(uv_loop_t* loop, struct uv__iou* iou) { int rc; head = *iou->cqhead; @@ -358,7 +416,7 @@ index 09b02cd5df6c32a954cbed817111cf3c1874c3db..e0c4902385edac10ac31bc5075a85a45 mask = iou->cqmask; cqe = (uv__io_uring_cqe*)iou->cqe; nevents = 0; -@@ -1182,15 +1183,15 @@ static void uv__poll_io_uring(uv_loop_t* loop, struct uv__iou* iou) { +@@ -1192,15 +1193,15 @@ static void uv__poll_io_uring(uv_loop_t* loop, struct uv__iou* iou) { nevents++; } @@ -378,7 +436,7 @@ index 09b02cd5df6c32a954cbed817111cf3c1874c3db..e0c4902385edac10ac31bc5075a85a45 if (flags & UV__IORING_SQ_CQ_OVERFLOW) { do -@@ -1583,7 +1584,7 @@ update_timeout: +@@ -1604,7 +1605,7 @@ update_timeout: } uint64_t uv__hrtime(uv_clocktype_t type) { @@ -387,7 +445,7 @@ index 09b02cd5df6c32a954cbed817111cf3c1874c3db..e0c4902385edac10ac31bc5075a85a45 struct timespec t; clock_t clock_id; -@@ -1599,7 +1600,7 @@ uint64_t uv__hrtime(uv_clocktype_t type) { +@@ -1620,7 +1621,7 @@ uint64_t uv__hrtime(uv_clocktype_t type) { if (type != UV_CLOCK_FAST) goto done; @@ -396,7 +454,7 @@ index 09b02cd5df6c32a954cbed817111cf3c1874c3db..e0c4902385edac10ac31bc5075a85a45 if (clock_id != -1) goto done; -@@ -1608,7 +1609,7 @@ uint64_t uv__hrtime(uv_clocktype_t type) { +@@ -1629,7 +1630,7 @@ uint64_t uv__hrtime(uv_clocktype_t type) { if (t.tv_nsec <= 1 * 1000 * 1000) clock_id = CLOCK_MONOTONIC_COARSE; @@ -406,7 +464,7 @@ index 09b02cd5df6c32a954cbed817111cf3c1874c3db..e0c4902385edac10ac31bc5075a85a45 done: diff --git a/src/unix/tty.c b/src/unix/tty.c -index 1bd217b5a15eed13a8349c479b53471dd36ca216..1304c6d8685cfd122cffea066dc668d1dfc9ae02 100644 +index 699a092da2dea77277557211065f6594bcad4e0b..5ca2105848fc07d312455c336ac7303e61679213 100644 --- a/src/unix/tty.c +++ b/src/unix/tty.c @@ -22,7 +22,6 @@ @@ -449,7 +507,7 @@ index 49126e50f07bac16d198775454b731f40630d1d1..1ce25c24d6c046f7aaeaa52dcfc4fafa if (uv__exchange_int_relaxed(&was_shutdown, 1)) return; diff --git a/src/uv-common.h b/src/uv-common.h -index cd57e5a35153d0557351b60cce0c5be7a4468b60..5dce8eaf2705b47935b218181f6dd69af0d5b61b 100644 +index 339e5f37323ce3819bea555ee3bb5fa7216d016d..50bbc874c115b552851d9b12b807332aeefcd3ee 100644 --- a/src/uv-common.h +++ b/src/uv-common.h @@ -32,15 +32,13 @@ diff --git a/upstream_utils/libuv_patches/0008-Remove-static-from-array-indices.patch b/upstream_utils/libuv_patches/0007-Remove-static-from-array-indices.patch similarity index 94% rename from upstream_utils/libuv_patches/0008-Remove-static-from-array-indices.patch rename to upstream_utils/libuv_patches/0007-Remove-static-from-array-indices.patch index 7fd97eabcc4..9538caed85b 100644 --- a/upstream_utils/libuv_patches/0008-Remove-static-from-array-indices.patch +++ b/upstream_utils/libuv_patches/0007-Remove-static-from-array-indices.patch @@ -1,14 +1,14 @@ From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Thu, 13 Jul 2023 23:30:58 -0700 -Subject: [PATCH 08/10] Remove static from array indices +Subject: [PATCH 7/9] Remove static from array indices --- src/unix/linux.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/unix/linux.c b/src/unix/linux.c -index e0c4902385edac10ac31bc5075a85a45025615f9..091c0474cfe37de4eb55dbf6c20144aa78e896a5 100644 +index be72054ab6513dce8099caeb4dca5083dfbef9df..322873f6f0e8954d2c5b572ef87fcbc74d7b12c1 100644 --- a/src/unix/linux.c +++ b/src/unix/linux.c @@ -2098,7 +2098,7 @@ static uint64_t uv__read_uint64(const char* filename) { diff --git a/upstream_utils/libuv_patches/0009-Add-pragmas-for-missing-libraries-and-set-_WIN32_WIN.patch b/upstream_utils/libuv_patches/0008-Add-pragmas-for-missing-libraries-and-set-_WIN32_WIN.patch similarity index 79% rename from upstream_utils/libuv_patches/0009-Add-pragmas-for-missing-libraries-and-set-_WIN32_WIN.patch rename to upstream_utils/libuv_patches/0008-Add-pragmas-for-missing-libraries-and-set-_WIN32_WIN.patch index 4bbcf846cfe..1062c1322f5 100644 --- a/upstream_utils/libuv_patches/0009-Add-pragmas-for-missing-libraries-and-set-_WIN32_WIN.patch +++ b/upstream_utils/libuv_patches/0008-Add-pragmas-for-missing-libraries-and-set-_WIN32_WIN.patch @@ -1,8 +1,8 @@ From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Fri, 14 Jul 2023 16:40:18 -0700 -Subject: [PATCH 09/10] Add pragmas for missing libraries and set _WIN32_WINNT - to Windows 10 +Subject: [PATCH 8/9] Add pragmas for missing libraries and set _WIN32_WINNT to + Windows 10 This makes GetSystemTimePreciseAsFileTime() available. @@ -14,7 +14,7 @@ https://learn.microsoft.com/en-us/cpp/porting/modifying-winver-and-win32-winnt. 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/uv/win.h b/include/uv/win.h -index 9a8c990c1b182633f23890cb5f4532b6bee2b22c..f17abc1f92681971da8ec603f7a20204fd53e5d1 100644 +index 48e1402d155ceb80e35a904815cb5739cab2fbe8..576f0fa52b60524711e04e94c740ae9b85fb36a9 100644 --- a/include/uv/win.h +++ b/include/uv/win.h @@ -20,7 +20,7 @@ @@ -27,7 +27,7 @@ index 9a8c990c1b182633f23890cb5f4532b6bee2b22c..f17abc1f92681971da8ec603f7a20204 #if !defined(_SSIZE_T_) && !defined(_SSIZE_T_DEFINED) diff --git a/src/win/util.c b/src/win/util.c -index 52c31979589e4ed7fe12af200f7e8daab9e02797..6529aa36f32eab1114488b7445a6bd872975b97b 100644 +index 1239831dcc0c5fdb8e267d4dd8e73cb73fdc88c9..907a09840931b37ec74b8011aedaee3100b5c643 100644 --- a/src/win/util.c +++ b/src/win/util.c @@ -73,7 +73,9 @@ static char *process_title; diff --git a/upstream_utils/libuv_patches/0010-Remove-swearing.patch b/upstream_utils/libuv_patches/0009-Remove-swearing.patch similarity index 78% rename from upstream_utils/libuv_patches/0010-Remove-swearing.patch rename to upstream_utils/libuv_patches/0009-Remove-swearing.patch index fabd4a8c19b..5f712d17dc3 100644 --- a/upstream_utils/libuv_patches/0010-Remove-swearing.patch +++ b/upstream_utils/libuv_patches/0009-Remove-swearing.patch @@ -1,7 +1,7 @@ From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Jade Turner Date: Wed, 26 Jun 2024 11:40:37 +0800 -Subject: [PATCH 10/10] Remove swearing +Subject: [PATCH 9/9] Remove swearing --- src/win/fs.c | 2 +- @@ -9,10 +9,10 @@ Subject: [PATCH 10/10] Remove swearing 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/win/fs.c b/src/win/fs.c -index 05488e5d67101adba611f882ded4f6dc5a462d9a..d6b2b3f1d08d846fa941942f4bb33ae2fa30e320 100644 +index af07d092a65909ac4948c679b95468eef549ccca..69a413eab4caa2aee4137411d17f630eea138975 100644 --- a/src/win/fs.c +++ b/src/win/fs.c -@@ -1704,7 +1704,7 @@ INLINE static int fs__stat_handle(HANDLE handle, uv_stat_t* statbuf, +@@ -1844,7 +1844,7 @@ INLINE static void fs__stat_assign_statbuf(uv_stat_t* statbuf, * impossible to delete the file afterwards, since read-only files can't be * deleted. * @@ -22,7 +22,7 @@ index 05488e5d67101adba611f882ded4f6dc5a462d9a..d6b2b3f1d08d846fa941942f4bb33ae2 * * And uv_fs_chmod should probably just fail on windows or be a total no-op. diff --git a/src/win/tty.c b/src/win/tty.c -index 7294f311e17d5d02e5873e60f8f0cdd551f6d34d..f7d5ef6c29f97a979fb1df993b66e31830af55c4 100644 +index 9a4252d9d89d82fdd316312cc4550dd3c0fe798d..f1acef2c64e5a7397c86729d81d1f15ee74b7a43 100644 --- a/src/win/tty.c +++ b/src/win/tty.c @@ -1055,7 +1055,7 @@ int uv__tty_read_stop(uv_tty_t* handle) { diff --git a/wpinet/src/main/native/thirdparty/libuv/include/uv.h b/wpinet/src/main/native/thirdparty/libuv/include/uv.h index 931c96262b3..d8d59a03512 100644 --- a/wpinet/src/main/native/thirdparty/libuv/include/uv.h +++ b/wpinet/src/main/native/thirdparty/libuv/include/uv.h @@ -257,7 +257,9 @@ typedef struct uv_metrics_s uv_metrics_t; typedef enum { UV_LOOP_BLOCK_SIGNAL = 0, - UV_METRICS_IDLE_TIME + UV_METRICS_IDLE_TIME, + UV_LOOP_USE_IO_URING_SQPOLL +#define UV_LOOP_USE_IO_URING_SQPOLL UV_LOOP_USE_IO_URING_SQPOLL } uv_loop_option; typedef enum { @@ -601,7 +603,18 @@ UV_EXTERN int uv_tcp_simultaneous_accepts(uv_tcp_t* handle, int enable); enum uv_tcp_flags { /* Used with uv_tcp_bind, when an IPv6 address is used. */ - UV_TCP_IPV6ONLY = 1 + UV_TCP_IPV6ONLY = 1, + + /* Enable SO_REUSEPORT socket option when binding the handle. + * This allows completely duplicate bindings by multiple processes + * or threads if they all set SO_REUSEPORT before binding the port. + * Incoming connections are distributed across the participating + * listener sockets. + * + * This flag is available only on Linux 3.9+, DragonFlyBSD 3.6+, + * FreeBSD 12.0+, Solaris 11.4, and AIX 7.2.5+ for now. + */ + UV_TCP_REUSEPORT = 2, }; UV_EXTERN int uv_tcp_bind(uv_tcp_t* handle, @@ -642,10 +655,13 @@ enum uv_udp_flags { UV_UDP_PARTIAL = 2, /* * Indicates if SO_REUSEADDR will be set when binding the handle. - * This sets the SO_REUSEPORT socket flag on the BSDs and OS X. On other - * Unix platforms, it sets the SO_REUSEADDR flag. What that means is that - * multiple threads or processes can bind to the same address without error - * (provided they all set the flag) but only the last one to bind will receive + * This sets the SO_REUSEPORT socket flag on the BSDs (except for + * DragonFlyBSD), OS X, and other platforms where SO_REUSEPORTs don't + * have the capability of load balancing, as the opposite of what + * UV_UDP_REUSEPORT would do. On other Unix platforms, it sets the + * SO_REUSEADDR flag. What that means is that multiple threads or + * processes can bind to the same address without error (provided + * they all set the flag) but only the last one to bind will receive * any traffic, in effect "stealing" the port from the previous listener. */ UV_UDP_REUSEADDR = 4, @@ -668,6 +684,18 @@ enum uv_udp_flags { * This flag is no-op on platforms other than Linux. */ UV_UDP_LINUX_RECVERR = 32, + /* + * Indicates if SO_REUSEPORT will be set when binding the handle. + * This sets the SO_REUSEPORT socket option on supported platforms. + * Unlike UV_UDP_REUSEADDR, this flag will make multiple threads or + * processes that are binding to the same address and port "share" + * the port, which means incoming datagrams are distributed across + * the receiving sockets among threads or processes. + * + * This flag is available only on Linux 3.9+, DragonFlyBSD 3.6+, + * FreeBSD 12.0+, Solaris 11.4, and AIX 7.2.5+ for now. + */ + UV_UDP_REUSEPORT = 64, /* * Indicates that recvmmsg should be used, if available. */ @@ -1894,17 +1922,17 @@ struct uv_loop_s { UV_EXTERN void* uv_loop_get_data(const uv_loop_t*); UV_EXTERN void uv_loop_set_data(uv_loop_t*, void* data); -/* String utilities needed internally for dealing with Windows. */ -size_t uv_utf16_length_as_wtf8(const uint16_t* utf16, - ssize_t utf16_len); -int uv_utf16_to_wtf8(const uint16_t* utf16, - ssize_t utf16_len, - char** wtf8_ptr, - size_t* wtf8_len_ptr); -ssize_t uv_wtf8_length_as_utf16(const char* wtf8); -void uv_wtf8_to_utf16(const char* wtf8, - uint16_t* utf16, - size_t utf16_len); +/* Unicode utilities needed for dealing with Windows. */ +UV_EXTERN size_t uv_utf16_length_as_wtf8(const uint16_t* utf16, + ssize_t utf16_len); +UV_EXTERN int uv_utf16_to_wtf8(const uint16_t* utf16, + ssize_t utf16_len, + char** wtf8_ptr, + size_t* wtf8_len_ptr); +UV_EXTERN ssize_t uv_wtf8_length_as_utf16(const char* wtf8); +UV_EXTERN void uv_wtf8_to_utf16(const char* wtf8, + uint16_t* utf16, + size_t utf16_len); /* Don't export the private CPP symbols. */ #undef UV_HANDLE_TYPE_PRIVATE diff --git a/wpinet/src/main/native/thirdparty/libuv/include/uv/tree.h b/wpinet/src/main/native/thirdparty/libuv/include/uv/tree.h index 2b28835fded..06bba084f38 100644 --- a/wpinet/src/main/native/thirdparty/libuv/include/uv/tree.h +++ b/wpinet/src/main/native/thirdparty/libuv/include/uv/tree.h @@ -35,21 +35,7 @@ #endif /* - * This file defines data structures for different types of trees: - * splay trees and red-black trees. - * - * A splay tree is a self-organizing data structure. Every operation - * on the tree causes a splay to happen. The splay moves the requested - * node to the root of the tree and partly rebalances it. - * - * This has the benefit that request locality causes faster lookups as - * the requested nodes move to the top of the tree. On the other hand, - * every lookup causes memory writes. - * - * The Balance Theorem bounds the total access time for m operations - * and n inserts on an initially empty tree as O((m + n)lg n). The - * amortized cost for a sequence of m accesses to a splay tree is O(lg n); - * + * This file defines data structures for red-black trees. * A red-black tree is a binary search tree with the node color as an * extra attribute. It fulfills a set of conditions: * - every search path from the root to a leaf consists of the @@ -61,239 +47,6 @@ * The maximum height of a red-black tree is 2lg (n+1). */ -#define SPLAY_HEAD(name, type) \ -struct name { \ - struct type *sph_root; /* root of the tree */ \ -} - -#define SPLAY_INITIALIZER(root) \ - { NULL } - -#define SPLAY_INIT(root) do { \ - (root)->sph_root = NULL; \ -} while (/*CONSTCOND*/ 0) - -#define SPLAY_ENTRY(type) \ -struct { \ - struct type *spe_left; /* left element */ \ - struct type *spe_right; /* right element */ \ -} - -#define SPLAY_LEFT(elm, field) (elm)->field.spe_left -#define SPLAY_RIGHT(elm, field) (elm)->field.spe_right -#define SPLAY_ROOT(head) (head)->sph_root -#define SPLAY_EMPTY(head) (SPLAY_ROOT(head) == NULL) - -/* SPLAY_ROTATE_{LEFT,RIGHT} expect that tmp hold SPLAY_{RIGHT,LEFT} */ -#define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \ - SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \ - SPLAY_RIGHT(tmp, field) = (head)->sph_root; \ - (head)->sph_root = tmp; \ -} while (/*CONSTCOND*/ 0) - -#define SPLAY_ROTATE_LEFT(head, tmp, field) do { \ - SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \ - SPLAY_LEFT(tmp, field) = (head)->sph_root; \ - (head)->sph_root = tmp; \ -} while (/*CONSTCOND*/ 0) - -#define SPLAY_LINKLEFT(head, tmp, field) do { \ - SPLAY_LEFT(tmp, field) = (head)->sph_root; \ - tmp = (head)->sph_root; \ - (head)->sph_root = SPLAY_LEFT((head)->sph_root, field); \ -} while (/*CONSTCOND*/ 0) - -#define SPLAY_LINKRIGHT(head, tmp, field) do { \ - SPLAY_RIGHT(tmp, field) = (head)->sph_root; \ - tmp = (head)->sph_root; \ - (head)->sph_root = SPLAY_RIGHT((head)->sph_root, field); \ -} while (/*CONSTCOND*/ 0) - -#define SPLAY_ASSEMBLE(head, node, left, right, field) do { \ - SPLAY_RIGHT(left, field) = SPLAY_LEFT((head)->sph_root, field); \ - SPLAY_LEFT(right, field) = SPLAY_RIGHT((head)->sph_root, field); \ - SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(node, field); \ - SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(node, field); \ -} while (/*CONSTCOND*/ 0) - -/* Generates prototypes and inline functions */ - -#define SPLAY_PROTOTYPE(name, type, field, cmp) \ -void name##_SPLAY(struct name *, struct type *); \ -void name##_SPLAY_MINMAX(struct name *, int); \ -struct type *name##_SPLAY_INSERT(struct name *, struct type *); \ -struct type *name##_SPLAY_REMOVE(struct name *, struct type *); \ - \ -/* Finds the node with the same key as elm */ \ -static __inline struct type * \ -name##_SPLAY_FIND(struct name *head, struct type *elm) \ -{ \ - if (SPLAY_EMPTY(head)) \ - return(NULL); \ - name##_SPLAY(head, elm); \ - if ((cmp)(elm, (head)->sph_root) == 0) \ - return (head->sph_root); \ - return (NULL); \ -} \ - \ -static __inline struct type * \ -name##_SPLAY_NEXT(struct name *head, struct type *elm) \ -{ \ - name##_SPLAY(head, elm); \ - if (SPLAY_RIGHT(elm, field) != NULL) { \ - elm = SPLAY_RIGHT(elm, field); \ - while (SPLAY_LEFT(elm, field) != NULL) { \ - elm = SPLAY_LEFT(elm, field); \ - } \ - } else \ - elm = NULL; \ - return (elm); \ -} \ - \ -static __inline struct type * \ -name##_SPLAY_MIN_MAX(struct name *head, int val) \ -{ \ - name##_SPLAY_MINMAX(head, val); \ - return (SPLAY_ROOT(head)); \ -} - -/* Main splay operation. - * Moves node close to the key of elm to top - */ -#define SPLAY_GENERATE(name, type, field, cmp) \ -struct type * \ -name##_SPLAY_INSERT(struct name *head, struct type *elm) \ -{ \ - if (SPLAY_EMPTY(head)) { \ - SPLAY_LEFT(elm, field) = SPLAY_RIGHT(elm, field) = NULL; \ - } else { \ - int __comp; \ - name##_SPLAY(head, elm); \ - __comp = (cmp)(elm, (head)->sph_root); \ - if(__comp < 0) { \ - SPLAY_LEFT(elm, field) = SPLAY_LEFT((head)->sph_root, field); \ - SPLAY_RIGHT(elm, field) = (head)->sph_root; \ - SPLAY_LEFT((head)->sph_root, field) = NULL; \ - } else if (__comp > 0) { \ - SPLAY_RIGHT(elm, field) = SPLAY_RIGHT((head)->sph_root, field); \ - SPLAY_LEFT(elm, field) = (head)->sph_root; \ - SPLAY_RIGHT((head)->sph_root, field) = NULL; \ - } else \ - return ((head)->sph_root); \ - } \ - (head)->sph_root = (elm); \ - return (NULL); \ -} \ - \ -struct type * \ -name##_SPLAY_REMOVE(struct name *head, struct type *elm) \ -{ \ - struct type *__tmp; \ - if (SPLAY_EMPTY(head)) \ - return (NULL); \ - name##_SPLAY(head, elm); \ - if ((cmp)(elm, (head)->sph_root) == 0) { \ - if (SPLAY_LEFT((head)->sph_root, field) == NULL) { \ - (head)->sph_root = SPLAY_RIGHT((head)->sph_root, field); \ - } else { \ - __tmp = SPLAY_RIGHT((head)->sph_root, field); \ - (head)->sph_root = SPLAY_LEFT((head)->sph_root, field); \ - name##_SPLAY(head, elm); \ - SPLAY_RIGHT((head)->sph_root, field) = __tmp; \ - } \ - return (elm); \ - } \ - return (NULL); \ -} \ - \ -void \ -name##_SPLAY(struct name *head, struct type *elm) \ -{ \ - struct type __node, *__left, *__right, *__tmp; \ - int __comp; \ - \ - SPLAY_LEFT(&__node, field) = SPLAY_RIGHT(&__node, field) = NULL; \ - __left = __right = &__node; \ - \ - while ((__comp = (cmp)(elm, (head)->sph_root)) != 0) { \ - if (__comp < 0) { \ - __tmp = SPLAY_LEFT((head)->sph_root, field); \ - if (__tmp == NULL) \ - break; \ - if ((cmp)(elm, __tmp) < 0){ \ - SPLAY_ROTATE_RIGHT(head, __tmp, field); \ - if (SPLAY_LEFT((head)->sph_root, field) == NULL) \ - break; \ - } \ - SPLAY_LINKLEFT(head, __right, field); \ - } else if (__comp > 0) { \ - __tmp = SPLAY_RIGHT((head)->sph_root, field); \ - if (__tmp == NULL) \ - break; \ - if ((cmp)(elm, __tmp) > 0){ \ - SPLAY_ROTATE_LEFT(head, __tmp, field); \ - if (SPLAY_RIGHT((head)->sph_root, field) == NULL) \ - break; \ - } \ - SPLAY_LINKRIGHT(head, __left, field); \ - } \ - } \ - SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ -} \ - \ -/* Splay with either the minimum or the maximum element \ - * Used to find minimum or maximum element in tree. \ - */ \ -void name##_SPLAY_MINMAX(struct name *head, int __comp) \ -{ \ - struct type __node, *__left, *__right, *__tmp; \ - \ - SPLAY_LEFT(&__node, field) = SPLAY_RIGHT(&__node, field) = NULL; \ - __left = __right = &__node; \ - \ - for (;;) { \ - if (__comp < 0) { \ - __tmp = SPLAY_LEFT((head)->sph_root, field); \ - if (__tmp == NULL) \ - break; \ - if (__comp < 0){ \ - SPLAY_ROTATE_RIGHT(head, __tmp, field); \ - if (SPLAY_LEFT((head)->sph_root, field) == NULL) \ - break; \ - } \ - SPLAY_LINKLEFT(head, __right, field); \ - } else if (__comp > 0) { \ - __tmp = SPLAY_RIGHT((head)->sph_root, field); \ - if (__tmp == NULL) \ - break; \ - if (__comp > 0) { \ - SPLAY_ROTATE_LEFT(head, __tmp, field); \ - if (SPLAY_RIGHT((head)->sph_root, field) == NULL) \ - break; \ - } \ - SPLAY_LINKRIGHT(head, __left, field); \ - } \ - } \ - SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ -} - -#define SPLAY_NEGINF -1 -#define SPLAY_INF 1 - -#define SPLAY_INSERT(name, x, y) name##_SPLAY_INSERT(x, y) -#define SPLAY_REMOVE(name, x, y) name##_SPLAY_REMOVE(x, y) -#define SPLAY_FIND(name, x, y) name##_SPLAY_FIND(x, y) -#define SPLAY_NEXT(name, x, y) name##_SPLAY_NEXT(x, y) -#define SPLAY_MIN(name, x) (SPLAY_EMPTY(x) ? NULL \ - : name##_SPLAY_MIN_MAX(x, SPLAY_NEGINF)) -#define SPLAY_MAX(name, x) (SPLAY_EMPTY(x) ? NULL \ - : name##_SPLAY_MIN_MAX(x, SPLAY_INF)) - -#define SPLAY_FOREACH(x, name, head) \ - for ((x) = SPLAY_MIN(name, head); \ - (x) != NULL; \ - (x) = SPLAY_NEXT(name, head, x)) - /* Macros that define a red-black tree */ #define RB_HEAD(name, type) \ struct name { \ @@ -730,8 +483,8 @@ name##_RB_MINMAX(struct name *head, int val) \ #define RB_REMOVE(name, x, y) name##_RB_REMOVE(x, y) #define RB_FIND(name, x, y) name##_RB_FIND(x, y) #define RB_NFIND(name, x, y) name##_RB_NFIND(x, y) -#define RB_NEXT(name, x, y) name##_RB_NEXT(y) -#define RB_PREV(name, x, y) name##_RB_PREV(y) +#define RB_NEXT(name, x) name##_RB_NEXT(x) +#define RB_PREV(name, x) name##_RB_PREV(x) #define RB_MIN(name, x) name##_RB_MINMAX(x, RB_NEGINF) #define RB_MAX(name, x) name##_RB_MINMAX(x, RB_INF) diff --git a/wpinet/src/main/native/thirdparty/libuv/include/uv/version.h b/wpinet/src/main/native/thirdparty/libuv/include/uv/version.h index d6a61a10f7c..43db019867e 100644 --- a/wpinet/src/main/native/thirdparty/libuv/include/uv/version.h +++ b/wpinet/src/main/native/thirdparty/libuv/include/uv/version.h @@ -31,7 +31,7 @@ */ #define UV_VERSION_MAJOR 1 -#define UV_VERSION_MINOR 48 +#define UV_VERSION_MINOR 49 #define UV_VERSION_PATCH 0 #define UV_VERSION_IS_RELEASE 1 #define UV_VERSION_SUFFIX "" diff --git a/wpinet/src/main/native/thirdparty/libuv/include/uv/win.h b/wpinet/src/main/native/thirdparty/libuv/include/uv/win.h index f17abc1f926..576f0fa52b6 100644 --- a/wpinet/src/main/native/thirdparty/libuv/include/uv/win.h +++ b/wpinet/src/main/native/thirdparty/libuv/include/uv/win.h @@ -294,8 +294,8 @@ typedef struct { #define UV_ONCE_INIT { 0, NULL } typedef struct uv_once_s { - unsigned char ran; - HANDLE event; + unsigned char unused; + INIT_ONCE init_once; } uv_once_t; /* Platform-specific definitions for uv_spawn support. */ diff --git a/wpinet/src/main/native/thirdparty/libuv/src/random.cpp b/wpinet/src/main/native/thirdparty/libuv/src/random.cpp index e75f77deb2b..57fc0d911da 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/random.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/random.cpp @@ -82,7 +82,7 @@ static void uv__random_done(struct uv__work* w, int status) { uv_random_t* req; req = container_of(w, uv_random_t, work_req); - uv__req_unregister(req->loop, req); + uv__req_unregister(req->loop); if (status == 0) status = req->status; diff --git a/wpinet/src/main/native/thirdparty/libuv/src/threadpool.cpp b/wpinet/src/main/native/thirdparty/libuv/src/threadpool.cpp index aa282af4689..a08832cd4c2 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/threadpool.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/threadpool.cpp @@ -360,7 +360,7 @@ static void uv__queue_done(struct uv__work* w, int err) { uv_work_t* req; req = container_of(w, uv_work_t, work_req); - uv__req_unregister(req->loop, req); + uv__req_unregister(req->loop); if (req->after_work_cb == NULL) return; diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/async.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/async.cpp index fef4ae93343..ce63d0ac8c4 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/async.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/async.cpp @@ -39,6 +39,34 @@ #include +#if UV__KQUEUE_EVFILT_USER +static uv_once_t kqueue_runtime_detection_guard = UV_ONCE_INIT; +static int kqueue_evfilt_user_support = 1; + + +static void uv__kqueue_runtime_detection(void) { + int kq; + struct kevent ev[2]; + struct timespec timeout = {0, 0}; + + /* Perform the runtime detection to ensure that kqueue with + * EVFILT_USER actually works. */ + kq = kqueue(); + EV_SET(ev, UV__KQUEUE_EVFILT_USER_IDENT, EVFILT_USER, + EV_ADD | EV_CLEAR, 0, 0, 0); + EV_SET(ev + 1, UV__KQUEUE_EVFILT_USER_IDENT, EVFILT_USER, + 0, NOTE_TRIGGER, 0, 0); + if (kevent(kq, ev, 2, ev, 1, &timeout) < 1 || + ev[0].filter != EVFILT_USER || + ev[0].ident != UV__KQUEUE_EVFILT_USER_IDENT || + ev[0].flags & EV_ERROR) + /* If we wind up here, we can assume that EVFILT_USER is defined but + * broken on the current system. */ + kqueue_evfilt_user_support = 0; + uv__close(kq); +} +#endif + static void uv__async_send(uv_loop_t* loop); static int uv__async_start(uv_loop_t* loop); static void uv__cpu_relax(void); @@ -131,8 +159,10 @@ void uv__async_close(uv_async_t* handle) { static void uv__async_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { +#ifndef __linux__ char buf[1024]; ssize_t r; +#endif struct uv__queue queue; struct uv__queue* q; uv_async_t* h; @@ -140,7 +170,12 @@ static void uv__async_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { assert(w == &loop->async_io_watcher); +#ifndef __linux__ +#if UV__KQUEUE_EVFILT_USER + for (;!kqueue_evfilt_user_support;) { +#else for (;;) { +#endif r = read(w->fd, buf, sizeof(buf)); if (r == sizeof(buf)) @@ -157,6 +192,7 @@ static void uv__async_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { abort(); } +#endif /* !__linux__ */ uv__queue_move(&loop->async_handles, &queue); while (!uv__queue_empty(&queue)) { @@ -180,34 +216,58 @@ static void uv__async_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { static void uv__async_send(uv_loop_t* loop) { - const void* buf; - ssize_t len; int fd; - int r; - - buf = ""; - len = 1; - fd = loop->async_wfd; - -#if defined(__linux__) - if (fd == -1) { - static const uint64_t val = 1; - buf = &val; - len = sizeof(val); - fd = loop->async_io_watcher.fd; /* eventfd */ + ssize_t r; +#ifdef __linux__ + uint64_t val; + + fd = loop->async_io_watcher.fd; /* eventfd */ + for (val = 1; /* empty */; val = 1) { + r = write(fd, &val, sizeof(uint64_t)); + if (r < 0) { + /* When EAGAIN occurs, the eventfd counter hits the maximum value of the unsigned 64-bit. + * We need to first drain the eventfd and then write again. + * + * Check out https://man7.org/linux/man-pages/man2/eventfd.2.html for details. + */ + if (errno == EAGAIN) { + /* It's ready to retry. */ + if (read(fd, &val, sizeof(uint64_t)) > 0 || errno == EAGAIN) { + continue; + } + } + /* Unknown error occurs. */ + break; + } + return; + } +#else +#if UV__KQUEUE_EVFILT_USER + struct kevent ev; + + if (kqueue_evfilt_user_support) { + fd = loop->async_io_watcher.fd; /* magic number for EVFILT_USER */ + EV_SET(&ev, fd, EVFILT_USER, 0, NOTE_TRIGGER, 0, 0); + r = kevent(loop->backend_fd, &ev, 1, NULL, 0, NULL); + if (r == 0) + return; + else + abort(); } #endif + fd = loop->async_wfd; /* write end of the pipe */ do - r = write(fd, buf, len); + r = write(fd, "x", 1); while (r == -1 && errno == EINTR); - if (r == len) + if (r == 1) return; if (r == -1) if (errno == EAGAIN || errno == EWOULDBLOCK) return; +#endif abort(); } @@ -216,6 +276,9 @@ static void uv__async_send(uv_loop_t* loop) { static int uv__async_start(uv_loop_t* loop) { int pipefd[2]; int err; +#if UV__KQUEUE_EVFILT_USER + struct kevent ev; +#endif if (loop->async_io_watcher.fd != -1) return 0; @@ -227,6 +290,36 @@ static int uv__async_start(uv_loop_t* loop) { pipefd[0] = err; pipefd[1] = -1; +#elif UV__KQUEUE_EVFILT_USER + uv_once(&kqueue_runtime_detection_guard, uv__kqueue_runtime_detection); + if (kqueue_evfilt_user_support) { + /* In order not to break the generic pattern of I/O polling, a valid + * file descriptor is required to take up a room in loop->watchers, + * thus we create one for that, but this fd will not be actually used, + * it's just a placeholder and magic number which is going to be closed + * during the cleanup, as other FDs. */ + err = uv__open_cloexec("/dev/null", O_RDONLY); + if (err < 0) + return err; + + pipefd[0] = err; + pipefd[1] = -1; + + /* When using EVFILT_USER event to wake up the kqueue, this event must be + * registered beforehand. Otherwise, calling kevent() to issue an + * unregistered EVFILT_USER event will get an ENOENT. + * Since uv__async_send() may happen before uv__io_poll() with multi-threads, + * we can't defer this registration of EVFILT_USER event as we did for other + * events, but must perform it right away. */ + EV_SET(&ev, err, EVFILT_USER, EV_ADD | EV_CLEAR, 0, 0, 0); + err = kevent(loop->backend_fd, &ev, 1, NULL, 0, NULL); + if (err < 0) + return UV__ERR(errno); + } else { + err = uv__make_pipe(pipefd, UV_NONBLOCK_PIPE); + if (err < 0) + return err; + } #else err = uv__make_pipe(pipefd, UV_NONBLOCK_PIPE); if (err < 0) @@ -237,6 +330,13 @@ static int uv__async_start(uv_loop_t* loop) { uv__io_start(loop, &loop->async_io_watcher, POLLIN); loop->async_wfd = pipefd[1]; +#if UV__KQUEUE_EVFILT_USER + /* Prevent the EVFILT_USER event from being added to kqueue redundantly + * and mistakenly later in uv__io_poll(). */ + if (kqueue_evfilt_user_support) + loop->async_io_watcher.events = loop->async_io_watcher.pevents; +#endif + return 0; } diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/core.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/core.cpp index f13ffd1714a..6c701c0c5a8 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/core.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/core.cpp @@ -54,7 +54,8 @@ #if defined(__APPLE__) # include -# endif /* defined(__APPLE__) */ +# include +#endif /* defined(__APPLE__) */ #if defined(__APPLE__) && !TARGET_OS_IPHONE @@ -95,6 +96,15 @@ extern char** environ; # define uv__accept4 accept4 #endif +#if defined(__FreeBSD__) +# include +# include +#endif + +#if defined(__NetBSD__) +# include +#endif + #if defined(__linux__) && defined(__SANITIZE_THREAD__) && defined(__clang__) # include #endif @@ -157,7 +167,7 @@ void uv_close(uv_handle_t* handle, uv_close_cb close_cb) { break; case UV_TTY: - uv__stream_close((uv_stream_t*)handle); + uv__tty_close((uv_tty_t*)handle); break; case UV_TCP: @@ -1625,6 +1635,7 @@ static int set_nice_for_calling_thread(int priority) { * If the function fails, the return value is non-zero. */ int uv_thread_setpriority(uv_thread_t tid, int priority) { +#if !defined(__GNU__) int r; int min; int max; @@ -1686,10 +1697,14 @@ int uv_thread_setpriority(uv_thread_t tid, int priority) { param.sched_priority = prio; r = pthread_setschedparam(tid, policy, ¶m); if (r != 0) - return UV__ERR(errno); + return UV__ERR(errno); } return 0; +#else /* !defined(__GNU__) */ + /* Simulate success on systems where thread priority is not implemented. */ + return 0; +#endif /* !defined(__GNU__) */ } int uv_os_uname(uv_utsname_t* buffer) { @@ -1873,11 +1888,31 @@ int uv__search_path(const char* prog, char* buf, size_t* buflen) { return UV_EINVAL; } +#if defined(__linux__) || defined (__FreeBSD__) +# define uv__cpu_count(cpuset) CPU_COUNT(cpuset) +#elif defined(__NetBSD__) +static int uv__cpu_count(cpuset_t *cpuset) { + int rc; + cpuid_t i; + + rc = 0; + for (i = 0;; i++) { + int r = cpuset_isset(cpu, set); + if (r < 0) + break; + if (r) + rc++; + } + + return rc; +} +#endif /* __NetBSD__ */ unsigned int uv_available_parallelism(void) { + long rc = -1; + #ifdef __linux__ cpu_set_t set; - long rc; memset(&set, 0, sizeof(set)); @@ -1886,29 +1921,127 @@ unsigned int uv_available_parallelism(void) { * before falling back to sysconf(_SC_NPROCESSORS_ONLN). */ if (0 == sched_getaffinity(0, sizeof(set), &set)) - rc = CPU_COUNT(&set); - else - rc = sysconf(_SC_NPROCESSORS_ONLN); - - if (rc < 1) - rc = 1; - - return (unsigned) rc; + rc = uv__cpu_count(&set); #elif defined(__MVS__) - int rc; - rc = __get_num_online_cpus(); if (rc < 1) rc = 1; return (unsigned) rc; -#else /* __linux__ */ - long rc; +#elif defined(__FreeBSD__) + cpuset_t set; + + memset(&set, 0, sizeof(set)); + + if (0 == cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(set), &set)) + rc = uv__cpu_count(&set); +#elif defined(__NetBSD__) + cpuset_t* set = cpuset_create(); + if (set != NULL) { + if (0 == sched_getaffinity_np(getpid(), sizeof(set), &set)) + rc = uv__cpu_count(&set); + cpuset_destroy(set); + } +#elif defined(__APPLE__) + int nprocs; + size_t i; + size_t len = sizeof(nprocs); + static const char *mib[] = { + "hw.activecpu", + "hw.logicalcpu", + "hw.ncpu" + }; + + for (i = 0; i < ARRAY_SIZE(mib); i++) { + if (0 == sysctlbyname(mib[i], &nprocs, &len, NULL, 0) && + len == sizeof(nprocs) && + nprocs > 0) { + rc = nprocs; + break; + } + } +#elif defined(__OpenBSD__) + int nprocs; + size_t i; + size_t len = sizeof(nprocs); + static int mib[][2] = { +# ifdef HW_NCPUONLINE + { CTL_HW, HW_NCPUONLINE }, +# endif + { CTL_HW, HW_NCPU } + }; + + for (i = 0; i < ARRAY_SIZE(mib); i++) { + if (0 == sysctl(mib[i], ARRAY_SIZE(mib[i]), &nprocs, &len, NULL, 0) && + len == sizeof(nprocs) && + nprocs > 0) { + rc = nprocs; + break; + } + } +#endif /* __linux__ */ + + if (rc < 0) + rc = sysconf(_SC_NPROCESSORS_ONLN); + +#ifdef __linux__ + { + double rc_with_cgroup; + uv__cpu_constraint c = {0, 0, 0.0}; + + if (uv__get_constrained_cpu(&c) == 0 && c.period_length > 0) { + rc_with_cgroup = (double)c.quota_per_period / c.period_length * c.proportions; + if (rc_with_cgroup < rc) + rc = (long)rc_with_cgroup; /* Casting is safe since rc_with_cgroup < rc < LONG_MAX */ + } + } +#endif /* __linux__ */ - rc = sysconf(_SC_NPROCESSORS_ONLN); if (rc < 1) rc = 1; return (unsigned) rc; -#endif /* __linux__ */ +} + +int uv__sock_reuseport(int fd) { + int on = 1; +#if defined(__FreeBSD__) && __FreeBSD__ >= 12 && defined(SO_REUSEPORT_LB) + /* FreeBSD 12 introduced a new socket option named SO_REUSEPORT_LB + * with the capability of load balancing, it's the substitution of + * the SO_REUSEPORTs on Linux and DragonFlyBSD. */ + if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT_LB, &on, sizeof(on))) + return UV__ERR(errno); +#elif (defined(__linux__) || \ + defined(_AIX73) || \ + (defined(__DragonFly__) && __DragonFly_version >= 300600) || \ + (defined(UV__SOLARIS_11_4) && UV__SOLARIS_11_4)) && \ + defined(SO_REUSEPORT) + /* On Linux 3.9+, the SO_REUSEPORT implementation distributes connections + * evenly across all of the threads (or processes) that are blocked in + * accept() on the same port. As with TCP, SO_REUSEPORT distributes datagrams + * evenly across all of the receiving threads (or process). + * + * DragonFlyBSD 3.6.0 extended SO_REUSEPORT to distribute workload to + * available sockets, which made it the equivalent of Linux's SO_REUSEPORT. + * + * AIX 7.2.5 added the feature that would add the capability to distribute + * incoming connections or datagrams across all listening ports for SO_REUSEPORT. + * + * Solaris 11 supported SO_REUSEPORT, but it's implemented only for + * binding to the same address and port, without load balancing. + * Solaris 11.4 extended SO_REUSEPORT with the capability of load balancing. + */ + if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &on, sizeof(on))) + return UV__ERR(errno); +#else + (void) (fd); + (void) (on); + /* SO_REUSEPORTs do not have the capability of load balancing on platforms + * other than those mentioned above. The semantics are completely different, + * therefore we shouldn't enable it, but fail this operation to indicate that + * UV_[TCP/UDP]_REUSEPORT is not supported on these platforms. */ + return UV_ENOTSUP; +#endif + + return 0; } diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/cygwin.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/cygwin.cpp index 4e5413963d6..4913108223f 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/cygwin.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/cygwin.cpp @@ -36,9 +36,45 @@ int uv_uptime(double* uptime) { } int uv_resident_set_memory(size_t* rss) { - /* FIXME: read /proc/meminfo? */ - *rss = 0; + char buf[1024]; + const char* s; + long val; + int rc; + int i; + struct sysinfo si; + + /* rss: 24th element */ + rc = uv__slurp("/proc/self/stat", buf, sizeof(buf)); + if (rc < 0) + return rc; + + /* find the last ')' */ + s = strrchr(buf, ')'); + if (s == NULL) + goto err; + + for (i = 1; i <= 22; i++) { + s = strchr(s + 1, ' '); + if (s == NULL) + goto err; + } + + errno = 0; + val = strtol(s, NULL, 10); + if (val < 0 || errno != 0) + goto err; + + do + rc = sysinfo(&si); + while (rc == -1 && errno == EINTR); + if (rc == -1) + return UV__ERR(errno); + + *rss = val * si.mem_unit; return 0; + +err: + return UV_EINVAL; } int uv_cpu_info(uv_cpu_info_t** cpu_infos, int* count) { diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/darwin-syscalls.h b/wpinet/src/main/native/thirdparty/libuv/src/unix/darwin-syscalls.h new file mode 100644 index 00000000000..851af81c74e --- /dev/null +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/darwin-syscalls.h @@ -0,0 +1,19 @@ +#ifndef UV_DARWIN_SYSCALLS_H_ +#define UV_DARWIN_SYSCALLS_H_ + +#include +#include + +/* https://github.com/apple/darwin-xnu/blob/master/bsd/sys/socket.h */ + +struct mmsghdr { + struct msghdr msg_hdr; + size_t msg_len; +}; + +extern "C" { +ssize_t recvmsg_x(int s, const struct mmsghdr* msgp, u_int cnt, int flags); +ssize_t sendmsg_x(int s, const struct mmsghdr* msgp, u_int cnt, int flags); +} + +#endif /* UV_DARWIN_SYSCALLS_H_ */ diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/darwin.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/darwin.cpp index dc93d236b6b..b1657a2ffda 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/darwin.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/darwin.cpp @@ -25,7 +25,6 @@ #include #include -#include #include #include #include /* _NSGetExecutablePath */ @@ -34,7 +33,6 @@ #include /* sysconf */ static uv_once_t once = UV_ONCE_INIT; -static uint64_t (*time_func)(void); static mach_timebase_info_data_t timebase; @@ -56,16 +54,12 @@ void uv__platform_loop_delete(uv_loop_t* loop) { static void uv__hrtime_init_once(void) { if (KERN_SUCCESS != mach_timebase_info(&timebase)) abort(); - - time_func = (uint64_t (*)(void)) dlsym(RTLD_DEFAULT, "mach_continuous_time"); - if (time_func == NULL) - time_func = mach_absolute_time; } uint64_t uv__hrtime(uv_clocktype_t type) { uv_once(&once, uv__hrtime_init_once); - return time_func() * timebase.numer / timebase.denom; + return mach_continuous_time() * timebase.numer / timebase.denom; } diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/freebsd.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/freebsd.cpp index 1bd63886b82..8fb03c7803c 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/freebsd.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/freebsd.cpp @@ -26,7 +26,12 @@ #include #include -#include +#if defined(__DragonFly__) +# include +# include +#else +# include +#endif #include #include #include diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/fs.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/fs.cpp index 75c3093cb7c..49a7d52b565 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/fs.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/fs.cpp @@ -84,17 +84,6 @@ # include #endif -#if defined(__CYGWIN__) || \ - (defined(__HAIKU__) && B_HAIKU_VERSION < B_HAIKU_VERSION_1_PRE_BETA_5) || \ - (defined(__sun) && !defined(__illumos__)) || \ - (defined(__APPLE__) && !TARGET_OS_IPHONE && \ - MAC_OS_X_VERSION_MIN_REQUIRED < 110000) -#define preadv(fd, bufs, nbufs, off) \ - pread(fd, (bufs)->iov_base, (bufs)->iov_len, off) -#define pwritev(fd, bufs, nbufs, off) \ - pwrite(fd, (bufs)->iov_base, (bufs)->iov_len, off) -#endif - #if defined(_AIX) && _XOPEN_SOURCE <= 600 extern char *mkdtemp(char *template); /* See issue #740 on AIX < 7 */ #endif @@ -151,7 +140,7 @@ extern char *mkdtemp(char *template); /* See issue #740 on AIX < 7 */ #define POST \ do { \ if (cb != NULL) { \ - uv__req_register(loop, req); \ + uv__req_register(loop); \ uv__work_submit(loop, \ &req->work_req, \ UV__WORK_FAST_IO, \ @@ -408,6 +397,118 @@ static ssize_t uv__fs_open(uv_fs_t* req) { } +static ssize_t uv__preadv_or_pwritev_emul(int fd, + const struct iovec* bufs, + size_t nbufs, + off_t off, + int is_pread) { + ssize_t total; + ssize_t r; + size_t i; + size_t n; + void* p; + + total = 0; + for (i = 0; i < (size_t) nbufs; i++) { + p = bufs[i].iov_base; + n = bufs[i].iov_len; + + do + if (is_pread) + r = pread(fd, p, n, off); + else + r = pwrite(fd, p, n, off); + while (r == -1 && errno == EINTR); + + if (r == -1) { + if (total > 0) + return total; + return -1; + } + + off += r; + total += r; + + if ((size_t) r < n) + return total; + } + + return total; +} + + +#ifdef __linux__ +typedef int uv__iovcnt; +#else +typedef size_t uv__iovcnt; +#endif + + +static ssize_t uv__preadv_emul(int fd, + const struct iovec* bufs, + uv__iovcnt nbufs, + off_t off) { + return uv__preadv_or_pwritev_emul(fd, bufs, nbufs, off, /*is_pread*/1); +} + + +static ssize_t uv__pwritev_emul(int fd, + const struct iovec* bufs, + uv__iovcnt nbufs, + off_t off) { + return uv__preadv_or_pwritev_emul(fd, bufs, nbufs, off, /*is_pread*/0); +} + + +/* The function pointer cache is an uintptr_t because std::atomic* + * doesn't work on macos/ios/etc... + */ +static ssize_t uv__preadv_or_pwritev(int fd, + const struct iovec* bufs, + size_t nbufs, + off_t off, + std::atomic* cache, + int is_pread) { + ssize_t (*f)(int, const struct iovec*, uv__iovcnt, off_t); + void* p; + + p = (void*) atomic_load_explicit(cache, std::memory_order_relaxed); + if (p == NULL) { +#ifdef RTLD_DEFAULT + p = dlsym(RTLD_DEFAULT, is_pread ? "preadv" : "pwritev"); + dlerror(); /* Clear errors. */ +#endif /* RTLD_DEFAULT */ + if (p == NULL) + p = (void*)(is_pread ? uv__preadv_emul : uv__pwritev_emul); + atomic_store_explicit(cache, (uintptr_t) p, std::memory_order_relaxed); + } + + /* Use memcpy instead of `f = p` to work around a compiler bug, + * see https://github.com/libuv/libuv/issues/4532 + */ + memcpy(&f, &p, sizeof(p)); + return f(fd, bufs, nbufs, off); +} + + +static ssize_t uv__preadv(int fd, + const struct iovec* bufs, + size_t nbufs, + off_t off) { + static std::atomic cache; + return uv__preadv_or_pwritev(fd, bufs, nbufs, off, &cache, /*is_pread*/1); +} + + +static ssize_t uv__pwritev(int fd, + const struct iovec* bufs, + size_t nbufs, + off_t off) { + static std::atomic cache; + return uv__preadv_or_pwritev(fd, bufs, nbufs, off, &cache, /*is_pread*/0); +} + + static ssize_t uv__fs_read(uv_fs_t* req) { const struct iovec* bufs; unsigned int iovmax; @@ -435,7 +536,7 @@ static ssize_t uv__fs_read(uv_fs_t* req) { if (nbufs == 1) r = pread(fd, bufs->iov_base, bufs->iov_len, off); else if (nbufs > 1) - r = preadv(fd, bufs, nbufs, off); + r = uv__preadv(fd, bufs, nbufs, off); } #ifdef __PASE__ @@ -693,14 +794,23 @@ static ssize_t uv__fs_readlink(uv_fs_t* req) { static ssize_t uv__fs_realpath(uv_fs_t* req) { char* buf; + char* tmp; #if defined(_POSIX_VERSION) && _POSIX_VERSION >= 200809L - buf = realpath(req->path, NULL); - if (buf == NULL) + tmp = realpath(req->path, NULL); + if (tmp == NULL) return -1; + buf = uv__strdup(tmp); + free(tmp); /* _Not_ uv__free. */ + if (buf == NULL) { + errno = ENOMEM; + return -1; + } #else ssize_t len; + (void)tmp; + len = uv__fs_pathmax_size(req->path); buf = (char*)uv__malloc(len + 1); @@ -964,7 +1074,10 @@ static ssize_t uv__fs_sendfile(uv_fs_t* req) { return -1; } -#elif defined(__APPLE__) || defined(__DragonFly__) || defined(__FreeBSD__) +/* sendfile() on iOS(arm64) will throw SIGSYS signal cause crash. */ +#elif (defined(__APPLE__) && !TARGET_OS_IPHONE) \ + || defined(__DragonFly__) \ + || defined(__FreeBSD__) { off_t len; ssize_t r; @@ -1114,7 +1227,7 @@ static ssize_t uv__fs_write(uv_fs_t* req) { if (nbufs == 1) r = pwrite(fd, bufs->iov_base, bufs->iov_len, off); else if (nbufs > 1) - r = pwritev(fd, bufs, nbufs, off); + r = uv__pwritev(fd, bufs, nbufs, off); } return r; @@ -1127,6 +1240,7 @@ static ssize_t uv__fs_copyfile(uv_fs_t* req) { uv_file dstfd; struct stat src_statsbuf; struct stat dst_statsbuf; + struct timespec times[2]; int dst_flags; int result; int err; @@ -1204,6 +1318,35 @@ static ssize_t uv__fs_copyfile(uv_fs_t* req) { } } + /** + * Change the timestamps of the destination file to match the source file. + */ +#if defined(__APPLE__) + times[0] = src_statsbuf.st_atimespec; + times[1] = src_statsbuf.st_mtimespec; +#elif defined(_AIX) + times[0].tv_sec = src_statsbuf.st_atime; + times[0].tv_nsec = src_statsbuf.st_atime_n; + times[1].tv_sec = src_statsbuf.st_mtime; + times[1].tv_nsec = src_statsbuf.st_mtime_n; +#else + times[0] = src_statsbuf.st_atim; + times[1] = src_statsbuf.st_mtim; +#endif + + if (futimens(dstfd, times) == -1) { + err = UV__ERR(errno); + goto out; + } + + /* + * Change the ownership and permissions of the destination file to match the + * source file. + * `cp -p` does not care about errors here, so we don't either. Reuse the + * `result` variable to silence a -Wunused-result warning. + */ + result = fchown(dstfd, src_statsbuf.st_uid, src_statsbuf.st_gid); + if (fchmod(dstfd, src_statsbuf.st_mode) == -1) { err = UV__ERR(errno); #ifdef __linux__ @@ -1621,7 +1764,7 @@ static void uv__fs_done(struct uv__work* w, int status) { uv_fs_t* req; req = container_of(w, uv_fs_t, work_req); - uv__req_unregister(req->loop, req); + uv__req_unregister(req->loop); if (status == UV_ECANCELED) { assert(req->result == 0); @@ -1633,7 +1776,7 @@ static void uv__fs_done(struct uv__work* w, int status) { void uv__fs_post(uv_loop_t* loop, uv_fs_t* req) { - uv__req_register(loop, req); + uv__req_register(loop); uv__work_submit(loop, &req->work_req, UV__WORK_FAST_IO, diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/fsevents.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/fsevents.cpp index c31d08ba37c..0d1c9ebad6f 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/fsevents.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/fsevents.cpp @@ -276,10 +276,6 @@ static void uv__fsevents_event_cb(const FSEventStreamRef streamRef, path += handle->realpath_len; len -= handle->realpath_len; - /* Ignore events with path equal to directory itself */ - if (len <= 1 && (flags & kFSEventStreamEventFlagItemIsDir)) - continue; - if (len == 0) { /* Since we're using fsevents to watch the file itself, * realpath == path, and we now need to get the basename of the file back @@ -793,6 +789,7 @@ int uv__cf_loop_signal(uv_loop_t* loop, /* Runs in UV loop to initialize handle */ int uv__fsevents_init(uv_fs_event_t* handle) { + char* buf; int err; uv__cf_loop_state_t* state; @@ -801,9 +798,13 @@ int uv__fsevents_init(uv_fs_event_t* handle) { return err; /* Get absolute path to file */ - handle->realpath = realpath(handle->path, NULL); - if (handle->realpath == NULL) + buf = realpath(handle->path, NULL); + if (buf == NULL) return UV__ERR(errno); + handle->realpath = uv__strdup(buf); + free(buf); /* _Not_ uv__free. */ + if (handle->realpath == NULL) + return UV_ENOMEM; handle->realpath_len = strlen(handle->realpath); /* Initialize event queue */ diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/getaddrinfo.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/getaddrinfo.cpp index 41dc3909969..5a205d0ebd8 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/getaddrinfo.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/getaddrinfo.cpp @@ -109,7 +109,7 @@ static void uv__getaddrinfo_done(struct uv__work* w, int status) { uv_getaddrinfo_t* req; req = container_of(w, uv_getaddrinfo_t, work_req); - uv__req_unregister(req->loop, req); + uv__req_unregister(req->loop); /* See initialization in uv_getaddrinfo(). */ if (req->hints) diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/getnameinfo.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/getnameinfo.cpp index 991002a67d7..959b4c6a821 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/getnameinfo.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/getnameinfo.cpp @@ -58,7 +58,7 @@ static void uv__getnameinfo_done(struct uv__work* w, int status) { char* service; req = container_of(w, uv_getnameinfo_t, work_req); - uv__req_unregister(req->loop, req); + uv__req_unregister(req->loop); host = service = NULL; if (status == UV_ECANCELED) { diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/internal.h b/wpinet/src/main/native/thirdparty/libuv/src/unix/internal.h index 35ac6d1f6da..c1ead096f7d 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/internal.h +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/internal.h @@ -35,6 +35,10 @@ #include #include #include +#if defined(__APPLE__) || defined(__DragonFly__) || \ + defined(__FreeBSD__) || defined(__NetBSD__) +#include +#endif #define uv__msan_unpoison(p, n) \ do { \ @@ -71,8 +75,11 @@ # include #endif /* _AIX */ -#if defined(__APPLE__) && !TARGET_OS_IPHONE -# include +#if defined(__APPLE__) +# include "darwin-syscalls.h" +# if !TARGET_OS_IPHONE +# include +# endif #endif /* @@ -157,7 +164,8 @@ typedef struct uv__stream_queued_fds_s uv__stream_queued_fds_t; /* loop flags */ enum { UV_LOOP_BLOCK_SIGPROF = 0x1, - UV_LOOP_REAP_CHILDREN = 0x2 + UV_LOOP_REAP_CHILDREN = 0x2, + UV_LOOP_ENABLE_IO_URING_SQPOLL = 0x4 }; /* flags of excluding ifaddr */ @@ -245,6 +253,7 @@ int uv__close(int fd); /* preserves errno */ int uv__close_nocheckstdio(int fd); int uv__close_nocancel(int fd); int uv__socket(int domain, int type, int protocol); +int uv__sock_reuseport(int fd); ssize_t uv__recvmsg(int fd, struct msghdr *msg, int flags); void uv__make_close_pending(uv_handle_t* handle); int uv__getiovmax(void); @@ -289,6 +298,9 @@ int uv__tcp_listen(uv_tcp_t* tcp, int backlog, uv_connection_cb cb); int uv__tcp_nodelay(int fd, int on); int uv__tcp_keepalive(int fd, int on, unsigned int delay); +/* tty */ +void uv__tty_close(uv_tty_t* handle); + /* pipe */ int uv__pipe_listen(uv_pipe_t* handle, int backlog, uv_connection_cb cb); @@ -474,4 +486,44 @@ uv__fs_copy_file_range(int fd_in, #define UV__CPU_AFFINITY_SUPPORTED 0 #endif +#ifdef __linux__ +typedef struct { + long long quota_per_period; + long long period_length; + double proportions; +} uv__cpu_constraint; + +int uv__get_constrained_cpu(uv__cpu_constraint* constraint); +#endif + +#ifdef __sun +#ifdef SO_FLOW_NAME +/* Since it's impossible to detect the Solaris 11.4 version via OS macros, + * so we check the presence of the socket option SO_FLOW_NAME that was first + * introduced to Solaris 11.4 and define a custom macro for determining 11.4. + */ +#define UV__SOLARIS_11_4 (1) +#else +#define UV__SOLARIS_11_4 (0) +#endif +#endif + +#if defined(EVFILT_USER) && defined(NOTE_TRIGGER) +/* EVFILT_USER is available since OS X 10.6, DragonFlyBSD 4.0, + * FreeBSD 8.1, and NetBSD 10.0. + * + * Note that even though EVFILT_USER is defined on the current system, + * it may still fail to work at runtime somehow. In that case, we fall + * back to pipe-based signaling. + */ +#define UV__KQUEUE_EVFILT_USER 1 +/* Magic number of identifier used for EVFILT_USER during runtime detection. + * There are no Google hits for this number when I create it. That way, + * people will be directed here if this number gets printed due to some + * kqueue error and they google for help. */ +#define UV__KQUEUE_EVFILT_USER_IDENT 0x1e7e7711 +#else +#define UV__KQUEUE_EVFILT_USER 0 +#endif + #endif /* UV_UNIX_INTERNAL_H_ */ diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/kqueue.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/kqueue.cpp index bd09ac39dda..6f0e06476a6 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/kqueue.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/kqueue.cpp @@ -101,6 +101,39 @@ int uv__io_fork(uv_loop_t* loop) { int uv__io_check_fd(uv_loop_t* loop, int fd) { struct kevent ev; int rc; + struct stat sb; +#ifdef __APPLE__ + char path[MAXPATHLEN]; +#endif + + if (uv__fstat(fd, &sb)) + return UV__ERR(errno); + + /* On FreeBSD, kqueue only supports EVFILT_READ notification for regular files + * and always reports ready events for writing, resulting in busy-looping. + * + * On Darwin, DragonFlyBSD, NetBSD and OpenBSD, kqueue reports ready events for + * regular files as readable and writable only once, acting like an EV_ONESHOT. + * + * Neither of the above cases should be added to the kqueue. + */ + if (S_ISREG(sb.st_mode) || S_ISDIR(sb.st_mode)) + return UV_EINVAL; + +#ifdef __APPLE__ + /* On Darwin (both macOS and iOS), in addition to regular files, FIFOs also don't + * work properly with kqueue: the disconnection from the last writer won't trigger + * an event for kqueue in spite of what the man pages say. Thus, we also disallow + * the case of S_IFIFO. */ + if (S_ISFIFO(sb.st_mode)) { + /* File descriptors of FIFO, pipe and kqueue share the same type of file, + * therefore there is no way to tell them apart via stat.st_mode&S_IFMT. + * Fortunately, FIFO is the only one that has a persisted file on filesystem, + * from which we're able to make the distinction for it. */ + if (!fcntl(fd, F_GETPATH, path)) + return UV_EINVAL; + } +#endif rc = 0; EV_SET(&ev, fd, EVFILT_READ, EV_ADD, 0, 0, 0); @@ -336,6 +369,17 @@ void uv__io_poll(uv_loop_t* loop, int timeout) { continue; } +#if UV__KQUEUE_EVFILT_USER + if (ev->filter == EVFILT_USER) { + w = &loop->async_io_watcher; + assert(fd == w->fd); + uv__metrics_update_idle_time(loop); + w->cb(loop, w, w->events); + nevents++; + continue; + } +#endif + if (ev->filter == EVFILT_VNODE) { assert(w->events == POLLIN); assert(w->pevents == POLLIN); diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/linux.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/linux.cpp index 091c0474cfe..322873f6f0e 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/linux.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/linux.cpp @@ -623,7 +623,7 @@ static void uv__iou_init(int epollfd, static void uv__iou_delete(struct uv__iou* iou) { - if (iou->ringfd != -1) { + if (iou->ringfd > -1) { munmap(iou->sq, iou->maxlen); munmap(iou->sqe, iou->sqelen); uv__close(iou->ringfd); @@ -637,7 +637,7 @@ int uv__platform_loop_init(uv_loop_t* loop) { lfields = uv__get_internal_fields(loop); lfields->ctl.ringfd = -1; - lfields->iou.ringfd = -1; + lfields->iou.ringfd = -2; /* "uninitialized" */ loop->inotify_watchers = NULL; loop->inotify_fd = -1; @@ -646,7 +646,6 @@ int uv__platform_loop_init(uv_loop_t* loop) { if (loop->backend_fd == -1) return UV__ERR(errno); - uv__iou_init(loop->backend_fd, &lfields->iou, 64, UV__IORING_SETUP_SQPOLL); uv__iou_init(loop->backend_fd, &lfields->ctl, 256, 0); return 0; @@ -714,23 +713,17 @@ void uv__platform_invalidate_fd(uv_loop_t* loop, int fd) { * This avoids a problem where the same file description remains open * in another process, causing repeated junk epoll events. * + * Perform EPOLL_CTL_DEL immediately instead of going through + * io_uring's submit queue, otherwise the file descriptor may + * be closed by the time the kernel starts the operation. + * * We pass in a dummy epoll_event, to work around a bug in old kernels. * * Work around a bug in kernels 3.10 to 3.19 where passing a struct that * has the EPOLLWAKEUP flag set generates spurious audit syslog warnings. */ memset(&dummy, 0, sizeof(dummy)); - - if (inv == NULL) { - epoll_ctl(loop->backend_fd, EPOLL_CTL_DEL, fd, &dummy); - } else { - uv__epoll_ctl_prep(loop->backend_fd, - &lfields->ctl, - inv->prep, - EPOLL_CTL_DEL, - fd, - &dummy); - } + epoll_ctl(loop->backend_fd, EPOLL_CTL_DEL, fd, &dummy); } @@ -765,6 +758,23 @@ static struct uv__io_uring_sqe* uv__iou_get_sqe(struct uv__iou* iou, uint32_t mask; uint32_t slot; + /* Lazily create the ring. State machine: -2 means uninitialized, -1 means + * initialization failed. Anything else is a valid ring file descriptor. + */ + if (iou->ringfd == -2) { + /* By default, the SQPOLL is not created. Enable only if the loop is + * configured with UV_LOOP_USE_IO_URING_SQPOLL. + */ + if ((loop->flags & UV_LOOP_ENABLE_IO_URING_SQPOLL) == 0) { + iou->ringfd = -1; + return NULL; + } + + uv__iou_init(loop->backend_fd, iou, 64, UV__IORING_SETUP_SQPOLL); + if (iou->ringfd == -2) + iou->ringfd = -1; /* "failed" */ + } + if (iou->ringfd == -1) return NULL; @@ -788,7 +798,7 @@ static struct uv__io_uring_sqe* uv__iou_get_sqe(struct uv__iou* iou, req->work_req.done = NULL; uv__queue_init(&req->work_req.wq); - uv__req_register(loop, req); + uv__req_register(loop); iou->in_flight++; return sqe; @@ -1156,7 +1166,7 @@ static void uv__poll_io_uring(uv_loop_t* loop, struct uv__iou* iou) { req = (uv_fs_t*) (uintptr_t) e->user_data; assert(req->type == UV_FS); - uv__req_unregister(loop, req); + uv__req_unregister(loop); iou->in_flight--; /* If the op is not supported by the kernel retry using the thread pool */ @@ -1208,6 +1218,10 @@ static void uv__poll_io_uring(uv_loop_t* loop, struct uv__iou* iou) { } +/* Only for EPOLL_CTL_ADD and EPOLL_CTL_MOD. EPOLL_CTL_DEL should always be + * executed immediately, otherwise the file descriptor may have been closed + * by the time the kernel starts the operation. + */ static void uv__epoll_ctl_prep(int epollfd, struct uv__iou* ctl, struct epoll_event (*events)[256], @@ -1219,45 +1233,28 @@ static void uv__epoll_ctl_prep(int epollfd, uint32_t mask; uint32_t slot; - if (ctl->ringfd == -1) { - if (!epoll_ctl(epollfd, op, fd, e)) - return; - - if (op == EPOLL_CTL_DEL) - return; /* Ignore errors, may be racing with another thread. */ - - if (op != EPOLL_CTL_ADD) - abort(); - - if (errno != EEXIST) - abort(); - - /* File descriptor that's been watched before, update event mask. */ - if (!epoll_ctl(epollfd, EPOLL_CTL_MOD, fd, e)) - return; + assert(op == EPOLL_CTL_ADD || op == EPOLL_CTL_MOD); + assert(ctl->ringfd != -1); - abort(); - } else { - mask = ctl->sqmask; - slot = (*ctl->sqtail)++ & mask; + mask = ctl->sqmask; + slot = (*ctl->sqtail)++ & mask; - pe = &(*events)[slot]; - *pe = *e; + pe = &(*events)[slot]; + *pe = *e; - sqe = (uv__io_uring_sqe*)ctl->sqe; - sqe = &sqe[slot]; + sqe = (uv__io_uring_sqe*)ctl->sqe; + sqe = &sqe[slot]; - memset(sqe, 0, sizeof(*sqe)); - sqe->addr = (uintptr_t) pe; - sqe->fd = epollfd; - sqe->len = op; - sqe->off = fd; - sqe->opcode = UV__IORING_OP_EPOLL_CTL; - sqe->user_data = op | slot << 2 | (int64_t) fd << 32; + memset(sqe, 0, sizeof(*sqe)); + sqe->addr = (uintptr_t) pe; + sqe->fd = epollfd; + sqe->len = op; + sqe->off = fd; + sqe->opcode = UV__IORING_OP_EPOLL_CTL; + sqe->user_data = op | slot << 2 | (int64_t) fd << 32; - if ((*ctl->sqhead & mask) == (*ctl->sqtail & mask)) - uv__epoll_ctl_flush(epollfd, ctl, events); - } + if ((*ctl->sqhead & mask) == (*ctl->sqtail & mask)) + uv__epoll_ctl_flush(epollfd, ctl, events); } @@ -1397,9 +1394,29 @@ void uv__io_poll(uv_loop_t* loop, int timeout) { w->events = w->pevents; e.events = w->pevents; + if (w == &loop->async_io_watcher) + /* Enable edge-triggered mode on async_io_watcher(eventfd), + * so that we're able to eliminate the overhead of reading + * the eventfd via system call on each event loop wakeup. + */ + e.events |= EPOLLET; e.data.fd = w->fd; + fd = w->fd; + + if (ctl->ringfd != -1) { + uv__epoll_ctl_prep(epollfd, ctl, &prep, op, fd, &e); + continue; + } - uv__epoll_ctl_prep(epollfd, ctl, &prep, op, w->fd, &e); + if (!epoll_ctl(epollfd, op, fd, &e)) + continue; + + assert(op == EPOLL_CTL_ADD); + assert(errno == EEXIST); + + /* File descriptor that's been watched before, update event mask. */ + if (epoll_ctl(epollfd, EPOLL_CTL_MOD, fd, &e)) + abort(); } inv.events = events; @@ -1487,8 +1504,12 @@ void uv__io_poll(uv_loop_t* loop, int timeout) { * * Ignore all errors because we may be racing with another thread * when the file descriptor is closed. + * + * Perform EPOLL_CTL_DEL immediately instead of going through + * io_uring's submit queue, otherwise the file descriptor may + * be closed by the time the kernel starts the operation. */ - uv__epoll_ctl_prep(epollfd, ctl, &prep, EPOLL_CTL_DEL, fd, pe); + epoll_ctl(epollfd, EPOLL_CTL_DEL, fd, pe); continue; } @@ -1623,36 +1644,17 @@ uint64_t uv__hrtime(uv_clocktype_t type) { int uv_resident_set_memory(size_t* rss) { char buf[1024]; const char* s; - ssize_t n; long val; - int fd; + int rc; int i; - do - fd = open("/proc/self/stat", O_RDONLY); - while (fd == -1 && errno == EINTR); - - if (fd == -1) - return UV__ERR(errno); - - do - n = read(fd, buf, sizeof(buf) - 1); - while (n == -1 && errno == EINTR); - - uv__close(fd); - if (n == -1) - return UV__ERR(errno); - buf[n] = '\0'; - - s = strchr(buf, ' '); - if (s == NULL) - goto err; - - s += 1; - if (*s != '(') - goto err; + /* rss: 24th element */ + rc = uv__slurp("/proc/self/stat", buf, sizeof(buf)); + if (rc < 0) + return rc; - s = strchr(s, ')'); + /* find the last ')' */ + s = strrchr(buf, ')'); if (s == NULL) goto err; @@ -1664,9 +1666,7 @@ int uv_resident_set_memory(size_t* rss) { errno = 0; val = strtol(s, NULL, 10); - if (errno != 0) - goto err; - if (val < 0) + if (val < 0 || errno != 0) goto err; *rss = val * getpagesize(); @@ -2271,6 +2271,136 @@ uint64_t uv_get_available_memory(void) { } +static int uv__get_cgroupv2_constrained_cpu(const char* cgroup, + uv__cpu_constraint* constraint) { + char path[256]; + char buf[1024]; + unsigned int weight; + int cgroup_size; + const char* cgroup_trimmed; + char quota_buf[16]; + + if (strncmp(cgroup, "0::/", 4) != 0) + return UV_EINVAL; + + /* Trim ending \n by replacing it with a 0 */ + cgroup_trimmed = cgroup + sizeof("0::/") - 1; /* Skip the prefix "0::/" */ + cgroup_size = (int)strcspn(cgroup_trimmed, "\n"); /* Find the first slash */ + + /* Construct the path to the cpu.max file */ + snprintf(path, sizeof(path), "/sys/fs/cgroup/%.*s/cpu.max", cgroup_size, + cgroup_trimmed); + + /* Read cpu.max */ + if (uv__slurp(path, buf, sizeof(buf)) < 0) + return UV_EIO; + + if (sscanf(buf, "%15s %lld", quota_buf, &constraint->period_length) != 2) + return UV_EINVAL; + + if (strncmp(quota_buf, "max", 3) == 0) + constraint->quota_per_period = LLONG_MAX; + else if (sscanf(quota_buf, "%lld", &constraint->quota_per_period) != 1) + return UV_EINVAL; // conversion failed + + /* Construct the path to the cpu.weight file */ + snprintf(path, sizeof(path), "/sys/fs/cgroup/%.*s/cpu.weight", cgroup_size, + cgroup_trimmed); + + /* Read cpu.weight */ + if (uv__slurp(path, buf, sizeof(buf)) < 0) + return UV_EIO; + + if (sscanf(buf, "%u", &weight) != 1) + return UV_EINVAL; + + constraint->proportions = (double)weight / 100.0; + + return 0; +} + +static char* uv__cgroup1_find_cpu_controller(const char* cgroup, + int* cgroup_size) { + /* Seek to the cpu controller line. */ + char* cgroup_cpu = (char*)strstr(cgroup, ":cpu,"); + + if (cgroup_cpu != NULL) { + /* Skip the controller prefix to the start of the cgroup path. */ + cgroup_cpu += sizeof(":cpu,") - 1; + /* Determine the length of the cgroup path, excluding the newline. */ + *cgroup_size = (int)strcspn(cgroup_cpu, "\n"); + } + + return cgroup_cpu; +} + +static int uv__get_cgroupv1_constrained_cpu(const char* cgroup, + uv__cpu_constraint* constraint) { + char path[256]; + char buf[1024]; + unsigned int shares; + int cgroup_size; + char* cgroup_cpu; + + cgroup_cpu = uv__cgroup1_find_cpu_controller(cgroup, &cgroup_size); + + if (cgroup_cpu == NULL) + return UV_EIO; + + /* Construct the path to the cpu.cfs_quota_us file */ + snprintf(path, sizeof(path), "/sys/fs/cgroup/%.*s/cpu.cfs_quota_us", + cgroup_size, cgroup_cpu); + + if (uv__slurp(path, buf, sizeof(buf)) < 0) + return UV_EIO; + + if (sscanf(buf, "%lld", &constraint->quota_per_period) != 1) + return UV_EINVAL; + + /* Construct the path to the cpu.cfs_period_us file */ + snprintf(path, sizeof(path), "/sys/fs/cgroup/%.*s/cpu.cfs_period_us", + cgroup_size, cgroup_cpu); + + /* Read cpu.cfs_period_us */ + if (uv__slurp(path, buf, sizeof(buf)) < 0) + return UV_EIO; + + if (sscanf(buf, "%lld", &constraint->period_length) != 1) + return UV_EINVAL; + + /* Construct the path to the cpu.shares file */ + snprintf(path, sizeof(path), "/sys/fs/cgroup/%.*s/cpu.shares", cgroup_size, + cgroup_cpu); + + /* Read cpu.shares */ + if (uv__slurp(path, buf, sizeof(buf)) < 0) + return UV_EIO; + + if (sscanf(buf, "%u", &shares) != 1) + return UV_EINVAL; + + constraint->proportions = (double)shares / 1024.0; + + return 0; +} + +int uv__get_constrained_cpu(uv__cpu_constraint* constraint) { + char cgroup[1024]; + + /* Read the cgroup from /proc/self/cgroup */ + if (uv__slurp("/proc/self/cgroup", cgroup, sizeof(cgroup)) < 0) + return UV_EIO; + + /* Check if the system is using cgroup v2 by examining /proc/self/cgroup + * The entry for cgroup v2 is always in the format "0::$PATH" + * see https://docs.kernel.org/admin-guide/cgroup-v2.html */ + if (strncmp(cgroup, "0::/", 4) == 0) + return uv__get_cgroupv2_constrained_cpu(cgroup, constraint); + else + return uv__get_cgroupv1_constrained_cpu(cgroup, constraint); +} + + void uv_loadavg(double avg[3]) { struct sysinfo info; char buf[128]; /* Large enough to hold all of /proc/loadavg. */ diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/loop.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/loop.cpp index 3babe4d7019..006db94d008 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/loop.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/loop.cpp @@ -217,6 +217,14 @@ int uv__loop_configure(uv_loop_t* loop, uv_loop_option option, va_list ap) { return 0; } +#if defined(__linux__) + if (option == UV_LOOP_USE_IO_URING_SQPOLL) { + loop->flags |= UV_LOOP_ENABLE_IO_URING_SQPOLL; + return 0; + } +#endif + + if (option != UV_LOOP_BLOCK_SIGNAL) return UV_ENOSYS; diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/pipe.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/pipe.cpp index ea26ce45c9b..7627ee39c1b 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/pipe.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/pipe.cpp @@ -76,8 +76,13 @@ int uv_pipe_bind2(uv_pipe_t* handle, if (name == NULL) return UV_EINVAL; + /* namelen==0 on Linux means autobind the listen socket in the abstract + * socket namespace, see `man 7 unix` for details. + */ +#if !defined(__linux__) if (namelen == 0) return UV_EINVAL; +#endif if (includes_nul(name, namelen)) return UV_EINVAL; @@ -344,8 +349,15 @@ static int uv__pipe_getsockpeername(const uv_pipe_t* handle, uv__peersockfunc func, char* buffer, size_t* size) { +#if defined(__linux__) + static const int is_linux = 1; +#else + static const int is_linux = 0; +#endif struct sockaddr_un sa; socklen_t addrlen; + size_t slop; + char* p; int err; addrlen = sizeof(sa); @@ -359,17 +371,20 @@ static int uv__pipe_getsockpeername(const uv_pipe_t* handle, return err; } -#if defined(__linux__) - if (sa.sun_path[0] == 0) - /* Linux abstract namespace */ + slop = 1; + if (is_linux && sa.sun_path[0] == '\0') { + /* Linux abstract namespace. Not zero-terminated. */ + slop = 0; addrlen -= offsetof(struct sockaddr_un, sun_path); - else -#endif - addrlen = strlen(sa.sun_path); - + } else { + p = (char*)memchr(sa.sun_path, '\0', sizeof(sa.sun_path)); + if (p == NULL) + p = ARRAY_END(sa.sun_path); + addrlen = p - sa.sun_path; + } - if ((size_t)addrlen >= *size) { - *size = addrlen + 1; + if ((size_t)addrlen + slop > *size) { + *size = addrlen + slop; return UV_ENOBUFS; } @@ -487,7 +502,11 @@ int uv_pipe_chmod(uv_pipe_t* handle, int mode) { int uv_pipe(uv_os_fd_t fds[2], int read_flags, int write_flags) { uv_os_fd_t temp[2]; int err; -#if defined(__FreeBSD__) || defined(__linux__) +#if defined(__linux__) || \ + defined(__FreeBSD__) || \ + defined(__OpenBSD__) || \ + defined(__DragonFly__) || \ + defined(__NetBSD__) int flags = O_CLOEXEC; if ((read_flags & UV_NONBLOCK_PIPE) && (write_flags & UV_NONBLOCK_PIPE)) diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/process.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/process.cpp index 8271d513b15..e1349689065 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/process.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/process.cpp @@ -55,7 +55,8 @@ extern char **environ; #endif -#if defined(__linux__) +#if defined(__linux__) || \ + defined(__GNU__) # include #endif @@ -63,11 +64,7 @@ extern char **environ; # include "zos-base.h" #endif -#if defined(__APPLE__) || \ - defined(__DragonFly__) || \ - defined(__FreeBSD__) || \ - defined(__NetBSD__) || \ - defined(__OpenBSD__) +#ifdef UV_HAVE_KQUEUE #include #else #define UV_USE_SIGCHLD diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/signal.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/signal.cpp index bc4206e6d86..f23c887d0d6 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/signal.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/signal.cpp @@ -195,7 +195,7 @@ static void uv__signal_handler(int signum) { for (handle = uv__signal_first_handle(signum); handle != NULL && handle->signum == signum; - handle = RB_NEXT(uv__signal_tree_s, &uv__signal_tree, handle)) { + handle = RB_NEXT(uv__signal_tree_s, handle)) { int r; msg.signum = signum; diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/stream.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/stream.cpp index 265ddade7ae..2d2b5d2f45e 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/stream.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/stream.cpp @@ -457,7 +457,7 @@ void uv__stream_destroy(uv_stream_t* stream) { assert(stream->flags & UV_HANDLE_CLOSED); if (stream->connect_req) { - uv__req_unregister(stream->loop, stream->connect_req); + uv__req_unregister(stream->loop); stream->connect_req->cb(stream->connect_req, UV_ECANCELED); stream->connect_req = NULL; } @@ -642,7 +642,7 @@ static void uv__drain(uv_stream_t* stream) { if ((stream->flags & UV_HANDLE_CLOSING) || !(stream->flags & UV_HANDLE_SHUT)) { stream->shutdown_req = NULL; - uv__req_unregister(stream->loop, req); + uv__req_unregister(stream->loop); err = 0; if (stream->flags & UV_HANDLE_CLOSING) @@ -698,7 +698,8 @@ static int uv__write_req_update(uv_stream_t* stream, do { len = n < buf->len ? n : buf->len; - buf->base += len; + if (buf->len != 0) + buf->base += len; buf->len -= len; buf += (buf->len == 0); /* Advance to next buffer if this one is empty. */ n -= len; @@ -912,7 +913,7 @@ static void uv__write_callbacks(uv_stream_t* stream) { q = uv__queue_head(&pq); req = uv__queue_data(q, uv_write_t, queue); uv__queue_remove(q); - uv__req_unregister(stream->loop, req); + uv__req_unregister(stream->loop); if (req->bufs != NULL) { stream->write_queue_size -= uv__write_req_size(req); @@ -980,11 +981,13 @@ static int uv__stream_queue_fd(uv_stream_t* stream, int fd) { static int uv__stream_recv_cmsg(uv_stream_t* stream, struct msghdr* msg) { struct cmsghdr* cmsg; + char* p; + char* pe; int fd; int err; - size_t i; size_t count; + err = 0; for (cmsg = CMSG_FIRSTHDR(msg); cmsg != NULL; cmsg = CMSG_NXTHDR(msg, cmsg)) { if (cmsg->cmsg_type != SCM_RIGHTS) { fprintf(stderr, "ignoring non-SCM_RIGHTS ancillary data: %d\n", @@ -997,24 +1000,26 @@ static int uv__stream_recv_cmsg(uv_stream_t* stream, struct msghdr* msg) { assert(count % sizeof(fd) == 0); count /= sizeof(fd); - for (i = 0; i < count; i++) { - memcpy(&fd, (char*) CMSG_DATA(cmsg) + i * sizeof(fd), sizeof(fd)); - /* Already has accepted fd, queue now */ - if (stream->accepted_fd != -1) { - err = uv__stream_queue_fd(stream, fd); - if (err != 0) { - /* Close rest */ - for (; i < count; i++) - uv__close(fd); - return err; - } - } else { - stream->accepted_fd = fd; + p = (char*) CMSG_DATA(cmsg); + pe = p + count * sizeof(fd); + + while (p < pe) { + memcpy(&fd, p, sizeof(fd)); + p += sizeof(fd); + + if (err == 0) { + if (stream->accepted_fd == -1) + stream->accepted_fd = fd; + else + err = uv__stream_queue_fd(stream, fd); } + + if (err != 0) + uv__close(fd); } } - return 0; + return err; } @@ -1269,7 +1274,7 @@ static void uv__stream_connect(uv_stream_t* stream) { return; stream->connect_req = NULL; - uv__req_unregister(stream->loop, req); + uv__req_unregister(stream->loop); if (error < 0 || uv__queue_empty(&stream->write_queue)) { uv__io_stop(stream->loop, &stream->io_watcher, POLLOUT); diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/tcp.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/tcp.cpp index 6fe6361c81e..018ec144c78 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/tcp.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/tcp.cpp @@ -167,6 +167,12 @@ int uv__tcp_bind(uv_tcp_t* tcp, if (setsockopt(tcp->io_watcher.fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on))) return UV__ERR(errno); + if (flags & UV_TCP_REUSEPORT) { + err = uv__sock_reuseport(tcp->io_watcher.fd); + if (err) + return err; + } + #ifndef __OpenBSD__ #ifdef IPV6_V6ONLY if (addr->sa_family == AF_INET6) { @@ -452,6 +458,14 @@ int uv__tcp_nodelay(int fd, int on) { } +#if (defined(UV__SOLARIS_11_4) && !UV__SOLARIS_11_4) || \ + (defined(__DragonFly__) && __DragonFly_version < 500702) +/* DragonFlyBSD <500702 and Solaris <11.4 require millisecond units + * for TCP keepalive options. */ +#define UV_KEEPALIVE_FACTOR(x) (x *= 1000) +#else +#define UV_KEEPALIVE_FACTOR(x) +#endif int uv__tcp_keepalive(int fd, int on, unsigned int delay) { int idle; int intvl; @@ -467,8 +481,8 @@ int uv__tcp_keepalive(int fd, int on, unsigned int delay) { if (!on) return 0; - if (delay == 0) - return -1; + if (delay < 1) + return UV_EINVAL; #ifdef __sun /* The implementation of TCP keep-alive on Solaris/SmartOS is a bit unusual @@ -501,49 +515,53 @@ int uv__tcp_keepalive(int fd, int on, unsigned int delay) { if (idle > 10*24*60*60) idle = 10*24*60*60; + UV_KEEPALIVE_FACTOR(idle); + /* `TCP_KEEPIDLE`, `TCP_KEEPINTVL`, and `TCP_KEEPCNT` were not available on Solaris * until version 11.4, but let's take a chance here. */ #if defined(TCP_KEEPIDLE) && defined(TCP_KEEPINTVL) && defined(TCP_KEEPCNT) if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE, &idle, sizeof(idle))) return UV__ERR(errno); - intvl = idle/3; + intvl = 10; /* required at least 10 seconds */ + UV_KEEPALIVE_FACTOR(intvl); if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPINTVL, &intvl, sizeof(intvl))) return UV__ERR(errno); - cnt = 3; + cnt = 1; /* 1 retry, ensure (TCP_KEEPINTVL * TCP_KEEPCNT) is 10 seconds */ if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPCNT, &cnt, sizeof(cnt))) return UV__ERR(errno); #else /* Fall back to the first implementation of tcp-alive mechanism for older Solaris, * simulate the tcp-alive mechanism on other platforms via `TCP_KEEPALIVE_THRESHOLD` + `TCP_KEEPALIVE_ABORT_THRESHOLD`. */ - idle *= 1000; /* kernel expects milliseconds */ if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE_THRESHOLD, &idle, sizeof(idle))) return UV__ERR(errno); /* Note that the consequent probes will not be sent at equal intervals on Solaris, * but will be sent using the exponential backoff algorithm. */ - intvl = idle/3; - cnt = 3; - int time_to_abort = intvl * cnt; + int time_to_abort = 10; /* 10 seconds */ + UV_KEEPALIVE_FACTOR(time_to_abort); if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE_ABORT_THRESHOLD, &time_to_abort, sizeof(time_to_abort))) return UV__ERR(errno); #endif #else /* !defined(__sun) */ + idle = delay; + UV_KEEPALIVE_FACTOR(idle); #ifdef TCP_KEEPIDLE - if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE, &delay, sizeof(delay))) + if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE, &idle, sizeof(idle))) return UV__ERR(errno); #elif defined(TCP_KEEPALIVE) /* Darwin/macOS uses TCP_KEEPALIVE in place of TCP_KEEPIDLE. */ - if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE, &delay, sizeof(delay))) + if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE, &idle, sizeof(idle))) return UV__ERR(errno); #endif #ifdef TCP_KEEPINTVL - intvl = 1; /* 1 second; same as default on Win32 */ + intvl = 1; /* 1 second; same as default on Win32 */ + UV_KEEPALIVE_FACTOR(intvl); if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPINTVL, &intvl, sizeof(intvl))) return UV__ERR(errno); #endif @@ -612,7 +630,7 @@ void uv__tcp_close(uv_tcp_t* handle) { int uv_socketpair(int type, int protocol, uv_os_sock_t fds[2], int flags0, int flags1) { uv_os_sock_t temp[2]; int err; -#if defined(__FreeBSD__) || defined(__linux__) +#if defined(SOCK_NONBLOCK) && defined(SOCK_CLOEXEC) int flags; flags = type | SOCK_CLOEXEC; diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/tty.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/tty.cpp index 1304c6d8685..5ca2105848f 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/tty.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/tty.cpp @@ -337,6 +337,37 @@ int uv_tty_set_mode(uv_tty_t* tty, uv_tty_mode_t mode) { } +void uv__tty_close(uv_tty_t* handle) { + int expected; + int fd; + + fd = handle->io_watcher.fd; + if (fd == -1) + goto done; + + /* This is used for uv_tty_reset_mode() */ + do + expected = 0; + while (!atomic_compare_exchange_strong(&termios_spinlock, &expected, 1)); + + if (fd == orig_termios_fd) { + /* XXX(bnoordhuis) the tcsetattr is probably wrong when there are still + * other uv_tty_t handles active that refer to the same tty/pty but it's + * hard to recognize that particular situation without maintaining some + * kind of process-global data structure, and that still won't work in a + * multi-process setup. + */ + uv__tcsetattr(fd, TCSANOW, &orig_termios); + orig_termios_fd = -1; + } + + atomic_store(&termios_spinlock, 0); + +done: + uv__stream_close((uv_stream_t*) handle); +} + + int uv_tty_get_winsize(uv_tty_t* tty, int* width, int* height) { struct winsize ws; int err; @@ -454,7 +485,7 @@ int uv_tty_reset_mode(void) { saved_errno = errno; if (atomic_exchange(&termios_spinlock, 1)) - return UV_EBUSY; /* In uv_tty_set_mode(). */ + return UV_EBUSY; /* In uv_tty_set_mode() or uv__tty_close(). */ err = 0; if (orig_termios_fd != -1) diff --git a/wpinet/src/main/native/thirdparty/libuv/src/unix/udp.cpp b/wpinet/src/main/native/thirdparty/libuv/src/unix/udp.cpp index cbee16b22a3..50506752d0b 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/unix/udp.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/unix/udp.cpp @@ -100,7 +100,7 @@ static void uv__udp_run_completed(uv_udp_t* handle) { uv__queue_remove(q); req = uv__queue_data(q, uv_udp_send_t, queue); - uv__req_unregister(handle->loop, req); + uv__req_unregister(handle->loop); handle->send_queue_size -= uv__count_bufs(req->bufs, req->nbufs); handle->send_queue_count--; @@ -141,14 +141,14 @@ static void uv__udp_io(uv_loop_t* loop, uv__io_t* w, unsigned int revents) { if (revents & POLLIN) uv__udp_recvmsg(handle); - if (revents & POLLOUT) { + if (revents & POLLOUT && !uv__is_closing(handle)) { uv__udp_sendmsg(handle); uv__udp_run_completed(handle); } } static int uv__udp_recvmmsg(uv_udp_t* handle, uv_buf_t* buf) { -#if defined(__linux__) || defined(__FreeBSD__) +#if defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__) struct sockaddr_in6 peers[20]; struct iovec iov[ARRAY_SIZE(peers)]; struct mmsghdr msgs[ARRAY_SIZE(peers)]; @@ -173,11 +173,18 @@ static int uv__udp_recvmmsg(uv_udp_t* handle, uv_buf_t* buf) { msgs[k].msg_hdr.msg_control = NULL; msgs[k].msg_hdr.msg_controllen = 0; msgs[k].msg_hdr.msg_flags = 0; + msgs[k].msg_len = 0; } +#if defined(__APPLE__) + do + nread = recvmsg_x(handle->io_watcher.fd, msgs, chunks, MSG_DONTWAIT); + while (nread == -1 && errno == EINTR); +#else do nread = recvmmsg(handle->io_watcher.fd, msgs, chunks, 0, NULL); while (nread == -1 && errno == EINTR); +#endif if (nread < 1) { if (nread == 0 || errno == EAGAIN || errno == EWOULDBLOCK) @@ -204,9 +211,9 @@ static int uv__udp_recvmmsg(uv_udp_t* handle, uv_buf_t* buf) { handle->recv_cb(handle, 0, buf, NULL, UV_UDP_MMSG_FREE); } return nread; -#else /* __linux__ || ____FreeBSD__ */ +#else /* __linux__ || ____FreeBSD__ || __APPLE__ */ return UV_ENOSYS; -#endif /* __linux__ || ____FreeBSD__ */ +#endif /* __linux__ || ____FreeBSD__ || __APPLE__ */ } static void uv__udp_recvmsg(uv_udp_t* handle) { @@ -275,8 +282,61 @@ static void uv__udp_recvmsg(uv_udp_t* handle) { && handle->recv_cb != NULL); } -static void uv__udp_sendmsg(uv_udp_t* handle) { -#if defined(__linux__) || defined(__FreeBSD__) +static void uv__udp_sendmsg_one(uv_udp_t* handle, uv_udp_send_t* req) { + struct uv__queue* q; + struct msghdr h; + ssize_t size; + + for (;;) { + memset(&h, 0, sizeof h); + if (req->addr.ss_family == AF_UNSPEC) { + h.msg_name = NULL; + h.msg_namelen = 0; + } else { + h.msg_name = &req->addr; + if (req->addr.ss_family == AF_INET6) + h.msg_namelen = sizeof(struct sockaddr_in6); + else if (req->addr.ss_family == AF_INET) + h.msg_namelen = sizeof(struct sockaddr_in); + else if (req->addr.ss_family == AF_UNIX) + h.msg_namelen = sizeof(struct sockaddr_un); + else { + assert(0 && "unsupported address family"); + abort(); + } + } + h.msg_iov = (struct iovec*) req->bufs; + h.msg_iovlen = req->nbufs; + + do + size = sendmsg(handle->io_watcher.fd, &h, 0); + while (size == -1 && errno == EINTR); + + if (size == -1) + if (errno == EAGAIN || errno == EWOULDBLOCK || errno == ENOBUFS) + return; + + req->status = (size == -1 ? UV__ERR(errno) : size); + + /* Sending a datagram is an atomic operation: either all data + * is written or nothing is (and EMSGSIZE is raised). That is + * why we don't handle partial writes. Just pop the request + * off the write queue and onto the completed queue, done. + */ + uv__queue_remove(&req->queue); + uv__queue_insert_tail(&handle->write_completed_queue, &req->queue); + uv__io_feed(handle->loop, &handle->io_watcher); + + if (uv__queue_empty(&handle->write_queue)) + return; + + q = uv__queue_head(&handle->write_queue); + req = uv__queue_data(q, uv_udp_send_t, queue); + } +} + +#if defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__) +static void uv__udp_sendmsg_many(uv_udp_t* handle) { uv_udp_send_t* req; struct mmsghdr h[20]; struct mmsghdr* p; @@ -285,16 +345,11 @@ static void uv__udp_sendmsg(uv_udp_t* handle) { size_t pkts; size_t i; - if (uv__queue_empty(&handle->write_queue)) - return; - write_queue_drain: for (pkts = 0, q = uv__queue_head(&handle->write_queue); pkts < ARRAY_SIZE(h) && q != &handle->write_queue; ++pkts, q = uv__queue_head(q)) { - assert(q != NULL); req = uv__queue_data(q, uv_udp_send_t, queue); - assert(req != NULL); p = &h[pkts]; memset(p, 0, sizeof(*p)); @@ -318,9 +373,15 @@ static void uv__udp_sendmsg(uv_udp_t* handle) { h[pkts].msg_hdr.msg_iovlen = req->nbufs; } +#if defined(__APPLE__) + do + npkts = sendmsg_x(handle->io_watcher.fd, h, pkts, MSG_DONTWAIT); + while (npkts == -1 && errno == EINTR); +#else do npkts = sendmmsg(handle->io_watcher.fd, h, pkts, 0); while (npkts == -1 && errno == EINTR); +#endif if (npkts < 1) { if (errno == EAGAIN || errno == EWOULDBLOCK || errno == ENOBUFS) @@ -328,10 +389,7 @@ static void uv__udp_sendmsg(uv_udp_t* handle) { for (i = 0, q = uv__queue_head(&handle->write_queue); i < pkts && q != &handle->write_queue; ++i, q = uv__queue_head(&handle->write_queue)) { - assert(q != NULL); req = uv__queue_data(q, uv_udp_send_t, queue); - assert(req != NULL); - req->status = UV__ERR(errno); uv__queue_remove(&req->queue); uv__queue_insert_tail(&handle->write_completed_queue, &req->queue); @@ -346,10 +404,7 @@ static void uv__udp_sendmsg(uv_udp_t* handle) { for (i = 0, q = uv__queue_head(&handle->write_queue); i < (size_t)npkts && q != &handle->write_queue; ++i, q = uv__queue_head(&handle->write_queue)) { - assert(q != NULL); req = uv__queue_data(q, uv_udp_send_t, queue); - assert(req != NULL); - req->status = req->bufs[0].len; /* Sending a datagram is an atomic operation: either all data @@ -364,75 +419,48 @@ static void uv__udp_sendmsg(uv_udp_t* handle) { /* couldn't batch everything, continue sending (jump to avoid stack growth) */ if (!uv__queue_empty(&handle->write_queue)) goto write_queue_drain; - uv__io_feed(handle->loop, &handle->io_watcher); -#else /* __linux__ || ____FreeBSD__ */ - uv_udp_send_t* req; - struct msghdr h; - struct uv__queue* q; - ssize_t size; - while (!uv__queue_empty(&handle->write_queue)) { - q = uv__queue_head(&handle->write_queue); - assert(q != NULL); - - req = uv__queue_data(q, uv_udp_send_t, queue); - assert(req != NULL); + uv__io_feed(handle->loop, &handle->io_watcher); +} +#endif /* __linux__ || ____FreeBSD__ || __APPLE__ */ - memset(&h, 0, sizeof h); - if (req->addr.ss_family == AF_UNSPEC) { - h.msg_name = NULL; - h.msg_namelen = 0; - } else { - h.msg_name = &req->addr; - if (req->addr.ss_family == AF_INET6) - h.msg_namelen = sizeof(struct sockaddr_in6); - else if (req->addr.ss_family == AF_INET) - h.msg_namelen = sizeof(struct sockaddr_in); - else if (req->addr.ss_family == AF_UNIX) - h.msg_namelen = sizeof(struct sockaddr_un); - else { - assert(0 && "unsupported address family"); - abort(); - } - } - h.msg_iov = (struct iovec*) req->bufs; - h.msg_iovlen = req->nbufs; +static void uv__udp_sendmsg(uv_udp_t* handle) { + struct uv__queue* q; + uv_udp_send_t* req; - do { - size = sendmsg(handle->io_watcher.fd, &h, 0); - } while (size == -1 && errno == EINTR); + if (uv__queue_empty(&handle->write_queue)) + return; - if (size == -1) { - if (errno == EAGAIN || errno == EWOULDBLOCK || errno == ENOBUFS) - break; - } + q = uv__queue_head(&handle->write_queue); + req = uv__queue_data(q, uv_udp_send_t, queue); - req->status = (size == -1 ? UV__ERR(errno) : size); +#if defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__) + /* Use sendmmsg() if this send request contains more than one datagram OR + * there is more than one send request (because that automatically implies + * there is more than one datagram.) + */ + if (req->nbufs != 1 || &handle->write_queue != uv__queue_next(&req->queue)) + return uv__udp_sendmsg_many(handle); +#endif - /* Sending a datagram is an atomic operation: either all data - * is written or nothing is (and EMSGSIZE is raised). That is - * why we don't handle partial writes. Just pop the request - * off the write queue and onto the completed queue, done. - */ - uv__queue_remove(&req->queue); - uv__queue_insert_tail(&handle->write_completed_queue, &req->queue); - uv__io_feed(handle->loop, &handle->io_watcher); - } -#endif /* __linux__ || ____FreeBSD__ */ + return uv__udp_sendmsg_one(handle, req); } /* On the BSDs, SO_REUSEPORT implies SO_REUSEADDR but with some additional - * refinements for programs that use multicast. + * refinements for programs that use multicast. Therefore we preferentially + * set SO_REUSEPORT over SO_REUSEADDR here, but we set SO_REUSEPORT only + * when that socket option doesn't have the capability of load balancing. + * Otherwise, we fall back to SO_REUSEADDR. * - * Linux as of 3.9 has a SO_REUSEPORT socket option but with semantics that - * are different from the BSDs: it _shares_ the port rather than steal it - * from the current listener. While useful, it's not something we can emulate - * on other platforms so we don't enable it. + * Linux as of 3.9, DragonflyBSD 3.6, AIX 7.2.5 have the SO_REUSEPORT socket + * option but with semantics that are different from the BSDs: it _shares_ + * the port rather than steals it from the current listener. While useful, + * it's not something we can emulate on other platforms so we don't enable it. * * zOS does not support getsockname with SO_REUSEPORT option when using * AF_UNIX. */ -static int uv__set_reuse(int fd) { +static int uv__sock_reuseaddr(int fd) { int yes; yes = 1; @@ -449,7 +477,7 @@ static int uv__set_reuse(int fd) { return UV__ERR(errno); } #elif defined(SO_REUSEPORT) && !defined(__linux__) && !defined(__GNU__) && \ - !defined(__sun__) + !defined(__sun__) && !defined(__DragonFly__) && !defined(_AIX73) if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &yes, sizeof(yes))) return UV__ERR(errno); #else @@ -492,7 +520,8 @@ int uv__udp_bind(uv_udp_t* handle, int fd; /* Check for bad flags. */ - if (flags & ~(UV_UDP_IPV6ONLY | UV_UDP_REUSEADDR | UV_UDP_LINUX_RECVERR)) + if (flags & ~(UV_UDP_IPV6ONLY | UV_UDP_REUSEADDR | + UV_UDP_REUSEPORT | UV_UDP_LINUX_RECVERR)) return UV_EINVAL; /* Cannot set IPv6-only mode on non-IPv6 socket. */ @@ -515,7 +544,13 @@ int uv__udp_bind(uv_udp_t* handle, } if (flags & UV_UDP_REUSEADDR) { - err = uv__set_reuse(fd); + err = uv__sock_reuseaddr(fd); + if (err) + return err; + } + + if (flags & UV_UDP_REUSEPORT) { + err = uv__sock_reuseport(fd); if (err) return err; } @@ -722,7 +757,7 @@ int uv__udp_send(uv_udp_send_t* req, req->bufs = (uv_buf_t*)uv__malloc(nbufs * sizeof(bufs[0])); if (req->bufs == NULL) { - uv__req_unregister(handle->loop, req); + uv__req_unregister(handle->loop); return UV_ENOMEM; } @@ -1015,7 +1050,7 @@ int uv__udp_init_ex(uv_loop_t* loop, int uv_udp_using_recvmmsg(const uv_udp_t* handle) { -#if defined(__linux__) || defined(__FreeBSD__) +#if defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__) if (handle->flags & UV_HANDLE_UDP_RECVMMSG) return 1; #endif @@ -1037,7 +1072,7 @@ int uv_udp_open(uv_udp_t* handle, uv_os_sock_t sock) { if (err) return err; - err = uv__set_reuse(sock); + err = uv__sock_reuseaddr(sock); if (err) return err; diff --git a/wpinet/src/main/native/thirdparty/libuv/src/uv-common.h b/wpinet/src/main/native/thirdparty/libuv/src/uv-common.h index 5dce8eaf270..50bbc874c11 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/uv-common.h +++ b/wpinet/src/main/native/thirdparty/libuv/src/uv-common.h @@ -231,13 +231,13 @@ void uv__threadpool_cleanup(void); #define uv__has_active_reqs(loop) \ ((loop)->active_reqs.count > 0) -#define uv__req_register(loop, req) \ +#define uv__req_register(loop) \ do { \ (loop)->active_reqs.count++; \ } \ while (0) -#define uv__req_unregister(loop, req) \ +#define uv__req_unregister(loop) \ do { \ assert(uv__has_active_reqs(loop)); \ (loop)->active_reqs.count--; \ @@ -347,7 +347,7 @@ void uv__threadpool_cleanup(void); #define uv__req_init(loop, req, typ) \ do { \ UV_REQ_INIT(req, typ); \ - uv__req_register(loop, req); \ + uv__req_register(loop); \ } \ while (0) diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/error.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/error.cpp index 3a269da87a9..5cc264fea86 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/error.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/error.cpp @@ -78,6 +78,7 @@ int uv_translate_sys_error(int sys_errno) { case WSAEADDRNOTAVAIL: return UV_EADDRNOTAVAIL; case WSAEAFNOSUPPORT: return UV_EAFNOSUPPORT; case WSAEWOULDBLOCK: return UV_EAGAIN; + case ERROR_NO_DATA: return UV_EAGAIN; case WSAEALREADY: return UV_EALREADY; case ERROR_INVALID_FLAGS: return UV_EBADF; case ERROR_INVALID_HANDLE: return UV_EBADF; @@ -157,7 +158,6 @@ int uv_translate_sys_error(int sys_errno) { case ERROR_ACCESS_DENIED: return UV_EPERM; case ERROR_PRIVILEGE_NOT_HELD: return UV_EPERM; case ERROR_BAD_PIPE: return UV_EPIPE; - case ERROR_NO_DATA: return UV_EPIPE; case ERROR_PIPE_NOT_CONNECTED: return UV_EPIPE; case WSAESHUTDOWN: return UV_EPIPE; case WSAEPROTONOSUPPORT: return UV_EPROTONOSUPPORT; @@ -168,6 +168,7 @@ int uv_translate_sys_error(int sys_errno) { case ERROR_INVALID_FUNCTION: return UV_EISDIR; case ERROR_META_EXPANSION_TOO_LONG: return UV_E2BIG; case WSAESOCKTNOSUPPORT: return UV_ESOCKTNOSUPPORT; + case ERROR_BAD_EXE_FORMAT: return UV_EFTYPE; default: return UV_UNKNOWN; } } diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/fs-event.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/fs-event.cpp index 2f566f796a5..2fdcbcb73a9 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/fs-event.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/fs-event.cpp @@ -563,7 +563,25 @@ void uv__process_fs_event_req(uv_loop_t* loop, uv_req_t* req, } } else { err = GET_REQ_ERROR(req); - handle->cb(handle, NULL, 0, uv_translate_sys_error(err)); + /* + * Check whether the ERROR_ACCESS_DENIED is caused by the watched directory + * being actually deleted (not an actual error) or a legit error. Retrieve + * FileStandardInfo to check whether the directory is pending deletion. + */ + FILE_STANDARD_INFO info; + if (err == ERROR_ACCESS_DENIED && + handle->dirw != NULL && + GetFileInformationByHandleEx(handle->dir_handle, + FileStandardInfo, + &info, + sizeof(info)) && + info.Directory && + info.DeletePending) { + uv__convert_utf16_to_utf8(handle->dirw, -1, &filename); + handle->cb(handle, filename, UV_RENAME, 0); + } else { + handle->cb(handle, NULL, 0, uv_translate_sys_error(err)); + } } if (handle->flags & UV_HANDLE_CLOSING) { diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/fs.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/fs.cpp index d6b2b3f1d08..69a413eab4c 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/fs.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/fs.cpp @@ -49,6 +49,17 @@ #define UV_FS_FREE_PTR 0x0008 #define UV_FS_CLEANEDUP 0x0010 +#ifndef FILE_DISPOSITION_DELETE +#define FILE_DISPOSITION_DELETE 0x0001 +#endif /* FILE_DISPOSITION_DELETE */ + +#ifndef FILE_DISPOSITION_POSIX_SEMANTICS +#define FILE_DISPOSITION_POSIX_SEMANTICS 0x0002 +#endif /* FILE_DISPOSITION_POSIX_SEMANTICS */ + +#ifndef FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE +#define FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE 0x0010 +#endif /* FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE */ #define INIT(subtype) \ do { \ @@ -61,7 +72,7 @@ #define POST \ do { \ if (cb != NULL) { \ - uv__req_register(loop, req); \ + uv__req_register(loop); \ uv__work_submit(loop, \ &req->work_req, \ UV__WORK_FAST_IO, \ @@ -100,13 +111,14 @@ return; \ } -#define MILLION ((int64_t) 1000 * 1000) -#define BILLION ((int64_t) 1000 * 1000 * 1000) +#define NSEC_PER_TICK 100 +#define TICKS_PER_SEC ((int64_t) 1e9 / NSEC_PER_TICK) +static const int64_t WIN_TO_UNIX_TICK_OFFSET = 11644473600 * TICKS_PER_SEC; static void uv__filetime_to_timespec(uv_timespec_t *ts, int64_t filetime) { - filetime -= 116444736 * BILLION; - ts->tv_sec = (long) (filetime / (10 * MILLION)); - ts->tv_nsec = (long) ((filetime - ts->tv_sec * 10 * MILLION) * 100U); + filetime -= WIN_TO_UNIX_TICK_OFFSET; + ts->tv_sec = filetime / TICKS_PER_SEC; + ts->tv_nsec = (filetime % TICKS_PER_SEC) * NSEC_PER_TICK; if (ts->tv_nsec < 0) { ts->tv_sec -= 1; ts->tv_nsec += 1e9; @@ -115,7 +127,7 @@ static void uv__filetime_to_timespec(uv_timespec_t *ts, int64_t filetime) { #define TIME_T_TO_FILETIME(time, filetime_ptr) \ do { \ - int64_t bigtime = ((time) * 10 * MILLION + 116444736 * BILLION); \ + int64_t bigtime = ((time) * TICKS_PER_SEC + WIN_TO_UNIX_TICK_OFFSET); \ (filetime_ptr)->dwLowDateTime = (uint64_t) bigtime & 0xFFFFFFFF; \ (filetime_ptr)->dwHighDateTime = (uint64_t) bigtime >> 32; \ } while(0) @@ -139,6 +151,16 @@ static int uv__file_symlink_usermode_flag = SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGE static DWORD uv__allocation_granularity; +typedef enum { + FS__STAT_PATH_SUCCESS, + FS__STAT_PATH_ERROR, + FS__STAT_PATH_TRY_SLOW +} fs__stat_path_return_t; + +INLINE static void fs__stat_assign_statbuf_null(uv_stat_t* statbuf); +INLINE static void fs__stat_assign_statbuf(uv_stat_t* statbuf, + FILE_STAT_BASIC_INFORMATION stat_info, int do_lstat); + void uv__fs_init(void) { SYSTEM_INFO system_info; @@ -1064,22 +1086,15 @@ void fs__write(uv_fs_t* req) { } -void fs__rmdir(uv_fs_t* req) { - int result = _wrmdir(req->file.pathw); - if (result == -1) - SET_REQ_WIN32_ERROR(req, _doserrno); - else - SET_REQ_RESULT(req, 0); -} - - -void fs__unlink(uv_fs_t* req) { +static void fs__unlink_rmdir(uv_fs_t* req, BOOL isrmdir) { const WCHAR* pathw = req->file.pathw; HANDLE handle; BY_HANDLE_FILE_INFORMATION info; FILE_DISPOSITION_INFORMATION disposition; + FILE_DISPOSITION_INFORMATION_EX disposition_ex; IO_STATUS_BLOCK iosb; NTSTATUS status; + DWORD error; handle = CreateFileW(pathw, FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES | DELETE, @@ -1100,10 +1115,17 @@ void fs__unlink(uv_fs_t* req) { return; } - if (info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) { - /* Do not allow deletion of directories, unless it is a symlink. When the - * path refers to a non-symlink directory, report EPERM as mandated by - * POSIX.1. */ + if (isrmdir && !(info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) { + /* Error if we're in rmdir mode but it is not a dir */ + SET_REQ_UV_ERROR(req, UV_ENOTDIR, ERROR_DIRECTORY); + CloseHandle(handle); + return; + } + + if (!isrmdir && (info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) { + /* If not explicitly allowed, do not allow deletion of directories, unless + * it is a symlink. When the path refers to a non-symlink directory, report + * EPERM as mandated by POSIX.1. */ /* Check if it is a reparse point. If it's not, it's a normal directory. */ if (!(info.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)) { @@ -1115,7 +1137,7 @@ void fs__unlink(uv_fs_t* req) { /* Read the reparse point and check if it is a valid symlink. If not, don't * unlink. */ if (fs__readlink_handle(handle, NULL, NULL) < 0) { - DWORD error = GetLastError(); + error = GetLastError(); if (error == ERROR_SYMLINK_NOT_SUPPORTED) error = ERROR_ACCESS_DENIED; SET_REQ_WIN32_ERROR(req, error); @@ -1124,42 +1146,77 @@ void fs__unlink(uv_fs_t* req) { } } - if (info.dwFileAttributes & FILE_ATTRIBUTE_READONLY) { - /* Remove read-only attribute */ - FILE_BASIC_INFORMATION basic = { 0 }; - - basic.FileAttributes = (info.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY) | - FILE_ATTRIBUTE_ARCHIVE; - - status = pNtSetInformationFile(handle, - &iosb, - &basic, - sizeof basic, - FileBasicInformation); - if (!NT_SUCCESS(status)) { - SET_REQ_WIN32_ERROR(req, pRtlNtStatusToDosError(status)); - CloseHandle(handle); - return; - } - } + /* Try posix delete first */ + disposition_ex.Flags = FILE_DISPOSITION_DELETE | FILE_DISPOSITION_POSIX_SEMANTICS | + FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE; - /* Try to set the delete flag. */ - disposition.DeleteFile = TRUE; status = pNtSetInformationFile(handle, &iosb, - &disposition, - sizeof disposition, - FileDispositionInformation); + &disposition_ex, + sizeof disposition_ex, + FileDispositionInformationEx); if (NT_SUCCESS(status)) { SET_REQ_SUCCESS(req); } else { - SET_REQ_WIN32_ERROR(req, pRtlNtStatusToDosError(status)); + /* If status == STATUS_CANNOT_DELETE here, given we set + * FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE, STATUS_CANNOT_DELETE can only mean + * that there is an existing mapped view to the file, preventing delete. + * STATUS_CANNOT_DELETE maps to UV_EACCES so it's not specifically worth handling */ + error = pRtlNtStatusToDosError(status); + if (error == ERROR_NOT_SUPPORTED /* filesystem does not support posix deletion */ || + error == ERROR_INVALID_PARAMETER /* pre Windows 10 error */ || + error == ERROR_INVALID_FUNCTION /* pre Windows 10 1607 error */) { + /* posix delete not supported so try fallback */ + if (info.dwFileAttributes & FILE_ATTRIBUTE_READONLY) { + /* Remove read-only attribute */ + FILE_BASIC_INFORMATION basic = { 0 }; + + basic.FileAttributes = (info.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY) | + FILE_ATTRIBUTE_ARCHIVE; + + status = pNtSetInformationFile(handle, + &iosb, + &basic, + sizeof basic, + FileBasicInformation); + if (!NT_SUCCESS(status)) { + SET_REQ_WIN32_ERROR(req, pRtlNtStatusToDosError(status)); + CloseHandle(handle); + return; + } + } + + /* Try to set the delete flag. */ + disposition.DeleteFile = TRUE; + status = pNtSetInformationFile(handle, + &iosb, + &disposition, + sizeof disposition, + FileDispositionInformation); + if (NT_SUCCESS(status)) { + SET_REQ_SUCCESS(req); + } else { + SET_REQ_WIN32_ERROR(req, pRtlNtStatusToDosError(status)); + } + } else { + SET_REQ_WIN32_ERROR(req, error); + } } CloseHandle(handle); } +static void fs__rmdir(uv_fs_t* req) { + fs__unlink_rmdir(req, /*isrmdir*/1); +} + + +static void fs__unlink(uv_fs_t* req) { + fs__unlink_rmdir(req, /*isrmdir*/0); +} + + void fs__mkdir(uv_fs_t* req) { /* TODO: use req->mode. */ if (CreateDirectoryW(req->file.pathw, NULL)) { @@ -1185,7 +1242,7 @@ void fs__mktemp(uv_fs_t* req, uv__fs_mktemp_func func) { size_t len; uint64_t v; char* path; - + path = (char*)req->path; len = wcslen(req->file.pathw); ep = req->file.pathw + len; @@ -1630,6 +1687,43 @@ void fs__closedir(uv_fs_t* req) { SET_REQ_RESULT(req, 0); } +INLINE static fs__stat_path_return_t fs__stat_path(WCHAR* path, + uv_stat_t* statbuf, int do_lstat) { + FILE_STAT_BASIC_INFORMATION stat_info; + + // Check if the new fast API is available. + if (!pGetFileInformationByName) { + return FS__STAT_PATH_TRY_SLOW; + } + + // Check if the API call fails. + if (!pGetFileInformationByName(path, FileStatBasicByNameInfo, &stat_info, + sizeof(stat_info))) { + switch(GetLastError()) { + case ERROR_FILE_NOT_FOUND: + case ERROR_PATH_NOT_FOUND: + case ERROR_NOT_READY: + case ERROR_BAD_NET_NAME: + /* These errors aren't worth retrying with the slow path. */ + return FS__STAT_PATH_ERROR; + } + return FS__STAT_PATH_TRY_SLOW; + } + + // A file handle is needed to get st_size for links. + if ((stat_info.FileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)) { + return FS__STAT_PATH_TRY_SLOW; + } + + if (stat_info.DeviceType == FILE_DEVICE_NULL) { + fs__stat_assign_statbuf_null(statbuf); + return FS__STAT_PATH_SUCCESS; + } + + fs__stat_assign_statbuf(statbuf, stat_info, do_lstat); + return FS__STAT_PATH_SUCCESS; +} + INLINE static int fs__stat_handle(HANDLE handle, uv_stat_t* statbuf, int do_lstat) { size_t target_length = 0; @@ -1638,6 +1732,7 @@ INLINE static int fs__stat_handle(HANDLE handle, uv_stat_t* statbuf, FILE_FS_VOLUME_INFORMATION volume_info; NTSTATUS nt_status; IO_STATUS_BLOCK io_status; + FILE_STAT_BASIC_INFORMATION stat_info; nt_status = pNtQueryVolumeInformationFile(handle, &io_status, @@ -1653,13 +1748,7 @@ INLINE static int fs__stat_handle(HANDLE handle, uv_stat_t* statbuf, /* If it's NUL device set fields as reasonable as possible and return. */ if (device_info.DeviceType == FILE_DEVICE_NULL) { - memset(statbuf, 0, sizeof(uv_stat_t)); - statbuf->st_mode = _S_IFCHR; - statbuf->st_mode |= (_S_IREAD | _S_IWRITE) | ((_S_IREAD | _S_IWRITE) >> 3) | - ((_S_IREAD | _S_IWRITE) >> 6); - statbuf->st_nlink = 1; - statbuf->st_blksize = 4096; - statbuf->st_rdev = FILE_DEVICE_NULL << 16; + fs__stat_assign_statbuf_null(statbuf); return 0; } @@ -1683,14 +1772,65 @@ INLINE static int fs__stat_handle(HANDLE handle, uv_stat_t* statbuf, /* Buffer overflow (a warning status code) is expected here. */ if (io_status.Status == STATUS_NOT_IMPLEMENTED) { - statbuf->st_dev = 0; + stat_info.VolumeSerialNumber.QuadPart = 0; } else if (NT_ERROR(nt_status)) { SetLastError(pRtlNtStatusToDosError(nt_status)); return -1; } else { - statbuf->st_dev = volume_info.VolumeSerialNumber; + stat_info.VolumeSerialNumber.QuadPart = volume_info.VolumeSerialNumber; + } + + stat_info.DeviceType = device_info.DeviceType; + stat_info.FileAttributes = file_info.BasicInformation.FileAttributes; + stat_info.NumberOfLinks = file_info.StandardInformation.NumberOfLinks; + stat_info.FileId.QuadPart = + file_info.InternalInformation.IndexNumber.QuadPart; + stat_info.ChangeTime.QuadPart = + file_info.BasicInformation.ChangeTime.QuadPart; + stat_info.CreationTime.QuadPart = + file_info.BasicInformation.CreationTime.QuadPart; + stat_info.LastAccessTime.QuadPart = + file_info.BasicInformation.LastAccessTime.QuadPart; + stat_info.LastWriteTime.QuadPart = + file_info.BasicInformation.LastWriteTime.QuadPart; + stat_info.AllocationSize.QuadPart = + file_info.StandardInformation.AllocationSize.QuadPart; + + if (do_lstat && + (file_info.BasicInformation.FileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)) { + /* + * If reading the link fails, the reparse point is not a symlink and needs + * to be treated as a regular file. The higher level lstat function will + * detect this failure and retry without do_lstat if appropriate. + */ + if (fs__readlink_handle(handle, NULL, &target_length) != 0) { + fs__stat_assign_statbuf(statbuf, stat_info, do_lstat); + return -1; + } + stat_info.EndOfFile.QuadPart = target_length; + } else { + stat_info.EndOfFile.QuadPart = + file_info.StandardInformation.EndOfFile.QuadPart; } + fs__stat_assign_statbuf(statbuf, stat_info, do_lstat); + return 0; +} + +INLINE static void fs__stat_assign_statbuf_null(uv_stat_t* statbuf) { + memset(statbuf, 0, sizeof(uv_stat_t)); + statbuf->st_mode = _S_IFCHR; + statbuf->st_mode |= (_S_IREAD | _S_IWRITE) | ((_S_IREAD | _S_IWRITE) >> 3) | + ((_S_IREAD | _S_IWRITE) >> 6); + statbuf->st_nlink = 1; + statbuf->st_blksize = 4096; + statbuf->st_rdev = FILE_DEVICE_NULL << 16; +} + +INLINE static void fs__stat_assign_statbuf(uv_stat_t* statbuf, + FILE_STAT_BASIC_INFORMATION stat_info, int do_lstat) { + statbuf->st_dev = stat_info.VolumeSerialNumber.QuadPart; + /* Todo: st_mode should probably always be 0666 for everyone. We might also * want to report 0777 if the file is a .exe or a directory. * @@ -1722,50 +1862,43 @@ INLINE static int fs__stat_handle(HANDLE handle, uv_stat_t* statbuf, * target. Otherwise, reparse points must be treated as regular files. */ if (do_lstat && - (file_info.BasicInformation.FileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)) { - /* - * If reading the link fails, the reparse point is not a symlink and needs - * to be treated as a regular file. The higher level lstat function will - * detect this failure and retry without do_lstat if appropriate. - */ - if (fs__readlink_handle(handle, NULL, &target_length) != 0) - return -1; + (stat_info.FileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)) { statbuf->st_mode |= S_IFLNK; - statbuf->st_size = target_length; + statbuf->st_size = stat_info.EndOfFile.QuadPart; } if (statbuf->st_mode == 0) { - if (file_info.BasicInformation.FileAttributes & FILE_ATTRIBUTE_DIRECTORY) { + if (stat_info.FileAttributes & FILE_ATTRIBUTE_DIRECTORY) { statbuf->st_mode |= _S_IFDIR; statbuf->st_size = 0; } else { statbuf->st_mode |= _S_IFREG; - statbuf->st_size = file_info.StandardInformation.EndOfFile.QuadPart; + statbuf->st_size = stat_info.EndOfFile.QuadPart; } } - if (file_info.BasicInformation.FileAttributes & FILE_ATTRIBUTE_READONLY) + if (stat_info.FileAttributes & FILE_ATTRIBUTE_READONLY) statbuf->st_mode |= _S_IREAD | (_S_IREAD >> 3) | (_S_IREAD >> 6); else statbuf->st_mode |= (_S_IREAD | _S_IWRITE) | ((_S_IREAD | _S_IWRITE) >> 3) | ((_S_IREAD | _S_IWRITE) >> 6); uv__filetime_to_timespec(&statbuf->st_atim, - file_info.BasicInformation.LastAccessTime.QuadPart); + stat_info.LastAccessTime.QuadPart); uv__filetime_to_timespec(&statbuf->st_ctim, - file_info.BasicInformation.ChangeTime.QuadPart); + stat_info.ChangeTime.QuadPart); uv__filetime_to_timespec(&statbuf->st_mtim, - file_info.BasicInformation.LastWriteTime.QuadPart); + stat_info.LastWriteTime.QuadPart); uv__filetime_to_timespec(&statbuf->st_birthtim, - file_info.BasicInformation.CreationTime.QuadPart); + stat_info.CreationTime.QuadPart); - statbuf->st_ino = file_info.InternalInformation.IndexNumber.QuadPart; + statbuf->st_ino = stat_info.FileId.QuadPart; /* st_blocks contains the on-disk allocation size in 512-byte units. */ statbuf->st_blocks = - (uint64_t) file_info.StandardInformation.AllocationSize.QuadPart >> 9; + (uint64_t) stat_info.AllocationSize.QuadPart >> 9; - statbuf->st_nlink = file_info.StandardInformation.NumberOfLinks; + statbuf->st_nlink = stat_info.NumberOfLinks; /* The st_blksize is supposed to be the 'optimal' number of bytes for reading * and writing to the disk. That is, for any definition of 'optimal' - it's @@ -1797,8 +1930,6 @@ INLINE static int fs__stat_handle(HANDLE handle, uv_stat_t* statbuf, statbuf->st_uid = 0; statbuf->st_rdev = 0; statbuf->st_gen = 0; - - return 0; } @@ -1820,6 +1951,17 @@ INLINE static DWORD fs__stat_impl_from_path(WCHAR* path, DWORD flags; DWORD ret; + // If new API exists, try to use it. + switch (fs__stat_path(path, statbuf, do_lstat)) { + case FS__STAT_PATH_SUCCESS: + return 0; + case FS__STAT_PATH_ERROR: + return GetLastError(); + case FS__STAT_PATH_TRY_SLOW: + break; + } + + // If the new API does not exist, use the old API. flags = FILE_FLAG_BACKUP_SEMANTICS; if (do_lstat) flags |= FILE_FLAG_OPEN_REPARSE_POINT; @@ -2833,7 +2975,7 @@ static void uv__fs_done(struct uv__work* w, int status) { uv_fs_t* req; req = container_of(w, uv_fs_t, work_req); - uv__req_unregister(req->loop, req); + uv__req_unregister(req->loop); if (status == UV_ECANCELED) { assert(req->result == 0); diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/getaddrinfo.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/getaddrinfo.cpp index 5bc63d8e194..1181695550d 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/getaddrinfo.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/getaddrinfo.cpp @@ -71,10 +71,9 @@ int uv__getaddrinfo_translate_error(int sys_err) { DECLSPEC_IMPORT void WSAAPI FreeAddrInfoW(PADDRINFOW pAddrInfo); #endif - -/* Adjust size value to be multiple of 4. Use to keep pointer aligned. - * Do we need different versions of this for different architectures? */ -#define ALIGNED_SIZE(X) ((((X) + 3) >> 2) << 2) +static size_t align_offset(size_t off, size_t alignment) { + return ((off + alignment - 1) / alignment) * alignment; +} #ifndef NDIS_IF_MAX_STRING_SIZE #define NDIS_IF_MAX_STRING_SIZE IF_MAX_STRING_SIZE @@ -103,17 +102,7 @@ static void uv__getaddrinfo_work(struct uv__work* w) { * Each size calculation is adjusted to avoid unaligned pointers. */ static void uv__getaddrinfo_done(struct uv__work* w, int status) { - uv_getaddrinfo_t* req; - size_t addrinfo_len = 0; - ssize_t name_len = 0; - size_t addrinfo_struct_len = ALIGNED_SIZE(sizeof(struct addrinfo)); - struct addrinfoW* addrinfow_ptr; - struct addrinfo* addrinfo_ptr; - char* alloc_ptr = NULL; - char* cur_ptr = NULL; - int r; - - req = container_of(w, uv_getaddrinfo_t, work_req); + uv_getaddrinfo_t* req = container_of(w, uv_getaddrinfo_t, work_req); /* release input parameter memory */ uv__free(req->alloc); @@ -126,34 +115,44 @@ static void uv__getaddrinfo_done(struct uv__work* w, int status) { } if (req->retcode == 0) { + char* alloc_ptr = NULL; + size_t cur_off = 0; + size_t addrinfo_len; /* Convert addrinfoW to addrinfo. First calculate required length. */ - addrinfow_ptr = req->addrinfow; + struct addrinfoW* addrinfow_ptr = req->addrinfow; while (addrinfow_ptr != NULL) { - addrinfo_len += addrinfo_struct_len + - ALIGNED_SIZE(addrinfow_ptr->ai_addrlen); + cur_off = align_offset(cur_off, sizeof(void*)); + cur_off += sizeof(struct addrinfo); + /* TODO: This alignment could be smaller, if we could + portably get the alignment for sockaddr. */ + cur_off = align_offset(cur_off, sizeof(void*)); + cur_off += addrinfow_ptr->ai_addrlen; if (addrinfow_ptr->ai_canonname != NULL) { - name_len = uv_utf16_length_as_wtf8((const uint16_t*)addrinfow_ptr->ai_canonname, -1); + ssize_t name_len = + uv_utf16_length_as_wtf8((const uint16_t*)addrinfow_ptr->ai_canonname, -1); if (name_len < 0) { req->retcode = name_len; goto complete; } - addrinfo_len += ALIGNED_SIZE(name_len + 1); + cur_off += name_len + 1; } addrinfow_ptr = addrinfow_ptr->ai_next; } /* allocate memory for addrinfo results */ + addrinfo_len = cur_off; alloc_ptr = (char*)uv__malloc(addrinfo_len); /* do conversions */ if (alloc_ptr != NULL) { - cur_ptr = alloc_ptr; + struct addrinfo *addrinfo_ptr = (struct addrinfo *)alloc_ptr; + cur_off = 0; addrinfow_ptr = req->addrinfow; - while (addrinfow_ptr != NULL) { + for (;;) { + cur_off += sizeof(struct addrinfo); + assert(cur_off <= addrinfo_len); /* copy addrinfo struct data */ - assert(cur_ptr + addrinfo_struct_len <= alloc_ptr + addrinfo_len); - addrinfo_ptr = (struct addrinfo*)cur_ptr; addrinfo_ptr->ai_family = addrinfow_ptr->ai_family; addrinfo_ptr->ai_socktype = addrinfow_ptr->ai_socktype; addrinfo_ptr->ai_protocol = addrinfow_ptr->ai_protocol; @@ -163,35 +162,37 @@ static void uv__getaddrinfo_done(struct uv__work* w, int status) { addrinfo_ptr->ai_addr = NULL; addrinfo_ptr->ai_next = NULL; - cur_ptr += addrinfo_struct_len; - /* copy sockaddr */ if (addrinfo_ptr->ai_addrlen > 0) { - assert(cur_ptr + addrinfo_ptr->ai_addrlen <= - alloc_ptr + addrinfo_len); - memcpy(cur_ptr, addrinfow_ptr->ai_addr, addrinfo_ptr->ai_addrlen); - addrinfo_ptr->ai_addr = (struct sockaddr*)cur_ptr; - cur_ptr += ALIGNED_SIZE(addrinfo_ptr->ai_addrlen); + cur_off = align_offset(cur_off, sizeof(void *)); + addrinfo_ptr->ai_addr = (struct sockaddr *)(alloc_ptr + cur_off); + cur_off += addrinfo_ptr->ai_addrlen; + assert(cur_off <= addrinfo_len); + memcpy(addrinfo_ptr->ai_addr, + addrinfow_ptr->ai_addr, + addrinfo_ptr->ai_addrlen); } /* convert canonical name to UTF-8 */ if (addrinfow_ptr->ai_canonname != NULL) { - name_len = alloc_ptr + addrinfo_len - cur_ptr; - r = uv__copy_utf16_to_utf8(addrinfow_ptr->ai_canonname, - -1, - cur_ptr, - (size_t*)&name_len); + ssize_t name_len = addrinfo_len - cur_off; + addrinfo_ptr->ai_canonname = alloc_ptr + cur_off; + int r = uv__copy_utf16_to_utf8(addrinfow_ptr->ai_canonname, + -1, + addrinfo_ptr->ai_canonname, + (size_t*)&name_len); assert(r == 0); - addrinfo_ptr->ai_canonname = cur_ptr; - cur_ptr += ALIGNED_SIZE(name_len + 1); + cur_off += name_len + 1; + assert(cur_off <= addrinfo_len); } - assert(cur_ptr <= alloc_ptr + addrinfo_len); /* set next ptr */ addrinfow_ptr = addrinfow_ptr->ai_next; - if (addrinfow_ptr != NULL) { - addrinfo_ptr->ai_next = (struct addrinfo*)cur_ptr; - } + if (addrinfow_ptr == NULL) + break; + cur_off = align_offset(cur_off, sizeof(void *)); + addrinfo_ptr = (struct addrinfo *)(alloc_ptr + cur_off); + addrinfo_ptr->ai_next = addrinfo_ptr; } req->addrinfo = (struct addrinfo*)alloc_ptr; } else { @@ -206,7 +207,7 @@ static void uv__getaddrinfo_done(struct uv__work* w, int status) { } complete: - uv__req_unregister(req->loop, req); + uv__req_unregister(req->loop); /* finally do callback with converted result */ if (req->getaddrinfo_cb) @@ -242,10 +243,12 @@ int uv_getaddrinfo(uv_loop_t* loop, const char* service, const struct addrinfo* hints) { char hostname_ascii[256]; + size_t off = 0; size_t nodesize = 0; size_t servicesize = 0; + size_t serviceoff = 0; size_t hintssize = 0; - char* alloc_ptr = NULL; + size_t hintoff = 0; ssize_t rc; if (req == NULL || (node == NULL && service == NULL)) { @@ -268,6 +271,7 @@ int uv_getaddrinfo(uv_loop_t* loop, return rc; nodesize = strlen(hostname_ascii) + 1; node = hostname_ascii; + off += nodesize * sizeof(WCHAR); } if (service != NULL) { @@ -275,27 +279,28 @@ int uv_getaddrinfo(uv_loop_t* loop, if (rc < 0) return rc; servicesize = rc; + off = align_offset(off, sizeof(WCHAR)); + serviceoff = off; + off += servicesize * sizeof(WCHAR); } + if (hints != NULL) { - hintssize = ALIGNED_SIZE(sizeof(struct addrinfoW)); + off = align_offset(off, sizeof(void *)); + hintoff = off; + hintssize = sizeof(struct addrinfoW); + off += hintssize; } /* allocate memory for inputs, and partition it as needed */ - alloc_ptr = (char*)uv__malloc(ALIGNED_SIZE(nodesize * sizeof(WCHAR)) + - ALIGNED_SIZE(servicesize * sizeof(WCHAR)) + - hintssize); - if (!alloc_ptr) + req->alloc = (char*)uv__malloc(off); + if (!req->alloc) return UV_ENOMEM; - /* save alloc_ptr now so we can free if error */ - req->alloc = (void*) alloc_ptr; - /* Convert node string to UTF16 into allocated memory and save pointer in the * request. The node here has been converted to ascii. */ if (node != NULL) { - req->node = (WCHAR*) alloc_ptr; - uv_wtf8_to_utf16(node, (uint16_t*) alloc_ptr, nodesize); - alloc_ptr += ALIGNED_SIZE(nodesize * sizeof(WCHAR)); + req->node = (WCHAR*) req->alloc; + uv_wtf8_to_utf16(node, (uint16_t*)req->node, nodesize); } else { req->node = NULL; } @@ -303,16 +308,15 @@ int uv_getaddrinfo(uv_loop_t* loop, /* Convert service string to UTF16 into allocated memory and save pointer in * the req. */ if (service != NULL) { - req->service = (WCHAR*) alloc_ptr; - uv_wtf8_to_utf16(service, (uint16_t*) alloc_ptr, servicesize); - alloc_ptr += ALIGNED_SIZE(servicesize * sizeof(WCHAR)); + req->service = (WCHAR*) ((char*) req->alloc + serviceoff); + uv_wtf8_to_utf16(service, (uint16_t*)req->service, servicesize); } else { req->service = NULL; } /* copy hints to allocated memory and save pointer in req */ if (hints != NULL) { - req->addrinfow = (struct addrinfoW*) alloc_ptr; + req->addrinfow = (struct addrinfoW*) ((char*) req->alloc + hintoff); req->addrinfow->ai_family = hints->ai_family; req->addrinfow->ai_socktype = hints->ai_socktype; req->addrinfow->ai_protocol = hints->ai_protocol; @@ -325,7 +329,7 @@ int uv_getaddrinfo(uv_loop_t* loop, req->addrinfow = NULL; } - uv__req_register(loop, req); + uv__req_register(loop); if (getaddrinfo_cb) { uv__work_submit(loop, diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/getnameinfo.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/getnameinfo.cpp index 32863176ef6..695549580d2 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/getnameinfo.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/getnameinfo.cpp @@ -82,7 +82,7 @@ static void uv__getnameinfo_done(struct uv__work* w, int status) { char* service; req = container_of(w, uv_getnameinfo_t, work_req); - uv__req_unregister(req->loop, req); + uv__req_unregister(req->loop); host = service = NULL; if (status == UV_ECANCELED) { @@ -124,7 +124,7 @@ int uv_getnameinfo(uv_loop_t* loop, } UV_REQ_INIT(req, UV_GETNAMEINFO); - uv__req_register(loop, req); + uv__req_register(loop); req->getnameinfo_cb = getnameinfo_cb; req->flags = flags; diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/pipe.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/pipe.cpp index d747dc72362..43ea270e618 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/pipe.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/pipe.cpp @@ -108,8 +108,8 @@ static int includes_nul(const char *s, size_t n) { } -static void uv__unique_pipe_name(char* ptr, char* name, size_t size) { - snprintf(name, size, "\\\\?\\pipe\\uv\\%p-%lu", ptr, GetCurrentProcessId()); +static void uv__unique_pipe_name(unsigned long long ptr, char* name, size_t size) { + snprintf(name, size, "\\\\?\\pipe\\uv\\%llu-%lu", ptr, GetCurrentProcessId()); } @@ -210,7 +210,7 @@ static void close_pipe(uv_pipe_t* pipe) { static int uv__pipe_server( HANDLE* pipeHandle_ptr, DWORD access, - char* name, size_t nameSize, char* random) { + char* name, size_t nameSize, unsigned long long random) { HANDLE pipeHandle; int err; @@ -251,7 +251,7 @@ static int uv__pipe_server( static int uv__create_pipe_pair( HANDLE* server_pipe_ptr, HANDLE* client_pipe_ptr, unsigned int server_flags, unsigned int client_flags, - int inherit_client, char* random) { + int inherit_client, unsigned long long random) { /* allowed flags are: UV_READABLE_PIPE | UV_WRITABLE_PIPE | UV_NONBLOCK_PIPE */ char pipe_name[64]; SECURITY_ATTRIBUTES sa; @@ -359,7 +359,12 @@ int uv_pipe(uv_file fds[2], int read_flags, int write_flags) { /* TODO: better source of local randomness than &fds? */ read_flags |= UV_READABLE_PIPE; write_flags |= UV_WRITABLE_PIPE; - err = uv__create_pipe_pair(&readh, &writeh, read_flags, write_flags, 0, (char*) &fds[0]); + err = uv__create_pipe_pair(&readh, + &writeh, + read_flags, + write_flags, + 0, + (uintptr_t) &fds[0]); if (err != 0) return err; temp[0] = _open_osfhandle((intptr_t) readh, 0); @@ -423,7 +428,7 @@ int uv__create_stdio_pipe_pair(uv_loop_t* loop, } err = uv__create_pipe_pair(&server_pipe, &client_pipe, - server_flags, client_flags, 1, (char*) server_pipe); + server_flags, client_flags, 1, (uintptr_t) server_pipe); if (err) goto error; @@ -669,15 +674,10 @@ void uv__pipe_endgame(uv_loop_t* loop, uv_pipe_t* handle) { } handle->pipe.conn.ipc_xfer_queue_length = 0; - if (handle->flags & UV_HANDLE_EMULATE_IOCP) { - if (handle->read_req.wait_handle != INVALID_HANDLE_VALUE) { - UnregisterWait(handle->read_req.wait_handle); - handle->read_req.wait_handle = INVALID_HANDLE_VALUE; - } - if (handle->read_req.event_handle != NULL) { - CloseHandle(handle->read_req.event_handle); - handle->read_req.event_handle = NULL; - } + assert(handle->read_req.wait_handle == INVALID_HANDLE_VALUE); + if (handle->read_req.event_handle != NULL) { + CloseHandle(handle->read_req.event_handle); + handle->read_req.event_handle = NULL; } if (handle->flags & UV_HANDLE_NON_OVERLAPPED_PIPE) @@ -870,7 +870,7 @@ void uv_pipe_connect(uv_connect_t* req, SET_REQ_ERROR(req, err); uv__insert_pending_req(loop, (uv_req_t*) req); handle->reqs_pending++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); } } @@ -961,7 +961,7 @@ int uv_pipe_connect2(uv_connect_t* req, goto error; } - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); handle->reqs_pending++; return 0; @@ -976,7 +976,7 @@ int uv_pipe_connect2(uv_connect_t* req, SET_REQ_SUCCESS(req); uv__insert_pending_req(loop, (uv_req_t*) req); handle->reqs_pending++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); return 0; error: @@ -994,7 +994,7 @@ int uv_pipe_connect2(uv_connect_t* req, SET_REQ_ERROR(req, err); uv__insert_pending_req(loop, (uv_req_t*) req); handle->reqs_pending++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); return 0; } @@ -1419,13 +1419,12 @@ static void uv__pipe_queue_read(uv_loop_t* loop, uv_pipe_t* handle) { } if (handle->flags & UV_HANDLE_EMULATE_IOCP) { - if (req->wait_handle == INVALID_HANDLE_VALUE) { - if (!RegisterWaitForSingleObject(&req->wait_handle, - req->event_handle, post_completion_read_wait, (void*) req, - INFINITE, WT_EXECUTEINWAITTHREAD)) { - SET_REQ_ERROR(req, GetLastError()); - goto error; - } + assert(req->wait_handle == INVALID_HANDLE_VALUE); + if (!RegisterWaitForSingleObject(&req->wait_handle, + req->event_handle, post_completion_read_wait, (void*) req, + INFINITE, WT_EXECUTEINWAITTHREAD | WT_EXECUTEONLYONCE)) { + SET_REQ_ERROR(req, GetLastError()); + goto error; } } } @@ -1453,16 +1452,16 @@ int uv__pipe_read_start(uv_pipe_t* handle, handle->read_cb = read_cb; handle->alloc_cb = alloc_cb; + if (handle->read_req.event_handle == NULL) { + handle->read_req.event_handle = CreateEvent(NULL, 0, 0, NULL); + if (handle->read_req.event_handle == NULL) { + uv_fatal_error(GetLastError(), "CreateEvent"); + } + } + /* If reading was stopped and then started again, there could still be a read * request pending. */ if (!(handle->flags & UV_HANDLE_READ_PENDING)) { - if (handle->flags & UV_HANDLE_EMULATE_IOCP && - handle->read_req.event_handle == NULL) { - handle->read_req.event_handle = CreateEvent(NULL, 0, 0, NULL); - if (handle->read_req.event_handle == NULL) { - uv_fatal_error(GetLastError(), "CreateEvent"); - } - } uv__pipe_queue_read(loop, handle); } @@ -1640,7 +1639,7 @@ static int uv__pipe_write_data(uv_loop_t* loop, req->u.io.queued_bytes = 0; } - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); handle->reqs_pending++; handle->stream.conn.write_reqs_pending++; POST_COMPLETION_FOR_REQ(loop, req); @@ -1688,7 +1687,7 @@ static int uv__pipe_write_data(uv_loop_t* loop, CloseHandle(req->event_handle); req->event_handle = NULL; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); handle->reqs_pending++; handle->stream.conn.write_reqs_pending++; return 0; @@ -1715,13 +1714,13 @@ static int uv__pipe_write_data(uv_loop_t* loop, if (handle->flags & UV_HANDLE_EMULATE_IOCP) { if (!RegisterWaitForSingleObject(&req->wait_handle, req->event_handle, post_completion_write_wait, (void*) req, - INFINITE, WT_EXECUTEINWAITTHREAD)) { + INFINITE, WT_EXECUTEINWAITTHREAD | WT_EXECUTEONLYONCE)) { return GetLastError(); } } } - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); handle->reqs_pending++; handle->stream.conn.write_reqs_pending++; @@ -1891,7 +1890,7 @@ static void uv__pipe_read_error(uv_loop_t* loop, uv_pipe_t* handle, int error, static void uv__pipe_read_error_or_eof(uv_loop_t* loop, uv_pipe_t* handle, - int error, uv_buf_t buf) { + DWORD error, uv_buf_t buf) { if (error == ERROR_BROKEN_PIPE) { uv__pipe_read_eof(loop, handle, buf); } else { @@ -1921,17 +1920,25 @@ static void uv__pipe_queue_ipc_xfer_info( /* Read an exact number of bytes from a pipe. If an error or end-of-file is * encountered before the requested number of bytes are read, an error is * returned. */ -static int uv__pipe_read_exactly(HANDLE h, void* buffer, DWORD count) { - DWORD bytes_read, bytes_read_now; +static DWORD uv__pipe_read_exactly(uv_pipe_t* handle, void* buffer, DWORD count) { + uv_read_t* req; + DWORD bytes_read; + DWORD bytes_read_now; bytes_read = 0; while (bytes_read < count) { - if (!ReadFile(h, + req = &handle->read_req; + memset(&req->u.io.overlapped, 0, sizeof(req->u.io.overlapped)); + req->u.io.overlapped.hEvent = (HANDLE) ((uintptr_t) req->event_handle | 1); + if (!ReadFile(handle->handle, (char*) buffer + bytes_read, count - bytes_read, &bytes_read_now, - NULL)) { - return GetLastError(); + &req->u.io.overlapped)) { + if (GetLastError() != ERROR_IO_PENDING) + return GetLastError(); + if (!GetOverlappedResult(handle->handle, &req->u.io.overlapped, &bytes_read_now, TRUE)) + return GetLastError(); } bytes_read += bytes_read_now; @@ -1942,16 +1949,19 @@ static int uv__pipe_read_exactly(HANDLE h, void* buffer, DWORD count) { } -static DWORD uv__pipe_read_data(uv_loop_t* loop, - uv_pipe_t* handle, - DWORD suggested_bytes, - DWORD max_bytes) { - DWORD bytes_read; +static int uv__pipe_read_data(uv_loop_t* loop, + uv_pipe_t* handle, + DWORD* bytes_read, /* inout argument */ + DWORD max_bytes) { uv_buf_t buf; + uv_read_t* req; + DWORD r; + DWORD bytes_available; + int more; /* Ask the user for a buffer to read data into. */ buf = uv_buf_init(NULL, 0); - handle->alloc_cb((uv_handle_t*) handle, suggested_bytes, &buf); + handle->alloc_cb((uv_handle_t*) handle, *bytes_read, &buf); if (buf.base == NULL || buf.len == 0) { handle->read_cb((uv_stream_t*) handle, UV_ENOBUFS, &buf); return 0; /* Break out of read loop. */ @@ -1960,33 +1970,77 @@ static DWORD uv__pipe_read_data(uv_loop_t* loop, /* Ensure we read at most the smaller of: * (a) the length of the user-allocated buffer. * (b) the maximum data length as specified by the `max_bytes` argument. + * (c) the amount of data that can be read non-blocking */ if (max_bytes > buf.len) max_bytes = buf.len; - /* Read into the user buffer. */ - if (!ReadFile(handle->handle, buf.base, max_bytes, &bytes_read, NULL)) { - uv__pipe_read_error_or_eof(loop, handle, GetLastError(), buf); - return 0; /* Break out of read loop. */ + if (handle->flags & UV_HANDLE_NON_OVERLAPPED_PIPE) { + /* The user failed to supply a pipe that can be used non-blocking or with + * threads. Try to estimate the amount of data that is safe to read without + * blocking, in a race-y way however. */ + bytes_available = 0; + if (!PeekNamedPipe(handle->handle, NULL, 0, NULL, &bytes_available, NULL)) { + r = GetLastError(); + } else { + if (max_bytes > bytes_available) + max_bytes = bytes_available; + *bytes_read = 0; + if (max_bytes == 0 || ReadFile(handle->handle, buf.base, max_bytes, bytes_read, NULL)) + r = ERROR_SUCCESS; + else + r = GetLastError(); + } + more = max_bytes < bytes_available; + } else { + /* Read into the user buffer. + * Prepare an Event so that we can cancel if it doesn't complete immediately. + */ + req = &handle->read_req; + memset(&req->u.io.overlapped, 0, sizeof(req->u.io.overlapped)); + req->u.io.overlapped.hEvent = (HANDLE) ((uintptr_t) req->event_handle | 1); + if (ReadFile(handle->handle, buf.base, max_bytes, bytes_read, &req->u.io.overlapped)) { + r = ERROR_SUCCESS; + } else { + r = GetLastError(); + *bytes_read = 0; + if (r == ERROR_IO_PENDING) { + r = CancelIoEx(handle->handle, &req->u.io.overlapped); + assert(r || GetLastError() == ERROR_NOT_FOUND); + if (GetOverlappedResult(handle->handle, &req->u.io.overlapped, bytes_read, TRUE)) { + r = ERROR_SUCCESS; + } else { + r = GetLastError(); + *bytes_read = 0; + } + } + } + more = *bytes_read == max_bytes; } /* Call the read callback. */ - handle->read_cb((uv_stream_t*) handle, bytes_read, &buf); + if (r == ERROR_SUCCESS || r == ERROR_OPERATION_ABORTED) + handle->read_cb((uv_stream_t*) handle, *bytes_read, &buf); + else + uv__pipe_read_error_or_eof(loop, handle, r, buf); - return bytes_read; + return more; } -static DWORD uv__pipe_read_ipc(uv_loop_t* loop, uv_pipe_t* handle) { - uint32_t* data_remaining = &handle->pipe.conn.ipc_data_frame.payload_remaining; - int err; +static int uv__pipe_read_ipc(uv_loop_t* loop, uv_pipe_t* handle) { + uint32_t* data_remaining; + DWORD err; + DWORD more; + DWORD bytes_read; + + data_remaining = &handle->pipe.conn.ipc_data_frame.payload_remaining; if (*data_remaining > 0) { /* Read frame data payload. */ - DWORD bytes_read = - uv__pipe_read_data(loop, handle, *data_remaining, *data_remaining); + bytes_read = *data_remaining; + more = uv__pipe_read_data(loop, handle, &bytes_read, bytes_read); *data_remaining -= bytes_read; - return bytes_read; } else { /* Start of a new IPC frame. */ @@ -1997,7 +2051,7 @@ static DWORD uv__pipe_read_ipc(uv_loop_t* loop, uv_pipe_t* handle) { /* Read the IPC frame header. */ err = uv__pipe_read_exactly( - handle->handle, &frame_header, sizeof frame_header); + handle, &frame_header, sizeof frame_header); if (err) goto error; @@ -2033,21 +2087,28 @@ static DWORD uv__pipe_read_ipc(uv_loop_t* loop, uv_pipe_t* handle) { /* If no socket xfer info follows, return here. Data will be read in a * subsequent invocation of uv__pipe_read_ipc(). */ - if (xfer_type == UV__IPC_SOCKET_XFER_NONE) - return sizeof frame_header; /* Number of bytes read. */ + if (xfer_type != UV__IPC_SOCKET_XFER_NONE) { + /* Read transferred socket information. */ + err = uv__pipe_read_exactly(handle, &xfer_info, sizeof xfer_info); + if (err) + goto error; - /* Read transferred socket information. */ - err = uv__pipe_read_exactly(handle->handle, &xfer_info, sizeof xfer_info); - if (err) - goto error; + /* Store the pending socket info. */ + uv__pipe_queue_ipc_xfer_info(handle, xfer_type, &xfer_info); + } - /* Store the pending socket info. */ - uv__pipe_queue_ipc_xfer_info(handle, xfer_type, &xfer_info); + more = 1; + } - /* Return number of bytes read. */ - return sizeof frame_header + sizeof xfer_info; + /* Return whether the caller should immediately try another read call to get + * more data. */ + if (more && *data_remaining == 0) { + /* TODO: use PeekNamedPipe to see if it is really worth trying to do + * another ReadFile call. */ } + return more; + invalid: /* Invalid frame. */ err = WSAECONNABORTED; /* Maps to UV_ECONNABORTED. */ @@ -2061,12 +2122,20 @@ static DWORD uv__pipe_read_ipc(uv_loop_t* loop, uv_pipe_t* handle) { void uv__process_pipe_read_req(uv_loop_t* loop, uv_pipe_t* handle, uv_req_t* req) { + DWORD err; + DWORD more; + DWORD bytes_requested; assert(handle->type == UV_NAMED_PIPE); handle->flags &= ~(UV_HANDLE_READ_PENDING | UV_HANDLE_CANCELLATION_PENDING); DECREASE_PENDING_REQ_COUNT(handle); eof_timer_stop(handle); + if (handle->read_req.wait_handle != INVALID_HANDLE_VALUE) { + UnregisterWait(handle->read_req.wait_handle); + handle->read_req.wait_handle = INVALID_HANDLE_VALUE; + } + /* At this point, we're done with bookkeeping. If the user has stopped * reading the pipe in the meantime, there is nothing left to do, since there * is no callback that we can call. */ @@ -2075,7 +2144,7 @@ void uv__process_pipe_read_req(uv_loop_t* loop, if (!REQ_SUCCESS(req)) { /* An error occurred doing the zero-read. */ - DWORD err = GET_REQ_ERROR(req); + err = GET_REQ_ERROR(req); /* If the read was cancelled by uv__pipe_interrupt_read(), the request may * indicate an ERROR_OPERATION_ABORTED error. This error isn't relevant to @@ -2086,34 +2155,18 @@ void uv__process_pipe_read_req(uv_loop_t* loop, } else { /* The zero-read completed without error, indicating there is data * available in the kernel buffer. */ - DWORD avail; - - /* Get the number of bytes available. */ - avail = 0; - if (!PeekNamedPipe(handle->handle, NULL, 0, NULL, &avail, NULL)) - uv__pipe_read_error_or_eof(loop, handle, GetLastError(), uv_null_buf_); - - /* Read until we've either read all the bytes available, or the 'reading' - * flag is cleared. */ - while (avail > 0 && handle->flags & UV_HANDLE_READING) { + while (handle->flags & UV_HANDLE_READING) { + bytes_requested = 65536; /* Depending on the type of pipe, read either IPC frames or raw data. */ - DWORD bytes_read = - handle->ipc ? uv__pipe_read_ipc(loop, handle) - : uv__pipe_read_data(loop, handle, avail, (DWORD) -1); + if (handle->ipc) + more = uv__pipe_read_ipc(loop, handle); + else + more = uv__pipe_read_data(loop, handle, &bytes_requested, INT32_MAX); /* If no bytes were read, treat this as an indication that an error * occurred, and break out of the read loop. */ - if (bytes_read == 0) - break; - - /* It is possible that more bytes were read than we thought were - * available. To prevent `avail` from underflowing, break out of the loop - * if this is the case. */ - if (bytes_read > avail) + if (more == 0) break; - - /* Recompute the number of bytes available. */ - avail -= bytes_read; } } @@ -2134,17 +2187,15 @@ void uv__process_pipe_write_req(uv_loop_t* loop, uv_pipe_t* handle, assert(handle->write_queue_size >= req->u.io.queued_bytes); handle->write_queue_size -= req->u.io.queued_bytes; - UNREGISTER_HANDLE_REQ(loop, handle, req); + UNREGISTER_HANDLE_REQ(loop, handle); - if (handle->flags & UV_HANDLE_EMULATE_IOCP) { - if (req->wait_handle != INVALID_HANDLE_VALUE) { - UnregisterWait(req->wait_handle); - req->wait_handle = INVALID_HANDLE_VALUE; - } - if (req->event_handle) { - CloseHandle(req->event_handle); - req->event_handle = NULL; - } + if (req->wait_handle != INVALID_HANDLE_VALUE) { + UnregisterWait(req->wait_handle); + req->wait_handle = INVALID_HANDLE_VALUE; + } + if (req->event_handle) { + CloseHandle(req->event_handle); + req->event_handle = NULL; } err = GET_REQ_ERROR(req); @@ -2221,7 +2272,7 @@ void uv__process_pipe_connect_req(uv_loop_t* loop, uv_pipe_t* handle, assert(handle->type == UV_NAMED_PIPE); - UNREGISTER_HANDLE_REQ(loop, handle, req); + UNREGISTER_HANDLE_REQ(loop, handle); err = 0; if (REQ_SUCCESS(req)) { @@ -2253,7 +2304,7 @@ void uv__process_pipe_shutdown_req(uv_loop_t* loop, uv_pipe_t* handle, /* Clear the shutdown_req field so we don't go here again. */ handle->stream.conn.shutdown_req = NULL; - UNREGISTER_HANDLE_REQ(loop, handle, req); + UNREGISTER_HANDLE_REQ(loop, handle); if (handle->flags & UV_HANDLE_CLOSING) { /* Already closing. Cancel the shutdown. */ diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/process-stdio.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/process-stdio.cpp index 0db35723731..181db92ea30 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/process-stdio.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/process-stdio.cpp @@ -46,12 +46,12 @@ #define CHILD_STDIO_CRT_FLAGS(buffer, fd) \ *((unsigned char*) (buffer) + sizeof(int) + fd) -#define CHILD_STDIO_HANDLE(buffer, fd) \ - *((HANDLE*) ((unsigned char*) (buffer) + \ - sizeof(int) + \ - sizeof(unsigned char) * \ - CHILD_STDIO_COUNT((buffer)) + \ - sizeof(HANDLE) * (fd))) +#define CHILD_STDIO_HANDLE(buffer, fd) \ + ((void*) ((unsigned char*) (buffer) + \ + sizeof(int) + \ + sizeof(unsigned char) * \ + CHILD_STDIO_COUNT((buffer)) + \ + sizeof(HANDLE) * (fd))) /* CRT file descriptor mode flags */ @@ -194,7 +194,7 @@ int uv__stdio_create(uv_loop_t* loop, CHILD_STDIO_COUNT(buffer) = count; for (i = 0; i < count; i++) { CHILD_STDIO_CRT_FLAGS(buffer, i) = 0; - CHILD_STDIO_HANDLE(buffer, i) = INVALID_HANDLE_VALUE; + memset(CHILD_STDIO_HANDLE(buffer, i), 0xFF, sizeof(HANDLE)); } for (i = 0; i < count; i++) { @@ -215,14 +215,15 @@ int uv__stdio_create(uv_loop_t* loop, * handles in the stdio buffer are initialized with. * INVALID_HANDLE_VALUE, which should be okay. */ if (i <= 2) { + HANDLE nul; DWORD access = (i == 0) ? FILE_GENERIC_READ : FILE_GENERIC_WRITE | FILE_READ_ATTRIBUTES; - err = uv__create_nul_handle(&CHILD_STDIO_HANDLE(buffer, i), - access); + err = uv__create_nul_handle(&nul, access); if (err) goto error; + memcpy(CHILD_STDIO_HANDLE(buffer, i), &nul, sizeof(HANDLE)); CHILD_STDIO_CRT_FLAGS(buffer, i) = FOPEN | FDEV; } break; @@ -247,7 +248,7 @@ int uv__stdio_create(uv_loop_t* loop, if (err) goto error; - CHILD_STDIO_HANDLE(buffer, i) = child_pipe; + memcpy(CHILD_STDIO_HANDLE(buffer, i), &child_pipe, sizeof(HANDLE)); CHILD_STDIO_CRT_FLAGS(buffer, i) = FOPEN | FPIPE; break; } @@ -263,7 +264,7 @@ int uv__stdio_create(uv_loop_t* loop, * error. */ if (fdopt.data.fd <= 2 && err == ERROR_INVALID_HANDLE) { CHILD_STDIO_CRT_FLAGS(buffer, i) = 0; - CHILD_STDIO_HANDLE(buffer, i) = INVALID_HANDLE_VALUE; + memset(CHILD_STDIO_HANDLE(buffer, i), 0xFF, sizeof(HANDLE)); break; } goto error; @@ -298,7 +299,7 @@ int uv__stdio_create(uv_loop_t* loop, return -1; } - CHILD_STDIO_HANDLE(buffer, i) = child_handle; + memcpy(CHILD_STDIO_HANDLE(buffer, i), &child_handle, sizeof(HANDLE)); break; } @@ -334,7 +335,7 @@ int uv__stdio_create(uv_loop_t* loop, if (err) goto error; - CHILD_STDIO_HANDLE(buffer, i) = child_handle; + memcpy(CHILD_STDIO_HANDLE(buffer, i), &child_handle, sizeof(HANDLE)); CHILD_STDIO_CRT_FLAGS(buffer, i) = crt_flags; break; } @@ -359,7 +360,7 @@ void uv__stdio_destroy(BYTE* buffer) { count = CHILD_STDIO_COUNT(buffer); for (i = 0; i < count; i++) { - HANDLE handle = CHILD_STDIO_HANDLE(buffer, i); + HANDLE handle = uv__stdio_handle(buffer, i); if (handle != INVALID_HANDLE_VALUE) { CloseHandle(handle); } @@ -374,7 +375,7 @@ void uv__stdio_noinherit(BYTE* buffer) { count = CHILD_STDIO_COUNT(buffer); for (i = 0; i < count; i++) { - HANDLE handle = CHILD_STDIO_HANDLE(buffer, i); + HANDLE handle = uv__stdio_handle(buffer, i); if (handle != INVALID_HANDLE_VALUE) { SetHandleInformation(handle, HANDLE_FLAG_INHERIT, 0); } @@ -412,5 +413,7 @@ WORD uv__stdio_size(BYTE* buffer) { HANDLE uv__stdio_handle(BYTE* buffer, int fd) { - return CHILD_STDIO_HANDLE(buffer, fd); + HANDLE handle; + memcpy(&handle, CHILD_STDIO_HANDLE(buffer, fd), sizeof(HANDLE)); + return handle; } diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/process.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/process.cpp index e4bf93d707d..d6b61c14015 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/process.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/process.cpp @@ -28,7 +28,6 @@ #include #include #include -#include /* _alloca */ #include "uv.h" #include "internal.h" @@ -597,11 +596,9 @@ int make_program_args(char** args, int verbatim_arguments, WCHAR** dst_ptr) { } -int env_strncmp(const wchar_t* a, int na, const wchar_t* b) { +static int env_strncmp(const wchar_t* a, int na, const wchar_t* b) { const wchar_t* a_eq; const wchar_t* b_eq; - wchar_t* A; - wchar_t* B; int nb; int r; @@ -616,27 +613,8 @@ int env_strncmp(const wchar_t* a, int na, const wchar_t* b) { assert(b_eq); nb = b_eq - b; - A = (wchar_t*)_alloca((na+1) * sizeof(wchar_t)); - B = (wchar_t*)_alloca((nb+1) * sizeof(wchar_t)); - - r = LCMapStringW(LOCALE_INVARIANT, LCMAP_UPPERCASE, a, na, A, na); - assert(r==na); - A[na] = L'\0'; - r = LCMapStringW(LOCALE_INVARIANT, LCMAP_UPPERCASE, b, nb, B, nb); - assert(r==nb); - B[nb] = L'\0'; - - for (;;) { - wchar_t AA = *A++; - wchar_t BB = *B++; - if (AA < BB) { - return -1; - } else if (AA > BB) { - return 1; - } else if (!AA && !BB) { - return 0; - } - } + r = CompareStringOrdinal(a, na, b, nb, /*case insensitive*/TRUE); + return r - CSTR_EQUAL; } @@ -675,6 +653,7 @@ int make_program_env(char* env_block[], WCHAR** dst_ptr) { WCHAR* dst_copy; WCHAR** ptr_copy; WCHAR** env_copy; + char* p; size_t required_vars_value_len[ARRAY_SIZE(required_vars)]; /* first pass: determine size in UTF-16 */ @@ -690,11 +669,13 @@ int make_program_env(char* env_block[], WCHAR** dst_ptr) { } /* second pass: copy to UTF-16 environment block */ - dst_copy = (WCHAR*)uv__malloc(env_len * sizeof(WCHAR)); - if (dst_copy == NULL && env_len > 0) { + len = env_block_count * sizeof(WCHAR*); + p = (char*)uv__malloc(len + env_len * sizeof(WCHAR)); + if (p == NULL) { return UV_ENOMEM; } - env_copy = (WCHAR**)_alloca(env_block_count * sizeof(WCHAR*)); + env_copy = (WCHAR**) &p[0]; + dst_copy = (WCHAR*) &p[len]; ptr = dst_copy; ptr_copy = env_copy; @@ -744,7 +725,7 @@ int make_program_env(char* env_block[], WCHAR** dst_ptr) { /* final pass: copy, in sort order, and inserting required variables */ dst = (WCHAR*)uv__malloc((1+env_len) * sizeof(WCHAR)); if (!dst) { - uv__free(dst_copy); + uv__free(p); return UV_ENOMEM; } @@ -789,7 +770,7 @@ int make_program_env(char* env_block[], WCHAR** dst_ptr) { assert(env_len == (size_t) (ptr - dst)); *ptr = L'\0'; - uv__free(dst_copy); + uv__free(p); *dst_ptr = dst; return 0; } @@ -1185,16 +1166,34 @@ static int uv__kill(HANDLE process_handle, int signum) { /* Unconditionally terminate the process. On Windows, killed processes * normally return 1. */ int err; + DWORD status; if (TerminateProcess(process_handle, 1)) return 0; - /* If the process already exited before TerminateProcess was called,. + /* If the process already exited before TerminateProcess was called, * TerminateProcess will fail with ERROR_ACCESS_DENIED. */ err = GetLastError(); - if (err == ERROR_ACCESS_DENIED && - WaitForSingleObject(process_handle, 0) == WAIT_OBJECT_0) { - return UV_ESRCH; + if (err == ERROR_ACCESS_DENIED) { + /* First check using GetExitCodeProcess() with status different from + * STILL_ACTIVE (259). This check can be set incorrectly by the process, + * though that is uncommon. */ + if (GetExitCodeProcess(process_handle, &status) && + status != STILL_ACTIVE) { + return UV_ESRCH; + } + + /* But the process could have exited with code == STILL_ACTIVE, use then + * WaitForSingleObject with timeout zero. This is prone to a race + * condition as it could return WAIT_TIMEOUT because the handle might + * not have been signaled yet.That would result in returning the wrong + * error code here (UV_EACCES instead of UV_ESRCH), but we cannot fix + * the kernel synchronization issue that TerminateProcess is + * inconsistent with WaitForSingleObject with just the APIs available to + * us in user space. */ + if (WaitForSingleObject(process_handle, 0) == WAIT_OBJECT_0) { + return UV_ESRCH; + } } return uv_translate_sys_error(err); @@ -1202,6 +1201,14 @@ static int uv__kill(HANDLE process_handle, int signum) { case 0: { /* Health check: is the process still alive? */ + DWORD status; + + if (!GetExitCodeProcess(process_handle, &status)) + return uv_translate_sys_error(GetLastError()); + + if (status != STILL_ACTIVE) + return UV_ESRCH; + switch (WaitForSingleObject(process_handle, 0)) { case WAIT_OBJECT_0: return UV_ESRCH; diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/req-inl.h b/wpinet/src/main/native/thirdparty/libuv/src/win/req-inl.h index 9e2075906f5..cf16e8ba41f 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/req-inl.h +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/req-inl.h @@ -53,16 +53,16 @@ (uv__ntstatus_to_winsock_error(GET_REQ_STATUS((req)))) -#define REGISTER_HANDLE_REQ(loop, handle, req) \ +#define REGISTER_HANDLE_REQ(loop, handle) \ do { \ INCREASE_ACTIVE_COUNT((loop), (handle)); \ - uv__req_register((loop), (req)); \ + uv__req_register((loop)); \ } while (0) -#define UNREGISTER_HANDLE_REQ(loop, handle, req) \ +#define UNREGISTER_HANDLE_REQ(loop, handle) \ do { \ DECREASE_ACTIVE_COUNT((loop), (handle)); \ - uv__req_unregister((loop), (req)); \ + uv__req_unregister((loop)); \ } while (0) @@ -83,7 +83,7 @@ INLINE static uv_req_t* uv__overlapped_to_req(OVERLAPPED* overlapped) { - return CONTAINING_RECORD(overlapped, uv_req_t, u.io.overlapped); + return container_of(overlapped, uv_req_t, u.io.overlapped); } diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/signal.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/signal.cpp index 8c79871b9bb..85730b27b2b 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/signal.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/signal.cpp @@ -91,7 +91,7 @@ int uv__signal_dispatch(int signum) { for (handle = RB_NFIND(uv_signal_tree_s, &uv__signal_tree, &lookup); handle != NULL && handle->signum == signum; - handle = RB_NEXT(uv_signal_tree_s, &uv__signal_tree, handle)) { + handle = RB_NEXT(uv_signal_tree_s, handle)) { unsigned long previous = InterlockedExchange( (volatile LONG*) &handle->pending_signum, signum); diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/stream.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/stream.cpp index 7bf9ca388cb..61a82fe4e6e 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/stream.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/stream.cpp @@ -216,7 +216,7 @@ int uv_shutdown(uv_shutdown_t* req, uv_stream_t* handle, uv_shutdown_cb cb) { handle->flags &= ~UV_HANDLE_WRITABLE; handle->stream.conn.shutdown_req = req; handle->reqs_pending++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); if (handle->stream.conn.write_reqs_pending == 0) { if (handle->type == UV_NAMED_PIPE) diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/tcp.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/tcp.cpp index d8da4d941a5..2b43d03ea22 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/tcp.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/tcp.cpp @@ -58,11 +58,17 @@ static int uv__tcp_keepalive(uv_tcp_t* handle, SOCKET socket, int enable, unsign return WSAGetLastError(); } - if (enable && setsockopt(socket, - IPPROTO_TCP, - TCP_KEEPALIVE, - (const char*)&delay, - sizeof delay) == -1) { + if (!enable) + return 0; + + if (delay < 1) + return UV_EINVAL; + + if (setsockopt(socket, + IPPROTO_TCP, + TCP_KEEPALIVE, + (const char*)&delay, + sizeof delay) == -1) { return WSAGetLastError(); } @@ -206,7 +212,7 @@ void uv__process_tcp_shutdown_req(uv_loop_t* loop, uv_tcp_t* stream, uv_shutdown assert(stream->flags & UV_HANDLE_CONNECTION); stream->stream.conn.shutdown_req = NULL; - UNREGISTER_HANDLE_REQ(loop, stream, req); + UNREGISTER_HANDLE_REQ(loop, stream); err = 0; if (stream->flags & UV_HANDLE_CLOSING) @@ -286,6 +292,12 @@ static int uv__tcp_try_bind(uv_tcp_t* handle, DWORD err; int r; + /* There is no SO_REUSEPORT on Windows, Windows only knows SO_REUSEADDR. + * so we just return an error directly when UV_TCP_REUSEPORT is requested + * for binding the socket. */ + if (flags & UV_TCP_REUSEPORT) + return ERROR_NOT_SUPPORTED; + if (handle->socket == INVALID_SOCKET) { SOCKET sock; @@ -822,7 +834,7 @@ static int uv__tcp_try_connect(uv_connect_t* req, if (handle->delayed_error != 0) { /* Process the req without IOCP. */ handle->reqs_pending++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); uv__insert_pending_req(loop, (uv_req_t*)req); return 0; } @@ -838,12 +850,12 @@ static int uv__tcp_try_connect(uv_connect_t* req, if (UV_SUCCEEDED_WITHOUT_IOCP(success)) { /* Process the req without IOCP. */ handle->reqs_pending++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); uv__insert_pending_req(loop, (uv_req_t*)req); } else if (UV_SUCCEEDED_WITH_IOCP(success)) { /* The req will be processed with IOCP. */ handle->reqs_pending++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); } else { return WSAGetLastError(); } @@ -913,14 +925,14 @@ int uv__tcp_write(uv_loop_t* loop, req->u.io.queued_bytes = 0; handle->reqs_pending++; handle->stream.conn.write_reqs_pending++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); uv__insert_pending_req(loop, (uv_req_t*) req); } else if (UV_SUCCEEDED_WITH_IOCP(result == 0)) { /* Request queued by the kernel. */ req->u.io.queued_bytes = uv__count_bufs(bufs, nbufs); handle->reqs_pending++; handle->stream.conn.write_reqs_pending++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); handle->write_queue_size += req->u.io.queued_bytes; if (handle->flags & UV_HANDLE_EMULATE_IOCP && !RegisterWaitForSingleObject(&req->wait_handle, @@ -934,7 +946,7 @@ int uv__tcp_write(uv_loop_t* loop, req->u.io.queued_bytes = 0; handle->reqs_pending++; handle->stream.conn.write_reqs_pending++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); SET_REQ_ERROR(req, WSAGetLastError()); uv__insert_pending_req(loop, (uv_req_t*) req); } @@ -1105,7 +1117,7 @@ void uv__process_tcp_write_req(uv_loop_t* loop, uv_tcp_t* handle, assert(handle->write_queue_size >= req->u.io.queued_bytes); handle->write_queue_size -= req->u.io.queued_bytes; - UNREGISTER_HANDLE_REQ(loop, handle, req); + UNREGISTER_HANDLE_REQ(loop, handle); if (handle->flags & UV_HANDLE_EMULATE_IOCP) { if (req->wait_handle != INVALID_HANDLE_VALUE) { @@ -1197,7 +1209,7 @@ void uv__process_tcp_connect_req(uv_loop_t* loop, uv_tcp_t* handle, assert(handle->type == UV_TCP); - UNREGISTER_HANDLE_REQ(loop, handle, req); + UNREGISTER_HANDLE_REQ(loop, handle); err = 0; if (handle->delayed_error) { @@ -1551,11 +1563,6 @@ int uv__tcp_connect(uv_connect_t* req, return 0; } -#ifndef WSA_FLAG_NO_HANDLE_INHERIT -/* Added in Windows 7 SP1. Specify this to avoid race conditions, */ -/* but also manually clear the inherit flag in case this failed. */ -#define WSA_FLAG_NO_HANDLE_INHERIT 0x80 -#endif int uv_socketpair(int type, int protocol, uv_os_sock_t fds[2], int flags0, int flags1) { SOCKET server = INVALID_SOCKET; diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/thread.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/thread.cpp index 03b33e9b4de..6a4d4498577 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/thread.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/thread.cpp @@ -32,45 +32,23 @@ #include "uv.h" #include "internal.h" -static void uv__once_inner(uv_once_t* guard, void (*callback)(void)) { - DWORD result; - HANDLE existing_event, created_event; - - created_event = CreateEvent(NULL, 1, 0, NULL); - if (created_event == 0) { - /* Could fail in a low-memory situation? */ - uv_fatal_error(GetLastError(), "CreateEvent"); - } +typedef void (*uv__once_cb)(void); - existing_event = InterlockedCompareExchangePointer(&guard->event, - created_event, - NULL); +typedef struct { + uv__once_cb callback; +} uv__once_data_t; - if (existing_event == NULL) { - /* We won the race */ - callback(); +static BOOL WINAPI uv__once_inner(INIT_ONCE *once, void* param, void** context) { + uv__once_data_t* data = (uv__once_data_t*)param; - result = SetEvent(created_event); - assert(result); - guard->ran = 1; + data->callback(); - } else { - /* We lost the race. Destroy the event we created and wait for the existing - * one to become signaled. */ - CloseHandle(created_event); - result = WaitForSingleObject(existing_event, INFINITE); - assert(result == WAIT_OBJECT_0); - } + return TRUE; } - -void uv_once(uv_once_t* guard, void (*callback)(void)) { - /* Fast case - avoid WaitForSingleObject. */ - if (guard->ran) { - return; - } - - uv__once_inner(guard, callback); +void uv_once(uv_once_t* guard, uv__once_cb callback) { + uv__once_data_t data = { .callback = callback }; + InitOnceExecuteOnce(&guard->init_once, uv__once_inner, (void*) &data, NULL); } diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/tty.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/tty.cpp index f7d5ef6c29f..f1acef2c64e 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/tty.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/tty.cpp @@ -2187,7 +2187,7 @@ int uv__tty_write(uv_loop_t* loop, handle->reqs_pending++; handle->stream.conn.write_reqs_pending++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); req->u.io.queued_bytes = 0; @@ -2223,7 +2223,7 @@ void uv__process_tty_write_req(uv_loop_t* loop, uv_tty_t* handle, int err; handle->write_queue_size -= req->u.io.queued_bytes; - UNREGISTER_HANDLE_REQ(loop, handle, req); + UNREGISTER_HANDLE_REQ(loop, handle); if (req->cb) { err = GET_REQ_ERROR(req); @@ -2267,7 +2267,7 @@ void uv__process_tty_shutdown_req(uv_loop_t* loop, uv_tty_t* stream, uv_shutdown assert(req); stream->stream.conn.shutdown_req = NULL; - UNREGISTER_HANDLE_REQ(loop, stream, req); + UNREGISTER_HANDLE_REQ(loop, stream); /* TTY shutdown is really just a no-op */ if (req->cb) { @@ -2384,8 +2384,8 @@ static DWORD WINAPI uv__tty_console_resize_watcher_thread(void* param) { /* Make sure to not overwhelm the system with resize events */ Sleep(33); WaitForSingleObject(uv__tty_console_resized, INFINITE); - uv__tty_console_signal_resize(); ResetEvent(uv__tty_console_resized); + uv__tty_console_signal_resize(); } return 0; } diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/udp.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/udp.cpp index eab53842d4f..5c8f6e1dd0b 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/udp.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/udp.cpp @@ -200,6 +200,12 @@ static int uv__udp_maybe_bind(uv_udp_t* handle, if (handle->flags & UV_HANDLE_BOUND) return 0; + /* There is no SO_REUSEPORT on Windows, Windows only knows SO_REUSEADDR. + * so we just return an error directly when UV_UDP_REUSEPORT is requested + * for binding the socket. */ + if (flags & UV_UDP_REUSEPORT) + return ERROR_NOT_SUPPORTED; + if ((flags & UV_UDP_IPV6ONLY) && addr->sa_family != AF_INET6) { /* UV_UDP_IPV6ONLY is supported only for IPV6 sockets */ return ERROR_INVALID_PARAMETER; @@ -376,7 +382,7 @@ static int uv__send(uv_udp_send_t* req, handle->reqs_pending++; handle->send_queue_size += req->u.io.queued_bytes; handle->send_queue_count++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); uv__insert_pending_req(loop, (uv_req_t*)req); } else if (UV_SUCCEEDED_WITH_IOCP(result == 0)) { /* Request queued by the kernel. */ @@ -384,7 +390,7 @@ static int uv__send(uv_udp_send_t* req, handle->reqs_pending++; handle->send_queue_size += req->u.io.queued_bytes; handle->send_queue_count++; - REGISTER_HANDLE_REQ(loop, handle, req); + REGISTER_HANDLE_REQ(loop, handle); } else { /* Send failed due to an error. */ return WSAGetLastError(); @@ -527,7 +533,7 @@ void uv__process_udp_send_req(uv_loop_t* loop, uv_udp_t* handle, handle->send_queue_size -= req->u.io.queued_bytes; handle->send_queue_count--; - UNREGISTER_HANDLE_REQ(loop, handle, req); + UNREGISTER_HANDLE_REQ(loop, handle); if (req->cb) { err = 0; diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/util.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/util.cpp index 6529aa36f32..907a0984093 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/util.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/util.cpp @@ -326,25 +326,19 @@ uv_pid_t uv_os_getpid(void) { uv_pid_t uv_os_getppid(void) { - int parent_pid = -1; - HANDLE handle; - PROCESSENTRY32 pe; - DWORD current_pid = GetCurrentProcessId(); - - pe.dwSize = sizeof(PROCESSENTRY32); - handle = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); - - if (Process32First(handle, &pe)) { - do { - if (pe.th32ProcessID == current_pid) { - parent_pid = pe.th32ParentProcessID; - break; - } - } while( Process32Next(handle, &pe)); + NTSTATUS nt_status; + PROCESS_BASIC_INFORMATION basic_info; + + nt_status = pNtQueryInformationProcess(GetCurrentProcess(), + ProcessBasicInformation, + &basic_info, + sizeof(basic_info), + NULL); + if (NT_SUCCESS(nt_status)) { + return basic_info.InheritedFromUniqueProcessId; + } else { + return -1; } - - CloseHandle(handle); - return parent_pid; } @@ -522,19 +516,23 @@ int uv_uptime(double* uptime) { unsigned int uv_available_parallelism(void) { - SYSTEM_INFO info; - unsigned rc; + DWORD_PTR procmask; + DWORD_PTR sysmask; + int count; + int i; /* TODO(bnoordhuis) Use GetLogicalProcessorInformationEx() to support systems * with > 64 CPUs? See https://github.com/libuv/libuv/pull/3458 */ - GetSystemInfo(&info); + count = 0; + if (GetProcessAffinityMask(GetCurrentProcess(), &procmask, &sysmask)) + for (i = 0; i < 8 * sizeof(procmask); i++) + count += 1 & (procmask >> i); - rc = info.dwNumberOfProcessors; - if (rc < 1) - rc = 1; + if (count > 0) + return count; - return rc; + return 1; } @@ -953,8 +951,13 @@ int uv_os_homedir(char* buffer, size_t* size) { r = uv_os_getenv("USERPROFILE", buffer, size); /* Don't return an error if USERPROFILE was not found. */ - if (r != UV_ENOENT) + if (r != UV_ENOENT) { + /* USERPROFILE is empty or invalid */ + if (r == 0 && *size < 3) { + return UV_ENOENT; + } return r; + } /* USERPROFILE is not set, so call uv_os_get_passwd() */ r = uv_os_get_passwd(&pwd); @@ -991,6 +994,12 @@ int uv_os_tmpdir(char* buffer, size_t* size) { if (len == 0) { return uv_translate_sys_error(GetLastError()); } + + /* tmp path is empty or invalid */ + if (len < 3) { + return UV_ENOENT; + } + /* Include space for terminating null char. */ len += 1; path = (wchar_t*)uv__malloc(len * sizeof(wchar_t)); @@ -1270,6 +1279,9 @@ int uv_os_getenv(const char* name, char* buffer, size_t* size) { SetLastError(ERROR_SUCCESS); len = GetEnvironmentVariableW(name_w, var, varlen); + if (len == 0) + r = uv_translate_sys_error(GetLastError()); + if (len < varlen) break; @@ -1291,15 +1303,8 @@ int uv_os_getenv(const char* name, char* buffer, size_t* size) { uv__free(name_w); name_w = NULL; - if (len == 0) { - r = GetLastError(); - if (r != ERROR_SUCCESS) { - r = uv_translate_sys_error(r); - goto fail; - } - } - - r = uv__copy_utf16_to_utf8(var, len, buffer, size); + if (r == 0) + r = uv__copy_utf16_to_utf8(var, len, buffer, size); fail: @@ -1539,20 +1544,7 @@ int uv_os_uname(uv_utsname_t* buffer) { os_info.dwOSVersionInfoSize = sizeof(os_info); os_info.szCSDVersion[0] = L'\0'; - /* Try calling RtlGetVersion(), and fall back to the deprecated GetVersionEx() - if RtlGetVersion() is not available. */ - if (pRtlGetVersion) { - pRtlGetVersion(&os_info); - } else { - /* Silence GetVersionEx() deprecation warning. */ - #ifdef _MSC_VER - #pragma warning(disable : 4996) - #endif - if (GetVersionExW(&os_info) == 0) { - r = uv_translate_sys_error(GetLastError()); - goto error; - } - } + pRtlGetVersion(&os_info); /* Populate the version field. */ version_size = 0; diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/winapi.cpp b/wpinet/src/main/native/thirdparty/libuv/src/win/winapi.cpp index 53147b8262e..4add0e27372 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/winapi.cpp +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/winapi.cpp @@ -48,12 +48,16 @@ sSetWinEventHook pSetWinEventHook; /* ws2_32.dll function pointer */ uv_sGetHostNameW pGetHostNameW; +/* api-ms-win-core-file-l2-1-4.dll function pointer */ +sGetFileInformationByName pGetFileInformationByName; + void uv__winapi_init(void) { HMODULE ntdll_module; HMODULE powrprof_module; HMODULE user32_module; HMODULE kernel32_module; HMODULE ws2_32_module; + HMODULE api_win_core_file_module; ntdll_module = GetModuleHandleA("ntdll.dll"); if (ntdll_module == NULL) { @@ -144,4 +148,10 @@ void uv__winapi_init(void) { ws2_32_module, "GetHostNameW"); } + + api_win_core_file_module = GetModuleHandleA("api-ms-win-core-file-l2-1-4.dll"); + if (api_win_core_file_module != NULL) { + pGetFileInformationByName = (sGetFileInformationByName)GetProcAddress( + api_win_core_file_module, "GetFileInformationByName"); + } } diff --git a/wpinet/src/main/native/thirdparty/libuv/src/win/winapi.h b/wpinet/src/main/native/thirdparty/libuv/src/win/winapi.h index d380bda42a3..548081f23a9 100644 --- a/wpinet/src/main/native/thirdparty/libuv/src/win/winapi.h +++ b/wpinet/src/main/native/thirdparty/libuv/src/win/winapi.h @@ -4125,6 +4125,24 @@ typedef const UNICODE_STRING *PCUNICODE_STRING; # define DEVICE_TYPE DWORD #endif +typedef struct _FILE_STAT_BASIC_INFORMATION { + LARGE_INTEGER FileId; + LARGE_INTEGER CreationTime; + LARGE_INTEGER LastAccessTime; + LARGE_INTEGER LastWriteTime; + LARGE_INTEGER ChangeTime; + LARGE_INTEGER AllocationSize; + LARGE_INTEGER EndOfFile; + ULONG FileAttributes; + ULONG ReparseTag; + ULONG NumberOfLinks; + ULONG DeviceType; + ULONG DeviceCharacteristics; + ULONG Reserved; + FILE_ID_128 FileId128; + LARGE_INTEGER VolumeSerialNumber; +} FILE_STAT_BASIC_INFORMATION; + /* MinGW already has a definition for REPARSE_DATA_BUFFER, but mingw-w64 does * not. */ @@ -4224,6 +4242,15 @@ typedef enum _FILE_INFORMATION_CLASS { FileNumaNodeInformation, FileStandardLinkInformation, FileRemoteProtocolInformation, + FileRenameInformationBypassAccessCheck, + FileLinkInformationBypassAccessCheck, + FileVolumeNameInformation, + FileIdInformation, + FileIdExtdDirectoryInformation, + FileReplaceCompletionInformation, + FileHardLinkFullIdInformation, + FileIdExtdBothDirectoryInformation, + FileDispositionInformationEx, /* based on https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/ne-wdm-_file_information_class */ FileMaximumInformation } FILE_INFORMATION_CLASS, *PFILE_INFORMATION_CLASS; @@ -4323,6 +4350,10 @@ typedef struct _FILE_DISPOSITION_INFORMATION { BOOLEAN DeleteFile; } FILE_DISPOSITION_INFORMATION, *PFILE_DISPOSITION_INFORMATION; +typedef struct _FILE_DISPOSITION_INFORMATION_EX { + DWORD Flags; +} FILE_DISPOSITION_INFORMATION_EX, *PFILE_DISPOSITION_INFORMATION_EX; + typedef struct _FILE_PIPE_LOCAL_INFORMATION { ULONG NamedPipeType; ULONG NamedPipeConfiguration; @@ -4427,6 +4458,14 @@ typedef struct _FILE_FS_SECTOR_SIZE_INFORMATION { ULONG ByteOffsetForPartitionAlignment; } FILE_FS_SECTOR_SIZE_INFORMATION, *PFILE_FS_SECTOR_SIZE_INFORMATION; +typedef struct _PROCESS_BASIC_INFORMATION { + PVOID Reserved1; + PVOID PebBaseAddress; + PVOID Reserved2[2]; + ULONG_PTR UniqueProcessId; + ULONG_PTR InheritedFromUniqueProcessId; +} PROCESS_BASIC_INFORMATION, *PPROCESS_BASIC_INFORMATION; + typedef struct _SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION { LARGE_INTEGER IdleTime; LARGE_INTEGER KernelTime; @@ -4440,6 +4479,10 @@ typedef struct _SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION { # define SystemProcessorPerformanceInformation 8 #endif +#ifndef ProcessBasicInformation +# define ProcessBasicInformation 0 +#endif + #ifndef ProcessConsoleHostProcess # define ProcessConsoleHostProcess 49 #endif @@ -4739,6 +4782,21 @@ typedef struct _TCP_INITIAL_RTO_PARAMETERS { # define SIO_TCP_INITIAL_RTO _WSAIOW(IOC_VENDOR,17) #endif +/* from winnt.h */ +typedef enum _FILE_INFO_BY_NAME_CLASS { + FileStatByNameInfo, + FileStatLxByNameInfo, + FileCaseSensitiveByNameInfo, + FileStatBasicByNameInfo, + MaximumFileInfoByNameClass +} FILE_INFO_BY_NAME_CLASS; + +typedef BOOL(WINAPI* sGetFileInformationByName)( + PCWSTR FileName, + FILE_INFO_BY_NAME_CLASS FileInformationClass, + PVOID FileInfoBuffer, + ULONG FileInfoBufferSize); + /* Ntdll function pointers */ extern sRtlGetVersion pRtlGetVersion; extern sRtlNtStatusToDosError pRtlNtStatusToDosError; @@ -4759,6 +4817,9 @@ extern sPowerRegisterSuspendResumeNotification pPowerRegisterSuspendResumeNotifi /* User32.dll function pointer */ extern sSetWinEventHook pSetWinEventHook; +/* api-ms-win-core-file-l2-1-4.dll function pointers */ +extern sGetFileInformationByName pGetFileInformationByName; + /* ws2_32.dll function pointer */ /* mingw doesn't have this definition, so let's declare it here locally */ typedef int (WINAPI *uv_sGetHostNameW) From 6b1e65665947de7bed3f2a478eaf33d04919eeca Mon Sep 17 00:00:00 2001 From: Benjamin Hall Date: Sat, 28 Sep 2024 12:33:15 -0400 Subject: [PATCH 02/18] [wpimath] Add `DCMotor.getCurrent()` overload accepting torque (#7132) --- .../java/edu/wpi/first/math/system/plant/DCMotor.java | 10 ++++++++++ .../src/main/native/include/frc/system/plant/DCMotor.h | 9 +++++++++ 2 files changed, 19 insertions(+) diff --git a/wpimath/src/main/java/edu/wpi/first/math/system/plant/DCMotor.java b/wpimath/src/main/java/edu/wpi/first/math/system/plant/DCMotor.java index 6d18846f254..de8346d7ddb 100644 --- a/wpimath/src/main/java/edu/wpi/first/math/system/plant/DCMotor.java +++ b/wpimath/src/main/java/edu/wpi/first/math/system/plant/DCMotor.java @@ -82,6 +82,16 @@ public double getCurrent(double speedRadiansPerSec, double voltageInputVolts) { return -1.0 / KvRadPerSecPerVolt / rOhms * speedRadiansPerSec + 1.0 / rOhms * voltageInputVolts; } + /** + * Calculate current drawn by motor for a given torque. + * + * @param torqueNm The torque produced by the motor. + * @return The current drawn by the motor. + */ + public double getCurrent(double torqueNm) { + return torqueNm / KtNMPerAmp; + } + /** * Calculate torque produced by the motor with a given current. * diff --git a/wpimath/src/main/native/include/frc/system/plant/DCMotor.h b/wpimath/src/main/native/include/frc/system/plant/DCMotor.h index a2679452472..90dc8299eac 100644 --- a/wpimath/src/main/native/include/frc/system/plant/DCMotor.h +++ b/wpimath/src/main/native/include/frc/system/plant/DCMotor.h @@ -84,6 +84,15 @@ class WPILIB_DLLEXPORT DCMotor { return -1.0 / Kv / R * speed + 1.0 / R * inputVoltage; } + /** + * Returns current drawn by motor for a given torque. + * + * @param torque The torque produced by the motor. + */ + constexpr units::ampere_t Current(units::newton_meter_t torque) const { + return torque / Kt; + } + /** * Returns torque produced by the motor with a given current. * From 50db16c0c0e1ad2a23403957afa8856d105c62c0 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sat, 28 Sep 2024 10:34:59 -0700 Subject: [PATCH 03/18] [wpigui] Add font selector (#7134) --- wpigui/src/main/native/cpp/wpigui.cpp | 75 ++++++++++++++----- wpigui/src/main/native/include/wpigui.h | 15 ++++ .../src/main/native/include/wpigui_internal.h | 20 ++++- 3 files changed, 86 insertions(+), 24 deletions(-) diff --git a/wpigui/src/main/native/cpp/wpigui.cpp b/wpigui/src/main/native/cpp/wpigui.cpp index b50540ff6b5..1a277e37df4 100644 --- a/wpigui/src/main/native/cpp/wpigui.cpp +++ b/wpigui/src/main/native/cpp/wpigui.cpp @@ -17,6 +17,8 @@ #include #include #include +#include +#include #include #include #include @@ -94,6 +96,8 @@ static void IniReadLine(ImGuiContext* ctx, ImGuiSettingsHandler* handler, impl->userScale = num; } else if (std::strncmp(lineStr, "style=", 6) == 0) { impl->style = num; + } else if (std::strncmp(lineStr, "font=", 5) == 0) { + impl->defaultFontName = &lineStr[5]; } else if (std::strncmp(lineStr, "fps=", 4) == 0) { impl->fps = num; } @@ -106,23 +110,26 @@ static void IniWriteAll(ImGuiContext* ctx, ImGuiSettingsHandler* handler, } out_buf->appendf( "[MainWindow][GLOBAL]\nwidth=%d\nheight=%d\nmaximized=%d\n" - "xpos=%d\nypos=%d\nuserScale=%d\nstyle=%d\nfps=%d\n\n", + "xpos=%d\nypos=%d\nuserScale=%d\nstyle=%d\nfont=%s\nfps=%d\n\n", gContext->width, gContext->height, gContext->maximized ? 1 : 0, gContext->xPos, gContext->yPos, gContext->userScale, gContext->style, - gContext->fps); + gContext->defaultFontName.c_str(), gContext->fps); } void gui::CreateContext() { gContext = new Context; - AddFont("ProggyDotted", [](ImGuiIO& io, float size, const ImFontConfig* cfg) { - auto font = ImGui::AddFontProggyDotted(io, size, cfg); - static const ImWchar icons_ranges[] = {ICON_MIN_FA, ICON_MAX_16_FA, 0}; - ImFontConfig icons_cfg; - icons_cfg.MergeMode = true; - icons_cfg.PixelSnapH = true; - ImGui::AddFontFontAwesomeSolid(io, size, &icons_cfg, icons_ranges); - return font; - }); + AddDefaultFont("Proggy Dotted", + [](ImGuiIO& io, float size, const ImFontConfig* cfg) { + return ImGui::AddFontProggyDotted(io, size, cfg); + }); + AddDefaultFont("Droid Sans", + [](ImGuiIO& io, float size, const ImFontConfig* cfg) { + return ImGui::AddFontDroidSans(io, size, cfg); + }); + AddDefaultFont("Fira Code Retina", + [](ImGuiIO& io, float size, const ImFontConfig* cfg) { + return ImGui::AddFontFiraCodeRetina(io, size, cfg); + }); PlatformCreateContext(); } @@ -158,17 +165,25 @@ static void ReloadFonts() { io.Fonts->Clear(); gContext->fonts.clear(); float size = 7.0f + gContext->fontScale * 3.0f; - bool first = true; for (auto&& makeFont : gContext->makeFonts) { - if (makeFont.second) { + if (makeFont.func) { ImFontConfig cfg; - std::snprintf(cfg.Name, sizeof(cfg.Name), "%s", makeFont.first); - ImFont* font = makeFont.second(io, size, &cfg); - if (first) { - ImGui::GetIO().FontDefault = font; - first = false; + std::snprintf(cfg.Name, sizeof(cfg.Name), "%s", makeFont.name.c_str()); + bool isDefault = makeFont.name == gContext->defaultFontName; + if (!makeFont.defaultOnly || isDefault) { + ImFont* font = makeFont.func(io, size, &cfg); + if (isDefault) { + // Merge font awesome solid into default font + static const ImWchar icons_ranges[] = {ICON_MIN_FA, ICON_MAX_16_FA, + 0}; + ImFontConfig icons_cfg; + icons_cfg.MergeMode = true; + icons_cfg.PixelSnapH = true; + ImGui::AddFontFontAwesomeSolid(io, size, &icons_cfg, icons_ranges); + ImGui::GetIO().FontDefault = font; + } + gContext->fonts.emplace_back(font); } - gContext->fonts.emplace_back(font); } } } @@ -479,11 +494,20 @@ int gui::AddFont( std::function makeFont) { if (makeFont) { - gContext->makeFonts.emplace_back(name, std::move(makeFont)); + gContext->makeFonts.emplace_back(name, false, std::move(makeFont)); } return gContext->makeFonts.size() - 1; } +void gui::AddDefaultFont( + const char* name, + std::function + makeFont) { + if (makeFont) { + gContext->makeFonts.emplace_back(name, true, std::move(makeFont)); + } +} + void gui::SetStyle(Style style) { gContext->style = static_cast(style); switch (style) { @@ -553,6 +577,17 @@ void gui::EmitViewMenu() { ImGui::EndMenu(); } + if (ImGui::BeginMenu("Font")) { + for (auto&& makeFont : gContext->makeFonts) { + bool selected = gContext->defaultFontName == makeFont.name; + if (ImGui::MenuItem(makeFont.name.c_str(), nullptr, &selected)) { + gContext->defaultFontName = makeFont.name; + gContext->reloadFonts = true; + } + } + ImGui::EndMenu(); + } + if (ImGui::BeginMenu("Zoom")) { for (int i = 0; i < kFontScaledLevels && (25 * (i + 2)) <= 200; ++i) { char label[20]; diff --git a/wpigui/src/main/native/include/wpigui.h b/wpigui/src/main/native/include/wpigui.h index a745431825a..8bfa6a6b6cb 100644 --- a/wpigui/src/main/native/include/wpigui.h +++ b/wpigui/src/main/native/include/wpigui.h @@ -144,6 +144,21 @@ int AddFont( std::function makeFont); +/** + * Adds a default font option. This is the font used for menus, etc. If the + * font is selected by the user as the default font, the passed function is + * called during initialization as many times as necessary to create a range of + * sizes. If not selected, the font is not loaded (to always load a font, + * use AddFont() instead). + * + * @param name font name + * @param makeFont font creation / loader function + */ +void AddDefaultFont( + const char* name, + std::function + makeFont); + /** * Gets a font added with AddFont() with the appropriate font size for * the current scaling of the GUI. diff --git a/wpigui/src/main/native/include/wpigui_internal.h b/wpigui/src/main/native/include/wpigui_internal.h index e9735f6f897..747d82c25d5 100644 --- a/wpigui/src/main/native/include/wpigui_internal.h +++ b/wpigui/src/main/native/include/wpigui_internal.h @@ -25,6 +25,7 @@ struct SavedSettings { int userScale = 2; int style = 0; int fps = 120; + std::string defaultFontName = "Proggy Dotted"; }; constexpr int kFontScaledLevels = 9; @@ -44,10 +45,21 @@ struct Context : public SavedSettings { std::function saveSettings; std::vector> initializers; std::vector> windowScalers; - std::vector>> - makeFonts; + struct FontMaker { + FontMaker( + std::string name, bool defaultOnly, + std::function + func) + : name{std::move(name)}, + defaultOnly{defaultOnly}, + func{std::move(func)} {} + + std::string name; + bool defaultOnly; + std::function + func; + }; + std::vector makeFonts; ImVec4 clearColor = ImVec4(0.45f, 0.55f, 0.60f, 1.00f); std::vector> earlyExecutors; From d389317c3a08006a3799d0c265001ebefc16b95e Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sat, 28 Sep 2024 10:35:16 -0700 Subject: [PATCH 04/18] [thirdparty] Upgrade imgui fonts to latest versions (#7137) --- thirdparty/imgui_suite/generate_fonts.sh | 8 +- .../generated/fonts/LICENSE-fontawesome.txt | 4 +- .../fonts/include/IconsFontAwesome6.h | 18 +- .../fonts/src/FontAwesomeRegular.inc | 1553 +-- .../generated/fonts/src/FontAwesomeSolid.inc | 9972 +++++++++-------- .../generated/fonts/src/ProggyDotted.inc | 2 +- 6 files changed, 5904 insertions(+), 5653 deletions(-) diff --git a/thirdparty/imgui_suite/generate_fonts.sh b/thirdparty/imgui_suite/generate_fonts.sh index 0af7bf0db4c..3350141de40 100755 --- a/thirdparty/imgui_suite/generate_fonts.sh +++ b/thirdparty/imgui_suite/generate_fonts.sh @@ -6,10 +6,10 @@ cd $DIR/generated # Versions IMGUI_COMMIT=74f7ac04a166c77ef1cbbbebff51e5bfc4fcfa5d -ICONFONTCPPHEADERS_COMMIT=acd3728de3ee4e2461f8958154bb2dc46f958723 +ICONFONTCPPHEADERS_COMMIT=d4dae38e016e3fb41ee9f3fe393d2577c0ea6315 DROID_COMMIT=d3817c246c6e3da7531fa1fbb0b0fca271aae7fb -PROGGYFONTS_VERSION=1.1.5 -FONTAWESOME_VERSION=6.2.0 +PROGGYFONTS_VERSION=1.1.7 +FONTAWESOME_VERSION=6.6.0 FIRACODE_VERSION=6.2 mkdir download @@ -81,4 +81,4 @@ ImFont* AddFont${font}(ImGuiIO& io, float size_pixels, const ImFontConfig* font_ END done -rm -r download extract imgui_font_bin2c \ No newline at end of file +rm -r download extract imgui_font_bin2c diff --git a/thirdparty/imgui_suite/generated/fonts/LICENSE-fontawesome.txt b/thirdparty/imgui_suite/generated/fonts/LICENSE-fontawesome.txt index cc557ece45d..e69c5e39a30 100644 --- a/thirdparty/imgui_suite/generated/fonts/LICENSE-fontawesome.txt +++ b/thirdparty/imgui_suite/generated/fonts/LICENSE-fontawesome.txt @@ -23,7 +23,7 @@ as SVG and JS file types. In the Font Awesome Free download, the SIL OFL license applies to all icons packaged as web and desktop font files. -Copyright (c) 2022 Fonticons, Inc. (https://fontawesome.com) +Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com) with Reserved Font Name: "Font Awesome". This Font Software is licensed under the SIL Open Font License, Version 1.1. @@ -123,7 +123,7 @@ OTHER DEALINGS IN THE FONT SOFTWARE. In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. -Copyright 2022 Fonticons, Inc. +Copyright 2024 Fonticons, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the diff --git a/thirdparty/imgui_suite/generated/fonts/include/IconsFontAwesome6.h b/thirdparty/imgui_suite/generated/fonts/include/IconsFontAwesome6.h index 7c21a59a183..38459585590 100644 --- a/thirdparty/imgui_suite/generated/fonts/include/IconsFontAwesome6.h +++ b/thirdparty/imgui_suite/generated/fonts/include/IconsFontAwesome6.h @@ -1,6 +1,8 @@ -// Generated by https://github.com/juliettef/IconFontCppHeaders script GenerateIconFontCppHeaders.py for languages C and C++ -// from https://github.com/FortAwesome/Font-Awesome/raw/6.x/metadata/icons.yml -// for use with https://github.com/FortAwesome/Font-Awesome/blob/6.x/webfonts/fa-regular-400.ttf, https://github.com/FortAwesome/Font-Awesome/blob/6.x/webfonts/fa-solid-900.ttf +// Generated by https://github.com/juliettef/IconFontCppHeaders script GenerateIconFontCppHeaders.py +// for C and C++ +// from codepoints https://github.com/FortAwesome/Font-Awesome/raw/6.x/metadata/icons.yml +// for use with font https://github.com/FortAwesome/Font-Awesome/blob/6.x/webfonts/fa-regular-400.ttf, https://github.com/FortAwesome/Font-Awesome/blob/6.x/webfonts/fa-solid-900.ttf + #pragma once #define FONT_ICON_FILE_NAME_FAR "fa-regular-400.ttf" @@ -9,6 +11,7 @@ #define ICON_MIN_FA 0xe005 #define ICON_MAX_16_FA 0xf8ff #define ICON_MAX_FA 0xf8ff + #define ICON_FA_0 "0" // U+0030 #define ICON_FA_1 "1" // U+0031 #define ICON_FA_2 "2" // U+0032 @@ -116,6 +119,7 @@ #define ICON_FA_BAN "\xef\x81\x9e" // U+f05e #define ICON_FA_BAN_SMOKING "\xef\x95\x8d" // U+f54d #define ICON_FA_BANDAGE "\xef\x91\xa2" // U+f462 +#define ICON_FA_BANGLADESHI_TAKA_SIGN "\xee\x8b\xa6" // U+e2e6 #define ICON_FA_BARCODE "\xef\x80\xaa" // U+f02a #define ICON_FA_BARS "\xef\x83\x89" // U+f0c9 #define ICON_FA_BARS_PROGRESS "\xef\xa0\xa8" // U+f828 @@ -287,9 +291,9 @@ #define ICON_FA_CHEVRON_RIGHT "\xef\x81\x94" // U+f054 #define ICON_FA_CHEVRON_UP "\xef\x81\xb7" // U+f077 #define ICON_FA_CHILD "\xef\x86\xae" // U+f1ae +#define ICON_FA_CHILD_COMBATANT "\xee\x93\xa0" // U+e4e0 #define ICON_FA_CHILD_DRESS "\xee\x96\x9c" // U+e59c #define ICON_FA_CHILD_REACHING "\xee\x96\x9d" // U+e59d -#define ICON_FA_CHILD_RIFLE "\xee\x93\xa0" // U+e4e0 #define ICON_FA_CHILDREN "\xee\x93\xa1" // U+e4e1 #define ICON_FA_CHURCH "\xef\x94\x9d" // U+f51d #define ICON_FA_CIRCLE "\xef\x84\x91" // U+f111 @@ -872,6 +876,7 @@ #define ICON_FA_NEUTER "\xef\x88\xac" // U+f22c #define ICON_FA_NEWSPAPER "\xef\x87\xaa" // U+f1ea #define ICON_FA_NOT_EQUAL "\xef\x94\xbe" // U+f53e +#define ICON_FA_NOTDEF "\xee\x87\xbe" // U+e1fe #define ICON_FA_NOTE_STICKY "\xef\x89\x89" // U+f249 #define ICON_FA_NOTES_MEDICAL "\xef\x92\x81" // U+f481 #define ICON_FA_O "O" // U+004f @@ -1193,7 +1198,10 @@ #define ICON_FA_T "T" // U+0054 #define ICON_FA_TABLE "\xef\x83\x8e" // U+f0ce #define ICON_FA_TABLE_CELLS "\xef\x80\x8a" // U+f00a +#define ICON_FA_TABLE_CELLS_COLUMN_LOCK "\xee\x99\xb8" // U+e678 #define ICON_FA_TABLE_CELLS_LARGE "\xef\x80\x89" // U+f009 +#define ICON_FA_TABLE_CELLS_ROW_LOCK "\xee\x99\xba" // U+e67a +#define ICON_FA_TABLE_CELLS_ROW_UNLOCK "\xee\x9a\x91" // U+e691 #define ICON_FA_TABLE_COLUMNS "\xef\x83\x9b" // U+f0db #define ICON_FA_TABLE_LIST "\xef\x80\x8b" // U+f00b #define ICON_FA_TABLE_TENNIS_PADDLE_BALL "\xef\x91\x9d" // U+f45d @@ -1234,6 +1242,7 @@ #define ICON_FA_THUMBS_DOWN "\xef\x85\xa5" // U+f165 #define ICON_FA_THUMBS_UP "\xef\x85\xa4" // U+f164 #define ICON_FA_THUMBTACK "\xef\x82\x8d" // U+f08d +#define ICON_FA_THUMBTACK_SLASH "\xee\x9a\x8f" // U+e68f #define ICON_FA_TICKET "\xef\x85\x85" // U+f145 #define ICON_FA_TICKET_SIMPLE "\xef\x8f\xbf" // U+f3ff #define ICON_FA_TIMELINE "\xee\x8a\x9c" // U+e29c @@ -1371,6 +1380,7 @@ #define ICON_FA_WATER "\xef\x9d\xb3" // U+f773 #define ICON_FA_WATER_LADDER "\xef\x97\x85" // U+f5c5 #define ICON_FA_WAVE_SQUARE "\xef\xa0\xbe" // U+f83e +#define ICON_FA_WEB_AWESOME "\xee\x9a\x82" // U+e682 #define ICON_FA_WEIGHT_HANGING "\xef\x97\x8d" // U+f5cd #define ICON_FA_WEIGHT_SCALE "\xef\x92\x96" // U+f496 #define ICON_FA_WHEAT_AWN "\xee\x8b\x8d" // U+e2cd diff --git a/thirdparty/imgui_suite/generated/fonts/src/FontAwesomeRegular.inc b/thirdparty/imgui_suite/generated/fonts/src/FontAwesomeRegular.inc index b6f3c6da4ed..76f5a0e69c0 100644 --- a/thirdparty/imgui_suite/generated/fonts/src/FontAwesomeRegular.inc +++ b/thirdparty/imgui_suite/generated/fonts/src/FontAwesomeRegular.inc @@ -1,774 +1,787 @@ -// File: 'extract/fontawesome-free-6.2.0-web/webfonts/fa-regular-400.ttf' (62048 bytes) +// File: 'extract/fontawesome-free-6.6.0-web/webfonts/fa-regular-400.ttf' (67976 bytes) // Exported using binary_to_compressed_c.cpp -static const unsigned int FontAwesomeRegular_compressed_size = 36785; -static const unsigned int FontAwesomeRegular_compressed_data[36788/4] = +static const unsigned int FontAwesomeRegular_compressed_size = 37430; +static const unsigned int FontAwesomeRegular_compressed_data[37432/4] = { - 0x0000bc57, 0x00000000, 0x60f20000, 0x00000400, 0x00010037, 0x000a0000, 0x00030080, 0x2f534f20, 0x5e575f32, 0x0100005a, 0x08158228, 0x6d636028, - 0x191a7061, 0x0000a125, 0x0000d404, 0x6c676c17, 0xa1a06679, 0x000017a7, 0x0000e81d, 0x656878c6, 0x08236461, 0x2b827104, 0x0382ac20, 0x82683621, - 0x41042310, 0x0b821403, 0x0382e420, 0x6d682428, 0xc4807874, 0x4f822502, 0x00008830, 0x6f6c4c03, 0xbdfd6163, 0x0000f430, 0x1382401c, 0x616da828, - 0xe2007078, 0x0b82f800, 0x2f820820, 0x616e202c, 0x1a85656d, 0x00003d49, 0x738260e4, 0x6f700530, 0xd5417473, 0x00002af1, 0x000068e8, 0xab83f509, - 0x0102032f, 0x68389600, 0x3c0f5f55, 0x020b00f5, 0x23008300, 0x7ae133df, 0xff250789, 0x018002c0, 0x220f82c0, 0x82020008, 0x25028305, 0x01000001, - 0x1382ffc0, 0xff800229, 0x020000ff, 0x83010080, 0x20038a16, 0x241184d3, 0x00f600d3, 0x8315840d, 0x8c01201f, 0x01042625, 0x009001d2, 0x22498205, - 0x8266014c, 0x01472123, 0xf52a0785, 0x84001900, 0x00020000, 0x15820305, 0x01210285, 0x84078510, 0x57412905, 0xc0004d53, 0xffff2100, 0x01238385, - 0x824000c0, 0x82012018, 0x01002403, 0x82a50139, 0x00202c07, 0x00800100, 0x00800000, 0x82c00120, 0x0040230b, 0xa9820110, 0x1a200b82, 0x10210382, - 0x202f8201, 0x841e8201, 0x200b8307, 0x20238480, 0x830f8800, 0x83178413, 0x853b8363, 0x0002211f, 0x5f830b89, 0x2b870384, 0x2382c020, 0x7f854791, - 0x1f831783, 0x07872b83, 0x1f008022, 0x1f824388, 0x1b830220, 0x13870782, 0x00000223, 0x23038400, 0x01170040, 0x0b863382, 0x23831384, 0x86000221, - 0x82078b1f, 0x83022043, 0x232f8743, 0x02ffff00, 0x23831383, 0x0b821782, 0x13874b85, 0x01233b86, 0x832000c0, 0x00022103, 0x3b82c382, 0x3f880120, - 0x80200f82, 0x7f83f382, 0x7b8a578c, 0x3b8cd386, 0x47835f86, 0xdb860388, 0x2020b78e, 0x0b416b87, 0x8e0b9b0b, 0x8300203f, 0x081b41ef, 0x20004022, - 0x4788ff8b, 0x378cdf82, 0x77862782, 0xb78b2020, 0x0220ab87, 0xff21bf84, 0x843387ff, 0x86bf822b, 0x0220210f, 0x00221f84, 0x13830100, 0x230e4b41, - 0x1b000002, 0x2383f383, 0xa7411f84, 0x20178217, 0x063b4101, 0x37420120, 0x82022006, 0x8233982b, 0xa702201b, 0x20ab8903, 0x8f33a800, 0x0040225b, - 0x233b8717, 0x04000000, 0x03200382, 0x24200382, 0x0b820382, 0x002c0825, 0x84010003, 0x00032e0f, 0x0800000a, 0x0804002c, 0x01000008, 0x091482ca, - 0xca0007d8, 0x25002100, 0x39002b00, 0x61005a00, 0x63006200, 0x65006400, 0x67006600, 0x69006800, 0x6b006a00, 0x6d006c00, 0x6f006e00, 0x71007000, - 0x73007200, 0x75007400, 0x77007600, 0x79007800, 0xa9007a00, 0x2823ae00, 0xfe23f323, 0xcf25a025, 0xfc25fb25, 0x11260026, 0x39261d26, 0x5b265a26, - 0x5d265c26, 0x5f265e26, 0xaa266526, 0xbd26ab26, 0x09270527, 0x0c270b27, 0x44273127, 0x53274627, 0x55275427, 0x64275727, 0x1b2b9527, 0x242b1c2b, - 0x85e1502b, 0x05f003f0, 0x07f006f0, 0x16f014f0, 0x1af017f0, 0x1df01bf0, 0x24f022f0, 0x3ef02ef0, 0x45f044f0, 0x59f046f0, 0x5df05cf0, 0x69f067f0, - 0x70f06ef0, 0x75f073f0, 0x80f07cf0, 0x87f086f0, 0x89f088f0, 0x94f08af0, 0x97f096f0, 0xa0f09df0, 0xa7f0a2f0, 0xc8f0c5f0, 0xe5f0e0f0, 0xebf0e6f0, - 0xf6f0f3f0, 0xf8f0f7f0, 0x0cf1fef0, 0x14f111f1, 0x1af115f1, 0x1df11cf1, 0x28f123f1, 0x33f12af1, 0x46f144f1, 0x4af147f1, 0x52f14ef1, 0x5cf155f1, - 0x86f165f1, 0x90f18ef1, 0x96f192f1, 0xc9f1adf1, 0xd8f1cdf1, 0xdbf1d9f1, 0xeaf1e3f1, 0xf7f1f6f1, 0xfaf1f9f1, 0x49f20af2, 0x4df24af2, 0x52f250f2, - 0x5df25bf2, 0x78f274f2, 0x7bf27af2, 0x8bf283f2, 0x8df28cf2, 0x92f28ef2, 0x9cf295f2, 0xb7f2b6f2, 0xbaf2b9f2, 0xbcf2bbf2, 0xbef2bdf2, 0xc2f2c0f2, - 0xd2f2c3f2, 0xdcf2d4f2, 0x02f3edf2, 0x5bf328f3, 0xd1f3a5f3, 0x25f410f4, 0x3ff43af4, 0x43f441f4, 0x47f445f4, 0x7df45cf4, 0xdaf4adf4, 0x2cf5e6f4, - 0x36f531f5, 0x56f541f5, 0x7af567f5, 0x9cf58cf5, 0xb4f5a5f5, 0xc0f5b8f5, 0xc8f5c2f5, 0x0000ffff, 0x23002100, 0x30002a00, 0xcb413c00, 0x41042088, - 0x57201ecb, 0x2010cb41, 0x18cb417b, 0xc5f0a424, 0xcb41c7f0, 0x41ea2006, 0x182012cb, 0x3614cb41, 0xf150f14d, 0xf15bf155, 0xf185f164, 0xf190f18e, - 0xf196f191, 0x41c1f1ad, 0x472016cb, 0x2808cb41, 0xf25df254, 0xf278f271, 0x12cb4179, 0xcb41b420, 0xf2c12410, 0x41d0f2c3, 0x58200acb, 0x282acb41, - 0xf57ff579, 0xf5a4f596, 0x09cb41b3, 0xffe0ff2a, 0xffdbffdf, 0x00d5ffd7, 0x25820040, 0x0000ab1e, 0x03822d10, 0x8c832c20, 0x831d1021, 0x00002b05, - 0x12101310, 0xfa0f0910, 0x0f83f50f, 0x83e30f21, 0x2d038305, 0xce0fcf0f, 0xcb0fcc0f, 0xc30fc60f, 0x1184be0f, 0x0000bc24, 0x0984b20f, 0xa80faa2c, - 0xa50f0000, 0x870f880f, 0x1184700f, 0x600f6722, 0x5c260784, 0x0000570f, 0x0b84450f, 0x3e0f3f22, 0x03830783, 0x0f280f2d, 0x00170f18, 0x0f140f00, - 0x82110f12, 0x0f092307, 0x6b840e02, 0x00d90e2b, 0x0ebf0e00, 0x0ea90eac, 0x2929839f, 0x8f0e950e, 0x0000840e, 0x0382820e, 0x360e7222, 0x33200582, - 0x2f260382, 0x2d0e2e0e, 0x09821a0e, 0x25841620, 0x00000624, 0x0983050e, 0x0d250383, 0x0d0000df, 0x200382dd, 0x200382dc, 0x241184db, 0x0d0000d8, - 0x3e0382cb, 0x0db20dc2, 0x0d790d9e, 0x0c010d4a, 0x00980cd6, 0x0c6f0c00, 0x0c6a0c6b, 0x0c680c69, 0x82530c67, 0x0b03220f, 0x853183d7, 0x5c0b3703, - 0x3b0b4c0b, 0x2e0b370b, 0x1a0b270b, 0x100b170b, 0x0a0b0f0b, 0x1d850100, 0x01210583, 0x3d01b1d6, 0x28022002, 0x1e02fe01, 0xea010e02, 0xe601f201, - 0x0202e401, 0xdc01f401, 0x3402e801, 0x01823802, 0x2e022c26, 0xb0012e02, 0xd4265982, 0xda01f001, 0x1d82c601, 0x5e01f434, 0x04020602, 0x60016201, - 0x4a014c01, 0x50019201, 0x41821002, 0x8a01b226, 0xa4010000, 0x82200382, 0xe6220382, 0x0582b001, 0xe601e224, 0x9d83a001, 0x01230385, 0x8296019a, - 0x016a2615, 0x011c016a, 0x87138518, 0x84012705, 0x00008401, 0x03824401, 0x46015e22, 0x01211583, 0x8305835a, 0x3e012303, 0x07844201, 0x66015e22, - 0x1f820784, 0x012c0123, 0x270b842c, 0x00280118, 0x00c200d6, 0x01210084, 0x22068434, 0x85b60000, 0x64012707, 0x00006001, 0x0d851401, 0x01000025, - 0x850a0128, 0x2201210b, 0x9b840782, 0x821c0121, 0x821a2017, 0x8302840d, 0x42012197, 0x002c5182, 0x00001001, 0x6a000e01, 0xbc006c00, 0x08200982, - 0x06290382, 0x04010000, 0x02010000, 0x20398300, 0x841585fe, 0x20048936, 0x840a89de, 0x84962009, 0x00c82205, 0x2201822e, 0x84200028, 0x0804930d, - 0x02000128, 0x04000300, 0x06000500, 0x12001100, 0x14001300, 0x16001500, 0x18001700, 0x1a001900, 0x1c001b00, 0x1e001d00, 0x43821f00, 0x00215208, - 0x00230022, 0x00250024, 0x00270026, 0x00290028, 0x002b002a, 0x002d002c, 0x002f002e, 0x00320031, 0x00360033, 0x003a0037, 0x003c003b, 0x00410040, - 0x00440042, 0x00470045, 0x004f004b, 0x00530050, 0x00550054, 0x00580056, 0x005c005a, 0x005e005d, 0x0c99475f, 0x006c4408, 0x00780077, 0x007b007a, - 0x0082007f, 0x00890084, 0x008f008a, 0x00920091, 0x00950093, 0x00970096, 0x009a0098, 0x009f009e, 0x00a300a2, 0x00a500a4, 0x00a900a8, 0x00ab00aa, - 0x00ad00ac, 0x00af00ae, 0x830c00b0, 0x400f21e4, 0x00230583, 0x82440100, 0x86212007, 0x82012003, 0x82232007, 0x82252003, 0x00022403, 0x822a0000, - 0x822b2003, 0x82052003, 0x82302003, 0x82392003, 0x82072003, 0x823c2003, 0x825a2003, 0x82112003, 0x86612003, 0x82162003, 0x86622007, 0x82172003, - 0x86632007, 0x82182003, 0x86642007, 0x82192003, 0x86652007, 0x821a2003, 0x86662007, 0x821b2003, 0x86672007, 0x821c2003, 0x86682007, 0x821d2003, - 0x86692007, 0x821e2003, 0x866a2007, 0x821f2003, 0x866b2007, 0x82202003, 0x866c2007, 0x82212003, 0x866d2007, 0x82222003, 0x866e2007, 0x82232003, - 0x866f2007, 0x82242003, 0x86702007, 0x20e78303, 0x830b8271, 0x82262003, 0x86722007, 0x82272003, 0x86732007, 0x82282003, 0x86742007, 0x82292003, - 0x86752007, 0x822a2003, 0x86762007, 0x822b2003, 0x86772007, 0x822c2003, 0x86782007, 0x822d2003, 0x86792007, 0x822e2003, 0x867a2007, 0x822f2003, - 0x86a92007, 0x827b2003, 0x86ae2007, 0x008a2403, 0x85282300, 0x5a002103, 0xf3200782, 0x00210385, 0x20078282, 0x250385fe, 0x00006900, 0x0385a025, - 0x824f0021, 0x85cf2007, 0x56002103, 0xfb200782, 0x17840385, 0x0b82fc20, 0x0b830382, 0x0383da83, 0x00680025, 0x85112600, 0x5e002103, 0x1d200782, - 0x00210385, 0x2007824b, 0x21038539, 0x07825800, 0x03855a20, 0x82aa0021, 0x855b2007, 0xad002103, 0x5c200782, 0x00200385, 0x2621af82, 0x820b825d, - 0x82002003, 0x5e2621c7, 0x03820b82, 0x82ab0021, 0x855f2007, 0xac002103, 0x65200782, 0x00210385, 0x83078231, 0x8303824b, 0x832620a7, 0x84038227, - 0x82bd200b, 0x2503821b, 0x00007800, 0x03850527, 0x27219b83, 0x820b8209, 0x50002103, 0x0b200782, 0x00210385, 0x20078284, 0x2103850c, 0x07828900, - 0x27205782, 0x00200382, 0x44203783, 0x03820f82, 0x009e0025, 0x85462700, 0x200b8403, 0x820b8253, 0x14002103, 0x54200782, 0x0b840385, 0x0b825520, - 0x00210382, 0x20078201, 0x84038557, 0x8264200b, 0x8303820b, 0x952721b3, 0x03820b82, 0x00060025, 0x851b2b00, 0xaf002103, 0x1c200782, 0x0b840385, - 0x0b822420, 0xcb830382, 0xab822b20, 0x00250383, 0xe1000032, 0x25038585, 0x00003000, 0x038503f0, 0xf021cb83, 0x820b8204, 0x215f83af, 0x0b8206f0, - 0x2f830382, 0x8207f021, 0x2103820b, 0x07823300, 0xf020ab82, 0x00210382, 0x200b829f, 0x20038516, 0x21938200, 0x0b8217f0, 0x00210382, 0x20078234, - 0x2103851a, 0x0782a200, 0xf0209b82, 0x00210382, 0x200b82a5, 0x2103851d, 0x07825c00, 0x03852220, 0x82350021, 0x20a38207, 0x210382f0, 0x0b823600, - 0x03852e20, 0x82370021, 0x853e2007, 0x38002103, 0x44200782, 0x00210385, 0x20078239, 0x21038545, 0x07825f00, 0x03854620, 0x825e0021, 0x82572007, - 0x00592403, 0x823a0000, 0x855c2007, 0x200b8403, 0x820b825d, 0x3b002103, 0x67200782, 0x00200385, 0xf021db82, 0x820b8269, 0x05002103, 0x6e200782, - 0x00210385, 0x2007823d, 0x20038570, 0x207f8300, 0x820b8273, 0x3f002103, 0x75200782, 0x00210385, 0x20078240, 0x2003827b, 0x206b827c, 0x20078241, - 0x21038580, 0x07824300, 0x03858620, 0x82440021, 0x85872007, 0x66002103, 0x88200782, 0x00200385, 0x89207f83, 0x03820b82, 0xc7830020, 0x0b828a20, - 0x00210382, 0x20078231, 0x21038594, 0x07824600, 0x03859620, 0x824f0021, 0x85972007, 0x37002103, 0x9d200782, 0x00210385, 0x20078247, 0x210385a0, - 0x07824800, 0x0385a220, 0x82530021, 0x82a42007, 0x82a72003, 0x8249209b, 0x85c52007, 0x4d002103, 0xc7200782, 0xc8200382, 0x4e201782, 0xe0200782, - 0x00210385, 0x20078250, 0x840385e5, 0x82e620d7, 0x8403820b, 0x82ea20bf, 0x82eb200b, 0x8251202f, 0x85f32007, 0x205f8403, 0x820b82f6, 0x65002103, - 0xf7200782, 0x00210385, 0x2007826c, 0x210385f8, 0x07825400, 0x0385fe20, 0x00550025, 0x850cf100, 0x56002103, 0x11200782, 0x0b840385, 0x0b821420, - 0x00210382, 0x20078241, 0x21038515, 0x07824200, 0x03821820, 0x77821a20, 0x07825720, 0x03851c20, 0x825a0021, 0x851d2007, 0x36002103, 0x23200782, - 0x00210385, 0x20078245, 0x20038528, 0x214b8200, 0x0b822af1, 0x00210382, 0x20078201, 0x21038533, 0x07825b00, 0x03854420, 0x825c0021, 0x85462007, - 0x5d002103, 0x47200782, 0x0b840385, 0x0b824a20, 0x00210382, 0x2007825e, 0x2003824d, 0x2083824e, 0x2007825f, 0x20038250, 0x054b4652, 0x8255f121, - 0x2103820b, 0x07820300, 0x5c205783, 0x64201782, 0x03830b82, 0x0b826520, 0x0b826620, 0x03828520, 0x0b828620, 0x07826820, 0x03858e20, 0x82a40021, - 0x85902007, 0xa3002103, 0x91200782, 0x92200382, 0x21053346, 0x0b8296f1, 0x00200382, 0xf1215782, 0x820b82ad, 0x6c002103, 0xc1200782, 0xc9200382, - 0x21053346, 0x0b82cdf1, 0x00210382, 0x20078276, 0x210385d8, 0x07827700, 0x0385d920, 0xdb200b84, 0x03820b82, 0x82560021, 0x85e32007, 0x78002103, - 0xea200782, 0x00210385, 0x20078279, 0x210385f6, 0x07827a00, 0x0385f720, 0xf9200b84, 0x03820b82, 0x827b0021, 0x85fa2007, 0x15002503, 0x0af20000, - 0x00210385, 0x2007827c, 0x20038247, 0x208f8249, 0x2007827d, 0x2103854a, 0x07827f00, 0x03854d20, 0x82800021, 0x85502007, 0x82002103, 0x52200782, - 0x00210385, 0x20078281, 0x20038254, 0x833b825b, 0x825d2017, 0x2103820b, 0x07828a00, 0x03827120, 0x17827420, 0x07828b20, 0x03857820, 0x828f0021, - 0x82792007, 0x827a2003, 0x200b8317, 0x820b827b, 0xb0002103, 0x83200782, 0x00200385, 0x33838b83, 0x00210382, 0x20138291, 0x8403858c, 0x828d200b, - 0x2103820b, 0x07829200, 0x03858e20, 0x0f830b84, 0x00210382, 0x20138202, 0x21038595, 0x07820400, 0x03859c20, 0x823c0021, 0x82b42007, 0x00b62403, - 0x82930000, 0x85b72007, 0x83002003, 0x82b9202b, 0x2103820b, 0x07829600, 0x0385ba20, 0xbb200b84, 0x03820b82, 0x82970021, 0x85bc2007, 0x200b8403, - 0x820b82bd, 0x98002103, 0xbe200782, 0x0b840385, 0x0b82c020, 0x00210382, 0x20078233, 0x200382c1, 0x206b82c2, 0x20078299, 0x210385c3, 0x07829a00, - 0x0382d020, 0x1782d220, 0x07829b20, 0x0385d420, 0x82a80021, 0x85dc2007, 0x9e002103, 0xed200782, 0x00250385, 0xf300009f, 0x21038502, 0x0782a000, - 0x03852820, 0x82a10021, 0x82582007, 0x005b2403, 0x82a20000, 0x85a52007, 0xa6002103, 0xd1200782, 0x00250385, 0xf40000a7, 0x83038510, 0x25f4215f, - 0x03820b82, 0xf421fb83, 0x820b823a, 0xa9002103, 0x3f200782, 0x00210385, 0x200782aa, 0x21038541, 0x0782ab00, 0x03854320, 0x82ac0021, 0x85452007, - 0xad002103, 0x47200782, 0x00210385, 0x200782ae, 0x2103855c, 0x0782af00, 0x03857d20, 0x82540021, 0x85ad2007, 0xb0002103, 0xda200782, 0x00210385, - 0x200782b1, 0x830385e6, 0x2cf52483, 0x82f50000, 0x12002103, 0x31200782, 0x00210385, 0x20078213, 0x21038536, 0x07821100, 0x03854120, 0x82040021, - 0x85562007, 0xb2002103, 0x67200782, 0x00210385, 0x200782b3, 0x24038279, 0x0000007a, 0x200782b4, 0x2003827f, 0x200b828c, 0x200782b6, 0x20038296, - 0x200b829c, 0x200782c4, 0x200382a4, 0x200b82a5, 0x830782cb, 0x82b42033, 0x82cd200b, 0x85b8200b, 0xcf002103, 0xc0200782, 0x00210385, 0x200782d0, - 0x210385c2, 0x0782d100, 0x0385c820, 0x00d20025, 0x8419f301, 0x00002203, 0x20078269, 0x2203844b, 0x82460000, 0x84e22007, 0x00002203, 0x2007826c, - 0x220384e5, 0x82540000, 0x84f42007, 0x00002603, 0xf4010036, 0x22038441, 0x823d0000, 0x844d2007, 0x00002203, 0x20078266, 0x2203844e, 0x82670000, - 0x84642007, 0x00002203, 0x20078233, 0x2203848e, 0x82a60000, 0x84992007, 0x00002203, 0x20078231, 0x8503849a, 0x829b200b, 0x829b200b, 0x823120cb, - 0x849c2007, 0x20178503, 0x200b82a1, 0x201782a1, 0x20078252, 0x220384ac, 0x82b00000, 0x84b22007, 0x00002203, 0x20078203, 0x220384b3, 0x82470000, - 0x84be2007, 0x00002203, 0x2007824e, 0x220384c1, 0x82410000, 0x84c22007, 0x00002203, 0x20078242, 0x220384c4, 0x82640000, 0x84c52007, 0x00002203, - 0x2007825b, 0x850384c6, 0x82cb200b, 0x82cb200b, 0x207f8377, 0x200b82f0, 0x240b82f0, 0xf5010079, 0x22038414, 0x82530000, 0x84152007, 0x00002203, - 0x2007827a, 0x22038416, 0x82370000, 0x84182007, 0x00002203, 0x2007826b, 0x22038434, 0x82560000, 0x84352007, 0x830b8503, 0x8253203f, 0x201f8353, - 0x20178282, 0x200b8282, 0x20078250, 0x22038496, 0x82870000, 0x84a42007, 0x00002203, 0x20078231, 0x840384aa, 0xb4f521d7, 0xb4200b82, 0x48202f82, - 0xb9200782, 0x00220384, 0x07826500, 0x0384bb20, 0x71000022, 0xbf200782, 0xfb840384, 0x82c1f521, 0x82c1200b, 0x20fb822f, 0x82d782f5, 0x21fb8403, - 0x1782cef5, 0x1782ce20, 0xd5203b83, 0xd5200b82, 0x9c200b82, 0xd6200782, 0x00220384, 0x07829b00, 0x0384e920, 0x40000022, 0xea200782, 0x00220384, - 0x07824400, 0x0384fa20, 0x8f000026, 0x00f60100, 0x00220384, 0x0782b700, 0x03840120, 0xc8000022, 0x02200782, 0x00220384, 0x0782bf00, 0x03840320, - 0xb8000022, 0x04200782, 0x00220384, 0x0782b900, 0x03840520, 0xba000022, 0x06200782, 0x00220384, 0x0782bc00, 0x03840920, 0xb1000022, 0x0a200782, - 0x00220384, 0x0782cf00, 0x03840d20, 0xbb000022, 0x10200782, 0x00220384, 0x07825900, 0x03841720, 0xc4000022, 0x18200782, 0x00220384, 0x0782c600, - 0x03841920, 0xc5000022, 0x1b200782, 0x00220384, 0x0782c000, 0x03841c20, 0xc2000022, 0x1d200782, 0x00220384, 0x0782c100, 0x03842020, 0xb2000022, - 0x22200782, 0x00220384, 0x0782ce00, 0x03842620, 0xb5000022, 0x2b200782, 0x00220384, 0x0782d200, 0x03842c20, 0xb6000022, 0x2d200782, 0x00220384, - 0x0782cd00, 0x03842e20, 0xd1000022, 0x33200782, 0x00220384, 0x0782b400, 0x03843620, 0xcb000022, 0x42200782, 0x00220384, 0x07825700, 0x03844420, - 0xcc000026, 0xe0f70100, 0x00220384, 0x07825600, 0x0384e120, 0xe2200b85, 0xe2210b82, 0x200b8500, 0x200b82e3, 0x200b86e3, 0x200b82e4, 0x200b86e4, - 0x200b82e5, 0x200b82e5, 0x200782af, 0x220384e6, 0x82af0000, 0x84e72007, 0x200b8503, 0x200b82e8, 0x202386e8, 0x200b82e9, 0x200b86e9, 0x200b82ea, - 0x200b86ea, 0x200b82eb, 0x230b85eb, 0x01000df9, 0x00220382, 0x07823100, 0x03840e20, 0x1a200b85, 0x1a200b82, 0x84202382, 0x23200782, 0x00220384, - 0x0782bd00, 0x03842920, 0xbe000022, 0xe1200782, 0x2f850384, 0x0b82ed20, 0x2f82ed20, 0x03826020, 0x0042eb09, 0x01d00070, 0x01aa0156, 0x021a02f0, - 0x0284025a, 0x030e03c0, 0x038c0342, 0x040004dc, 0x04c0046e, 0x051005e6, 0x06920536, 0x06400614, 0x07e4068c, 0x0746071a, 0x07cc076e, 0x082408f8, - 0x08880856, 0x09da08a6, 0x09520908, 0x0ae60986, 0x0a7e0a26, 0x0ad20aa0, 0x0b300bf6, 0x0b860b62, 0x0c000cb2, 0x0db00c5a, 0x0e7a0d1a, 0x0e8a0e2c, - 0x0f240fc2, 0x101610a4, 0x11101182, 0x127812c6, 0x135413ee, 0x14e0139a, 0x15ea1438, 0x16d01524, 0x17a01634, 0x18221860, 0x1aa419e2, 0x1a741a0c, - 0x1b001bb0, 0x1c081c88, 0x1d241d6a, 0x1ecc1d82, 0x1f0c1f6c, 0x209e2096, 0x214821e6, 0x22f42196, 0x23de2260, 0x23862332, 0x241c24da, 0x2536257e, - 0x268c26ea, 0x273e27e8, 0x283828a2, 0x295829ea, 0x2a302ac4, 0x2b1a2ba6, 0x2c0e2ca2, 0x2d242d80, 0x2ec42d6a, 0x2fde2e6e, 0x30f62f5e, 0x32be3184, - 0x32723212, 0x332a33ce, 0x355834c0, 0x36763502, 0x37f83636, 0x384c38ce, 0x390e39b6, 0x3ade397e, 0x3a703a28, 0x3b363bda, 0x3c723ca6, 0x3e8e3dfa, - 0x3fb43e1e, 0x3fb23f30, 0x400840f0, 0x412c416c, 0x423442b0, 0x4308439a, 0x44e04374, 0x4588444c, 0x456c4508, 0x465046f2, 0x474c47d2, 0x486648ec, - 0x492a497e, 0x4b7e4acc, 0x4c124c30, 0x4e684dac, 0x4f9a4e00, 0x51965082, 0x52ec5146, 0x54a853e4, 0x56b055f4, 0x5764577c, 0x5afa58fe, 0x5b665b44, - 0x5dde5cfa, 0x5e165e80, 0x606a5f90, 0x61c66016, 0x620062b6, 0x003c6394, 0xff000005, 0x018001c0, 0x001400c0, 0x001c0018, 0x00240020, 0x06210100, - 0x11070607, 0x17161716, 0x36373621, 0x27261137, 0x11152726, 0x27073727, 0x11020f33, 0x3723021f, 0xe0fe5001, 0x010d0e14, 0x140e0d01, 0x09872001, - 0x90737327, 0x1d73e673, 0x23028273, 0xc00173e6, 0xfe211c83, 0x20268860, 0x2b0983a0, 0xa6b4fe5a, 0xa6a67ca6, 0x4c01a62a, 0xa62e0482, 0x02000000, - 0xe0ff2000, 0xa0016000, 0x81820a00, 0x70850020, 0x15367f84, 0x06310722, 0x16171415, 0x36373233, 0x26273435, 0x02164023, 0x03831602, 0x82090e21, - 0x850e2000, 0x02502405, 0x83200116, 0xe0fe2614, 0x09300216, 0x82168609, 0x225b821c, 0x82e0ff00, 0x00a02489, 0x823d0038, 0x372326d9, 0x0f262736, - 0x26068701, 0x17160706, 0x85230733, 0x17062806, 0x3f363332, 0x87073301, 0x37362608, 0x3f232726, 0x2e068301, 0x33372307, 0x4aa80107, 0x1615010e, - 0x856f0f06, 0x83552006, 0x1a4d2273, 0x83068353, 0x02022319, 0x1b820513, 0x0f820220, 0x1d8b0882, 0x196f9d2c, 0x38011a70, 0x0106164c, 0x05855415, - 0x9020c683, 0x0e830483, 0x14841320, 0x0254132f, 0x90021615, 0x17150201, 0x9090bf02, 0x38008200, 0xff100001, 0x012f01c0, 0x005700c0, 0x17161300, - 0x27060716, 0x07262726, 0x20018306, 0x210f8217, 0x04833317, 0x12821884, 0x07061528, 0x22352726, 0x23822327, 0x37262723, 0x22218436, 0x83363716, - 0x223782f5, 0x84313023, 0x821a8318, 0x32290814, 0x37363533, 0xb8151716, 0x03141e2a, 0x1f181507, 0x111d1d1e, 0x0503050f, 0x351d0d04, 0x19181802, - 0x0b0d1614, 0x19330d05, 0x32a7831d, 0x13010505, 0x13151c1b, 0x11150b07, 0x36121818, 0x83041f21, 0x341e2129, 0x0c272986, 0x1f210906, 0x83050424, - 0x7701212b, 0x1723a082, 0x82060315, 0x022e080e, 0x1115090b, 0x10090808, 0x0808060c, 0x18180c0c, 0x0a11351f, 0x02163101, 0x01321602, 0x09070703, - 0x0714140b, 0x03060608, 0x160d0c06, 0x28860712, 0x820d0b21, 0x132b2428, 0x83300212, 0x00312128, 0x032e0082, 0x0000ffff, 0x80017f01, 0x1e000c00, - 0x0b823000, 0x01072631, 0x33161706, 0x36013732, 0x37360527, 0x83373631, 0x217a82de, 0xf9821607, 0x07060524, 0x09840631, 0x1984ff82, 0x11780131, - 0x0eb0fe11, 0x0a09090e, 0x0e500107, 0x42c8fe0f, 0xa442079c, 0x90002008, 0x0e792711, 0x11b0fe0e, 0x31820711, 0x69111126, 0x140e0d01, 0xa020228b, - 0x9682108f, 0xff1a003c, 0x01a401e0, 0x002c00a0, 0x23062500, 0x15012f22, 0x27220706, 0x07013d26, 0x0f820722, 0x3f262729, 0x37262701, 0x41011f36, - 0x2b08057f, 0x16173637, 0x1617010f, 0x07a10107, 0x8806060e, 0x070a1502, 0x02018908, 0x080d0504, 0x89891209, 0x140e0812, 0x16160289, 0x0b158902, - 0x14380f83, 0x030c500b, 0x02169e4f, 0x9e0a0707, 0x0c02014f, 0x4f4f0d14, 0x0912140d, 0x02251383, 0x094f9e16, 0x83118512, 0xff10288b, 0x01b001f0, - 0x83180090, 0x2307218b, 0x24052142, 0x36272623, 0x06fd4137, 0x17163327, 0x1602b001, 0x226083a0, 0x890216a0, 0x16c02209, 0x840f8c02, 0x00002919, - 0x00000200, 0x4001e1ff, 0x132adf82, 0x00002700, 0x31171613, 0x57821716, 0x26070625, 0x82272627, 0x37362ed2, 0x31070635, 0x16150706, 0x36171617, - 0x830e8237, 0x30a02818, 0x0101201f, 0x87301f20, 0x2d442707, 0x2d02022d, 0x0787442d, 0x83700121, 0x8780201d, 0x2008841e, 0x20208330, 0x8421877f, - 0x01002108, 0xe02b7f82, 0x9f010001, 0x00001700, 0x85070605, 0x07112ccc, 0x3f262706, 0x16173601, 0x82331115, 0x020023d2, 0xcd83d016, 0x1443502d, - 0x68110a0d, 0x500c0d0c, 0x44080216, 0x0130053e, 0x110a294d, 0x07400d14, 0xfe0e0706, 0x00160288, 0xd3835386, 0x00002224, 0xaf822105, 0x35434a82, - 0x010f2105, 0x17255887, 0x0f060716, 0x085c8201, 0x01070622, 0x10f0fe28, 0xce0b0506, 0x1a03031f, 0x202a2a1b, 0x0d111127, 0x3e2f280f, 0x0526293d, - 0xd29f2e04, 0x20086883, 0x100e0120, 0x261dba0b, 0x041f2026, 0x0d231b03, 0x2310120f, 0x2e060428, 0x29393930, 0x16160291, 0x26778b02, 0x17000030, - 0x82272223, 0x05b64379, 0x42013b21, 0x232007b5, 0xe5848d84, 0x17162123, 0x22818416, 0x82061716, 0x5abc37bc, 0x0b1a1a22, 0x09161405, 0x120e0d06, - 0x1817245a, 0x17180101, 0x99826424, 0xc4950a22, 0x01218283, 0x330b8400, 0x26253828, 0x25260101, 0x13132038, 0x05091520, 0x0a0a1114, 0x23282983, - 0x01011718, 0x8f0c0f0e, 0x08828d83, 0x01900b25, 0x83382525, 0x8700202c, 0x0180249b, 0x421e009f, 0x7182053b, 0x35272622, 0x3722a483, 0x88843613, - 0x3736352e, 0x33151716, 0x80011716, 0x01271602, 0xf82b4583, 0x0606080d, 0x13140c90, 0x83d07d09, 0x1628260f, 0x02167802, 0x2b8c8368, 0x0c0b0c68, - 0x09131001, 0x98ed140c, 0x98220f83, 0x66821602, 0x200a7b41, 0x1903412e, 0x26272226, 0x3736013f, 0x06236a82, 0x82072307, 0x06014106, 0x1c25523e, - 0x14050c1c, 0x10060916, 0x23521510, 0x01011818, 0xa4231818, 0x0107070b, 0xd0130520, 0xbc226683, 0xfe888717, 0x22141527, 0x15050916, 0x82888213, - 0x82242026, 0x0908242e, 0x8413b70b, 0x028723b9, 0xfb872625, 0x00000232, 0x4001e0ff, 0x2000a001, 0x00003200, 0x31171637, 0x2d05ca42, 0x27262726, - 0x07220722, 0x26273637, 0x87452223, 0x06072605, 0x07062115, 0x05ff4231, 0x36373622, 0x16222d82, 0xda420017, 0x0605330b, 0x0c4b0302, 0x0b080710, - 0x2e1b2507, 0x0a0b1a19, 0x0a431001, 0x1f30240b, 0x43800120, 0x012e0b0f, 0x10125b01, 0x212b0905, 0x1a222136, 0x3a431e1a, 0x2f20210d, 0x280a3341, - 0x17000012, 0x37262722, 0x05204213, 0x1617322d, 0x23060307, 0x12060638, 0x83e6db09, 0x100139fe, 0x0606070e, 0x200d08f0, 0x01140d03, 0x1616026c, - 0x0c0c0c02, 0x000c70fe, 0x03200082, 0x1e27e788, 0x44003100, 0x45250000, 0x23200543, 0x82054445, 0x16152505, 0x33171617, 0x3424d583, 0x012f2627, - 0x82087941, 0x2726216e, 0x78831683, 0x1b880985, 0x2a040131, 0x23230102, 0x23352835, 0x2a020123, 0x8311101b, 0x8348200d, 0x10112c0d, 0x2028781b, - 0x01011516, 0x88201615, 0x48382108, 0x08881287, 0x3a24c622, 0x38832f83, 0x11243a25, 0x87221c1b, 0x1c22240d, 0x83aa111b, 0x8332873d, 0xa0fe2107, - 0x0021118f, 0x0ec34100, 0x27260125, 0x85272631, 0x171626d7, 0x37323732, 0x053c4607, 0x0382c483, 0x36213524, 0xbb413137, 0x25248305, 0x27262726, - 0xc4414001, 0x05062b0b, 0x0d4a0302, 0x0b080710, 0xc4412408, 0xf0fe2105, 0x210fc441, 0xc5410001, 0x060f260f, 0x35212b09, 0x11c54122, 0x00301f2f, - 0xff010000, 0x010800ff, 0x0077017f, 0x080c8212, 0x16010d3c, 0x22070607, 0x27262527, 0x36253736, 0x01071617, 0x01defe72, 0x07071322, 0xfe050510, - 0x01010db0, 0x1650010d, 0x0113070b, 0x0c8a8a4a, 0x02010d14, 0x0f0f07a0, 0x1307a007, 0xef820c14, 0x48001038, 0x3801b001, 0x15000a00, 0x21250000, - 0x17160706, 0x26373621, 0x05842527, 0x01290f84, 0x1690fe98, 0x01160202, 0x21058370, 0x078790fe, 0x78220d83, 0x1f451602, 0x87902005, 0x01002108, - 0x0822a382, 0x9f858001, 0x07062532, 0x22230605, 0x2d372627, 0x36372601, 0x17160517, 0x0d261a82, 0x0505b0fe, 0x9382080e, 0xdefe222b, 0x140c0713, - 0x010d5001, 0x239482c0, 0x0c140e02, 0x1320a583, 0x0f209f82, 0x8f414782, 0x00112509, 0x3700003c, 0x2210dc49, 0x82062313, 0x161529fe, 0x35373617, - 0x37363736, 0x23054f42, 0x0706010f, 0x3f211386, 0x25168201, 0x26272635, 0xff499027, 0x6b43250b, 0x011d1e2c, 0x012cb383, 0x6b18100f, 0x0111111a, - 0x2e491f01, 0x14291185, 0x100f1b49, 0x2e1f1f01, 0x0b184a20, 0x1d23b782, 0x83102c1e, 0x18102eee, 0x01010f10, 0x241a1111, 0x341a2612, 0x3e128311, - 0x260c1811, 0x1f19190f, 0x011f1f2e, 0x00020000, 0x01d0ff10, 0x00b001f0, 0x00530041, 0x82260100, 0x171625a4, 0x33321716, 0x82075749, 0x230f8207, - 0x14151716, 0x9e821a82, 0x26013d26, 0x26070627, 0x0347ce84, 0x0a074705, 0x03272627, 0x26312726, 0x43348227, 0x26080930, 0x484a6407, 0x38390201, - 0x1302015a, 0x48150105, 0x01012e2d, 0x4f513a3a, 0x0d023534, 0x0c13130c, 0x1316020d, 0x44251c04, 0x2f260707, 0x27331a20, 0xe6821a1a, 0x35341f2c, - 0x121b0f41, 0x12010112, 0x07871b12, 0xb0012508, 0x66474602, 0x1042425b, 0x06161301, 0x4935350c, 0x02383a51, 0x53393905, 0x0c0d1313, 0x0d0c0101, - 0x01167413, 0x01261b82, 0x2f2f1f20, 0x4782201f, 0x0102282e, 0x12271a1a, 0x22383744, 0xd0fe0223, 0x1a204d82, 0x11234d83, 0x821a1b12, 0x064b435c, - 0x017f4e08, 0x0013009f, 0x25000017, 0x22232603, 0x17060307, 0x33013f16, 0x32331617, 0x25273637, 0x01231737, 0x0f07a87e, 0x07a8070f, 0x220a1514, - 0x0f0722e0, 0x07140405, 0x5c5ce6fe, 0x900101b8, 0x70fe0e0e, 0x14070a15, 0x020f5050, 0xdc6e150a, 0x0c7f44db, 0x21001527, 0x00002d00, 0x087f4437, - 0x76441120, 0x44262006, 0x35230d76, 0x41352313, 0xfa360837, 0x23010125, 0x168c3523, 0xac160202, 0x01232335, 0x20131201, 0x194474ca, 0x94742307, - 0x0b879494, 0x3623cb22, 0x02252083, 0x1670fe16, 0x24348302, 0x101d1d25, 0x073544a5, 0xa0fe9823, 0x460b8798, 0x802a0993, 0x3a00a001, 0x26170000, - 0x02833127, 0x82343521, 0x3736279d, 0x31303130, 0x01821716, 0x2007ee41, 0x09564427, 0x20054b44, 0x221d8232, 0x82060714, 0xdd480801, 0x1a313146, - 0x311a1b1b, 0x24304532, 0x06151525, 0x0f0c0d05, 0x2c1b1a0f, 0x012d2d52, 0x522d2d01, 0x0f1a1b2c, 0x07080c0f, 0x15150108, 0x20302524, 0x33212101, - 0x33373732, 0x01212233, 0x13101001, 0x08070b14, 0x0e020108, 0x01290082, 0x43353503, 0x03363542, 0x2a0c8201, 0x0606020e, 0x13140b0c, 0x83011010, - 0x000225af, 0x01e0ff00, 0x1322af83, 0xb1821f00, 0x27262323, 0x06404311, 0x23052847, 0x33270706, 0x08085048, 0x839b113c, 0x16020216, 0x34334083, - 0x01011e1f, 0x33341f1e, 0x4d6b6b40, 0x02023333, 0x6b4d3333, 0x01160220, 0x01021690, 0x33321e1e, 0x32333e3e, 0x30011e1e, 0x4b313202, 0x0232314b, - 0x7b46a0fe, 0x0019260a, 0x07060500, 0x206b8421, 0x21678321, 0xa0471523, 0x25068305, 0x16024001, 0x6783f0fe, 0x83100121, 0xb8f82105, 0xb8210583, - 0x068549f8, 0x02246183, 0x98021616, 0x0b490486, 0x8215200b, 0x0706210c, 0x06214c88, 0x83618707, 0x44478653, 0x5a8305a2, 0x86880121, 0x84b02045, - 0x48b9826c, 0xbd240b57, 0x3c00a001, 0x410ac341, 0x162105a1, 0x23018317, 0x23060706, 0x4d05104d, 0x1621094f, 0x82218337, 0x37362116, 0xc541cb82, - 0xde2c0805, 0x1c323242, 0x1d1e011c, 0x313e3233, 0x15152525, 0x09090101, 0x0f100b06, 0x4a2e1a1b, 0x01023132, 0x26260e0e, 0x26261c48, 0x96081f20, - 0x15348482, 0x210116af, 0x37333321, 0x1f1f0120, 0x3f3b3233, 0x1e1e3233, 0x3106ce41, 0x0105050e, 0x0e0e0e0f, 0x32310201, 0x2929154c, 0x3e832323, - 0x3a212122, 0x4725d085, 0x1a1a3132, 0x06634101, 0xbb828020, 0x0000182b, 0x07061101, 0x21352726, 0x06084115, 0x15171626, 0x37363521, 0x23057549, - 0xe0fe0216, 0x16233a85, 0x83200102, 0x88012309, 0x848270fe, 0xc8c81622, 0x21090f41, 0x0b839898, 0x820b6341, 0x05bb4157, 0x1120e782, 0xc141ee84, - 0x82112005, 0x09ba41f5, 0x49847020, 0x8305c041, 0x07404b0b, 0x72876020, 0x02a0fe23, 0x082b4a16, 0xaf824020, 0x6b411d20, 0x20a18407, 0x05fe4415, - 0x11373622, 0xc782af83, 0xa0070626, 0x022d2d44, 0x0b4ca784, 0x284a8406, 0x20442d2d, 0x412c2b02, 0x2aa7832e, 0x1e1e2d2e, 0x1e1e0101, 0x830e012d, - 0xf2fe250e, 0x022b2c41, 0x2b0a7742, 0x2500001e, 0x23060716, 0x07012f22, 0x4d0a1441, 0x302e0547, 0x011f3031, 0x110b3c01, 0x080c0707, 0x5d845094, - 0x02161632, 0x0e1111e7, 0x9901970e, 0x040f1306, 0x7551d40a, 0x28091b41, 0x0e0ee8d7, 0x01981111, 0x20c784d8, 0x06f74920, 0x00000e23, 0x05454305, - 0x1117162a, 0x06171633, 0xf0280107, 0x20051e47, 0x430683d8, 0x02230624, 0x4b88fe16, 0x9f8605ca, 0x9f01c024, 0x3b821c00, 0x11272622, 0xf482a185, - 0x36200b82, 0x1b239c82, 0x82173601, 0x2849824c, 0x9c0216a8, 0x070d0d07, 0x2b3a839c, 0x0a111001, 0x110ab4b4, 0x16020110, 0x40265583, 0xed0a0aed, - 0xa085c0fe, 0x0406112f, 0x01effe0e, 0x06040e11, 0x1670fe11, 0x086b4102, 0x22061b42, 0x42272205, 0x1120051e, 0x01206183, 0x26086641, 0x0b680123, - 0x84dafe07, 0x0f0f245f, 0x8526010b, 0x04042709, 0x5d010920, 0x5c85b2fe, 0x04071027, 0x01a3fe0c, 0x240d834e, 0x071070fe, 0x0a2f5101, 0x2c001a22, - 0x20093543, 0x0e354327, 0x07060722, 0x5d4fd682, 0x44e0200e, 0x3644052a, 0x230b850b, 0x0231324b, 0x83073f44, 0x91202007, 0x243a8622, 0x32310290, - 0x442e8b4b, 0x402609db, 0x1200a001, 0x93841e00, 0x2007da44, 0x24878206, 0x07061523, 0x09da4437, 0x83181521, 0x409036cc, 0x02022b2b, 0x78412a2b, - 0x78181602, 0x011d1e2c, 0x2c1d1e01, 0x07b34178, 0x402b2b22, 0x78272083, 0x01c00216, 0x832c1e1d, 0x00d0211f, 0xc022fb84, 0x6782c001, 0x3c002022, - 0x4508094b, 0x062105db, 0x05314407, 0x17373623, 0x256c8316, 0x012f3435, 0xc6472607, 0x44372006, 0x2722054b, 0x90822326, 0x1f141529, 0x01070601, - 0x44023a84, 0x3e24052f, 0x1e1e3333, 0x33317e83, 0x38483e32, 0x0c0a0936, 0x36060606, 0x32314ba4, 0x2eec8702, 0x075b2a01, 0x05060c0b, 0x362b5a06, - 0x415a3e28, 0x272a1246, 0x0701093f, 0x07080808, 0x48411841, 0x2f44220b, 0x2117866a, 0xbb411c6c, 0x01402907, 0x001b00a0, 0x37000027, 0x82081051, - 0x16112596, 0x35373617, 0x2106aa47, 0x4047022f, 0x35232b08, 0x212132cb, 0x24240201, 0xdc42a836, 0x85603c05, 0x06080c07, 0x9b700c11, 0x16172290, - 0x17160101, 0x05a19022, 0x36332423, 0x47012524, 0x0229053d, 0x0ab6a816, 0x9b130e05, 0x831d83cf, 0x00a02125, 0x012e0082, 0xe0ff1f00, 0x9f016001, - 0x00003400, 0xa9520625, 0x07855205, 0x20088352, 0x21118326, 0xc9523637, 0x0ac75205, 0x11821620, 0x5e012b08, 0x2e272c0a, 0x152e2d34, 0x150a0714, - 0x1f373742, 0x1d070619, 0x2626431d, 0x08171626, 0x8d462809, 0x16070416, 0x1129294b, 0x1782011b, 0x84274221, 0x35412917, 0x01011419, 0x0a090d0d, - 0x27083682, 0x1105051a, 0x14261f0e, 0x0f0a1213, 0x321d1d10, 0x252c1b2f, 0x04151607, 0x0d040312, 0x13271514, 0x100a1114, 0x331d1d0f, 0x260c4743, - 0x01000011, 0x43230706, 0x0b4505a9, 0x80013607, 0x02901602, 0x90021616, 0x16020216, 0x02165001, 0x02168801, 0x820382fe, 0x062a4b0d, 0x440aa745, - 0x054516f7, 0x82062005, 0x51c023e8, 0x48823637, 0x28254c82, 0x293d3d29, 0x280b8528, 0x20513736, 0x50363502, 0x291782eb, 0x283ceb16, 0x27020227, - 0x0d853c28, 0x35365022, 0x2b09ef43, 0x009f017f, 0x17000010, 0x26032726, 0x2d074b44, 0x07060307, 0xa80610c0, 0x0a151407, 0xfe839292, 0x1006a837, - 0x010e0120, 0x070a1590, 0x01a5fe14, 0x0a07145b, 0x0e70fe15, 0x08d34801, 0x01400229, 0x001e00a0, 0x82300500, 0x010b23e7, 0x4f890706, 0x17163727, - 0x1736011b, 0x37558316, 0x10019801, 0x06626106, 0x90061110, 0x0a161406, 0x11066377, 0x77630611, 0x05226382, 0x63820790, 0x43011028, 0x0110bdfe, - 0x6b830f01, 0xfe140525, 0x824a01b5, 0xfe10260d, 0x144b01b6, 0x20738305, 0x2073890f, 0x20bb8301, 0x0ab3451c, 0x22230622, 0x45090353, 0x173a05b5, - 0x100d7a01, 0x070b0807, 0x0b079696, 0x0d100708, 0x100d9b9b, 0x96960f12, 0x0b83120f, 0x0f120734, 0xb2b20906, 0x120f0609, 0x0f12b9b9, 0xb2b2100d, - 0x0b830d10, 0x8308c741, 0x00122263, 0x06104600, 0x26273526, 0x011f3637, 0x07355b83, 0x02a37b01, 0xa3021616, 0x0e13110c, 0x130e9595, 0x7a010c11, - 0x05d952e2, 0x0e13e22a, 0xcdcd110c, 0x130e0c11, 0x2309ef50, 0x001600a0, 0x2c050352, 0x26210137, 0x21373627, 0x07161716, 0x2d058201, 0x68010706, - 0x070fb0fe, 0x2f010a06, 0x1642e3fe, 0x230d8305, 0x1c01d2fe, 0x20260d83, 0x0b0e0d01, 0x6d836901, 0xfe210983, 0x37098397, 0x00000300, 0x0002e0ff, - 0x1800a001, 0x2e002500, 0x23010000, 0x012b2627, 0x26126357, 0x1f323325, 0x47163301, 0x7b8305de, 0x15213522, 0xc0257382, 0x1a1331ac, 0x08dc4b76, - 0x09878020, 0x7680fe34, 0xc03f0506, 0x60fe010f, 0x80010f01, 0x010f80fe, 0x0982a001, 0x132d6028, 0x1b121201, 0x3288c0fe, 0x09830020, 0x3b051026, - 0x60200f01, 0x24822e82, 0x0fb0b027, 0x00000001, 0x299b8602, 0x00210095, 0x13000038, 0xcb4c3717, 0x0f062808, 0x22230601, 0x5326012f, 0x362705d2, - 0x22171617, 0x56173133, 0x1523067c, 0x53011f16, 0x320807d9, 0xf4010f26, 0x201a0c0b, 0x21342321, 0x2f010121, 0x10100cb4, 0x012fb40c, 0x34212101, - 0x19212122, 0x2d0b0101, 0x16233023, 0x1f010115, 0x011fb0b0, 0x82151601, 0x012f390e, 0x190c0c6c, 0x0a050a0a, 0x06362627, 0x0ba92c41, 0x412ca90b, - 0x27263606, 0x0a391282, 0x202f5019, 0x1a1a0706, 0x1e2c0623, 0x2c1ea4a4, 0x1a1a2306, 0x2f200607, 0x31b38300, 0x02c1ff17, 0x00c00128, 0x0034001f, - 0x1f160100, 0x40551602, 0x2f062206, 0x05065401, 0x3726272a, 0x36023f36, 0x07153137, 0x1d83c782, 0x1f363723, 0x05744201, 0x6d089882, 0x44070f20, - 0x04050f99, 0x021a6f0a, 0x890c0d0c, 0x0c0c0c8a, 0x0a6f1b01, 0x9a0e0504, 0x350f0744, 0x56760d05, 0x6a150108, 0x14690b0b, 0x76560902, 0x0135050d, - 0x8d0d01c0, 0x0e0e0217, 0x0e9c6e0a, 0x49060809, 0x09080649, 0x0a6e9c0e, 0x17020e0e, 0x4f010d8d, 0x11030b6c, 0x780c0955, 0x38060638, 0x55090c78, - 0x6c0b0311, 0x00000400, 0x3a82c0ff, 0x1200c03e, 0x30001e00, 0x00004200, 0x07062325, 0x17140706, 0x32213316, 0x26353637, 0x07272627, 0x3620a882, - 0x2005ee4e, 0x09b64521, 0x2507aa50, 0x31171635, 0x93501716, 0x82362007, 0x01270820, 0x314b6010, 0x09090232, 0x0e80010e, 0x32020909, 0x07df4b31, - 0x60322323, 0x07232332, 0x36afa2fe, 0x01012425, 0x87362524, 0x07c84507, 0x8308d045, 0x05414f31, 0xa0294783, 0x011f2030, 0x30201f01, 0x83348bd0, - 0x45d0203c, 0x078707e0, 0x00820020, 0xd3830320, 0x0100023a, 0x000e00c0, 0x003b0029, 0x37361300, 0x17151716, 0x2f060716, 0x013d2601, 0x86052c53, - 0x070621b2, 0x8305604b, 0x373622b6, 0x0c475303, 0xe838d283, 0x02161602, 0x0d0c1255, 0x180b6013, 0x223a3948, 0x22010122, 0x48393a22, 0xd0280b8b, - 0x583b3b02, 0x023b3b58, 0x01300787, 0x02021648, 0x0e397b16, 0x400c1213, 0x78870e06, 0x3f853391, 0x8b00ff21, 0x223e8336, 0x82080000, 0x02e034bf, - 0x00a00140, 0x001c0011, 0x00320027, 0x00560044, 0x8279006c, 0x272232c9, 0x34352631, 0x32333637, 0x14151617, 0x37230607, 0x06735436, 0x15272622, - 0x2f240a93, 0x31173201, 0x22212a85, 0x203a8527, 0x23449015, 0x31373603, 0x21054644, 0xf4831117, 0x27262133, 0x33112726, 0x21171611, 0x26113736, - 0x07062127, 0x0bd05080, 0x16024823, 0x96e083e0, 0x8b482004, 0x250b8b2b, 0x12120180, 0xf643011b, 0x40fe3008, 0x0112121b, 0x010f0130, 0x01010fc0, - 0x8240fe0f, 0x51002005, 0x20200b05, 0x2205f247, 0x90601602, 0x8b802008, 0x51a02027, 0x20200c3a, 0x88087f44, 0x40012269, 0x206284fe, 0x51628301, - 0xc02c07eb, 0xc0010002, 0x40002400, 0x22010000, 0x25070d48, 0x27263507, 0x8e480706, 0x099e5a05, 0x27341137, 0x06032326, 0x30272623, 0x26313031, - 0x35072227, 0x16333637, 0x056a4f17, 0x1137322e, 0x0a09dc01, 0x222a2943, 0x57323424, 0x0807d14b, 0x36364f2a, 0x30352e2d, 0x0b011440, 0x2d0c0f0a, - 0x302a2d28, 0x12463f3f, 0x22283047, 0x3f343525, 0x1e04c001, 0x0e0d0202, 0x08220203, 0xfe21de83, 0x32058330, 0x02022268, 0x01020e0e, 0x01140918, - 0x08080f2d, 0x8310c0fe, 0xf81c3823, 0x0d021d07, 0xfe1a020f, 0x000200f6, 0x01c0ff00, 0x00c00180, 0x5d1f0015, 0x3f230b0d, 0x5c161701, 0x262b059d, - 0x07271127, 0x21333611, 0x5d111532, 0x0f33080a, 0x9090110f, 0x010f0f11, 0x140e0d01, 0x04019090, 0x5d071401, 0x503b0604, 0x08080913, 0x09085454, - 0xb0011308, 0x010d0e14, 0x54543cfe, 0x06068e01, 0x460072fe, 0x012d051f, 0x00a001ff, 0x00260011, 0x1300003e, 0x0fb85a06, 0x915d2520, 0x27132613, - 0x0f222326, 0x2b058501, 0x31303130, 0x21373611, 0x98111716, 0x830b9f5a, 0x2701248b, 0x521a80fe, 0x1a210522, 0x053d4601, 0x1c121133, 0x0a048910, - 0x256b050a, 0x05090a05, 0x010f014c, 0x20b88280, 0x0fcd5a48, 0x48465820, 0x1b40210e, 0xfe2b4782, 0x0707ba87, 0x06062e90, 0x823f015e, 0xfe0f2234, - 0x06e744c7, 0xbc01fc39, 0x1f001600, 0x52002900, 0x36010000, 0x1f323133, 0x14151601, 0x5906010f, 0x3f290744, 0x0f261701, 0x36371701, 0x3271822f, - 0x013f3637, 0x07060727, 0x06171627, 0x07222307, 0x45111506, 0x3d230716, 0x5a373601, 0x2c430654, 0x363a0805, 0x33373637, 0x1d167501, 0x150c161d, - 0x120dc515, 0x090a0e64, 0x0d051d03, 0x111043c5, 0x0e1d2e1d, 0x11ec0d0e, 0x8605063a, 0x0105862e, 0x02021604, 0x0b117016, 0x110b0c0c, 0x07821001, - 0x1616022d, 0x19190102, 0x25f0fe25, 0x83011919, 0x01702509, 0x0c1515a7, 0xc5384e83, 0x041c060d, 0x640e090b, 0x22c50d12, 0x2e1d0e0e, 0x0c11101e, - 0x01113ad0, 0x06214b84, 0x823b83cb, 0xf0fe2147, 0x70204f85, 0x46875b84, 0x83100121, 0x05c34109, 0x0002c02e, 0x1900c001, 0x46003400, 0x36130000, - 0x21057d48, 0x1745010f, 0x08964605, 0x965c3120, 0x062d5805, 0x594d2620, 0x4125200c, 0xaf3a10f8, 0x302f1011, 0x0f0f1011, 0x0f0f2e2e, 0x2f301110, - 0x0e0e1110, 0x0e0e2f2f, 0xf2445101, 0x86012029, 0x204b9133, 0x28714551, 0x860cf745, 0x063726e3, 0x2f223123, 0x05f54401, 0xef833220, 0x21053645, - 0xc885010f, 0xf427e3a6, 0x090b0b09, 0x83080840, 0x6c2c2106, 0x08240583, 0x0c018008, 0x6c23dfa9, 0x85400808, 0x822c2036, 0x2109830a, 0xd8aa5480, - 0xcf460420, 0x001a2b08, 0x003c002c, 0x0100005d, 0xbc820706, 0x5506df4e, 0x975405bb, 0x27262205, 0x0ef54d11, 0x35070623, 0x222c8222, 0x60171615, - 0x372107a3, 0x05b94723, 0x3637362c, 0x17163337, 0x06010f14, 0x4483011d, 0x10823520, 0x26273425, 0x97000127, 0x0fac469d, 0x09090e2e, 0x090d1e02, - 0x0d090a0a, 0x141e3321, 0x3305a75a, 0x16331302, 0x0c390b02, 0x02161602, 0x1401212d, 0xc0011f13, 0x21172c41, 0x3a4730fe, 0x0980250f, 0x021e0e09, - 0x3305d045, 0x141301d0, 0x0202161e, 0x02021416, 0x23060c14, 0x16100d08, 0x02230d82, 0x8326161c, 0x0000236c, 0x2b470400, 0x0030250a, 0x007a0057, - 0x4e06574e, 0xdd4705f2, 0x36172105, 0x25077a5f, 0x23222330, 0xfe831516, 0x14272223, 0x05265515, 0x59273121, 0x34830857, 0xf34d1620, 0x48058205, - 0x05820518, 0x82363721, 0x37312401, 0x83310706, 0x4f062039, 0x7641066a, 0x07784107, 0x31272623, 0x0f9f48a0, 0xd1488020, 0x01200807, 0x01030101, - 0x081b1212, 0x17160108, 0x3024c122, 0x303d3d30, 0x17232430, 0x04040c17, 0x2317170c, 0xc1301191, 0x1f282831, 0x0b13141d, 0x1d14130b, 0x3128281f, - 0x13250f84, 0x140b0b14, 0x200f8413, 0x0f4649c0, 0x5b835020, 0x08247183, 0x12121b08, 0x01377082, 0x01171623, 0x171722df, 0x17170101, 0x23232122, - 0x1c0c0c1c, 0x87222223, 0x22222111, 0x23321185, 0x13012121, 0x1d1b1e12, 0x1d17181c, 0x121e1b1d, 0x0f850113, 0x18171d23, 0x210f851c, 0x8b630000, - 0x80023005, 0x1e00c001, 0x48003800, 0x74006600, 0x41130000, 0x172a123c, 0x27060716, 0x36372601, 0xaf5a031f, 0x07142205, 0x07db5517, 0x26272627, - 0x31070627, 0x05584a17, 0x06233029, 0x14151623, 0x41021f07, 0x1d8305a9, 0x37213782, 0x0b644117, 0x34273127, 0x1f161735, 0x25228501, 0x2a219733, - 0x3c41332b, 0x140b2a09, 0x10691d14, 0xfd130f0c, 0x2e0583b0, 0x232e2770, 0x24253631, 0x19360e01, 0x410a1212, 0x4c31072b, 0x0105cd36, 0x01221716, - 0x07030101, 0x362a0952, 0x24418948, 0x1c26220f, 0x0764410c, 0xd4262e32, 0x38251138, 0x24361512, 0x01010224, 0x10111b63, 0x2a0a3c41, 0x1f201f19, - 0x10130f52, 0x83d0010c, 0x582e0805, 0x011f241f, 0x36252401, 0x1a2a1b20, 0x18151b1b, 0x1e1b1d1c, 0x03011313, 0x100da02a, 0x01171721, 0x11070801, - 0x2183400c, 0x1701021e, 0x6e412217, 0x2e242505, 0x181c241d, 0x30076641, 0x0403a010, 0x2d08212c, 0x25010105, 0x0a003724, 0x078f4b00, 0x27002235, - 0x31002c00, 0x3b003600, 0x47004200, 0x53004e00, 0x61130000, 0x16200913, 0x210baa49, 0x2e613736, 0x33072508, 0x021d2335, 0x33210482, 0x21048715, - 0x0a822337, 0x04821520, 0x35373624, 0x0b82012b, 0x16230482, 0x84353317, 0x90982617, 0x02161602, 0x11334928, 0x17832820, 0x82506821, 0x60802300, - 0x06829060, 0x40220282, 0x0c84010f, 0x400f012d, 0x01606090, 0x02162880, 0x47281602, 0x19851383, 0x3838b824, 0x00844030, 0x3838682c, 0x0f0138d8, - 0x28383828, 0x0a82010f, 0x00003823, 0x28eb8202, 0x01ff01e0, 0x002400a0, 0x0cd3443f, 0x3d640620, 0x21d68306, 0x9a4b3316, 0x27262105, 0x11230183, - 0x82012f22, 0x3f36221c, 0x840e8401, 0x4c172020, 0xb544057c, 0x33023207, 0x0110100d, 0x0f07060b, 0x1723232e, 0x3a47322b, 0x05b44b39, 0x473a3930, - 0x14172628, 0x090b2415, 0x0d0e140a, 0x7a44010c, 0xa001360b, 0x2f1c1b01, 0x35493a2f, 0x0115141f, 0x010e0e0c, 0x100f0e01, 0x3514850e, 0x1c2f2f3a, - 0x90fe011b, 0x100e070c, 0x1c16130d, 0x17180e16, 0x1e624420, 0x0200240a, 0x85ffffff, 0x001822cb, 0x1a414f29, 0x8e581320, 0x06494f07, 0xbf011127, - 0x1a1330ac, 0x0e3c4f77, 0x1c12112b, 0xfe0f0110, 0x01010f80, 0x06434f0f, 0x354f0120, 0x09d84a16, 0x013b0525, 0x8200ff0f, 0x0813457c, 0x00002b24, - 0x71840725, 0x11272626, 0x37363736, 0x16267586, 0x35231517, 0xe64f2726, 0x82112006, 0x16212b18, 0x02071617, 0x1509603d, 0x8b8781fe, 0x131a7624, - 0xa14b8c31, 0x3fa03906, 0x0f760605, 0x14094701, 0x09128c01, 0xc0b20709, 0x12010111, 0x40011b12, 0x13212083, 0x250b832d, 0x010f2020, 0xb682053b, - 0x828ee021, 0x0e0e221c, 0x089f4511, 0xa0010032, 0x1d001200, 0x33002800, 0x16130000, 0x17161117, 0x98897082, 0xb94c1720, 0x16172709, 0x23070617, - 0x11822726, 0x21200a84, 0x21270a83, 0x02021618, 0x83a00116, 0x60fe2805, 0x0114141f, 0x63681602, 0xd023063f, 0x83a80216, 0x84902017, 0x84802004, - 0x84f02022, 0x0110252e, 0xfe1602a0, 0x16273484, 0x14140102, 0x6160011f, 0x1e8306e8, 0x16024822, 0x5805544c, 0xae82082a, 0x00030029, 0x02c0ff00, - 0x82c00180, 0x003a22ad, 0x4ead8472, 0x22210629, 0x06e24e27, 0xcb443720, 0x20058305, 0x059d4203, 0x2705d444, 0x17160706, 0x07011f16, 0x36262683, - 0x2517013f, 0x3a841716, 0x84075546, 0x83232025, 0x37362105, 0x33211382, 0x21238232, 0x0f821716, 0x86012f21, 0x27262652, 0x31273437, 0x076547d0, - 0x171a1c36, 0x10292021, 0x010b0607, 0x2d0d0d0c, 0x3b3b0201, 0x15162b58, 0x080cc15f, 0x0c0a0a45, 0x02021017, 0x1a1a0304, 0x15011410, 0x02383854, - 0x0d0d2d01, 0x070b010c, 0x20291006, 0x1c1a1721, 0x1a32313e, 0x2415181a, 0x16152c24, 0x1b1a1014, 0x02020404, 0x0a0c1710, 0x2901010a, 0x06013f28, - 0x5b02c001, 0x063d063c, 0x010b0b0f, 0x0c0f0e01, 0x18100f01, 0x314b402e, 0xd6fe0232, 0x24250106, 0x25243636, 0x08078301, 0x13141a41, 0x041e190c, - 0x08070604, 0xaa030911, 0x49313105, 0x10182e40, 0x0f0c010f, 0x0b01010e, 0x01060f0b, 0x042c1b1a, 0x11111c08, 0x11090306, 0x04070608, 0x0c191e04, - 0x331a1413, 0x01062323, 0x51001719, 0x012d061f, 0x00bf0138, 0x00200015, 0x17160100, 0x077f4b11, 0x23061651, 0x010f3117, 0x27071651, 0x12250111, - 0x950c0101, 0x230b0151, 0x1d1d1209, 0x29060251, 0x05bf015d, 0x0e7ffe12, 0xee504f07, 0x0310230b, 0xee503b7f, 0x01322206, 0x08c75d0a, 0xa001c028, - 0x69003700, 0x75827c00, 0x68273621, 0x0726056b, 0x31302706, 0x72440726, 0x31302e05, 0x07161530, 0x17161706, 0x37323316, 0x05df4d36, 0x83363721, - 0x27258201, 0x37263530, 0x31150627, 0x2f851f82, 0x21050d4e, 0x43822207, 0x36372624, 0x0f823635, 0x2d830782, 0x17321724, 0x41833716, 0x010f1622, - 0x22065148, 0x87232223, 0xb801351c, 0x1305040b, 0x15181714, 0x3627210f, 0x093a3c36, 0x06040609, 0x1a231383, 0x8b0f101f, 0x092a3413, 0x07050201, - 0x2a302f07, 0x1415252a, 0x120b1113, 0x850a050f, 0x20242512, 0x12141e21, 0x21081482, 0x0f120c10, 0x0e029e06, 0x0a232423, 0x02020c04, 0x2a0c030e, - 0x050f2c29, 0x18152f01, 0x05131417, 0x5c820b04, 0x3a090929, 0x2736363c, 0x830f2001, 0x08192114, 0x1834128c, 0x15141310, 0x302a2a25, 0x0507072f, - 0x06090102, 0x110b120f, 0x26281282, 0x24302a29, 0x02010b0c, 0x0c211385, 0x827c8203, 0x040b2865, 0x2a292c0f, 0x480e030c, 0xab500513, 0x000a2b05, - 0x002b0015, 0x003d0034, 0xc3433700, 0x013b2108, 0x33200a88, 0x50058767, 0x363c0a5f, 0x21373637, 0x07062115, 0x26352115, 0x15211727, 0x36211716, - 0x16a83537, 0x30160202, 0xc0200484, 0xd04c0583, 0x46982005, 0x402008a0, 0x32082b45, 0x0f40fec0, 0x01e00101, 0x20fe100f, 0xc0010f01, 0x4370010f, - 0x078707d4, 0x46300121, 0x3027139c, 0x20200f01, 0x8290010f, 0x0f012331, 0x008200c0, 0x55000521, 0x08340703, 0x2a001d00, 0x40003700, 0x06250000, - 0x36171607, 0x13272637, 0x2514de4e, 0x26210706, 0xc3823527, 0x15171628, 0x21232635, 0x0c860722, 0x37870720, 0xc6840120, 0x9021c483, 0x05d74efe, - 0x1b121222, 0x8206e14e, 0x08e24509, 0x0f800129, 0xfe080801, 0x4e080880, 0x402005e7, 0x22059944, 0x88681602, 0x933820c7, 0x052046c7, 0x010f6029, - 0x9e600f01, 0x83a20202, 0x56a22108, 0x82081c63, 0x860620d7, 0x00802cd7, 0x00330028, 0x004f003f, 0x8287007c, 0x273423d9, 0x03843736, 0x5f333521, - 0x26250875, 0x07222327, 0x060d4c06, 0x4e06dc60, 0x262005fa, 0x33202d82, 0x2405d541, 0x3d362722, 0x370b8601, 0x26353435, 0x30333035, 0x35053331, - 0x36013f34, 0x17323337, 0x14011d16, 0x2b05436a, 0x2726013d, 0x14150706, 0x06171617, 0x14290582, 0x14070615, 0x26272617, 0x45048227, 0x012407ef, - 0x02200240, 0x38370282, 0x0114141f, 0x1f141401, 0x322a1ac4, 0x0c141518, 0x2802121f, 0x83683d29, 0x42282016, 0x2020090f, 0x05240a84, 0x80300904, - 0xb0300983, 0xfeb00101, 0x0c1f0c78, 0x0b113217, 0x0c08080c, 0xfc830382, 0x160e0f2c, 0x03270203, 0x15152104, 0x28839001, 0x04843820, 0x090a2824, - 0x03832914, 0x83040421, 0x2c5b836a, 0x0c0c011f, 0x241f3815, 0x27283b6c, 0x41148302, 0x975d0870, 0x130f2205, 0x2f08840c, 0x01020328, 0x176cc402, - 0x01133815, 0x54110b0c, 0x6e826882, 0x56833420, 0x13193433, 0x0b090913, 0x01010607, 0x0a0c2f12, 0x22181808, 0x0981415c, 0x310f7f41, 0x007f0050, - 0x0500008a, 0x36373633, 0x2f343537, 0x6a572601, 0x088a6305, 0x15143325, 0x86061716, 0x17162103, 0x26094a43, 0x14152733, 0x822b0617, 0x37363030, - 0x39303533, 0x14313201, 0x011d1407, 0x82272623, 0x36132810, 0x26273435, 0x83353427, 0x415b8207, 0x8a41077c, 0x37342e07, 0x16013b36, 0x1d16011f, - 0x06070601, 0x3545850f, 0x07061716, 0x68080123, 0x0228293d, 0x150b2012, 0x2a321814, 0x8a41c41a, 0x41382007, 0x0124059a, 0x101f1414, 0x3020e883, - 0x20230484, 0x85050409, 0x01012209, 0x2a1183b0, 0x0c048cb0, 0x0302130b, 0x830f0e16, 0x058541f6, 0x110b0c2c, 0x1f0c1732, 0x1515010c, 0x25837c21, - 0x2d058141, 0x28270220, 0x20246c3b, 0x0c0c1537, 0x84411f01, 0x04042507, 0x0a091429, 0x7a830383, 0x3c41b020, 0x0c502407, 0x83020f13, 0x0250250c, - 0x28020301, 0xfe310983, 0x160b0be2, 0x01081211, 0x0b060602, 0x13130909, 0x05824119, 0x2d058e41, 0x0c0b1154, 0x15381301, 0x19216c17, 0x3a840818, - 0x00233483, 0x56200006, 0x034306e3, 0x2201240c, 0x84272607, 0x35232303, 0x465d2726, 0x42152005, 0x1f2205b0, 0xde6a1601, 0x24188405, 0x16373607, - 0x23198217, 0x27352726, 0x14240a84, 0x012b2607, 0x232a0b86, 0x23062322, 0x31303530, 0x8c581335, 0x37342406, 0x55013b36, 0x2b28069e, 0x16070601, - 0x37323317, 0x05823782, 0x16333229, 0x06373217, 0x82070607, 0x844e8204, 0x7801214d, 0x21169742, 0x97422037, 0x00012157, 0x416a7643, 0x0343107f, - 0x35253006, 0x27262726, 0x010f2223, 0x1d060706, 0x61171601, 0x3525088b, 0x37363332, 0x21038616, 0x74413736, 0x07062a05, 0x07352726, 0x16373233, - 0x8230821d, 0x30232a0b, 0x31340139, 0x3b321732, 0x059c4101, 0x23262528, 0x07060722, 0x07832322, 0x21065743, 0xf2511716, 0x06072d05, 0x2722012b, - 0x36013d26, 0x3b36013f, 0x4f4e6c82, 0x05fe5c06, 0x42c00121, 0x1f210598, 0x36984238, 0x421e0121, 0xc8203298, 0x23057843, 0x15140c1f, 0x214e7843, - 0x78430b20, 0x06d74a0e, 0xc001002b, 0x26001500, 0x00004300, 0x0ce25b01, 0x23068e44, 0x07060727, 0x27055362, 0x17141733, 0x15013b16, 0x13251085, - 0x35333736, 0x08105c23, 0x23302d85, 0x3ef70107, 0x1ba40d09, 0x01011212, 0xc01b1213, 0x092f0883, 0xc10f0127, 0x0f01010f, 0x09090180, 0x85bf2f0e, - 0x0f01230d, 0x26846060, 0x26861220, 0x01012f26, 0x01093e79, 0xff210e82, 0x23188700, 0xf9090de3, 0x01293983, 0x30020e00, 0xc009090e, 0x200d8580, - 0x05c3470f, 0x20212889, 0x06f75120, 0x01c0012d, 0x001100a0, 0x002c0027, 0x51000041, 0x1621059f, 0x09076d17, 0xe38c3720, 0x72452120, 0x25272605, - 0x35231533, 0x08874d01, 0x17161522, 0x3525cf82, 0x011d1617, 0x878a87e0, 0x54d12407, 0x48fc140d, 0x4020086e, 0x0f280983, 0x9090cffe, 0x0f011001, - 0x2805774d, 0xc0160210, 0x024e0216, 0x0bde68c0, 0x7f222783, 0xb1470d54, 0x14fc270d, 0x5050310f, 0xd484b0fe, 0x010f402d, 0x02021668, 0x024e6416, - 0x6a00fa02, 0xcf83087b, 0x22001528, 0x16010000, 0xe04f3117, 0x15212410, 0x59070621, 0x46480893, 0x0a475d09, 0x210ce658, 0x818da001, 0x2005ab4d, - 0x20ba8730, 0x21848201, 0x7c850300, 0x00800128, 0x00240015, 0xcf510032, 0x16212106, 0x21050864, 0xdd560706, 0x15332a05, 0x32331617, 0x2635013f, - 0x21838227, 0xa949021d, 0x06072605, 0x012f2223, 0x8a658300, 0x8380208d, 0xad3026fe, 0x11131310, 0x416b82ac, 0x058205c5, 0x241e8e25, 0x858d1f24, - 0x0df94184, 0x16000137, 0x8e0c0c8e, 0x02020e17, 0xac54010e, 0x0f01010f, 0x171775ac, 0x063f4e75, 0x4202c021, 0x532507b7, 0x00005c00, 0x06d54125, - 0x6d011d21, 0x352108f9, 0x0ab94234, 0xb9421520, 0x26032805, 0x2b263127, 0x44272601, 0xbd420515, 0x4235200a, 0x288506e2, 0x3637362c, 0x2627013b, - 0x16373627, 0xd2420617, 0x1ba32305, 0xa1831213, 0x2008d142, 0x339283c0, 0x0e090980, 0x11069230, 0x03291710, 0x16160f0f, 0x29030f0f, 0x21071b42, - 0x21836060, 0x21821020, 0x160d3d26, 0x9e3e1b15, 0x03830e83, 0xe542f920, 0x581c2006, 0x1b2005de, 0x2b09e442, 0x0e30010f, 0x01c00909, 0x0e0d1560, - 0x0e280282, 0x1201150d, 0xf0fe1b12, 0x30245283, 0x10010f01, 0x20820282, 0x0d0d1625, 0x850f0118, 0x0024084e, 0x00040000, 0x01c0ff10, 0x00c00170, - 0x002d000e, 0x00560044, 0x1f141700, 0x33171601, 0x36013f36, 0x15233537, 0x2a099c59, 0x31141716, 0x30333130, 0x82353031, 0x543720e4, 0x1e8505a7, - 0x4d512320, 0x093e5105, 0x59062721, 0x288505d2, 0x3c082a83, 0x0a120570, 0x0a103e10, 0xa0010412, 0x31304e50, 0x0d2b0101, 0xa008100f, 0x0d0f1008, - 0x3202012b, 0x0c604b31, 0x5e0b0d0d, 0x0c0d0d0b, 0x2101011f, 0x24373c21, 0x1f010125, 0x16172270, 0x22b18401, 0x83140e0d, 0x0a063ab7, 0x010d1a08, - 0x081a0d01, 0x0127270a, 0x333203c6, 0x0f304447, 0x01191a19, 0x3d048201, 0x4a452f0f, 0xfe023132, 0x14140efc, 0x14141616, 0x3030250e, 0x01022627, - 0x30362424, 0xd882b425, 0x820f2221, 0x0e14224d, 0x4453840d, 0x012105c7, 0x32ff82c0, 0x00360024, 0x01000040, 0x16171615, 0x1f161517, 0x42071601, - 0x3f2105ad, 0x069e6d01, 0x2008275d, 0x29198231, 0x15070631, 0x26210714, 0xfa83013d, 0x4a132321, 0x352606a4, 0x38000133, 0xdc822423, 0x06090f31, - 0x70fe0f07, 0x0906070f, 0x01012b0f, 0x56382324, 0x22080583, 0x1d1e2c28, 0x30012801, 0x1e1d0128, 0x1348102c, 0x131a1a13, 0xa0018013, 0x29290a12, - 0x3746213a, 0x820d0c13, 0x0d0d2d9b, 0x4637130c, 0x29293a21, 0x090e120a, 0x0e210082, 0x252f8340, 0x3d3d4a21, 0x4183214a, 0x82a0fe21, 0x553c8236, - 0x1c280c47, 0x55003e00, 0x81006d00, 0x3622c782, 0xc7823337, 0x06230383, 0x82152307, 0x27262303, 0x03822335, 0x35201782, 0x2005b15e, 0x441c8215, - 0x33231014, 0x82373635, 0x11172222, 0x82f58233, 0x830b822f, 0x23068336, 0x05232726, 0x820aef6a, 0x16152952, 0x23113317, 0x13310706, 0x16213685, - 0x20728317, 0x22288211, 0x82110706, 0x100f2ae4, 0x0f18010f, 0x180f0101, 0x250a8901, 0x14141f70, 0x154a5801, 0x10fe2107, 0x58290987, 0x1f141401, - 0x165848b0, 0x05dc4902, 0x02240585, 0x50fe5816, 0x2282108e, 0x0140a022, 0x27069876, 0xb0160240, 0x60010216, 0x7185668f, 0x54836020, 0x04830820, - 0x87e0fe21, 0x20012168, 0x08200983, 0x80220483, 0x144db0fe, 0x02302906, 0x28021616, 0x28180216, 0x0d840883, 0x56826820, 0x16025029, 0x1440c8fe, - 0x83010d0e, 0x0140246f, 0x82021688, 0x00782311, 0x67790003, 0x00182707, 0x003b002e, 0x25413700, 0x37362107, 0x41057641, 0x26220575, 0x0b5f012f, - 0x40c82121, 0xc8825583, 0x89021621, 0x53c82009, 0x0983090e, 0x26059445, 0x010f0130, 0x45010f40, 0x68200572, 0x3b84318e, 0x7855f820, 0x0fac5e11, - 0xff590220, 0x5a00200c, 0x02212cbb, 0x17795900, 0x20117960, 0x17f559c0, 0x2010de60, 0x060b5800, 0xc0010036, 0x2b001900, 0x58003d00, 0x00006a00, - 0x31373625, 0x17363736, 0x7905f050, 0x27290be2, 0x06310714, 0x26272223, 0x251f8227, 0x16173233, 0x2b833315, 0x8308c560, 0x06172119, 0x4406d35a, - 0x3623099b, 0x83171637, 0x11775c01, 0x00012908, 0x0b14131c, 0x0d0f1111, 0x281d1c11, 0x111c1d28, 0x1111100e, 0x1c13140b, 0x0e090930, 0x0109090d, - 0x0d090901, 0x6009090e, 0x15860786, 0x0e41d020, 0x01602929, 0x0f0d0a0a, 0x1212100e, 0x28057e45, 0x0e101212, 0x0a0a0d0f, 0x0cdb7101, 0x200bde60, - 0x29404130, 0xd3410520, 0x0a3f4108, 0x37263722, 0x20061e41, 0x06477b17, 0x07062722, 0x27220182, 0x3f413731, 0x1490394f, 0x22230e05, 0x23222c2c, - 0x1514050e, 0x1615070a, 0x15161f1f, 0x40150a07, 0x26473e41, 0x25150a31, 0x82161615, 0x050a2204, 0x08f15f14, 0x62bf0521, 0x3c41171b, 0x0843452a, - 0xc001002d, 0x23001100, 0x49002e00, 0x5b005b00, 0x534205f9, 0x4133200c, 0x07201037, 0x4a099052, 0x045e0530, 0x11ac7b14, 0x47429020, 0x41e0200d, - 0x28200d26, 0x20098156, 0x296142b8, 0x0b41f020, 0x08e87417, 0x640c6564, 0x00231c71, 0x820d0000, 0x02003e03, 0x00800140, 0x00210014, 0x003b002e, - 0x00550048, 0x006f0062, 0x0089007c, 0x00a30096, 0x163b7fb0, 0x27089558, 0x11171621, 0x07062325, 0x2806144b, 0x33172726, 0x26353736, 0x21128527, - 0x0c97013b, 0x338b3720, 0x40bf0520, 0x408b0720, 0x64000221, 0x3a640526, 0x6410200d, 0x0f2b062e, 0x010fc001, 0x0b187cfe, 0x840b0101, 0x89382004, - 0x9450200a, 0x8968200a, 0xc0fe2115, 0x3c2537b5, 0x01010fe0, 0x2104840f, 0xca4a8001, 0x121b230f, 0x1b4c0112, 0x00012105, 0xff222683, 0x9a86e800, - 0x30206c82, 0x09930a89, 0x50201e8a, 0x582334b3, 0x83100f01, 0x4c048273, 0xdb670653, 0x00222205, 0x243b5c2b, 0x17160328, 0x11373621, 0x145c1121, - 0x05d5461e, 0x5ca0fe21, 0xa1542100, 0x00012205, 0x208f82ff, 0x08f34403, 0x8f821020, 0x91823d20, 0x631f3621, 0x2725067e, 0x34013d26, 0x2d7a6237, - 0x0d0cbc2c, 0x900b0b90, 0x0c0c0c0d, 0x74434401, 0x2d013129, 0x07580807, 0x58080d0d, 0x0e070606, 0x6d070db1, 0x2029b545, 0x0a474800, 0x20000a27, - 0x00002d00, 0x094f4425, 0x4d05fe46, 0xb14d103a, 0x06212808, 0x16380107, 0x53160202, 0xfe200537, 0x21213148, 0xa35a02d8, 0x48882006, 0x9b8b2125, - 0x2f001926, 0x00003c00, 0x6019ff62, 0xaa9c05f2, 0xf562d420, 0x48d42013, 0xeb6220e4, 0xa2f42012, 0x05e348bc, 0xbf014030, 0x45002200, 0x27010000, - 0x1f060726, 0x05822301, 0x2c075b79, 0x013b3637, 0x16170607, 0x013f3217, 0x05f04d36, 0x23061526, 0x11272621, 0x36251882, 0x23272637, 0x14441822, - 0x3523080c, 0x39022726, 0x0e101290, 0x3ea4640f, 0x02012c2d, 0x01021616, 0xa42c1d1e, 0x070e0f64, 0x9007090a, 0x82d10708, 0xfe072d11, 0x010107f0, - 0x02163807, 0x18381602, 0x22053d43, 0x83100118, 0x02350809, 0x87310116, 0x10120e0e, 0x2d2c025f, 0x01165740, 0x2c581501, 0x105f1e1e, 0x07010711, - 0x0a0a0887, 0x1502f107, 0x0601072f, 0x02070e01, 0x10021515, 0xf1fe1710, 0x22428517, 0x82182f17, 0x000021d2, 0x2a09bb63, 0x00240011, 0x0051003f, - 0x7f072500, 0xc68205af, 0x0f161728, 0x31070601, 0x7c4d2227, 0x46441805, 0x2d094309, 0x9133012d, 0x04090a10, 0x910d0538, 0x830a0a0f, 0x49342007, - 0x0a250801, 0x0e0a0909, 0x12b36a01, 0x2d177f6a, 0x0a04387b, 0x0d910f0a, 0x09043805, 0x0782100a, 0x91696520, 0x2a2c430c, 0x2009734b, 0x29fb820f, - 0x01000031, 0x06070623, 0xe682011f, 0x2723fb82, 0x59372726, 0x11381956, 0x16213736, 0x40011117, 0x04080fc0, 0x0a086009, 0x0a60080a, 0x400f0706, - 0x420bec50, 0x8d510757, 0x40013008, 0x0001010f, 0x0b0f0d01, 0x68080868, 0x510d0f0b, 0x94441502, 0x06984b06, 0x860ad343, 0x26132fa7, 0x010f2223, - 0x17161706, 0x36373633, 0xa7a1012f, 0xa084f220, 0x0705092a, 0x070fc00e, 0x8e5f0a06, 0x1020a6a1, 0xad84a186, 0xa9519020, 0x93a68e13, 0x06072ba7, - 0x17161507, 0x36013f16, 0xa7a33435, 0x0f0bc824, 0x7184010d, 0xb8207d82, 0x3222a4a1, 0xd282060a, 0x06061123, 0x0582410a, 0xa7a36e20, 0x6a000221, - 0x1623079f, 0x52002700, 0x33250651, 0x16011f32, 0x0afd5b15, 0x23110128, 0x3d262722, 0xd3522301, 0x83002007, 0x1aa6245b, 0x47135a13, 0x502b0a52, - 0x09090e50, 0x01010fa0, 0x8200010f, 0x1b802405, 0x82011212, 0xfe1b2221, 0x089653db, 0x80fe8028, 0x09092001, 0x6c52500e, 0x82002007, 0x88042000, - 0x00152683, 0x00310026, 0x0ff1543c, 0x37362128, 0x34113736, 0x08540327, 0x17142d09, 0x11013b16, 0x33171627, 0x27263736, 0x17209782, 0x0d860382, - 0x4a6d0125, 0x88b51b13, 0x84002073, 0x011d2487, 0x8200ff0f, 0xa00f2195, 0x4f247e82, 0x901602ef, 0x2006064a, 0x240887a8, 0x63011602, 0x20cf844a, - 0x83ba84fe, 0x350125d9, 0x9dfe131b, 0x8022d284, 0xdf83020e, 0xa8e0fe22, 0x6007f05b, 0xfb700895, 0x00a02d0a, 0x00800014, 0x22231300, 0x011d0607, - 0x322ca584, 0x013d3637, 0x27262734, 0x31272605, 0xfd59ab82, 0x07062405, 0x66300706, 0xee6705a3, 0x05b95e05, 0x6e163321, 0x0721052b, 0x82158206, - 0x05fd670c, 0x21050667, 0x1c820706, 0xf06f1720, 0x15142805, 0x22230706, 0x8226012f, 0x065352f6, 0x34204084, 0x21062b5c, 0xaf4a4060, 0x08068605, - 0x01a0013f, 0x641c1313, 0x2112130f, 0x070f0e22, 0x090c0c0e, 0x0816020d, 0x0e0e1f07, 0x05050506, 0x05050c0b, 0x030e0606, 0x118a1503, 0x14110102, - 0x05050102, 0x06070e02, 0x03010105, 0x0c020102, 0x3404820e, 0x20283411, 0x16080625, 0x2d240a02, 0x131b3438, 0x011c0312, 0x2a028201, 0x0101011d, - 0xdf0d0909, 0x8209080e, 0xde320806, 0x0109090d, 0x13131c24, 0x1b142701, 0x01011514, 0x22151312, 0x0806100f, 0x0502160e, 0x1219181a, 0x0108080e, - 0x06070706, 0x06181514, 0x03011606, 0x75821011, 0x050b2f08, 0x03100904, 0x0c040502, 0x06040408, 0x1304040e, 0x02020203, 0x1b180211, 0x0b160205, - 0x01201c08, 0x1a121101, 0x04052314, 0x08082314, 0x6b722414, 0x00a02d09, 0x007b0014, 0x34353700, 0x012b2627, 0x28097441, 0x35363716, 0x26353625, - 0x05bb6627, 0x23272627, 0x06010f06, 0x05914615, 0x16013b25, 0x83151417, 0x1716230d, 0x56410706, 0x86118205, 0x07062609, 0x14070623, 0x08884117, - 0x83262721, 0x83138701, 0x36172117, 0x34225d82, 0x06823327, 0x27263726, 0x0e090980, 0x240a6d41, 0x01016201, 0x3602821c, 0x1b131203, 0x242d3834, - 0x0816020a, 0x28202506, 0x01021134, 0x820c0e02, 0x033a0804, 0x06060101, 0x05010e07, 0x14020105, 0x11020111, 0x0303158a, 0x0506060e, 0x04090c05, - 0x18130705, 0x02160f17, 0x0c0b1609, 0x0e0e0907, 0x13122120, 0x131c640f, 0x1d010113, 0x6441e0a0, 0x82df2005, 0x012e0806, 0x3b0e0809, 0x14230808, - 0x14230504, 0x0111121a, 0x081c2001, 0x0502160b, 0x1102181b, 0x03020202, 0x0e040413, 0x08040406, 0x0106060b, 0x58820e04, 0x03150b24, 0x1a821002, - 0x06061523, 0x08fd821a, 0x06070722, 0x04050101, 0x1a1a3014, 0x080b1602, 0x12141412, 0x01100f19, 0x1b141501, 0x13012615, 0x14231d13, 0x08089b43, - 0xbf01ff33, 0x43003200, 0x67005500, 0x27250000, 0x26273637, 0x2726022f, 0x27010f26, 0x0f060726, 0x06070602, 0x0607011f, 0x021f1617, 0x3f161716, - 0x33161701, 0x05337332, 0x0f273629, 0x2f072702, 0x82273701, 0x82372015, 0x54172024, 0xfa5707bd, 0x6b152009, 0x01391005, 0x0b3030f9, 0x53140807, - 0x1312050e, 0x11454511, 0x0e051213, 0x07081453, 0x23178d0b, 0x07080b0a, 0x64271988, 0x12535312, 0x873a3a64, 0x30c92407, 0x18011f1f, 0x21099440, - 0x3158301f, 0x8b7b200f, 0x2f2f2158, 0x2f237095, 0x8703072f, 0x850e2088, 0x5254215e, 0x52220785, 0x5e83c454, 0x1f276684, 0x202e2f20, 0x58b00120, - 0x1121055a, 0x20078201, 0x206f831a, 0x24008200, 0xff200002, 0x2b1a82e0, 0x002800a0, 0x2500003a, 0x23062322, 0x22055964, 0x42363736, 0x2221065d, - 0x09884207, 0x84373221, 0x7a232017, 0xa2420913, 0x23063805, 0x0101a601, 0x31491111, 0x17010232, 0x01062a17, 0x0c090701, 0x7e3f090b, 0x1e2e0511, - 0x3f32331d, 0x202d2d34, 0x06030304, 0x24834ba6, 0x3420203d, 0x2b010121, 0x201e442b, 0x32010344, 0x28304b31, 0x07041829, 0x01020206, 0x821e1e01, - 0x323f2d2e, 0x011e1d33, 0x06271616, 0x02340506, 0x3a2a2082, 0x35132d2c, 0x39394c41, 0xc3460b17, 0x0014240a, 0x4e310021, 0x0329238f, 0x06010f26, - 0x011f1415, 0x24c38216, 0x01272635, 0x20b74680, 0x00487e20, 0x48012009, 0x01212403, 0x07e14616, 0x07060a27, 0x070fc00f, 0x20008200, 0x08af4c03, - 0x2c001124, 0x596c3e00, 0x52212013, 0xa0282bb3, 0x291b1b01, 0x011b1b29, 0x60200788, 0x2029b64c, 0x82388cc0, 0x29884948, 0x0b470620, 0x000c2d08, - 0x00260019, 0x00490033, 0x13000061, 0x25057156, 0x26230706, 0xe15e3527, 0x066f5605, 0x19980720, 0x5619e24c, 0x33740b50, 0x01582507, 0x010f300f, - 0xc0200484, 0x0c820786, 0x1594c020, 0x01e8fe27, 0x011b1212, 0x07504300, 0x0984ff20, 0x0f013023, 0x07385650, 0x4d4f5020, 0x20058205, 0x204c8958, - 0x204c8910, 0x64159490, 0x80470937, 0xfe802409, 0x56010f80, 0x5b720a24, 0x000f2105, 0x07200082, 0x34082b41, 0x002f0014, 0x004b0043, 0x0065005c, - 0x0500007b, 0x33353736, 0x081c7515, 0x16260b82, 0x22032117, 0xc2483127, 0x23152105, 0x29058757, 0x16011f32, 0x3523011d, 0x14770723, 0x5e232008, - 0x362b059d, 0x26173337, 0x33152327, 0x82013f36, 0x1716230b, 0x4e841716, 0x27262323, 0x07655135, 0x18371521, 0x210ca442, 0xff570706, 0x40012105, - 0x290c035d, 0x010f0130, 0x090e4000, 0x1686a009, 0x131aa628, 0x5030135a, 0x7b4c18a8, 0x08182f05, 0x010f0f01, 0x18180f01, 0x08081602, 0x2f820216, - 0x80531820, 0x0f182407, 0x83082001, 0x9008211c, 0x20210583, 0x85058420, 0x1030252f, 0x20200f01, 0x84078041, 0x4930201a, 0x80200557, 0x26087749, - 0x01402025, 0x8318100f, 0x233a8469, 0x38010f80, 0x02226182, 0x48822816, 0x140e0d22, 0x24055541, 0x0170800f, 0x21b4820f, 0x59838060, 0x04832020, - 0x1f823020, 0x2d820f20, 0x20075743, 0x05bf7401, 0x49128b5e, 0x26221999, 0x1d460627, 0x011f2705, 0x3f361716, 0x05841701, 0x26273622, 0xa0491582, - 0x07783c22, 0x18071010, 0x1416091a, 0x11063005, 0x19190710, 0x06111007, 0x16140530, 0x49181a09, 0xc82b25a7, 0x0f01010f, 0x05144e46, 0x83901609, - 0x4848210a, 0x90260583, 0x14050916, 0x3344464e, 0x20dbb308, 0x05f14e07, 0x5d060721, 0x05830568, 0x2f363724, 0xdd823701, 0xdba20720, 0x25256a34, - 0x0c10130f, 0x100c2d2d, 0x080b0707, 0x0b082526, 0x0f850708, 0xa50f1321, 0x30d730db, 0x0f0c1030, 0x13393913, 0x3009050f, 0x85050930, 0x100c210b, - 0x0420d783, 0x200c4f4b, 0x06a34f39, 0x4b10247c, 0xcc53134f, 0x37362205, 0x8e481835, 0x23172208, 0x08a55535, 0x8729dba2, 0x02010f48, 0x2c021616, - 0x28048222, 0x1f161704, 0x0c2c2c04, 0x20008208, 0x23d8a50c, 0xa80f01e0, 0x2805fd7c, 0x1e231718, 0x68011313, 0x05a56438, 0x2210274c, 0x4c4e003c, - 0xda762927, 0x17063208, 0x32013b16, 0x012f3637, 0x32272326, 0x35363137, 0x05745e34, 0x17141524, 0xe0a23316, 0x0407782f, 0x07040c28, 0x042f0408, - 0xc4070404, 0x23058208, 0x5708034b, 0xa50b1d56, 0x069c29e9, 0x0606123c, 0x07080746, 0x70220282, 0x54180406, 0x00200c6a, 0x2a090746, 0x002a0015, - 0x0034002f, 0xa24b0040, 0x353322ef, 0x052a5f33, 0x70031121, 0x35230748, 0x82072315, 0x361722f6, 0x20f58237, 0x05765c07, 0x06171622, 0x221ea942, - 0x82304030, 0x9f4f2291, 0x2f008340, 0x1213051f, 0x12131f1f, 0x20101f05, 0x0f01010f, 0xe69f0484, 0x4d101021, 0x0124052f, 0x40202060, 0x752a0282, - 0x0116161e, 0x1e161601, 0xc3449075, 0x010f2105, 0x43067351, 0x39220883, 0xe3a25800, 0xfb4d1420, 0x07795605, 0x6b481720, 0x07262206, 0x4be68317, - 0x302105d2, 0x240b8231, 0x30373233, 0x08cc7237, 0xa020f09e, 0xa32dee83, 0x010b2c24, 0x242c0b01, 0x01060706, 0x23048201, 0x0209093f, 0x8205a05a, - 0x06052c06, 0x05010507, 0x02010b0c, 0x82020d0d, 0x242e4e06, 0x0124bc3a, 0x010b380b, 0x03030525, 0x03088808, 0x0b010603, 0x0e0e010b, 0x0f0e1718, - 0x052c0982, 0x13060105, 0x14221e13, 0x0a0a0114, 0x20106f45, 0x290d4148, 0x31273422, 0x260c004d, 0x3d363732, 0x4e161701, 0x0f22067b, 0xdb423501, - 0x095f2422, 0x42600e09, 0x068305c9, 0x06072c23, 0x20028207, 0x1fe8412c, 0x2005e641, 0x823889a0, 0x1f112746, 0x08040304, 0x05820866, 0x5b701f20, - 0x01c02b07, 0x00c00180, 0x00260010, 0xd9820037, 0x0f263723, 0x05615201, 0x64063c45, 0xf44f1202, 0x066b4c14, 0x3f32333a, 0x012f3601, 0x0ea20726, - 0x0c0c300e, 0x08080630, 0x220c0c06, 0xcb0b0b22, 0x2020ff4f, 0x21288371, 0x32830c0c, 0x0e223a83, 0x4082be0e, 0x06284682, 0x220e0e06, 0xa50e0e22, - 0x20230850, 0x222b85be, 0x84300606, 0x05b34380, 0x82000221, 0x05bb68e3, 0x56004b30, 0x00006800, 0x06071625, 0x0706012f, 0x4c542726, 0x27262205, - 0x3ae98236, 0x011f3637, 0x17163736, 0x16173637, 0x1716010f, 0x27170706, 0x27222306, 0x82171607, 0x8237201e, 0x1516232c, 0x0b820714, 0x82273121, - 0x3336231a, 0x13821732, 0x26033125, 0x82373435, 0x17162210, 0x1851823f, 0x380e3347, 0x0f0fd001, 0x440c1110, 0x0c445f5f, 0x0e0e1111, 0x0202390c, - 0x0e0e0c39, 0x23138711, 0x0b0f0f10, 0x0b351383, 0x1b1b169f, 0x4b365016, 0x9f50364b, 0x0d502c01, 0x012c500d, 0x860c82d0, 0x84532016, 0x20188210, - 0x080b5c53, 0x2106a45f, 0x43881111, 0x5c206b9d, 0x56894288, 0x6a87d020, 0x89fffe21, 0x7c61207f, 0x13440f25, 0x01ff3707, 0x001a00c0, 0x0022001e, - 0x01000026, 0x06010726, 0x011f1615, 0x73471415, 0x375d080b, 0x0f273613, 0x03252701, 0x37071735, 0x01033727, 0xfe0d0df6, 0x0e010c30, 0x05050d99, - 0x636f0607, 0x06060504, 0x0340020a, 0x68bb850c, 0x2f9a2301, 0xe1b1be2f, 0x08bc0130, 0x08f8fe07, 0x40060f0e, 0x03070e72, 0x02294704, 0x010b0603, - 0x73090fb0, 0xfea62bd1, 0x1e1331bb, 0xfefa4a16, 0x092348bc, 0x052c8b83, 0x37002000, 0x17370000, 0x07273733, 0x5e088e5c, 0xb26305f3, 0x27262309, - 0x6a652713, 0x26073705, 0x36273727, 0x16371737, 0x06170717, 0x601fb107, 0x4e4f4e1e, 0x40183947, 0xec740995, 0xb4483d0a, 0x17161e68, 0x681e1617, - 0x21550517, 0x53532a1e, 0x55211e2a, 0x5bdb1606, 0xe539395b, 0x3e10794c, 0x3a3a4747, 0xfe012223, 0x05630197, 0x26016305, 0x22623c2f, 0x123e3f13, - 0x2f3c6222, 0x6e070026, 0xa02e0647, 0x2e001e00, 0x44003900, 0x5a004f00, 0xbf4d6f00, 0x82062008, 0x7f11209a, 0x5b180639, 0x13280b95, 0x06310714, - 0x35362123, 0x2006d055, 0x09525327, 0x0a893320, 0x15930720, 0x52012f21, 0x232612f0, 0xd0fec801, 0x10481018, 0x02240805, 0x01021616, 0x011f1414, - 0x19192560, 0x100f0101, 0x0b0c0818, 0x04e4fe11, 0x30010701, 0x40c80107, 0x16020216, 0x90200484, 0x08210a9f, 0x056a44c0, 0x01210686, 0x214d83a0, - 0x4083c0fe, 0x83280121, 0xd8fe2b05, 0x0114141f, 0x25191901, 0x7f833001, 0x1198fe2e, 0x0d0b0c0b, 0x01074001, 0xd0fe0701, 0x6c08b15d, 0x897008bd, - 0x51f0200f, 0xdb660dd2, 0x01802f08, 0x002100c0, 0x00400030, 0x1300004a, 0xb5643736, 0x011d2207, 0x08d86416, 0x50791720, 0x07c06409, 0x0607222b, - 0x35073107, 0x33070617, 0x0e581817, 0x17312107, 0x2208d564, 0x474424b8, 0xdc6405fc, 0x03072206, 0x09237958, 0xe526913c, 0x1e1d0113, 0x181d102c, - 0x2f3e0d18, 0x3db12007, 0x070fe2fe, 0x2b0f0906, 0xe064e001, 0x39492207, 0x06c9640c, 0x2308e964, 0x0f450c0b, 0x3308fb78, 0x2cb31d72, 0x1e2c2132, - 0x0f0e011d, 0x250b5517, 0x0130323b, 0x20050565, 0x06e964d7, 0xb7620320, 0x775a200c, 0xa6690ce1, 0x19b57c07, 0x3930033c, 0x32313001, 0x36371617, - 0x30272627, 0x06070631, 0x16171415, 0x30313017, 0x13833631, 0x23060724, 0x42183130, 0xb27c07d3, 0x21013c29, 0x0e111117, 0x3435250e, 0x26252526, - 0x0e253534, 0x1711110e, 0x17182021, 0x7c201817, 0x012e2ba8, 0x0d0e1720, 0x01251111, 0x33272501, 0x07832733, 0x0d11112a, 0x1917170e, 0x17192020, - 0x260c9b7c, 0x00210014, 0x50630042, 0x252023ed, 0x2321ef84, 0x48ed8222, 0xfd82056d, 0xe787e982, 0x33173222, 0x305f209f, 0x10dd2b23, 0x1d0f0f11, - 0x1c1d2726, 0x06831d01, 0x110e0e27, 0x13140e11, 0x2300820e, 0xc00f1314, 0x53591d9c, 0x83c22023, 0x1c1c2450, 0x8228281c, 0x845a8204, 0x83142058, - 0x93688205, 0x82002017, 0x00043600, 0x02e0ff20, 0x00a00120, 0x002d0015, 0x005f0052, 0x37341300, 0x054d6f31, 0x14011d22, 0x7d08c36d, 0x352005cf, - 0x6d086d72, 0x332a06da, 0x36272627, 0x16373637, 0x38642117, 0x07062205, 0x05b94911, 0x21272624, 0x1e530706, 0x17112105, 0x0cd54418, 0x0e090923, - 0x05f94380, 0xa0240683, 0x0112121b, 0x83067755, 0xf020210f, 0x2605d54e, 0x58010f15, 0x6814160e, 0x01290684, 0x16140e0d, 0x0fa8fe0e, 0x2e118515, - 0x01081530, 0x15150846, 0x08bafe08, 0x48200115, 0x60260cb3, 0x121201a0, 0x0449201b, 0xcc202109, 0x5a873687, 0x8fe8fe21, 0x1801245a, 0x83fafe09, - 0x06012150, 0x00200583, 0x0a200082, 0x22089778, 0x61470036, 0x7f3106d5, 0xc300b600, 0xdf00d000, 0x32130000, 0x17163117, 0x22fd8233, 0x56171633, - 0x15200576, 0x15290882, 0x07060706, 0x27262722, 0x21088223, 0x08822623, 0x43533420, 0x35262c05, 0x37363736, 0x37361531, 0x82222726, 0x3130241c, - 0x82143130, 0x83252031, 0x1716280c, 0x35343736, 0x61312726, 0x17200c87, 0x06241283, 0x32171607, 0x25226682, 0x2e830706, 0x31323523, 0x250d8216, - 0x26252726, 0x7da73527, 0x5c623320, 0x86232008, 0x2070857d, 0x215a8505, 0x5b832726, 0x65830520, 0x31353422, 0x163a0d83, 0x14403117, 0xca071010, - 0x14101007, 0x0112121b, 0x12120b0b, 0x12010b0b, 0x16961b12, 0x010f2308, 0x01020c01, 0x0d03010f, 0x02014001, 0x0f01010c, 0x0f01030d, 0x190aca3b, - 0x09ca0a19, 0x4b091a1a, 0x23870d03, 0x83b0fe21, 0x8201201b, 0x82012031, 0x08972331, 0x66a1450f, 0x46863020, 0x82792e21, 0x215f8632, 0x0b89a0fe, - 0x854d0121, 0x2163837d, 0xae8dc001, 0x5e956a20, 0x50201688, 0x0224ac85, 0x20010c01, 0x2823a589, 0x836a0a19, 0x0a6a23b8, 0xd189c819, 0xe6851020, - 0xe8820120, 0x18010f25, 0x41100e12, 0x67960a16, 0x86252521, 0x0f182146, 0x41833584, 0x0a89e020, 0xc4891020, 0x240aab55, 0x00280015, 0x0cbd4432, - 0x2705c552, 0x26272635, 0x27260127, 0x3105dc47, 0x07062315, 0x23150706, 0x06252726, 0x37363507, 0xff820633, 0x2d0aac55, 0x381c28e8, 0x1201011b, - 0xb5fe1b12, 0x43620104, 0x18583105, 0xc0010f10, 0x15010209, 0x07010f0b, 0x380b0257, 0x2b065e44, 0x12121cc1, 0x381b0101, 0x1be8271d, 0xfe260982, - 0x01090275, 0x3582103f, 0x0f01c030, 0x01581810, 0x020b0904, 0x0f010757, 0xdb70380b, 0x821c200a, 0x003f25a5, 0x36331700, 0x8207ac53, 0x2726218c, - 0x8d828b82, 0x15239e83, 0x18131716, 0x2009cb4a, 0x85af8315, 0x0ce76421, 0x53e04021, 0x10700658, 0x40402108, 0x0f21ca82, 0x88bb8360, 0x83088413, - 0x060a642a, 0x0f011023, 0x089b7840, 0x30201c84, 0x90201985, 0x3a8dc083, 0x1985f020, 0x68820f20, 0xbf850020, 0x01800125, 0x822700c0, 0x003b26bf, - 0x37361300, 0x05085421, 0x010f0623, 0x079e6a17, 0x27262122, 0x3524c582, 0x27013f36, 0x232ed282, 0x13312726, 0x012f2633, 0x06072207, 0x32823107, - 0x15233536, 0x00331714, 0x50011602, 0x16020216, 0x522a0208, 0x08022a52, 0xfe210b83, 0x251184b0, 0x51512c01, 0x1182012c, 0x05b86431, 0x01515205, - 0xb8030601, 0x14e00113, 0x5ca801b8, 0x1327057f, 0x52512e3e, 0x48133f2c, 0x132607bb, 0x51522c3f, 0x0f823e2e, 0x0798fe31, 0x01525205, 0x00010605, - 0x1313221b, 0x8b001b22, 0x002627b7, 0x003a0030, 0xb4a20100, 0x0320da82, 0x1522b082, 0xbb823533, 0x36373523, 0x22b68237, 0x71011f16, 0xb39b050e, - 0xa829d783, 0xe0011e51, 0x52521d01, 0x2306821d, 0xc001511e, 0xb499a883, 0xfe021634, 0x2b1e52de, 0x1e2b1313, 0x1f514452, 0x2b14142b, 0xa682511f, - 0x20080f76, 0x270c826b, 0x22232726, 0x012b2607, 0x27200482, 0x8305c042, 0x1714219e, 0x445d9482, 0x013d2c05, 0x2f222722, 0x35272601, 0x82013f34, - 0x24b28212, 0x16333736, 0x201d8417, 0x82c18234, 0x1716230b, 0x56743736, 0x30172205, 0x08974631, 0x22840720, 0x673d3621, 0x21080536, 0x79012726, - 0x060d2315, 0x0e181305, 0x22120606, 0x12121b10, 0x011e2101, 0x23150c0c, 0x070a1502, 0x00820108, 0x01133824, 0xca50110f, 0x0f103805, 0x0b0e0201, - 0x09040404, 0x04040f0e, 0x0304050b, 0x04120d08, 0x820f0d04, 0x0d0d222a, 0x08328416, 0x01012f2e, 0x011f1314, 0x01011b7c, 0x011a010f, 0x1b121201, - 0x291b1d32, 0x1415184f, 0x1665140c, 0x0a070702, 0x1f010182, 0x134f170c, 0x0f2c100c, 0x90202582, 0x5a820483, 0x04020a26, 0x0a010105, 0x022e7482, - 0x0c0d0203, 0x0b070801, 0x16161b82, 0x3484840d, 0x412b6c3a, 0x15141f82, 0x00020002, 0x01c0ff00, 0x00c001e0, 0x0069002e, 0x07220100, 0x24055071, - 0x07062726, 0x052e4126, 0x3023262e, 0x06313031, 0x14070607, 0x1716011f, 0x220b3977, 0x82070617, 0x26232418, 0x4a26012f, 0x208205d6, 0x37323322, - 0x55057475, 0x372305bc, 0x82151716, 0x86138909, 0x01440809, 0x07060698, 0x0a181213, 0x29291409, 0x1e0a0914, 0x08011415, 0x17162208, 0x1e521501, - 0x212c2727, 0x02363751, 0x1f141401, 0x29280218, 0x3045223c, 0x0a0b0950, 0x1b0a0d0a, 0x01070303, 0x01161502, 0x010e0e04, 0x0f200886, 0x18831088, - 0x01700125, 0x780e0d16, 0x7a2109dc, 0x08b58202, 0x181f2226, 0x11112057, 0x51373602, 0x14141fa8, 0x293df001, 0x32010228, 0x100d0a56, 0x1d0a0708, - 0x16c90801, 0x98160202, 0x0d214982, 0x200983b9, 0x200983b8, 0x24138498, 0x0d02020d, 0x20098369, 0x0ab35fa8, 0x30008024, 0xe7797500, 0x010f2111, - 0x27051954, 0x16170607, 0x0623011f, 0x24051e5e, 0x37333233, 0x05f54d15, 0x27262724, 0x01823534, 0x35200782, 0x22056552, 0x82223122, 0x23062d25, - 0x3f362726, 0x36373201, 0x012f3435, 0x372c2482, 0x1f323736, 0x36331601, 0x012f2637, 0x240cdc79, 0x0e012307, 0x08be8362, 0x0c1f123b, 0x2f181415, - 0x80101a2a, 0x13170d0c, 0x100c0813, 0x0a02190f, 0x0113131e, 0x1f151501, 0x01590203, 0x1415021b, 0x0218011f, 0x0101100b, 0x02010507, 0x2103010e, - 0x03212221, 0x08ec8218, 0x0603a321, 0x0e920a06, 0x0d060703, 0x03ea0405, 0x01020e03, 0x0d10410a, 0x0c172f13, 0x1b010b20, 0x7963291b, 0x2e080dce, - 0x0d042f13, 0x1923160c, 0x03010919, 0x1f1d1415, 0x08061514, 0x141e1623, 0x02300113, 0x06060117, 0x06050c01, 0x040d0d11, 0x010f0904, 0x82020302, - 0x03163861, 0x0904030b, 0x0534040b, 0x07080912, 0x01550201, 0x050b0d02, 0x790f1317, 0x272405c5, 0x00011a1a, 0x04840082, 0x01000228, 0x00500080, - 0x4d592500, 0x2f342d05, 0x012b2601, 0x17140706, 0x16013b16, 0x28054765, 0x22012b06, 0x16150607, 0x056b6217, 0x07060729, 0x27352726, 0x82272623, - 0x36372601, 0x3f32013b, 0x05d15f01, 0x37262723, 0x08018236, 0x1f16332b, 0x02151601, 0x16160200, 0x0f760902, 0x0104f21b, 0xa10f0a0a, 0x080f111b, - 0x0e0e050a, 0x0a0f6011, 0x9d04010a, 0x0a4e0608, 0x2a238301, 0x0f16953d, 0x1801010f, 0x82602418, 0x01320829, 0x23a20301, 0x01011819, 0xf3160f0f, - 0x11771e32, 0x02165c74, 0x105c1602, 0x0115ab0c, 0x0b0a0f03, 0x1a161501, 0x0a0a101e, 0x030f0a0b, 0x083a0501, 0x1f830d0c, 0x2f012c08, 0x160e0e01, - 0x04191923, 0x0202031d, 0x16231919, 0x01010e0e, 0x1f19aa29, 0x20000200, 0x2002c0ff, 0x5300c001, 0x00008900, 0x651f3213, 0x3328062a, 0x17161732, - 0x14010f14, 0x22056b60, 0x82343130, 0x201382bd, 0x46138215, 0x604305c2, 0x3736220c, 0x200f8734, 0x05224236, 0x27353430, 0x37363526, 0x22353336, - 0x07063107, 0xad431714, 0x05c14306, 0x2908eb61, 0x3536013f, 0x07262726, 0xe4432322, 0x0f062305, 0x09832701, 0x11eb3f08, 0x0c052f07, 0x0620040c, - 0x08070b12, 0x021d0101, 0x19030a0d, 0x0b0e0505, 0x30010808, 0x2d22220b, 0x4c2f3f31, 0x0a080808, 0x02330909, 0x0a010703, 0x08080124, 0x2007100b, - 0x020d0a04, 0x0c82012b, 0x171b0a2e, 0x19010217, 0x03011515, 0x1f070718, 0x33080782, 0x523d4b18, 0x2f2f3e31, 0x0202300f, 0x0116191a, 0x16150901, - 0x14131a14, 0x070d0506, 0x011a1313, 0x0db81390, 0x07149c0d, 0x03040c06, 0x0d02018c, 0x03680b01, 0x0f826e82, 0xcc04032b, 0x011b1b2c, 0x08472b01, - 0x3781820a, 0x01023107, 0x7b222407, 0x060c0403, 0x6a130107, 0x020e010b, 0x0304a502, 0x2c080d82, 0x24121330, 0x13020404, 0x0a0b2212, 0x15010152, - 0x171e1f16, 0x01013847, 0xcc3d2525, 0x11280909, 0x0d1d0111, 0x1b10100c, 0x0f193617, 0x05d3700f, 0x01c00131, 0x000a00c0, 0x00430015, 0x0086007b, - 0x68063700, 0x26220680, 0x0a893327, 0x35463720, 0x09397c07, 0x22072622, 0x4505a34e, 0x32220604, 0x6b4b3637, 0x17272106, 0x0726c582, 0x26012b06, - 0x8641012f, 0x82362005, 0x82332023, 0x013d2820, 0x17163736, 0x18171415, 0x82084d62, 0x013b2614, 0x17161716, 0x20178233, 0x20708927, 0x050176d0, - 0x0f012e08, 0x02010f40, 0x02020f0d, 0x2316690e, 0x1306050e, 0x14010b19, 0x141f1f14, 0x08110114, 0x12122201, 0x20164e0e, 0x0a6d2420, 0x201e2b09, - 0x081a8201, 0x14171e31, 0x03041f13, 0x4f1f346d, 0x08070104, 0x1c090806, 0x03090805, 0x16150204, 0x04081002, 0x100d0e05, 0x050a0405, 0x0e070404, - 0x0f040313, 0x8202170e, 0x05804661, 0x0f01a023, 0x8c768360, 0x1a572404, 0x740f0101, 0x3908080d, 0x020107a9, 0x171a1515, 0x101d6813, 0x20080310, - 0x1e6e3223, 0xb7021415, 0x0615161e, 0x68290101, 0x050c0706, 0x260a0105, 0x05050606, 0x020216f8, 0x030d8316, 0x01050401, 0x38820a01, 0x0c020328, - 0x1702010c, 0x6789606e, 0x00060036, 0x01c1ff20, 0x00c001e0, 0x003b0030, 0x0057004d, 0x00920087, 0x2a057746, 0x36370722, 0x26273435, 0x42072227, - 0xc5420599, 0x22068206, 0x7d16011d, 0x163719b3, 0x07151417, 0x31302726, 0x0f223130, 0x37363701, 0x32373607, 0x8207011f, 0x23132449, 0x7c012f22, - 0x32250515, 0x32333237, 0x28b78217, 0x0706010f, 0x33161716, 0x26298232, 0x37363336, 0x84321716, 0x7d668203, 0x26080cb6, 0x140b0d9c, 0x0b0e121c, - 0x21131401, 0x0514131b, 0x2b160404, 0x0114141f, 0x0b133207, 0x2e1b010b, 0x4b4f3a2d, 0x82023231, 0x1c33081e, 0x1213015c, 0x13120202, 0x03154801, - 0x070d0b18, 0x05180b06, 0x1602a913, 0x313d070f, 0xe1010237, 0x2e21294f, 0x69100209, 0x01010201, 0x01080709, 0x82143a10, 0x05093a08, 0x0f0f1002, - 0x0d250110, 0x0b0d1e13, 0x10031d13, 0x32232307, 0x12120280, 0x084f8302, 0x0420012d, 0x45080113, 0x161c0605, 0x11110115, 0x2809151b, 0x15140101, - 0x680f101e, 0x15111109, 0x24162350, 0x32320123, 0x131d6c4a, 0x83340113, 0x8438207f, 0xa4200804, 0x02021701, 0x01010591, 0x01129702, 0x0e021638, - 0x0573087f, 0x1998fe05, 0x500d0724, 0x01100512, 0x122f9e82, 0x14040905, 0x0205040f, 0x0a020302, 0x82011522, 0x32032569, 0xb4012020, 0x67594689, - 0x00022b06, 0x1a00c001, 0x46002c00, 0xe1515200, 0x2613252e, 0x27263127, 0x41091e5c, 0x2f240573, 0x07373601, 0x180b205c, 0x3b288c4e, 0x17160160, - 0x02165822, 0x02161602, 0x0f07263c, 0x07130505, 0x50022323, 0x090e4040, 0x0e200082, 0x272cdc51, 0x16172200, 0xd0160201, 0x482a4e83, 0x0b020e52, - 0x2c174b15, 0x54534020, 0x07fb4a05, 0xfb82c020, 0x3b001826, 0x00004400, 0x200d4576, 0x095d7627, 0x35332723, 0x771c8636, 0x162514bc, 0x16031517, - 0x05766f17, 0x0216e023, 0x20708330, 0x87c28330, 0x18482009, 0x4d1da04b, 0xfe240547, 0x1602d8a0, 0x4a84368c, 0x4b18a820, 0x9f6f1fa0, 0x06ff4410, - 0x36002d22, 0x2629d382, 0x33373627, 0x07061716, 0x20a28223, 0x21c89e15, 0x59512105, 0x83982006, 0x849020c2, 0x16182204, 0x23bd9a02, 0xa0fe1001, - 0x4918be85, 0x01200883, 0x28200982, 0xc024b49c, 0x010f00ff, 0x83413582, 0x18252012, 0x220eca52, 0x59011f36, 0xbdab050a, 0x2e02013a, 0x11100f0f, - 0x1110302f, 0x2f2f0e0e, 0x10110e0e, 0x10112f30, 0x822e0f0f, 0x7820cca6, 0x46912e85, 0x02480123, 0x4ddca716, 0xc02f085f, 0x0e00c001, 0x3a003100, - 0x06370000, 0x1826012f, 0x2107365c, 0xd5ab010f, 0x1110d823, 0x20ca8440, 0x21ca835f, 0xcaa65870, 0x0f0f2829, 0x0e111040, 0x835f2f0e, 0x0170223c, - 0x18c0ab98, 0x2f099b51, 0x001e0019, 0x00280023, 0x15160100, 0x010f0611, 0x0728c782, 0x35262706, 0x013f3611, 0x2b05a441, 0x11370131, 0x27011107, - 0x13111711, 0x022b0983, 0x0e010a36, 0xb70908a8, 0x820b0ca0, 0x07a92f09, 0x0ba0b809, 0x78fafd0b, 0x90380178, 0x06823090, 0x0c089c33, 0x070fb0fe, - 0x3d020340, 0x0807053c, 0x1050010c, 0x350c8206, 0x07053d3e, 0x012d7ffe, 0xe4fe2e1d, 0xfe301c01, 0x1e0130e2, 0x0f85e4fe, 0x0000002f, 0xffffff02, - 0x01ff01c3, 0x001b00c0, 0x0bd1502b, 0x6d013b21, 0x33210548, 0x41571832, 0x06132407, 0x7e072307, 0x2125062b, 0x01111716, 0x09c36bbf, 0x06016025, - 0x4f7d0606, 0x112e05d8, 0x01111c12, 0x9050a00f, 0x0f01010f, 0x05828001, 0x1201c03e, 0xe1fe1a12, 0x5412121b, 0x04030308, 0x1b12125e, 0x121a1f01, - 0xa0fe0112, 0x3c3c010f, 0x20202582, 0x0f222582, 0x4345e0fe, 0x000a290b, 0x00300015, 0x13000042, 0x20137148, 0x059a5b2f, 0x26f15318, 0x0445c820, - 0x16022205, 0x20088770, 0x172e6638, 0x0fd15318, 0x6c200121, 0x098909c6, 0x2e5aa020, 0x06997610, 0x11bf5318, 0x2c069743, 0xc0010002, 0x27000c00, - 0x00003900, 0x0acf7501, 0x0121c8ad, 0x09496d48, 0x9b180b77, 0x21b8abc2, 0x237c0001, 0x82482007, 0x061121b3, 0x2106764d, 0x09822726, 0x3d262725, - 0x56373601, 0x32200556, 0x35260782, 0x33220706, 0x46183130, 0x2c820737, 0x11272622, 0x15201e83, 0x36252583, 0x16171633, 0x36278317, 0xc0013736, - 0x141f0c0e, 0x1e2d1614, 0x171f2d1e, 0x0109090b, 0x832a1b0d, 0x1012270c, 0x2a1d1510, 0x0b830101, 0x191d2c23, 0x07745121, 0x10182125, 0x83171211, - 0x14163d15, 0x0f0b1f14, 0xb0fe9001, 0x060c0405, 0x0e0e0205, 0x03080102, 0x010b0607, 0x020c060f, 0x04240e83, 0x0df00803, 0x022b0984, 0xfe040b0d, - 0x020216b6, 0x83900116, 0x04172405, 0x8405060b, 0x05062532, 0x0005050b, 0x2a064f44, 0x018002f8, 0x00750088, 0x8287007e, 0x272621e3, 0x0721c183, - 0x83e98326, 0x05814703, 0x3621de82, 0x5d0e8217, 0xb0430816, 0x06232306, 0x0a82012f, 0x06820720, 0x23352327, 0x37363311, 0x82308333, 0x16172107, - 0x03823382, 0x36013f27, 0x012f2627, 0x82058237, 0x26272328, 0x11823435, 0x84161721, 0x15332201, 0x2c2d8214, 0x05271117, 0x37362726, 0x07061716, - 0x74411821, 0xfa700808, 0x2f1f1f0e, 0x231c1c23, 0x101d1d29, 0x110c0110, 0x070c0806, 0x2e1b1b01, 0x133a0a0b, 0x1a151301, 0x7c0b141b, 0x031c0304, - 0x051a1604, 0x21040302, 0x0e09030f, 0x4a5a0a0f, 0x09124060, 0x1d174d3d, 0x11150404, 0x14181301, 0x1110110d, 0x020e1b0c, 0x09791102, 0x11110e0e, - 0x050c0d36, 0x100d5605, 0x011b1b2e, 0x09370705, 0x86410d09, 0x010f36fe, 0x2105e04a, 0x09872002, 0x41016a08, 0x09171611, 0x04151604, 0x11131307, - 0x0f130212, 0x19040904, 0x06010a19, 0x1b1c133b, 0x0b131213, 0x24040464, 0x1b120304, 0x1b030104, 0x020b030e, 0xc0510801, 0x0f0100ff, 0x0b031345, - 0x03020f01, 0x0404060d, 0x1512240e, 0x08620f15, 0x0e0e1111, 0x050a0a36, 0x58050708, 0x190a020c, 0x02060419, 0x09090eaf, 0x01000101, 0x877a85e1, - 0x010f2178, 0x240b2f43, 0x0038002a, 0x07974159, 0x6b263121, 0x272205c7, 0x9f410631, 0x5c078307, 0x21250517, 0x37363736, 0x076e6535, 0x16173528, - 0x013f3233, 0x265e3515, 0x83352005, 0x4103871c, 0x0585057d, 0xee01153d, 0x200f100c, 0x05043b1f, 0x0f12110e, 0x0e11120f, 0x1f3b0405, 0x0c100f20, - 0x18120112, 0x21079a4c, 0x49711e12, 0x88320805, 0x20282820, 0x1712a788, 0x0ba71217, 0x201f0f0f, 0x0606053b, 0x08080a0a, 0x06060a0a, 0x1f203b05, - 0x010b0f0f, 0x0c0c091d, 0x032b1717, 0x0b0b0b04, 0x04820101, 0x2b03042a, 0x0c0c1717, 0xf7170f09, 0x2407f754, 0xfe0f17f7, 0x2df183e3, 0x1a1a71ab, - 0x8aeaab71, 0x0d8a0f0f, 0x37840b09, 0x07050529, 0x08030308, 0x84050507, 0x090b3d37, 0x0007000d, 0x02c0ff20, 0x00c00100, 0x0020000e, 0x00320029, - 0x0050003b, 0x2500005d, 0x25063051, 0x26373633, 0xa97f2627, 0x07824306, 0x16171626, 0x15230517, 0x35231b82, 0x87112726, 0x86152008, 0x182f2008, - 0x7a14337a, 0x01290cf7, 0x17224010, 0x0f010116, 0x22aa82c0, 0x69221716, 0xf5710809, 0x10102109, 0x0f201a82, 0x7022058b, 0x1e88e0fe, 0x10243088, - 0xe0fe0f01, 0x01252983, 0xa0010f20, 0x834b8201, 0x205c830c, 0x26461820, 0x6040240f, 0x82400f01, 0x8500201d, 0x85802007, 0x83c02006, 0x314e1826, - 0x83fe200f, 0x05604627, 0x80fe0f3b, 0x06000000, 0xe0ff0000, 0xa0014002, 0x1c001100, 0x36002b00, 0x58004b00, 0x05057d00, 0x16413720, 0x5f25200b, - 0x06230d69, 0x41171607, 0x27210542, 0x74198937, 0xd02021e4, 0xf188e987, 0x16600025, 0x84160202, 0x41e02004, 0xe0200d3c, 0x30201989, 0x1820bf7b, - 0x20103c47, 0x070b4518, 0x3c413820, 0x8788200b, 0x74782015, 0x40182385, 0x112a0ba3, 0x3e002300, 0x63004c00, 0xe2620000, 0x18152011, 0x23100e61, - 0x31070635, 0x89610284, 0x26112411, 0x5c373627, 0x17240591, 0x26370706, 0x20072165, 0x20178407, 0x2b308337, 0x00010706, 0x01191925, 0x25191901, - 0x11250787, 0x0b0c0c0b, 0x47058511, 0x47381789, 0x17170d35, 0x171d481d, 0x47360e17, 0x202114a0, 0x20274827, 0x022e1520, 0x08a65618, 0x50012e22, - 0x5c83548b, 0x56888020, 0xf0205c82, 0x3219a547, 0x0e192901, 0x190e0f0f, 0x204b0129, 0x12121213, 0x474d3720, 0x4d210736, 0x0c076938, 0x2d001426, - 0x4e003f00, 0x180ced59, 0x4309657d, 0x33210831, 0x09887415, 0x17163325, 0x18362711, 0x5407635b, 0xde5406d4, 0x066a4208, 0xff400123, 0x09384200, - 0x10220987, 0xcf4b0f01, 0x09402105, 0x2205f172, 0x59010f40, 0x2487082f, 0x5b422020, 0x4301200d, 0x10201e1e, 0x8205ee4d, 0x80fe225a, 0x0f7043a0, - 0x51422020, 0xbf52180b, 0x001c290d, 0x00440031, 0x2500004f, 0x2324b284, 0x17160706, 0x1720d690, 0x21174844, 0x675d2623, 0x82072006, 0x21112309, - 0x44892711, 0x43700121, 0xa020090d, 0x43104443, 0xc020171f, 0xf984a983, 0x010f2025, 0x89a0e001, 0x43682043, 0x18200708, 0x0121dd8f, 0x171a4320, - 0x16172223, 0x26508301, 0x00010f01, 0x189800ff, 0x7409a150, 0x1b2b0bf7, 0x00002400, 0x36373613, 0x7c333237, 0x34340f1c, 0x31373635, 0x21171613, - 0x21353736, 0x10080815, 0x03040d0c, 0x0ff64918, 0x28060222, 0x2705034b, 0x7f0160fe, 0x0207090f, 0x03258e8f, 0xfe0b0d04, 0x23cf82a1, 0x00c0c00f, - 0x012d0082, 0xe0ff0000, 0x10000002, 0x00000a00, 0x06f75a17, 0x2726212e, 0x01160200, 0x020216d0, 0x1630fe16, 0x8305c35a, 0x0b2b470c, 0x3800222d, - 0x00004100, 0x07222301, 0x6f011d06, 0x1620067e, 0x2008556f, 0x055f5335, 0x26273422, 0x20068a6f, 0x08bb6f11, 0xe0831120, 0x85012121, 0x17162dc8, - 0x0ee0b001, 0x01300909, 0xe0221716, 0x20072541, 0x06434210, 0x8e707020, 0x29cd830d, 0x00ff0001, 0x010f0001, 0xe982e0fe, 0x09099025, 0x8710100e, - 0x203e8435, 0x83128230, 0x83502050, 0x0ff2422c, 0x01b0fe22, 0x0f21f882, 0x2e418201, 0x01c0ff1b, 0x00c001e5, 0x2500007e, 0x18060716, 0x20078761, - 0x220b8217, 0x8315022f, 0x22232306, 0xed56012f, 0x06072805, 0x013f2627, 0x84010f35, 0x200d8507, 0x05094e27, 0x85060068, 0x2105840d, 0x06843502, - 0x0cbb7d18, 0x87491520, 0x4f0f2006, 0x65840610, 0x07012c08, 0x17363717, 0x0503e401, 0x211f0a05, 0x140d0912, 0x15040821, 0x49150815, 0x070e0e39, - 0x17070a0a, 0x02161602, 0x0e111117, 0x8249390e, 0x04153516, 0x0d142108, 0x1f211209, 0x16070415, 0x4e49494e, 0x15040716, 0x11213990, 0x23378e11, - 0x0305050a, 0x4208398f, 0x0a9a0815, 0x08030809, 0x12140d13, 0x161f1309, 0x4e140308, 0x1139542a, 0x17070711, 0x02021626, 0x0e172616, 0x3911110e, - 0x144e2a54, 0x1f160803, 0x14120913, 0x0808130d, 0x15031416, 0x0315292b, 0x91081614, 0x0e0e213b, 0x03233b91, 0x8c0a0809, 0x2a29253d, 0x00150414, - 0x55050b6d, 0x202807eb, 0x49004000, 0x00005700, 0x0a965118, 0x07063324, 0xba512726, 0x210a8906, 0x0f511703, 0x5e112005, 0x1127083a, 0x36272623, - 0x82373337, 0x17163a03, 0x27330731, 0x22012b26, 0x1403010f, 0x3b163117, 0x36373201, 0x11211135, 0x07f549a0, 0x08905020, 0x46240222, 0x42059c5d, - 0x0820077f, 0x46300e83, 0x5e1d1125, 0x91a6121d, 0x5e040313, 0x48130105, 0x27065542, 0x0f30e0fe, 0xd00f0101, 0x01280498, 0x16023777, 0xd0fe0216, - 0x2008f043, 0x2a0f8330, 0x01011837, 0x041c3718, 0x6bfe1c04, 0x01250654, 0x00d0fe30, 0x09a34f00, 0x2e001428, 0x55004000, 0xe0440000, 0x18152005, - 0x2a085d83, 0x26272635, 0x07061327, 0x18262723, 0x7409ce65, 0x21240529, 0x25151716, 0x11267918, 0x31832120, 0x84053a41, 0x17162645, 0x00020706, - 0x08fa44fe, 0x50180120, 0x1030080c, 0x6d100f01, 0x05080905, 0x0805163f, 0x10490508, 0x0125d783, 0xfe010f60, 0x05c445d0, 0xe8260585, 0x2233b0fe, - 0xef670122, 0x16502408, 0x60160202, 0x7e490528, 0x2b088408, 0x010fe0fe, 0x5e0707a1, 0x6107071e, 0x2007625f, 0x0b056fd0, 0x0190fe26, 0xf0332222, - 0xf0233f83, 0x8414141f, 0x51002052, 0x802c086b, 0x1d00c001, 0x3f002600, 0x23010000, 0x18074149, 0x4709394e, 0x2f210806, 0x23d28301, 0x37362726, - 0x21090f47, 0x14821d06, 0x37363335, 0x33273435, 0x01111716, 0x15063240, 0x151e1e15, 0x46320615, 0x802011f6, 0x03838083, 0xff469020, 0x02123407, - 0x0fc00f01, 0x0f120201, 0x1c800101, 0x01011112, 0x451c1211, 0x48830f3d, 0xba451020, 0x70fe2107, 0x0f272a82, 0x010f4001, 0x83100808, 0x08102b0a, - 0xfe0f0108, 0x000300c0, 0x3f4bff00, 0x00193105, 0x00460034, 0x27232500, 0x22232726, 0x17150607, 0x1f20cc83, 0x2106565a, 0x8c4f2627, 0x3858392e, - 0x10160201, 0x0107070a, 0x06070f38, 0x0b07590a, 0x0a57070b, 0x580f0706, 0x4f17d348, 0xd0330f9a, 0x07021658, 0x01580a07, 0x600b0f0d, 0x0c600808, - 0x48010d0e, 0xf9481ab5, 0x3b3b2208, 0x454a8358, 0x17240bff, 0x44003200, 0x3522db83, 0x21782726, 0x3633230c, 0xd9af3537, 0x918c6820, 0x0222a482, - 0xd3a76816, 0x0c41e020, 0x0238260e, 0x02161016, 0x198b49e0, 0xd792d591, 0x07260125, 0x7f150706, 0x372005df, 0x2009e37f, 0x1c9a4a02, 0x854a3120, - 0x07062c0b, 0x0e0c1801, 0x1657020d, 0x88160202, 0xa71820df, 0x2a0127d6, 0x0e07060a, 0xcd840138, 0x2506f041, 0x070b0b06, 0xd9ab9657, 0x41098b42, - 0x012106af, 0x5b411826, 0x16172408, 0x74363317, 0x2f200516, 0x1125d7ad, 0x050c0b07, 0x289f8858, 0x0f380215, 0x580a0607, 0x20dba811, 0x067b4238, - 0x1b415820, 0xab882009, 0x05003cd6, 0xe0ff0000, 0xa001ff01, 0x15001100, 0x1d001900, 0x00002100, 0x23262725, 0x700f2221, 0x3f2c0681, 0x012f3601, - 0x07372317, 0x27073327, 0x46080782, 0x07212713, 0x0868fc01, 0x0bfffe0c, 0x0b096708, 0x0a0a07e8, 0x090ce807, 0x4d8c3f7d, 0x4e9c4e7f, 0x418c4b7e, - 0x5601ab7e, 0x0b99fcab, 0x0e10990b, 0xf60808f6, 0x5f63100e, 0x6363525f, 0xfe5f5f52, 0x00b5b5bc, 0x82000400, 0x40022300, 0x77828001, 0x3c002624, - 0x75825100, 0x81180620, 0x27210fda, 0x09d64d15, 0x26352323, 0x790d8427, 0x172015ba, 0x270ee745, 0x06070621, 0x01900107, 0x0a068518, 0x201f3025, - 0x79088001, 0x0823085c, 0x83100f01, 0xf0fe220c, 0xcc6d1801, 0x121b2513, 0x60010112, 0x2107974a, 0x0983a0fe, 0x8218c020, 0x1f230d1e, 0x47402030, - 0x08510806, 0x08104605, 0x200b3049, 0x08bc4b30, 0x002d0888, 0xff000003, 0x010002e0, 0x001900a0, 0x18ff822f, 0x181ac76a, 0x1822e346, 0x2018bd6a, - 0x090d51af, 0xfe210983, 0x20d68380, 0x05da4a30, 0xfe0f0123, 0x58b58280, 0x6a18081d, 0x4f200fff, 0xb9452b83, 0x7e6e180f, 0x0657630e, 0xc001403e, - 0x58000c00, 0x21050000, 0x17140706, 0x36213316, 0x25272637, 0x16311716, 0x35331517, 0x08e26418, 0x25057754, 0x06071716, 0xbd451415, 0x17162606, - 0x0f060706, 0x74258201, 0xf082088c, 0x26273422, 0x52070461, 0x39080534, 0xeffe2801, 0x07070215, 0x17100109, 0xfe160202, 0x131201d8, 0x0c21301a, - 0x02010909, 0x1a1b1717, 0x0f0e0a0c, 0x42060d0c, 0x050b0505, 0x36050706, 0x09010112, 0x30220b09, 0x0982131a, 0x1c121326, 0x02171c1b, 0x2106994d, - 0x0d821702, 0x13122808, 0x15021001, 0x0208070a, 0xa0021616, 0x08191827, 0x030b4320, 0x2c160d0c, 0x21222f2f, 0x11110101, 0x420a1414, 0x82060705, - 0x3605384f, 0x0d16202b, 0x430b030c, 0x18190820, 0x302f2627, 0x07172a2b, 0x82090e18, 0x180e2a00, 0x2b2a1707, 0x00262f30, 0x060b4100, 0x2005e758, - 0x0c0b4140, 0x2321ce82, 0x22048237, 0x4d352327, 0x3524054d, 0x07062726, 0x6806dd42, 0x143d056e, 0x2733011f, 0x37343534, 0x14151621, 0x37330715, - 0x88013536, 0x0116b0fe, 0x010a0706, 0x3106824f, 0x0b380a06, 0x1f901c11, 0x15020216, 0x1617031f, 0x09822001, 0x8f1f1632, 0x010f1018, 0x47334103, - 0x08500108, 0x03423247, 0xdb83d686, 0x0f12f825, 0x83380116, 0x152121e1, 0x21203582, 0x38340983, 0x18100f01, 0xd6c70809, 0x01070101, 0x01010602, - 0x0908c7d6, 0x2506b745, 0xa0018001, 0x7d514200, 0x06172306, 0x89821407, 0x3331302d, 0x013f3635, 0x07353736, 0x83010f06, 0x66232002, 0x272b0844, - 0x37363526, 0x16171633, 0x82331517, 0x662620d1, 0x14250577, 0x011d0617, 0x24148214, 0x36171637, 0x20e88337, 0x0b154201, 0x1a0f2c31, 0x22023001, - 0x0f011526, 0x04080208, 0x82050b0b, 0x82212000, 0x0b073d5a, 0x69090102, 0x022c2b43, 0x3a390230, 0x10196957, 0x05050110, 0x24140c0c, 0x02121202, - 0x01230383, 0x42affe18, 0x51200504, 0x3b08fb83, 0x2820067f, 0x040d0e02, 0x17132820, 0x093b180b, 0x0c190904, 0x02020405, 0x7010080f, 0x17080608, - 0x01090303, 0x432c2c02, 0x3a57c3c3, 0x1001023a, 0x0c0d1910, 0x16700e0c, 0x9d0a1212, 0x02235085, 0x42d4fe12, 0x002f0805, 0xff000003, 0x013e01c1, - 0x000c00a0, 0x4150003e, 0x163d05c1, 0x37362117, 0x23262734, 0x14153327, 0x33070607, 0x33352736, 0x33170615, 0x3d262726, 0x05cd4101, 0x27202084, - 0x2009a952, 0x05be6323, 0x3121ff82, 0x4f741816, 0xfe283d0d, 0x020215ef, 0x16100115, 0x0a060601, 0x050419f1, 0x0214350e, 0x35140240, 0x1804050e, - 0x153bd482, 0x03012518, 0x190b0b02, 0x22322b19, 0x25020122, 0x07070918, 0x1f691502, 0x61011414, 0x07830720, 0x16020f22, 0x0a2f2d83, 0x1eb00807, - 0x191e1d1e, 0x1e1e3839, 0x82193939, 0x011f3e0a, 0x22021617, 0x0a0f0e35, 0x13121615, 0x22220101, 0x07223632, 0x01170a07, 0x151401d0, 0x4a488b1e, - 0xff2b082f, 0x1100c001, 0x6d005e00, 0x50010000, 0x342311ff, 0x8326012f, 0x220721d2, 0x8745e383, 0x6f062005, 0x2a5005cb, 0x07142205, 0x054e6706, - 0x06010f32, 0x011f1415, 0x33162733, 0x37163130, 0x17163736, 0x2905f243, 0x33073732, 0x34353637, 0x0a420335, 0x345d0809, 0x01232627, 0x0f101800, - 0x100f0101, 0x10101818, 0x10100101, 0x1c07ff18, 0x05090503, 0x0405180e, 0x030b0a12, 0x030a270a, 0x120d0d04, 0x040d0d11, 0x0d270a02, 0x1a0b0b01, - 0x09040e18, 0x071d0404, 0x5d356c02, 0x1c060d0d, 0x2f1c171c, 0x14041d2e, 0x0d0d2914, 0x016c355d, 0x16b0fe57, 0x21f18202, 0x06865001, 0x67875f85, - 0x010f2f08, 0x10050855, 0x01120702, 0x0e0e0401, 0x01010c12, 0x0b0a1109, 0x09110a0b, 0x100c0101, 0x01011111, 0x10020712, 0x04040805, 0x0204c4e3, - 0xa5820808, 0x0923012e, 0x03021415, 0x0303e3c3, 0xf5fe0101, 0x23053242, 0x08070a15, 0x2905a34a, 0xa0018001, 0x4d000c00, 0xf5435a00, 0x27262d0c, - 0x07222103, 0x14011d06, 0x1514011f, 0x07280182, 0x36330706, 0x34353637, 0x27240182, 0x33153335, 0x07200386, 0x17261d84, 0x26331716, 0x1d842627, - 0x24069a78, 0x07220723, 0x23408231, 0x27343533, 0x68208682, 0x300cfe42, 0x0fccfe0f, 0x250b0b0b, 0x31080202, 0x30020207, 0x27018440, 0x31070202, - 0x25020208, 0x11281982, 0x09090e99, 0x0e090940, 0x2a09e944, 0x0b0bb001, 0x0a0f8b10, 0x82070620, 0x22212d98, 0x22222b2c, 0x0c0c0b23, 0x3075290d, - 0x75390082, 0x0c0c0d29, 0x2323230a, 0x21222c2a, 0x0508081d, 0x0f0a2005, 0x0b0b108b, 0x214582c0, 0x4e824040, 0x00820020, 0x974b0220, 0x00042a08, - 0x01000009, 0x21112111, 0x2d038207, 0xfe000211, 0x30000200, 0xa00160fe, 0x0a88c001, 0x2a086348, 0x001100a1, 0x00350023, 0x1875005a, 0x20139586, - 0x0f804d37, 0x8f172721, 0x27232111, 0x1809364a, 0x18345b6b, 0x2607f254, 0x08090908, 0x820e700e, 0x0d092306, 0x0c8a090d, 0x3605d445, 0x393a4770, - 0x02012222, 0x10100d33, 0x05060a02, 0x23232e10, 0x85312c17, 0x22012215, 0x816b1822, 0x583a2f12, 0x023b3a58, 0x583a3a02, 0x0d0909f0, 0x54820a0e, - 0x4c820e20, 0x09090123, 0x2066880e, 0x820d8401, 0x23138219, 0x01b10909, 0x07a86b18, 0x01151525, 0x180e0f0b, 0x2909a86b, 0x2f3a3a2e, 0x011c1d2f, - 0x6b188ffe, 0x002019a8, 0x0fbb5618, 0x57003c24, 0x56186900, 0x17292dbb, 0x33363726, 0x07161732, 0x05cd6906, 0x41172721, 0xb259075e, 0x37362105, - 0x56180183, 0x4a3140ba, 0x1f180b0c, 0x0d0c181e, 0x10090e0e, 0x0e0e0812, 0x17a24ae6, 0x7818ff20, 0x56181045, 0x172d25bc, 0x16160f0e, 0x0c0b0e0f, - 0x0b0c0a0a, 0x173d4b19, 0x12fe5718, 0x42050021, 0x142e08cb, 0x47002d00, 0x74006200, 0x06250000, 0x2c5d2627, 0x09004105, 0x7a270721, 0x16270799, - 0x012f0607, 0x45141514, 0x31200601, 0x099b5518, 0x07373422, 0x3f2d3982, 0x16173601, 0x1516010f, 0x37360531, 0x41028431, 0x06210542, 0x41018307, - 0x5518055a, 0x013e1198, 0x0b101148, 0x110b1b1c, 0x0a0e0f11, 0x1a1a1213, 0x0d0b1312, 0x0901b80f, 0x06030d1f, 0x0483600e, 0x09090b27, 0x09090d0e, - 0xb4551801, 0x0e0c2508, 0x600d0306, 0x1e230483, 0x4190fe09, 0x01201755, 0x3d105541, 0x0e0f0d36, 0x0f0e0202, 0x0c11110d, 0x0101090a, 0x110c0a09, - 0x090e9a11, 0x0d0e060a, 0x04832003, 0x1e820320, 0x8207a842, 0x03022775, 0x0e0d0304, 0x04832006, 0x0e090a23, 0x2b624110, 0x290a6341, 0x002b0011, - 0x00600045, 0x72180072, 0x2f2011dd, 0x20064161, 0xc9751816, 0x61332011, 0x1992055b, 0x592cb042, 0x5939109e, 0x17181011, 0x0f0f1011, 0x0f0f1616, - 0x18171110, 0x0e0e1110, 0x0e0e1717, 0x201897c0, 0x176341d9, 0x5712b942, 0xd9200f20, 0x5a975b85, 0x79201791, 0x202a6541, 0x08c74209, 0x13000a30, - 0x37002500, 0x52004000, 0x7f006400, 0x53189100, 0xb25e0cdb, 0x27262206, 0x08984223, 0x76079442, 0xc548058d, 0x17162509, 0x26070637, 0x33203084, - 0x84119a4d, 0x17162211, 0x21358216, 0x34833736, 0x421a8a41, 0x402512ec, 0x16020216, 0x20048480, 0x0c245bb8, 0x8307ee53, 0x14502507, 0x01010d0e, - 0x0a089418, 0x2aa9d820, 0x41183061, 0x6b1811a9, 0x6562086c, 0x24848b08, 0x22171601, 0x83848b30, 0x0f6b1894, 0x2029a008, 0x29c44150, 0x2e098b44, - 0x00280016, 0x0055003a, 0x37000067, 0x18312706, 0x210f4e5b, 0x5b180722, 0xb3355148, 0x0307070a, 0x231b1b0d, 0x0d1a1b23, 0x09080704, 0x252c2c25, - 0x0670441d, 0x40835c18, 0x05044f26, 0x121d0906, 0x1c280082, 0x0405060a, 0xa110010f, 0x91056947, 0x41302005, 0x00222930, 0xf7420000, 0x00132e09, - 0x0020001b, 0x002d0025, 0x0051003f, 0x058f586c, 0x804b1720, 0x534c1806, 0x07332808, 0x17160706, 0x83233533, 0x37152503, 0x35331523, 0x2105435e, - 0x5d181523, 0xd14523db, 0xdb5d181a, 0x4a582012, 0xb02007dc, 0xc0740888, 0x28082e05, 0x20602020, 0x16082020, 0x08160202, 0x1c654180, 0x5d18fe20, - 0xd74518ea, 0x4aa02011, 0x20250fe9, 0x02161602, 0x84008630, 0x0635570b, 0x423f7741, 0x153009ab, 0x39002700, 0x66005400, 0x36250000, 0x07163117, - 0x26081a4c, 0x16173637, 0x41373233, 0x3c442357, 0x1257411a, 0xbd825e20, 0x1f120831, 0x1f26261f, 0x0907131f, 0x322c0e09, 0x418e2c32, 0x44411c45, - 0x110e4418, 0x09038c26, 0x111c0d0a, 0x1c270082, 0x03090a0d, 0x41640b0b, 0x1185112c, 0x412aaa42, 0x07302f2f, 0x35262726, 0x37363734, 0x15161716, - 0x31373433, 0x694d0985, 0x41352006, 0x7e20422f, 0x200b4e58, 0x550c8b40, 0x2b4118f2, 0x46742022, 0x0f8f0ff5, 0xde434020, 0x0b334129, 0x78004726, - 0xa5009300, 0x29186342, 0x31342331, 0x27263130, 0x5f492734, 0x056b4905, 0x0615062d, 0x30332215, 0x06312315, 0x4a352627, 0x142507cc, 0x31270607, - 0x4130af33, 0x84214272, 0x24008201, 0x02020303, 0x2500820e, 0x03030202, 0x10830201, 0x0106052d, 0x18180f10, 0x0501100f, 0xa2a00306, 0x48862023, - 0xcc422985, 0x834f2010, 0x03012c5f, 0x0c020204, 0x020c0101, 0x84030402, 0x01042f10, 0x151c0602, 0x15020215, 0x02061c15, 0x25a50401, 0xcc411b20, - 0x0caf4c29, 0x4e001c28, 0x95006400, 0x2366c700, 0x37342107, 0x23050c74, 0x17363736, 0x2707f87d, 0x27312306, 0x17140706, 0x0df49118, 0x16272625, - 0x18373233, 0x4c07f455, 0x06260da7, 0x22033107, 0x14823127, 0x82067a44, 0x0607254c, 0x27230607, 0x7f21ec41, 0x16210671, 0x051d4215, 0x3c304f42, - 0x0e14d001, 0x0105010d, 0x080b0a07, 0x0e0c0606, 0x0a0a010f, 0x4907060f, 0x37010106, 0x0b3e5a4a, 0x0d190126, 0x150d0e0d, 0x2411c241, 0x02023d4e, - 0x0bd14487, 0x4208e544, 0x01271812, 0x19170f11, 0x4204100f, 0x013e2536, 0x0d0d0140, 0x010a0814, 0x10101001, 0x0f06060a, 0x11101817, 0x02040c0c, - 0x05120c4d, 0x7a182c07, 0x37250c46, 0x2f05042d, 0x12de4136, 0x05052826, 0x1111a4fe, 0x45061a45, 0xaa20062a, 0xa5252e42, 0x43002025, 0x2d260bf7, - 0x5f004400, 0xf7437100, 0x06072c18, 0x2726012f, 0x37363726, 0x83011f36, 0x16172605, 0x31071617, 0x05474233, 0xa36d0720, 0x221e8405, 0x591f1617, - 0x3642089c, 0x2031820d, 0x27654617, 0x05126f32, 0x070e410e, 0x0c040306, 0x04110d0b, 0x0d0c0c04, 0x67280d83, 0x0c0b0e10, 0x07060304, 0x05211c82, - 0x25078312, 0x040c0c0d, 0xe541aa04, 0xae5c1811, 0x10a84317, 0x0e428324, 0x65821103, 0x060e0e26, 0x10040407, 0x04247387, 0x0e060704, 0x11246c83, - 0x0d420e03, 0x10217486, 0x12a9414f, 0x3a222224, 0xf34e4839, 0x0015281d, 0x0040002b, 0x416d005b, 0x163e185f, 0x0f143115, 0x26270601, 0x013f2635, - 0x34372627, 0x011f3637, 0x16170737, 0x06071415, 0x196b012f, 0x450d8207, 0x7f3b421f, 0x07590808, 0x04010605, 0x01042424, 0x59070506, 0x032424aa, - 0x5a060506, 0x825a0808, 0x77032106, 0x303a4e41, 0x09090471, 0x03033004, 0x04040703, 0x04042b2b, 0x210a8207, 0x09881e30, 0x5b201d8a, 0x202b4b41, - 0x08774d07, 0x31001433, 0x67005000, 0x93007d00, 0x0000a800, 0x31333601, 0x05264132, 0x07060725, 0x82363722, 0x05105001, 0x82061721, 0x06aa6c10, - 0x50221721, 0x1c840513, 0x31071622, 0x06211a83, 0x06775127, 0x36233384, 0x84333227, 0x8507203b, 0x242f8450, 0x35262706, 0x271e8426, 0x17360731, - 0x010f1631, 0x13823882, 0x23060b43, 0x011f023f, 0x07207b82, 0x080d8618, 0x17363725, 0x55311716, 0x362105da, 0x21648415, 0x2f822223, 0x37343208, - 0x0fab0131, 0x0f0f1414, 0x1c1c0d0e, 0x02010b13, 0xfe0b0707, 0x545341a0, 0x0502024b, 0x48483f02, 0x07073537, 0x0e030328, 0x2907070f, 0x013e0b0a, - 0x85058394, 0x0202231f, 0x21830102, 0x06363408, 0x01012807, 0x0707120f, 0x0d0c0978, 0x090a0704, 0x23221b1b, 0x0d010e21, 0x17242425, 0x060509a9, - 0x06031e01, 0x05030506, 0x05030439, 0x62060202, 0x83380563, 0x07012709, 0x06060a61, 0x1c841d03, 0xedfe0122, 0x0a208283, 0x91858183, 0x0eb20123, - 0x0809830f, 0x07070b23, 0x1d120a02, 0x3e3d0d1c, 0x07290a0b, 0x29111208, 0x37350707, 0x013f4848, 0x02020402, 0x4153544b, 0x84048337, 0x0a072d1d, - 0x28070909, 0x38360607, 0x033e4848, 0x61331e82, 0x22220e0c, 0x091b1b22, 0x0d04070a, 0x2317090c, 0x82092624, 0x610a2c70, 0x05020107, 0x05380403, - 0x83050301, 0x398e2184, 0x0882a082, 0x06011e26, 0x06620905, 0x0323fe82, 0x83b3fe04, 0x0b01217b, 0x8b857c83, 0x370a9b44, 0x003d001e, 0x006e0053, - 0x13000080, 0x16171617, 0x1417010f, 0x012f0607, 0x2709d564, 0x3336023f, 0x33011f32, 0x07201d9c, 0x2014334b, 0x2b395225, 0x0426c83e, 0x1b040103, - 0x04040407, 0x04042123, 0x1c070205, 0x05010204, 0x04021126, 0xa0110206, 0x22211d89, 0x241d8c22, 0x11020505, 0x134a4b0a, 0x43a2fe21, 0x724c1768, - 0x19013611, 0x04050105, 0x05251b04, 0x12020303, 0x03030212, 0x031b2505, 0x23148205, 0x22050522, 0x8d201b9b, 0x200f674b, 0x2a784334, 0x62057743, - 0x382d05e7, 0x76005300, 0xbd008c00, 0x0000ef00, 0x05ba6a25, 0x26070624, 0x48432627, 0x06a55007, 0x31171626, 0x31070603, 0x07231a82, 0x4b360706, - 0x1720055b, 0x2a842682, 0x06033524, 0x0c823127, 0x82343521, 0x05804318, 0x6b433220, 0x31072905, 0x01392221, 0x35303526, 0x27261e82, 0x33323334, - 0x8c6e1532, 0x14152108, 0x27222483, 0x77480731, 0x022f0877, 0x060c0507, 0x3c3c2107, 0x3c3c4b4d, 0x0c060721, 0x16020105, 0x46443435, 0x02163534, - 0x374dc801, 0x0d0a0f38, 0x4510100a, 0x46636245, 0x82101045, 0x0f23080c, 0xf04e3838, 0x0e12120f, 0x0e060e0e, 0x090a100e, 0x01090708, 0x0b060602, - 0xe3010101, 0x060b0201, 0x82090207, 0x0808260a, 0x0e100707, 0x2422820f, 0x0e12110f, 0x1d9948f2, 0x0e0d0f22, 0x480cd04a, 0x72332d99, 0x04060e0d, - 0x01262640, 0x40262601, 0x0d0e0604, 0x853d0404, 0x3d34080d, 0x1f010404, 0x4a2f2f02, 0x03020105, 0x023d3c5f, 0x5f3c3d02, 0x05010203, 0x022e2f4a, - 0x0cdafe01, 0x0f0d0101, 0x070e1313, 0x01040505, 0x09010102, 0x0c1b1b12, 0x01260782, 0x1b1b0c01, 0xc6820912, 0x0401012a, 0x0e070505, 0x0d0f1313, - 0x3a201482, 0x2c4fba48, 0x16151b07, 0x15160202, 0x0102071b, 0x0b935704, 0x2305ab6d, 0x00800067, 0x24cf6b18, 0x21243e47, 0xec483d26, 0x16172405, - 0x4a373233, 0x152205dc, 0x385f0714, 0x13332107, 0x21069b5b, 0x975b2223, 0x53152005, 0x6b18079f, 0x38561df4, 0x05ef4d18, 0x1f1f0126, 0x0a0d0435, - 0x3b07674f, 0x0809090e, 0x35040e08, 0x02011f1f, 0x01593b3b, 0x02190240, 0x08040512, 0x12050309, 0x31610a82, 0x136c1807, 0x1d344f18, 0x31313e28, - 0x340e0c1a, 0x7a4f0f0c, 0x09033e05, 0x0d0e0d0a, 0x1a0c0e34, 0x583e3131, 0xfe023b3b, 0x02192590, 0x09091201, 0x19020112, 0x075c4e25, 0x300b7741, - 0x002c0016, 0x00700047, 0x13000089, 0x36313734, 0x9a69181f, 0x06c24808, 0x36253129, 0x15163117, 0x48010f14, 0x80410cc5, 0x3617212e, 0x20118041, - 0x18804115, 0x05067424, 0xdd485907, 0x0701250b, 0x03060506, 0x2009de48, 0x17714585, 0x2f0a8341, 0x06031225, 0x473c0a07, 0x060a3c48, 0x25120407, - 0x20078341, 0x16824158, 0x07230126, 0x30030303, 0x200ef848, 0x0e03490a, 0x6a181e84, 0x94411d3b, 0x1b172905, 0x06060a2a, 0x01011203, 0x062f8782, - 0x171b2a0a, 0x311a0c0e, 0x3b583f31, 0x4101023b, 0x1f491797, 0x00103309, 0x002b0019, 0x0058003d, 0x009a0081, 0x07223700, 0x7f5a2706, 0x7537200b, - 0x9956054c, 0x47212025, 0x35432b1f, 0x27312115, 0x24172d43, 0x0d0812a0, 0x0bb35a0f, 0x2408656e, 0x17160138, 0x1ca15622, 0x41b0fe21, 0x012117c8, - 0x0632435c, 0x3b585824, 0x5443023b, 0x431c2015, 0xe423154b, 0x5a0b0c0a, 0x0c2008e1, 0x56077269, 0x4e47207a, 0x43ba2017, 0x0223074c, 0x43583b3b, - 0x67431870, 0x0015281f, 0x00380027, 0x4c650053, 0x7018183b, 0x6f5c10b3, 0x23f6533e, 0x4d3b6b5c, 0xf8531082, 0x43635c0c, 0x7700652b, 0xa4008900, - 0x0000b600, 0x05196225, 0x5c070621, 0x22380b1b, 0x39372627, 0x32353201, 0x36333437, 0x34373637, 0x26353637, 0x22272627, 0x03820582, 0x23352327, - 0x35263135, 0x20239c34, 0x82238334, 0x2057833b, 0x517b5531, 0x0106312c, 0x0a070601, 0x04050504, 0x0b85070a, 0x061b152d, 0x01050102, 0x04010201, - 0x82040606, 0x04022306, 0x08840105, 0x04040122, 0x05281694, 0x1b060201, 0x61070a15, 0x2747b355, 0x0b0b07a6, 0x02060807, 0x05210082, 0x280b8509, - 0x0606010b, 0x01010103, 0x82aa8203, 0x22938299, 0x52010405, 0x052206ed, 0x19950205, 0x82070221, 0x050b23b0, 0xf2554a09, 0x0a2b4c42, 0x97006528, - 0xe300c800, 0xf741f500, 0x41342036, 0xbf5230f7, 0x5e0f5530, 0x204c3642, 0x18105357, 0x20584755, 0x4e604296, 0x0b534520, 0x5525a525, 0x5b532a86, - 0x002d2f09, 0x00a50093, 0x00cd00b6, 0x17160500, 0x13532306, 0x07142511, 0x27260726, 0x21058144, 0xa9440706, 0x37322305, 0x67182717, 0x0983098d, - 0x44070621, 0xbd421fb5, 0x228d822f, 0x18273107, 0x48115779, 0x17200f31, 0x2614e453, 0x03590101, 0x46352f08, 0x0e2511fc, 0x05031311, 0x0bb46e0a, - 0x06272c23, 0x47ca4438, 0x01010624, 0x77189106, 0xc0240d5b, 0x0e0e0812, 0x2d0b4748, 0x0e111567, 0x0904050f, 0x0f551108, 0x07831705, 0x04250f82, - 0x080c1806, 0x11354814, 0x08282c27, 0x1e070803, 0x0b3b5622, 0x8a191122, 0x244ae444, 0x070b0b07, 0x0be8447e, 0x67480c20, 0x0599300b, 0x11090905, - 0x050f1012, 0x590e0218, 0x840f0f12, 0x5715200f, 0x69600cc7, 0x00522805, 0x37000064, 0x7a313726, 0x0721054f, 0x050e6806, 0x52ed7918, 0x06038332, - 0x0bd60a07, 0x0e020606, 0x2e2e2222, 0x4d0d2222, 0x2f474146, 0x08070b86, 0x2a0b0708, 0x01011a19, 0x7a2a191a, 0x5a170046, 0x132834bf, 0x76004500, - 0xa3009100, 0x45162741, 0x66418ead, 0x72714511, 0x200e9041, 0x250a4555, 0x304525a5, 0x0eef422a, 0x3f002926, 0x6c005a00, 0x5716c741, 0x3120292d, - 0x21246e4e, 0x5b633736, 0x11904105, 0x2a575c20, 0x0e684149, 0x2f4e8720, 0x1928570e, 0x63456b20, 0x05c64411, 0x46127458, 0x13280977, 0x36002500, - 0x63005100, 0x4c164341, 0x3a414e35, 0x0e324411, 0x413b314c, 0x34440e3a, 0x0c2f4c0c, 0x2a412920, 0x6b77182a, 0x6e23200c, 0x7f180589, 0x9b622337, - 0x45d0202c, 0x73621c37, 0x36e8512b, 0x220bd646, 0x50000000, 0x0a2e0927, 0x39001c00, 0x67004b00, 0x94008200, 0xa2180000, 0x2f200917, 0x5505bf58, - 0x17210bdf, 0x05ac7f36, 0x24088d69, 0x30353435, 0x05a94831, 0x39823120, 0x37363122, 0x71572ea7, 0x66a8202c, 0x162207bb, 0x12505802, 0x610f2015, - 0x0f260550, 0x0e0d0101, 0x23a27014, 0xb066fe20, 0x11735718, 0x02504820, 0x50982007, 0x16211403, 0x07bc690e, 0x16250782, 0x010d0e14, 0x6927a630, - 0x102837d7, 0x35002100, 0x72005000, 0x4f12d751, 0x072010f4, 0x20087968, 0x07294815, 0x51273521, 0x52181ecf, 0x1423089e, 0x7b171617, 0x36210791, - 0x26098537, 0x0d0812a0, 0x6c0b0b10, 0x8a200963, 0x200f706c, 0x0fbf675a, 0x24180e64, 0x111e9001, 0x07234a11, 0x1e11112a, 0x02161602, 0x2c34342c, - 0x86510783, 0x0990510c, 0x0b0c0a23, 0x07a86859, 0x08882020, 0x24182748, 0x27261d96, 0x07fd422c, 0x26272c2c, 0x0216761d, 0x16991602, 0x04820101, - 0x76200982, 0x3105d37d, 0xc0010002, 0x21001300, 0x45003300, 0x76006000, 0x1a610000, 0x22232909, 0x36272627, 0x31373637, 0x085f8318, 0x16373627, - 0x32273117, 0x05ef6617, 0x2206dc5b, 0x18073336, 0x240b1344, 0x06070617, 0x34a61823, 0x4633201c, 0xe24b0770, 0x31333a08, 0x0c0606aa, 0x0e010e0e, - 0x0d14150d, 0x0e02010e, 0x0fc60c0f, 0x2013100d, 0x31b6832f, 0x0d202e42, 0x01010909, 0x0f0d0909, 0x08090908, 0x0685a00f, 0xfd681487, 0x25502218, - 0x0b01442b, 0x08320226, 0x9d1b1415, 0x82059360, 0x0d0e3467, 0x17181014, 0x1210380f, 0x011e0d0f, 0x02161602, 0x64ab2a01, 0x797b18b0, 0x10402119, - 0x240bef4b, 0x0f193851, 0x0d376f0f, 0x7c004b26, 0xa9009700, 0x491c376f, 0x86188e9d, 0x26201932, 0x6f71174f, 0x7b20189f, 0xa5258949, 0x2daf4925, - 0x18000221, 0x2507b7aa, 0x002b001e, 0x7f5d0100, 0x5d162006, 0x3725109d, 0x07011f16, 0xaeaa1832, 0x01112309, 0xaa18997a, 0x0f3519ac, 0x075b4407, - 0x02146905, 0x0d765609, 0x25013605, 0x0e0e0217, 0xa4aa180a, 0x0d012f15, 0x3803e68d, 0x55090c78, 0x6c0b0311, 0x036fcefe, 0x0023260c, 0x00500035, - 0x25175a62, 0x45092d45, 0x8918072c, 0xf9592c37, 0x59b0201d, 0x078807ad, 0x884e4020, 0x17b16211, 0x1818f847, 0x2010f746, 0x29fd4860, 0x2a09274a, - 0x002c0016, 0x005c0041, 0x5400006e, 0x142306cd, 0x7d2f0607, 0x27250676, 0x3f363526, 0x296e4b01, 0x2f2c6d4b, 0x31311eb1, 0x07021e1f, 0x22120708, - 0x12222626, 0x02220882, 0x704b2e1f, 0x1d803549, 0x1d1d0303, 0x05050823, 0x0f0f0803, 0x05050308, 0x7d1d2308, 0x6228764b, 0x00272c9f, 0x0e011600, - 0x85000100, 0x001a2200, 0x240b866c, 0x001b0001, 0x240b86cb, 0x00070002, 0x240b8665, 0x00210003, 0x200b8644, 0x24238a04, 0x00320005, 0x24178686, - 0x00180006, 0x200b862c, 0x2009820a, 0x240b8600, 0x0017000b, 0x240b86e6, 0x00130010, 0x200b86b8, 0x245f8411, 0x04010003, 0x23868209, 0x00d50134, - 0x01240b85, 0x93023600, 0x02240b86, 0xc7010e00, 0x03240b86, 0x85014200, 0x04200b86, 0x0524238a, 0x09026400, 0x06241786, 0x55013000, 0x0a240b86, - 0xfd005800, 0x0b240b86, 0xc9022e00, 0x10240b86, 0x6d022600, 0x11200b86, 0x3f085f83, 0x20656854, 0x27626577, 0x6f6d2073, 0x70207473, 0x6c75706f, - 0x69207261, 0x206e6f63, 0x20746573, 0x20646e61, 0x6c6f6f74, 0x2e74696b, 0x746e6f46, 0x73657741, 0x36656d6f, 0x65657246, 0x6765522d, 0x17832d83, - 0x18862020, 0x20362022, 0x20201a83, 0x2d251a86, 0x2e322e36, 0x2d0c8630, 0x79706f43, 0x68676972, 0x63282074, 0x358b2029, 0x72655624, 0x71826973, - 0x3037372d, 0x3330302e, 0x32363039, 0x8c282035, 0x85762057, 0x203a2122, 0x29205184, 0x73851b8c, 0x86871292, 0x74746828, 0x2f3a7370, 0xc182662f, - 0xc1856120, 0x6f632e2d, 0x0054006d, 0x00650068, 0x82770020, 0x00622405, 0x82730027, 0x006d220b, 0x2007826f, 0x20098274, 0x28098270, 0x00750070, - 0x0061006c, 0x220f8272, 0x82630069, 0x826e2011, 0x82732009, 0x2421832f, 0x006e0061, 0x200f8264, 0x20178274, 0x2827826f, 0x0069006b, 0x002e0074, - 0x22278446, 0x84410074, 0x82732059, 0x826d200d, 0x82362031, 0x82722017, 0x00652407, 0x8252002d, 0x88672007, 0x202f875b, 0x22318e20, 0x82360020, - 0x8246205d, 0x8465207d, 0x20358da7, 0x221d822d, 0x8232002e, 0x8e30206f, 0x8443204f, 0x827920b9, 0x00692237, 0x20e38267, 0x20458274, 0x20bd8228, - 0x204d8429, 0x83b5826f, 0x209d8d11, 0x20618256, 0x20f98272, 0x22bb8469, 0x82370020, 0x84302001, 0x0030265b, 0x00390033, 0x226d8230, 0x82350032, - 0x88282041, 0x20af91df, 0x20458c76, 0x202d823a, 0x85438236, 0x9a2920a3, 0x41e78b37, 0x6822350d, 0x01827400, 0xc1827020, 0x2f003a22, 0x66200182, - 0x7422c784, 0x83416100, 0x002e220c, 0x21178263, 0x0082006d, 0x84000221, 0xdbff2300, 0x08841900, 0xc609048f, 0x010000d3, 0x01030102, 0x00080004, - 0x010e000d, 0x01060105, 0x01080107, 0x010a0109, 0x010c010b, 0x010e010d, 0x0110010f, 0x00220011, 0x01120123, 0x01140113, 0x01160115, 0x01180117, - 0x011a0119, 0x011c011b, 0x011e011d, 0x0120011f, 0x01220121, 0x01240123, 0x01260125, 0x01280127, 0x012a0129, 0x012c012b, 0x012e012d, 0x0130012f, - 0x01320131, 0x01340133, 0x01360135, 0x01380137, 0x013a0139, 0x013c013b, 0x013e013d, 0x0140013f, 0x01420141, 0x01440143, 0x01460145, 0x01480147, - 0x014a0149, 0x014c014b, 0x014e014d, 0x0150014f, 0x01520151, 0x01540153, 0x01560155, 0x01580157, 0x015a0159, 0x015c015b, 0x015e015d, 0x0160015f, - 0x01620161, 0x01640163, 0x01660165, 0x01680167, 0x016a0169, 0x016c016b, 0x016e016d, 0x0170016f, 0x01720171, 0x01740173, 0x01760175, 0x01780177, - 0x017a0179, 0x017c017b, 0x017e017d, 0x0180017f, 0x01820181, 0x01840183, 0x01860185, 0x01880187, 0x018a0189, 0x018c018b, 0x018e018d, 0x0190018f, - 0x01920191, 0x01940193, 0x01960195, 0x01980197, 0x019a0199, 0x019c019b, 0x019e019d, 0x01a0019f, 0x01a201a1, 0x01a401a3, 0x01a601a5, 0x01a801a7, - 0x01aa01a9, 0x01ac01ab, 0x01ae01ad, 0x01b001af, 0x01b201b1, 0x01b401b3, 0x01b601b5, 0x01b801b7, 0x01ba01b9, 0x01bc01bb, 0x01be01bd, 0x01c001bf, - 0x01c201c1, 0x01c401c3, 0x01c601c5, 0x01c801c7, 0x01ca01c9, 0x01cc01cb, 0x0bce01cd, 0x6c637865, 0x74616d61, 0x076e6f69, 0x68736168, 0x0b676174, - 0x6c6c6f64, 0x732d7261, 0x416e6769, 0x0938135d, 0x7373656c, 0x6168742d, 0x7165066e, 0x736c6175, 0x6572670c, 0x72657461, 0x2d411384, 0x660d2433, - 0x82646c6f, 0x6c63363f, 0x6465736f, 0x61656805, 0x73047472, 0x04726174, 0x72657375, 0x08168205, 0x0e6b632d, 0x74636572, 0x6c676e61, 0x696c2d65, - 0x66047473, 0x0867616c, 0x6b6f6f62, 0x6b72616d, 0x616d6905, 0x700d6567, 0x742d6e65, 0x82732d6f, 0x65722695, 0x7269630c, 0x202d8263, 0x87208378, - 0x6863250c, 0x0f6b6365, 0x71231986, 0x83736575, 0x650324f8, 0x82096579, 0x732d3c03, 0x6873616c, 0x6c61630d, 0x61646e65, 0x61642d72, 0x63077379, - 0x656d6d6f, 0x8506746e, 0x850b20a2, 0x6f2d2106, 0x09226a82, 0xa7826863, 0x61622d24, 0x24860872, 0x83097321, 0x682d37b4, 0x05666c61, 0x6f6d656c, - 0x72630b6e, 0x74696465, 0x7261632d, 0x2d820a64, 0x642d6438, 0x65766972, 0x6e616810, 0x6f702d64, 0x2d746e69, 0x68676972, 0x108a0f74, 0x66656c24, - 0x0f8a0d74, 0x8b707521, 0x6f64351d, 0x63046e77, 0x0b79706f, 0x706f6c66, 0x642d7970, 0x066b7369, 0x0824f185, 0x65766e65, 0x65281582, 0x73617005, - 0x6c096574, 0x62325a83, 0x04626c75, 0x6c6c6562, 0x736f6808, 0x61746970, 0x2d850b6c, 0x6c702d25, 0x41067375, 0x0a2a050a, 0x65636166, 0x696d732d, - 0x0a85656c, 0x82726621, 0x84082067, 0x656d2815, 0x656b0868, 0x826f6279, 0x410820c3, 0x0b20071b, 0x43823785, 0x0c796122, 0x6d244f86, 0x73756e69, - 0x63260c87, 0x6b636568, 0xf3827311, 0x822d6521, 0x416d204c, 0x07230694, 0x826d6f63, 0x1173219c, 0x63253386, 0x74657261, 0x20d4832d, 0x22118c0f, - 0x8c127075, 0x8372200f, 0x660421ca, 0x04829f84, 0x696c2d30, 0x0973656e, 0x6d756874, 0x752d7362, 0x09860b70, 0x03284883, 0x046e7573, 0x6e6f6f6d, - 0x6c24638d, 0x0a746665, 0x642cb586, 0x6208746f, 0x646c6975, 0x08676e69, 0x2d245483, 0x09666470, 0x77240884, 0x0a64726f, 0x65250984, 0x6c656378, - 0x290a840f, 0x65776f70, 0x696f7072, 0x1a85746e, 0x616d6925, 0x840b6567, 0x697a251a, 0x72657070, 0x61241685, 0x6f696475, 0x76240a85, 0x6f656469, - 0x632a5185, 0x0965646f, 0x6566696c, 0x6e82722d, 0x61700b22, 0x2d312f82, 0x6e616c70, 0x75660665, 0x6c6f6274, 0x77656e09, 0x24168473, 0x6c65620a, - 0x0585426c, 0x6f630922, 0x2006ef47, 0x05154311, 0x61632d27, 0x6f697470, 0x2d43826e, 0x6a626f0c, 0x2d746365, 0x756f7267, 0x0c860e70, 0x846e7521, - 0x6e0b2c0e, 0x2d65746f, 0x63697473, 0x8205796b, 0x656e3139, 0x756f680e, 0x616c6772, 0x682d7373, 0x09666c61, 0x0e2f0e88, 0x646e6168, 0x6361622d, - 0x69662d6b, 0x83047473, 0x0578420e, 0x69637328, 0x726f7373, 0x21840b73, 0x7a696c22, 0x8205be42, 0x7073252d, 0x0c6b636f, 0x82099d42, 0x270c85fa, - 0x65636165, 0x6765720a, 0x65234882, 0x43646572, 0x70240944, 0x0e73756c, 0x22085243, 0x8b6e696d, 0x6d78240e, 0x896b7261, 0x68632f1d, 0x036b6365, - 0x0770616d, 0x7373656d, 0xc3436761, 0x61702408, 0x42657375, 0x73290773, 0x0c706f74, 0x746e6f66, 0x068d482d, 0x82830920, 0x61687325, 0x430d656b, - 0x2d290701, 0x6e65706f, 0x6464610c, 0x24488272, 0x6f6f622d, 0x200c886b, 0x87cc8263, 0x2a55824a, 0x64690872, 0x6461622d, 0x82076567, 0x2f1c8308, - 0x6e69770f, 0x2d776f64, 0x6978616d, 0x657a696d, 0x69210f88, 0x200f846e, 0x821f860e, 0x6f742a5a, 0x73096572, 0x66776f6e, 0x2c7d826c, 0x61727409, - 0x632d6873, 0x69066e61, 0x27bd826d, 0x6c630973, 0x6f627069, 0x5782708a, 0x7c876e20, 0x66656c23, 0x07974474, 0x67697225, 0x42097468, 0x7533069e, - 0x65670370, 0x6f6d0c6d, 0x2d79656e, 0x6c6c6962, 0x440f312d, 0x782009fd, 0x2005cf44, 0x26d88468, 0x6f687369, 0x84630a70, 0x696b240c, 0x860c676e, - 0x836e200a, 0x2217864f, 0x82776170, 0x24228473, 0x65657571, 0x2316866e, 0x6b6f6f72, 0x25070a44, 0x6c6c7566, 0xe944630c, 0x642d2505, 0x0f73746f, - 0x20091044, 0x20ee822d, 0x0515446b, 0x676e6124, 0x0a857972, 0x7a696425, 0x840c797a, 0x6c662625, 0x65687375, 0x24328564, 0x776f7266, 0x057d416e, - 0x67271c84, 0x616d6972, 0x87096563, 0x0e6e210c, 0x58820988, 0x8a656421, 0x6562240e, 0x89146d61, 0x260e831d, 0x6577732d, 0x89107461, 0x65682514, - 0x73747261, 0x7326108a, 0x6e697571, 0x21891674, 0x2d211085, 0x86288274, 0x258282c5, 0x74732d6e, 0x0f8b7261, 0x478a1f84, 0x6e6f7426, 0x17657567, - 0x10854789, 0x4e852d20, 0x17901520, 0x6e697723, 0x21ca8c6b, 0xe3856b6e, 0x73696b23, 0x83188573, 0x892d2009, 0x830e84d4, 0x842d2036, 0x054641c4, - 0x75616c24, 0x39416867, 0x840a8405, 0x8411202f, 0x850f856d, 0x89218b7f, 0x656d2879, 0x6c622d68, 0x856b6e61, 0x6f722b30, 0x6e696c6c, 0x79652d67, - 0x99417365, 0x61732705, 0x72632d64, 0x4f840d79, 0xf5830c83, 0x830bda41, 0x4610209d, 0x2d2608b3, 0x6f727473, 0x2e86656b, 0x70727525, 0x46736972, - 0x7427060f, 0x64657269, 0x05000000, 0xe830d0fa, 0x0000004a, + 0x0000bc57, 0x00000000, 0x88090100, 0x00000400, 0x00010037, 0x000a0000, 0x00030080, 0x2f534f20, 0x5e6e5f32, 0x0100005f, 0x08158228, 0x6d636028, + 0xa64a7061, 0x0000d09d, 0x0000d804, 0x6c678017, 0x2be96679, 0x0000afde, 0x0000041e, 0x65687cdd, 0x192a6461, 0x2b826b22, 0x0382ac20, 0x82683621, + 0x4a042310, 0x0b820503, 0x0382e420, 0x6d68243c, 0x5e817874, 0x00000d01, 0x00008801, 0x6f6c5003, 0xddb06163, 0x0000b675, 0x1382581c, 0x616daa28, + 0xe3007078, 0x0b82fb07, 0x2f820820, 0x616e202c, 0x1656656d, 0x0000a80d, 0x738280fb, 0x6f70052b, 0xcd397473, 0x0000c9be, 0x213f82ff, 0xab83fe09, + 0x0106032f, 0xcd489c00, 0x3c0f5fda, 0x020b00f5, 0x23008300, 0x77f0bae2, 0xff270787, 0x02b8fff8, 0x82c80187, 0x0008210f, 0x5e821e85, 0xc8260282, + 0x0000b8ff, 0x1f828002, 0x8702f825, 0x8d000100, 0x84d42000, 0x07d42311, 0xad8200f9, 0x1f831a82, 0x258c0120, 0xd1010426, 0x05009001, 0x4c224982, + 0x21826601, 0x85014721, 0x00f52a07, 0x00840019, 0x05000200, 0x85158203, 0x10012102, 0x05840785, 0x5357412a, 0x00c0004d, 0x01ffff21, 0x9b828384, + 0x18824820, 0x03820120, 0x3f010024, 0x0782ac01, 0x0000202c, 0x00008001, 0x20008000, 0x0b82c001, 0x0b00402a, 0x01008001, 0xfaff8001, 0x10220f82, + 0x13824001, 0x0b820020, 0xf9ff4026, 0xfbff4001, 0xfd201782, 0x17830784, 0x4382038b, 0x80202f84, 0x40242382, 0x00021000, 0x0b853782, 0x80010022, + 0x80203b82, 0x2f870f82, 0x0f8b6783, 0x7f851785, 0x1f831783, 0x07871383, 0xfcff4022, 0x0385a383, 0x02fbff22, 0x53830f84, 0xfc220384, 0xc3850002, + 0x00000228, 0x00400200, 0x37820115, 0x00200b86, 0x5382d384, 0x27820f84, 0x4023078c, 0x8302feff, 0x822f849b, 0x8400200b, 0x8400203f, 0xff802223, + 0x214b85fc, 0x0782f8ff, 0x3f861385, 0x37828b88, 0x3f845f84, 0x1f823b82, 0x00800125, 0x82c00110, 0x8cc7863b, 0x875f866f, 0x823b889f, 0x87af83eb, + 0x8307840f, 0x8903823f, 0xfdff223f, 0x83538a01, 0x8502200b, 0x0100216f, 0x03961783, 0x83000221, 0xffff2197, 0xef824788, 0x73830b84, 0x20004023, + 0x84538e02, 0x82c0204b, 0x83378417, 0x2203823b, 0x841d0040, 0x000022d3, 0x20a7901c, 0x0a3341c0, 0x0c203389, 0x67845783, 0x4b820020, 0x8020df87, + 0x57832b91, 0x0220f783, 0x01202382, 0x43891f83, 0x00020022, 0xfb20bb84, 0x77841b83, 0x6f822383, 0x00c00124, 0x0b820110, 0xff000223, 0x200b82fa, + 0x20278620, 0x410785fe, 0x0ba50587, 0x84f8ff21, 0xab779427, 0x222b8247, 0x84150040, 0x8400204b, 0x82042000, 0x82032005, 0x82242003, 0x250b8203, + 0x03003408, 0x0f840100, 0x0a00032e, 0x34080000, 0x10080400, 0xcc010000, 0xda091482, 0x00cc0007, 0x00250021, 0x0039002b, 0x0061005a, 0x00630062, + 0x00650064, 0x00670066, 0x00690068, 0x006b006a, 0x006d006c, 0x006f006e, 0x00710070, 0x00730072, 0x00750074, 0x00770076, 0x00790078, 0x00a9007a, + 0x232823ae, 0x25fe23f3, 0x25cf25a0, 0x26fc25fb, 0x26112600, 0x2639261d, 0x265b265a, 0x265d265c, 0x265f265e, 0x26aa2665, 0x27bd26ab, 0x27092705, + 0x270c270b, 0x27442731, 0x27532746, 0x27552754, 0x27642757, 0x2b1b2b95, 0x2b242b1c, 0xe185e150, 0xf003f0fe, 0xf006f005, 0xf014f007, 0xf017f016, + 0xf01bf01a, 0xf022f01d, 0xf02ef024, 0xf044f03e, 0xf046f045, 0xf05cf059, 0xf067f05d, 0xf06ef069, 0xf073f070, 0xf07cf075, 0xf086f080, 0xf088f087, + 0xf08af089, 0xf096f094, 0xf09df097, 0xf0a2f0a0, 0xf0c5f0a7, 0xf0e0f0c8, 0xf0e6f0e5, 0xf0f3f0eb, 0xf0f7f0f6, 0xf1fef0f8, 0xf111f10c, 0xf115f114, + 0xf11cf11a, 0xf123f11d, 0xf12af128, 0xf144f133, 0xf147f146, 0xf14ef14a, 0xf155f152, 0xf165f15c, 0xf18ef186, 0xf192f190, 0xf1adf196, 0xf1cdf1c9, + 0xf1d9f1d8, 0xf1e3f1db, 0xf1f6f1ea, 0xf1f9f1f7, 0xf20af2fa, 0xf24af249, 0xf250f24d, 0xf25bf252, 0xf274f25d, 0xf27af278, 0xf283f27b, 0xf28cf28b, + 0xf28ef28d, 0xf295f292, 0xf2b6f29c, 0xf2b9f2b7, 0xf2bbf2ba, 0xf2bdf2bc, 0xf2c0f2be, 0xf2c3f2c2, 0xf2d4f2d2, 0xf3edf2dc, 0xf328f302, 0xf3a5f35b, + 0xf410f4d1, 0xf43af425, 0xf441f43f, 0xf445f443, 0xf45cf447, 0xf4adf47d, 0xf5e6f4da, 0xf531f52c, 0xf541f536, 0xf567f556, 0xf58cf57a, 0xf5a5f59c, + 0xf5b8f5b4, 0xf5c2f5c0, 0x00ffffc8, 0x00210000, 0x002a0023, 0x413c0030, 0x04208acd, 0x201ecd41, 0x10cd4157, 0xcd417b20, 0xf0a42418, 0x41c7f0c5, + 0xea2006cd, 0x2012cd41, 0x14cd4118, 0x50f14d36, 0x5bf155f1, 0x85f164f1, 0x90f18ef1, 0x96f191f1, 0xc1f1adf1, 0x2016cd41, 0x08cd4147, 0x5df25428, + 0x78f271f2, 0xcd4179f2, 0x41b42012, 0xc12410cd, 0xd0f2c3f2, 0x200acd41, 0x2acd4158, 0x7ff57928, 0xa4f596f5, 0xcd41b3f5, 0xe0ff2a09, 0xdbffdfff, + 0xd5ffd7ff, 0x82004000, 0x1eab1e27, 0x10000033, 0x2003822e, 0x218e832d, 0x05831e10, 0x1000002b, 0x10131014, 0x0ffb0f0a, 0x210f83f6, 0x0583e40f, + 0x0f2d0383, 0x0fcf0fd0, 0x0fcc0fcd, 0x0fc40fc7, 0x241184bf, 0x0f0000bd, 0x2c0984b3, 0x00a90fab, 0x0fa60f00, 0x0f880f89, 0x22118471, 0x84610f68, + 0x0f5d2607, 0x0f000058, 0x220b8446, 0x833f0f40, 0x2d038307, 0x190f290f, 0x0000180f, 0x130f150f, 0x0782120f, 0x030f0a23, 0x2b6b840e, 0x0000da0e, + 0xad0ec00e, 0xa00eaa0e, 0x0e292983, 0x0e900e96, 0x0e000085, 0x22038283, 0x82370e73, 0x82342005, 0x0e302603, 0x0e2e0e2f, 0x2009821b, 0x24258417, + 0x0e000007, 0x83098306, 0xe00d2503, 0xde0d0000, 0xdd200382, 0xdc200382, 0xd9241184, 0xcc0d0000, 0xc33e0382, 0x9f0db30d, 0x4b0d7a0d, 0xd70c020d, + 0x0000990c, 0x6c0c700c, 0x6a0c6b0c, 0x680c690c, 0x0f82540c, 0xd80b0422, 0x03853183, 0x0b5d0b37, 0x0b3c0b4d, 0x0b2f0b38, 0x0b1b0b28, 0x0b110b18, + 0x000b0b10, 0x831d8501, 0xd8012105, 0x023d01b1, 0x022a0222, 0x02200200, 0x01ec0110, 0x01e801f4, 0x010402e6, 0x01de01f6, 0x023602ea, 0x3001823a, + 0x0230022e, 0x01b20130, 0x01d601d8, 0x01dc01f2, 0x341d82c8, 0x026001f6, 0x01060208, 0x01620164, 0x014c014e, 0x02520194, 0x22418212, 0x848c01b4, + 0x00a42487, 0x82820100, 0x01e62203, 0x240582b0, 0x01e601e2, 0x851783a0, 0x9a012303, 0x15829601, 0x6a016a26, 0x18011c01, 0x05871385, 0x01840127, + 0x01000084, 0x22038244, 0x8346015e, 0x5a012115, 0x03830583, 0x013e0123, 0x22078442, 0x8466015e, 0x231f8207, 0x2c012c01, 0x18270b84, 0xd6002801, + 0x8400c200, 0x34012100, 0x00220684, 0x0785b600, 0x01640127, 0x01000060, 0x250d8514, 0x28010000, 0x0b850a01, 0x82220121, 0x219b8407, 0x17821c01, + 0x0d821a20, 0x97830284, 0x82420121, 0x01002c51, 0x01000010, 0x006a000e, 0x82bc006c, 0x82082009, 0x00062903, 0x00040100, 0x00020100, 0xfe203983, + 0x36841585, 0xde200489, 0x09840a89, 0x05849620, 0x2e00c822, 0x28220182, 0x0d842000, 0x28080493, 0x00020001, 0x00040003, 0x00060005, 0x00120011, + 0x00140013, 0x00160015, 0x00180017, 0x001a0019, 0x001c001b, 0x001e001d, 0x0843821f, 0x22002152, 0x24002300, 0x26002500, 0x28002700, 0x2a002900, + 0x2c002b00, 0x2e002d00, 0x32002f00, 0x34003300, 0x38003700, 0x3c003b00, 0x41003d00, 0x43004200, 0x46004500, 0x4c004800, 0x51005000, 0x55005400, + 0x57005600, 0x5b005900, 0x5e005d00, 0x60005f00, 0x080c9f47, 0x78006d44, 0x7b007900, 0x80007c00, 0x85008300, 0x8b008a00, 0x92009000, 0x94009300, + 0x97009600, 0x99009800, 0x9f009b00, 0xa300a000, 0xa500a400, 0xa900a600, 0xab00aa00, 0xad00ac00, 0xaf00ae00, 0xb100b000, 0xe4830c00, 0x834c0f21, + 0x00002305, 0x07824501, 0x03862120, 0x07820120, 0x03822320, 0x03822520, 0x00000224, 0x03822a00, 0x03822b20, 0x03820520, 0x03823020, 0x03823920, + 0x03820720, 0x03823c20, 0x03825a20, 0x03821120, 0x03866120, 0x07821620, 0x03866220, 0x07821720, 0x03866320, 0x07821820, 0x03866420, 0x07821920, + 0x03866520, 0x07821a20, 0x03866620, 0x07821b20, 0x03866720, 0x07821c20, 0x03866820, 0x07821d20, 0x03866920, 0x07821e20, 0x03866a20, 0x07821f20, + 0x03866b20, 0x07822020, 0x03866c20, 0x07822120, 0x03866d20, 0x07822220, 0x03866e20, 0x07822320, 0x03866f20, 0x07822420, 0x03867020, 0x7120e783, + 0x03830b82, 0x07822620, 0x03867220, 0x07822720, 0x03867320, 0x07822820, 0x03867420, 0x07822920, 0x03867520, 0x07822a20, 0x03867620, 0x07822b20, + 0x03867720, 0x07822c20, 0x03867820, 0x07822d20, 0x03867920, 0x07822e20, 0x03867a20, 0x07822f20, 0x0386a920, 0x07827c20, 0x0386ae20, 0x00008b24, + 0x03852823, 0x825b0021, 0x85f32007, 0x83002103, 0xfe200782, 0x00250385, 0x2500006a, 0x210385a0, 0x07825000, 0x0385cf20, 0x82570021, 0x85fb2007, + 0x20178403, 0x820b82fc, 0x830b8303, 0x250383da, 0x00006900, 0x03851126, 0x825f0021, 0x851d2007, 0x4c002103, 0x39200782, 0x00210385, 0x20078259, + 0x2103855a, 0x0782ab00, 0x03855b20, 0xa3820020, 0x825c2621, 0x2103820b, 0x0782af00, 0x03855d20, 0x82aa0021, 0x855e2007, 0xac002103, 0x5f200782, + 0x00210385, 0x200782ad, 0x21038565, 0x07823200, 0x03822783, 0x2620a783, 0x03825783, 0xbd200b84, 0x03821b82, 0x00790025, 0x85052700, 0x219b8303, + 0x0b820927, 0x00210382, 0x20078251, 0x2103850b, 0x07828500, 0x03850c20, 0x828a0021, 0x85312007, 0x83002003, 0x82442037, 0x2103820b, 0x07829f00, + 0x03854620, 0x53200b84, 0x03820b82, 0x82140021, 0x85542007, 0x200b8403, 0x820b8255, 0x01002103, 0x57200782, 0x0b840385, 0x0b826420, 0xb3830382, + 0x82952721, 0x2503820b, 0x00000600, 0x03851b2b, 0x82b00021, 0x851c2007, 0x200b8403, 0x820b8224, 0x21cb8303, 0x0b82502b, 0x00240382, 0xe1000033, + 0x0383ab82, 0x82300021, 0x85fe200b, 0x31002503, 0x03f00000, 0xd7830385, 0x8204f021, 0x83bb820b, 0x06f0216b, 0x03820b82, 0xf0213b83, 0x820b8207, + 0x34002103, 0xb7820782, 0x0382f020, 0x82a00021, 0x8516200b, 0x65002103, 0x17200782, 0x00210385, 0x20078235, 0x2103851a, 0x0782a300, 0xf020a782, + 0x00210382, 0x200b82a6, 0x2103851d, 0x07825d00, 0x03852220, 0x82360021, 0x20af8207, 0x210382f0, 0x0b823700, 0x03852e20, 0x82380021, 0x853e2007, + 0x39002103, 0x44200782, 0x00210385, 0x2007823a, 0x21038545, 0x07826000, 0x03854620, 0x825f0021, 0x82572007, 0x00592403, 0x823b0000, 0x855c2007, + 0x200b8403, 0x820b825d, 0x3c002103, 0x67200782, 0x00200385, 0xf021db82, 0x820b8269, 0x05002103, 0x6e200782, 0x00210385, 0x2007823e, 0x21038570, + 0x07823f00, 0x03857320, 0x82400021, 0x85752007, 0x41002103, 0x7b200782, 0x7c200382, 0x42206b82, 0x80200782, 0x00210385, 0x20078244, 0x20038586, + 0x20a38300, 0x820b8287, 0x83002003, 0x82882073, 0x2103820b, 0x07826800, 0x03858920, 0x82460021, 0x858a2007, 0x32002103, 0x94200782, 0x00210385, + 0x20078247, 0x21038596, 0x07825000, 0x03859720, 0x82380021, 0x859d2007, 0x48002103, 0xa0200782, 0x00210385, 0x20078249, 0x210385a2, 0x07825400, + 0x0382a420, 0x9b82a720, 0x07824a20, 0x0385c520, 0x824e0021, 0x82c72007, 0x82c82003, 0x824f2017, 0x85e02007, 0x51002103, 0xe5200782, 0xd7840385, + 0x0b82e620, 0xbf840382, 0x0b82ea20, 0x2f82eb20, 0x07825220, 0x0385f320, 0xf6205f84, 0x03820b82, 0x82660021, 0x85f72007, 0x6d002103, 0xf8200782, + 0x00210385, 0x20078255, 0x250385fe, 0x00005600, 0x03850cf1, 0x82570021, 0x85112007, 0x200b8403, 0x820b8214, 0x42002103, 0x15200782, 0x00210385, + 0x20078243, 0x20038218, 0x2077821a, 0x20078258, 0x2103851c, 0x07825b00, 0x03851d20, 0x82370021, 0x85232007, 0x46002103, 0x28200782, 0x00200385, + 0xf1214b82, 0x820b822a, 0x01002103, 0x33200782, 0x00210385, 0x2007825c, 0x21038544, 0x07825d00, 0x03854620, 0x825e0021, 0x85472007, 0x200b8403, + 0x820b824a, 0x5f002103, 0x4d200782, 0x4e200382, 0x60208382, 0x50200782, 0x52200382, 0x21054b46, 0x0b8255f1, 0x00210382, 0x83078203, 0x825c2093, + 0x82652017, 0x8264200b, 0x21078203, 0x07826700, 0x03828520, 0x17828620, 0x07826920, 0x03858e20, 0x82a50021, 0x85902007, 0xa4002103, 0x91200782, + 0x92200382, 0x21053346, 0x0b8296f1, 0x00210382, 0x20078256, 0x210385ad, 0x07826d00, 0x0382c120, 0x3346c920, 0xcdf12105, 0x03820b82, 0x82770021, + 0x85d82007, 0x78002103, 0xd9200782, 0x0b840385, 0x0b82db20, 0x00210382, 0x20078257, 0x210385e3, 0x07827900, 0x0385ea20, 0x827a0021, 0x85f62007, + 0x7b002103, 0xf7200782, 0x0b840385, 0x0b82f920, 0x00210382, 0x2007827c, 0x250385fa, 0x00001500, 0x03850af2, 0x827d0021, 0x82472007, 0x82492003, + 0x827e208f, 0x854a2007, 0x80002103, 0x4d200782, 0x00210385, 0x20078281, 0x21038550, 0x07828300, 0x03855220, 0x82820021, 0x82542007, 0x825b2003, + 0x2017833b, 0x820b825d, 0x8b002103, 0x71200782, 0x74200382, 0x8c201782, 0x78200782, 0x00210385, 0x20078290, 0x20038279, 0x8317827a, 0x827b200b, + 0x2103820b, 0x0782b100, 0x03823f83, 0x82480021, 0x823f830b, 0x92002103, 0x3f830b82, 0x0b840382, 0x0f828d20, 0x00210382, 0x20078293, 0x8403858e, + 0x8227830b, 0x02002103, 0x95201382, 0x00210385, 0x20078204, 0x2103859c, 0x07823d00, 0x0382b420, 0x0000b624, 0x07829400, 0x0385b720, 0x82960021, + 0x85b92007, 0x97002103, 0xba200782, 0x0b840385, 0x0b82bb20, 0x00210382, 0x20078298, 0x840385bc, 0x82bd200b, 0x2103820b, 0x07829900, 0x0385be20, + 0xc0200b84, 0x03820b82, 0x82340021, 0x82c12007, 0x82c22003, 0x829a206b, 0x85c32007, 0x9b002103, 0xd0200782, 0xd2200382, 0x97831782, 0x0b82d420, + 0x00210382, 0x200782a9, 0x210385dc, 0x07829f00, 0x0385ed20, 0x00a00025, 0x8502f300, 0xa1002103, 0x28200782, 0x00210385, 0x200782a2, 0x24038258, + 0x0000005b, 0x200782a3, 0x210385a5, 0x0782a700, 0x0385d120, 0x00a80025, 0x8510f400, 0x215f8303, 0x0b8225f4, 0xfb830382, 0x823af421, 0x2103820b, + 0x0782aa00, 0x03853f20, 0x82ab0021, 0x85412007, 0xac002103, 0x43200782, 0x00210385, 0x200782ad, 0x21038545, 0x0782ae00, 0x03854720, 0x82af0021, + 0x855c2007, 0xb0002103, 0x7d200782, 0x00210385, 0x20078255, 0x210385ad, 0x0782b100, 0x0385da20, 0x82b20021, 0x85e62007, 0x24838303, 0x00002cf5, + 0x210382f5, 0x07821200, 0x03853120, 0x82130021, 0x85362007, 0x11002103, 0x41200782, 0x00210385, 0x20078204, 0x21038556, 0x0782b300, 0x03856720, + 0x82b40021, 0x82792007, 0x007a2403, 0x82b50000, 0x827f2007, 0x828c2003, 0x82b7200b, 0x82962007, 0x829c2003, 0x82c5200b, 0x82a42007, 0x82a52003, + 0x82cc200b, 0x823f8307, 0xce002137, 0xb8200b82, 0x00210385, 0x200782d0, 0x210385c0, 0x0782d100, 0x0385c220, 0x82d20021, 0x85c82007, 0xd3002503, + 0x19f30100, 0x00220384, 0x07826a00, 0x03844b20, 0x47000022, 0xe2200782, 0x00220384, 0x07826d00, 0x0384e520, 0x55000022, 0xf4200782, 0x00260384, + 0x01003700, 0x038441f4, 0x3e000022, 0x4d200782, 0x00220384, 0x07826700, 0x03844e20, 0x68000022, 0x64200782, 0x00220384, 0x07823400, 0x03848e20, + 0xa7000022, 0x99200782, 0x00220384, 0x07823200, 0x03849a20, 0x9b200b85, 0x9b200b82, 0x3220d782, 0x9c200782, 0x17850384, 0x0b82a120, 0x1782a120, + 0x07825320, 0x0384ac20, 0xb1000022, 0xb2200782, 0x00220384, 0x07820300, 0x0384b320, 0x48000022, 0xbe200782, 0x00220384, 0x07824f00, 0x0384c120, + 0x42000022, 0xc2200782, 0x00220384, 0x07824300, 0x0384c420, 0x65000022, 0xc5200782, 0x00220384, 0x07825c00, 0x0384c620, 0xcb200b85, 0xcb200b82, + 0xa2207782, 0xf0200782, 0x00260384, 0x01007a00, 0x038414f5, 0x54000022, 0x15200782, 0x00220384, 0x07827b00, 0x03841620, 0x38000022, 0x18200782, + 0x00220384, 0x07826c00, 0xf521ff82, 0x20478234, 0x200b8257, 0x22038435, 0x82570000, 0x21cf8207, 0x178253f5, 0x82201383, 0x82200f82, 0x51200b82, + 0x96200782, 0x00220384, 0x07828800, 0x0384a420, 0x32000022, 0xaa200782, 0xd7840384, 0x82b4f521, 0x82b4200b, 0x8249202f, 0x84b92007, 0x00002203, + 0x20078266, 0x220384bb, 0x82720000, 0x84bf2007, 0x21fb8403, 0x0b82c1f5, 0x2f82c120, 0xf520fb82, 0x0382d782, 0xf521fb84, 0x201782ce, 0x831782ce, + 0x82d5203b, 0x82d5200b, 0x829d200b, 0x84d62007, 0x00002203, 0x2007829c, 0x220384e9, 0x82410000, 0x84ea2007, 0x00002203, 0x20078245, 0x260384fa, + 0x00900000, 0x8400f601, 0x00002203, 0x200782b8, 0x22038401, 0x82c90000, 0x84022007, 0x00002203, 0x200782c0, 0x22038403, 0x82b90000, 0x84042007, + 0x00002203, 0x200782ba, 0x22038405, 0x82bb0000, 0x84062007, 0x00002203, 0x200782bd, 0x22038409, 0x82b20000, 0x840a2007, 0x00002203, 0x200782d0, + 0x2203840d, 0x82bc0000, 0x84102007, 0x00002203, 0x2007825a, 0x22038417, 0x82c50000, 0x84182007, 0x00002203, 0x200782c7, 0x22038419, 0x82c60000, + 0x841b2007, 0x00002203, 0x200782c1, 0x2203841c, 0x82c30000, 0x841d2007, 0x00002203, 0x200782c2, 0x22038420, 0x82b30000, 0x84222007, 0x00002203, + 0x200782cf, 0x22038426, 0x82b60000, 0x842b2007, 0x00002203, 0x200782d3, 0x2203842c, 0x82b70000, 0x842d2007, 0x00002203, 0x200782ce, 0x2203842e, + 0x82d20000, 0x84332007, 0x00002203, 0x200782b5, 0x22038436, 0x82cc0000, 0x84422007, 0x00002203, 0x20078258, 0x26038444, 0x00cd0000, 0x84e0f701, + 0x00002203, 0x20078257, 0x850384e1, 0x82e2200b, 0x00e2210b, 0xe3200b85, 0xe3200b82, 0xe4200b86, 0xe4200b82, 0xe5200b86, 0xe5200b82, 0xb0200b82, + 0xe6200782, 0x00220384, 0x0782b000, 0x0384e720, 0xe8200b85, 0xe8200b82, 0xe9202386, 0xe9200b82, 0xea200b86, 0xea200b82, 0xeb200b86, 0xeb200b82, + 0xf9230b85, 0x8201000d, 0x00002203, 0x20078232, 0x8503840e, 0x821a200b, 0x821a200b, 0x82852023, 0x84232007, 0x00002203, 0x200782be, 0x22038429, + 0x82bf0000, 0x84e12007, 0x202f8503, 0x200b82ed, 0x06f74eed, 0x0050d109, 0x01ea0082, 0x01ba0174, 0x022c02fe, 0x029e0270, 0x033403e0, 0x04bc036c, + 0x04280404, 0x05f004a8, 0x05400516, 0x06c80566, 0x067c064c, 0x071e07dc, 0x07a20764, 0x082408d4, 0x08840856, 0x09ec08ba, 0x0944090c, 0x0ac40974, + 0x0a600a06, 0x0b360bac, 0x0b8e0b5a, 0x0cf00bb4, 0x0c480c22, 0x0dda0c78, 0x0ea40d2a, 0x0e7a0e08, 0x0f9e0fe4, 0x103610fa, 0x112e119a, 0x121412aa, + 0x146e13b0, 0x15c01424, 0x15801532, 0x163416d4, 0x172a17e8, 0x183c18d0, 0x1a7219b0, 0x1bfa1a34, 0x1c2e1cc0, 0x1de01c9e, 0x1ec61d38, 0x23c41e5c, + 0x24002498, 0x25f82450, 0x2730269e, 0x28ae2758, 0x286a2816, 0x2a8c29c6, 0x2a6e2a14, 0x2b222bc8, 0x2cce2b68, 0x2e322d80, 0x2e7a2e02, 0x2f462fd2, + 0x31a030ea, 0x328a3118, 0x337e3200, 0x34a23322, 0x35903418, 0x3684353a, 0x37ee363e, 0x38ea376c, 0x3a283992, 0x3bae3a66, 0x3b7a3b1a, 0x3d983ce6, + 0x3e063e4e, 0x3f2e3f7e, 0x41de40fe, 0x42e44168, 0x43d2424e, 0x449e4346, 0x44764400, 0x463045e4, 0x47824624, 0x48b44724, 0x49c24842, 0x49884944, + 0x4a124aa0, 0x4c804be4, 0x4c784c0e, 0x4d3c4dda, 0x4e2c4eb4, 0x4f0c4f7c, 0x50185076, 0x51365196, 0x524052ac, 0x530253da, 0x556654be, 0x56da5520, + 0x584a57aa, 0x59ba5818, 0x5b4a5a5e, 0x5c1a5c5c, 0x5ec05dcc, 0x60d45f94, 0x62646194, 0x63e26240, 0x665e65f2, 0x6838679a, 0x69d66828, 0x6af66974, + 0x6c7a6bca, 0x6d1e6d2a, 0x6e0a6e74, 0x000000be, 0xff000005, 0x018001c0, 0x000600c0, 0x0014000d, 0x0035001b, 0x07373700, 0x11312737, 0x33233317, + 0x37073127, 0x11172717, 0x23310682, 0x31172333, 0x37362137, 0x37363131, 0x17163121, 0x2c168216, 0x07060706, 0x27263121, 0x30112726, 0x26008273, + 0xe6e6e61d, 0x82907373, 0x56732109, 0xfe2b0a84, 0x0e0d01cd, 0x14200114, 0x83010d0e, 0xe0fe2109, 0x1a210983, 0x250082a6, 0xa62ab4fe, 0x0882d0a6, + 0x834c0121, 0x20218806, 0x29098760, 0x0200a001, 0xe0ff2000, 0x09826000, 0x1e000b2a, 0x26130000, 0x11070627, 0x36247b82, 0x32031137, 0x35318983, + 0x23262734, 0x15060722, 0x33161714, 0x16160258, 0x22038302, 0x82090e18, 0x850e2000, 0x88012105, 0xfe211483, 0x250583e0, 0x58fe2001, 0x18860909, + 0x00201e82, 0x022c0082, 0xdeff0000, 0xa201c001, 0x51004800, 0x16296382, 0x33310707, 0x36313731, 0x25098517, 0x07061716, 0x13833123, 0x06250987, + 0x37372627, 0x87138331, 0x27262409, 0x82333736, 0x31232133, 0x36250987, 0x37070717, 0x2b138407, 0x0f0215bd, 0x1607106f, 0x470e0315, 0x51228483, + 0x06834e1d, 0x83115721, 0x6f0f2112, 0x48200685, 0x5820198a, 0x062e2c82, 0x6f1d1d1d, 0x9f016f1d, 0x554b1606, 0x05820315, 0x9020d883, 0x55230483, + 0x83070215, 0x8a058314, 0x97032214, 0x2c008290, 0x00010000, 0x01c0ff0b, 0x00c00134, 0x29cd825d, 0x07062726, 0x23223115, 0x01820706, 0x84161721, + 0x31332101, 0x11830784, 0x83262721, 0x06072101, 0x31261784, 0x32173231, 0x1d821533, 0x35373625, 0x82373631, 0x211f8501, 0xd7822727, 0x11832982, + 0x83363721, 0x3637212b, 0x35211982, 0x087e83b8, 0x24040528, 0x0609211f, 0x14160d0c, 0x02181819, 0x040d1e34, 0x1f040305, 0x18123621, 0x0b151118, + 0x1c151307, 0x0203141b, 0x2c830203, 0x33191d23, 0x302a8e0d, 0x1d110f05, 0x181f1e1d, 0x14030715, 0xa8012a1e, 0x08288216, 0x12023024, 0x181f2a14, + 0x070c0d18, 0x100c0608, 0x11080809, 0x070d0d16, 0x08060603, 0x0a151407, 0x03070709, 0x28833201, 0x09023124, 0x28873412, 0x110b0123, 0x2f298208, + 0x020b0915, 0x06050402, 0x07161503, 0x00320507, 0x03310082, 0x01000100, 0x7f017f01, 0x18000b00, 0x00002500, 0x22bf8201, 0x82310107, 0x013722f7, + 0x25d98205, 0x16070607, 0xdf821617, 0x0c8c0120, 0x0e0e7126, 0xc0fe1111, 0x01290583, 0x01fffe40, 0x17181817, 0x20058601, 0x260d8c00, 0x0e11114f, + 0x83c0fe0e, 0x40012805, 0x0c0f1b0f, 0x851b0f0c, 0x00ff2105, 0x7a820d8b, 0xfffaff2f, 0x018601e0, 0x003000a0, 0x17161300, 0x086b4215, 0x16311731, + 0x27270607, 0x06311531, 0x35272607, 0x42310731, 0x273c055f, 0x36372631, 0x35311717, 0xc0373631, 0x14830216, 0x87110a0d, 0x0d0a1187, 0x16028314, + 0x01330f8f, 0x9d1602a0, 0x14110a51, 0x0d54540d, 0x510a1114, 0x9102169d, 0x82002011, 0x10002987, 0xb001f0ff, 0x1f009001, 0x20082742, 0x22798223, + 0x82331716, 0x17162681, 0x31353736, 0x25718233, 0x31232726, 0x6883f835, 0x4983a020, 0x16215e82, 0x21098502, 0x108e7801, 0x53432484, 0x01e02207, + 0x22e38240, 0x822c0015, 0x0535445d, 0x83171621, 0x070621ed, 0xdf82dd83, 0x07063723, 0x216f8231, 0x17833115, 0x83373621, 0x27262c6f, 0x02002726, + 0x44442d2d, 0x87022d2d, 0x30a02807, 0x0101201f, 0x87301f20, 0x00012107, 0x80201e87, 0x70200888, 0x80202083, 0x08842187, 0x012a8882, 0xe0fffaff, + 0xa3010001, 0x85821d00, 0x2627342d, 0x06310707, 0x37371617, 0x86311131, 0x363322eb, 0x2be18337, 0x0d0c9811, 0x0911680c, 0x5044130e, 0x6821d583, + 0x23058368, 0x0e880150, 0x4027ae82, 0x0a11140d, 0x44b3fe29, 0x0121075f, 0x205b8478, 0x835b82f9, 0x822b20e3, 0x8306205b, 0x26272159, 0x36215982, + 0x055f4337, 0x09831183, 0x84062145, 0x34df8319, 0x1d2a9423, 0x0e111124, 0x3e2b240e, 0x27283c07, 0xa62c0102, 0x086c83d3, 0x10f0fe20, 0xd30b0506, + 0x1a01011c, 0x0107271b, 0x241c0170, 0x11110e0e, 0x02012b23, 0x3d3c2827, 0x7e839c2a, 0x0f0e012a, 0x281cc60b, 0x011a1b27, 0xfb208384, 0x3a208386, + 0x97458382, 0x87898206, 0x07062781, 0x27223123, 0x41422726, 0x17162507, 0x37363133, 0xf383f183, 0x95828d82, 0x31232d08, 0x02002726, 0x10000116, + 0x950b0606, 0x26253828, 0x25260101, 0x181e5b38, 0x08010e19, 0x020b1512, 0x245b2111, 0x01011817, 0x64241718, 0xc4242484, 0x88010216, 0x8b820382, + 0x82018f21, 0x2933832b, 0x041a0f10, 0x12080b15, 0x28841e04, 0x1f833084, 0x84160221, 0x82fd20a7, 0x018024a7, 0x832700a6, 0x262728a7, 0x06310307, + 0x42331617, 0x8d821269, 0x15070631, 0x37312331, 0x141309bd, 0x0606900c, 0x83f80d08, 0x162825f9, 0x28160202, 0xd02d0983, 0x147d017d, 0xfe13090c, + 0x0c0b0cf0, 0x20168368, 0x20168368, 0x21098398, 0x6e82ed98, 0xff010022, 0x20071741, 0x206f8337, 0x05874137, 0x2307c545, 0x07061716, 0x281d1941, + 0x37262722, 0x13052037, 0x225283d0, 0x418717bc, 0x5f2d0714, 0x0c17171c, 0x15120705, 0x1d0e050b, 0x2ce3845f, 0xa4241718, 0x0107070b, 0x138c0120, + 0x20868301, 0x07114188, 0x190e0e29, 0x070c1508, 0x411a0812, 0x09230811, 0x43b80b08, 0xa72a0b1f, 0x2c001400, 0x26250000, 0xf7843127, 0x06310723, + 0x070d4315, 0x33362722, 0x2e430a83, 0x37362107, 0x29069246, 0x20011001, 0x2032301f, 0x13431905, 0x077e2207, 0x0b2f4307, 0x8b290131, 0x0c101210, + 0x1f308049, 0x23010120, 0x84271f06, 0x21348208, 0x5b43019f, 0x2c40270b, 0x100c10ab, 0x90825a12, 0x00000128, 0x4301daff, 0x8f82a001, 0x36130031, + 0x32312137, 0x03071617, 0x26270631, 0x42311337, 0x102b0721, 0x0606070e, 0x12140df0, 0x42e6da0a, 0x0c2c0501, 0x70fe0c0c, 0x140d0912, 0x16026c01, + 0x03204782, 0xf7434782, 0x00222705, 0x00630044, 0xd9850100, 0x83312321, 0x171621c6, 0xdf840582, 0x28058542, 0x27262734, 0x33073736, 0x83e88823, + 0x24138369, 0x31333736, 0x85018230, 0x30352305, 0x0c823131, 0x12842320, 0x34842620, 0x31096443, 0x30010706, 0x35232301, 0x23233528, 0x1b290201, + 0x0d831010, 0x0d834820, 0x1b101031, 0x107c0229, 0x16201010, 0x15010115, 0x87482016, 0x28102208, 0x880a8728, 0x24012108, 0x3c833383, 0x11243a25, + 0x87221c1b, 0x1c22260d, 0x3a24111b, 0x873f837c, 0x20078333, 0x41108f30, 0xd92407d7, 0xa0014001, 0x2c05d741, 0x31171613, 0x36171631, 0x36313737, + 0x82b88335, 0x170723ff, 0xc3872306, 0x2705df41, 0x27063107, 0x30373726, 0x2126d641, 0xd7410001, 0x01fb242d, 0x82850185, 0x003c088f, 0x05071601, + 0x16310531, 0x25270607, 0x34272631, 0x36312537, 0x077e0117, 0x01dbfe12, 0x0b081225, 0x0cb0fe15, 0x50010d01, 0x73010c15, 0x93920c15, 0x0812150b, + 0x0e0f06a8, 0x1208a807, 0x023bdc82, 0x50001000, 0x3001b001, 0x17000b00, 0x06130000, 0x21171607, 0x26373631, 0x8a152127, 0x1628260b, 0x01160202, + 0x21058370, 0x0b8b90fe, 0x45300121, 0xb020073e, 0x00270887, 0xfffbff01, 0x858001fb, 0x0613229f, 0x229f8317, 0x83161706, 0x34372199, 0x0727a583, + 0x01120803, 0x83dbfe25, 0x5001219e, 0xfe239e82, 0x8a0b15b0, 0x0e07259e, 0x07a8070f, 0x00209e83, 0xff299f82, 0x013001e0, 0x003400a0, 0x08734647, + 0x24050945, 0x07063115, 0x066b4607, 0x35373626, 0x37373431, 0x3627b982, 0x26313535, 0x42272627, 0x3622079d, 0x544a1337, 0x01402e11, 0x20221716, + 0x01161722, 0x23341f01, 0x2cba8301, 0x0e19350e, 0x2425010e, 0x25362036, 0x20118424, 0x0c704a60, 0x36822d85, 0x16260528, 0x022a1922, 0x02820216, + 0x220a112b, 0x1e1a1a12, 0x25243605, 0x833b8301, 0xc0fe2114, 0x2f0e8c4a, 0xff000002, 0x010002c0, 0x004a00c0, 0x01000057, 0x21052147, 0x28421716, + 0x43ab8305, 0x3621051d, 0x83138537, 0x070623d7, 0x51472726, 0x37362105, 0x03831783, 0x15311529, 0x16171431, 0x87373233, 0x481720e3, 0x00280cd7, + 0x023b3b58, 0x583b3b02, 0x482b8583, 0x22223a39, 0x22220101, 0x8648393a, 0x1a1a270b, 0x231a3127, 0x17853336, 0x202c332c, 0x02160d07, 0x13130c0d, + 0x35830d0c, 0x23014826, 0x01232424, 0x90200586, 0x50841283, 0x02161622, 0x5284468c, 0x1a271c27, 0x2502011a, 0x201a8325, 0x26518433, 0x02010a1a, + 0x821c5016, 0x2052824c, 0x2639831c, 0x141529d0, 0x85291514, 0x00002f05, 0xfbff0200, 0x8501dbff, 0x1500a001, 0x9d481c00, 0x47032006, 0x3f0806b9, + 0x31173133, 0x27363716, 0x33231303, 0x17313723, 0x101006d6, 0x1407a806, 0xe0220a15, 0x14150a22, 0xb746a807, 0x5c5bb7b7, 0x010e9101, 0x70fe0e01, + 0x14070a15, 0x07145151, 0x9001150a, 0xdadadffe, 0x00215e82, 0x08a74403, 0x31001f24, 0x61824200, 0x25056941, 0x31153115, 0x25471716, 0x059f4407, + 0x26272625, 0x82172327, 0x3135216b, 0x440b7544, 0x353f0fb6, 0x0f101838, 0x100f0101, 0x23358c18, 0x13130123, 0x0101241f, 0x6c352323, 0x7474746c, + 0x446c0701, 0x0d82073b, 0x0b879420, 0x01078c24, 0x3283a001, 0x84a8a821, 0x252e823c, 0x0f1e1d25, 0x41833623, 0x8290c821, 0x1615221d, 0x0d6c4420, + 0x83900721, 0xff0131bf, 0x01d8fff9, 0x00a70187, 0x01000028, 0x31312326, 0x2407034d, 0x17363732, 0x09d94b16, 0x2a09b14b, 0x01270607, 0x45453658, + 0x83323236, 0x11102505, 0x382c0e0e, 0x2c220082, 0x00820e2c, 0x0b852c20, 0x110e0e2d, 0x343c0110, 0x46463634, 0x82343436, 0x2b12220d, 0x2200820f, + 0x82392d2b, 0x2c2c2700, 0x0f0e0e0f, 0x3982112c, 0x2909c346, 0x00a00180, 0x002d0011, 0x994d1300, 0x0a5f4805, 0xf5490720, 0x05814305, 0x06171622, + 0x07209583, 0x2105e145, 0xdb823811, 0x68072908, 0x0232314b, 0x4b313202, 0x0f013868, 0x3f681810, 0x1e1d3332, 0x1d1e0101, 0x683f3233, 0x010f1018, + 0x07017001, 0x0107b0fe, 0x2b832383, 0x14840820, 0x2b861f84, 0x01243682, 0x01000050, 0x8508cf41, 0x05574a89, 0x4809cb41, 0xcf4a05ed, 0x3631220a, + 0x06db4a37, 0x2808b641, 0x020216f0, 0x0107f016, 0x220783b8, 0x850701b8, 0x0b9f410f, 0x16160226, 0x98070102, 0x88200683, 0x0d829482, 0x00820020, + 0x23207b89, 0x4b0e4742, 0x718e0c41, 0x69934483, 0x84d0a021, 0x2463947e, 0x00a001c0, 0x48638832, 0x23200727, 0x2006734e, 0x05f74132, 0x25440720, + 0x0607250e, 0xe0272627, 0x24076941, 0x0a303044, 0x28618395, 0x0c0b119f, 0x3e3e0901, 0x0b74415a, 0x0f3d5829, 0x3012100d, 0x41700145, 0x01230771, + 0x83422a2b, 0x0c0c268b, 0x3a395912, 0x059b4102, 0x02263285, 0x0f121037, 0xfe822c0d, 0x7f410020, 0x01802a06, 0x002200a0, 0x35152500, 0x053e4c15, + 0x9a823520, 0x15070625, 0x85312131, 0x05ba4f09, 0x21313524, 0x02465001, 0xe0fe2107, 0x2408544b, 0xc8c8c020, 0x219b83c8, 0x0583a8e8, 0x83989821, + 0x70fe2105, 0xc8200583, 0x210c6741, 0x7d46001f, 0x4b332005, 0x874608c5, 0x82232005, 0x06d5410f, 0x35831820, 0x3b847020, 0x89100121, 0x0188220b, + 0x206e83a0, 0x830584fe, 0x60012109, 0x3f420583, 0x8220200a, 0x07d950cc, 0x26272625, 0x45313527, 0x6d41054f, 0x82112007, 0x2801210f, 0xa44c5182, + 0x16162207, 0x07874902, 0x83160221, 0xf8fe215e, 0x83078c49, 0x28162126, 0x2308b54c, 0x00021608, 0x012a0082, 0xd9ff0000, 0xa7014701, 0xd1502100, + 0x07734f08, 0xdb443720, 0x31272a06, 0x27363137, 0x31070726, 0x08354735, 0x0f94502d, 0x9a0a1013, 0x110e0e97, 0x5001e711, 0xf02105d4, 0x2f898280, + 0xd4507616, 0x130f0b11, 0x111197da, 0xd6e70e0e, 0x20206384, 0x2006174c, 0x83638212, 0x07014bcf, 0x83272621, 0x163823c1, 0x3983d802, 0x0483f020, + 0x8820b484, 0x21058641, 0xa4849001, 0x2405d342, 0x00a301c0, 0x263f8224, 0x31131736, 0x51363113, 0x418306f1, 0x0631072b, 0x27272223, 0x06311131, + 0x28518507, 0xb40a1111, 0x10110ab4, 0x24478301, 0x0d0d079c, 0x05ae4c07, 0x9f01102c, 0xeffe0e04, 0x040e1101, 0xcc411106, 0x40012705, 0xed0b0bed, + 0x7b84c0fe, 0x06119022, 0x0024af84, 0x8001ddff, 0x1c206f82, 0x01206f84, 0x36215982, 0x06874137, 0x0d832720, 0x10246787, 0x26010b0f, 0x01256383, + 0xfe0b0f0f, 0x270985da, 0x0c059e01, 0x4e01a3fe, 0x27053042, 0x0b040710, 0xb2fe5e01, 0x10215f85, 0x2c5f8206, 0xff000002, 0x01c001e0, 0x001a00a0, + 0x22618235, 0x82310722, 0x150622b9, 0x2ed38214, 0x37323316, 0x35363736, 0x27262734, 0x46172326, 0xde830508, 0x2207a549, 0x83323336, 0xe0172526, + 0x18282830, 0x28220082, 0x09893028, 0x1d01e02c, 0x3b35341e, 0x1e34353b, 0x0b8c011d, 0x1718702a, 0x2e2e2a29, 0x1817292a, 0xb02a0989, 0x1f33333d, + 0x331f1e1e, 0x09893d33, 0x85000021, 0x8240209f, 0x0011229f, 0x4b9f822c, 0x35240c12, 0x03373631, 0xb84d1182, 0x07062309, 0xaa460706, 0x37362705, + 0x70703835, 0x7c852c70, 0x01782c3a, 0x78780807, 0x2b2a4178, 0x2a2b0202, 0x10187041, 0x1602010f, 0x70010216, 0x2c209a82, 0xc8242583, 0x00ff0107, + 0x23831b83, 0x100f012a, 0x1690e018, 0x78160202, 0xb9228385, 0x8382c701, 0x38001a25, 0x4a370000, 0x3b4e07bb, 0x05354e07, 0x05207a83, 0x48056e48, + 0x06210d8a, 0x06be5007, 0x3202302d, 0x2b364b31, 0x12100d5b, 0x452a5b0f, 0x012308bb, 0x44483830, 0x0b850b6b, 0x363a0236, 0x0f130f0d, 0x314bc036, + 0x1c010232, 0x0d0f136b, 0x44306b10, 0x2107ae44, 0x0e4627b8, 0x28398b06, 0x12413e5a, 0x400f0d0f, 0x22b38500, 0x824701d9, 0x002322b3, 0x147d4536, + 0x20052b48, 0x09f54e27, 0x2111c947, 0x26413823, 0x776e3f07, 0x0b11130e, 0x1d1d2e65, 0x26270101, 0x8078803a, 0x07018080, 0x19192580, 0x19190101, + 0x0c460825, 0xb0c03705, 0x16020216, 0x0b11a698, 0x0c8d130f, 0x3a312424, 0xe0012726, 0x238407a8, 0x002c2b83, 0xfcff0100, 0x4401d9ff, 0x5e00a701, + 0x06229584, 0x01821617, 0x30173223, 0x05b74931, 0x2605a147, 0x27263131, 0x83222726, 0x05555305, 0x16202584, 0x22087753, 0x84303127, 0x22258221, + 0x84311737, 0x212185c3, 0x37820607, 0x27263308, 0x31073137, 0x245b0726, 0x06060306, 0x013b230f, 0x1b1c1b01, 0x0c0e1817, 0x36390e06, 0x19191447, + 0x05080115, 0x16090515, 0x05040403, 0x10161615, 0x2a86263e, 0x84033a21, 0x0d0d2429, 0x83181806, 0x0c3a082b, 0x150d1617, 0x0b160704, 0x040b1615, + 0x01263e04, 0x17210f65, 0x150b0d0c, 0x0907010e, 0x1c0f0f0a, 0x173d241c, 0x08030b15, 0x01030708, 0x05141609, 0x01020101, 0x03070707, 0x28891109, + 0x84090a21, 0x04042128, 0x02222a83, 0x4f820404, 0x82031421, 0x1802247a, 0x45110918, 0x802408bf, 0x1500a001, 0x250abf45, 0x37361716, 0xb5453111, + 0x02902a0b, 0x90021616, 0x16020216, 0x06ad45a8, 0x0c838820, 0x83780121, 0x20478c17, 0x21478220, 0x3f521716, 0x05ab450b, 0x23086152, 0x18373631, + 0x28253b82, 0x293d3d29, 0x82508228, 0x3636250b, 0x36365252, 0x5b830b82, 0x1684e820, 0xe8201e82, 0x16211982, 0x821884e8, 0x510d8220, 0x8522085b, + 0x134fa501, 0x07034505, 0x31030737, 0x27260706, 0x37263103, 0x920a150f, 0x14150a92, 0x0f07a807, 0x3604820f, 0x079e0114, 0x01a5fe14, 0x0a07145b, + 0x0e70fe15, 0x010e0101, 0x840a1590, 0xfffc264b, 0x014402e0, 0x0b4f45a4, 0x90163721, 0x205b8353, 0x2a5b8422, 0x770a1510, 0x11110663, 0x82776306, + 0x05200861, 0x10110790, 0x06616106, 0x91061110, 0x9f011405, 0xb5fe1405, 0x01104a01, 0xb6fe1001, 0x05144b01, 0x0f206f83, 0x01260d82, 0x10bdfe43, + 0x76861001, 0xff01002c, 0x01d9fff9, 0x00a70187, 0xf354001f, 0x31072905, 0x07263127, 0x31171706, 0x43070953, 0x37310721, 0x0f0d7a01, 0x96960f13, + 0x0d10120f, 0x100d9b9b, 0x2d0b8812, 0x0f127901, 0xb2b2100d, 0x120f0d10, 0x0b82b9b9, 0x86b30f21, 0x0807530b, 0x17236383, 0x85130000, 0x09cf465b, + 0x3805c546, 0x130e2b27, 0x02a30c11, 0xa3021616, 0x0e13110c, 0x96019595, 0x130e0c11, 0x054854e2, 0x0e13e226, 0xcdcd110c, 0xff29a282, 0x01e0fffc, + 0x00a00184, 0x0acf521c, 0x21310125, 0x53171631, 0x0d830747, 0x2e05b152, 0x06070f50, 0x01d2fe0a, 0x0202161c, 0x83b0fe16, 0x2f01230d, 0x9a50e3fe, + 0x0d012505, 0x98fe0c0e, 0x09827183, 0x69010b22, 0x21099f50, 0x5f820002, 0x26001924, 0x63824800, 0x16313024, 0x5d823333, 0x3005a448, 0x31333736, + 0x31371732, 0x07173107, 0x15212121, 0x26748531, 0x17273735, 0x4e232627, 0x11200527, 0xf94e2d82, 0x37363e05, 0x27263111, 0x31232726, 0x10fc2722, + 0x010f9d17, 0x0f0160fe, 0x22050686, 0x01cc2b22, 0x370c82a0, 0xfe0f01a0, 0xee010f80, 0x132b2b2b, 0x121b851b, 0x12010112, 0x80011b12, 0x9d2b0987, + 0x40010203, 0x200f0110, 0x83010f60, 0xb0702735, 0x0f01010f, 0x2f8392b0, 0xfe212983, 0x203388c0, 0x20098300, 0xa4b35902, 0xe0ff0032, 0x9d010002, + 0x62002b00, 0x27170000, 0x31272717, 0x25054849, 0x17363736, 0x05821716, 0x31303724, 0x0b833130, 0x15171627, 0x07070631, 0x05504831, 0x27301323, + 0x82188231, 0x05f94404, 0xe8460720, 0x17162505, 0x31373117, 0x20071f56, 0x83158226, 0x079b083e, 0x30073031, 0x22230631, 0x0303e227, 0x012faf03, + 0x35202101, 0x0b0e323e, 0x06050806, 0x20353e32, 0x2f010121, 0x110d03af, 0x010d0d11, 0x18181212, 0x1616231a, 0xaf200101, 0x010120af, 0x1a231616, + 0x12121818, 0x0a0a0701, 0x02021407, 0x412da302, 0x27283603, 0x09230b0b, 0x0506070d, 0x0b0a2304, 0x03362828, 0x02a32d41, 0x43010c0c, 0x08141401, + 0x1b070508, 0x2c03251a, 0x1fa3a31f, 0x1a25032c, 0x0805071b, 0x01141408, 0x02000707, 0xbcff1500, 0xc0012b02, 0x47002800, 0x83010000, 0x311724b1, + 0x82161716, 0x061647da, 0x210dcd57, 0xd1843737, 0x37071522, 0x0721cd82, 0x20238331, 0x82118307, 0x312722e9, 0x821d8226, 0x27272d05, 0x070f2001, + 0x050f9944, 0x1a6f0a04, 0x5e088682, 0x0d89890d, 0x1a020c0c, 0x05040a6f, 0x0744990f, 0x3535350f, 0x56760d05, 0x6a150108, 0x14690b0b, 0x76560902, + 0x0135050d, 0x8d0d01c0, 0x0e0e0316, 0x0e9c6e0a, 0x4907080a, 0x09090749, 0x0a6e9c0e, 0x16030e0e, 0x4f010d8d, 0x0b6c6c6c, 0x09551103, 0x0638780c, + 0x0c783806, 0x03115509, 0x82006c0b, 0x00042400, 0x82c0ff00, 0x00c02b3f, 0x0027000c, 0x004c0035, 0x38500100, 0x3423260b, 0x36313137, 0x06114937, + 0x82141521, 0x062949bc, 0x21033524, 0x4c512121, 0x0cfb4d09, 0x232e2682, 0x27223121, 0x30013526, 0x28282701, 0x05850127, 0x1111d029, 0x22221e1e, + 0x82111e1e, 0x08098700, 0x5e012f29, 0x5e01a2fe, 0x32242308, 0x2423325c, 0x32023108, 0x4b5c4b33, 0x09023233, 0x7cfe0d08, 0x0109080d, 0x16182d40, + 0x852d1816, 0x1d232905, 0x1111121d, 0x231d1d12, 0xfe2a0989, 0x1f1f31b0, 0x1f1f0101, 0x38831231, 0x37824183, 0xe2823f82, 0x83030021, 0x000225e3, + 0x1a00c001, 0x4924e182, 0x14250000, 0x20050d4a, 0x82a18223, 0x373421a3, 0x2120e089, 0x4a050449, 0x37200622, 0x2622df83, 0xf5832223, 0x15370726, + 0x17141535, 0x4c073c45, 0x012b05df, 0x311b1cd0, 0x31373731, 0x891c1b31, 0x30fe2d09, 0x3c222101, 0x3d43433d, 0x0121223c, 0xe8360b8b, 0x0e13600b, + 0x0255120b, 0xc0021616, 0x1d2f2f39, 0x2f1d1c1c, 0x0989392f, 0x3a3a4629, 0x24222224, 0x89463a3a, 0x82882009, 0x070d2c00, 0x13120b40, 0x167b390e, + 0x82160202, 0x820820d4, 0x02e035d3, 0x00a00140, 0x0029000f, 0x0049003c, 0x00630056, 0x00890076, 0x2107974f, 0xad443121, 0x41212005, 0xc15d0699, + 0x34173312, 0x36313137, 0x16173233, 0x06071415, 0x26272223, 0xf1503335, 0x07062605, 0x27263123, 0x270c9815, 0x31272227, 0x34352631, 0x84051842, + 0x9107203d, 0x0f40264c, 0x010f0101, 0x270583c0, 0x014040fe, 0x011b1212, 0x2608de44, 0x121b40fe, 0x53600112, 0x68230b0e, 0x83e01602, 0x200496de, + 0x0b725348, 0x388b2020, 0x01700124, 0x6684fe0f, 0x72820120, 0x41451020, 0x0a4b4507, 0x8b404021, 0x05335e3c, 0x60160222, 0x40200890, 0x338c568b, + 0x00000023, 0x082b4302, 0x42002d22, 0x2306c94d, 0x31113115, 0x2608984b, 0x36313731, 0x82371617, 0x05274605, 0xe4440720, 0x82262005, 0x15352407, + 0x82370737, 0x201e821c, 0x05184415, 0x080dea4d, 0x453b4021, 0x01142249, 0x110d0e01, 0x26262409, 0x553b3723, 0x29616161, 0x2d2d2a27, 0x3335182b, + 0x5d45504b, 0x28240527, 0x5831e1fe, 0x2708b683, 0x1c0f1464, 0x090d1a22, 0x12180115, 0x05070908, 0x0e1a1111, 0x194e1c15, 0x130a1919, 0x11020115, + 0x191309f2, 0xed121324, 0x26063f49, 0x018001bd, 0x822b00c0, 0x373625b5, 0x37363131, 0xa782b783, 0x82171721, 0x312123bf, 0x1d423135, 0x07142407, + 0x85272706, 0x11272ca0, 0x0e0d0100, 0x0e0e8214, 0x5fe0fe82, 0x0d3805d0, 0x9a9a0c0d, 0x010c0d0c, 0x0e149001, 0xfe30010d, 0x09095c77, 0x3089015c, + 0xfe272883, 0x06070e48, 0x826e6e07, 0x010e2704, 0x000000b8, 0x17460003, 0x00a02e05, 0x0039001f, 0x01000046, 0x31111716, 0x24018227, 0x07222326, + 0x22078807, 0x82313107, 0x37362385, 0x8a4d2521, 0x116f4705, 0x36172127, 0x26273637, 0x05d15e27, 0x0fc0012c, 0x07880501, 0x53070c0c, 0x0582081e, + 0x01055026, 0xfe80010f, 0x47086347, 0xfe22096d, 0x8a5d5080, 0x0527420b, 0x09b0072e, 0x0a2b6c09, 0x0106700a, 0x30010f40, 0x250e7547, 0x12121b40, + 0xe95dc001, 0x0400210b, 0xc028c782, 0xbc01fc01, 0x1d000d00, 0x6b27c982, 0x17010000, 0x84161727, 0x31372cc2, 0x37071736, 0x31173707, 0x82063107, + 0x200f8211, 0x200e8237, 0x5c0b8307, 0x36210578, 0x24138237, 0x27273435, 0x20f68331, 0x44e39105, 0x1521054a, 0x09354531, 0x34311125, 0x4b333637, + 0x2f080623, 0x0c0cb901, 0x1d0e0e0c, 0x11111d2e, 0x868686e7, 0x0605862e, 0x0501113a, 0xc5c5c5a3, 0x041d050d, 0x640e0a0a, 0x15c50d12, 0x1d160c15, + 0xe3fe161d, 0x2107bc4c, 0x09831001, 0x1616022b, 0x110b0c02, 0x0b11f0fe, 0x2707820c, 0x02021670, 0x85017016, 0x11215282, 0x22528211, 0x85c50e0e, + 0x11012552, 0xe705063a, 0x0e2a5282, 0x0a0e6411, 0x051d0309, 0x4f83c50d, 0x15150c29, 0x19190127, 0x87f0fe25, 0x85428557, 0x1001214e, 0xa64b0782, + 0x0e674506, 0x00005628, 0x31173201, 0x5d441631, 0x055f4405, 0x20086d45, 0x05864211, 0x2206844f, 0x82070627, 0x059c4f01, 0x4a031721, 0x1d5114ab, + 0x31272506, 0x00010726, 0x2c273945, 0x2f0e0e51, 0x110e0e2f, 0x112f2f11, 0x210b8b11, 0xb7459001, 0x5101212d, 0x4f854391, 0x5706e742, 0x1a2405c3, + 0x47003500, 0x1324f7b7, 0x07262736, 0x2209ad4b, 0xa9373716, 0x837120e8, 0x846f20e4, 0x114023e4, 0xdeb08011, 0x6f213984, 0x2445832f, 0x800e0e40, + 0x05f34200, 0x2b083347, 0x0072005f, 0x27342500, 0x27263131, 0x51060e47, 0x21200c49, 0x2006cd41, 0x05375133, 0x25480620, 0x37272109, 0x33201a84, + 0x2309215f, 0x27260706, 0x27068f59, 0x23272635, 0x15072231, 0x46050e5b, 0x5e47128d, 0x06aa3e2f, 0x3a130e0e, 0x0111121b, 0x02201f01, 0x0c021616, + 0x0e01082c, 0x0a02063a, 0x01051415, 0x0bdc4536, 0x3e287d47, 0x0a0a115b, 0x1b111201, 0x16121324, 0x0d160202, 0x041a070e, 0x05010e09, 0x09061402, + 0x46bb0215, 0x00330b57, 0xff040000, 0x02e0fffe, 0x00a00143, 0x00490022, 0x59830068, 0x0f5d08d3, 0x050d5005, 0xa5573620, 0x055e4805, 0x27262722, + 0x8506a247, 0x2005821c, 0x832c8307, 0x82262003, 0x8403841c, 0x36172430, 0x51313137, 0x22250595, 0x16233031, 0x25228315, 0x31142722, 0x34821530, + 0x43351721, 0x0131196e, 0x28283120, 0x13141d1f, 0x14130b0b, 0x28281f1d, 0x320f8f31, 0x303024c1, 0x30303d3d, 0x17172324, 0x0c05050c, 0x8a231717, + 0x050b2311, 0x11820b05, 0x1722c131, 0x16010116, 0x01012217, 0x12120102, 0x8308081b, 0x1390490c, 0x01700131, 0x1b1e1213, 0x17171d1d, 0x1e1b1d1d, + 0x8f011312, 0x2221310f, 0x01011717, 0x21221717, 0x0c1c2323, 0x23231c0c, 0xdf201192, 0x74835f83, 0x1b080824, 0x74821212, 0x0c830120, 0x3514464a, + 0xff050000, 0x02b9fff9, 0x00c70187, 0x0039001f, 0x00670049, 0x9f4e0078, 0x31012605, 0x27363716, 0x0ce16427, 0x06272627, 0x27070607, 0x07595b17, + 0x84171621, 0x08b75d0f, 0x82172721, 0x35362b01, 0x33322734, 0x17161716, 0x1f820714, 0x8e412620, 0x37362306, 0x5d653127, 0x82162009, 0x27272843, + 0x31311716, 0x82321716, 0x82262019, 0x15142869, 0x0c0f1327, 0x83500210, 0x1d692605, 0x040b1414, 0x07534104, 0x2a2b3327, 0x36977021, 0x0782414c, + 0x12120a33, 0x010e3619, 0x31362524, 0x52cd2e23, 0x02075252, 0x23e78401, 0x2e260905, 0x0d322487, 0x0e22261b, 0x170b0505, 0x30232417, 0x36483d30, + 0x3183d42a, 0x3812142d, 0x01381125, 0x13100cbb, 0x8330fe0f, 0x1f522405, 0x41191f20, 0x10260a4f, 0x76581b11, 0x7e410229, 0x1b153307, 0x1b2a1a1b, + 0x24253620, 0x241e0101, 0x404040a1, 0xc6410f0d, 0x0d0f2305, 0xa5411083, 0x241d2408, 0x89242e1d, 0x1e022345, 0x32839f21, 0x092c0629, 0x04042c21, + 0x490a0000, 0x3332080b, 0x45003c00, 0x57004e00, 0x6b006000, 0x7f007400, 0x5d648800, 0x0706250c, 0x31153115, 0x210dd347, 0x875d3135, 0x07fb4607, + 0x35312328, 0x33233307, 0x08823115, 0x08871520, 0x08903320, 0x3323372e, 0x33313523, 0x15151531, 0x07061535, 0x31222c82, 0x0a822333, 0x2621088a, + 0x88208227, 0x02982527, 0x28021616, 0x2008534f, 0x20098740, 0x22178328, 0x86506890, 0x60802100, 0x90200082, 0x50250c86, 0x400f0150, 0x25128250, + 0x010f4090, 0x19829050, 0x7c496020, 0x12012706, 0x30101b12, 0x4f8800ff, 0x10300022, 0xf7570b83, 0xa8282505, 0x40683838, 0x30290084, 0x28a03838, + 0x010f2828, 0x3c008638, 0xa0280f01, 0x00003838, 0xfffeff02, 0x010002e0, 0x001800a0, 0x3700004c, 0x33161736, 0x069f6336, 0x06070626, 0x16171407, + 0x36220582, 0x14850737, 0x44052844, 0x13440517, 0x27222105, 0x302e0783, 0x06233023, 0x22313023, 0x22230631, 0x40822627, 0x3137362b, 0x2818147c, + 0x38385f30, 0x20758201, 0x2c07835f, 0x03010d24, 0x670e1a09, 0x05110203, 0x0def5d2f, 0x22222508, 0x3848393a, 0x17231330, 0x0601011c, 0x08070107, + 0x0603040b, 0x03020507, 0x0f080e39, 0x3e302f03, 0x032f303e, 0x313a0783, 0x1b150f28, 0x290a0d16, 0x251a0404, 0x2f3a4534, 0x011b1c2f, 0x2f1c1b01, + 0x0b853a2f, 0x110e122e, 0x0102060a, 0x06070a0a, 0x00040308, 0xf749e382, 0x058d630a, 0x51313121, 0x17210567, 0x05074631, 0x83311121, 0x06476ac4, + 0x475c3720, 0x07af4c05, 0x22312332, 0x26312727, 0x01002323, 0x841b1212, 0x9e2b151e, 0x2008d04b, 0x4c098380, 0x802d0555, 0x0f01010f, 0x2d0c11a1, + 0x01840a07, 0x21178360, 0x30832b15, 0x210a9c41, 0x164c1040, 0x0f002208, 0x4b298201, 0xe035060b, 0xa0014402, 0x00004000, 0x33233305, 0x31373736, + 0x27262736, 0x22928221, 0x88113107, 0x171621a8, 0x20052452, 0x08aa4233, 0xba849686, 0x3a05ce42, 0x30800133, 0x0a123030, 0x0a080870, 0x1270fe12, + 0x0f01440a, 0x1a050676, 0x4a752f21, 0x75260658, 0x131a131b, 0xc087751b, 0x01201826, 0x1010c00f, 0x752cba83, 0x010f0501, 0x01201a05, 0x20200f01, + 0x28821f83, 0x21098a4a, 0x43410400, 0x00162b08, 0x00310023, 0x1300003f, 0x76831716, 0x200a1953, 0x20ae8327, 0x0ba44d17, 0xd1821720, 0x2705b46a, + 0x37362726, 0x21212115, 0x55074653, 0x16320518, 0x0216a001, 0x60fe1602, 0x0114141f, 0x02681602, 0x0f83d016, 0x18230482, 0x83909090, 0x2504840a, + 0xf0fe1001, 0x29841001, 0x8409305a, 0x02162a39, 0x1f141401, 0x02166001, 0x073c4d68, 0x6b024821, 0x60200684, 0x3908e561, 0xff030000, 0x02c0fffc, + 0x00c00183, 0x003b001c, 0x37000076, 0x35262736, 0x6d453736, 0x05b74605, 0x83072621, 0x46138307, 0x12830ad8, 0x20058a45, 0x06395206, 0x17331625, + 0x85163732, 0x2627210c, 0x34200182, 0x0783da82, 0x56151621, 0x14210509, 0x056d5707, 0x83171621, 0x20558215, 0x21078323, 0x33830706, 0x160f582b, + 0x2b2b0121, 0x2b2b4949, 0x2d078301, 0x0e101214, 0x1a180607, 0x01020404, 0x13615878, 0x08078306, 0x022d0152, 0x0b150f01, 0x420f0706, 0x17070739, + 0x1718e018, 0x42390707, 0x0a05070f, 0x01010f15, 0x02012d01, 0x06553738, 0x01262742, 0x010f1621, 0x01030302, 0x06181a01, 0x13100e07, 0x23232f13, + 0x1a1a1814, 0x8b3e3132, 0x2b221a1e, 0x02262632, 0x32262602, 0x04310783, 0x03030803, 0x0707070b, 0x022b0303, 0x4b4b3132, 0x05005f31, 0x032e4031, + 0x0b181d02, 0x03010e0e, 0x0403031b, 0x82030480, 0x01230807, 0x180b0f0d, 0x0101021c, 0x49402e02, 0x17053131, 0x25060119, 0x222b2f25, 0x03031e1a, + 0x02020505, 0x82030b07, 0x01042a4f, 0x081b1111, 0x1a1b2d03, 0x05875201, 0x01380127, 0x001a00c2, 0x08c95c2b, 0x520c476a, 0xcd820579, 0x270d7952, + 0x12250111, 0x940c0101, 0x220b6052, 0x821d1209, 0x06615200, 0xbf015d29, 0x7ffe1205, 0x524f070e, 0x0228084d, 0x03108d17, 0x3b3b3b7f, 0x34064d52, + 0x000a0132, 0xff030000, 0x01d8fff8, 0x00a801c8, 0x005b0030, 0x2585826e, 0x07060722, 0xdf412706, 0x17062205, 0x07dc4b16, 0x2305775b, 0x36371617, + 0x8305f158, 0x34352505, 0x35232627, 0x21053c47, 0x2c860714, 0x23273c85, 0x27262726, 0x44363734, 0x362006df, 0x33203883, 0x31214b82, 0x855d8431, + 0x375d8245, 0x04057001, 0x1513140e, 0x272e2e2c, 0x0b0f0f26, 0x05020205, 0x0e090901, 0x22321595, 0x03011617, 0x130e0508, 0x3b2d2d14, 0x19183b3a, + 0x128a0c0a, 0x853a2e21, 0x28793312, 0x080c1e1e, 0x10041416, 0x16332726, 0x01140408, 0x57830170, 0x0f0f0b30, 0x2e2e2726, 0x1413152c, 0x0e05040e, + 0x15950909, 0x16013028, 0x0a0c2217, 0x61821819, 0x142d2d27, 0x08050e13, 0x21128903, 0x12862e3a, 0x1e0c8732, 0x0414281e, 0x27331608, 0x14041026, + 0x05000816, 0x0808d751, 0x18000b22, 0x3e003200, 0x00004a00, 0x15171601, 0x35312131, 0x21373631, 0x15351517, 0x31210706, 0x31352726, 0x221a304f, + 0x62070613, 0x262305d4, 0x8a332327, 0x0002340b, 0x20fe010f, 0xc0010f01, 0xfe0f0110, 0x01010f40, 0x4630fee0, 0x9d5108ce, 0x1638250a, 0x30160202, + 0x80200484, 0xf54d0583, 0x70012b05, 0x20200f01, 0xc090010f, 0x3b82c0c0, 0xc0c00f22, 0x21133e4f, 0x0944d0fe, 0x08114407, 0x0026d785, 0x0f00a001, + 0xd5822100, 0x50004730, 0x06130000, 0x36311507, 0x32312133, 0xd0823517, 0x82072121, 0x171622db, 0x06f85521, 0x06312129, 0x15352307, 0x6a373635, + 0x172306e6, 0x46153115, 0x35290a38, 0x16373605, 0x26070617, 0x21068627, 0xcf823736, 0x01080823, 0x22038280, 0x8280fe0f, 0x800121e0, 0xfe20a483, + 0x30200582, 0x210d8657, 0xf38480fe, 0x9f871820, 0xcc447820, 0x29e08307, 0xa20202a2, 0x60f0010f, 0x3d836060, 0xe0220484, 0x3084e0e0, 0x1b121224, + 0x098760e0, 0x87306021, 0x22478835, 0x82000600, 0x022a0800, 0x00800100, 0x003d000d, 0x0079006d, 0x00940085, 0x33230100, 0x15151623, 0x36333331, + 0x07272637, 0x31312734, 0x31302326, 0x61583130, 0x05c74405, 0x82352621, 0x3435241c, 0x60352637, 0x36250983, 0x35313537, 0x050e6927, 0x47171621, + 0xcb6a053d, 0x15162305, 0x03870706, 0x23070623, 0x07bb6023, 0x33373624, 0x64823613, 0x82232321, 0x3317241f, 0x85071437, 0x31232374, 0x85820715, + 0x85841484, 0xc0012328, 0x02b2b2b2, 0xe5839020, 0x0909e03e, 0x2233180e, 0x16010122, 0x01012416, 0x0e0e0817, 0x02161602, 0x010f0f01, 0xd0151b20, + 0x5224f287, 0x04220202, 0x012f1d82, 0x401b1212, 0x2f304718, 0x302f0202, 0x83401847, 0x10302142, 0x40240583, 0x20020210, 0x20240883, 0x28282818, + 0x18251789, 0x08084001, 0x364f8310, 0x09090e10, 0x33222201, 0x1f1e2830, 0x1f05040c, 0x17110d13, 0x49171111, 0x30830543, 0x50282824, 0x61830f01, + 0x08257583, 0x0a122808, 0x8324830c, 0x206d830d, 0x21768330, 0x4a83b0fe, 0xb0220383, 0x55840808, 0x10874020, 0x2d178341, 0x33233313, 0x31151506, + 0x27262323, 0x6d4e3736, 0x05736a06, 0xa76e1620, 0x35362108, 0x35221c82, 0x45672734, 0x07062105, 0x2107996f, 0x83413735, 0x07062105, 0x8305b141, + 0x31332531, 0x17161506, 0x16270387, 0x36333317, 0x4a373637, 0x032006d9, 0x37224782, 0x1f823333, 0x27230724, 0x74851714, 0x15313322, 0x8408a147, + 0x40332185, 0x3fd58241, 0x00000600, 0x8001c0ff, 0x0f00c001, 0x6f003d00, 0x8b007d00, 0x00009c00, 0x15351513, 0x31333336, 0x2c05004c, 0x22170706, + 0x06313107, 0x30313015, 0x09bb6531, 0x06373628, 0x06272623, 0x03822223, 0x2507eb64, 0x27263736, 0x83410723, 0x37362305, 0x49483135, 0x31152507, + 0x17163336, 0x16200387, 0x83082244, 0x27262337, 0x47822535, 0x9f550720, 0x32272208, 0x23788717, 0x17333115, 0x420fb564, 0x782029a0, 0x21209f42, + 0x9f425001, 0x80012118, 0x216bf341, 0x8b410000, 0x35372717, 0x33163515, 0x55453133, 0x27262205, 0x05d35737, 0x30313023, 0x055f4131, 0x26056d44, + 0x07062326, 0x82222326, 0x063f7103, 0xd3423120, 0x058b4105, 0x230d8d5f, 0x37363316, 0x36210387, 0x09e54d37, 0x06070625, 0x82051507, 0x83272047, + 0x24238213, 0x32071517, 0x22788737, 0x83333135, 0x8216848b, 0x4126848d, 0x0020668b, 0x216e8a41, 0x374f0300, 0x00112a08, 0x0055002d, 0x33232500, + 0x05506523, 0x17313322, 0x0722fd84, 0x48442333, 0x05335606, 0x200b845e, 0x0b3d5603, 0x44313321, 0x2320056f, 0x23213684, 0x24468731, 0x01233135, + 0x06a04780, 0x01448c23, 0x290a820f, 0x12121bc0, 0x0e440e01, 0xc9458c14, 0x05004707, 0x1b121222, 0x30201a84, 0x0f2e2582, 0x200f0101, 0x0f017020, + 0x010f0001, 0xc14ccc44, 0x14cc2106, 0x584d3682, 0x4d00200a, 0x20210d64, 0x83368320, 0x84302031, 0x01e030db, 0x00a001c0, 0x0046003d, 0x13000053, + 0x47111111, 0x342507cf, 0x16313727, 0x0bbf4715, 0xbe841120, 0x3231332a, 0x07311717, 0x26312731, 0xc082c688, 0x07063128, 0x15351537, 0x0b823133, + 0x455e1720, 0x07062505, 0x27262706, 0x0126a982, 0x05010f40, 0x79481322, 0x1af6380d, 0x4a224a13, 0xc0160201, 0x0f100216, 0x90905001, 0x201f0120, + 0x86011f20, 0xfe602405, 0x5a4001c0, 0xf5210524, 0x213d8207, 0x1450f51b, 0x293d840d, 0x02021664, 0x0f016816, 0x00825010, 0x1324f026, 0x24131212, + 0xd6470585, 0x66002005, 0x0f280653, 0x00002900, 0x11171601, 0x83062e60, 0x1a8c49ca, 0x24068648, 0x01010fc0, 0x8d84830f, 0x5ac78579, 0x95580dc3, + 0x20838314, 0x28888503, 0x11008001, 0x3e002400, 0x05434900, 0x16311727, 0x37373233, 0x10454931, 0x2205805a, 0x79362727, 0x402917c4, 0x10ad010f, + 0xac101413, 0x09314901, 0x241e8e25, 0x498e1e24, 0x502e1531, 0x8e160f01, 0x168e0c0c, 0xac64010f, 0xd183acac, 0x1775ac25, 0x87547517, 0x0a7f4fd3, + 0x00820020, 0x00000430, 0x0002c0ff, 0x3300c001, 0x4e003c00, 0xb1826a00, 0x23332324, 0xf44f0706, 0x17162205, 0x42b48233, 0x142d09ba, 0x33331617, + 0x33373631, 0x26272631, 0x56178323, 0x1720056e, 0x2007ea49, 0x2c2e4301, 0x29296923, 0x08ad4929, 0xac836020, 0x09091035, 0x2c1c480e, 0x1110063e, + 0x0f032917, 0x0f16160f, 0x4527030f, 0x012107ab, 0x1f364330, 0x01900127, 0xfe1b1212, 0x2e5583f0, 0x010f0130, 0x0e010f10, 0x011f0909, 0x820e0d15, + 0x0d0e2302, 0x65830815, 0xfe210383, 0x1d494368, 0x03000033, 0xc0ff1000, 0xc0017001, 0x6b005800, 0x00007c00, 0x09716725, 0x16171627, 0x30313017, + 0x25078331, 0x27263123, 0x0d832726, 0x4c720385, 0x0706220d, 0x85278214, 0x07062919, 0x31230706, 0x37363736, 0x30202d89, 0x27200f82, 0x23053644, + 0x27260706, 0x22053847, 0x73110706, 0x352305a7, 0x43313331, 0x013b0594, 0x01011629, 0x36362524, 0x01012425, 0x15080516, 0x31040f12, 0x130f0903, + 0x671e0808, 0x1e3509d3, 0x0f130808, 0x04310309, 0x0815120f, 0x0e146905, 0x0f01010d, 0x2130820f, 0x05822217, 0x17220f2c, 0x01a00116, 0xc7221716, + 0x48842920, 0x292f5082, 0x1b0a0820, 0x121d1d20, 0x0b191b10, 0x4f392b0b, 0x39330702, 0x010a0b2b, 0x12111a19, 0x1b201d1d, 0x0179080a, 0x87140e0d, + 0x21538343, 0x488380fe, 0x83101021, 0x054f5053, 0x01c30129, 0x002c00c0, 0x694d0041, 0x504407d1, 0x05526206, 0x44170621, 0x3620056c, 0x4b067e62, + 0x342d0511, 0x15232627, 0x31311716, 0x31151716, 0x065d4c14, 0x36373627, 0x33231337, 0x07327123, 0x090ee025, 0x82233809, 0x2b2e08f8, 0x0706090f, + 0x0f90010f, 0x0f080507, 0x2401012b, 0x09093823, 0x201f300e, 0xd0fe2801, 0x20010127, 0x4040301f, 0x13138040, 0x13131a1a, 0x1b82c001, 0x2b0c1339, + 0x46193b2b, 0x0d0c1337, 0x0d01010d, 0x37130c0d, 0x2b3b1946, 0x82130c2b, 0x83602053, 0x4a192530, 0x194a3d3d, 0xfe214383, 0x823582a0, 0x0000343b, + 0xff000005, 0x017602c0, 0x043304c0, 0x07b20756, 0x68f807ce, 0xf2450acd, 0x8231200b, 0x31332100, 0x00100087, 0x25f10309, 0x31303130, 0xa74e3321, + 0x37362c05, 0x31113536, 0x27262734, 0x85353123, 0x054f4e07, 0x7d311521, 0x098909c8, 0x83070621, 0x21352626, 0x11332333, 0x20418331, 0x20008231, + 0x084b4423, 0x03090010, 0x27262129, 0x630b4976, 0x31250697, 0x37363135, 0x057d5937, 0x15311124, 0x10822331, 0x21057858, 0x0d830706, 0x15171125, + 0x7a231535, 0x33200683, 0x90552082, 0x21498505, 0xc3433135, 0x27058305, 0x1fe80706, 0x58011414, 0x01240483, 0x011f1414, 0x102900e5, 0x141f6808, + 0x1f141515, 0x2c038258, 0x5858f8a6, 0x38021658, 0x16020216, 0x24058538, 0xfe581602, 0xd1158268, 0x2567828d, 0x15030315, 0x05843838, 0x8216023d, + 0x16b01602, 0x0d014002, 0x0e14140e, 0x5840010d, 0x01010f18, 0x0f01180f, 0x8a010f10, 0xc001260a, 0x1f141401, 0x21048308, 0x2c41e0fe, 0x83202008, + 0x83082009, 0x02802804, 0x16022816, 0x83300216, 0x16682904, 0xfed08002, 0x681602b0, 0x28201288, 0xfe23df86, 0x834080f8, 0x236f8367, 0x18880140, + 0x6a8f0082, 0x00207584, 0x03210082, 0x0bf34d00, 0x5d694b20, 0x1535222c, 0x07be5235, 0x2007d055, 0x053c5133, 0x56543120, 0x4e402005, 0x05830510, + 0x69c0fe21, 0xa05e051f, 0x05bc6808, 0x1640c826, 0x40160202, 0x0989c283, 0x680d2a4e, 0xf82214ee, 0x348e4040, 0x00203e84, 0x6305c368, 0xd36308d7, + 0x2f966336, 0x4b286b63, 0x002c0717, 0x1a00c001, 0x50003500, 0x76006300, 0x20377964, 0x05f44b17, 0x82373621, 0x05835a01, 0x22052979, 0x4f173637, + 0xf86a050f, 0x3727250b, 0x31311732, 0x8208076b, 0x33362120, 0xb23fe6af, 0x1c13140b, 0x0b14131c, 0x0d0f1111, 0x281d1c11, 0x111c1d28, 0x11110f0d, + 0x09090122, 0x82090e0d, 0x0d0e2500, 0xc0010909, 0x18830a89, 0x39281d41, 0x0a0a0d3e, 0x0a0a0101, 0x100e0f0d, 0x0f0f1212, 0x0f0f0101, 0x0e101212, + 0x196b6e0f, 0x06674c18, 0x24074f41, 0x0061004e, 0x384f4174, 0x885b0620, 0x32332605, 0x16171617, 0x690d8207, 0x07200591, 0x39554d41, 0x14150aaf, + 0x22230d06, 0x23222c2c, 0x1514050e, 0x16150809, 0x15161f1f, 0x4d411f07, 0x14802845, 0x25150a05, 0x82161615, 0x050a2204, 0x07104414, 0x4b41b020, + 0x00482427, 0x6e67005b, 0xac531c4b, 0x06747806, 0x37361722, 0x21087478, 0x40180727, 0x07250c76, 0x33161716, 0x05145a37, 0x06072222, 0x32230e84, + 0x84353637, 0x066d460a, 0x20158c42, 0x132f6ed0, 0x5f425020, 0x0909260e, 0x09090d0e, 0x06364101, 0xe55fb820, 0x42902008, 0x01211479, 0x17bc6e00, + 0x3f67f020, 0x4120200b, 0x78200b27, 0x2108e75b, 0x0082000d, 0x0140023d, 0x000f0080, 0x003b0029, 0x005d004b, 0x007f006d, 0x00a1008f, 0x00c300b1, + 0x45e500d3, 0x332a2c43, 0x17163323, 0x07063115, 0x51723123, 0x47272005, 0x12880570, 0x21903720, 0x40061061, 0xfd6e8021, 0xe0b02721, 0x010fe0e0, + 0x04840f01, 0x0f014823, 0x820c8310, 0x82102004, 0x220a8600, 0xde400f01, 0x50012517, 0x00ff0f01, 0x01206e83, 0x4d460582, 0x0bc75308, 0x8289c020, + 0x97884820, 0x89601021, 0x055a5315, 0x15cc1a84, 0x220b736f, 0x66400033, 0x21223657, 0xa8552121, 0x1e0f6608, 0xfe600124, 0xc28201a0, 0x82c0fe21, + 0x16a825cc, 0x28160202, 0x411ff365, 0x0020073b, 0x200eff6c, 0x37674548, 0x17363732, 0x15163117, 0x31070714, 0x35262706, 0x37343135, 0x7215fc43, + 0xbc2a1966, 0x0b900c0d, 0x0d0c900b, 0xe3430c0c, 0x13354414, 0x07066d2f, 0x0d0d0758, 0x06065808, 0x0eb00e07, 0x57cf8507, 0x0f2405cf, 0x37002900, + 0x4331b743, 0x362105b5, 0x21e74837, 0x7d649820, 0x21ce710c, 0x70448820, 0x10a34908, 0xa7ab3d20, 0x37070524, 0x4b180607, 0x3725082c, 0x16173631, + 0x31ada107, 0x80805101, 0x40111180, 0x11110e0e, 0x11116f2f, 0x92490e0e, 0x82712022, 0x0e0e2233, 0x212d8340, 0x39836f2f, 0x38062f42, 0x00c00130, + 0x006f001e, 0x2500009b, 0x35351535, 0x23272631, 0x06070623, 0x052e6507, 0x36333330, 0x35313537, 0x07311731, 0x33233327, 0x22573115, 0x70322005, + 0xd65e0c54, 0x6c348305, 0x48570842, 0x05375606, 0x30313423, 0x23098223, 0x26272635, 0x05825e82, 0x37363525, 0x56333736, 0x9b690616, 0x5e7e830b, + 0x212005f5, 0x21084f5a, 0x92823736, 0x90014208, 0x3e200f01, 0x0c1d1d27, 0x1f200105, 0x0f303030, 0x406a6a01, 0x09101010, 0x0c040e09, 0x0c0c8b09, + 0x0f0d0a8a, 0x30100a0a, 0x022d2d44, 0x17141401, 0x05060809, 0x04030306, 0x01011102, 0x0302010b, 0x28008301, 0x01040302, 0x0e1c1312, 0x08bf4be8, + 0x8a665020, 0x02162505, 0xb0fe1602, 0x40200583, 0xc1300484, 0x200f0f0f, 0x1601010f, 0x120e2415, 0x01201f30, 0x27087e82, 0x0f5f5f0f, 0x09090e30, + 0x100b7d08, 0x097c0b10, 0x2d0f0a0a, 0x442d2d02, 0x101e1e2d, 0x03040506, 0x02010202, 0x01070c10, 0x6c840782, 0x09050328, 0x12131b0e, 0x8e82d001, + 0xb0fe1f22, 0x60857287, 0x01216583, 0x05c16150, 0x220fef6e, 0x435e004b, 0x514237bd, 0x37262305, 0x4b183137, 0x312308bf, 0x47270706, 0x152008dc, + 0x43077256, 0x012b2fd3, 0x91919133, 0x040a0a0f, 0x870d0538, 0x6e132007, 0x452a34d1, 0x04383838, 0x910f0a0a, 0x0787050d, 0xcd474520, 0x4300200b, + 0x3c231053, 0x76250000, 0xcc82064d, 0x16311125, 0x58372117, 0x21230552, 0x5c272631, 0xa4630577, 0x27112207, 0x05504322, 0x79333721, 0x0621060f, + 0x0d005b23, 0xb95b4020, 0x40013a0d, 0x0112121b, 0x68080ae0, 0x0f07060a, 0x06070fd0, 0x0a08680a, 0x010f0110, 0x05194d40, 0x46010f21, 0x2b850895, + 0x402c3f85, 0x0f0b7008, 0x0d01010d, 0x08700b0f, 0x1322b394, 0xab840706, 0x25220977, 0x31171732, 0xb0440716, 0x37262505, 0x33363137, 0x8f210644, + 0x220444b2, 0x0120b3a1, 0x88058a6a, 0x06576eb7, 0x820c316b, 0x373623cf, 0x21460721, 0x35272106, 0xbf830f83, 0x90011522, 0x41210877, 0x01210b35, + 0x07614160, 0x010f0122, 0x4e05a177, 0x01230577, 0x411b1212, 0x00211597, 0x05434e00, 0x01800134, 0x001500c0, 0x05000031, 0x31113736, 0x27223123, + 0xb85d3526, 0x20bb8405, 0x05725c01, 0x32313322, 0xbf8c9984, 0x0f400128, 0x090e5001, 0x7548a009, 0xc0fe2105, 0xa6246e83, 0x135a131a, 0x20095c5e, + 0x24918210, 0x0e090920, 0x20d18250, 0x24278280, 0x12121b90, 0x22218201, 0x5ddbfe1b, 0xa772083e, 0x258b8807, 0x0049003d, 0x8f421700, 0x31332105, + 0x83072b45, 0x1121217b, 0x21117775, 0x605f3111, 0x0b2c6706, 0x67061521, 0xa6820938, 0xa00f0122, 0x0f498485, 0x228a860b, 0x4b38a61a, 0x0989094b, + 0x83067766, 0xe0fe21e0, 0xd020b982, 0xfe20d483, 0x22086f5f, 0x821b2501, 0x00ff21c6, 0x2111356b, 0x2f770002, 0x00a52e05, 0x0084006a, 0x07260100, + 0x07063131, 0x78038507, 0xa2460657, 0x23138305, 0x33161706, 0x21054e50, 0x0b820706, 0x0788b782, 0x82161721, 0x6d23200d, 0x1b820547, 0x83311721, + 0x37322229, 0x23018236, 0x37362734, 0x20073f6b, 0x05a24423, 0x27262723, 0x05866305, 0x08095c46, 0x35353626, 0x26273431, 0x44012323, 0x0919191e, + 0x340d0606, 0x10120f0d, 0x06091533, 0x04141608, 0x08120806, 0x860e0706, 0x2908dd82, 0x03030c09, 0x0c010408, 0x0804050d, 0x13090103, 0x0f010104, + 0x3e101461, 0x120b0e13, 0x61221d3d, 0x0112121b, 0x18010117, 0x0a7f0301, 0x075c2905, 0x0e080505, 0xdcfe1d0e, 0x20057244, 0x21068640, 0x15839d01, + 0x0f14142d, 0x0d111139, 0x1f18380f, 0x82041414, 0x1e33086a, 0x0d0d0c19, 0x040b0f01, 0x090c0c05, 0x030d0605, 0x0a0d0c03, 0x040b0604, 0x02021409, + 0x290b010f, 0x0e13110a, 0x11121329, 0x0720121b, 0x0a211206, 0x831b1209, 0x10102272, 0x24b88314, 0x0e09099d, 0x836185e0, 0x05bb4206, 0x0002db24, + 0x6341a001, 0x06052705, 0x26313127, 0x03852727, 0x7b057949, 0x262508e2, 0x36372627, 0x057f4d37, 0x35200b84, 0x13830582, 0x37210783, 0x06bd7436, + 0xbd740720, 0x36312405, 0x47313333, 0x1423057d, 0x83171607, 0x07062403, 0x82230706, 0x05594413, 0x5e632520, 0x77352005, 0x322806da, 0x15151617, + 0x06071431, 0x206a6341, 0x0862411d, 0x0f0e1024, 0x62411739, 0x010c210a, 0x29216341, 0x1a121101, 0x06071f13, 0x64412013, 0x415d200e, 0x04340e64, + 0xbdfffdff, 0xc3010302, 0x71003f00, 0x99008c00, 0x26010000, 0x7f09db76, 0x072005fc, 0x2908e577, 0x17311717, 0x16171631, 0x07833737, 0x82363721, + 0x31372707, 0x27363736, 0x07823127, 0x82262721, 0x07272407, 0x83370737, 0x31172324, 0x38863107, 0x21062a77, 0xbc413107, 0x842a8305, 0x23468630, + 0x31373203, 0x35214583, 0x76418234, 0x27200db3, 0x390b4f62, 0x0c037801, 0x52530a0c, 0x030c0c0b, 0x050d6212, 0x39390705, 0x0d050507, 0x17841262, + 0x900a5321, 0x416a3217, 0x030f4141, 0x092d4e10, 0x104e2d09, 0x0e410f03, 0x240f8f0e, 0x1a1a1e0e, 0x2200820f, 0x891e1a1a, 0x62402009, 0xac200c8f, + 0x0b216a8e, 0x8b6a9252, 0x2d5a229a, 0x876e972d, 0xfefe237e, 0x728c0f0f, 0x70207c84, 0x2f15c762, 0x00a00183, 0x00530010, 0x15061300, 0x17161716, + 0x09a45218, 0x7606da47, 0x362d0daa, 0x26273637, 0x06072207, 0x31232223, 0x06996d31, 0x37363724, 0x19823330, 0x27211b83, 0x3a198226, 0x23223130, + 0x23063130, 0x29012191, 0x14134329, 0x0231324a, 0x2c1a1a01, 0x183a593e, 0x3a074b4c, 0x01023848, 0x06080101, 0x05080404, 0x06050c05, 0x02020807, + 0x0231314b, 0x821e1111, 0x06062b17, 0x020a0505, 0x05050c03, 0x03820404, 0x5d01033a, 0x384b4134, 0x02041839, 0x344b3132, 0x4216292a, 0x5b3e3e08, + 0x1d33323f, 0x28202d82, 0x01273082, 0x03040605, 0x820a0a09, 0x25228354, 0x19232329, 0x3c820101, 0x0c060222, 0x17481383, 0x60372014, 0x11200527, + 0x2125c682, 0x11070631, 0x050b6117, 0x7f059064, 0x37260c27, 0x31373734, 0x82501736, 0x27062605, 0x35263127, 0x2d984830, 0xe3552020, 0x0f464820, + 0x200e474e, 0x37894a50, 0x0e782520, 0xb640181a, 0x0001252e, 0x0d16161a, 0x16220082, 0x09891a16, 0x27285a4e, 0x160d0d60, 0x17191917, 0x09864285, + 0x2a0b9768, 0x0037001d, 0x00590047, 0x4d7b0069, 0x332108bd, 0x0be56931, 0xc3493320, 0x20195222, 0x21a00720, 0x010f4025, 0x58500f01, 0x50200788, + 0xff280d83, 0x12014000, 0x00011b12, 0x230de164, 0x300f0158, 0x04821e83, 0x30309022, 0x01220a87, 0x1796900f, 0x18820120, 0x0f80fe23, 0x0a795801, + 0x82010f21, 0x08da4a0f, 0x200a2148, 0x05376d80, 0x10205e84, 0x10844f8a, 0x4741158f, 0x01f03207, 0x002f00c0, 0x00530049, 0x00750069, 0x17000093, + 0x054f7733, 0x4909a04b, 0xab5a078c, 0x0fb24905, 0x73054953, 0x5268057b, 0x69262005, 0x172406ae, 0x27263736, 0x33201283, 0xc7672387, 0x53232005, + 0x1f820693, 0x0a823520, 0x8e742185, 0x31152109, 0x240dee58, 0x40353135, 0x41008230, 0xa6250748, 0x135a131a, 0x08084a30, 0x20207024, 0x02531820, + 0x82182005, 0x27e783f5, 0x02021620, 0x60101016, 0x9f551982, 0x84202007, 0x22048317, 0x41501010, 0x8468061b, 0x01202505, 0x10010f0f, 0x820ab666, + 0x951b225d, 0x09434a90, 0x0f017025, 0x82181810, 0x2e438461, 0x010f5030, 0x16160250, 0x01503002, 0x41140e0d, 0x0f2b0597, 0x80010f80, 0x0f400f01, + 0x83706001, 0x010f2163, 0x30205584, 0x40230b83, 0x43000040, 0x2282059b, 0x1700c02c, 0x57003300, 0x11370000, 0xf2831111, 0x230c6c4a, 0x13272631, + 0x291a6f4a, 0x06072617, 0x16311717, 0xac463617, 0x7d078405, 0x272608fd, 0x31070706, 0x794a3027, 0x0b004d0a, 0x7c4a0020, 0x08372b08, 0x30041416, + 0x06111106, 0x05831919, 0x14043024, 0x0a850816, 0x00191927, 0x80fe8001, 0x4acd8201, 0x0f220886, 0x884ac001, 0x14f12b13, 0xa0160804, 0x10010110, + 0x05835353, 0x0816a026, 0x54541404, 0x54210a83, 0x20ef8f54, 0x22efbc53, 0x47063107, 0xdd4709e5, 0x2ceba507, 0x10130f5b, 0x0c2d2d0c, 0x250f1310, + 0xa80b8b25, 0x10e92ce7, 0x39130f0c, 0x0c0f1339, 0x8b303010, 0x06fb4f0b, 0x2308434c, 0x00590049, 0x2032434c, 0xa04f1817, 0x3331210a, 0x0f7d4e18, + 0x32313323, 0x055c5a17, 0x2020534c, 0x05925048, 0x16202c2b, 0x15010115, 0x44442016, 0x2100822c, 0x0082080c, 0x5a4c0c20, 0x02d02424, 0x83386816, + 0x18202044, 0x2407b05a, 0x08083868, 0x6941820c, 0xeb88078f, 0x5e004422, 0x1320ebb3, 0x2011cd50, 0xd2431817, 0x17062a0d, 0x33333316, 0x27363732, + 0x18f0a027, 0x360c0346, 0x08080545, 0x050c2905, 0x28050909, 0x09050404, 0x05099030, 0xa4480504, 0x00ff21f8, 0x2e0bc550, 0x3c07072f, 0x40080813, + 0x09080907, 0x6f680808, 0x1d2a0c07, 0x46003900, 0x6b005300, 0xff8a7900, 0x4e059f5f, 0x17202a37, 0x23086275, 0x15070631, 0x07230c8b, 0x18073707, + 0x2609d85d, 0x31272734, 0x82232726, 0x08fd7124, 0x17550f82, 0x01302606, 0x010f200f, 0x1a654e30, 0x26842185, 0x06240489, 0x02181818, 0x28072473, + 0x17071802, 0x1607180f, 0x06094520, 0x01010f23, 0x0632410f, 0x8a4e0a83, 0x06e8441d, 0x400f0122, 0x2705f144, 0x58480f01, 0x08085858, 0x2807a645, + 0x17580808, 0x58170101, 0x05715c01, 0x04000126, 0xc0ff0000, 0x28080345, 0x005e004d, 0x21211700, 0x13065021, 0x05500320, 0x1517291a, 0x07141535, + 0x31272706, 0x21074746, 0x6c493133, 0x16372105, 0x26251884, 0x34353637, 0x27058227, 0x00014017, 0x000100ff, 0x200a3550, 0x12325040, 0x0a0ac025, + 0x83112407, 0x241132c4, 0x01090a07, 0x0d121256, 0x0c091214, 0x1412090c, 0x244f500d, 0x80d02308, 0x050a8080, 0x01230703, 0x010f300f, 0x05030723, + 0x261e040a, 0x09121e26, 0x1814140d, 0x0d141418, 0x13451209, 0x0015240b, 0x515b0031, 0x7d743301, 0x05164406, 0xf6831520, 0x2306e65a, 0x31272722, + 0x5106164e, 0x2b510551, 0x09503123, 0x0e600e09, 0x032d0909, 0x01010b04, 0x2d03040b, 0xf4a41086, 0x2a061f4f, 0x01021e10, 0x010b680b, 0x43101e02, + 0x60210546, 0x102f4400, 0x55004322, 0x46342f44, 0x062005db, 0x2108594f, 0x50183737, 0x26440d91, 0x0e612f23, 0x3011110e, 0x11300e0e, 0x1f0e0e11, + 0x0685601f, 0x20441487, 0xdffe2124, 0x40823483, 0x11244682, 0x221f1f11, 0x1f213d83, 0x8214871f, 0x002608ee, 0xff000006, 0x010002c0, 0x000b00c0, + 0x0049003b, 0x00650057, 0x25000072, 0x27260706, 0x33163137, 0x33173732, 0x0b833736, 0x2625d385, 0x27070627, 0x23cd8531, 0x17160706, 0x2707e346, + 0x37361716, 0x37163117, 0x2726d982, 0x36271727, 0x3e833435, 0x07061729, 0x07370703, 0x82222326, 0x37362134, 0x0d832e82, 0x2a832720, 0x14150623, + 0x05a96017, 0x06352482, 0x01272627, 0x4b4b3681, 0x1b165036, 0x4450161b, 0x39020239, 0x25ad830c, 0x5f5f440c, 0xb1830c44, 0x13930c20, 0x5050222a, + 0x500d0d50, 0x2c01012c, 0x3c840a83, 0xd4204683, 0x14831782, 0x23201c82, 0x0bdb4818, 0x14861d20, 0x569d5020, 0x558c6a89, 0x89240121, 0x8861836e, + 0x183120b0, 0x390b7549, 0xffff0300, 0x0202c0ff, 0x1f00c501, 0x2f002800, 0x06370000, 0x16313117, 0xa1531717, 0x4f322006, 0x6a0808f9, 0x27363113, + 0x17010726, 0x07250525, 0x27311731, 0x27172705, 0x10033137, 0x12020111, 0x0e090a8c, 0x7c3e0a0f, 0x030d0d0f, 0x10100240, 0x3440fe12, 0xaafe5601, + 0x01dc5601, 0xa64f017b, 0x30d6a6a6, 0x13130bbc, 0x0e673a09, 0x4a0c0a09, 0x08070534, 0x14a0010f, 0xff090b0b, 0xc3c31a00, 0x3301f5c3, 0x4545458b, + 0x00ccfeef, 0x41080000, 0x353108e7, 0x40003c00, 0x4c004800, 0x6d005200, 0x00008100, 0x23748225, 0x07060722, 0x25063b71, 0x26272631, 0x05820723, + 0x21079450, 0x6e713736, 0x06ee4107, 0x0639c882, 0x23330307, 0x33312333, 0x07373607, 0x17271717, 0x27222726, 0x37070633, 0x214c8237, 0x06451716, + 0xed481806, 0x26132113, 0x42826883, 0x82053e46, 0x273d0864, 0x59b30127, 0x07085959, 0x16160206, 0x16161717, 0x08070602, 0x4c051759, 0x03030207, + 0x452a1f22, 0x06080806, 0x221f2a45, 0x07020303, 0xb317054c, 0x02010101, 0x0201c701, 0x04044b03, 0x260c8204, 0x0202f801, 0x82034b04, 0xc701211e, + 0x0813e95b, 0x0e0e0e2f, 0x13040d30, 0x103c1006, 0x0d041306, 0x06065730, 0x08040506, 0x57050557, 0x06050408, 0x04302f26, 0x53080708, 0x053a1322, + 0x22133a05, 0x2a0c8253, 0x262f3004, 0x04943901, 0x82e30905, 0x05c85957, 0x0909e327, 0xfe040509, 0x172e60c4, 0x0946012a, 0x100b2309, 0x01011038, + 0x0b230482, 0x18070023, 0x3508d340, 0x0035000f, 0x00530045, 0x006f0061, 0x1300007d, 0x31110706, 0x4e180714, 0x032008b1, 0x27098f4f, 0x31111716, + 0x37361716, 0x20129b4f, 0x14cd4d13, 0x2205c257, 0x18153736, 0x200c0941, 0x8d0d8c07, 0x16a82c1b, 0x2c010402, 0x16020216, 0x5a60f0fe, 0x1627098c, + 0x14140102, 0x8310011f, 0x25098311, 0x026890fe, 0x26836016, 0xc8230482, 0x83202020, 0x8a04850a, 0xd0b0220b, 0x514118d0, 0x16022107, 0x01210b8b, + 0x2a5f8270, 0x020b0dd0, 0x16300116, 0x8470fe02, 0x8428205c, 0x83d82075, 0x30012105, 0xd0206888, 0x58200984, 0x50201583, 0x5e7c0484, 0x02502208, + 0x051d4a16, 0x00230891, 0x18040000, 0x2708ff46, 0x00390027, 0x005a004e, 0x0efd4618, 0x33101771, 0x15060722, 0x07063115, 0x37361727, 0x33363131, + 0x17163333, 0x2a052671, 0x17271327, 0x36312327, 0x83312737, 0x31072220, 0x21188206, 0x32710721, 0xdf46180a, 0x0458210a, 0x080a2b71, 0x09090e24, + 0xb7912444, 0x1d18180d, 0x1e2c0808, 0xe513011d, 0x3d3d3db8, 0x2f0621b1, 0x080f2b01, 0x010f0705, 0x4271161e, 0xb9461809, 0x0c452b0a, 0x4637130b, + 0x29293a21, 0x8246120a, 0x0c123905, 0x178f7239, 0x1d010e0f, 0x32212c1e, 0xf4feb42d, 0x32303030, 0x450c253b, 0x20056e71, 0x074e7120, 0x200e3351, + 0x834b1858, 0x26272d37, 0x34313135, 0x32333637, 0x36371617, 0x0a696e18, 0x0d833220, 0x23060724, 0x4b182722, 0x39382994, 0x20191717, 0x10111920, + 0x33270e0e, 0x25252833, 0x27333328, 0x10110e0e, 0x4b181583, 0xc7202fa2, 0x18283482, 0x0e0e1818, 0x26261012, 0x11384e85, 0x170e0e11, 0x04000017, + 0xe0ff0000, 0xa0014002, 0x29000f00, 0x6d004a00, 0x182b9b76, 0x2308db6d, 0x07060706, 0x08654318, 0x65740b82, 0x051a4207, 0x1a823720, 0x65363721, + 0x268f06f0, 0x0f000227, 0xfe0f0101, 0x22058340, 0x68fec001, 0x511808c3, 0x88380bed, 0x12100e16, 0x2c1c0d0f, 0x011b1b29, 0x291b1b01, 0x0f0d1c2c, + 0x160e1012, 0x2407d84f, 0x0e0d0190, 0x60249c14, 0x21770c16, 0x01b02714, 0x100d0f0f, 0x60841f12, 0x1f246884, 0x0f0d1012, 0x5a6a9782, 0x84302006, + 0x20249a6d, 0x33008200, 0xff200004, 0x012002e0, 0x002700a0, 0x00510037, 0x1300006e, 0x23073875, 0x37363121, 0x0623fe83, 0x51311107, 0xaf5b052a, + 0x052d4105, 0x46181120, 0x21200ecb, 0x230ee749, 0x23060714, 0x29067651, 0x33233317, 0x37363736, 0x044a3135, 0x201c8a07, 0x23b18530, 0x58010e16, + 0x86062041, 0x0e1623c3, 0x1187a8fe, 0x15084d26, 0x46010815, 0xfe260583, 0x090903ba, 0x3443800e, 0x27068305, 0x20202080, 0x0112121b, 0x83065d59, + 0x4c012112, 0xe8204a90, 0x0126118f, 0x08151418, 0x5884fafe, 0x15080622, 0x60203d86, 0x60265785, 0x121201a0, 0x5a4a201b, 0x08068206, 0x0000203b, + 0x00000a00, 0x8002c0ff, 0x0e00c001, 0x52004900, 0x6b006200, 0xbc007a00, 0xd600c900, 0x0000e300, 0x31353413, 0x32373631, 0x06171633, 0x27272607, + 0x31311714, 0x31151716, 0x061d4d06, 0x45373221, 0x162205c4, 0x09823633, 0x26273422, 0x2105cc5c, 0x09822635, 0x45072221, 0x262105cb, 0x212d8223, + 0x01782107, 0x66072007, 0x33210d0f, 0x245a8517, 0x06053736, 0x059a5607, 0x83353421, 0x6625202b, 0xd2520e18, 0x05944d05, 0x152076a1, 0x386aa682, + 0x26272109, 0x06205d83, 0xa6820682, 0x07161723, 0x08006925, 0x36372508, 0x0f013017, 0x010c0201, 0x030d0f01, 0x120b0b30, 0x010b0b12, 0x141b1212, + 0xca071010, 0x150f1007, 0x0112121b, 0x15211689, 0x2116840f, 0x16831410, 0x4d700121, 0x2b250753, 0x0a19190a, 0x200484ca, 0x0840783b, 0x0c01d028, + 0x020e0201, 0x11820d03, 0x2e2e8723, 0x221e842e, 0x8630190a, 0x8d4a8c61, 0x0f452978, 0x08025908, 0x01070709, 0x08240582, 0xe0fe0106, 0x01270d8b, + 0x03040933, 0x85090706, 0x7d012105, 0x0c216488, 0x22b58303, 0x8510076a, 0x82538d9e, 0x87cc8f16, 0x191823a9, 0x9c836a0a, 0xb8200482, 0x1022d187, + 0x1741030d, 0x86282007, 0x2525211e, 0x8b150f41, 0x0e102370, 0x9d8b1b12, 0x0c8be620, 0xc58b1320, 0x0200002e, 0xe0ff0000, 0xa001c001, 0x34001500, + 0x2e0c3756, 0x33363734, 0x31353133, 0x13212726, 0x60233323, 0x152b0fa2, 0x14311531, 0x06310707, 0x83402323, 0x4fe020c3, 0xfe22057c, 0x4318e0c0, + 0x01220ae7, 0x715e1b40, 0x061a2105, 0x2807d85f, 0x09090e50, 0xfe010fe0, 0x091e5f70, 0xe0250983, 0x5a131a06, 0x06174e13, 0x0100022b, 0x002700c0, + 0x00530039, 0x05e34300, 0x20096279, 0x42908223, 0x372106e1, 0x20838233, 0x061c7023, 0x23333725, 0x55373633, 0x062a0542, 0x16311507, 0x15352717, + 0x1b433635, 0x052f4307, 0x3d850720, 0xa2824020, 0x30010f22, 0xa0837784, 0x40200883, 0xa020c584, 0x200b4d68, 0x20208c40, 0x232983e0, 0x400f0110, + 0x84089a45, 0x01302211, 0x20ce820f, 0x840584a0, 0x8a102004, 0x832184ff, 0x055b4745, 0x82800121, 0x00342ad7, 0x004a003e, 0x37361300, 0x0ac86e21, + 0x17310722, 0xed550d82, 0x82212007, 0x37362ae4, 0x31353133, 0x31373736, 0x220d8227, 0x82233135, 0x06132305, 0x06823307, 0x07312725, 0x83353637, + 0x31152712, 0x00331714, 0x84631602, 0x01082705, 0x2c51522b, 0x07640801, 0x01082309, 0x1185512c, 0x05066f2e, 0x520505b8, 0xe014ad51, 0xa801b814, + 0x27050249, 0x512d3f13, 0x133f2c52, 0x25071249, 0x522c3f13, 0x0f832d51, 0x05a4fe24, 0x2e820707, 0x221bf326, 0x1b221313, 0x3324bf8a, 0x51004200, + 0x088b6018, 0xb5821520, 0x07311726, 0x15070631, 0x18063e75, 0x20075566, 0x20a88435, 0x22c18237, 0x82333135, 0x27262805, 0x27171321, 0x57171617, + 0xd8820539, 0x17273523, 0x05157227, 0x3f821520, 0x83180721, 0x95b08993, 0x52a829d4, 0x011d5252, 0x511e01e0, 0x1e200082, 0x1d230882, 0x83c00152, + 0x23ca99be, 0xdefe0216, 0x1f272c82, 0x2b13132b, 0x8744521e, 0x821f200a, 0x00002cc4, 0xff200001, 0x01a001c0, 0x828700c0, 0x059746d3, 0x36371624, + 0xd3471633, 0x22078a05, 0x18143115, 0x2208595d, 0x18353736, 0x230a096d, 0x27260722, 0x06200387, 0xcd832382, 0x27311727, 0x06310731, 0x82358215, + 0x82372049, 0x05df410b, 0xe7571620, 0x27262306, 0xd9413107, 0x37342207, 0x214d8237, 0x1b853115, 0x3531352d, 0x0f0f0190, 0x0e0c0101, 0x9105050b, + 0x0e0d2407, 0x83010f15, 0x111d2af1, 0x12120112, 0x1204041b, 0x21038726, 0x1282121b, 0x12120e2c, 0x11111709, 0x090e0e1f, 0x28830c0a, 0x0c14022c, + 0x090d0d09, 0x0a0a012b, 0x5a840705, 0x56828020, 0x070f0f25, 0x82030906, 0x31068c0e, 0x12121868, 0x85110608, 0x16020216, 0x1c1c0f76, 0x53836823, + 0x021f0122, 0x70820286, 0x100b4032, 0x190b1010, 0x21260c22, 0x14141620, 0x6d040706, 0x80302d83, 0x06010315, 0x20061313, 0x0b100c36, 0x2005060b, + 0x42226383, 0x6344400e, 0x01c02d05, 0x00c001e0, 0x0097003a, 0x07060100, 0x2e058e46, 0x31273115, 0x07222326, 0x17141506, 0x54163117, 0x332c05ee, + 0x37363332, 0x35343736, 0x31353534, 0x8705c246, 0x27262507, 0x31313107, 0x21070672, 0x31413131, 0x31302807, 0x37363130, 0x82151716, 0x93302007, + 0x30152a15, 0x06070615, 0x23232207, 0xd5731823, 0x1865820a, 0x250c2348, 0x12280001, 0xee830c0a, 0x1a130336, 0x13131419, 0x2e2f2458, 0x01080834, + 0x46020101, 0x0106302f, 0x0d82fb82, 0x0c260582, 0x1028120a, 0x86410f01, 0x33078b05, 0x35242404, 0x08050101, 0x0a573e56, 0x2c0b0b0a, 0x010e0e0c, + 0xc0231f88, 0x83042202, 0x03a62643, 0x19141313, 0x265e821a, 0x2f071314, 0x8202462f, 0x83b02060, 0x02022176, 0x04250583, 0x20600222, 0x2636820f, + 0x02168820, 0x83881602, 0x5038210a, 0x48200a83, 0xad330a83, 0x24350101, 0x3c010424, 0x0a0b0b58, 0x050b2b0a, 0x83df1007, 0x3b2c8517, 0x00000200, + 0x0002f0ff, 0x40008001, 0x00008e00, 0x31373437, 0x33373631, 0x26312731, 0x20067947, 0x220f8217, 0x84373130, 0x17322415, 0x18171716, 0x21085242, + 0x23822323, 0x37342738, 0x31342726, 0x31073134, 0x27262722, 0x16070637, 0x16313717, 0x6d481617, 0x21078506, 0x77493333, 0x05955505, 0x23232628, + 0x27072231, 0x34821731, 0x14231422, 0x25820782, 0x83272721, 0x06a45974, 0x08053c43, 0x11000721, 0x08031b12, 0x050e0e1a, 0x1b161507, 0x120403ad, + 0x290b261b, 0x01152322, 0x22220115, 0x42600833, 0x7e2f066c, 0x0213121b, 0x02010f40, 0x0710a10f, 0x42040b06, 0x430808a5, 0x141f0860, 0x020e0114, + 0x1c17180e, 0x120c110b, 0x39011312, 0x0f05020e, 0x050ebd55, 0x10bc0e02, 0x0a070603, 0x131bacbb, 0x06020212, 0x1b1a1616, 0x27050e0d, 0x1c140405, + 0x23141401, 0x7d292403, 0x01222233, 0x22073443, 0x82040101, 0x02122b8e, 0x06010e0f, 0x0c0e0e01, 0x6c430704, 0x1424080a, 0x1c7d1f14, 0x0d190219, + 0x10100d0e, 0x0d010114, 0x020e0f05, 0x0e022a14, 0x042a040f, 0x070b0111, 0x00060108, 0x01200082, 0x00260382, 0x80010002, 0x13455900, 0x05db4a08, + 0x7a070621, 0xbd650744, 0x05ae7405, 0x55313521, 0x0b4b05aa, 0x05174505, 0x0bbf7318, 0x220b9141, 0x65352726, 0x2729055d, 0x02164823, 0x1ba81602, + 0x05ff6312, 0x0d836820, 0x0607982c, 0x16020b40, 0x912f0216, 0xa182141f, 0x6820b182, 0x0f21c082, 0x260d87a8, 0x1f1f23d2, 0x83204f16, 0x4e162422, + 0x5bd23220, 0xee5605a9, 0x24398208, 0x0d072804, 0x224b8318, 0x82011d0b, 0x2038843e, 0x8643820f, 0x100f260b, 0x342a641b, 0x2420836c, 0x641c246c, + 0x2ceb8327, 0xff1d0002, 0x012402c0, 0x003a00c4, 0x2cf1827c, 0x31313726, 0x17363736, 0x31171716, 0x21098637, 0x0f831516, 0x07071623, 0x05bd6331, + 0x42272621, 0x0b820b7d, 0x31833720, 0x4206be54, 0xfc530529, 0x230b8c05, 0x32313317, 0x54822882, 0x84262721, 0x2722234a, 0x0d893726, 0xaa315482, + 0x1a0d0c06, 0x0817161a, 0x15060d1e, 0x0e181b15, 0x08b1820e, 0x060d0d4a, 0x28280e37, 0x45582235, 0x0304155c, 0x19191210, 0x0a331116, 0x10190b0a, + 0x0e054d11, 0x0436030e, 0x33091513, 0x040d0e07, 0x12120849, 0x0b0c3f15, 0x395c0b08, 0x1b242247, 0x0238091c, 0x1a040f0e, 0x070d1406, 0x011d0208, + 0x1f270b82, 0x05121405, 0x836f013a, 0x376d8365, 0x0e1b466b, 0x1205040e, 0x04041812, 0x1b161607, 0x1f1f34dd, 0x47350101, 0x41086583, 0x11040315, + 0x171a830d, 0x03070a18, 0x05030e15, 0x0914b70e, 0x0d801305, 0xba0e0704, 0x0d0d0d18, 0x0d0a0732, 0x012b470a, 0xde231516, 0x0e03040f, 0x0a011368, + 0x0f960c09, 0xa70e0104, 0x11010113, 0x008200ca, 0xfcff0525, 0x8201c0ff, 0x3b002c01, 0x7c007000, 0x95008900, 0x44130000, 0x162105dd, 0x17994617, + 0x69411520, 0x18232005, 0x250cb578, 0x35373637, 0x7a181131, 0x2624082f, 0x06072627, 0x21068e43, 0xc0433316, 0x095b4507, 0x8505c146, 0x2613220f, + 0x05434927, 0x40824282, 0x22076845, 0x8a172726, 0x01a02a18, 0x01010f0f, 0x050b100f, 0x2b078308, 0x08050a11, 0x0c03030d, 0x06040b0c, 0x2e054342, + 0x191c3d38, 0x07431018, 0x27090d0b, 0x6a10110a, 0x102e0581, 0x17141817, 0x430f0505, 0x28232317, 0x90437401, 0x06072e07, 0x0a0a2013, 0x04042212, + 0x1b121201, 0x225a8530, 0x8230010f, 0x18658449, 0x21080a4a, 0x12838001, 0x06118827, 0x01070c04, 0x3e06850f, 0x04050d0c, 0x0e020407, 0x141f6810, + 0x0d0d0114, 0x090d6518, 0x0e3a0b07, 0x14110604, 0x83400001, 0x12c63151, 0x0f0e0403, 0x65171a19, 0x01131321, 0x68332222, 0x2c053460, 0x1a030118, + 0x1b610101, 0xfe011212, 0x205983d0, 0x22048460, 0x850f0110, 0x010f2208, 0x3a158910, 0x06000000, 0xc0ff1c00, 0xc101c001, 0x54003e00, 0x70006200, + 0xb500a500, 0x68130000, 0x27210767, 0x09674131, 0x18070621, 0x210f934b, 0x01833135, 0x2405d546, 0x31222726, 0x069d6522, 0x15061525, 0x82143115, + 0x23262401, 0x83273123, 0x16332714, 0x17270715, 0x58451727, 0x37262405, 0x18171736, 0x240cdb49, 0x32171617, 0x09416037, 0x35272623, 0x4b6c8331, + 0x162105b4, 0x097c4417, 0x3637362c, 0x34313437, 0x32331631, 0x4a183737, 0x31330c3d, 0x141bfb15, 0x11070314, 0x1a17170a, 0x080b0b19, 0x18011835, + 0x20081b4e, 0x06e64601, 0x0601013d, 0x1b101002, 0x0708080b, 0x0f031106, 0x378c090e, 0x06163737, 0x0d033306, 0x41b1060e, 0x240807a6, 0x08281226, + 0x22220108, 0x22333033, 0x09090122, 0x010f500e, 0x16280f01, 0x28160202, 0x0112121b, 0x0a0c0808, 0x212c874a, 0x5183bf01, 0x1a313d26, 0x09090b0b, + 0x96227a82, 0x4f182317, 0x48220805, 0x03472010, 0x82382006, 0x9c04389b, 0x0130140f, 0xa20f0201, 0x5a0f030e, 0x9a9a9a47, 0x060e9101, 0x836a0e04, + 0x1020215d, 0x30250583, 0x0202226c, 0x8375830a, 0x0e18237e, 0x6f470909, 0x82c18208, 0x1c04213b, 0x20212c89, 0x935d1810, 0x0055220e, 0x37e55264, + 0x35150323, 0x07174315, 0x18313321, 0x1809306d, 0x2307cd65, 0x35153517, 0x24059550, 0x23060714, 0x29f15223, 0x16026035, 0x253d0216, 0x0713150b, + 0x01022222, 0x58221716, 0x69300216, 0x5f1808e2, 0x683b2f74, 0x60707070, 0x16020216, 0x07135248, 0x174b150b, 0x1617222c, 0x58160201, 0x6e404040, + 0xdb4b05f9, 0x01c02806, 0x003300c0, 0x74610040, 0x17204221, 0x20090e4c, 0x08904933, 0x2307ec46, 0x27263135, 0x202a4274, 0x83fd82b0, 0x023022bf, + 0x4c098916, 0x577405c0, 0x02282228, 0x843e8c16, 0x24f78a48, 0x00410034, 0x23f7824f, 0x31151716, 0x8505754d, 0x05c95509, 0x6d311521, 0x31210c79, + 0x4e018235, 0x35290558, 0x05373631, 0x11212121, 0x060d6731, 0x33230727, 0x36272623, 0x05b46337, 0x02168023, 0x3b5b1890, 0x09186e0c, 0x01259182, + 0x01a0fe10, 0x25038260, 0x0f40010f, 0xbd736801, 0x02c0230c, 0x3e432816, 0x1a3a7505, 0x3675c020, 0x98731807, 0x8e002008, 0xc46320d3, 0x370724d3, + 0x47311707, 0x0720059b, 0x0e5c8118, 0x36313725, 0xab071617, 0x2f5f21e7, 0x62180082, 0x0e22134e, 0xf5ad010e, 0x48825920, 0x0e926218, 0x2f0e0e23, + 0x415b832f, 0x55200f07, 0x74470741, 0xf9ab0fe7, 0x70704725, 0x74111170, 0x5f2205f0, 0xefb01111, 0x3f826920, 0x2007fc74, 0x38e5855f, 0x00040000, + 0x02ddff00, 0x00a30140, 0x00290020, 0x003b0032, 0x15160100, 0x05ef6e11, 0x3127272f, 0x27063107, 0x31113526, 0x31373736, 0x05a34936, 0x1105172a, + 0x31371111, 0x01073111, 0x27200882, 0x17240882, 0x37073737, 0x21080f82, 0x36021131, 0xa80e010a, 0xa0b70809, 0x010a0b0c, 0x0808a80f, 0x0b0ba0b8, + 0x7878fafd, 0x90903801, 0x00827830, 0x089c0132, 0x10b0fe0c, 0x02034006, 0x07043d3d, 0x50010c08, 0x3e320c84, 0x6507053d, 0x1c01e4fe, 0x012ee4fe, + 0xe2fe2e1c, 0x03831e01, 0xe2fe302f, 0x2d2d0230, 0x2e1d012d, 0x0000e4fe, 0x29af8202, 0x010002be, 0x001d00c0, 0x7318004e, 0xbd5f072f, 0x089f6805, + 0x23061f73, 0x31311733, 0xc285c082, 0x35313522, 0x05830d82, 0x5a05a64c, 0x232d11cc, 0x14a00731, 0x49010d0e, 0x0f8b100c, 0x06f27001, 0x30600f28, + 0x09081105, 0x57183009, 0x457009a0, 0x658b2708, 0x0e0d0150, 0xf3821014, 0x20010f22, 0xe0333284, 0x047c010f, 0x0404050d, 0x0407150a, 0x12120130, + 0x1820011b, 0x2008395d, 0x200983e0, 0x0fe7744c, 0x51004322, 0x23375d6a, 0x15351537, 0x24059247, 0x17163736, 0x740d8c33, 0x78182fda, 0x70210811, + 0x06df5a02, 0x20285a6a, 0x0b7a4448, 0x00200b8b, 0x200f8f79, 0x22e9b84f, 0x6f332333, 0x96610aad, 0x34312205, 0x20401837, 0x80c02231, 0x0aa35780, + 0x0e090922, 0x6020e6a8, 0x310dde57, 0x00020000, 0x01c0ff0c, 0x00c001f0, 0x00360029, 0x4e181300, 0x15240b39, 0x11311531, 0x0f460382, 0x31213305, + 0x27343736, 0x31373127, 0x27263536, 0x11110321, 0x456f2111, 0x21270806, 0x0101175c, 0x16160f0e, 0x01010e0f, 0x86013013, 0x3e020218, 0x1802023e, + 0x010c86fe, 0x08083064, 0x019cfe30, 0x841d0f60, 0x3f27821f, 0x30030f1a, 0x403000ff, 0x06180240, 0x058b8b05, 0xfe021806, 0xff0001d0, 0x6d000100, + 0x006c1413, 0x04350082, 0xfcff0000, 0x80018002, 0xa8008500, 0xba00b100, 0x07010000, 0x064d5f37, 0x94822320, 0x17171626, 0x30311731, 0x17240182, + 0x36371631, 0x11820183, 0x32331625, 0x82353637, 0x8217200d, 0x05fa4313, 0x27222324, 0x5e522726, 0x2b338305, 0x17163333, 0x07143115, 0x31232306, + 0x22054b65, 0x82062706, 0x82058257, 0x31272127, 0x26210183, 0x0a435927, 0x3320f682, 0x2c505582, 0x35052407, 0x73233515, 0x23270512, 0x31070706, + 0x82141506, 0x0503466b, 0x91822320, 0x33171624, 0x51822605, 0x36171626, 0x37360537, 0x51080a85, 0x33331001, 0x1b121733, 0x20141510, 0x1b072416, + 0x01020c0b, 0x0a0c0d05, 0x0c0b090b, 0x0d010909, 0x0f100c0c, 0x244c0e0e, 0x161b1b15, 0x46170117, 0x2a383a2b, 0x0f50271e, 0x0e090901, 0x55091320, + 0x231c0805, 0x1c150906, 0x1814181b, 0x071b1218, 0x36820824, 0x0e200e22, 0x25083b82, 0x033c280f, 0x3a2b1b02, 0x0106070a, 0x07093010, 0x27261c25, + 0x0808461d, 0x11481011, 0x010f0e10, 0x4b040f4b, 0x774a20fe, 0x10022107, 0x21074c4c, 0x92827f01, 0x18100625, 0x8301800e, 0x09250891, 0x0c030309, + 0x0b090303, 0x0b080909, 0x0705070e, 0x11110c0a, 0x1213214c, 0x181e1e17, 0x01012742, 0x0f011b24, 0x2c7084d0, 0x0519090a, 0x0314090b, 0x01101102, + 0x208c8401, 0x82178201, 0x0fd03fa9, 0x25180201, 0x90ff0101, 0x21069090, 0x421a0119, 0x070b0a08, 0x0d430c0c, 0x4b11110f, 0x7b88140f, 0x02661020, + 0x05ab4708, 0x01000232, 0x001900c0, 0x0047002c, 0x31321300, 0x31303330, 0x61059151, 0x3539073a, 0x37373431, 0x17271707, 0x37323316, 0x31153137, + 0x31210706, 0x13352726, 0x9c811822, 0x057c4808, 0x55373621, 0x54080572, 0x01ff2326, 0xac03cc01, 0x10141311, 0xcfcc03ac, 0x1e8e8e8e, 0x8e1e2424, + 0x70fe0701, 0x10d00107, 0x0117cc0c, 0x18100f01, 0x10189001, 0x1601010f, 0x01100dcc, 0x05029290, 0x0c0c8e0d, 0x02050d8e, 0x7575e492, 0x75171775, + 0x010107b4, 0x1401b407, 0x1d119209, 0x822a84ff, 0x1dff2c34, 0x00099211, 0x00070000, 0x84c0ff20, 0x000f2abb, 0x00360029, 0x00540048, 0x2d355d61, + 0x18361321, 0x200a8f6c, 0x05ea6b07, 0x2505c061, 0x27262726, 0x6a4e2523, 0x4e1d820a, 0x0d4e1583, 0xe0fe2105, 0x0f24c782, 0xe0fe2001, 0x4507ab45, + 0x90200bb5, 0x230bbb71, 0x16172220, 0xc020fd82, 0x16243082, 0x01402217, 0x4108694e, 0x6d6e11a0, 0x0f012107, 0x30206583, 0x200ef86b, 0x216a8380, + 0x8f7200ff, 0x0120210b, 0x51185282, 0xd020077d, 0x40200883, 0x70210484, 0x05166801, 0x90200d82, 0x00231589, 0x5e000600, 0x43410b73, 0x5e602005, + 0x41412c77, 0x7737201d, 0x15200a86, 0x0ebf5e18, 0x411f6a5e, 0xc8201b34, 0x89095561, 0x0db87909, 0x20052d41, 0xa45518c0, 0x41e0200d, 0x9020182c, + 0x2007b346, 0x0b937e60, 0x66000521, 0x182e0747, 0x42002700, 0x5c004f00, 0x26250000, 0xbc443127, 0x26072207, 0x0d631827, 0x06072109, 0x33260e86, + 0x16171631, 0x6d180717, 0x1126191c, 0x37262726, 0x25823736, 0x27203382, 0x0c820682, 0x0c821282, 0x97012508, 0x291f200f, 0x201f2940, 0x0202380e, + 0x58583b3b, 0x02023b3b, 0x3e302937, 0x1506303e, 0x1e401e15, 0x6f071515, 0x25130f64, 0x0a0a0c17, 0x0585170c, 0x2a025826, 0x022a2c2c, 0x30210585, + 0x05836c24, 0x563a2422, 0x54824c84, 0x203a562f, 0x1f01011f, 0x0111121c, 0x1c121101, 0x18fc6350, 0x13011026, 0x01131414, 0x28260585, 0x18181a32, + 0x0585321a, 0x00040037, 0x01c0ff00, 0x00c00180, 0x003a0020, 0x0059004c, 0x35150100, 0x0bbb4515, 0x46492320, 0x71212006, 0x232106f6, 0xc1561805, + 0x33132318, 0xb5543323, 0x31232105, 0x20055341, 0x0cdf7527, 0x0909002e, 0x090e400e, 0x010f4009, 0x00010f01, 0x40220583, 0xd27100ff, 0x40a02313, + 0x62434040, 0x4158180c, 0x1090220d, 0x06196910, 0xa0491020, 0x18c07107, 0x4f436082, 0x7560200a, 0x61180d81, 0x182f09e3, 0x3f003200, 0x57004b00, + 0x11010000, 0x5b061111, 0xfd8306e3, 0x11200b85, 0x1be36118, 0x0ce18518, 0x82183043, 0x01c021ac, 0xda848c82, 0x61182020, 0xd02019f0, 0x200be142, + 0x14264368, 0xd6822020, 0x00ff0025, 0x1822010f, 0x2307066c, 0x8000010f, 0x8b14cd7d, 0xd08018f1, 0x0a214308, 0x0b660220, 0x00222c08, 0x1300002f, + 0x31151514, 0x18163115, 0x2007c155, 0x076b5237, 0x22312125, 0x83070623, 0x18172001, 0x410b9e79, 0x0d4b05bf, 0x80fe2a08, 0x0c0e0303, 0x02060810, + 0x85791830, 0x6601240b, 0x43800303, 0xc02008c8, 0x022f2e84, 0x0b100907, 0x0fc0860d, 0xc00f0101, 0x85010000, 0x10002887, 0x00000b00, 0x46070637, + 0x2629058e, 0x16182127, 0x01160202, 0x220583d0, 0x431030fe, 0x032008da, 0x2408d743, 0x0039002d, 0x22408253, 0x65233323, 0x23200546, 0x4f085a4f, + 0x4056057a, 0x31352605, 0x37323133, 0x064f7b36, 0x5f850120, 0x21313525, 0x82131531, 0x4f2983d0, 0x362c0da0, 0x01373637, 0xe0e0e0b0, 0x3009090e, + 0x22212e82, 0x076c41e0, 0x21077d42, 0xc74280fe, 0xe0fe2205, 0x057b4910, 0x2107a944, 0xb34400ff, 0x09902508, 0x10100e09, 0x42843987, 0x12823020, + 0xfe215483, 0x22fa8470, 0x7d4001c0, 0x0d43096c, 0x82002009, 0xff012a00, 0x01c0fffc, 0x00c001c4, 0xaf9018a8, 0x3115220e, 0xbb901837, 0x053a4908, + 0x30590720, 0x8f098308, 0x4f172013, 0x2722067a, 0x27881531, 0x0feb9018, 0x264d3520, 0x37372107, 0x0d317918, 0x82171721, 0x06054e6b, 0x27241b82, + 0x36372631, 0x07871382, 0x35311723, 0x27911831, 0xe02c080b, 0x11170216, 0x390e0e11, 0x15081542, 0x25080415, 0x12090d14, 0x03142025, 0x424e1608, + 0x07164e42, 0x251f1504, 0x140d0912, 0x15040825, 0x42282282, 0x110e0e39, 0x16021711, 0x1f233794, 0x9e070415, 0xc0012537, 0x172e1602, 0x39234483, + 0x834d274d, 0x151f312f, 0x0c141209, 0x16080816, 0x26150314, 0x14031526, 0x0c2d0b83, 0x15091214, 0x0308161f, 0x4c264e14, 0x23a28339, 0x02162e17, + 0x4c223b88, 0xa3834e26, 0xcb703bab, 0x01c03808, 0x000d00c0, 0x00480037, 0x00640056, 0x13000072, 0x33073707, 0x5a312731, 0x372505d5, 0x33172717, + 0x05515533, 0x27056542, 0x27263123, 0x31112726, 0x21052a45, 0x1d4b3333, 0x17162505, 0x11111107, 0x07584418, 0x11353625, 0x4d172131, 0xde4d0cd0, + 0x300d8d0d, 0x131313ab, 0x04031391, 0x9403045e, 0x0e242424, 0x20db8338, 0x08b94208, 0x0e840820, 0x11253e27, 0x111d5e1d, 0x078342ed, 0x1357e020, + 0x22089108, 0x821c8c01, 0x04042b00, 0x3737371b, 0x02161602, 0x6e44d0fe, 0x83302008, 0x18372b0f, 0x67180101, 0x3001d0fe, 0xc04ad0fe, 0x30012905, + 0xd0d0d040, 0x0f01010f, 0x0b960485, 0x2e079f4c, 0x014002e0, 0x002300a0, 0x0055003d, 0x43000068, 0x15240587, 0x23070631, 0x109a7618, 0x23079970, + 0x15351507, 0x240b9c44, 0x27262726, 0x22318221, 0x49070706, 0x394407ea, 0x83312008, 0x1735211c, 0x53112373, 0x60200531, 0x152da783, 0x0d0d0767, + 0x070d3407, 0x45070c0c, 0x25118310, 0x12120140, 0x445c011b, 0x25098205, 0x121ba0fe, 0xef840112, 0x26270130, 0x1640013a, 0xfe160202, 0x191925c0, + 0x7818d001, 0xe02a0ffa, 0x0b9d010f, 0x0a11500b, 0xc5615e0a, 0x83182019, 0x3ae02d40, 0x02012726, 0x01021616, 0xe0251919, 0x0c349718, 0x270cdb76, + 0x00400024, 0x01000049, 0x44065a47, 0x825911a1, 0x17162505, 0x07331716, 0x0d644318, 0x1531232d, 0x23070631, 0x35272623, 0x4d372331, 0x18230848, + 0x44282828, 0x282b11a7, 0x1515060a, 0x15151e1e, 0x47d80a06, 0x1028099e, 0x58581602, 0x80100216, 0x0383b283, 0x63460120, 0x07834814, 0x42183020, + 0xe6840bf3, 0x45081821, 0x1a2c12af, 0x48003500, 0x22050000, 0x26313127, 0x08877618, 0xc2823220, 0x14151622, 0x0622c482, 0xc74b1123, 0xaf4d1805, + 0x15032713, 0x31171535, 0xd3823137, 0x15210384, 0x2a155731, 0x80808026, 0x10506050, 0x13717618, 0x49d00121, 0xff261740, 0x20202000, 0x02828080, + 0x860a6b4d, 0x06195fc3, 0x13947d18, 0x624a2120, 0x23262205, 0x21d28322, 0x86181607, 0x372909ee, 0x23332325, 0x31173107, 0x83c18233, 0x31232303, + 0x93b73035, 0x8528b850, 0x0f8b51fb, 0x4f185720, 0x7d181c37, 0x25221a83, 0x9e572326, 0x05724705, 0x2305b244, 0x17163115, 0x080f4918, 0x252f7b52, + 0x0a072701, 0xe2680214, 0x14022707, 0x0554070a, 0xdfa85405, 0x02076935, 0x09092a14, 0x090e200e, 0x02142a09, 0x08065b07, 0x925b0608, 0x0b7918ef, + 0x16152237, 0x09917617, 0x20054848, 0x06d15133, 0x22232623, 0x0c791807, 0x6caa952a, 0x2f412f87, 0x05003d15, 0xe0fffbff, 0xa8010502, 0x0d000600, + 0x1b001400, 0x00003300, 0x17271713, 0x17233137, 0x3d059446, 0x21332317, 0x25373117, 0x27332333, 0x03050731, 0x23060313, 0x31032722, 0x31373726, + 0x9b7c3336, 0xa9073106, 0x58575757, 0x4848d7af, 0x32398148, 0x9cfeb2b2, 0x963d0382, 0x49818181, 0xe8b20138, 0x0b07e8e8, 0x0be8070b, 0x0c07700a, + 0x70070cf0, 0x78010b0a, 0x2100825d, 0x00824d1b, 0xc4c47d26, 0x284d4d30, 0x2b05a34a, 0x00010808, 0x0a980f0f, 0x0f0f980a, 0x2706f745, 0x40020000, + 0x19008001, 0x4e229982, 0x5f186900, 0xd8450a6d, 0x317f1810, 0x051f6e1f, 0x0ed77a18, 0x1d663720, 0x5f6b1805, 0x6731200a, 0x702007d1, 0x2107b860, + 0x09876001, 0x84a0fe21, 0x0f7f1814, 0x18b0200f, 0x2913c041, 0x080f0150, 0x0f01010f, 0x05831818, 0x0f010823, 0x25078210, 0x12121b50, 0x4e87a001, + 0x155e0884, 0x12122205, 0x0a084a1b, 0x18800021, 0x23138a42, 0x40010f30, 0x2007cb51, 0x224c8250, 0x4b03000f, 0x436e088f, 0x45801805, 0x1736222b, + 0x08154a17, 0x18136c59, 0x210ab073, 0xe74680fe, 0x56802005, 0x09840898, 0x1811af21, 0x5910a17b, 0x994f050e, 0xea56180d, 0x854f2014, 0x84419129, + 0x82c020d3, 0x00c027e8, 0x005a0051, 0xd3830074, 0x2105b36d, 0xa24b0706, 0x31332505, 0x27343135, 0x2105bb6d, 0x01853736, 0x03831983, 0xad7c0720, + 0x20318606, 0x054d5515, 0x2f832383, 0x36272632, 0x23272637, 0x37073703, 0x31173133, 0x33233723, 0x20095654, 0x05f24b33, 0x3e056064, 0x01021668, + 0x1c0c0c11, 0x01011716, 0x30120f0e, 0x0a0a0e0d, 0x12120101, 0x01141919, 0x83010102, 0x13580803, 0x42080819, 0x11110e0e, 0x0101143a, 0x0d0e0a0a, + 0x0e0f1230, 0x16170101, 0x110c0c1c, 0x38160201, 0x1010106b, 0xd0d711b6, 0x13c9c9c9, 0x0c051a0a, 0x12ee120b, 0x1a050c0b, 0xc0011309, 0x05121602, + 0x2d200f0c, 0x1621362e, 0x1b0d0c15, 0x0d07070e, 0x252a150c, 0x101d1e25, 0x62835f83, 0x0a1d102b, 0x1111420a, 0x273a0e0e, 0x2323822d, 0x1b0e0707, + 0x162e2382, 0x2d2d3721, 0x050c0f20, 0xfe021612, 0x00822030, 0x10015025, 0x820a0834, 0x2461825a, 0x1034080a, 0x0a935b01, 0x4a004124, 0x5f5d6200, + 0x0599440c, 0x3205ac4e, 0x31171714, 0x31273133, 0x37363526, 0x17163333, 0x82070714, 0x0573560f, 0x23272624, 0x47693531, 0x29098206, 0x33233303, + 0x31213117, 0x43492537, 0x55072005, 0x2e08058b, 0x32312133, 0x34353637, 0x02f82727, 0x20021616, 0x16020216, 0x111a8c20, 0x36050110, 0x01013e34, + 0x0ba4a40b, 0x343e0101, 0x11010536, 0x858c1a10, 0xf693311f, 0xfe10f6f6, 0x1c0110ea, 0xf7fe1309, 0x051a0914, 0x0121b982, 0x21c1822e, 0x675d1a05, + 0x83202005, 0x01282a4c, 0x0c1a1110, 0x02907d0b, 0x26438202, 0x9002020b, 0x830c0b7d, 0x8428205a, 0x68fe266a, 0x101f2020, 0x32fc8d01, 0x00040000, + 0x01c0ff10, 0x00c001b0, 0x0054004b, 0x8277006e, 0x332323fd, 0x51181723, 0x1522079c, 0xf6833115, 0x4c371621, 0xc98207f6, 0x31230724, 0x34643736, + 0x31352705, 0x31233734, 0xd7603526, 0x05144107, 0x88572320, 0x27262d06, 0x07370703, 0x31273121, 0x27172521, 0x24054b44, 0x22312123, 0x82308327, + 0x21372550, 0x03171631, 0x0807db6e, 0x6e6ee355, 0x0a0a116e, 0x020d1006, 0x13321110, 0x32110c0e, 0x32060b36, 0x02021c08, 0x13012002, 0x0d0d1201, + 0x36507613, 0x17030235, 0x02021931, 0x8e3c2827, 0x01101010, 0xeafe1036, 0x1a1a3c01, 0x0b0c051a, 0x12b2fe12, 0x1a050c0b, 0x29011409, 0x12e50913, + 0x83120202, 0x01380803, 0x0c070d90, 0x0c05070c, 0x0a105b14, 0x240b0b01, 0x0f13110c, 0x0c082724, 0x01021622, 0x5b281901, 0x170e171f, 0x020d0d13, + 0x11503635, 0x0c8a8111, 0x27283c0d, 0x2080fe02, 0x1f220082, 0x2e423434, 0x1001230d, 0x56851101, 0x00021237, 0x00000400, 0x4001c0ff, 0x0c00a001, + 0x3d003400, 0x00005500, 0x5b861813, 0x23172c0b, 0x31172333, 0x31273123, 0x82072323, 0x4c372007, 0x19530696, 0x1716270b, 0x33070706, 0x23823323, + 0x37073122, 0x5205f167, 0x1e580928, 0xe8332305, 0x96182301, 0x1828099d, 0x0b0d0d0d, 0x23230b30, 0x0d300482, 0x16020216, 0x22010117, 0x22333322, + 0x17010122, 0xcb2b0f83, 0x10d6d6d6, 0x13d010b6, 0x43041b09, 0x14260949, 0x292801c9, 0x96181415, 0x78210893, 0x25008250, 0x02161602, 0x3a84291f, + 0x29214282, 0x220f831f, 0x432020c0, 0x00291126, 0xfffaff04, 0x010602c0, 0x27eb82c0, 0x004e0045, 0x01000066, 0x580be154, 0x232505ab, 0x07262722, + 0x062a4306, 0x2005fe53, 0x21d48236, 0x2c431716, 0x831d8306, 0x26272123, 0x26202f84, 0x2d430782, 0x18012020, 0x080c6da0, 0x081c5f33, 0x16101106, + 0x0c0c0d0f, 0x375e0a12, 0x18181f53, 0x3a3a230e, 0x18190d23, 0x5e37531f, 0x0c0c120a, 0x10160f0d, 0x1c080611, 0x2a150a16, 0x160a152a, 0x1b43431c, + 0x2d7a6020, 0x082e080b, 0x0c141803, 0x0706060d, 0x90a3150d, 0x1a101002, 0x2a02022a, 0x0210101a, 0x0e14a390, 0x0d060607, 0x0318140c, 0x02231102, + 0x02112302, 0x5443a8fe, 0x6c042013, 0xa02b06b3, 0x51004800, 0x7b006900, 0x18130000, 0x20075787, 0x05044207, 0x2505326e, 0x33363734, 0x775b3121, + 0x82062005, 0x05284219, 0x37372624, 0x3d6e3631, 0x057d5c06, 0x09a94418, 0x2113232a, 0x31272121, 0x25073123, 0x43092742, 0x27240c51, 0x31352726, + 0x56875883, 0x50232208, 0x010b3303, 0x290a310a, 0x0b0c0115, 0x11300111, 0x15010c0b, 0x0b300a29, 0x03330b01, 0x16160240, 0x2c048502, 0xfe160105, + 0x101601ea, 0x100110f6, 0x05654413, 0x43d2fe21, 0x0923074e, 0x4d010f95, 0x01240593, 0x7001200f, 0x042a0082, 0x0e082702, 0x111e555d, 0x5182781c, + 0x782b5982, 0x551e111c, 0x27080e5d, 0x4c700402, 0x058505a2, 0x4280fe21, 0x6023124d, 0x4e300f01, 0x210805d8, 0x00010f30, 0x00020000, 0x02c0ff00, + 0x00c00100, 0x001b0008, 0x11110100, 0x11312111, 0x23252131, 0xe95b2333, 0x21332205, 0x2b108235, 0x01233135, 0x0160fed0, 0x3060fea0, 0x01240082, + 0x900130d0, 0x01230e85, 0x833030a0, 0x24078214, 0x05000000, 0x837c18ff, 0x004f2e09, 0x00750062, 0x37000088, 0x07060726, 0xa5791836, 0x21168212, + 0x82533131, 0x17062705, 0x33323316, 0xd2733732, 0x31302105, 0x37222e82, 0x36473316, 0x05144705, 0x16242785, 0x37070617, 0x0ce15a18, 0x18141521, + 0x840ce15a, 0x3732240e, 0x91173536, 0x18a83125, 0x091b0d14, 0x240d0103, 0x5f383801, 0x0138385f, 0x302f0783, 0x03028e28, 0x01020101, 0x03070605, + 0x82040a05, 0x06072e00, 0x171b0102, 0x38301323, 0x22393a48, 0xdf7c1822, 0x052f230d, 0x43417611, 0x20058505, 0x0b344f90, 0x198b5020, 0x0e083f2a, + 0x1b160d0a, 0x31281014, 0x07f27c18, 0x0f350783, 0x02040427, 0x07010202, 0x0a0a0707, 0x06010101, 0x120e110a, 0xf67c1801, 0x240b850a, 0x1a253445, + 0x175b1898, 0xa5881818, 0x8b5d180c, 0x0050220e, 0x8b5d1863, 0xdb5e183a, 0x06172a2c, 0x36372627, 0x16173233, 0x22098207, 0x4d072223, 0x5e182f24, + 0xa63027d9, 0x0b0c0e0e, 0x171f1f18, 0x0e0e0c0b, 0x09111009, 0x1828474d, 0x2225db5e, 0x5e0b0c16, 0x0b2305ae, 0x410a0a0c, 0x4a240e4f, 0x82006700, + 0x22371167, 0x18273637, 0x2207ba63, 0x59161706, 0x37210560, 0x069c4227, 0x7f173521, 0xe67f05c8, 0x3316240a, 0x6b273437, 0x318208d0, 0x14313722, + 0x1807d442, 0x082ab685, 0x0d0f4836, 0x1a12130b, 0x0a13121a, 0x11110f0e, 0x0b1c1b0b, 0x0e991210, 0x0e0b0909, 0x600e0406, 0x0d03060e, 0x0101091f, + 0xc00d0909, 0x040e1e09, 0x0d600e06, 0x0c0e0603, 0x07d05d18, 0x242e4f67, 0x0c111176, 0x2c4e830a, 0x11110c0a, 0x020e0f0d, 0x0d0f0e02, 0x3a4c827a, + 0x04030202, 0x20060e0e, 0x060e0d03, 0x0e0e090a, 0x0e200909, 0x0e060a09, 0x8320030d, 0x02042204, 0x05304303, 0x61180020, 0x42240f9f, 0x84006300, + 0x20375761, 0x05c45a05, 0x26272626, 0x27373637, 0x201f444c, 0x42209f33, 0x01212fd3, 0x0ba35800, 0x1111992c, 0x11111717, 0x17170e0e, 0x0b8b0e0e, + 0x1898c020, 0x27848818, 0x200c455a, 0x97619199, 0x23178560, 0x09000000, 0x0cbf8e18, 0x47003e2c, 0x60005300, 0x7a006d00, 0x47518700, 0x7f60181c, + 0x0798531b, 0xe8603720, 0x37362105, 0x0b6b6018, 0x99412720, 0x4815200b, 0x37200bc6, 0x200b5a5b, 0x0bcc4933, 0x18157e41, 0x18149f60, 0x2008768d, + 0x07a653d8, 0x0216b825, 0x84801602, 0x18202004, 0x180b3a42, 0x200bf68f, 0x0b894890, 0x27018022, 0x09559018, 0x18146444, 0x2019c660, 0x207587f8, + 0x075f5418, 0x20087664, 0x186398a0, 0x8b0c478c, 0x10134396, 0x18004c21, 0x253a2d89, 0x31270617, 0x90182631, 0xaf45098f, 0x61631806, 0x0ab63555, + 0x0d030707, 0x20201919, 0x030d1919, 0x220a0707, 0x26222828, 0x455d6318, 0x05037f26, 0x111c0a05, 0x1c270082, 0x0305050a, 0x47af0f0f, 0x17470b73, + 0x0ddf420d, 0x48003f30, 0x5c005100, 0x85007200, 0x00009800, 0x9b182201, 0x052018b9, 0x4b06af55, 0x36200631, 0x20093641, 0x2a1a8217, 0x31331716, + 0x17233135, 0x82332333, 0x15312b06, 0x35153533, 0x31153123, 0x11823333, 0x26373623, 0x200c8227, 0x06e05627, 0x5005aa5b, 0x6d410707, 0x858c1826, + 0x19764214, 0x16a8fe29, 0x08160202, 0x82202808, 0x82602000, 0x08082103, 0x2b051b59, 0xb0b0b0a8, 0x010f1018, 0x18100f01, 0x18200888, 0x531c8641, + 0x6c4315b4, 0x02402514, 0x30021616, 0x0b840086, 0x4f185020, 0x07870706, 0x410c0e49, 0x63470d9a, 0x3cdb420e, 0x17360529, 0x07163131, 0x41060706, + 0x372605b0, 0x33161736, 0x6d413732, 0xb1521826, 0x0e5e352f, 0x13070909, 0x26261f1f, 0x07131f1f, 0x2c0f0809, 0xce2c3232, 0x441c5541, 0x30611447, + 0x02343113, 0x1c0d0909, 0x12111112, 0x09090d1c, 0x640b0b02, 0x4419dc42, 0x43414d1f, 0x07142517, 0x07063131, 0x2507d658, 0x15161716, 0x93182617, + 0x372007a1, 0x07818f18, 0x1815a245, 0x20194562, 0x14434101, 0xed4a7e20, 0x0637570b, 0x3f41fe85, 0x54742039, 0xd17c070e, 0x08315508, 0x1b121222, + 0x00201483, 0x22124741, 0x48ca0093, 0x8b42387b, 0x31302416, 0x84303131, 0x31232201, 0x4c078234, 0x17820bd5, 0x18231521, 0x82086a77, 0x0631250d, + 0x36352627, 0x23052c4a, 0x06071417, 0x08a27718, 0x31303322, 0x38953e9d, 0x26459f41, 0x02010184, 0x820e0604, 0x04063300, 0x03010102, 0x10010605, + 0x0f18180f, 0x06050110, 0x1c8ea003, 0x87050621, 0x0506221c, 0x39bf4103, 0x02014f22, 0x0d237382, 0x820d0101, 0x01022e73, 0x06020104, 0x0215151c, + 0x1c151502, 0x9b0e8406, 0x0863441d, 0x1c00c335, 0x64004d00, 0xe200ab00, 0x36010000, 0x36313137, 0x48272635, 0x06280564, 0x06313007, 0x16150615, + 0x51053344, 0xc655051f, 0x17162305, 0x01833736, 0x06273425, 0x55272223, 0xca4505ae, 0x17162107, 0x2505a141, 0x31273603, 0x79442631, 0x06072105, + 0x2008145b, 0x09ef4127, 0x30313025, 0x85371631, 0x07062670, 0x17140706, 0x44791816, 0x3133220c, 0x85218234, 0x83162069, 0x82172040, 0x33152131, + 0x30221382, 0x3c993331, 0x013a369b, 0x0a0a0fdd, 0x0c0e0f01, 0x0b080606, 0x0501070a, 0x140e0d01, 0x3d520607, 0xa918484e, 0x152610a0, 0x0d0d0e0d, + 0xd7650119, 0x3b3b3408, 0x01374a58, 0x02020601, 0x09090714, 0x32322c0e, 0x44080f2c, 0x9d2109f0, 0x0cd94103, 0x200df541, 0x391c9ba0, 0x0c044201, + 0x1810110c, 0x06060f17, 0x1010100a, 0x080a0101, 0x020e0d14, 0x604f2855, 0x22222a0d, 0x3648393a, 0x2d04052f, 0x46891837, 0x062c280c, 0x050c1206, + 0x45d8fe05, 0x29450519, 0x426c2009, 0x51422d15, 0x1087460d, 0x85006922, 0x284ffb43, 0x31311716, 0x31070716, 0x0cf27906, 0x2305187a, 0x17271717, + 0x17200982, 0x8605184b, 0x060c4b23, 0x3245b643, 0x06070e87, 0x0e061103, 0x07060e41, 0x0b0c0403, 0x8304100e, 0x047b2a05, 0x0e100404, 0x03040c0b, + 0x281b8407, 0x07060311, 0x0c0c0d0e, 0x39ac4304, 0x5783ab20, 0x030e4123, 0x83078311, 0x1005216d, 0x18227b83, 0x72821010, 0x6d836582, 0x82031121, + 0x41758688, 0x6622107b, 0x7b417f00, 0x0601574f, 0x24052e71, 0x31373734, 0x05385727, 0x1405172d, 0x17310707, 0x14151631, 0x85270607, 0x31372514, + 0x15161736, 0x31457541, 0x595959d8, 0x07590808, 0x24030605, 0x05060324, 0x08860107, 0x085a0627, 0x05065a08, 0x39664106, 0x3030a133, 0x09090430, + 0x03033004, 0x03050703, 0x05032b2b, 0x220a8207, 0x8704040a, 0x0530220a, 0x081e8608, 0x07000020, 0xb8fff8ff, 0xc8010802, 0x2f001400, 0x5f004800, + 0x92007900, 0x0000a700, 0x31333601, 0xf0823231, 0x06071422, 0x22250182, 0x36373635, 0x050d6937, 0x10831720, 0x16842620, 0x0b850620, 0x16201a85, + 0x27201285, 0x16202983, 0x07821282, 0x07200b82, 0x1c864886, 0x26352622, 0x05291a84, 0x36370737, 0x07071617, 0x284d8231, 0x27352627, 0x22312731, + 0x251b8327, 0x17151637, 0x7b831731, 0x8205be6f, 0x050c4314, 0x35260125, 0x84343131, 0x1532213d, 0x31083582, 0x22230607, 0x0fab0127, 0x0f0f1414, + 0x1d1c0d0e, 0x07020a12, 0xa0fe0b07, 0x4b545341, 0x02050202, 0x3748483f, 0x29070735, 0x07081211, 0x3e0b0a29, 0x0c828601, 0x1f850782, 0x3f030425, + 0x85384748, 0x692b081f, 0x040d0c09, 0x1b090a07, 0x2222221b, 0x260d010e, 0xfe172423, 0x616161f5, 0x0306060a, 0x0606031d, 0x38060305, 0x02050304, + 0x86c10701, 0x06022109, 0xfe211c89, 0x217f83f2, 0x7f84131c, 0x01238e83, 0x830f0eb2, 0x070b3907, 0x120a0207, 0x3d0d1c1d, 0x290a0b3e, 0x11120807, + 0x36060729, 0x3f484837, 0x02269e82, 0x4153544b, 0x0684023b, 0x07231e84, 0x88281013, 0x0c5d221e, 0x2f8b820e, 0x0a091b1b, 0x0d0c0407, 0x24231709, + 0x1d1d2626, 0x0a2b8b83, 0x02010761, 0x38040305, 0x82050306, 0x03b2249e, 0x84053904, 0x021e2509, 0x62090606, 0xfe211c83, 0x217d8c66, 0x4b430f0e, + 0x005d240e, 0x529a0085, 0x032837b3, 0x07222326, 0x31073107, 0x1805197d, 0x210c5d59, 0x9d7b2735, 0x31272306, 0x278f3327, 0x2405f870, 0x37163117, + 0x21278b36, 0x9e580617, 0x05634706, 0x36373623, 0x6b991827, 0x0249322b, 0x11020505, 0x02010526, 0x01071c04, 0x22040404, 0x28048222, 0x01041b07, + 0x11260502, 0x241d86a0, 0x1b040102, 0x201c8f07, 0x0fbe4607, 0x09090723, 0x15e34c0e, 0x381aad4a, 0x2205057b, 0x05050105, 0x05251b03, 0x12020303, + 0x03030212, 0x031a2605, 0x20148205, 0x221b9b22, 0x4b0b0baf, 0x003c0dd0, 0x00070000, 0x02c0ff00, 0x00c00180, 0x0037001c, 0x00730052, 0x00c7008a, + 0x250000fe, 0x098c9318, 0x59076448, 0x362305c2, 0x51373637, 0x4a570671, 0x83372006, 0x2024822a, 0x22038207, 0x64060327, 0x2b820b77, 0x2d063a43, + 0x21311407, 0x31312326, 0x31302334, 0x29833530, 0x32333423, 0x20648517, 0x05986416, 0x06272725, 0x4d313107, 0x36240d35, 0x27071617, 0x4a1f664a, + 0x6c4a05c9, 0x83332015, 0x31a54a1c, 0x04022f08, 0x0c050102, 0x3c210706, 0x3c4c4c3c, 0x0607213c, 0x0201050c, 0x45343516, 0x16353445, 0x38374ec4, + 0x0a0d0a0f, 0x46451010, 0x45466262, 0x0c821010, 0x380f2608, 0x0ff14e37, 0x0e0e1212, 0x0e0e060e, 0x090e1410, 0x0a060702, 0xe3010102, 0x0b010101, + 0x09020706, 0x120d0102, 0x241d8410, 0x0f12120e, 0x0fb54d7a, 0x09090e24, 0xc2489d07, 0x2ad54a0d, 0x04047a35, 0x04060d0e, 0x01262640, 0x40262601, + 0x0d0d0604, 0x853d0405, 0x013d260d, 0x2f2e0216, 0x08c1824a, 0x3c5f0324, 0x3d02023d, 0x02035f3c, 0x2f490401, 0xdbfe022e, 0x0d01010c, 0x0e13130f, + 0x03050507, 0x12090204, 0x11821b1b, 0x0135b282, 0x121b1b0c, 0x04010109, 0x07050503, 0x0f13130e, 0x0c01010d, 0x0b0e4e04, 0x09090224, 0xc0486c0d, + 0x2dfc480d, 0x280b6755, 0x0045002a, 0x006b0058, 0x083f7089, 0x07a94f18, 0x35352626, 0x26272631, 0x2d06474f, 0x07161736, 0x31150706, 0x37360714, + 0x9b183736, 0x76181b91, 0x172211e9, 0xa2183736, 0x27280e08, 0x35153517, 0x31232726, 0x8307ae4f, 0x05a06d09, 0x01215e83, 0x07894ad0, 0x1f1f0126, + 0x0a0d0435, 0x2a07844a, 0x0709090e, 0x35040d0a, 0x43011f1f, 0xb02019aa, 0x0da07418, 0x954f8020, 0x02102b0d, 0x05120219, 0x03090903, 0x0a821205, + 0x2007094e, 0x07664ac0, 0x31313e28, 0x340e0c1a, 0x614a0f0c, 0x0d0e2809, 0x1a0c0e34, 0x4f3e3131, 0x502013ad, 0x32189e59, 0x252525d0, 0x12010219, + 0x01120909, 0x1b251902, 0x83011212, 0x0d6b4e6d, 0x45002a28, 0x7a006000, 0x7f419800, 0x3617221b, 0x297f4137, 0x31373423, 0xe3711831, 0x07f1480d, + 0x17362526, 0x15163131, 0x2012f348, 0x2b8e4103, 0x0312252f, 0x3c0a0706, 0x0a3c4847, 0x12040706, 0x1e8e4125, 0x05067423, 0x0a054907, 0x06070122, + 0x25070e49, 0x08085a06, 0x8f413b5a, 0x1b172924, 0x06060a2a, 0x01011203, 0x06247c82, 0x171b2a0a, 0x29199141, 0x03030763, 0x09043003, 0x1c490508, + 0x04042208, 0x2013820a, 0x0f1c4907, 0x41f3fe21, 0x9f4516a2, 0x01003705, 0x002800c0, 0x00540043, 0x006a005d, 0x00950077, 0x35362500, 0xbb463135, + 0x09cf4605, 0x14311523, 0x07ad4517, 0x21052b72, 0x64730706, 0x1803201a, 0x250afd53, 0x36371617, 0x2e571737, 0x57352007, 0x07211819, 0x07825106, + 0x7f832720, 0x47313321, 0x09830745, 0x5c011522, 0x210a2343, 0x2343080f, 0x0b454308, 0xbc425c20, 0x10603113, 0x0d0e0e09, 0x1f1f170c, 0x0e0c0b18, + 0xb011090e, 0x2b07b456, 0x0d0d0e1b, 0x0f1b1b0e, 0x1b0f0d0d, 0x200b9056, 0x07304310, 0x250db641, 0x340e0c06, 0x32430e0d, 0x0c0f2109, 0x43063243, + 0x46200b56, 0x22178d6a, 0x5b0a2401, 0x0922097a, 0x42570c01, 0x57482007, 0x80201830, 0x43074d43, 0xd7440b61, 0x001a280b, 0x004c0035, 0x4c70005f, + 0xcb444f4b, 0x3fff5c12, 0x54150953, 0xfc5c0e4d, 0x1d4f5439, 0x200df45c, 0x0f434100, 0xd900c624, 0x4341ec00, 0x4b162038, 0x072205c0, 0x01821716, + 0x22220b86, 0xfa502627, 0x31302d0c, 0x31313130, 0x35303330, 0x37363132, 0x0bc67a18, 0x30272624, 0x1b822723, 0x22073453, 0x8a343526, 0x22158239, + 0x92313433, 0x30272333, 0x68532231, 0x05a44808, 0x36372624, 0x83823233, 0x2b560d56, 0x06010731, 0x05040a07, 0x070a0405, 0x15340a84, 0x0102061b, + 0x01010105, 0x06060402, 0x03040403, 0x02040606, 0x04210e82, 0x21138904, 0x13850504, 0x02010528, 0x0a151b06, 0xa746a107, 0xc67d180d, 0x081a2737, + 0x08070b0a, 0x00820206, 0x08080630, 0x08080a0a, 0x06010b06, 0x01010306, 0xa1820301, 0x03030623, 0x21a78206, 0x9b820103, 0x83050521, 0x21158293, + 0x15840506, 0x06250e85, 0x08060c06, 0x1972564a, 0x2f5c0520, 0x01d6240c, 0x4264011d, 0x34207a1f, 0x4211eb41, 0xff410c25, 0x1d634205, 0x37264392, + 0x17163336, 0xc1531716, 0x5523200a, 0x31213db1, 0x3b4e4b31, 0x9450c585, 0x34974230, 0x4207ab42, 0x57200797, 0x50381b4b, 0x2a2028dd, 0x2032b342, + 0x0ac94205, 0x0124b282, 0x4508060b, 0x423c144b, 0x032f05d7, 0x2d00c001, 0xe100ce00, 0x0e01f200, 0x18250000, 0x2909b76e, 0x17161716, 0x17160714, + 0xc6551736, 0x0d245605, 0x26373226, 0x26272727, 0x22230184, 0x42170607, 0xdd440977, 0x32152206, 0x0c764d31, 0x07060725, 0x42142330, 0x378710bd, + 0x14150622, 0x062143bc, 0x0d3a6517, 0x83373621, 0x07736201, 0x23262722, 0xcc82a482, 0x37331622, 0x20108d48, 0x05cc5626, 0x1724c482, 0x37371631, + 0x2905ee48, 0x07072627, 0x53012731, 0xd1472d26, 0x27078307, 0x1303050a, 0x22010e11, 0x0aeabf18, 0x35290b84, 0x0603082f, 0x0706012b, 0x0f09450a, + 0x4507f544, 0x06211b09, 0x094e4501, 0x78010622, 0x200dce4b, 0x0fb248a0, 0x0e05622c, 0x0811110f, 0x05170409, 0x0782550f, 0x0f040528, 0x0514120e, + 0xcd561101, 0x1e22270b, 0x07020807, 0xfa562c28, 0x09142611, 0x0b83190b, 0x22254507, 0x23127142, 0x080a0b07, 0x22076b45, 0x4c4c0b07, 0x14200b0a, + 0x300cd248, 0x09091184, 0x0f0f0505, 0x020e5912, 0x100f0518, 0x210f8412, 0x6f470015, 0x004a2210, 0x39b3485d, 0x37261724, 0xec703131, 0x05a55305, + 0x26272624, 0xb1483727, 0x8d841811, 0x03833242, 0xd50b0706, 0x0307060b, 0x2e22220e, 0x0d22222e, 0x45bf460d, 0x070b3a2f, 0x0b070808, 0x011a192a, + 0x2a191a01, 0x1988467a, 0x22123b41, 0x46d80091, 0x3b41378b, 0x48b15b15, 0x4173ff45, 0xcb4511a3, 0x0ebf4162, 0x93455520, 0x01002c42, 0x001a00c0, + 0x004a0035, 0x417d0064, 0x19584ddf, 0x11844161, 0x15580320, 0x0e6b4148, 0x3030b722, 0x580ff64e, 0xc7491a13, 0x004a240d, 0x416e005d, 0x77444d5b, + 0x40296a11, 0x44114c41, 0x254d0e75, 0x0e4b4139, 0x4d0c7744, 0x04201023, 0x220c034b, 0x645b0048, 0x25203749, 0x45112441, 0x0c64139c, 0x4590202f, + 0xfb561c8b, 0x14df6315, 0x4506296e, 0xbc630584, 0x0923510d, 0x35001a2c, 0x61004200, 0x8b006e00, 0x6f589800, 0x16272637, 0x36313317, 0x05145437, + 0x2726272c, 0x27263131, 0x15143736, 0x80183130, 0x342307d2, 0x5f313035, 0x3468057f, 0x9e2b890d, 0x69521829, 0x68582029, 0x1628072f, 0x0e140802, + 0x0f01010d, 0x2505da47, 0x0d01010f, 0x0f51140e, 0x9dc0200b, 0x156a411e, 0x2019bb54, 0x077f5188, 0x68836820, 0x020e1623, 0x057a4102, 0x16200782, + 0x20206983, 0x200b9968, 0x4f23a220, 0x252e0bcf, 0x51004000, 0x78006200, 0x35250000, 0x5a7e3515, 0x23062305, 0x83182726, 0x26200796, 0x520d7162, + 0x66182ec4, 0x17220bd5, 0xd47e3716, 0x37362307, 0x60833736, 0x29052f4b, 0x16029001, 0x342c0216, 0x07832c34, 0x49111e21, 0x112308a5, 0x52901e11, + 0xa62224a2, 0x024a1109, 0x0176280d, 0x14140e0d, 0x87010d0e, 0x762a2c07, 0x02167676, 0x17991602, 0x83991601, 0x1d762208, 0x09b74a26, 0x26262d24, + 0x89526a1d, 0x0a0a2126, 0x230ac549, 0x2020205a, 0x08886687, 0x18000021, 0x2d09d36d, 0x00310016, 0x00530046, 0x00790066, 0x097e3700, 0x87471806, + 0x0706220a, 0xc8af1822, 0x33162407, 0x82363732, 0x18262001, 0x25093e7c, 0x17161707, 0x18853131, 0x20099762, 0x06856237, 0x82363721, 0x14372129, + 0x232b218b, 0x15060722, 0x31373207, 0x82373631, 0x290e8430, 0x33161714, 0x15141bb0, 0x47183208, 0x3b2509a4, 0x252b583b, 0x20f197b0, 0x083d4180, + 0x0c0e0f36, 0x0e0c0606, 0x1680010f, 0x2f160202, 0x0d101221, 0x30422e0f, 0x0ddf8b18, 0x090d8022, 0x08eb8b18, 0x00251982, 0x38190f0f, 0x0b124c51, + 0x41c01021, 0x712613c5, 0x0e0e0d14, 0xf861140d, 0x170f3005, 0x02411018, 0x01021616, 0x120f0d1e, 0x65012a10, 0x65440ce7, 0x0f8f520d, 0x97005024, + 0xa746ce00, 0x19d77038, 0xe9493720, 0x1d285048, 0x4f152e5b, 0x31712fd9, 0x4f282018, 0x4b7161ac, 0x49592018, 0x00203cea, 0x09f3be18, 0x3b002728, + 0x26010000, 0x7f5e0627, 0x5e272017, 0x03230a7f, 0x18111111, 0x270bbb7f, 0x23263127, 0x0f073601, 0x1be9be18, 0x0535163c, 0x0856760d, 0x05691401, + 0x0db20106, 0x8d0d0101, 0x0e0e0217, 0x0e9c6e0a, 0xbe180909, 0xfe270edf, 0xfe32018d, 0x183201ce, 0x2008e2be, 0x10774c03, 0x5b004824, 0x93426800, + 0x12ee4737, 0x20122f5b, 0x0b195807, 0x5b2f2d42, 0x30201d10, 0x510ba870, 0xf65a28b2, 0x18502019, 0x410be949, 0x4e24102b, 0x81006800, 0x20372b41, + 0x050b5f17, 0x2206ac63, 0x63072223, 0x362205d1, 0xc74b2737, 0x1eb13561, 0x1e1f3131, 0x08070702, 0x26262212, 0x07081222, 0x2a1e0207, 0x3548ca4b, + 0x03031d40, 0x08231d1d, 0x08030505, 0x03080f0f, 0x23080505, 0xe463ad1d, 0x1600262c, 0x01000e01, 0x22008500, 0x86e3001a, 0x0001220b, 0x8512821b, + 0x00022417, 0x863c0007, 0x00032217, 0x85198221, 0x8a042017, 0x00052423, 0x86560032, 0x00062423, 0x86880018, 0x000a240b, 0x86a0002c, 0x000b240b, + 0x86cc0017, 0x0010240b, 0x86430013, 0x8411200b, 0x0003245f, 0x82090401, 0x02342373, 0x0b8500c3, 0x36000124, 0x0b86fd00, 0x0e000224, 0x0b867501, + 0x42000324, 0x0b863301, 0x238a0420, 0x64000524, 0x1786a901, 0x30000624, 0x0b860d02, 0x58000a24, 0x0b863d02, 0x2e000b24, 0x0b869502, 0x26001024, + 0x0b868301, 0x5f831120, 0x6e6f463a, 0x77412074, 0x6d6f7365, 0x20362065, 0x65657246, 0x67655220, 0x72616c75, 0x2d251a9a, 0x2e362e36, 0x35279930, + 0x73726556, 0x206e6f69, 0x2e343737, 0x39333030, 0x35323630, 0x508c2820, 0x22857620, 0x84203a21, 0x8329204a, 0x2086861b, 0x20848336, 0x315c862d, + 0x20656854, 0x27626577, 0x6f6d2073, 0x70207473, 0x9a83706f, 0x63692022, 0x73385d82, 0x61207465, 0x7420646e, 0x6b6c6f6f, 0x682e7469, 0x73707474, + 0x662f2f3a, 0x6120d382, 0x2e31d285, 0x436d6f63, 0x7279706f, 0x74686769, 0x29632820, 0x31848b20, 0x6f004600, 0x74006e00, 0x41002000, 0x65007700, + 0x0f827300, 0x07826d20, 0x36002022, 0x46221382, 0x0b827200, 0x09826520, 0x07825220, 0x75006726, 0x61006c00, 0x35b51382, 0x53822d20, 0x03842e20, + 0xb3003021, 0x8256204f, 0x82722083, 0x846920a1, 0x002022b3, 0x24018237, 0x002e0034, 0x22018230, 0x82390033, 0x00362405, 0x82350032, 0x9a2820ad, + 0x8c7620d7, 0x823a2045, 0x8236202d, 0x22038343, 0x88290030, 0x0d0d4137, 0x17823620, 0x20050941, 0x22b98e2d, 0x82680054, 0x0020224f, 0x22058277, + 0x82270062, 0x0020229d, 0x229f826d, 0x82740073, 0x82702059, 0x41702009, 0x20240835, 0x63006900, 0x7320bb86, 0x21832f82, 0x6e006124, 0x29826400, + 0x17827420, 0x6c006f24, 0x23826b00, 0x8f827420, 0x3f826820, 0x70007422, 0x3a224f82, 0x01822f00, 0x37846620, 0x61007422, 0x200ca541, 0x224f842e, + 0x8443006d, 0x00792267, 0x203d8272, 0x20918267, 0x20518274, 0x201b8228, 0x41078229, 0x002417ab, 0x00020000, 0xff230084, 0x841900db, 0x09048f08, + 0x0000d4c8, 0x03010201, 0x08000401, 0x0e000d00, 0x06010501, 0x08010701, 0x0a010901, 0x0c010b01, 0x0e010d01, 0x10010f01, 0x22001101, 0x12012300, + 0x14011301, 0x16011501, 0x18011701, 0x1a011901, 0x1c011b01, 0x1e011d01, 0x20011f01, 0x22012101, 0x24012301, 0x26012501, 0x28012701, 0x2a012901, + 0x2c012b01, 0x2e012d01, 0x30012f01, 0x32013101, 0x34013301, 0x36013501, 0x38013701, 0x3a013901, 0x3c013b01, 0x3e013d01, 0x40013f01, 0x42014101, + 0x44014301, 0x46014501, 0x48014701, 0x4a014901, 0x4c014b01, 0x4e014d01, 0x50014f01, 0x52015101, 0x54015301, 0x56015501, 0x58015701, 0x5a015901, + 0x5c015b01, 0x5e015d01, 0x60015f01, 0x62016101, 0x64016301, 0x66016501, 0x68016701, 0x6a016901, 0x6c016b01, 0x6e016d01, 0x70016f01, 0x72017101, + 0x74017301, 0x76017501, 0x78017701, 0x7a017901, 0x7c017b01, 0x7e017d01, 0x80017f01, 0x82018101, 0x84018301, 0x86018501, 0x88018701, 0x8a018901, + 0x8c018b01, 0x8e018d01, 0x90018f01, 0x92019101, 0x94019301, 0x96019501, 0x98019701, 0x9a019901, 0x9c019b01, 0x9e019d01, 0xa0019f01, 0xa201a101, + 0xa401a301, 0xa601a501, 0xa801a701, 0xaa01a901, 0xac01ab01, 0xae01ad01, 0xb001af01, 0xb201b101, 0xb401b301, 0xb601b501, 0xb801b701, 0xba01b901, + 0xbc01bb01, 0xbe01bd01, 0xc001bf01, 0xc201c101, 0xc401c301, 0xc601c501, 0xc801c701, 0xca01c901, 0xcc01cb01, 0xce01cd01, 0x650bcf01, 0x616c6378, + 0x6974616d, 0x68076e6f, 0x74687361, 0x640b6761, 0x616c6c6f, 0x69732d72, 0x5f416e67, 0x6c093813, 0x2d737365, 0x6e616874, 0x75716506, 0x0c736c61, + 0x61657267, 0x84726574, 0x332f4113, 0x6f660d24, 0x3f82646c, 0x6f6c633d, 0x06646573, 0x64746f6e, 0x68056665, 0x74726165, 0x61747304, 0x73750472, + 0x82057265, 0x632d081d, 0x65720e6b, 0x6e617463, 0x2d656c67, 0x7473696c, 0x616c6604, 0x6f620867, 0x616d6b6f, 0x69056b72, 0x6567616d, 0x6e65700d, + 0x2d6f742d, 0x269c8273, 0x630c6572, 0x82637269, 0x8378202d, 0x250c8720, 0x63656863, 0x19860f6b, 0x65757123, 0x24ff8373, 0x65796503, 0x3c038209, + 0x616c732d, 0x630d6873, 0x6e656c61, 0x2d726164, 0x73796164, 0x6d6f6307, 0x746e656d, 0x20a98506, 0x2106850b, 0x6a826f2d, 0x68630922, 0x2d24a782, + 0x08726162, 0x73212486, 0x37b48309, 0x6c61682d, 0x656c0566, 0x0b6e6f6d, 0x64657263, 0x632d7469, 0x0a647261, 0x64382d82, 0x6972642d, 0x68106576, + 0x2d646e61, 0x6e696f70, 0x69722d74, 0x0f746867, 0x6c24108a, 0x0d746665, 0x75210f8a, 0x351d8b70, 0x6e776f64, 0x706f6304, 0x6c660b79, 0x7970706f, + 0x7369642d, 0xf185066b, 0x6e650824, 0x15826576, 0x70056528, 0x65747361, 0x5a836c09, 0x6c756232, 0x65620462, 0x68086c6c, 0x6970736f, 0x0b6c6174, + 0x2d252d85, 0x73756c70, 0x050a4106, 0x61660a2a, 0x732d6563, 0x656c696d, 0x66210a85, 0x20678272, 0x28158408, 0x0868656d, 0x6279656b, 0x20c3826f, + 0x071b4108, 0x37850b20, 0x61224382, 0x4f860c79, 0x6e696d24, 0x0c877375, 0x65686326, 0x73116b63, 0x6521f382, 0x204c822d, 0x0694416d, 0x6f630723, + 0x219c826d, 0x33861173, 0x72616325, 0x832d7465, 0x8c0f20d4, 0x70752211, 0x200f8c12, 0x21ca8372, 0x9f846604, 0x2d300482, 0x656e696c, 0x68740973, + 0x73626d75, 0x0b70752d, 0x48830986, 0x75730328, 0x6f6d046e, 0x638d6e6f, 0x66656c24, 0xb5860a74, 0x746f642c, 0x69756208, 0x6e69646c, 0x54830867, + 0x64702d24, 0x08840966, 0x726f7724, 0x09840a64, 0x63786525, 0x840f6c65, 0x6f70290a, 0x70726577, 0x746e696f, 0x69251a85, 0x6567616d, 0x251a840b, + 0x7070697a, 0x16857265, 0x64756124, 0x0a856f69, 0x64697624, 0x51856f65, 0x646f632a, 0x696c0965, 0x722d6566, 0x0b226e82, 0x2f826170, 0x6c702d31, + 0x06656e61, 0x62747566, 0x6e096c6f, 0x84737765, 0x620a2416, 0x426c6c65, 0x09220585, 0x81476f63, 0x43112006, 0x2d27051c, 0x74706163, 0x826e6f69, + 0x6f0c2d43, 0x63656a62, 0x72672d74, 0x0e70756f, 0x75210c86, 0x2c0e846e, 0x746f6e0b, 0x74732d65, 0x796b6369, 0x31398205, 0x680e656e, 0x6772756f, + 0x7373616c, 0x6c61682d, 0x0e880966, 0x61680e2f, 0x622d646e, 0x2d6b6361, 0x74736966, 0x420e8304, 0x73280578, 0x73736963, 0x0b73726f, 0x6c222184, + 0xbe427a69, 0x252d8205, 0x636f7073, 0x9d420c6b, 0x85fa8209, 0x6165270c, 0x720a6563, 0x48826765, 0x65726523, 0x09444364, 0x756c7024, 0x52430e73, + 0x696d2208, 0x240e8b6e, 0x72616d78, 0x2f1d896b, 0x63656863, 0x616d036b, 0x656d0770, 0x67617373, 0x2408c343, 0x73756170, 0x07734265, 0x6f747329, + 0x6f660c70, 0x482d746e, 0x092006b0, 0x73258283, 0x656b6168, 0x0701430d, 0x706f2d29, 0x610c6e65, 0x82726464, 0x622d2448, 0x886b6f6f, 0x8263200c, + 0x824a87cc, 0x08722a55, 0x622d6469, 0x65676461, 0x83088207, 0x770f2f1c, 0x6f646e69, 0x616d2d77, 0x696d6978, 0x0f88657a, 0x846e6921, 0x860e200f, + 0x2a5a821f, 0x65726f74, 0x6f6e7309, 0x826c6677, 0x74092c7d, 0x68736172, 0x6e61632d, 0x826d6906, 0x097327bd, 0x70696c63, 0x708a6f62, 0x6e205782, + 0x6c237c87, 0x44746665, 0x72250797, 0x74686769, 0x069e4209, 0x03707533, 0x0c6d6567, 0x656e6f6d, 0x69622d79, 0x312d6c6c, 0x09fd440f, 0xcf447820, + 0x84682005, 0x736926d8, 0x0a706f68, 0x240c8463, 0x676e696b, 0x200a860c, 0x864f836e, 0x61702217, 0x84738277, 0x75712422, 0x866e6565, 0x6f722316, + 0x0a446b6f, 0x75662507, 0x630c6c6c, 0x2505e944, 0x746f642d, 0x10440f73, 0x822d2009, 0x446b20ee, 0x61240515, 0x7972676e, 0x64250a85, 0x797a7a69, + 0x2625840c, 0x73756c66, 0x85646568, 0x72662432, 0x416e776f, 0x1c84057d, 0x69726727, 0x6563616d, 0x210c8709, 0x09880e6e, 0x64215882, 0x240e8a65, + 0x6d616562, 0x831d8914, 0x732d260e, 0x74616577, 0x25148910, 0x72616568, 0x108a7374, 0x75717326, 0x16746e69, 0x10852189, 0x82742d21, 0x82c58628, + 0x2d6e2582, 0x72617473, 0x1f840f8b, 0x7426478a, 0x75676e6f, 0x47891765, 0x2d201085, 0x15204e85, 0x77231790, 0x8c6b6e69, 0x6b6e21ca, 0x6b23e385, + 0x85737369, 0x20098318, 0x84d4892d, 0x2036830e, 0x41c4842d, 0x6c240546, 0x68677561, 0x84053941, 0x202f840a, 0x856d8411, 0x8b7f850f, 0x28798921, + 0x2d68656d, 0x6e616c62, 0x2b30856b, 0x6c6c6f72, 0x2d676e69, 0x73657965, 0x27059941, 0x2d646173, 0x0d797263, 0x0c834f84, 0xda41f583, 0x209d830b, + 0x08b34610, 0x74732d26, 0x656b6f72, 0x75252e86, 0x69727072, 0x060f4673, 0x72697426, 0x00006465, 0xe16bfa05, 0x0000a938, }; diff --git a/thirdparty/imgui_suite/generated/fonts/src/FontAwesomeSolid.inc b/thirdparty/imgui_suite/generated/fonts/src/FontAwesomeSolid.inc index b06fa6f3398..6963cfc71ad 100644 --- a/thirdparty/imgui_suite/generated/fonts/src/FontAwesomeSolid.inc +++ b/thirdparty/imgui_suite/generated/fonts/src/FontAwesomeSolid.inc @@ -1,4650 +1,4876 @@ -// File: 'extract/fontawesome-free-6.2.0-web/webfonts/fa-solid-900.ttf' (397728 bytes) +// File: 'extract/fontawesome-free-6.6.0-web/webfonts/fa-solid-900.ttf' (423676 bytes) // Exported using binary_to_compressed_c.cpp -static const unsigned int FontAwesomeSolid_compressed_size = 234560; -static const unsigned int FontAwesomeSolid_compressed_data[234560/4] = +static const unsigned int FontAwesomeSolid_compressed_size = 245474; +static const unsigned int FontAwesomeSolid_compressed_data[245476/4] = { - 0x0000bc57, 0x00000000, 0xa0110600, 0x00000400, 0x00010037, 0x000a0000, 0x00030080, 0x2f534f20, 0x624b6132, 0x0100004c, 0x08158228, 0x6d636028, - 0x1b617061, 0x0000299e, 0x00003c17, 0x6c675a48, 0xe9d86679, 0x00006753, 0x05005075, 0x6568944b, 0x08236461, 0x2b827004, 0x0382ac20, 0x82683621, - 0x43042310, 0x0b828e07, 0x0382e420, 0x6d682428, 0xc0f47874, 0x4f822e16, 0x00008830, 0x6f6cb415, 0x2b0e6163, 0x0000b476, 0x0f82985f, 0x616db828, - 0x84057078, 0x1f821a03, 0x2f820820, 0x616e202b, 0x665f656d, 0x05000f29, 0x313f82c0, 0x6f70ed03, 0xba007473, 0x05004a69, 0x0000d4c4, 0xab83c94c, - 0x0102032f, 0x202f4f00, 0x3c0f5fbf, 0x020b00f5, 0x23008300, 0x79e133df, 0xff250789, 0x018002c0, 0x240f82c0, 0x00020008, 0x20078201, 0x22058300, - 0x82ffc001, 0x80022513, 0xe0ff0000, 0x17850582, 0x04831c84, 0x836d0521, 0x6d052523, 0x15001803, 0x0d830f83, 0x258b0382, 0x04020426, 0x05008403, - 0x4c224c82, 0x23826601, 0x85014721, 0x00f52a07, 0x00840019, 0x09000200, 0x85158203, 0x10012102, 0x05840785, 0x53574129, 0x0080004d, 0x85ffff21, - 0xc0012383, 0x18824000, 0x03820120, 0x39010024, 0x0782a501, 0x0000202c, 0x00008001, 0x18008000, 0x0b82c001, 0x0f004023, 0x840f8201, 0x00c02303, - 0x2f820110, 0x84000121, 0x82002017, 0x8440201f, 0x8f138317, 0x83338303, 0x8207832f, 0x0002211b, 0xc0223382, 0x3f842000, 0x33874f87, 0x13836783, - 0x2020438d, 0x17837f84, 0x43851f83, 0x1f203f87, 0x2021938a, 0x881b8202, 0x232f820f, 0x00000002, 0x17820384, 0x0f881b83, 0x03831b83, 0x20004022, - 0x0f831f88, 0x2f820020, 0x07871b87, 0x1b89438b, 0x82021521, 0xc001230b, 0x03832200, 0x00000223, 0x825b870f, 0x8310200f, 0x8a038c1b, 0x201f8257, - 0x20038300, 0x87938602, 0x8701200f, 0x845785f3, 0x800121b7, 0x83869f86, 0xaf832b83, 0x1f820788, 0xf7880b82, 0x03418384, 0x87278406, 0x856b850b, - 0x20138627, 0x20678501, 0x84078320, 0x84db86cb, 0x410b825b, 0x43410747, 0x8317820c, 0x2123820f, 0x5341021f, 0x888f8b0a, 0x85678517, 0x0040225f, - 0x20df8205, 0x0a234120, 0x57880020, 0x85000021, 0x825b830b, 0x848b8333, 0x0f87411b, 0x0b871f8b, 0x80228387, 0x37822000, 0xc7841020, 0x4f8ac020, - 0x22057741, 0x41000208, 0x27830647, 0x00000023, 0x88038601, 0x83478367, 0x82038b1b, 0x43012013, 0x1f20059d, 0x410ccb41, 0x02200627, 0x200a5b41, - 0x20ab8b01, 0x857f8400, 0x824020eb, 0x06874277, 0x67852384, 0x8f05ff41, 0x060f42c3, 0x6f845783, 0x1f282b89, 0x1f00c001, 0x09000002, 0x27881b8f, - 0x97413b8b, 0x82022009, 0x82002033, 0x88202023, 0x41a78b37, 0x1b920f4f, 0x83079342, 0x85bf8a47, 0x063f42db, 0x82000221, 0x848020ef, 0x8600209f, - 0x8403200b, 0x861f8397, 0x071b43c3, 0x20084741, 0x412f8240, 0x178a0a47, 0xab820020, 0x6f410820, 0x0000220c, 0x220f8220, 0x84c00103, 0x93cb8507, - 0x008022ef, 0x22e78403, 0x82400000, 0x8300202f, 0x200f84bb, 0x20378240, 0x209f8a00, 0x06ab4340, 0x4022ef8b, 0x738c2400, 0x4206e742, 0x0b8c0bcb, - 0x200d2b41, 0x8b3b8220, 0x42002003, 0x0b4114c3, 0x85012006, 0x440f205b, 0x0f240633, 0x0000c001, 0x13410388, 0x85e3870b, 0x225f8513, 0x8e070040, - 0x077341db, 0x8d094f43, 0x938b859b, 0x0a774313, 0x4208f343, 0x102005d3, 0xab85eb88, 0x01204384, 0xb343a782, 0x46402010, 0x1790051b, 0xdf450020, - 0x85178a05, 0x00002353, 0x6382020e, 0x8a07a744, 0x8220201f, 0x2023840b, 0x20678a01, 0x882b8201, 0x4417869b, 0x0f82086b, 0x5b430120, 0x07134506, - 0x13840f83, 0x5b413786, 0x232f820c, 0x10000002, 0x1a200382, 0x02271783, 0x02000040, 0x84000000, 0x8400202f, 0x02102107, 0x37450782, 0x820b8807, - 0x8b878463, 0x205f876b, 0x22e78280, 0x92600080, 0x885b84ff, 0x07e34143, 0x01204382, 0x8a065b42, 0x8477889b, 0x432b827b, 0x002008af, 0x6b86a382, - 0x03460220, 0x0220240d, 0x84200000, 0x841f8227, 0x053f461b, 0x88086345, 0x00802193, 0x22058f43, 0x82180040, 0x0120222f, 0x41eb8280, 0x0341064b, - 0x870f8608, 0x41578393, 0x4b880b87, 0x3f848382, 0x138b4382, 0x40200b8c, 0x200db346, 0x057b4202, 0x9b451220, 0x057b420c, 0x03412420, 0x0200240a, - 0x82100000, 0x82072003, 0x8c002003, 0x483f837b, 0x00200b0f, 0x0022bf82, 0xdf464000, 0x831b8608, 0x8303820f, 0x463f8343, 0x8022059f, 0x27842200, - 0x5b828020, 0x97824020, 0x84065f43, 0x84a7865f, 0x0fbf450b, 0x00220f83, 0x9f872000, 0x20204382, 0x40200382, 0x13830f82, 0x82012021, 0x8803823b, - 0x20db870f, 0x8a678201, 0x8dd38333, 0x41802003, 0x974505cf, 0x210f8608, 0xfb84c001, 0x1382f785, 0x82c00021, 0x48002027, 0x272008bb, 0x1b82c388, - 0x0f200b82, 0x870c1f41, 0x0aeb4827, 0x07821f87, 0x80000824, 0x2f880800, 0x20064b42, 0x84478201, 0x88678203, 0x221b82af, 0x44000002, 0x1b83098b, - 0x01211382, 0x06074180, 0xcf840b85, 0x00201382, 0x02230383, 0x86270040, 0x82072003, 0x85038307, 0x8493860f, 0x4280203b, 0x4f46090f, 0x0dd34210, - 0x43820020, 0x83012021, 0x479f832f, 0x7b430bc7, 0x82778406, 0x070b4387, 0x33842f82, 0xcb870f87, 0x33822784, 0xb342079b, 0x20f7890c, 0x0b034120, - 0x53822390, 0x07821384, 0x33420120, 0x0c8b4106, 0x40004022, 0x40200f88, 0x450a5b4a, 0x5b8306fb, 0x83410220, 0x84078306, 0x887b8203, 0x41538313, - 0x4b420713, 0x22078207, 0x44000002, 0x0b830563, 0x13827786, 0x85012021, 0x01202157, 0x03822b83, 0xcb425f84, 0x4101200a, 0x678406df, 0x038a2b83, - 0x01203b83, 0x9b437b86, 0x413f820c, 0xc0201037, 0x200ed343, 0x05134240, 0x48000221, 0x034309df, 0x42c02008, 0x1f820943, 0x67820020, 0x07822020, - 0xeb880620, 0x2782df87, 0x2020138a, 0x63410b88, 0x087f410a, 0xa7431382, 0x883f8508, 0x8201202f, 0x4402201b, 0x10200503, 0x038c6b82, 0x84072742, - 0x2037853b, 0x44938400, 0x178706ff, 0x10200786, 0x1020078a, 0x210e9b46, 0x63820200, 0xd783138a, 0x4f844b84, 0x5b431b83, 0x4313840a, 0x0f820f97, - 0xf3820120, 0xd7900383, 0x01205b86, 0xcf88cb82, 0x10200b85, 0x03880f82, 0x47420220, 0x85238406, 0x083f485f, 0x738d1b84, 0x82021021, 0x10c34243, - 0x8b83a787, 0x01201f82, 0x2f867b8a, 0x41010e21, 0x5b871383, 0x3b829783, 0xaf8e6f87, 0x17830020, 0x1f830120, 0x1b428020, 0x21d38b05, 0xff440002, - 0x832b850c, 0x0ab3424f, 0x8022b388, 0xbb8c0300, 0x8022cb8b, 0xeb420e00, 0x429b870c, 0x4b840ee3, 0x0a008022, 0x00200784, 0x20080747, 0x419f8400, - 0x00210d2b, 0x203b8302, 0x055f4980, 0x01232f83, 0x43110040, 0x9f8f0817, 0x8e0b8f42, 0x4333940b, 0x638606e3, 0x00206b87, 0x820c9f41, 0x08df4147, - 0x4706b743, 0x078a078f, 0x23841020, 0x8505b341, 0x205b860b, 0x05734101, 0x53840420, 0x0f841f82, 0x6f85d385, 0x460a1b41, 0x17820c6f, 0xdf870120, - 0x04000024, 0x034f0002, 0x86012005, 0x410f8707, 0x4022088b, 0xb78a0f00, 0x42052743, 0x73430a47, 0x8a01200b, 0x000223d3, 0x0f832000, 0x2f4f9784, - 0x08c34305, 0x00000223, 0x41038610, 0x40210d13, 0x20238700, 0x853b8410, 0x832020a7, 0x49012063, 0x7f42064b, 0x4002230b, 0x03822200, 0x4205f74c, - 0x022006d7, 0xa70fe741, 0x8e6b830f, 0x4701202b, 0x53880613, 0xb7844020, 0x8e11834b, 0x08434137, 0x8e078341, 0x8201201f, 0x860220cb, 0x23638313, - 0x02000002, 0xbf4b0386, 0x0cb34208, 0x4f050741, 0xdf440d37, 0x4002230a, 0x538b1800, 0x73420f82, 0x41278209, 0xcf820833, 0x00000227, 0x00400100, - 0x82078411, 0x8301200f, 0x133b4113, 0x3f438020, 0x202b8709, 0x20878302, 0x085b4f40, 0x20130741, 0x8c2b8316, 0x07034103, 0x87073342, 0x0a0352cb, - 0x83445784, 0x4101200a, 0x0220128b, 0x4022a38b, 0x0f821b00, 0xbb881020, 0xff429387, 0x424b8a07, 0xeb8608df, 0x20203382, 0x200cff46, 0x0c335200, - 0x00022023, 0x09cf5100, 0x1b820020, 0x5752f385, 0x82738808, 0x440b841b, 0x00200b2b, 0x4505434a, 0xe34107b7, 0x83cf8208, 0x8b0383d3, 0x200f821b, - 0x51fb8406, 0x1f88065b, 0x37827787, 0x67850220, 0x37841020, 0x63450020, 0x500b8205, 0x2f410dff, 0x41802013, 0x402006a7, 0x8409074b, 0x822b8b4b, - 0xc0012177, 0x420e0353, 0x2f470a57, 0x82022007, 0x21038327, 0x5388c001, 0x3f420020, 0x0edf420c, 0xbb42ff8c, 0x20cb850b, 0x0cef4a00, 0x09000022, - 0x03849783, 0x73886782, 0x01000022, 0x410f8b44, 0x23840743, 0x8b824020, 0x84061f47, 0x410f8527, 0x535305db, 0x201b830a, 0x860f8201, 0x08c347bf, - 0x0b410f84, 0x416f820b, 0x10200a7f, 0x5f83eb84, 0x89112f47, 0x84cf8643, 0x49c02063, 0x57830a07, 0x01200382, 0x4786138b, 0x50400221, 0x7741059b, - 0x17574b0c, 0xbb418020, 0x824f830a, 0x886b8303, 0x230f82d3, 0x04000000, 0x03200382, 0x24200382, 0x0b820382, 0x006e1825, 0x84010003, 0x00032e0f, - 0x1800000a, 0x1804006e, 0x0500004a, 0x0d1c829c, 0x9c0109aa, 0x25002100, 0x39002b00, 0x61005a00, 0x63006200, 0x65006400, 0x67006600, 0x69006800, - 0x6b006a00, 0x6d006c00, 0x6f006e00, 0x71007000, 0x73007200, 0x75007400, 0x77007600, 0x79007800, 0xa3007a00, 0xa900a500, 0xae00ab00, 0xbb00b600, - 0xf700d700, 0x1c201320, 0x39201d20, 0xa4203a20, 0xa920a820, 0xac20aa20, 0xb820b420, 0x2221bd20, 0x91219021, 0x93219221, 0x95219421, 0xba219721, - 0xc421bb21, 0x1e221222, 0x04230323, 0x28231b23, 0x2a232923, 0x99232b23, 0xe923cf23, 0xed23ea23, 0xf123ee23, 0xf823f323, 0xfb23f923, 0xbd24fe23, - 0xb625a025, 0xd025cf25, 0xfc25fb25, 0x01260026, 0x04260326, 0x15261126, 0x20261d26, 0x23262226, 0x2a262526, 0x2e262c26, 0x38262f26, 0x3f263926, - 0x42264026, 0x5b265a26, 0x5d265c26, 0x5f265e26, 0x66266526, 0x7a267226, 0x7e267b26, 0x81268026, 0x83268226, 0x85268426, 0x96269326, 0x9b269926, - 0xa126a026, 0xa326a226, 0xa526a426, 0xa726a626, 0xa926a826, 0xab26aa26, 0xbd26b226, 0xc426be26, 0xc626c526, 0xe926df26, 0xf726ea26, 0xfd26fa26, - 0x02270027, 0x05270427, 0x0a270927, 0x0c270b27, 0x11270f27, 0x13271227, 0x15271427, 0x1d271627, 0x31272127, 0x46274427, 0x4e274c27, 0x54275327, - 0x57275527, 0x95276427, 0x97279627, 0x35293429, 0x1b2b0d2b, 0x242b1c2b, 0x06e0502b, 0x12e00de0, 0x76e041e0, 0x98e086e0, 0xa9e09ae0, 0xb4e0ace0, - 0xbbe0b7e0, 0xd8e0cfe0, 0xe4e0dfe0, 0x3ce131e1, 0x52e140e1, 0x69e163e1, 0x7be16de1, 0x8fe185e1, 0xa8e19be1, 0xbce1b0e1, 0xc8e1c4e1, 0xd5e1d3e1, - 0xede1d7e1, 0xf6e1f3e1, 0x22e209e2, 0x3de22de2, 0x9ce289e2, 0xbbe2b7e2, 0xcae2c5e2, 0xebe2cee2, 0xafe31ee3, 0xf5e3b2e3, 0x45e43ce4, 0x6ce448e4, - 0x77e473e4, 0x90e47be4, 0xa5e494e4, 0xb0e4ade4, 0xcce4b3e4, 0xe6e4dee4, 0xede4ebe4, 0x03e5eee4, 0x2fe525e5, 0x58e54fe5, 0x74e56fe5, 0x8fe587e5, - 0x9de59ae5, 0xaae5a1e5, 0xb4e5afe5, 0x03f002f0, 0x06f005f0, 0x13f00ef0, 0x15f014f0, 0x19f016f0, 0x1bf01af0, 0x1df01cf0, 0x3ef01ef0, 0x44f040f0, - 0x46f045f0, 0x5bf04ef0, 0x5df05cf0, 0x66f05ef0, 0x68f067f0, 0x6ef069f0, 0x80f07ef0, 0x87f086f0, 0x89f088f0, 0x8bf08af0, 0x91f08ef0, 0x96f095f0, - 0x98f097f0, 0xa1f09ef0, 0xaef0a2f0, 0xcef0b2f0, 0xdef0d1f0, 0xe3f0e0f0, 0xe5f0e4f0, 0xeef0e6f0, 0xf5f0f4f0, 0xf7f0f6f0, 0x07f1fef0, 0x0bf108f1, - 0x0ef10cf1, 0x12f111f1, 0x15f114f1, 0x1df11cf1, 0x22f11ef1, 0x27f123f1, 0x29f128f1, 0x2ef12af1, 0x3af135f1, 0x46f13ef1, 0x4ef147f1, 0x55f154f1, - 0x5ef159f1, 0x78f165f1, 0x88f183f1, 0x90f18ef1, 0x95f193f1, 0x97f196f1, 0x9df199f1, 0xb0f1aef1, 0xb3f1b1f1, 0xc9f1bbf1, 0xd8f1cef1, 0xdaf1d9f1, - 0xdef1dbf1, 0xecf1e6f1, 0xf7f1f6f1, 0xfaf1f9f1, 0x01f2fef1, 0x0bf207f2, 0x2df21ef2, 0x39f236f2, 0x4af249f2, 0x50f24ef2, 0x6cf25df2, 0x78f277f2, - 0x7bf27af2, 0x8bf283f2, 0x8df28cf2, 0x91f28ef2, 0x95f292f2, 0x9cf29af2, 0xa4f29ef2, 0xb6f2a8f2, 0xb9f2b7f2, 0xbbf2baf2, 0xbdf2bcf2, 0xc0f2bef2, - 0xc3f2c2f2, 0xd3f2cef2, 0xdcf2d4f2, 0xe7f2e5f2, 0xedf2eaf2, 0xf6f2f2f2, 0xfef2f9f2, 0x0cf305f3, 0x1ef31cf3, 0x32f328f3, 0x5bf338f3, 0x60f35df3, - 0x81f363f3, 0x87f382f3, 0xa5f390f3, 0xc1f3bff3, 0xc9f3c5f3, 0xd1f3cff3, 0xe0f3ddf3, 0xedf3e5f3, 0xfdf3fbf3, 0x06f4fff3, 0x22f410f4, 0x25f424f4, - 0x36f434f4, 0x3cf43af4, 0x41f43ff4, 0x45f443f4, 0x4bf447f4, 0x50f44ef4, 0x58f453f4, 0x5ff45df4, 0x66f462f4, 0x72f46df4, 0x79f474f4, 0x7ff47df4, - 0x87f482f4, 0x8ef48bf4, 0x97f494f4, 0xa1f49ef4, 0xb3f4adf4, 0xbef4baf4, 0xc4f4c2f4, 0xcef4c6f4, 0xdbf4d3f4, 0xe3f4dff4, 0x09f5e6f4, 0x2cf52bf5, - 0x31f530f5, 0x36f535f5, 0x41f540f5, 0x9df591f5, 0xa7f5a2f5, 0xb4f5b1f5, 0xbdf5b8f5, 0xcbf5c5f5, 0xd2f5cef5, 0xdaf5d7f5, 0xdff5dcf5, 0xe4f5e1f5, - 0xebf5e7f5, 0xfdf5eef5, 0x04f601f6, 0x13f610f6, 0x1ff619f6, 0x25f621f6, 0x30f62af6, 0x3cf637f6, 0x44f641f6, 0x4af647f6, 0x51f64ff6, 0x58f655f6, - 0x62f65ef6, 0x6bf666f6, 0x6ff66df6, 0x76f674f6, 0x7cf679f6, 0x84f67ff6, 0x96f689f6, 0xa1f69bf6, 0xa9f6a7f6, 0xb7f6adf6, 0xbef6bbf6, 0xc4f6c0f6, - 0xcff6c8f6, 0xd3f6d1f6, 0xd7f6d5f6, 0xdef6d9f6, 0xe6f6e3f6, 0xedf6e8f6, 0xfaf6f2f6, 0x00f7fcf6, 0x0ef70cf7, 0x17f715f7, 0x22f71ef7, 0x2bf729f7, - 0x3df72ff7, 0x43f740f7, 0x4df747f7, 0x56f753f7, 0x5ff75bf7, 0x6cf769f7, 0x73f770f7, 0x81f77df7, 0x88f784f7, 0x94f78cf7, 0x9cf796f7, 0xa2f7a0f7, - 0xabf7a6f7, 0xb6f7aef7, 0xbdf7baf7, 0xc2f7c0f7, 0xcaf7c5f7, 0xd0f7cef7, 0xdaf7d2f7, 0xecf7e6f7, 0xf3f7eff7, 0xf7f7f5f7, 0x02f8fbf7, 0x0af807f8, - 0x0cf80bf8, 0x10f80df8, 0x16f812f8, 0x1df818f8, 0x2ff82af8, 0x4af83ef8, 0x50f84cf8, 0x5ef853f8, 0x6df863f8, 0x7df879f8, 0x87f882f8, 0x97f891f8, - 0xccf8c1f8, 0xd9f8d7f8, 0xeff8e5f8, 0xfffffff8, 0x21000000, 0x2a002300, 0x3c003000, 0x019d0510, 0xe0052c7c, 0xe012e00d, 0xe059e03f, 0x4597e085, - 0xe324129d, 0x39e131e1, 0x240c9d45, 0xe18fe184, 0x189d459a, 0x9d452120, 0x45cd2010, 0xb120069d, 0x28069d45, 0xe46ce447, 0xe476e473, 0x069d457a, - 0xe4a83a08, 0xe4b3e4af, 0xe4cee4b5, 0xe4e8e4e0, 0xe4eee4ed, 0xe507e5ef, 0xe532e527, 0xe55ae551, 0xe576e571, 0xe591e589, 0xe5a0e59c, 0xe5afe5a9, - 0xf000f0b4, 0xf004f003, 0xf007f006, 0x069d4510, 0x9d451720, 0xf0212c0a, 0xf041f040, 0xf046f045, 0x4550f047, 0x6020069d, 0x26069d45, 0xf070f06a, - 0x4583f080, 0x8d240a9d, 0x93f090f0, 0x32069d45, 0xf0a0f09c, 0xf0a3f0a2, 0xf0c0f0b0, 0xf0d6f0d0, 0x45e2f0e0, 0xe722069d, 0x9d45f0f0, 0xf1f82c06, - 0xf108f100, 0xf10cf109, 0x4510f10d, 0x182a069d, 0x1ef11df1, 0x23f120f1, 0x9d4524f1, 0x2b220806, 0x37f130f1, 0x40f13df1, 0x48f147f1, 0x55f150f1, - 0x5bf156f1, 0x75f160f1, 0x85f182f1, 0x90f18ef1, 0x9d4591f1, 0xf19c2e08, 0xf1b0f1ab, 0xf1b2f1b1, 0xf1c0f1b8, 0x089d45cd, 0xf1dc2e08, 0xf1eaf1e0, - 0xf1f7f1f6, 0xf1faf1f8, 0xf200f2fb, 0xf20af204, 0xf221f217, 0xf238f233, 0xf24af240, 0xf250f24d, 0xf26cf251, 0xf278f271, 0x0c9d4579, 0x9d459020, - 0xf29d2608, 0xf2a7f2a0, 0x109d45b4, 0xc3f2c12a, 0xd0f2c7f2, 0xdbf2d4f2, 0x2a089d45, 0xf2f5f2f1, 0xf3fef2f9, 0x4509f302, 0x3734089d, 0x5df358f3, - 0x62f360f3, 0x82f381f3, 0x90f386f3, 0xbef3a5f3, 0x20069d45, 0x0a9d45cd, 0x9d45fa20, 0xf432240e, 0x4539f436, 0x5c3e169d, 0x61f45ff4, 0x68f466f4, - 0x74f470f4, 0x7df477f4, 0x81f47ef4, 0x8bf484f4, 0x90f48df4, 0x9d4596f4, 0xb83e0808, 0xc0f4bdf4, 0xc6f4c4f4, 0xd3f4cdf4, 0xdef4d6f4, 0xe6f4e2f4, - 0x15f5faf4, 0x2df52cf5, 0x32f531f5, 0x37f536f5, 0x42f541f5, 0x9ff593f5, 0xaaf5a4f5, 0xb6f5b3f5, 0xbff5baf5, 0xcdf5c7f5, 0x9d45d0f5, 0x45de2006, - 0xfc200a9d, 0x280e9d45, 0xf629f624, 0xf637f62e, 0x0c9d453b, 0x58f6532a, 0x62f65df6, 0x69f664f6, 0x2e089d45, 0xf67bf678, 0xf681f67f, 0xf696f687, - 0x45a0f698, 0xb620069d, 0x20069d45, 0x0e9d45c3, 0xe2f6dd36, 0xe8f6e6f6, 0xf0f6ecf6, 0xfcf6faf6, 0x0bf7fff6, 0x14f70ef7, 0x26069d45, 0xf72bf728, - 0x453bf72e, 0x5008089d, 0xf756f751, 0xf75ef75a, 0xf76bf769, 0xf772f76f, 0xf780f77c, 0xf786f783, 0xf793f78c, 0xf79cf796, 0xf7a2f79f, 0xf7a9f7a4, - 0xf7b5f7ad, 0xf7bdf7b9, 0xf7c2f7bf, 0xf7c9f7c4, 0xf7d0f7cc, 0xf7d7f7d2, 0xf7ecf7e4, 0xf7f2f7ef, 0xf7f7f7f5, 0xf802f8fa, 0x089d4505, 0x12f80f2a, - 0x18f815f8, 0x27f81df8, 0x2a149d45, 0xf881f87b, 0xf891f884, 0x45c0f897, 0xff2a0d9d, 0xffdfffe0, 0xffd7ffdb, 0x001000d5, 0x087a0100, 0x202b20b7, - 0x1f212025, 0x1fde1ff5, 0x1fc01fd0, 0x1fb11fbf, 0x1fa81faf, 0x00a31fa6, 0x1f871f00, 0x1f7e1f81, 0x1f2b1f32, 0x1f171f28, 0x1e021f07, 0x1ef21eff, - 0x1ee11eea, 0x1ecb1ed7, 0x1eb91ec4, 0x1eaf1eb2, 0x1ea41ea5, 0x1e8e1ea3, 0x1e871e89, 0x1e5e1e75, 0x1d451e54, 0x1de81dfa, 0x1dcb1dce, 0x1dbe1dc2, - 0x1da01dbc, 0x1cde1c6e, 0x1c9b1cdd, 0x1c4d1c55, 0x1c291c4c, 0x1c211c23, 0x1c0b1c1f, 0x1bf81b08, 0x1bf51bf6, 0x1bf21bf3, 0x1bf01bf1, 0x00ee1bef, - 0x1bed1b00, 0x1be91bea, 0x1be61be7, 0x1be41be5, 0x1be21be3, 0x1be01be1, 0x1bd71bde, 0x11cf1bd3, 0x11000084, 0x22038283, 0x82811182, 0x82802005, - 0x007f2103, 0x11270082, 0x1100007d, 0x827a117c, 0x82782005, 0x1100240e, 0x84751176, 0x11732607, 0x11000072, 0x26038271, 0x116f1170, 0x846c116e, - 0x006a2a15, 0x11691100, 0x11671168, 0x340f8466, 0x11611164, 0x11000060, 0x115e115f, 0x11501151, 0x114b114c, 0x8219834a, 0x11472213, 0x26098646, - 0x00421143, 0x82411100, 0x11402203, 0x2013863f, 0x220d8239, 0x82371138, 0x82362005, 0x82352003, 0x11342803, 0x11321133, 0x822f1130, 0x112e220b, - 0x2a05822d, 0x112b112c, 0x111b112a, 0x83111112, 0x09113b35, 0x00000811, 0x06110711, 0xf7100411, 0x0000f610, 0xf110f510, 0xea10ed10, 0x0b82e110, - 0x0382e020, 0xde10df26, 0xd210db10, 0xd1200982, 0xd0300382, 0xcd10cf10, 0xc010cb10, 0xb910be10, 0xb210b810, 0xaf201382, 0xad240382, 0x9b109f10, - 0x9a200782, 0x10255583, 0x1000008a, 0x20038289, 0x2a0d8487, 0x1000007f, 0x107c107d, 0x826f107a, 0x826d2009, 0x21f98203, 0x1b846b10, 0x00006826, - 0x63106410, 0x5c3a0582, 0x53105410, 0x4f105110, 0x4a104c10, 0x44104810, 0x3e104110, 0x2e102f10, 0x1d822510, 0xf80f1728, 0xf50ff70f, 0x3583f40f, - 0xd20f2708, 0xb60fca0f, 0x9d0f9e0f, 0x970f9a0f, 0x930f940f, 0x860f880f, 0x7b0f820f, 0x00006f0f, 0x660f6c0f, 0x4c0f5d0f, 0x0b824b0f, 0x0f3e2a08, - 0x0f3b0f3d, 0x0f380f3a, 0x0f360f37, 0x0f340f35, 0x0f2f0f31, 0x0f2c0f2e, 0x0f250f28, 0x0f230f24, 0x0f1f0f20, 0x0f1c0f1d, 0x082d821a, 0x150f1628, - 0x110f140f, 0x0f0f100f, 0x080f0e0f, 0xfa0e0000, 0xf10ef50e, 0xee0eef0e, 0xec0eed0e, 0xe20ee60e, 0xde0ee00e, 0x1982dc0e, 0xbb0ec622, 0xba200582, - 0xb9200382, 0xb8200382, 0x11090382, 0x0eb60eb7, 0x0eb40eb5, 0x0eb10eb2, 0x0eaf0eb0, 0x0ead0eae, 0x0eab0eac, 0x0ea50ea7, 0x0ea30ea4, 0x0ea00ea2, - 0x0e9b0e9e, 0x0e8c0e99, 0x0e870e89, 0x0e7a0e7c, 0x0e700e75, 0x0e6d0e6f, 0x0e670e6a, 0x0e5e0e61, 0x0e580e5a, 0x0e540e56, 0x0e4f0e50, 0x0e4c0e4e, - 0x0e450e48, 0x0e420e44, 0x0e400e41, 0x0e3b0e3c, 0x0e390e3a, 0x0e360e37, 0x0e280e34, 0x0e230e27, 0x0e1d0e1e, 0x0e120e1a, 0x0e0d0e0f, 0x0e0a0e0c, - 0x0e010e07, 0x0dff0d00, 0x0dfd0dfe, 0x0df90dfc, 0x0df40df6, 0x0df00df3, 0x0de70dee, 0x0de40de6, 0x0dd90dda, 0x0dd30dd4, 0x0dca0dcd, 0x0dc40dc5, - 0x0db70dc2, 0x0db30db5, 0x0dab0db0, 0x0da60da8, 0x0da10da3, 0x0d970d98, 0x0d940d95, 0x0d8a0d8c, 0x0d880d89, 0x0d7f0d85, 0x0d790d7e, 0x0d760d77, - 0x0d730d75, 0x0d6c0d72, 0x0d680d6a, 0x0d660d67, 0x0d620d65, 0x0d600d61, 0x0d5b0d5f, 0x0d4d0d52, 0x0d490d4b, 0x0d470d48, 0x0d3f0d45, 0x0084003d, - 0x380d3b08, 0x360d370d, 0x330d340d, 0x260d2f0d, 0x140d220d, 0x080d090d, 0x030d050d, 0xf50cf90c, 0xe10cec0c, 0xdd0ce00c, 0xd30cdc0c, 0xa60cce0c, - 0x920c9c0c, 0x0000910c, 0x6d0c7c0c, 0x40840100, 0x05210484, 0x3501b1a8, 0x3a063806, 0x10065806, 0x4c068006, 0xa6050c06, 0xd805d806, 0x01820e06, - 0x0206023e, 0x1c063206, 0x3c062006, 0xec061206, 0x1406fc06, 0xb4055a06, 0xb205b605, 0x7606b405, 0x7e230182, 0x8305ca05, 0x06a82303, 0x358305a8, - 0xde05343a, 0x8a058a05, 0x6e059c06, 0x7a058005, 0x78057005, 0x48066a05, 0x6a051e06, 0x4e280182, 0x6a06e205, 0x5c059205, 0x52204382, 0x882a2782, - 0x8005d005, 0x9806a406, 0x0382b005, 0x8c06742c, 0x8e069406, 0x74066c06, 0x01826e06, 0x66067424, 0x5f828e05, 0xc405c426, 0x2a062606, 0x1e200182, - 0x202c8982, 0xb005fe04, 0x9e05a005, 0x34069c05, 0x26341784, 0x1a061e06, 0x66051e06, 0xee04b405, 0x1e052806, 0x9a053805, 0x90220184, 0x41829805, - 0x96059626, 0x42054405, 0x70247782, 0x3606da05, 0x26384382, 0x14061005, 0x2806e405, 0xee051206, 0xfe040005, 0x2e05fc04, 0x0806fe04, 0x782aad82, - 0xe2059c05, 0x9e04de05, 0x01829c04, 0xe0059a3c, 0x4604e805, 0x7c057e05, 0x76058e04, 0x44044604, 0x2e043004, 0x34047a04, 0x8782b404, 0xe5828420, - 0x92057029, 0xe2049005, 0x98006804, 0xc4052100, 0x18dc1a98, 0x9fd00321, 0x0804255e, 0xae030000, 0x04252583, 0x040000a0, 0x22038238, 0x82a604a2, - 0x841a2005, 0x00902613, 0x04160400, 0x230b8312, 0xb603b603, 0x3a240784, 0x34030000, 0x03830983, 0x040a0423, 0x200f820a, 0x830b836a, 0xb4032303, - 0x07837203, 0x03000023, 0x870785ba, 0x92042505, 0x8a038603, 0x04250d83, 0x03d20334, 0x200984dc, 0x20278240, 0x230984a8, 0x036a033c, 0x03214582, - 0x250d8332, 0x00006403, 0x0382da02, 0x850a3741, 0x8402203b, 0x83238383, 0xfa032303, 0x0784f603, 0x05835220, 0x03210385, 0x840785d4, 0x007a2417, - 0x83480300, 0x83038309, 0x86022199, 0x038d0983, 0x25830320, 0x13857c20, 0x00800327, 0x02c80300, 0x200582e6, 0x20038278, 0x22838276, 0x82440242, - 0x85bc2005, 0x0000231f, 0x03826603, 0x03826420, 0x03826220, 0x74026022, 0x5c200582, 0x03201b83, 0x0b834186, 0x02210391, 0x23138960, 0x9c029c02, - 0x09910d89, 0x15876183, 0xdf840220, 0x079f0d87, 0xeb880220, 0xf8203f88, 0x078f0987, 0x01258385, 0x01000070, 0x2003826e, 0x84038266, 0x40278fc7, - 0x9e24fe0f, 0x9a008a00, 0x20330341, 0x07234301, 0x0001cb09, 0x00030002, 0x00050004, 0x00110006, 0x00130012, 0x00150014, 0x00170016, 0x00190018, - 0x001b001a, 0x001d001c, 0x001f001e, 0x00210020, 0x00230022, 0x00250024, 0x00270026, 0x00290028, 0x002b002a, 0x002d002c, 0x002f002e, 0x019c008d, - 0x01880187, 0x018e0189, 0x0192018f, 0x01950194, 0x019e019a, 0x01a901a8, 0x01ba01aa, 0x01c001bf, 0x01c201c1, 0x01c401c3, 0x01c701c5, 0x01c901c8, - 0x01cd01cc, 0x01d201ce, 0x01d401d3, 0x01d901d5, 0x01e401e0, 0x01eb01ea, 0x01f301f2, 0x020502fe, 0x02150213, 0x02210219, 0x022c022b, 0x0233022e, - 0x02350234, 0x023b0239, 0x02420241, 0x02460243, 0x02480247, 0x024d0249, 0x0250024e, 0x02550252, 0x0273026d, 0x02780275, 0x0280027b, 0x02820281, - 0x02840283, 0x02860285, 0x028e0287, 0x0296028f, 0x029d0297, 0x02a902a4, 0x02bc02b9, 0x02c802c1, 0x02d602ca, 0x02df02d9, 0x02e102e0, 0x02e302e2, - 0x02e502e4, 0x02e702e6, 0x02e902e8, 0x02fb02ea, 0x030003fd, 0x03030301, 0x03090308, 0x030b030a, 0x03150313, 0x03230316, 0x03260325, 0x03280327, - 0x0336032a, 0x03390338, 0x033c033a, 0x0344033e, 0x034f034e, 0x03510350, 0x03530352, 0x035a0355, 0x035d035c, 0x036d0367, 0x03750371, 0x03780377, - 0x037a0379, 0x0381037b, 0x03940387, 0x03d803a7, 0x03df03de, 0x03e103e0, 0x03e303e2, 0x03e903e4, 0x041104ed, 0x045f045e, 0x0492047d, 0x049c0494, - 0x04a304a2, 0x04b504ae, 0x04c104c0, 0x04c704c4, 0x04ce04ca, 0x04e004d7, 0x04f404e8, 0x050a05fb, 0x05240522, 0x0530052b, 0x00350532, 0x0082000c, - 0x82ec2f21, 0x21028204, 0x0482fd03, 0x03862120, 0x07820120, 0x03822320, 0x03822520, 0x00000224, 0x03822a00, 0x03822b20, 0x03820520, 0x03823020, - 0x03823920, 0x03820720, 0x03823c20, 0x03825a20, 0x03821120, 0x03866120, 0x07821620, 0x03866220, 0x07821720, 0x03866320, 0x07821820, 0x03866420, - 0x07821920, 0x03866520, 0x07821a20, 0x03866620, 0x07821b20, 0x03866720, 0x07821c20, 0x03866820, 0x07821d20, 0x03866920, 0x07821e20, 0x03866a20, - 0x07821f20, 0x03866b20, 0x07822020, 0x03866c20, 0x07822120, 0x03866d20, 0x07822220, 0x03866e20, 0x07822320, 0x03866f20, 0x07822420, 0x03867020, - 0x7120e783, 0x03830b82, 0x07822620, 0x03867220, 0x07822720, 0x03867320, 0x07822820, 0x03867420, 0x07822920, 0x03867520, 0x07822a20, 0x03867620, - 0x07822b20, 0x03867720, 0x07822c20, 0x03867820, 0x07822d20, 0x03867920, 0x07822e20, 0x03867a20, 0x07822f20, 0x0385a320, 0x82810221, 0x85a52007, - 0x83022103, 0xa9200782, 0x02210385, 0x200782ca, 0x210385ab, 0x07824202, 0x0385ae20, 0x820a0321, 0x85b62007, 0xbc022103, 0xbb200782, 0x02210385, - 0x20078243, 0x210385d7, 0x07828f01, 0x0385f720, 0x00e40325, 0x85132000, 0xd9012103, 0x1c200782, 0x02210385, 0x2007824d, 0x2103851d, 0x07824e02, - 0x03853920, 0x82460221, 0x853a2007, 0x47022103, 0xa4200782, 0x02210385, 0x2007829d, 0x250385a8, 0x00008202, 0x0385a920, 0x82850221, 0x85aa2007, - 0xd6022103, 0xac200782, 0x02250385, 0x20000080, 0x210385b4, 0x0782e004, 0x0385b820, 0x82320521, 0x85bd2007, 0x84022503, 0x22210000, 0x03210385, - 0x20078209, 0x21038590, 0x0782d201, 0x03859120, 0x82d40121, 0x85922007, 0xd3012103, 0x93200782, 0x01210385, 0x200782d5, 0x20038594, 0x21bf8203, - 0x0b829521, 0x03210382, 0x2007824f, 0x21038597, 0x07825503, 0x0385ba20, 0x822c0221, 0x85bb2007, 0x9a012103, 0xc4200782, 0x02250385, 0x22000033, - 0x21038512, 0x0782d901, 0x03851e20, 0x00ed0325, 0x85032300, 0x48022103, 0x04200782, 0x02210385, 0x20078249, 0x8203851b, 0x2300221e, 0x820b8228, - 0x82022003, 0x2923216b, 0x03820b82, 0x82c80121, 0x852a2007, 0xc9012103, 0x2b200782, 0x04210385, 0x20078211, 0x21038599, 0x0782a901, 0x0385cf20, - 0x82c70121, 0x85e92007, 0x82012003, 0xea232197, 0x03820b82, 0x82c00121, 0x82878307, 0xc5012103, 0xee200b82, 0x01210385, 0x200782bf, 0x210385f1, - 0x07823e03, 0x0385f320, 0x82010321, 0x85f82007, 0xc2012103, 0xf9200782, 0x01210385, 0x200782c3, 0x210385fb, 0x07829201, 0x0385fe20, 0x00970225, - 0x85bd2400, 0x94032503, 0xa0250000, 0x02210385, 0x20078219, 0x210385b6, 0x0782c101, 0x2520a782, 0x02210382, 0x200b8250, 0x210385d0, 0x0782ba01, - 0x25205382, 0x2f840382, 0x0f82fc20, 0x0b830382, 0x00002624, 0x03822600, 0x82960221, 0x20938207, 0x21038226, 0x0b821302, 0x03850320, 0x82300521, - 0x85042007, 0x82042003, 0x1126213f, 0x03820b82, 0x82780221, 0x85152007, 0x22052103, 0x1d200782, 0x02210385, 0x20078205, 0x21038520, 0x0782e804, - 0x03852220, 0x82240521, 0x85232007, 0x0a052103, 0x25200782, 0x04210385, 0x2007829c, 0x2103852a, 0x0782c004, 0x03852c20, 0x82ae0421, 0x852e2007, - 0xb5042103, 0x2f200782, 0x04210385, 0x200782c7, 0x21038538, 0x0782a304, 0x03853920, 0x82520221, 0x853f2007, 0xe1022103, 0x40200782, 0x02210385, - 0x200782df, 0x21038542, 0x0782e002, 0x03855a20, 0x82770321, 0x855b2007, 0x7a032103, 0x5c200782, 0x03210385, 0x2007827b, 0x2103855d, 0x07827503, - 0x03855e20, 0x82780321, 0x855f2007, 0x79032103, 0x65200782, 0x01210385, 0x20078287, 0x21038566, 0x0782d902, 0x03857220, 0x82a90221, 0x857a2007, - 0x200b8403, 0x820b827b, 0x200b8403, 0x820b827e, 0xed032103, 0x80200782, 0x03200385, 0x81209b83, 0x03820b82, 0x82e30321, 0x85822007, 0xe2032103, - 0x83200782, 0x03200385, 0x8420cb83, 0x03820b82, 0x82de0321, 0x85852007, 0xe1032103, 0x93200782, 0x02210385, 0x2007826d, 0x21038596, 0x0782fd02, - 0x03859920, 0x82940121, 0x859b2007, 0x7d042103, 0xa0200782, 0x01210385, 0x200782e0, 0x210385a1, 0x07822e02, 0x0385a220, 0x82e40221, 0x85a32007, - 0xe5022103, 0xa4200782, 0x02210385, 0x200782e6, 0x210385a5, 0x0782e202, 0x0385a620, 0x82e70221, 0x85a72007, 0xe3022103, 0xa8200782, 0x02210385, - 0x200782e8, 0x210385a9, 0x0782e902, 0x0385aa20, 0x82500221, 0x85ab2007, 0x200b8403, 0x820b82b2, 0xea022103, 0xbd200782, 0x02210385, 0x200782c1, - 0x210385be, 0x07827103, 0x0385c420, 0x82300521, 0x85c52007, 0xce042103, 0xc6200782, 0x04210385, 0x200782f4, 0x210385df, 0x07822102, 0x03826f83, - 0x82c40421, 0x8257830b, 0xd8032103, 0xf7200b82, 0x05210385, 0x2007822b, 0x210385fa, 0x0782ca04, 0x0385fd20, 0x33820320, 0x00002724, 0x03822700, - 0x82150221, 0x85022007, 0x200b8403, 0x820b8204, 0x200b8403, 0x820b8205, 0x78022103, 0x09200782, 0x02200385, 0x27215382, 0x820b820a, 0xd7042103, - 0x0b200782, 0x03210385, 0x20078203, 0x2103850c, 0x07820803, 0x03850f20, 0x82440321, 0x85112007, 0x5f042103, 0x12200782, 0x04210385, 0x2007825e, - 0x21038513, 0x07828e01, 0x03851420, 0x93830b84, 0x01210382, 0x2013828f, 0x84038516, 0x821d200b, 0x2103820b, 0x0782a204, 0x2720ff82, 0x04210382, - 0x200b82c1, 0x20038531, 0x20ab8200, 0x826f8327, 0x38032103, 0x46201382, 0x0b840385, 0x0b824c20, 0x47840382, 0x0b824e20, 0x03210382, 0x20078236, - 0x21038553, 0x07821400, 0x03855420, 0x55200b84, 0x03820b82, 0x82010021, 0x85572007, 0x200b8403, 0x820b8264, 0x87012103, 0x95200782, 0x00210385, - 0x20078206, 0x21038596, 0x0782d901, 0x03859720, 0x00e40325, 0x85342900, 0x5d032103, 0x35200782, 0x03250385, 0x2b00005c, 0x2103850d, 0x07824f03, - 0x03851b20, 0x82810321, 0x851c2007, 0x200b8403, 0x820b8224, 0x50022103, 0x03860782, 0x00880124, 0xe782e000, 0x7382e020, 0x82300021, 0x2047820b, - 0x210382e0, 0x0b823200, 0x03851220, 0x82330021, 0x823f2007, 0x00412403, 0x82340000, 0x82592007, 0x82762003, 0x8237200b, 0x82852007, 0x82862003, - 0x8255200b, 0x21a78207, 0x0b8298e0, 0x0b825720, 0x03859a20, 0x2b830020, 0x0b82a920, 0x00210382, 0x2007825a, 0x210385ac, 0x07825b00, 0x0385b420, - 0xbf820020, 0x82b7e021, 0x2003820b, 0x21d78200, 0x0b82bbe0, 0x00210382, 0x2007825e, 0x210385cf, 0x07823505, 0x0385d820, 0x825f0021, 0x85df2007, - 0x60002103, 0xe3200782, 0xe4200382, 0x2405ab49, 0x000031e1, 0x210382e1, 0x07826300, 0x03823920, 0x9f493c20, 0x40e12105, 0x03820b82, 0x82680021, - 0x85522007, 0x69002103, 0x27830782, 0x00210382, 0x830b826a, 0x2103820f, 0x0b826b00, 0x03856d20, 0x826c0021, 0x857b2007, 0x83002003, 0x82842013, - 0x21f3820b, 0x07826e00, 0x03858f20, 0x82700021, 0x21ef8207, 0x6f499be1, 0xa8e12105, 0x03820f82, 0x82730021, 0x85b02007, 0x74002103, 0xbc200782, - 0x00210385, 0x20078275, 0x210385c4, 0x07827600, 0x0385c820, 0x82770021, 0x85d32007, 0x78002103, 0xd5200782, 0x00210385, 0x20078279, 0x210385d7, - 0x07827a00, 0x0385ed20, 0x827b0021, 0x85f32007, 0x7c002103, 0xf6200782, 0x00250385, 0xe200007d, 0x21038509, 0x07827e00, 0x03822120, 0x9b822220, - 0x07827f20, 0x03852d20, 0x82810021, 0x853d2007, 0x82002103, 0x89200782, 0x00210385, 0x20078283, 0x2003859c, 0x21eb8200, 0x0b82b7e2, 0x00200382, - 0xe221f382, 0x820b82bb, 0x86002103, 0xc5200782, 0x00210385, 0x20078287, 0x210385ca, 0x07828800, 0x0382cd20, 0x6b82ce20, 0xeb204f83, 0x03820b82, - 0x008b0025, 0x851ee300, 0x8c002103, 0xaf200782, 0x00210385, 0x2007828d, 0x200382b1, 0x202f82b2, 0x2007828e, 0x250385f5, 0x00009000, 0x03853ce4, - 0x82910021, 0x85452007, 0x92002103, 0x47200782, 0x48200382, 0x93202f82, 0x6c200782, 0x00210385, 0x20078295, 0x21038573, 0x07829600, 0x03827620, - 0x23827720, 0x07829720, 0x03827a20, 0x0b827b20, 0x07829920, 0x03859020, 0x829b0021, 0x85942007, 0x82002003, 0xa5e421eb, 0x03820b82, 0x829d0021, - 0x82a82007, 0x82ad2003, 0x829e202f, 0x82af2007, 0x82b02003, 0x82a4200b, 0x85b32007, 0xa6002103, 0xb5200782, 0xcc200382, 0xa7201782, 0xce200782, - 0xde200382, 0xbf200b82, 0xe0200782, 0xe6200382, 0xd0200b82, 0xe8200782, 0xfb830382, 0x0782d720, 0x0385ed20, 0x82db0021, 0x85ee2007, 0x24778403, - 0xe50000ef, 0x202f8203, 0x200782dc, 0x20038207, 0x200b8225, 0x200782f1, 0x24038227, 0x0100002f, 0x20078210, 0x20038232, 0x200b824f, 0x20078219, - 0x20038251, 0x200b8258, 0x20078237, 0x2003825a, 0x200b826f, 0x2007823f, 0x20038271, 0x200b8274, 0x20078255, 0x20038276, 0x200b8287, 0x20078259, - 0x20038289, 0x200b828f, 0x2007826b, 0x20038291, 0x200b829a, 0x20078272, 0x8203829c, 0x7c0121eb, 0xa0200782, 0xa1200382, 0x7e201782, 0xa9200782, - 0xaa200382, 0x80200b82, 0xfb820782, 0x0382e520, 0x82820121, 0x85b4200b, 0x83012503, 0x00f00000, 0x02200382, 0x84202382, 0xbb820782, 0x0382f020, - 0x822b0221, 0x8204200b, 0x00052303, 0x7b820100, 0x8206f021, 0x2103820b, 0x07828801, 0x03820720, 0x00000e23, 0x208b8201, 0x21cf82f0, 0x0b8213f0, - 0xf0218b82, 0x82178214, 0x3c032103, 0x15200782, 0x01210385, 0x20078295, 0x21038516, 0x07828602, 0x03821720, 0x0121f782, 0x20078296, 0x2103851a, - 0x07825003, 0x03851b20, 0x82530321, 0x851c2007, 0x99012103, 0x1d200782, 0x02210385, 0x20078273, 0x2003851e, 0x21f38201, 0x0b8221f0, 0x77823e20, - 0x07829b20, 0x03854020, 0x82440321, 0x82412007, 0x21078203, 0x0782b901, 0x03854520, 0x827b0221, 0x85462007, 0x78022103, 0x47200782, 0x4e200382, - 0xbd203b82, 0x7b830782, 0x0b825b20, 0x0b82c520, 0x03855c20, 0x82cc0121, 0x855d2007, 0xcd012103, 0x5e200782, 0x01210385, 0x200782d1, 0x20038260, - 0x202f8266, 0x200782d2, 0x21038567, 0x07820600, 0x03856820, 0x82d90121, 0x85692007, 0x05002103, 0x6a200782, 0x6e240382, 0xda010000, 0x70200782, - 0x7e200382, 0xdf200b82, 0x80200782, 0x01210385, 0x200782ee, 0x20038283, 0x20178286, 0x200782ef, 0x21038587, 0x07828e02, 0x03858820, 0x828f0221, - 0x85892007, 0xf3012103, 0x8a200782, 0x01200385, 0x8b202b83, 0x03820b82, 0x82f40121, 0x828d2007, 0x21378203, 0x0782f501, 0x03829020, 0x53829120, - 0x0782f720, 0x03829320, 0x0b829520, 0x0782f920, 0x03859620, 0x82190221, 0x85972007, 0xa8012103, 0x98200782, 0x01210385, 0x200782fc, 0x2003829c, - 0x202f829e, 0x200782fd, 0x240382a0, 0x020000a1, 0x20078200, 0x210385a2, 0x07823902, 0x0382a320, 0x1782ae20, 0x07820220, 0x0382b020, 0x0b82b220, - 0x07820e20, 0x0382c020, 0x0b82ce20, 0x07821120, 0x0382d020, 0x0b82d120, 0x07822020, 0x0382d620, 0x0b82de20, 0x07822220, 0x0385e020, 0x822b0221, - 0x82e22007, 0x82e32003, 0x822c2017, 0x85e42007, 0x94042103, 0xe5200782, 0x01200385, 0xe6201383, 0x03820b82, 0x82f20121, 0x82e72007, 0x82ee2003, - 0x822e202f, 0x82f02007, 0x21f78203, 0x07823602, 0x0385f520, 0x823a0321, 0x85f62007, 0x87022103, 0xf7200782, 0x02210385, 0x200782a4, 0x200382f8, - 0x243b82fe, 0xf100003b, 0x20038200, 0x200b8207, 0x20078242, 0x21038508, 0x07825a03, 0x03820920, 0x00000b24, 0x07824a02, 0x03850c20, 0x82500221, - 0x820d2007, 0x820e2003, 0x824d2017, 0x82102007, 0x21df8203, 0x07824f02, 0x03851220, 0x82670321, 0x85142007, 0xea012103, 0x15200782, 0x01210385, - 0x200782eb, 0x20038218, 0x203b821c, 0x20078251, 0x2103851d, 0x07829e01, 0x03851e20, 0x82560221, 0x82202007, 0x82222003, 0x82572023, 0x85232007, - 0xf3012103, 0x24200782, 0x27200382, 0x9b831782, 0x0b822820, 0x00200382, 0x29206783, 0x03820b82, 0x825e0221, 0x852a2007, 0x01002103, 0x2b200782, - 0x2e200382, 0x5f202f82, 0x30200782, 0x35200382, 0x63200b82, 0x37200782, 0x3a200382, 0x69200b82, 0x3d200782, 0x3e200382, 0x6d200b82, 0x40200782, - 0x46200382, 0x6f200b82, 0x47200782, 0x02210385, 0x20078275, 0x20038248, 0x2017824e, 0x83078276, 0x825420ff, 0x827d200b, 0x8555200b, 0x03002103, - 0x56200782, 0x59200382, 0x82201782, 0x5b200782, 0x8b820382, 0x82860221, 0x82602007, 0x82652003, 0x828a2017, 0x204b8307, 0x200b8278, 0x830b8290, - 0x82832027, 0x8294200b, 0x8285200b, 0x82882003, 0x8296200b, 0x858e2007, 0x52032103, 0x27830782, 0x03210382, 0x200b8251, 0x20038291, 0x20238293, - 0x2007829a, 0x21038595, 0x07829d02, 0x03823383, 0x82410221, 0x8597200b, 0x9e022103, 0x99200782, 0x02210385, 0x2007829f, 0x2003829c, 0x203b829d, - 0x200782a0, 0x200382ab, 0x200b82ae, 0x200782a2, 0x210385b0, 0x0782a602, 0x0385b120, 0x82390321, 0x82b22007, 0x82b32003, 0x82a72023, 0x82b82007, - 0x82bb2003, 0x82a9200b, 0x82c02007, 0x82c92003, 0x82ad200b, 0x82cd2007, 0x82ce2003, 0x82b7200b, 0x85d82007, 0xb9022103, 0xd9200782, 0x0b840385, - 0x0b82da20, 0x02210382, 0x200782ba, 0x210385db, 0x07825002, 0x0382dc20, 0x3b82de20, 0x0782bb20, 0x0382e020, 0x0b82e620, 0x0782be20, 0x0382ea20, - 0x0b82ec20, 0x0782c520, 0x0385f620, 0x82c80221, 0x85f72007, 0x200b8403, 0x200b82f8, 0x822382f9, 0xfaf12187, 0x03820b82, 0x82150021, 0x82fb2007, - 0x82fe2003, 0x00cb2417, 0x8200f200, 0x82012003, 0x82cf200b, 0x82042007, 0x82072003, 0x82d1200b, 0x820a2007, 0x000b2403, 0x82d50200, 0x82172007, - 0x821e2003, 0x82d7200b, 0x82212007, 0x822d2003, 0x82df200b, 0x82332007, 0x82362003, 0x2187820b, 0x0b8238f2, 0x0b823920, 0x0782f020, 0x03824020, - 0x0b824920, 0x0782f220, 0x03854a20, 0x73820220, 0x824df221, 0x824e200b, 0x82fc2017, 0x20db8207, 0x200382f2, 0x217b8203, 0x0f8251f2, 0x17825d20, - 0x0782fe20, 0x03856c20, 0x7b820320, 0x8271f221, 0x0077240b, 0x820c0300, 0x85782007, 0x13032103, 0x79200782, 0x7a220382, 0x0b840000, 0x0b827b20, - 0x03210382, 0x200782a7, 0x20038583, 0x20478301, 0x820b828b, 0x15032103, 0x8c200782, 0x0b840385, 0x0b828d20, 0x03210382, 0x20078216, 0x8403858e, - 0x8290200b, 0x8291200b, 0x82172053, 0x85922007, 0x02002103, 0x95200782, 0x00210385, 0x20078204, 0x2103859a, 0x07821903, 0x03859c20, 0x82ce0121, - 0x829d2007, 0x829e2003, 0x821a203b, 0x82a02007, 0x82a42003, 0x821c200b, 0x20938307, 0x200b82a8, 0x200b8221, 0x200382b4, 0x200b82b6, 0x20078223, - 0x210385b7, 0x07822503, 0x0385b920, 0x82260321, 0x85ba2007, 0x200b8403, 0x820b82bb, 0x27032103, 0xbc200782, 0x0b840385, 0x0b82bd20, 0x03210382, - 0x20078228, 0x840385be, 0x82c0200b, 0x2103820b, 0x07828901, 0x0382c120, 0x6b82c220, 0x07822920, 0x0385c320, 0x822a0321, 0x82c72007, 0x21af8203, - 0x07822b03, 0x0382d020, 0x2382d320, 0x07823320, 0x0385d420, 0x826d0321, 0x82db2007, 0x82dc2003, 0x82372017, 0x85e52007, 0x39032103, 0xe7200782, - 0x03210385, 0x2007823a, 0x210385ea, 0x07823b03, 0x0385ed20, 0x823c0321, 0x82f12007, 0x82f22003, 0x823d203b, 0x82f52007, 0x82f62003, 0x823f200b, - 0x85f92007, 0x41032103, 0xfe200782, 0x03250385, 0xf3000042, 0x20038202, 0x20238205, 0x20078243, 0x24038209, 0x0300000c, 0x20078247, 0x2103851c, - 0x07824b03, 0x03851e20, 0x824c0321, 0x85282007, 0x4d032103, 0x32200782, 0x01210385, 0x820782aa, 0x38f321ab, 0x4e203b82, 0x58200b82, 0x5b200382, - 0x50200b82, 0x5d200782, 0x03210385, 0x20078254, 0x21038560, 0x07825503, 0x03826220, 0x23826320, 0x07825620, 0x03858120, 0x82340221, 0x85822007, - 0x35022103, 0x86200782, 0x87200382, 0x4f832382, 0x0b829020, 0x03210382, 0x2007825a, 0x200385a5, 0x21638203, 0x0b82bef3, 0x2382bf20, 0x07825c20, - 0x0385c120, 0x825e0321, 0x85c52007, 0x5f032103, 0xc9200782, 0x03210385, 0x20078260, 0x200382cd, 0x202f82cf, 0x20078261, 0x210385d1, 0x07826403, - 0x0385dd20, 0x82650321, 0x85e02007, 0x66032103, 0xe5200782, 0x03210385, 0x20078267, 0x210385ed, 0x07826803, 0x0382fa20, 0x4782fb20, 0x07826920, - 0x0385fd20, 0x82920421, 0x85ff2007, 0x6b032503, 0x06f40000, 0x03210385, 0x2007826c, 0x21038510, 0x07826d03, 0x03852220, 0x826e0321, 0x85242007, - 0x6f032103, 0x25200782, 0x03210385, 0x20078223, 0x20038232, 0x205f8234, 0x20078270, 0x21038536, 0x07827303, 0x03823920, 0x17823a20, 0x07827420, - 0x03853c20, 0x82760321, 0x853f2007, 0x77032103, 0x41200782, 0x03210385, 0x20078278, 0x21038543, 0x07827903, 0x03854520, 0x827a0321, 0x85472007, - 0x7b032103, 0x4b200782, 0x03210385, 0x2007827c, 0x2103854e, 0x07827d03, 0x03855020, 0x827e0321, 0x85532007, 0x7f032103, 0x58200782, 0x03210385, - 0x20078280, 0x2003825c, 0x208f825d, 0x20078281, 0x2103855f, 0x07828303, 0x03826120, 0x17826220, 0x07828420, 0x03856620, 0x82860321, 0x82682007, - 0x826d2003, 0x82872017, 0x20db8307, 0x200b8272, 0x200b828d, 0x21038574, 0x07829003, 0x7920c383, 0x91201782, 0x7d200b82, 0x02210385, 0x8307823b, - 0x827f2087, 0x82942017, 0x8281200b, 0x82822003, 0x8296200b, 0x82842007, 0x214f8203, 0x07829803, 0x03858b20, 0x829c0321, 0x20578307, 0x2023828e, - 0x830b829d, 0x82942057, 0x829f200b, 0x8296200b, 0x82972003, 0x82a4200b, 0x859e2007, 0xa6032103, 0xa1200782, 0x03200385, 0xf4214b82, 0x820b82ad, - 0xa7032103, 0xb3200782, 0x03210385, 0x200782a8, 0x200382b8, 0x203b82ba, 0x200782a9, 0x200382bd, 0x200b82be, 0x200782ac, 0x200382c0, 0x200b82c2, - 0x200782ae, 0x210385c4, 0x0782b103, 0x0385c620, 0x82b20321, 0x82cd2007, 0x82ce2003, 0x82b32023, 0x85d32007, 0xb5032103, 0xd6200782, 0xdb200382, - 0xb6201782, 0xde200782, 0xdf200382, 0xbc200b82, 0xe2200782, 0xe3200382, 0xbe200b82, 0xe6200782, 0x03210385, 0x24078223, 0xf50000fa, 0x20178209, - 0x200782c0, 0x20038215, 0x200b822b, 0x200782d0, 0x2103852c, 0x07821200, 0x03822d20, 0x17823020, 0x0782e720, 0x03853120, 0x82130021, 0x82322007, - 0x82352003, 0x82eb2017, 0x85362007, 0x11002103, 0x37200782, 0x40200382, 0xef201782, 0x41200782, 0x00210385, 0x20078204, 0x20038242, 0x20178291, - 0x200782f9, 0x24038293, 0x0400009d, 0x20078249, 0x2003829f, 0x200b82a2, 0x20078254, 0x200382a4, 0x200b82a7, 0x20078258, 0x200382aa, 0x200b82b1, - 0x2007825c, 0x200382b3, 0x200b82b4, 0x20078264, 0x200382b6, 0x200b82b8, 0x20078266, 0x200382ba, 0x200b82bd, 0x20078269, 0x200382bf, 0x200b82c5, - 0x2007826d, 0x200382c7, 0x200b82cb, 0x20078274, 0x200382cd, 0x200b82ce, 0x83078279, 0x82d220db, 0x827b200b, 0x85d7200b, 0x7e042103, 0xda200782, - 0x04210385, 0x2007827f, 0x210385dc, 0x07828004, 0x0382de20, 0x2f82df20, 0x07828120, 0x0385e120, 0x82830421, 0x85e42007, 0x84042103, 0xe7200782, - 0x04210385, 0x20078285, 0x210385eb, 0x07828604, 0x0385ee20, 0x82870421, 0x82fc2007, 0x82fd2003, 0x00882447, 0x8501f600, 0x8a042103, 0x04200782, - 0x04210385, 0x2007828b, 0x21038510, 0x07828c04, 0x03851320, 0x828d0421, 0x85192007, 0x8e042103, 0x1f200782, 0x04210385, 0x2007828f, 0x21038521, - 0x07829004, 0x03822420, 0x00002524, 0x07829104, 0x03822920, 0x0b822a20, 0x07829320, 0x03822e20, 0x0b823020, 0x07829520, 0x03853720, 0x82980421, - 0x823b2007, 0x823c2003, 0x82992017, 0x85412007, 0x9b042103, 0x44200782, 0x04210385, 0x2007829c, 0x21038547, 0x07829d04, 0x03854a20, 0x829e0421, - 0x854f2007, 0x9f042103, 0x51200782, 0x04210385, 0x200782a0, 0x20038253, 0x20538255, 0x200782a1, 0x21038558, 0x0782a404, 0x03825d20, 0x17825e20, - 0x0782a520, 0x03856220, 0x82a70421, 0x82642007, 0x82662003, 0x82a82017, 0x82692007, 0x826b2003, 0x82ab200b, 0x856d2007, 0xae042103, 0x6f200782, - 0x04210385, 0x200782af, 0x21038574, 0x0782b004, 0x03857620, 0x82b10421, 0x82782007, 0x82792003, 0x82b2203b, 0x827b2007, 0x827c2003, 0x82b4200b, - 0x857f2007, 0xb6042103, 0x81200782, 0x84200382, 0xb7201782, 0x87200782, 0x89200382, 0xbb200b82, 0x96200782, 0x04210385, 0x200782be, 0x20038298, - 0x2017829b, 0x830782bf, 0x21c782cf, 0x0b82c304, 0x0382ab83, 0x82c50421, 0x85a9200b, 0xc6042103, 0xad200782, 0x04210385, 0x830782c7, 0x215b8263, - 0x0b82c804, 0x03825783, 0x82ca0421, 0x8257830b, 0xcb042103, 0xc0200b82, 0x04210385, 0x830782cc, 0x82c42057, 0x82cd206b, 0x85c8200b, 0xcf042103, - 0x03860782, 0x82d00421, 0x85d1200b, 0x83042003, 0x82d32007, 0x2103820b, 0x0782d204, 0x0385d520, 0x0f820420, 0x82d7f621, 0x2103820b, 0x0782d404, - 0x0385d920, 0x82d50421, 0x82dd2007, 0x82de2003, 0x82d6205f, 0x82e22007, 0x82e32003, 0x82d8200b, 0x85e62007, 0xda042103, 0xe8200782, 0x04210385, - 0x200782db, 0x200382ec, 0x202382ed, 0x200782dc, 0x200382f0, 0x200b82f2, 0x200782de, 0x210385fa, 0x0782e104, 0x0385fc20, 0x4f830420, 0x0000ff24, - 0x238200f7, 0x0782e320, 0x03820b20, 0x0b820c20, 0x0782e520, 0x03850e20, 0x82e70421, 0x82142007, 0x82152003, 0x21678217, 0x0b8217f7, 0x04210382, - 0x200782ea, 0x2103851e, 0x0782eb04, 0x03852220, 0x7f820420, 0x8228f721, 0x8229200b, 0x2187822f, 0x0b822bf7, 0x04210382, 0x200782ef, 0x2003822e, - 0x2017822f, 0x200782f0, 0x2003823b, 0x200b823d, 0x200782f2, 0x21038540, 0x0782f504, 0x03854320, 0x82f60421, 0x85472007, 0xf7042103, 0x4d200782, - 0x04210385, 0x200782f8, 0x20038251, 0x203b8253, 0x200782f9, 0x20038556, 0x21d38204, 0x0b825af7, 0x17825b20, 0x0782fd20, 0x03825e20, 0x0b825f20, - 0x0782ff20, 0x03856920, 0x82010521, 0x826b2007, 0x006c2403, 0x82020500, 0x826f2007, 0x82702003, 0x8204200b, 0x82722007, 0x82732003, 0x8206200b, - 0x827c2007, 0x827d2003, 0x8208200b, 0x82802007, 0x82812003, 0x820a200b, 0x82832007, 0x82842003, 0x820c200b, 0x82862007, 0x82882003, 0x820e200b, - 0x858c2007, 0x11052103, 0x93200782, 0x94200382, 0x12201782, 0x96200782, 0x05210385, 0x20078214, 0x2103859c, 0x07821505, 0x03829f20, 0x0000a024, - 0x07821605, 0x0385a220, 0x82180521, 0x82a42007, 0x00a62403, 0x82190500, 0x82a92007, 0x82ab2003, 0x821c200b, 0x82ad2007, 0x82ae2003, 0x821f200b, - 0x82b52007, 0x82b62003, 0x8221200b, 0x82b92007, 0x82ba2003, 0x8223200b, 0x85bd2007, 0x25052103, 0xbf200782, 0xc0200382, 0x26201782, 0xc2200782, - 0x05210385, 0x20078228, 0x200382c4, 0x201782c5, 0x20078229, 0x200382c9, 0x200b82ca, 0x2007822b, 0x200382cc, 0x200b82ce, 0x2007822d, 0x210385d0, - 0x07823005, 0x0385d220, 0x82310521, 0x82d72007, 0x82da2003, 0x82322023, 0x82e42007, 0x82e62003, 0x8236200b, 0x85ec2007, 0x39052103, 0xef200782, - 0x05210385, 0x2007823a, 0x200382f2, 0x202382f3, 0x2007823b, 0x210385f5, 0x07823d05, 0x0385f720, 0x823e0521, 0x82fa2007, 0x82fb2003, 0x003f2423, - 0x8502f800, 0x41052103, 0x05200782, 0x07200382, 0x42201782, 0x0a200782, 0x01210385, 0x20078295, 0x2103850b, 0x07828d00, 0x03850c20, 0x0d201784, - 0x03820b82, 0x82450521, 0x820f2007, 0x82102003, 0x8246203b, 0x85122007, 0x48052103, 0x15200782, 0x16240382, 0x49050000, 0x18200782, 0x05210385, - 0x2007824b, 0x2103851d, 0x07824c05, 0x03822720, 0x23822a20, 0x07824d20, 0x03852f20, 0x82510521, 0x20ab8207, 0x210382f8, 0x0b825205, 0x03854a20, - 0x82530521, 0x82338307, 0x54052103, 0x50200b82, 0x05210385, 0x83078255, 0x2103821b, 0x0b825605, 0x03855e20, 0x82570521, 0x85632007, 0x58052103, - 0x6d200782, 0x05210385, 0x20078259, 0x21038579, 0x07825a05, 0x03827b20, 0x83827d20, 0x07825b20, 0x03828120, 0x0b828220, 0x84204383, 0x87200b82, - 0x60200b82, 0x91200782, 0x05210385, 0x20078264, 0x21038597, 0x07826505, 0x0382c020, 0x2382c120, 0x07826620, 0x0385cc20, 0x82680521, 0x85d72007, - 0x69052103, 0xd9200782, 0x05210385, 0x2007826a, 0x210385e5, 0x07820b03, 0x0385ef20, 0x826b0521, 0x85ff2007, 0x6c052503, 0x7ff10100, 0x00260384, - 0x0100f803, 0x038408f3, 0xfe040022, 0x0b200782, 0x00220384, 0x07820505, 0x03840d20, 0x33040022, 0x0e200782, 0x00220384, 0x07823404, 0x03840f20, - 0x35040022, 0x10200782, 0x00210384, 0x20378302, 0x240b8219, 0x02000019, 0x20078297, 0x22038421, 0x822d0300, 0x84262007, 0x04002203, 0x200782f6, - 0x22038427, 0x82f40400, 0x84292007, 0x05002203, 0x20078203, 0x2203842a, 0x82040500, 0x24338307, 0x0500002d, 0x200b8246, 0x22038431, 0x82b80300, - 0x84322007, 0x02002203, 0x200782ac, 0x22038436, 0x824a0500, 0x844b2007, 0x01002203, 0x200782fa, 0x2203844e, 0x827c0400, 0x844f2007, 0x200b8503, - 0x200b8268, 0x20538268, 0x20078247, 0x2203846a, 0x821a0400, 0x84742007, 0x03002203, 0x2007823a, 0x22038477, 0x82bf0300, 0x84782007, 0x04002103, - 0x81207383, 0x81240b82, 0xdb010000, 0x82200782, 0x00220384, 0x0782cd02, 0x03849320, 0xa1020022, 0xf3830782, 0x00009724, 0x0b82b603, 0x03849920, - 0x60030022, 0x9e200782, 0x00220384, 0x07828a01, 0x03849f20, 0x83020021, 0x82a72073, 0x82a7200b, 0x20138353, 0x200b82a8, 0x203b82a8, 0x200782f7, - 0x210384ad, 0x4f830400, 0x0b82b220, 0x1782b220, 0x0782dd20, 0x0384b520, 0x85010022, 0xc0200782, 0x00220384, 0x07827203, 0x0384c120, 0x56020022, - 0xc2200782, 0x00220384, 0x07822f05, 0x0384c320, 0xe6040022, 0xc5200782, 0x00220384, 0x07825704, 0x0384c620, 0xf8010022, 0xc8200782, 0x00220384, - 0x07827d03, 0x0384ca20, 0x83040021, 0x24db8353, 0x020000cd, 0x201382dc, 0x220384d0, 0x82830300, 0x84d32007, 0x03002203, 0x20078282, 0x220384d4, - 0x82e20400, 0x84d62007, 0x04002203, 0x20078277, 0x210384d9, 0xd7830400, 0x0b82db20, 0x0000db24, 0x0782af04, 0x0384e020, 0x95010022, 0xe2200782, - 0x00220384, 0x0782a402, 0x0384e520, 0x3b020022, 0xe8200782, 0x00220384, 0x07824a04, 0x0384eb20, 0x00040022, 0xf4200782, 0x00220384, 0x07829e01, - 0x0384f720, 0xa5010026, 0x04f40100, 0x00220384, 0x0782cf04, 0x03840820, 0xcb040022, 0x09200782, 0x00210384, 0x21af8204, 0x0b820ef4, 0x00000e24, - 0x0782de04, 0x03841520, 0xd2040022, 0x1f200782, 0x00220384, 0x07822f04, 0x03844120, 0x83010021, 0x824d2023, 0x004d240b, 0x828e0200, 0x844e2007, - 0x02002203, 0x2007828f, 0x22038451, 0x82dc0300, 0x84552007, 0x04002203, 0x2007820a, 0x22038464, 0x82890100, 0x84652007, 0x03002203, 0x200782c6, - 0x2203847b, 0x82d80400, 0x84802007, 0x04002203, 0x83078203, 0x00892327, 0xcb820300, 0x6383f420, 0x0b828e20, 0x17825b20, 0x03849420, 0x1c050022, - 0x99200782, 0x00220384, 0x07828701, 0x03849a20, 0x9b200b85, 0x9b210b82, 0x200b8500, 0x200b829c, 0x200b869c, 0x200b82a1, 0x20b382a1, 0x20078232, - 0x220384a3, 0x82c00200, 0x84a72007, 0x01002203, 0x200782bb, 0x220384a9, 0x82420300, 0x84ac2007, 0x03002103, 0xb0201f83, 0xb0240b82, 0x4c050000, - 0xb2200782, 0x90820384, 0xb3200782, 0x00220384, 0x0782fe01, 0xbb203f83, 0x4a205f82, 0xbc200b82, 0x00220384, 0x07820f02, 0x0384be20, 0x18020022, - 0xbf200782, 0x00220384, 0x0782da03, 0xc0207b83, 0x0b834682, 0x0f82c120, 0xa782c120, 0x0782ea20, 0x0384c220, 0xeb010022, 0xc4200782, 0x00220384, - 0x07828602, 0x0384c520, 0x66020022, 0xc6200782, 0x0b850384, 0x0b82cb20, 0x4782cb20, 0x07824d20, 0x0384cc20, 0xf5010022, 0xcd200782, 0x00220384, - 0x07821103, 0x0384ce20, 0x17020022, 0xcf200782, 0x00220384, 0x0782fc03, 0x0384d420, 0x83010021, 0x82d620e3, 0x82d6200b, 0x82d32047, 0x84dc2007, - 0x04002203, 0x200782e7, 0x220384dd, 0x824b0300, 0x84de2007, 0x01002203, 0x200782fb, 0x220384df, 0x82490500, 0x84e02007, 0x02002203, 0x200782a3, - 0x220384e1, 0x82270500, 0x84e22007, 0x02002203, 0x20078201, 0x210384e6, 0xcb830300, 0x0b82f020, 0x0000f024, 0x0782c502, 0x0384f120, 0x62030022, - 0xf6200782, 0x00220384, 0x07829301, 0x0384f720, 0xef010022, 0x6f830782, 0x0000fb24, 0xda836905, 0x00220384, 0x0782e301, 0xf5215782, 0x20b38201, - 0x200b8257, 0x22038404, 0x823d0300, 0x84082007, 0x01002203, 0x200782a1, 0x2203840a, 0x82a20100, 0x840b2007, 0x02002203, 0x200782f2, 0x2203840c, - 0x82c40200, 0x840d2007, 0x01002103, 0xf5219b82, 0x240b8211, 0x01000011, 0x200782f0, 0x22038412, 0x829d0100, 0x84132007, 0x01002203, 0x200782fd, - 0x22038414, 0x82390200, 0x84152007, 0x02002203, 0x200782c8, 0x22038416, 0x82a80100, 0x84172007, 0x02002103, 0x18204383, 0x18240b82, 0x9b020000, - 0x25200782, 0x00220384, 0x0782dd01, 0x03842720, 0x83020021, 0x8228208b, 0x0028240b, 0x82d90400, 0x842c2007, 0x04002203, 0x2007828c, 0x22038434, - 0x82500200, 0x84352007, 0x200b8503, 0x200b8247, 0x832f8247, 0x824920d7, 0x8249200b, 0x82b3200b, 0x844a2007, 0x03002203, 0x200782ab, 0x2203844b, - 0x82ad0400, 0x844c2007, 0x04002203, 0x200782b2, 0x2203844d, 0x82c20400, 0x844e2007, 0x04002203, 0x200782da, 0x22038453, 0x82960100, 0x846b2007, - 0x02002203, 0x20078201, 0x2203846e, 0x82d30300, 0x84712007, 0x04002203, 0x200782e8, 0x22038475, 0x82db0200, 0x84772007, 0x04002203, 0x200782ea, - 0x2203847b, 0x82fb0100, 0x847d2007, 0x05002203, 0x2007825a, 0x22038482, 0x822b0200, 0x84882007, 0x82048203, 0x848a2002, 0x03002203, 0x20078245, - 0x2203848b, 0x825e0400, 0x24ff8307, 0x0200008c, 0x200b82cc, 0x22038495, 0x82430500, 0x249f8307, 0x03000096, 0x200b8206, 0x220384a4, 0x82870100, - 0x84a52007, 0x03002103, 0xa8206b83, 0xa8240b82, 0xa9010000, 0x03850782, 0xc7020022, 0xaa200b82, 0x00220384, 0x07821802, 0x0384b120, 0x68050022, - 0xb4200782, 0x00210384, 0x21328202, 0x0b82b6f5, 0x0882b620, 0xb7203783, 0xb7240b82, 0xa3020000, 0xb8200782, 0x00220384, 0x0782da03, 0x0384b920, - 0x83020021, 0x82bb2077, 0x82bb200b, 0x82b22023, 0x84bf2007, 0x01002203, 0x200782ea, 0x220384c1, 0x82eb0100, 0x84cb2007, 0x02002203, 0x20078286, - 0x850384ce, 0x82d5203b, 0x82d5200b, 0x823420cb, 0x84d62007, 0x03002203, 0x20078233, 0x220384d8, 0x829b0100, 0x84d92007, 0x01002203, 0x2007828f, - 0x220384e9, 0x82e40100, 0x84ea2007, 0x01002203, 0x200782f2, 0x250384fa, 0x00130300, 0xba82f601, 0x00220382, 0x0b823704, 0x03840120, 0x50040022, - 0x02200782, 0x00220384, 0x07823f04, 0x03840320, 0x38040022, 0x04200782, 0x00220384, 0x07823904, 0x03840520, 0x3a040022, 0x06200782, 0x00220384, - 0x07823c04, 0x03840920, 0xba030022, 0x0a200782, 0x00220384, 0x07826804, 0x03840d20, 0x3b040022, 0x10200782, 0x00220384, 0x07825302, 0x03841720, - 0x4c040022, 0x18200782, 0x00220384, 0x07824e04, 0x03841920, 0x4d040022, 0x1b200782, 0x00220384, 0x07824004, 0x03841c20, 0x42040022, 0x1d200782, - 0x00220384, 0x07824104, 0x03842020, 0x83040021, 0x82222067, 0x0022240b, 0x82650400, 0x84262007, 0x04002203, 0x20078231, 0x2203842b, 0x82750400, - 0x842c2007, 0x04002203, 0x20078236, 0x2203842d, 0x82640400, 0x842e2007, 0x04002203, 0x20078270, 0x22038433, 0x82300400, 0x20278307, 0x20538236, - 0x830b8258, 0x0042247b, 0x82510200, 0x8444200b, 0x04002203, 0x20078259, 0x22038481, 0x82ec0300, 0x84862007, 0x02002203, 0x200782f0, 0x2203848a, - 0x82830100, 0x848d2007, 0x02002203, 0x200782d4, 0x22038490, 0x82660400, 0x84912007, 0x02002203, 0x2007823c, 0x22038496, 0x82ab0200, 0x84972007, - 0x04002203, 0x20078284, 0x22038498, 0x82aa0200, 0x849a2007, 0x02002203, 0x20078221, 0x2103849c, 0x77830400, 0x0b82a120, 0x0000a124, 0x07823505, - 0x0384a220, 0xda020022, 0xa6200782, 0x00220384, 0x07829804, 0xaa243f83, 0xe5030000, 0x63830b82, 0x0000ab24, 0x0b82d101, 0x0384ac20, 0x9d030022, - 0xad200782, 0x00220384, 0x07820404, 0x0384b020, 0x31000022, 0xb2200782, 0x00220384, 0x0782d302, 0x0384b420, 0x53050022, 0xb6200782, 0x00220384, - 0x07820b04, 0x0384bd20, 0x33050022, 0xbf200782, 0x00220384, 0x07823003, 0x0384c120, 0x31030022, 0xcc200782, 0x00220384, 0x0782ef02, 0x0384ce20, - 0x19040022, 0xd0200782, 0x00220384, 0x0782b904, 0x0384d220, 0xe9010022, 0xe1200782, 0x00220384, 0x07826502, 0x0384e320, 0x97010022, 0xeb200782, - 0x00220384, 0x07826204, 0xec24ff83, 0x61040000, 0xf0200b82, 0x00220384, 0x07822605, 0x0384fb20, 0x9a040026, 0xe0f70100, 0x00220384, 0x07825002, - 0x0384e120, 0xe2200b85, 0xe2210b82, 0x200b8500, 0x200b82e3, 0x200b86e3, 0x200b82e4, 0x200b86e4, 0x240b82e5, 0x030000e5, 0x20078281, 0x850384e6, - 0x82e7200b, 0x86e7200b, 0x82e82017, 0x86e8200b, 0x82e9200b, 0x86e9200b, 0x82ea200b, 0x86ea200b, 0x82eb200b, 0x85eb200b, 0x0df9230b, 0x03820100, - 0x87010022, 0x0e200782, 0x0b850384, 0x0b821620, 0x23821620, 0xf921bb82, 0x200b821a, 0x200b821a, 0x20078203, 0x2203841d, 0x82b20300, 0x84232007, - 0x04002203, 0x2007823d, 0x22038429, 0x823e0400, 0x84412007, 0x04002203, 0x20078220, 0x22038442, 0x82160500, 0x84432007, 0x05002203, 0x20078217, - 0x22038444, 0x82390300, 0x844e2007, 0x03002203, 0x20078271, 0x22038453, 0x82370500, 0x84552007, 0x05002203, 0x2007820f, 0x2203845a, 0x82400500, - 0x84772007, 0x03002203, 0x200782ca, 0x22038490, 0x82940000, 0x849b2007, 0x04002203, 0x200782dd, 0x220384a6, 0x82e40400, 0x84b42007, 0x04002203, - 0x2007827e, 0x220384b7, 0x82760400, 0x84cd2007, 0x02002203, 0x20078295, 0x220384e0, 0x82800400, 0x84e12007, 0x05074103, 0x0b82e620, 0x0000e624, - 0x0782be04, 0x0384e920, 0x62020022, 0xea200782, 0x00220384, 0x0782a103, 0x0384ec20, 0x8e030022, 0xed200782, 0x00220384, 0x07827c02, 0x0384ef20, - 0x67020022, 0xf0200782, 0x00220384, 0x07820904, 0x0384f220, 0xe5010022, 0xf3200782, 0x00220384, 0x07823802, 0x0384f920, 0xd5030022, 0xfb200782, - 0x00220384, 0x0782eb04, 0x0384fc20, 0x4c000022, 0xfe200782, 0x00260384, 0x0100fa03, 0x038479fa, 0x85030022, 0x7a200782, 0x00220384, 0x07823702, - 0x03849120, 0xcc040022, 0x9b200782, 0x00220384, 0x07820104, 0x0384b620, 0xe7030022, 0xc1200782, 0x00230384, 0x87008b04, 0x82882000, 0x00f82808, - 0x00fc0100, 0x82440300, 0x250b8203, 0x0000b404, 0x03822805, 0x0000ac24, 0x03822006, 0x0000a824, 0x03825807, 0x0000e428, 0x00008c08, 0x03822c09, - 0x00008428, 0x0000740a, 0x03820c0b, 0x03826c20, 0x0000e02c, 0x0000400c, 0x0000080d, 0x0382200e, 0x00009424, 0x0382340f, 0x10294b82, 0x1000002c, - 0x110000a4, 0x24038210, 0x120000c4, 0x8203823c, 0x82132017, 0xb0132417, 0x82140000, 0xd0142882, 0x7c150000, 0x82160000, 0x82162023, 0x54172863, - 0xe8170000, 0x82190000, 0x7019211c, 0x7b820782, 0x00441a29, 0x00cc1a00, 0x82581b00, 0x00c02703, 0x00281c00, 0x7f821d00, 0x07821e20, 0x00d81e24, - 0x47822000, 0x00402134, 0x00802200, 0x00f02300, 0x005c2700, 0x00382900, 0x23822a00, 0x00ec2a24, 0x93822c00, 0x00982e28, 0x00882f00, 0x87823000, - 0x1b823220, 0x00503324, 0x57823400, 0x00c83524, 0x93823600, 0x83823720, 0x00243a28, 0x00b03b00, 0x3f823c00, 0x23823d20, 0x3f823e20, 0x00703f24, - 0x03824000, 0x00d04124, 0x6f824300, 0x8f824320, 0x43824420, 0x33824520, 0x93824620, 0x2b824820, 0x00bc4928, 0x00f84b00, 0x88824d00, 0x00ac4e24, - 0xff824f00, 0x13824f20, 0x00905028, 0x00745100, 0x23825200, 0x00685324, 0x43825300, 0x67825420, 0x87825520, 0x7f825620, 0x57825720, 0x00605828, - 0x00f45800, 0x1f825a00, 0x7b825b20, 0x5f825c20, 0x00305e24, 0x1f825f00, 0x07826020, 0x9f826020, 0x00c06124, 0xab826300, 0x00206424, 0x7b826400, - 0x002c6524, 0x17826500, 0xd7826620, 0x00646724, 0x87826800, 0x009c6924, 0x0b826a00, 0x00146b25, 0x82186c00, 0x00a82303, 0x43826d00, 0x00806e24, - 0x67826f00, 0x008c7028, 0x00407100, 0x03837200, 0x0000f027, 0x0000e073, 0x209b8274, 0x281b8275, 0x00000476, 0x00003c77, 0x20578278, 0x203b8279, - 0x2467827a, 0x0000487b, 0x20bf827c, 0x2093827d, 0x2023827f, 0x204b8280, 0x208f8281, 0x24778281, 0x00008482, 0x24478283, 0x0000e883, 0x245f8284, - 0x00001c86, 0x20338287, 0x20838288, 0x20c78289, 0x20ef828a, 0x244b828b, 0x0000fc8b, 0x201f828d, 0x208b828e, 0x204b828f, 0x20f78290, 0x20c78292, - 0x24278293, 0x0000f894, 0x24fb8296, 0x0000d897, 0x284b8299, 0x00004c9a, 0x0000b89b, 0x240b829d, 0x0000b49e, 0x200782a0, 0x206b82a2, 0x20ef82a3, - 0x20df82a5, 0x200b82a6, 0x206f82a7, 0x240f82a8, 0x0000a0aa, 0x20b382ac, 0x204782ad, 0x200382ae, 0x240b82b0, 0x000000b1, 0x203782b1, 0x24d382b2, - 0x00007cb3, 0x203f82b4, 0x24b382b5, 0x000028b6, 0x205b82b7, 0x208782b8, 0x203b82b9, 0x207782ba, 0x309b82bc, 0x0000d4bc, 0x000058be, 0x000024c0, - 0x0000e0c1, 0x20a382c3, 0x202382c5, 0x244782c7, 0x0000c4c8, 0x204382ca, 0x20d782cc, 0x20eb82cd, 0x204b82cf, 0x248382d1, 0x000070d2, 0x2c2782d3, - 0x0000bcd4, 0x000010d6, 0x0000b0d7, 0x204382d8, 0x242b82d9, 0x000018db, 0x20f782dc, 0x20c382dd, 0x242382de, 0x0000a4df, 0x249782e1, 0x0000e4e1, - 0x200f82e2, 0x24bf82e3, 0x000090e4, 0x209382e6, 0x2c9382e7, 0x000014e8, 0x000088e8, 0x000038e9, 0x208b82eb, 0x21db82ec, 0xdd65ecee, 0x82f12005, - 0xfcf22c57, 0xf4f30000, 0xd8f40000, 0x82f50000, 0x82f6203b, 0x98f724e7, 0x82f80000, 0x94f92807, 0xacfa0000, 0x82fb0000, 0x82fc20b7, 0x82fd2033, - 0x82fe20af, 0x9cff3463, 0xc4000100, 0x6c010100, 0x18030100, 0x34050100, 0x82060100, 0x82072003, 0x40082d03, 0x5c090100, 0x240a0100, 0x280c0100, - 0xe0230382, 0x820e0100, 0x820e2007, 0x940f2907, 0x44110100, 0x14120100, 0xc8230382, 0x82130100, 0x50142d0f, 0x58150100, 0x80160100, 0x1c170100, - 0xdc2b0382, 0xe41a0100, 0xfc1b0100, 0x821c0100, 0xe81d301f, 0x541f0100, 0xb8200100, 0xf0220100, 0x82240100, 0x6426284b, 0xb0260100, 0x82280100, - 0x8228207b, 0x88292807, 0x682b0100, 0x822d0100, 0xec2e341b, 0x74300100, 0x48320100, 0x84330100, 0xc0340100, 0x82350100, 0x3037244f, 0x82380100, - 0x8239207b, 0x7c3a306f, 0xb43b0100, 0xd03c0100, 0x103e0100, 0x823f0100, 0x8240203f, 0x3c422d0b, 0xa0430100, 0x90440100, 0x04460100, 0x6f820382, - 0x00984828, 0x00704901, 0x07824a01, 0x5f824c20, 0x2b824d20, 0x97824e20, 0x008c4f24, 0xeb825101, 0x5f825220, 0x00c45428, 0x00385601, 0xf3825701, - 0xc3825820, 0x07825920, 0x00205a28, 0x00f45b01, 0x33825d01, 0x77825e20, 0x43825f20, 0xe3826020, 0x77826120, 0x57826220, 0xdf826320, 0x3b826420, - 0xef826520, 0x0f826620, 0x00146824, 0xb3826901, 0x00786a24, 0xd7826b01, 0x00086c24, 0xfb826c01, 0xd7826e20, 0x00f86f24, 0x7f827101, 0x07827220, - 0x7b827420, 0x6b827520, 0x63827620, 0x5b827720, 0xb7827720, 0x7f827820, 0x00ac792c, 0x000c7b01, 0x004c7c01, 0x1f827e01, 0x00c87e29, 0x00ac7f01, - 0x82008001, 0x00b02303, 0x47828101, 0x57828220, 0x53828220, 0x00748328, 0x00fc8301, 0x9f828401, 0x007c8624, 0x03828701, 0x00108924, 0xdb828901, - 0x5f828a20, 0x8f828b20, 0x8b828d20, 0x00848e28, 0x00509001, 0x2f829101, 0x8f829320, 0x1f829420, 0x00609624, 0x47829801, 0xaf829a20, 0x00ec9a24, - 0x2f829c01, 0x00409e24, 0x13829f01, 0x2782a020, 0x0058a128, 0x003ca201, 0x4f82a301, 0x7b82a420, 0x001ca524, 0x3b82a601, 0x00a0a624, 0x2f82a701, - 0x3f82a820, 0x0782a820, 0x0080a924, 0x8b82a901, 0x0054aa24, 0xc382aa01, 0x0070ac24, 0x8f82ac01, 0xab82ad20, 0x1382ae20, 0x00a8ae24, 0xe382af01, - 0xc782af20, 0x8b82b020, 0xeb82b120, 0x0034b224, 0xc782b301, 0x0b82b420, 0x00b4b424, 0x3382b501, 0xef82b620, 0x00d8b624, 0x8782b701, 0x2b82b820, - 0x0004ba28, 0x0090ba01, 0x8b82bb01, 0x3f82bc20, 0x0078bc24, 0x8782bd01, 0xaf82be20, 0xa782bf20, 0x002cc02c, 0x00a4c001, 0x005cc101, 0x1f82c201, - 0x2782c220, 0x0044c328, 0x00e0c301, 0x2b82c401, 0x0038c524, 0x8382c501, 0x7f82c620, 0x009cc728, 0x007cc801, 0x2b82c901, 0xd382ca20, 0x0020cb24, - 0x1f82cc01, 0x0b82cd20, 0x4b82ce20, 0x00c0ce25, 0x8288cf01, 0x00e42303, 0xd782d001, 0x00f0d024, 0x8b82d101, 0xc782d220, 0x3382d320, 0x5382d320, - 0x9f82d420, 0x8f82d420, 0x001cd525, 0x826cd501, 0x201f8203, 0x241b82d6, 0x0100c4d6, 0x204382d7, 0x201b82d7, 0x203f82d7, 0x244782d8, 0x010008d9, - 0x20d782d9, 0x201782da, 0x20a782db, 0x204782db, 0x242b82dd, 0x0100fcdd, 0x24f782de, 0x0100d4de, 0x241b82df, 0x0100acdf, 0x208782e0, 0x205b82e1, - 0x207782e2, 0x25cf82e2, 0x010050e3, 0x038254e4, 0xe5242b82, 0xe60100b8, 0xe7200382, 0xe820c782, 0xe8242f82, 0xea0100cc, 0xeb24b382, 0xeb010030, - 0xec201782, 0xec202782, 0xec28df82, 0xed0100f8, 0xee0100d0, 0xef293f82, 0xef010000, 0xf0010080, 0x82038218, 0x82f1205f, 0x64f228fb, 0x04f30100, - 0x82f50100, 0x82f62083, 0x82f62047, 0x82f720ab, 0x82f72013, 0x82f82037, 0x82f920c7, 0xc8fa2427, 0x82fb0100, 0x82fc204b, 0x82fc203b, 0x98fd25af, - 0x34fe0100, 0xab820382, 0x00c0ff3d, 0x00a00002, 0x00600102, 0x004c0202, 0x00900302, 0x00d40402, 0x00180602, 0x825c0702, 0x00f82803, 0x00940802, - 0x82300902, 0x00d03003, 0x00f00a02, 0x009c0b02, 0x00dc0c02, 0x82280d02, 0x29078203, 0x0200b00e, 0x0200f40f, 0x03824411, 0x12294f82, 0x13020058, - 0x14020074, 0x24038200, 0x150200c8, 0x82038284, 0x80163153, 0xcc170200, 0x0c190200, 0x401a0200, 0x1c1b0200, 0x7b820382, 0x27821c20, 0x0b821d20, - 0x00fc1d25, 0x823c1e02, 0x827c2003, 0x82bc2003, 0x240f8203, 0x02006c1f, 0x2063821f, 0x201f8220, 0x248f8220, 0x0200d820, 0x248f8221, 0x02006422, - 0x20238222, 0x20778223, 0x203f8225, 0x209b8225, 0x25678226, 0x02005027, 0x03820828, 0x29208782, 0x2b24ab82, 0x2b020020, 0x2c208382, 0x2d203b82, - 0x2e207782, 0x2f20a382, 0x3024af82, 0x310200a4, 0x32242f82, 0x33020068, 0x33253f82, 0x34020098, 0x2303822c, 0x350200c4, 0x35202b82, 0x36203b82, - 0x3620a382, 0x36256b82, 0x370200e8, 0x23038238, 0x380200ac, 0x38242382, 0x390200a8, 0x3a243b82, 0x3b020060, 0x3c24d782, 0x3d020030, 0x3e2cb782, - 0x3f020048, 0x40020028, 0x42020014, 0x44206782, 0x44245782, 0x45020088, 0x46244f82, 0x46020024, 0x47206b82, 0x4824c782, 0x4902004c, 0x4a20e382, - 0x4b250b82, 0x4c020010, 0x23038204, 0x4d020078, 0x4e20cf82, 0x4f241782, 0x4f020048, 0x50206b82, 0x51207f82, 0x5125bf82, 0x520200e0, 0x2303826c, - 0x530200f8, 0x54207782, 0x55203382, 0x56201b82, 0x5720cf82, 0x57209782, 0x58209f82, 0x5920bf82, 0x5a201b82, 0x5a241b82, 0x5b0200d8, 0x5b254382, - 0x5c0200cc, 0x82038254, 0x825d20a3, 0x085e245f, 0x825f0200, 0x825f2033, 0x82602017, 0x82602083, 0x82612007, 0x34623007, 0xf4620200, 0x8c640200, - 0x58650200, 0x82660200, 0xfc662497, 0x82670200, 0x826820b7, 0x8269200b, 0x826a20cb, 0xa46b247f, 0x826c0200, 0x826e205b, 0x826f2093, 0x827020cb, - 0x18712483, 0x82710200, 0xf0712477, 0x82720200, 0xc872282f, 0xb8730200, 0x82740200, 0x947524f7, 0x82760200, 0x9c76296f, 0xe4770200, 0x64780200, - 0xc3820382, 0x6f827a20, 0x00287b24, 0x0b827b02, 0x1b827c20, 0x17827d20, 0x87827e20, 0x2f827f20, 0x87828020, 0x57828220, 0xc7828320, 0x4f828420, - 0x6f828420, 0x53828520, 0x73828720, 0x6b828820, 0x3b828920, 0x0f828920, 0x73828a20, 0x67828b20, 0x97828c20, 0x00148d24, 0x13828d02, 0x3f828e20, - 0x00ac8f30, 0x00bc9002, 0x00749102, 0x00309202, 0x13829302, 0xbf829420, 0x13829420, 0x0b829520, 0x00789624, 0x63829602, 0x00b09824, 0x5f829902, - 0x003c9a24, 0x5b829b02, 0x002c9c24, 0x83829e02, 0x4b829f20, 0x4b829f20, 0xaf82a020, 0x00dca128, 0x00d4a302, 0xcb82a402, 0x0008a528, 0x00c0a502, - 0xf782a602, 0xb782a620, 0x0050a925, 0x8200aa02, 0x008c2303, 0x4382ab02, 0x1382ab20, 0x5b82ac20, 0x00d0ad24, 0xbf82af02, 0x5b82b020, 0xe382b120, - 0x7b82b220, 0x0048b328, 0x0090b302, 0xcb82b402, 0x4782b620, 0x00a8b728, 0x00ecb802, 0x4f82b902, 0x5b82ba20, 0x0038bb24, 0x7f82bc02, 0x1f82be20, - 0x000cc024, 0x4782c102, 0x00a4c230, 0x00f0c302, 0x00ccc402, 0x00a0c502, 0x7782c602, 0x00fcc624, 0xd782c702, 0x1f82c820, 0x7382c920, 0x4b82ca20, - 0x4382ca20, 0xcb82cb20, 0x7f82cc20, 0xdf82cd20, 0xf382ce20, 0x3382ce20, 0x2f82cf20, 0xe782cf20, 0x0054d031, 0x0060d102, 0x007cd202, 0x0098d302, - 0x8204d402, 0x208b8203, 0x206b82d5, 0x242f82d6, 0x020064d7, 0x20ff82d8, 0x203f82d8, 0x209782d9, 0x285f82da, 0x020018db, 0x0200b4db, 0x288382dc, - 0x0200acdd, 0x0200e8de, 0x241b82df, 0x02006ce0, 0x20f382e1, 0x203b82e1, 0x20f782e2, 0x200f82e3, 0x206f82e4, 0x209f82e4, 0x20e782e5, 0x209f82e5, - 0x284f82e6, 0x0200c4e6, 0x020084e7, 0x2c4782e8, 0x0200e0e8, 0x0200c8e9, 0x0200d0ea, 0x200b82eb, 0x201b82ec, 0x20d782ed, 0x202782f1, 0x206b82f3, - 0x24f782f5, 0x020088f6, 0x201b82f7, 0x205782f8, 0x206f82f9, 0x208b82fa, 0x201f82fb, 0x20b382fc, 0x08ab82fd, 0x0058fe28, 0x002cff02, 0x004c0003, - 0x00400103, 0x00340203, 0x00280303, 0x001c0403, 0x000c0503, 0x00dc0603, 0x00c00703, 0x17820903, 0x82b80921, 0x00f83007, 0x00cc0a03, 0x00680b03, - 0x00bc0c03, 0x82700e03, 0x00d82b03, 0x00c80f03, 0x006c1003, 0x47821103, 0x47821220, 0x00f41224, 0x2f821303, 0x00781424, 0x4b821503, 0x00741624, - 0x2b821703, 0x00141824, 0x0b821803, 0x00101924, 0x2f821903, 0x37821920, 0x00241a28, 0x00801a03, 0x63821b03, 0x00001c24, 0x37821c03, 0x83821d20, - 0x00981d25, 0x823c1e03, 0x00e02703, 0x00841f03, 0x13822003, 0x00fc2028, 0x00942103, 0x17822203, 0x00102324, 0x83822303, 0x8f822420, 0x00642524, - 0x1b822503, 0x63822620, 0x00e42624, 0x4f822703, 0x1f822820, 0x00042928, 0x00902903, 0x57822a03, 0x13822a20, 0x009c2b28, 0x00442c03, 0x0f822d03, - 0x008c2d24, 0xe3822e03, 0x00a02e24, 0x97822f03, 0x6f822f20, 0x07823020, 0x00b03024, 0x23823103, 0xd7823120, 0x00b43228, 0x00e83303, 0x83823403, - 0xab823520, 0x00a43728, 0x00583803, 0xb3823903, 0x13823920, 0x00a83a24, 0x7b823b03, 0x03823c20, 0x00603d2d, 0x00503e03, 0x002c3f03, 0x825c4003, - 0x303f8203, 0x0300f841, 0x03001842, 0x03000443, 0x03000844, 0x20c78245, 0x282b8246, 0x0300c046, 0x0300c447, 0x24738248, 0x03003849, 0x2423824a, - 0x0300f04a, 0x2827824c, 0x03007c4d, 0x0300ac4e, 0x2007824f, 0x20eb8250, 0x24eb8251, 0x0300dc51, 0x29bb8252, 0x03004053, 0x03004854, 0x03822055, - 0x56209b82, 0x5724db82, 0x57030034, 0x59203b82, 0x5a20ef82, 0x5b20e382, 0x5c209782, 0x5d283f82, 0x5d03006c, 0x5e0300fc, 0x5f204782, 0x5f29cf82, - 0x600300f4, 0x620300cc, 0x2b038228, 0x630300d4, 0x640300e4, 0x65030088, 0x6624b382, 0x670300ec, 0x6824af82, 0x69030070, 0x6a2c5f82, 0x6b0300bc, - 0x6c03008c, 0x6d0300a0, 0x6e204b82, 0x6f206b82, 0x71245b82, 0x72030030, 0x7320ff82, 0x7424cb82, 0x75030074, 0x7520af82, 0x76201b82, 0x7720cf82, - 0x78209f82, 0x79208f82, 0x7a205b82, 0x7a207b82, 0x7b24fb82, 0x7c030078, 0x7d208382, 0x7e204382, 0x80206b82, 0x81243f82, 0x81030000, 0x82246f82, - 0x830300a8, 0x84256382, 0x8503002c, 0x82038224, 0x82862027, 0x82872063, 0x8287208f, 0xd88a243b, 0x828c0300, 0x828d201b, 0x828f20bf, 0x82902097, - 0x829120e7, 0x94922447, 0x82930300, 0x8293202f, 0x8294202f, 0x5c962477, 0x82970300, 0x18982403, 0x82980300, 0x829a20fb, 0x829b2007, 0x829c2043, - 0x829c20a7, 0x3c9e2443, 0x829f0300, 0xc89f2413, 0x82a00300, 0x10a1248f, 0x82a10300, 0x82a2200b, 0x82a320bf, 0x82a4206f, 0x38a62807, 0xcca60300, - 0x82a70300, 0x82a820cb, 0x82a92013, 0xd0a92433, 0x82ab0300, 0x82ac2017, 0x82ad2003, 0x82ae207b, 0x28af24d3, 0x82b00300, 0x60b124b7, 0x82b20300, - 0x82b32007, 0x82b42077, 0x82b5205b, 0x82b620d3, 0x82b72047, 0x82b7205b, 0x82b82083, 0x1cb924eb, 0x82ba0300, 0x14bb24ab, 0x82bc0300, 0x20bd2923, - 0x44be0300, 0x04bf0300, 0xa0270382, 0x4cc00300, 0x82c20300, 0x84c32427, 0x82c40300, 0x82c52057, 0xf4c524b3, 0x82c70300, 0xb8c72437, 0x82c90300, - 0xb0ca2433, 0x82cb0300, 0x82cc2017, 0x7ccd2407, 0x82ce0300, 0x82cf2043, 0x82d0208b, 0xdcd02447, 0x82d10300, 0x0cd2245f, 0x82d30300, 0x82d4207f, - 0x82d42007, 0x82d620bf, 0x82d72083, 0x82d820bf, 0x82d920a3, 0x82da2063, 0x82db20a3, 0x82dc205f, 0xd8dc2413, 0x82dd0300, 0x82de2047, 0x82df2047, - 0x82e02003, 0x78e1247f, 0x82e20300, 0x82e32037, 0x82e32067, 0x82e4207f, 0x82e72057, 0x82e8207f, 0x9ce92817, 0x98ea0300, 0x82eb0300, 0x82ec2053, - 0x80ed244b, 0x82ef0300, 0x6cf0244b, 0x82f10300, 0x82f22003, 0x82f32003, 0xacf5242f, 0x82f60300, 0xecf7245b, 0x82f90300, 0x08fb243b, 0x82fd0300, - 0x82fe204f, 0xd4ff28db, 0x2c010400, 0x82020400, 0x7c032c03, 0xcc040400, 0xb4050400, 0x82060400, 0x07280807, 0x09040060, 0x0a040004, 0x0c040090, - 0x0d04000c, 0x0f0400b8, 0x110400d8, 0x120400ec, 0x140400e0, 0x15040048, 0x16040054, 0x172c0782, 0x1804008c, 0x1904006c, 0x1a040078, 0x1a243382, - 0x1b0400f4, 0x1c254782, 0x1d0400c4, 0x23038250, 0x1e0400f0, 0x1f280f82, 0x200400e8, 0x21040074, 0x21244f82, 0x220400f8, 0x23282782, 0x2404009c, - 0x25040068, 0x26207f82, 0x27240b82, 0x280400bc, 0x2a202782, 0x2b2d1382, 0x2b040038, 0x2c0400dc, 0x2e040088, 0x82038240, 0x802f2447, 0x82300400, - 0x8231206b, 0x8232209f, 0x823320b7, 0x8234200b, 0x94352497, 0x82360400, 0x8237206f, 0x82382017, 0x64392473, 0x823a0400, 0xa83a248b, 0x823c0400, - 0xfc3c240f, 0x823e0400, 0x823f203f, 0x8240205f, 0x82412023, 0x84422487, 0x82430400, 0x82442067, 0x824520db, 0x10472c43, 0xac470400, 0x98480400, - 0x82490400, 0x244a2417, 0x824b0400, 0x584c2483, 0x824d0400, 0x824d2043, 0x824e20af, 0x824f202b, 0x3050245b, 0x82510400, 0xec5224f7, 0x82530400, - 0x82542007, 0x0056240f, 0x82580400, 0x825920db, 0x825a206b, 0x825d2017, 0x905e2437, 0x825f0400, 0x82602067, 0x8261203f, 0x8262204f, 0x8264204f, - 0x826520b3, 0x826720ab, 0xf8672407, 0x82690400, 0xd46a25ef, 0x546b0400, 0x0f820382, 0x37826d20, 0x00a46e24, 0x93826f04, 0x00347124, 0x4f827204, - 0x0b827420, 0xcf827620, 0x00a07830, 0x003c7904, 0x00487a04, 0x00147d04, 0x33827e04, 0x6b828020, 0x3f828320, 0x00888428, 0x002c8504, 0x17828604, - 0x33828620, 0x63828720, 0x1b828820, 0x0f828a20, 0x77828b20, 0x9f828c20, 0x00cc8c24, 0x5b828d04, 0xe3828e20, 0x00808f28, 0x007c9004, 0x3b829104, - 0x0f829220, 0x00449428, 0x00e49404, 0x33829504, 0x001c9724, 0x9f829804, 0x33829920, 0x00409a24, 0x97829a04, 0x00dc9b24, 0x47829d04, 0xef829e20, - 0x2b82a020, 0x2b82a020, 0x00c8a12c, 0x00f4a204, 0x00bca304, 0x0782a504, 0x0070a728, 0x00b8a804, 0xa782a904, 0x004caa24, 0x6382ad04, 0x0074ae28, - 0x009caf04, 0x3382b104, 0x1382b220, 0x5382b320, 0x0020b424, 0x0782b504, 0x0060b524, 0x4f82b604, 0x0094b828, 0x0050b904, 0x2b82ba04, 0xc382bb20, - 0x0064bc24, 0x9382bc04, 0x0024be28, 0x0068bf04, 0x7782c104, 0x1782c220, 0x0008c324, 0x8f82c404, 0x0078c528, 0x0030c604, 0x3382c804, 0x6f82c920, - 0x8b82ca20, 0x00f0cb24, 0x0b82cd04, 0x2382d020, 0xd382d220, 0x3f82d320, 0x0054d424, 0x7782d504, 0x1f82d620, 0x00fcd724, 0x6f82d904, 0x4782db20, - 0x5782dc20, 0xfb82dd20, 0x2782de20, 0x3382df20, 0x005ce024, 0x2782e104, 0xc382e120, 0xe782e320, 0x00e8e424, 0x0382e504, 0xc782e720, 0x00b4e828, - 0x006ce904, 0x3382ea04, 0xb782eb20, 0x0004ec28, 0x00a8ed04, 0x2782ee04, 0x1b82ef20, 0x003cf124, 0xcb82f204, 0xa782f320, 0x9b82f420, 0x3382f420, - 0x0070f624, 0x7382f604, 0x0058f724, 0x6f82f804, 0x00b0f824, 0xe382fa04, 0xd782fb20, 0x1782fb20, 0x009cfc24, 0xbf82fd04, 0xbf82fe20, 0x0030ff31, - 0x00840005, 0x00340205, 0x000c0305, 0x82180405, 0xc82b0803, 0xa8050500, 0xe8060500, 0x10080500, 0x5c090500, 0x4c0a0500, 0x9c0c0500, 0xd80d0500, - 0x700f0500, 0xf0100500, 0x80110500, 0x82120500, 0x82132003, 0x8214202b, 0x7c15292b, 0x48160500, 0x20170500, 0x90200382, 0x13820382, 0x00c01830, - 0x00bc1905, 0x00941a05, 0x00541b05, 0x3b821c05, 0x00381d24, 0x6b821e05, 0x002c1f2c, 0x00d41f05, 0x00782005, 0x43822105, 0x83822320, 0x2f822320, - 0x53822420, 0x47822520, 0x7b822620, 0x13822720, 0x1b822820, 0x00f82924, 0x07822a05, 0x00682b24, 0x37822c05, 0x17822d20, 0x00cc2d25, 0x82502f05, - 0x2c438203, 0x0500b033, 0x05004435, 0x05004036, 0x20c38237, 0x242b8238, 0x05001c39, 0x244f8239, 0x0500643b, 0x2033823c, 0x207f823d, 0x20a3823e, - 0x202b823f, 0x209b8240, 0x24138242, 0x05007443, 0x20d78244, 0x20078245, 0x204b8246, 0x203b8247, 0x207f8247, 0x20038248, 0x20978249, 0x2007824a, - 0x08bb824b, 0xff000053, 0x018001c0, 0x000300c0, 0x000b0007, 0x0025000f, 0x27013f00, 0x27331711, 0x11173707, 0x17233707, 0x37362537, 0x21373631, - 0x17161716, 0x06070611, 0x27262107, 0x40112726, 0xb3275a5a, 0x5980595a, 0x59b33359, 0x01e6fe5a, 0x01140e0d, 0x0d0e1420, 0x21098301, 0x0983e0fe, - 0x86863a24, 0x0482f4fe, 0x0186c028, 0x86c0860c, 0x1e881086, 0x09876020, 0x00a00122, 0x02260082, 0xe0ff1800, 0x0c826800, 0x81831320, 0x27341335, - 0x22232631, 0x11150607, 0x33161714, 0x35363732, 0x82320311, 0x34352285, 0x83178527, 0x09602516, 0x090e0e09, 0x05830082, 0x0b112026, 0x110b0c0c, - 0x01210585, 0x21178580, 0x078500ff, 0xfe000123, 0x821c8860, 0x02002122, 0xe022f782, 0x6f82c001, 0x5a005530, 0x16130000, 0x0f163117, 0x36373301, - 0xe5823637, 0x322a0a83, 0x14151617, 0x012b0607, 0x0a893307, 0xfa82fd82, 0x013f2624, 0x0a890723, 0x2627222a, 0x36373435, 0x2337013b, 0x36230a89, - 0x821f3637, 0x23372d3a, 0x07070eb5, 0x0b5f0a01, 0x0d0b0a03, 0x02220a82, 0x92853a09, 0x87154521, 0xa01a8908, 0x15062625, 0x015f155f, 0x214b83a0, - 0x4d82453b, 0x09840120, 0x20050641, 0x89068580, 0x21098216, 0x20960208, 0x8080a03a, 0x0f000100, 0x3001c0ff, 0x6f00c001, 0x32130000, 0x1d163117, - 0x16333201, 0x1721ff83, 0x21df8716, 0x09832627, 0x1f211383, 0x821a8a01, 0x14152314, 0xf0830607, 0x30013d29, 0x23313023, 0x84272631, 0x07424101, - 0x83161721, 0x21138309, 0x1a8a012f, 0x33081482, 0x36373435, 0x090ea033, 0x09030209, 0x0d0b1211, 0x04030706, 0x080d0b0b, 0x310a0f10, 0x02021a1d, - 0x190a0303, 0x18160330, 0x0e161417, 0x1106060c, 0x18141912, 0x0134db85, 0x1a191301, 0x05050c15, 0x0c0b0606, 0x1516100d, 0x191b3110, 0x31273085, - 0x18181602, 0x820d1713, 0x13122430, 0x82161419, 0xc0012130, 0x24200482, 0x02204e82, 0x0d235e83, 0x82020607, 0x07013a0b, 0x0f110b0c, 0x0f080605, - 0x0806010b, 0x1a0d0d08, 0x131d201b, 0x03080a13, 0x05974121, 0x03232008, 0x06090707, 0x0c0d0c0c, 0x07050504, 0x06030606, 0x10120b0b, 0x0f070605, - 0x0905010c, 0x850e0c08, 0x08092330, 0x30822302, 0x00820020, 0x03820320, 0x80010030, 0x13008001, 0x37002500, 0x36010000, 0xa7423135, 0x06012205, - 0x05bf4215, 0x26070133, 0x27263127, 0x07060706, 0x17161716, 0x37363736, 0x28119101, 0x0a090977, 0xfe0a0d0d, 0x2a0785c0, 0x01f74001, 0x1b1b1212, - 0x88011212, 0x90002007, 0x83492011, 0x09092332, 0x0785c0fe, 0x09400122, 0x4082308c, 0x8f00ff21, 0x01002b11, 0xe0ff0000, 0xa0018001, 0xfb413d00, - 0x05fa4208, 0x0f060723, 0x20a18201, 0x22a98216, 0x41012f06, 0x072909e4, 0x27262706, 0x3f363726, 0x08078501, 0x1f363720, 0x37343501, 0x0ec03336, - 0x0b700909, 0x07070c0d, 0x720c0303, 0x03030b73, 0x0d0c0806, 0xb241700b, 0x0c6f2105, 0x72251987, 0x0703030c, 0x21198607, 0x1e82a001, 0x83438821, - 0x223a8232, 0x82454408, 0x830c2018, 0x8743213a, 0x21058641, 0x1b864287, 0x83450721, 0x830b201b, 0x8843213c, 0x00201b82, 0x1028bb82, 0xb001f0ff, - 0x29009001, 0x29440c82, 0x011d2a07, 0x06072223, 0x16171415, 0x44b5823b, 0x3d2e0534, 0x37323301, 0x27343536, 0x35012b26, 0x91850001, 0x60859020, - 0x0d8d9020, 0x94700121, 0x44248616, 0x2308062f, 0x00a00140, 0x00270013, 0x37361300, 0x16373631, 0x15171617, 0x07060706, 0x27262726, 0x07063735, - 0x15070631, 0x2007de41, 0x28148335, 0x2d2d0200, 0x2d2d4444, 0x28078702, 0x1b1b29a0, 0x1b1b0101, 0x21078729, 0x1e870001, 0x08888020, 0x20836020, - 0x21878020, 0x00200884, 0xb3410082, 0x82002005, 0x82242083, 0x215e8281, 0x7c82010f, 0x70821720, 0x11013f22, 0x0220fc88, 0x1130f188, 0x111001a0, - 0x020b6010, 0x0d080703, 0x402e0c0c, 0x6021e185, 0x27078560, 0x13800140, 0x400a0909, 0x23831b83, 0xdcfe1f22, 0x210b4f45, 0x73896001, 0x2a24f783, - 0x22130000, 0xe3447182, 0x013f2105, 0x0622fe85, 0x1e45010f, 0x21232107, 0x17839282, 0x27240682, 0x1e18228f, 0x2a058f42, 0x3e3c2b1f, 0x01022928, - 0x85b38929, 0x00ff3077, 0x0e070915, 0x010117bf, 0x01221717, 0x421f1860, 0x1e2905ec, 0x2902012a, 0x2b3c3e28, 0x29858588, 0x10131301, 0x222218be, - 0xf7821717, 0x00010023, 0x06af4240, 0x00003929, 0x31373413, 0x82013b36, 0x827d82f8, 0x06172405, 0x83070607, 0x012f2297, 0x057e4426, 0x1c821f20, - 0x82363321, 0x208b830b, 0x84978423, 0x824020b7, 0x15f0385b, 0x840f0709, 0x27263a16, 0x26270101, 0x1a204f3a, 0x05020f1b, 0x820c0404, 0x01072d00, - 0x1f4f1d0e, 0x01011414, 0x681f1414, 0x9e202884, 0x0121b582, 0x23048380, 0x780f1513, 0x39833183, 0x1d101122, 0x07203083, 0x04213783, 0x842e8419, - 0x82238336, 0x085f4363, 0x2f009f22, 0x3622af82, 0x83823127, 0x0321a482, 0x189e4206, 0x25053044, 0x23011d06, 0x5583bd37, 0x0c0c0d29, 0x09078006, - 0x41e0110a, 0x2020050f, 0x20053d41, 0x230d8520, 0x72016bae, 0x29832183, 0x10f0fe25, 0x85500f0f, 0x4250201e, 0xe2200dd5, 0x200dc341, 0x208b8336, - 0x0acf4637, 0x3d413320, 0x27222822, 0x21013f26, 0x85c01906, 0x15a52261, 0x073a4172, 0x181f5325, 0x41050d19, 0x0424073a, 0x1f53190b, 0x29063a41, - 0x090a0f98, 0x86012102, 0x8f850218, 0x37417020, 0x0f102707, 0x0c0c091a, 0x3483070c, 0x41150821, 0x0b230837, 0x43b00f0c, 0x21220a63, 0x35413300, - 0x010f2b0a, 0x15140706, 0x31301514, 0x5d433130, 0x27262507, 0x07372726, 0x43088543, 0xe82a0784, 0x0a010109, 0x090c0d0b, 0x72432591, 0x2a022508, - 0xa83f402b, 0x250b7343, 0x011b1b29, 0x26836b01, 0xac262e83, 0x0101392b, 0x7d430201, 0x2c422507, 0xeb4b052d, 0x410fa643, 0x19200d47, 0x34259d82, - 0x33363137, 0x218f8221, 0x0a480307, 0x13372706, 0x26272223, 0xf2820035, 0x12000127, 0xe008080a, 0x25ea8208, 0x0603030c, 0x4442c8c4, 0x100f2408, - 0x8380fe10, 0x0d072513, 0x50010c0c, 0x00312b82, 0xff000003, 0x014001e0, 0x001f00a0, 0x0058003c, 0x05194600, 0x2c462320, 0x20058205, 0x26658215, - 0x37363317, 0x82343736, 0x373622f6, 0x09b64107, 0x10842620, 0x33373626, 0x31303130, 0x35260484, 0x30013930, 0x0f832331, 0xe5411c88, 0x30012f07, - 0x36252401, 0x24253620, 0x18230101, 0x0d830e0e, 0x0d834020, 0x180e0e26, 0x10800123, 0x20072646, 0x22088740, 0x87202010, 0x2008880a, 0x823f8501, - 0x24352448, 0x881b1a12, 0x1b20260d, 0x3524121a, 0x0f9f4680, 0x108f4020, 0x230ae741, 0x002d0011, 0x20057b49, 0x07ac4317, 0x0726ee82, 0x31272617, - 0x11832726, 0x1424b883, 0x010f0615, 0x20086d49, 0x0fc84140, 0x2b415823, 0x08eb412a, 0x9124032d, 0x0b0d0c09, 0x0801010a, 0x41000140, 0xa0240fc4, - 0x422c2d05, 0x2407e741, 0x2a370404, 0x202882ac, 0x20308309, 0x06df414b, 0x01000027, 0x007f017f, 0x27078219, 0x06310716, 0x16010d07, 0x20060a49, - 0x3e908325, 0x16173625, 0x057d0117, 0xfe0c0404, 0x0c0601fa, 0x07050404, 0xfe0c0c0c, 0x010111c0, 0x82400111, 0x0107220a, 0x2105836e, 0x17838383, - 0xa0251f83, 0x0a13130a, 0x823183a0, 0x001026f7, 0x01b00140, 0x06434640, 0x61822220, 0x17141525, 0x45213316, 0x232206b2, 0x13921521, 0x090e3022, - 0x0e210082, 0x06b64501, 0x8fa0fe21, 0x4001210f, 0x200bb745, 0x210c8bc0, 0xd8840100, 0xd3858020, 0x17061326, 0x0d171631, 0x2b073546, 0x37362537, - 0x26252726, 0x03070607, 0x0123a083, 0x83f9fe07, 0x21ba83b2, 0xd2834001, 0x9ec0fe21, 0x0acb41d2, 0x45003325, 0x85130000, 0x05184abf, 0x3736352d, - 0x16333736, 0x14171617, 0x480f0607, 0x34360a4a, 0x013f3637, 0x35363736, 0x27262726, 0x27221323, 0x34352631, 0x48463637, 0x82e98608, 0x1b012ce7, - 0x3661291b, 0x16012424, 0x853f2516, 0x0b0b2cd8, 0x0b123f13, 0x1211010b, 0x4b30611b, 0x0e4c0cf3, 0x1b292d09, 0x2401011b, 0x20283624, 0x12190f1f, - 0x2f052f41, 0x10101412, 0x0f081808, 0x121b1410, 0x80fe0111, 0x840c0e4c, 0x02c030c7, 0x00c00100, 0x005d004b, 0x07060100, 0x83070631, 0x06fb4bba, - 0xc24a2320, 0x82362005, 0x05f846d1, 0x4708f947, 0xac4205fd, 0x21c28405, 0xf249021d, 0x3d362205, 0x42348301, 0xf84905cc, 0x5200280c, 0x02023636, - 0x85523636, 0x39482b99, 0x0122223a, 0x3a222201, 0x0b864839, 0x291b1b29, 0x33241c2d, 0x82242536, 0x362525c7, 0x0d08202b, 0x8308e84c, 0x10544338, - 0x83800121, 0x41578316, 0x4d8c0525, 0x20275984, 0x011b1b29, 0x84212101, 0x21588450, 0x2b820817, 0x57465020, 0x203b8307, 0x10274ac0, 0x2000023f, - 0xa001e0ff, 0x1b00a001, 0x00001f00, 0x06272613, 0x06070307, 0x16171617, 0x013f3637, 0x3b088533, 0x012f3637, 0x37231303, 0x1509fe17, 0x28780815, - 0x0d050405, 0x060c0c0c, 0x0520c61f, 0x0d320782, 0x28040405, 0x48902a78, 0x138c0148, 0xfe130101, 0x158260e0, 0x82040621, 0x4c4c2125, 0x06201c83, - 0x60280e82, 0xf4fe2001, 0x0000adad, 0x240a0f45, 0x0027001b, 0x2a758234, 0x06310722, 0x1714021d, 0x45013b16, 0x26280905, 0x23272627, 0x33352317, - 0x2306dd44, 0x013b010f, 0x07220a86, 0xd6863523, 0xe983a020, 0x1c111123, 0x23f6841d, 0x60608080, 0x6021e287, 0x08d14460, 0xa0018034, 0xc00e0909, - 0x09090ec0, 0x36252401, 0x111d1d23, 0x38833022, 0xcd44c020, 0x08704108, 0x47008021, 0xa02208db, 0x0c822b00, 0x31232622, 0x2106774a, 0xc3423233, - 0x4b22200a, 0xd5420725, 0x27222908, 0x3c314901, 0x2f2f313c, 0x0a2f0583, 0x0a090d0d, 0x5656440a, 0x0e0f2c44, 0x832c0f0e, 0x0a0a2609, 0x0a0d0d09, - 0x21218301, 0x05824040, 0x23051849, 0x392d4141, 0x2c290082, 0x0c0a4242, 0x09090a0d, 0x05bb4e00, 0x0023b482, 0x49240018, 0x17240b0d, 0x07061716, - 0x23070b49, 0x11171135, 0x20090249, 0x2de08200, 0x33323f80, 0x01011e1d, 0x32331d1e, 0xec82803f, 0x45604021, 0x6020070c, 0x8405e148, 0x82258519, - 0x8001242f, 0x4ac0fe20, 0x002007b8, 0x4021f787, 0x20f78401, 0x08934113, 0x2208be44, 0x4b35012b, 0x0a870a6e, 0x41212321, 0x0121068a, 0x05c24200, - 0xc044e020, 0xe0a02106, 0xff210f85, 0x097e4100, 0x200cc94e, 0x410d8580, 0x7783066f, 0x0b422520, 0x4b60830b, 0x71900ce0, 0x6b9d5f82, 0x6f8ca020, - 0x2009e347, 0x20e382c0, 0x446b8239, 0x36220805, 0xdc4f3637, 0x1732230a, 0x68411516, 0x10154405, 0x2006364f, 0x075841e0, 0x2b2b3b24, 0xe7857d0c, - 0x7b418a83, 0x0b874105, 0x0a3d582d, 0x0a090101, 0x2c0a0d0c, 0x4160013f, 0x0123076d, 0x45382324, 0x2e8b08c7, 0x02250b85, 0x0d0d0937, 0x2138830a, - 0x8f420128, 0x0029240b, 0x44152500, 0x0221077d, 0x052a5134, 0x21011d22, 0x51083551, 0x3d22074d, 0x35462101, 0x4dff200d, 0x7485061c, 0xc0000122, - 0x4106ed49, 0x802007ac, 0x20065051, 0x200786fe, 0x0c0f42c0, 0xf9452a20, 0x16172208, 0x098b4c3b, 0x200a1942, 0x08194211, 0x0e420220, 0x07864c06, - 0x87071642, 0x4380200f, 0x0e23058d, 0x46fe0909, 0xaf870cca, 0x200b8742, 0x250c8225, 0x16311732, 0x854d1115, 0x06474608, 0x4a011d21, 0x11200729, - 0x01201183, 0x5c417483, 0x4de38607, 0x0d820684, 0x82a00121, 0x4dff2004, 0xa0860888, 0x82053045, 0x8ca18425, 0x4f2b20ef, 0x0f210ae3, 0x095d4102, - 0x21087b41, 0x18453701, 0x01372a09, 0x0a0a0937, 0x9b0a0d0c, 0x08d2412e, 0x412edd82, 0x0d0c0885, 0x03020b0b, 0x01898c08, 0x1f820a6a, 0xa00a0924, - 0x2b42b92f, 0xf8fe2205, 0x27088578, 0x0bc0436b, 0x08080203, 0xcb212a82, 0x2083848d, 0x062b4a20, 0xb74f1920, 0x11152106, 0x2309cf4b, 0x35262722, - 0x4020ef84, 0xc1413d82, 0x84488507, 0x42fe20e3, 0x878206f0, 0x82800121, 0x00002517, 0xff000009, 0x08050753, 0x11000a26, 0x1f001800, 0x2f002a00, - 0x39003400, 0x00003e00, 0x31171437, 0x37323316, 0x13233536, 0x06072637, 0x07133307, 0x27280f83, 0x27263313, 0x03170726, 0x21331f89, 0x33112311, - 0x03371303, 0x27011b07, 0x11131703, 0x42231133, 0x40350652, 0x160e1b20, 0xc0200116, 0x11110a1b, 0x20c01b0a, 0x0e161601, 0x06c74c1b, 0xc0fe402a, - 0xc03b4040, 0xf636c036, 0x85220483, 0x25444040, 0x80013306, 0x08051212, 0x12e0fe17, 0x01120e0e, 0x05081720, 0x7c421212, 0x80012d07, 0x6e0180fe, - 0x0124e0fe, 0xe0fe2420, 0x24220484, 0x13823201, 0x07008022, 0x8508d750, 0x002326cf, 0x002d0028, 0x26cb9332, 0x37160701, 0x54233736, 0x3321096a, - 0x23c48401, 0x07013701, 0xbf880984, 0x150f1927, 0x01200114, 0x8b078540, 0x013928b9, 0xc0fe3240, 0x8a790132, 0x101428b7, 0xfe160806, 0x820f1580, - 0x43012006, 0xb3840836, 0x80fe6b28, 0x29800129, 0x0d8395fe, 0x220a8354, 0x442c0011, 0x26230f6d, 0x4c272627, 0x685005df, 0x07db4506, 0x26211883, - 0x08604427, 0x20076844, 0x115a44e0, 0x44052b44, 0x83500954, 0x11504408, 0x00213c85, 0x0acf4900, 0x28001c22, 0x52479382, 0x080a520a, 0x37340425, - 0x46133336, 0x1522095b, 0x48462020, 0x08e24209, 0x29602022, 0x2206ea50, 0x87a00160, 0x06d9497a, 0x20206028, 0x09090ee0, 0xcc4b00ff, 0x00c02107, - 0x02370082, 0xc0ff2000, 0xa001e001, 0x3c001b00, 0x16370000, 0x17163117, 0x4f273736, 0x362108d3, 0x24fc8337, 0x07060706, 0x05754905, 0x49272621, - 0x06210b90, 0x06ab4b07, 0x852f2621, 0x232c2df4, 0x01010848, 0x0d0d0a0b, 0x011f4709, 0x22085b45, 0x41443519, 0x02221101, 0x2b873035, 0x44c02e29, - 0x01022d2d, 0x820b5614, 0x22148338, 0x41372a55, 0xbd210766, 0x063f4722, 0x5622418b, 0x6383393d, 0x0a212a82, 0x0c434138, 0x30002422, 0x4412b146, - 0xa150091a, 0x0ac64808, 0x7e440720, 0x0e260806, 0x675f0909, 0x0b0d0c08, 0x0802030b, 0x18192854, 0x29280201, 0x7090903d, 0x16172270, 0x17160101, - 0x09a00122, 0xa0450e09, 0x44922008, 0x782a0727, 0x2e232411, 0x0228293d, 0x2583a0e0, 0x002c2d83, 0x1f000100, 0x5f01e0ff, 0x62009f01, 0x36529182, - 0x30172306, 0xef551631, 0x0139210c, 0x21055d42, 0x07822326, 0x21054951, 0x0f563217, 0x07cc5505, 0x23302722, 0x27201d84, 0x17212183, 0x062f5727, - 0x83073054, 0x27390815, 0x07260737, 0x03041e83, 0x1d0d0405, 0x19010238, 0x18171a1b, 0x0e060d0e, 0x1345373a, 0x06131918, 0x0d010204, 0x05040606, - 0x070d0c0b, 0x13010109, 0x380d1414, 0x02051d21, 0x212f8304, 0x30820101, 0x83161b21, 0x20202130, 0x0b223283, 0x27821615, 0x03063c08, 0x0d0b0b04, - 0x0a14140a, 0x20390505, 0x1b0d5701, 0x090a0914, 0x07010e12, 0x100f0a09, 0x40241e1d, 0x030c1618, 0x02070708, 0x0c050101, 0x060d0d0b, 0x03020405, - 0x06060701, 0x830e0802, 0x0a09212c, 0x05282c8a, 0x16174005, 0x0405010b, 0x0d2c5584, 0x03030607, 0x1f020403, 0x000f081f, 0x2408e745, 0x00a00180, - 0x0dd7461f, 0x46088a58, 0xaa4810cc, 0x06ed4306, 0x01a0a022, 0x4d066845, 0xcb4809ac, 0x205b830c, 0x08775525, 0x46083154, 0xcd4608bb, 0x4a20200c, - 0x36230696, 0x85012425, 0x0aea4b45, 0xe0206884, 0x01241a83, 0xe0362524, 0x2005eb45, 0x075f4ce0, 0x00220f83, 0xc34b0100, 0x009f2206, 0x26738219, - 0x16311736, 0x41011b17, 0x073106b8, 0x26070603, 0x37260327, 0x0c343736, 0x82060c0c, 0x07b04b83, 0x1509a02b, 0x05a00815, 0x010d0504, 0x2405839d, - 0x3901c7fe, 0x8308820d, 0x80fe271f, 0x13010113, 0x31838001, 0x24068f47, 0xa0013f02, 0x88d38300, 0x27658d5f, 0x0b272623, 0x22070601, 0x22086b85, - 0x0c0b0d15, 0x08556e05, 0x55081717, 0x0b0c056e, 0x05050d0d, 0x16099004, 0x51510717, 0x09161608, 0x82050490, 0x839e2077, 0xdafe2b05, 0x01162401, - 0xdcfe1601, 0x25832601, 0xfe282d83, 0x15021580, 0xe9fe1701, 0x80200683, 0xb7414b83, 0x0029230d, 0x73530100, 0x010f2307, 0xc4582627, 0x011f2105, - 0x4309b84c, 0x37260983, 0x01087901, 0x82820a01, 0x8787092c, 0x0a0d0d09, 0x0801010b, 0x0c448f8f, 0x21138407, 0x13840a0b, 0x446b0121, 0xa2210711, - 0x252583a2, 0x0b0d0d09, 0xfa43acab, 0xa3a32107, 0x13822583, 0xabac0a22, 0x4206b34a, 0x26280743, 0x07263127, 0x1f060706, 0x210a9956, 0x97853637, - 0x3a299f82, 0x0c0c0d08, 0x0802030a, 0x05df419a, 0x02089a2c, 0x0c0c0a03, 0x8686080d, 0x17839301, 0xd7211f83, 0x05dc4196, 0x83d79621, 0x21218319, - 0xfb49bcbc, 0x521f200b, 0x95550c93, 0x0137210d, 0x27099952, 0x08091440, 0xfcebfe0c, 0xfe214d85, 0x210e83c0, 0x0e831501, 0x82800121, 0x11012513, - 0xb5fe1013, 0x0b828785, 0x4c010f22, 0x00230b82, 0x82000200, 0x00022700, 0x22008001, 0x69825200, 0x4c271521, 0x3f2507f4, 0x1f013b01, 0x07c15001, - 0x0c490720, 0x22072f08, 0x1d063107, 0x16171401, 0x1716013b, 0xa5483736, 0x830d8305, 0x8226202b, 0x27232efc, 0x35012b26, 0x23150727, 0x23010f22, - 0x071b46c0, 0x01011f23, 0x850b871f, 0x06c44b87, 0x3b216425, 0x8524213b, 0x824020b7, 0x2d023306, 0x1720442d, 0x20130d09, 0x090d1320, 0x60016017, - 0x30850c0c, 0x04040c22, 0x0c200987, 0xa0202f85, 0x33831882, 0x02022e22, 0x2c098549, 0x022d2d44, 0x042c0917, 0x17092c04, 0x05774e00, 0x24050350, - 0x00530023, 0x089f4368, 0x03503720, 0x012f2607, 0x010f012b, 0x05ee5b22, 0x35173327, 0x33363734, 0x058b5607, 0x3b36372c, 0x17373501, 0x1f323315, - 0xf2503301, 0x852b2006, 0x24e5832a, 0x27260706, 0x23388223, 0x3605013d, 0x16222283, 0x3d5b011d, 0x3f342308, 0xa482e001, 0xe020fe96, 0x6020b882, - 0x2020e489, 0xcb86b383, 0x24250682, 0x213b3b21, 0x273d8264, 0x0803b501, 0x03120308, 0x0323ff85, 0x82c00112, 0x160e4109, 0xf6876d83, 0x2d2d0223, - 0x08595044, 0x27061c41, 0x0707c740, 0x0107062b, 0x013c1785, 0x002b0607, 0x00000200, 0x4002c0ff, 0x2c00c001, 0x00003900, 0x31070625, 0x17230706, - 0x2b080d5e, 0x27262335, 0x37343526, 0x32173625, 0x2305175a, 0x1732013b, 0x1722e682, 0x2c820716, 0x17161529, 0x35373633, 0x82232726, 0x09092f43, - 0x0101200d, 0xfe1b1212, 0x12121bbf, 0x67822001, 0x00010a27, 0x090c0b0b, 0x83b4826b, 0x0c35290e, 0x16b8fe01, 0x50160202, 0xc0250484, 0x0109090d, - 0x07b84fa0, 0x8201a021, 0x0a0e2740, 0x070109e0, 0x3b82255e, 0x79243382, 0x3f0d0b2e, 0x16202d87, 0x0021ab82, 0x2eaf8805, 0x0029001c, 0x0050003e, - 0x01000061, 0x82313336, 0x0716219d, 0x1520ba82, 0xb483ba83, 0xba842720, 0xe6823f20, 0xa5890720, 0x17160523, 0x48028431, 0x26230767, 0x52373627, - 0x148211a8, 0x47057150, 0x21080636, 0x0a3a0127, 0xd00a0c0c, 0x1509070f, 0x0e0d0120, 0x1f0eba14, 0x190a2b1e, 0xd00e061b, 0x01010f0a, 0x0484400f, - 0x41e8fe29, 0x1f1f3434, 0x82160201, 0x343422de, 0x2105824e, 0x85410816, 0x09092808, 0x1602200e, 0x8427263a, 0x19013e1f, 0x02162519, 0x0909b701, - 0x13140fc0, 0x0e147001, 0x2831010d, 0x0d061a27, 0xc00f1309, 0x285287b8, 0x0140010f, 0x34341f1f, 0x234b8341, 0x0234344e, 0xd44d5b83, 0x8288200d, - 0x26272246, 0x2220833a, 0x82191925, 0x8200205c, 0x00043000, 0x01c0ff00, 0x00c001ff, 0x003f001b, 0x5a6e0053, 0xdc820cdb, 0x2308df5a, 0x37363734, - 0x2307e35a, 0x31301530, 0x830bd152, 0x313024fe, 0x83353130, 0x36112c08, 0x37363137, 0x26352726, 0x82070627, 0x2344823e, 0x11232517, 0x22068d4e, - 0x82231115, 0x011f2f39, 0x3f323316, 0x26273601, 0x0d016027, 0xd583140e, 0x110d0222, 0x3307af48, 0x30010e11, 0x01201f30, 0x011d0101, 0x3d292802, - 0x0228293d, 0x01240a82, 0x301f2001, 0x1e262a84, 0x010f0f01, 0x3a83021e, 0x4b500121, 0x20300690, 0x0e070915, 0x0d0d0a40, 0x080e400a, 0x50011508, - 0x21832983, 0x101aa524, 0x34491c15, 0x151c2507, 0x70a51a10, 0xa4254883, 0x25020101, 0x835a8333, 0x25332462, 0x83a50102, 0x84fe2073, 0x0c212990, - 0x01010f33, 0x210c330f, 0x40214583, 0x06944901, 0x01e0fe2d, 0x40101313, 0x10400909, 0x41011313, 0x0221073f, 0x5f3f4100, 0x36330130, 0x012f3637, - 0x0f222326, 0x16170601, 0x16613317, 0x403f4109, 0x38413020, 0x064e410e, 0x253f3f41, 0x01010fd3, 0x3f41d30f, 0x00012105, 0x200b3641, 0x06a648fe, - 0x20012508, 0x00080000, 0x02e0ff00, 0x00a00180, 0x002e0025, 0x00420039, 0x0058004d, 0x007c006a, 0x07061300, 0x11070631, 0x8308fb58, 0x5c3b2008, - 0x352509dd, 0x27262726, 0x05815d21, 0x37363525, 0x82072217, 0x17162505, 0x17232615, 0x27210886, 0x230e8237, 0x27260706, 0x17210f82, 0x22088615, - 0x42011716, 0x8d5f069f, 0x56352009, 0x30201081, 0x2b073b42, 0x1f1e0711, 0x1e1f2b2b, 0x7008c907, 0x3705a143, 0x0e0d0140, 0x2040fe14, 0x0f11010f, - 0x08600f01, 0x0f0f0108, 0x50080801, 0x0f220683, 0xf5837011, 0x70200383, 0x03830f83, 0x42d0fe21, 0x0787077a, 0x210be943, 0x4e83a001, 0x8300ff21, - 0x1a2a276f, 0x1b01011b, 0xc3452a1a, 0x42f02005, 0x0f290578, 0x980c0983, 0x0180010f, 0x23558371, 0x83130171, 0x98260783, 0x0193090c, 0x0a83c00f, - 0x10200482, 0x01230887, 0x4390fe0f, 0x07870743, 0x0f583020, 0x0726080c, 0xc1ff0000, 0xbf017f02, 0x80007c00, 0x9b009200, 0x1c011801, 0x00002e01, - 0x010f2601, 0x07060722, 0x06072627, 0x0791011f, 0x14201187, 0x06332382, 0x15071415, 0x17220239, 0x27311732, 0x06071514, 0x823f1617, 0x2c07866e, - 0x37161737, 0x36012f36, 0x3734013f, 0x870b8635, 0x36372113, 0x27230987, 0x82273637, 0x83262072, 0x27032407, 0x41371731, 0x37291083, 0x27260706, - 0x17163736, 0x205f8413, 0x883b8932, 0x875d874d, 0x82342055, 0x35362923, 0x013d3734, 0x27320139, 0x17225182, 0x678a3534, 0xe0886f83, 0x07142323, - 0x87ec8f31, 0x170621e4, 0x3728d388, 0x07172731, 0x36313734, 0x080ac755, 0x0135263f, 0x03061031, 0x0d0d0b0c, 0x0f100804, 0x14190405, 0x0d0f0a05, - 0x10140608, 0x090b0e0a, 0x02020b0c, 0x1007070b, 0x090e0408, 0x01020301, 0x05050101, 0x0f0b1e15, 0x0a100603, 0x0303180d, 0x283b820f, 0x0d08151c, - 0x080a0a0d, 0x311e820a, 0x0607100a, 0x1a0b090f, 0x0f100602, 0x09080303, 0x1b850c0e, 0x8a010e21, 0x25c72333, 0x38421625, 0x4260200b, 0x6320075f, - 0x8b9a4f84, 0xcd0a0321, 0x25f8238b, 0x2860bb25, 0xbf35080c, 0x020b0f03, 0x0f0a0403, 0x09100805, 0x0d070d0a, 0x090f0a08, 0x09081211, 0x090b0e0c, - 0x10120304, 0x100e0403, 0x02010308, 0x0305090e, 0x01020101, 0x06060302, 0x24ec8403, 0x100a0d18, 0x2f3e8206, 0x0a080e01, 0x080d0d0a, 0x02011410, - 0x05040105, 0x12232f83, 0x820f0611, 0x020b2425, 0x85070402, 0x1b16211d, 0x19213585, 0x2435820c, 0x0404edfe, 0x43878b14, 0xfe21087a, 0xa35384a7, - 0x0f012192, 0x01209284, 0x938d9582, 0x0b100422, 0x02249389, 0x0f050406, 0x9189c182, 0x90080321, 0x04f92291, 0x06596204, 0x3505a641, 0x00040000, - 0x02c1ff20, 0x00bf011f, 0x0082007e, 0x009d0094, 0xf4420100, 0x22674305, 0x06150622, 0x14242582, 0x15313015, 0x22260182, 0x31171633, 0x6a430627, - 0x35372217, 0x246a4336, 0x17310123, 0x05a66227, 0x24071a5e, 0x17161716, 0x05664337, 0x0107062a, 0x161404c7, 0x0f0f0408, 0x5608e882, 0x0714150a, - 0x071b2105, 0x0a11130e, 0x0e141b08, 0x100c1012, 0x0e03030f, 0x0a150a09, 0x010c1306, 0x01010205, 0x1c070602, 0x140f0127, 0x0d160804, 0x04042011, - 0x04081515, 0x110a1d25, 0x0b0e0e11, 0x0201030e, 0x070a150d, 0x230e0b14, 0x14160802, 0x0c0a0404, 0x840b0f14, 0x8913201b, 0xb5fe2433, 0x48743434, - 0x07870701, 0x02162024, 0x03831602, 0x82a10121, 0x0f14388e, 0x05040401, 0x0a07140d, 0x120e0c15, 0x0e0a110a, 0x19160c13, 0x82100c0b, 0x04052892, - 0x06041618, 0x820a1513, 0x0c13258e, 0x02010407, 0x03229683, 0x92820807, 0x20227282, 0x40850d11, 0x0e0b1335, 0x0a11110e, 0x02011b16, 0x07050107, - 0x050b1513, 0x82081717, 0x821520b8, 0x0b0421d3, 0x1e271d85, 0x15080424, 0x82040415, 0xb4fe2635, 0x142b0505, 0x05ca680e, 0x58200787, 0x16219485, - 0x0c2b4c02, 0x38001b29, 0x00004500, 0x51163313, 0x17200528, 0x25052844, 0x2f21020f, 0x224c2601, 0x23172d05, 0x17160706, 0x36332133, 0x23272637, - 0x2a05125d, 0x36352115, 0x33373637, 0x4b152107, 0x23080944, 0x0e1d735d, 0x0e08080d, 0x0c551d0d, 0x24020807, 0x1000ff1a, 0x0808012f, 0x0f100e0d, - 0x0f01010f, 0x30000130, 0x0d220783, 0x94831419, 0x0100fe28, 0x1f140e0d, 0x0784024f, 0x8460fe21, 0x01c033a8, 0x13130e0e, 0x08010e0e, 0x05050c07, - 0xbd40405b, 0x53820303, 0x4440e021, 0x40200730, 0x70213483, 0x202c8370, 0x08e746c0, 0xd3883020, 0xc0014028, 0x4b001c00, 0xd3825200, 0xb8821520, - 0xb9821520, 0x4b06184b, 0x352006c2, 0x0632c482, 0x37360107, 0x26273631, 0x010f2627, 0x36272623, 0x034e3b37, 0x032b2207, 0x21128222, 0xfc4d0722, - 0x32023606, 0x3325013f, 0x30312231, 0x1638e031, 0x38160202, 0x16301602, 0x2b0a8a02, 0x030d5001, 0x100a0a02, 0x79770e10, 0x1021dd83, 0x05414340, - 0x4e104025, 0x4b2d232d, 0xa02a06e2, 0x7f242ca1, 0x010191fe, 0x4090a801, 0xfe254b84, 0x10100a90, 0x2049830e, 0x44e98358, 0x1c210519, 0x062b4d24, - 0x085e1a2a, 0x00000400, 0x8002c0ff, 0x5029df82, 0x82006900, 0x00009b00, 0x05f56801, 0x36171624, 0x7d513537, 0x2a0d8d08, 0x06020f06, 0x06171607, - 0x41262307, 0x322507d0, 0x3534011f, 0x05695734, 0x16173224, 0x3188011d, 0x23260323, 0x312f8222, 0x021f1415, 0x3f323316, 0x34353602, 0x1617032f, - 0x14821415, 0x2f222326, 0x34352602, 0x33201482, 0x01204082, 0xfa831595, 0x0989be89, 0x09061334, 0x02021d1f, 0x13402f1d, 0x0c71435d, 0x10100c0b, - 0xe3853c0d, 0x07222486, 0x02820702, 0x07071923, 0x2a098a19, 0x080830d1, 0x08020e30, 0x890e0208, 0xe0012109, 0xc0201594, 0xd0254e82, 0x0f01010f, - 0x057e41b0, 0x0b83b020, 0x2d06f448, 0x1f1408c3, 0x1f1f0a09, 0x0101260a, 0x7c836b3f, 0x3a0b0c24, 0x00820102, 0x2c8a1020, 0x0b82d020, 0x8db9fe21, - 0x20958581, 0x83838fcf, 0xe0fe2181, 0x00251593, 0x00000600, 0x05874fff, 0x2300112d, 0x40003500, 0xb1006f00, 0x48010000, 0x27621021, 0x0617560d, - 0x905f3120, 0x17162f0b, 0x010f1413, 0x36372326, 0x010f1617, 0x1c820706, 0x1415142d, 0x26272615, 0x3736013d, 0x86151716, 0x16172318, 0x2285013f, - 0x02200987, 0x06262d82, 0x2726022b, 0x2d823536, 0x31342722, 0x35250182, 0x37363534, 0x2a298636, 0x06171633, 0x07062307, 0x95013b16, 0x54012009, - 0x2041060d, 0x088d4c05, 0x55441420, 0xb0fe2106, 0x080ff644, 0x1201e521, 0x0c151b11, 0xad071114, 0x01202037, 0x0211111e, 0x74021616, 0x0912140d, - 0x06060340, 0x820c5005, 0x03502509, 0x40040706, 0x25081383, 0x09015a2c, 0x01021302, 0x1b2207c9, 0x12110105, 0x1d1d011c, 0x09155432, 0xcf361404, - 0x16020216, 0x01010780, 0x0983a007, 0x0983a020, 0x13888020, 0x02166023, 0x06b05401, 0x20054142, 0x20898fa0, 0x0ffa44f0, 0x01320138, 0x23141f01, - 0x120c0912, 0x2c2c1230, 0x01010139, 0x1f1f1402, 0x54837b24, 0x12c9512b, 0x6f140d09, 0x06030407, 0x2009838b, 0x2009838b, 0x2f09836f, 0xe9fe1d4c, - 0x01010314, 0x1e0e0d10, 0x01061515, 0x34280084, 0x1a112828, 0x08161405, 0x0122de84, 0xe5830807, 0x0020068b, 0x02200082, 0x3408ab43, 0x004c0032, - 0x07261300, 0x16011706, 0x012f3637, 0x07012f26, 0x05b64127, 0x26051365, 0x26272635, 0x4d022b27, 0x2728061d, 0x22232637, 0x0727010f, 0x20053465, - 0x4a338217, 0x06820638, 0x0706012b, 0x13271506, 0x02100c0f, 0x2d058350, 0x870d0287, 0x0c4d1a17, 0x150b080b, 0xf4872ab1, 0x01044c3f, 0x1c184804, - 0x1a591b21, 0x1d131252, 0x277e2318, 0x140e0d01, 0x130f5c6c, 0x03090e13, 0x2e068311, 0x8bfe0201, 0x010c0b12, 0x13100cbb, 0x8330fe0f, 0x116a2c05, - 0x15127b0d, 0x0d0a073c, 0x83a3100a, 0x83802030, 0x2f022b50, 0x1549150f, 0x18100742, 0x1084ab63, 0x010e5327, 0x0b090f01, 0x2706830f, 0x25010101, - 0x130d0d02, 0x2e07f342, 0x00c00180, 0x00350027, 0x00500047, 0x9866005d, 0x233521f7, 0x1722ed8e, 0xf96a2327, 0x37322805, 0x05013d36, 0x8d331525, - 0x262529f8, 0x16373627, 0x25070617, 0x2320268a, 0x17850f82, 0x20161241, 0x0f07418b, 0x2937392e, 0x200e0909, 0x0109090e, 0x1ce2fe3e, 0x200e1041, - 0x07fb4c92, 0x86f00121, 0x46602025, 0x28410874, 0xbd802117, 0x210a2041, 0x194e2ca7, 0xfab42306, 0x27419be1, 0x4646200d, 0xe02007bd, 0xe0212286, - 0x3f6d87d0, 0x00000800, 0x7802c0ff, 0x3400c001, 0x4f004600, 0x61005800, 0x73006a00, 0x00007c00, 0x31373637, 0x22068364, 0x6f011f16, 0x152006d0, - 0x2d082b6b, 0x06070601, 0x07142307, 0x22012b06, 0xaf632627, 0x35262205, 0x10687005, 0x26410520, 0x0f062105, 0x0a853082, 0x08853782, 0xa54c3320, - 0x85072007, 0x0706220f, 0x31118727, 0x39390200, 0x34491656, 0x0c030c34, 0x0c0d0a2a, 0xd8461413, 0x12013207, 0x09401b12, 0x0ea00e09, 0x10010909, - 0x010d0c16, 0x0c144e50, 0x00491020, 0x48282007, 0x40200772, 0x80200887, 0x18200887, 0xf6302390, 0x02393956, 0x452d2d01, 0x0c351014, 0x0d0c130f, - 0x2306c94f, 0x0112121b, 0x68275e85, 0x211b151a, 0x4b162221, 0xd5480b36, 0x20508808, 0x87598730, 0x87782007, 0x87482073, 0x065f5311, 0xc0018026, - 0x3d001b00, 0x43067541, 0x36260ba5, 0x34353637, 0x1753012f, 0x06232b05, 0x14072707, 0x17163117, 0x7f421716, 0x33352108, 0x37372382, 0x27222327, - 0x37363526, 0x05150625, 0x07062726, 0x37361716, 0x84373607, 0x011f210a, 0x17200886, 0x350a9f42, 0x0b0c11bf, 0x030c2a0a, 0x4934340c, 0x2b344416, - 0x160c0d27, 0x4b410110, 0x19402606, 0x0a041112, 0x25ec8236, 0xc8fe0c01, 0xb8880215, 0xb8875820, 0x5a4a4020, 0x0ab94308, 0x0c029538, 0x0c0f120c, - 0x46141035, 0x01012d2c, 0x22c52226, 0x151b2121, 0x3541681a, 0x0f012405, 0x82071910, 0x0a102561, 0x563129f6, 0x48204087, 0x20071441, 0x0a164a30, - 0x33066348, 0x00c00100, 0x00250010, 0x00520037, 0x37343700, 0x011d0617, 0x6142e883, 0x27052105, 0x42081867, 0x23230694, 0x42370722, 0x03201074, - 0x4a06204a, 0x0720053c, 0x06290686, 0x012b0607, 0x0ce30900, 0x2b9c8280, 0x012e1001, 0x1cee0301, 0x20443635, 0x24076742, 0x131ace02, 0x0d294e5d, - 0x140e0d2c, 0x0fa010d0, 0x950f0101, 0x06838b0a, 0x0701802d, 0x92151011, 0xa51f21e0, 0x82901813, 0x19492ada, 0x4e4d3d14, 0x23233aad, 0x08404201, - 0x0e060623, 0x0b28424e, 0x90e0fe2c, 0x010d0e14, 0x0f0f0130, 0x04832001, 0x0c140424, 0x0353000c, 0x002c260c, 0x0076006d, 0x22f3827f, 0x43313736, - 0xbe82147a, 0x15230722, 0x200d7143, 0x27148337, 0x07262706, 0x07161706, 0x82075654, 0x16172409, 0x5b173637, 0x0982071c, 0x5e363721, 0x3722050a, - 0x01822726, 0x93700d83, 0x43272005, 0xd044087a, 0x5e002008, 0x144105d0, 0x0c0d2308, 0x74431413, 0x41c02007, 0xf0330638, 0x1502010f, 0x0c0b1315, - 0x09110909, 0x010f1909, 0x84190f01, 0x0b0c250a, 0x02151513, 0x1f83e183, 0x970b0c21, 0x0830431f, 0x9c444820, 0x333e2408, 0x411e1e32, 0x13230942, - 0x56400d0c, 0x654107e2, 0xaf902007, 0x20a68f66, 0x076f4290, 0x01452020, 0x00002208, 0x08ef5603, 0x3e002c26, 0x00004e00, 0x2205b375, 0x70012f36, - 0x222e05fd, 0x011d0607, 0x26232627, 0x15060507, 0xd34b1714, 0x17162905, 0x36373621, 0x21332737, 0x240c706b, 0x0f060706, 0x09bd4101, 0x2307062d, - 0x20022726, 0x0109090d, 0x45350c01, 0x6a2706d9, 0x0b0b0b0a, 0x830afffe, 0x1201250e, 0x41011b12, 0x0121e783, 0x116a7220, 0x1601702e, 0x22402217, - 0x01011617, 0x010fc00f, 0x2106bd57, 0xa242792f, 0x5e252705, 0xe0090107, 0xe1570e0a, 0x0ef5720e, 0x8308f25e, 0x2beb86f1, 0x00c00180, 0x00270022, - 0x13000045, 0x2306d757, 0x07062315, 0x20059c4c, 0x57e08315, 0x13250bdd, 0x23353315, 0x05ab5927, 0x16173225, 0x6133011d, 0x2b21054f, 0x05094f02, - 0xda35332b, 0x0a0c0c0a, 0x1e900ad0, 0x07535712, 0x0e14a02e, 0x1520010d, 0xd00f0709, 0x30c0c086, 0xe020ea82, 0x2020b482, 0x0d238382, 0x4d30140e, - 0x0f2b063b, 0x09b70120, 0x0e09c009, 0x82261501, 0x400f2519, 0x0180010f, 0x70291f82, 0x0f141301, 0x90d9fec0, 0x06214b90, 0x0f01a022, 0x1b834f83, - 0xf3760f20, 0x05e74a05, 0x0f2bc783, 0x97005600, 0xe400db00, 0x4c00ed00, 0x26330793, 0x35072223, 0x33363734, 0x31272617, 0x36350726, 0x5f373637, - 0x173f068b, 0x1d141716, 0x06070601, 0x012f2207, 0x37162726, 0x35361727, 0x35262734, 0x33363534, 0x61363130, 0x2224089a, 0x34272227, 0x1d824483, - 0x27060723, 0x4b318226, 0x0982051d, 0x5c262721, 0x27200581, 0x36205883, 0x32480d83, 0x82162006, 0x3716245e, 0x5d161736, 0x1720052d, 0x06256783, - 0x020f1617, 0x05504106, 0x8a826482, 0x20097861, 0x2b568415, 0x16171415, 0x06151415, 0x06313007, 0x21075f47, 0x01823217, 0x14151422, 0x22059673, - 0x82070637, 0x06d94537, 0x31080684, 0x01373617, 0x09090e40, 0x0d13130d, 0x7d0e0909, 0x0f10110d, 0x1d141301, 0x130c1523, 0x10151414, 0x19010611, - 0x0b0b2619, 0x16142048, 0x0e161611, 0x0082010e, 0x45410220, 0x82022007, 0x0e01230c, 0xae43160e, 0x31ce430d, 0x0b48ef3b, 0x1919260b, 0x10110601, - 0x13141415, 0x1d23150c, 0x0e011314, 0x0f0c1111, 0x2370860f, 0x140e0e0e, 0x0f266e84, 0x1416110f, 0x03467120, 0x07f84308, 0x82c00121, 0x0c7c23bf, - 0xcd827c0c, 0x010dc425, 0x83180902, 0x111d2b43, 0x26271f1e, 0x022c2c2c, 0x61830702, 0x08120324, 0xc8830319, 0x0e131422, 0x02204e82, 0x0d200382, - 0x2005fb58, 0x250b8301, 0x14130f01, 0x6d44e20e, 0x0f064417, 0x29174644, 0x01031245, 0x07261919, 0x78820202, 0x1f272630, 0x011c111e, 0x1d141301, - 0x01020918, 0x61820e0d, 0x02827582, 0xd2820120, 0x0d0e1423, 0x26798701, 0x02100f13, 0x44ab0819, 0x0534135b, 0xc0ff1500, 0xc0016a02, 0x32001100, - 0x64004400, 0x00008300, 0x43059d57, 0x116d053c, 0x05ad6405, 0x1716332a, 0x06010f06, 0x011f1415, 0x820a625b, 0x013f2427, 0x4d070625, 0x07220e9c, - 0x9d492726, 0x011f2505, 0x07060716, 0x3e48308a, 0x15072605, 0x37363533, 0x821d8236, 0x26272452, 0x83233527, 0x012f2922, 0x36013f26, 0xc0171617, - 0x2d0f5a70, 0x171603a6, 0x172b2c20, 0x10400404, 0xee823010, 0x83201421, 0x0c1426e3, 0x0204020c, 0x2e2d8f26, 0x18040490, 0x17202c2a, 0x02040316, - 0x88140c0c, 0x1030312e, 0x60a04010, 0x0c0e0e01, 0x400e0e40, 0x010e0e0c, 0x01210c8c, 0x0f256d80, 0x151fa92f, 0x20020114, 0x12400303, 0x2f121616, - 0x83738349, 0x0774264d, 0x32161212, 0x2e2e8fa9, 0x20030388, 0x15140102, 0x1216321f, 0x87740712, 0x2f49212d, 0x402f3d83, 0x10202028, 0x400b0606, - 0x0a401111, 0x8b100605, 0x0f07220d, 0x09174d00, 0x34001c22, 0x430c1f4c, 0x200808f4, 0x27262723, 0x011f0623, 0x07061727, 0x07011f14, 0x17161506, - 0x013f3233, 0x17060733, 0x013f3633, 0x0a4d4925, 0x49be2908, 0x031f1f1d, 0x1d1f1f03, 0x13096574, 0x28031238, 0x010903c7, 0x011f1f01, 0x082a0d01, - 0x31672b05, 0x12391203, 0xbffe4209, 0x240bc04b, 0x12110195, 0x08d5831c, 0x010fb02c, 0x9c8d1103, 0x020a037c, 0x026e6e02, 0x06010d02, 0x0311ac3a, - 0xfd720f01, 0x03000000, 0xc0ff2200, 0xc001a001, 0x32001c00, 0xad824b00, 0x35331527, 0x011f3233, 0x053f6316, 0x26012f26, 0x2734012b, 0x22200482, - 0x0724a482, 0x06310706, 0x5a06dd5a, 0xc78305ec, 0x33151723, 0x20c78216, 0x05be5923, 0x26232e08, 0x33373627, 0x16373635, 0x3c808017, 0x0a220407, - 0x090a0d0d, 0x21182209, 0x0e09093c, 0x09090e40, 0x1212190b, 0x13021302, 0x1dba1d12, 0x2f078212, 0x19121202, 0x16206396, 0x20160202, 0x02161602, - 0x01270989, 0x052060a0, 0x83090922, 0x17222142, 0x33058d46, 0x10100180, 0x131de01a, 0x14010114, 0x1ae01d13, 0x78011010, 0x4084368e, 0x4820db8f, - 0xf183dbb5, 0x82222321, 0x22ef82e6, 0x45333637, 0xd8ab05dd, 0xd2428b20, 0x12022b07, 0x08050c13, 0x130c0508, 0xd8a60212, 0x1bc82408, 0x0e0f0f0e, - 0x1d1d1a1b, 0x0e06060e, 0x001a1d1d, 0xff0f0004, 0x01f001c3, 0x001c00c0, 0x0066005d, 0x5c00006f, 0x07240671, 0x17061506, 0x20061746, 0x26ac8237, - 0x26273427, 0x4607012f, 0x69461629, 0x09e84b28, 0x28080e46, 0x0707060d, 0x0a11bd06, 0x31d9820b, 0x1a562e2f, 0x2f2e561a, 0x0b011212, 0x0dbd110a, - 0x8f49010f, 0x1f21451d, 0x3c11af49, 0x0303bd01, 0x0f0f0750, 0x45453314, 0x0c2b4241, 0x41422b0c, 0x14334545, 0x50070f0f, 0x1760456d, 0x4927a045, - 0xbf4314a7, 0x01002905, 0x004d00c0, 0x0100005a, 0x2009595a, 0x05154317, 0x5c272621, 0x15220597, 0x0a833523, 0x2105f54b, 0xb34e1716, 0x0a015d09, - 0x56373621, 0x06230551, 0x82070607, 0x3513252f, 0x17161521, 0x2106d449, 0xa3592001, 0x7a1b200c, 0x402b0571, 0x18100f01, 0x02021630, 0x4e073016, - 0x514f0773, 0x01502307, 0x19833807, 0x10183829, 0xc040010f, 0x820140fe, 0x06447534, 0x82099173, 0x07d76955, 0x8318c021, 0x05bd5129, 0x6d8b1820, - 0x60071821, 0x6b8205ba, 0xfec01824, 0x496d20c0, 0x4e002008, 0xff830637, 0x2505db53, 0x00750060, 0x915d1300, 0x5d1f200f, 0x372011a3, 0x08114018, - 0x60078567, 0x3346055a, 0x37362a09, 0x26333736, 0x07062327, 0x05fc5106, 0x11832120, 0x27263526, 0x06052726, 0x4507ce73, 0x2b220825, 0x7845d001, - 0x20078707, 0x0fa84570, 0x0c5f4018, 0x1b1d0129, 0x1b011211, 0x87c0291b, 0x175823ff, 0x0b878001, 0x87400121, 0x09014b09, 0x22084d73, 0x5f01a020, - 0x6a5308a5, 0x46a02007, 0xd7500f8d, 0x05884406, 0x1b2ba026, 0x1f18180b, 0x07835387, 0x83261a21, 0x0d157c7c, 0x448f6020, 0x00040035, 0x01c0ff10, - 0x00c001b0, 0x00440030, 0x0075004f, 0x82221300, 0x05764ffc, 0xb4611520, 0x36372b0d, 0x26273435, 0x010f2223, 0xba712726, 0x1617250a, 0x17163117, - 0x3008f861, 0x36373635, 0x16150737, 0x35373617, 0x07062726, 0x242f8227, 0x3f262706, 0x05f64701, 0x0f141525, 0x45070601, 0x468205a5, 0x17823420, - 0x4f823d20, 0x2f064456, 0x31314c10, 0x3b3b0202, 0x3b3b5858, 0x18200102, 0x22056f45, 0x4b392b15, 0x60290615, 0x0e0f1670, 0x0f0e0101, 0x24078716, - 0x0b0b010c, 0x2a038301, 0x01030974, 0x04111207, 0x83250d01, 0x270e321b, 0x122c0209, 0x40120202, 0x27150212, 0x010c0104, 0x057342c0, 0x380e2224, - 0x5e835038, 0x40226683, 0x13461831, 0x23162305, 0x1f85220a, 0x5d83cc20, 0x5e876020, 0x34210884, 0x84628360, 0x090c2904, 0x07041101, 0x02220212, - 0x17282682, 0x2c101402, 0x12020e0b, 0x10296783, 0x052c1720, 0x010c0205, 0x21008200, 0x3b580003, 0x00212407, 0x473d002b, 0x35230c79, 0x83271523, - 0x05c67703, 0xfc822f20, 0x0f062127, 0x33072701, 0x05f84a27, 0x23053326, 0x011d2335, 0x2108c860, 0x83542735, 0x3729080b, 0x2b408040, 0x0a104601, - 0x0e4c060b, 0x1a74fe1a, 0x0223080e, 0x060f6555, 0x01100a0b, 0x0140c01b, 0xe0140e0d, 0x010d0e14, 0x0b824740, 0x98ca2b26, 0x22023464, 0x0b2d2382, - 0x01147209, 0x1c0c1401, 0x09164fbb, 0x2246820b, 0x56a0a0c0, 0x4123086c, 0x4d002433, 0x2b240a2f, 0x49003500, 0x3d21bb8c, 0x06844601, 0x36271525, - 0x83171637, 0x37322103, 0x22057e47, 0x82222123, 0x161732c5, 0x27373233, 0x1f161706, 0x23063501, 0x26312722, 0x82ca8527, 0x232721ed, 0x080a4a48, - 0x06065739, 0x11120908, 0x19080bb3, 0x19182928, 0x2a060629, 0x3a150f10, 0x9cfe1008, 0x38170810, 0x11060649, 0x11046a0e, 0x11302111, 0x06080813, - 0x12120106, 0x1440011b, 0x8bce950f, 0x11442ed7, 0x01010183, 0x078c6405, 0x01011c09, 0x3303821c, 0x25252508, 0x240d0d5b, 0x0601da2c, 0x1a1a1f53, - 0x0585a105, 0x83272282, 0x12121b40, 0x41760a01, 0x23240c9b, 0x4a003800, 0x616ddf8c, 0x05f84207, 0x35362723, 0x28dd8226, 0x27070621, 0x14150617, - 0x06da4c07, 0xe2821720, 0x25222883, 0xa14a1405, 0x34352106, 0x16222682, 0xa8411617, 0x266e230b, 0xba7f1818, 0x17210809, 0x0d01033b, 0xe4fe220e, - 0x1c391a26, 0x09070703, 0x08090d07, 0x11ee120a, 0x0c080f0f, 0x01d4fe0e, 0x0c7f45dd, 0x250a6d52, 0x35350856, 0x0178524d, 0x354b3f06, 0x322c262e, - 0x02273334, 0x158f2d30, 0x35354c17, 0x101c1e20, 0x09010f10, 0x411a1209, 0x92442ced, 0x52ee820f, 0x802a0663, 0x2b00c001, 0x49003c00, 0xf18c5b00, - 0x256f3320, 0x22232405, 0x82151607, 0x8b0d85e7, 0x45172008, 0x3328060c, 0x31303130, 0x23012f26, 0x21241087, 0x23273736, 0x46053155, 0x16220785, - 0x7c531617, 0xb2be370b, 0x1e010213, 0x182a2e1e, 0x1b010215, 0x01011419, 0x30291b1b, 0x0882291c, 0x17162308, 0x27172b22, 0x1e1e2e44, 0xd6130201, - 0x0f49091f, 0x2626389a, 0x01190201, 0xb807114a, 0x1722fb40, 0x92620116, 0x41078307, 0x95220bf4, 0x37831302, 0x0b0b0a30, 0x1914222e, 0x1b1b2923, - 0x20240201, 0x33832016, 0x1f220223, 0x2f7283bb, 0x2b1c0213, 0x2601a039, 0x02193826, 0xc0910e01, 0x420fe662, 0x00280807, 0x7100c001, 0x8c008300, - 0x0c1b4218, 0x06070625, 0x4e26012f, 0x6c4c0598, 0x09045605, 0x0f20e482, 0x07a84318, 0x7305584c, 0x7d4c09c7, 0x08af4a05, 0x37363722, 0x2308fb6d, - 0x26272601, 0x42452e82, 0x27062507, 0x07352726, 0x200fe24c, 0x5725821f, 0x90470579, 0x20033007, 0x0a081e1f, 0x090a0d0c, 0x0d190809, 0x450c260d, - 0x0c2f05f1, 0x190d0d26, 0x0a090908, 0x090a0c0d, 0x691f201d, 0x202307c9, 0x83081d20, 0x0a0a2113, 0x27212d83, 0x212d850b, 0x2d89270b, 0x1f1e0825, - 0x59100320, 0x435f0fc2, 0x93a02009, 0x42328260, 0x8e96059f, 0x2d966090, 0x4447c020, 0x4e68200f, 0x77440741, 0x0040240b, 0x4278004a, 0x26200ca5, - 0x281f4941, 0x23262734, 0x1d060722, 0x09b94101, 0x17270724, 0x5b6b3336, 0x07272105, 0x2328be41, 0x07062537, 0x240aa644, 0x0f10029a, 0x1745411b, - 0x0325e48e, 0x0ae26001, 0x22e1830d, 0x419d4502, 0x082112a7, 0x0846411e, 0x0f0e0127, 0x0ffffe14, 0x0bd64216, 0x12177924, 0x528e0112, 0x2b15f441, - 0xb14b0302, 0x0e0d0106, 0x37060714, 0x4106fe65, 0xf8410e97, 0x0f182708, 0x0dcb020f, 0x00820001, 0x93460520, 0x00502f08, 0x006b0059, 0x00bf00ad, - 0x17161300, 0xc45c1615, 0x06012407, 0x47171617, 0x7469059a, 0x06072405, 0x4f26012f, 0x26270569, 0x27263527, 0x47010f26, 0x272205ca, 0x5c4d2726, - 0x05fb4505, 0x1f36372b, 0x36371601, 0x37363537, 0x08845717, 0x23108149, 0x31171605, 0x4b122952, 0xaa8228ff, 0xc0315390, 0x17020216, 0x110a1516, - 0x0a0e0e11, 0x1c090a12, 0x2310820d, 0x091c0d16, 0x0e270c82, 0x0a11110e, 0x62171615, 0x258b051d, 0x830e1b21, 0x1b0e2125, 0x3020258e, 0x67072155, - 0x01210c04, 0x15474c40, 0x550c0b21, 0x0f2025f7, 0x4106d441, 0x012305da, 0x901602c0, 0x20c4b878, 0x075152e0, 0xc2574020, 0x5650200b, 0x284d2d98, - 0x06c65f11, 0x00205385, 0x33072b45, 0xc001c001, 0x62005700, 0x00006d00, 0x17162737, 0x06073736, 0x2f0ba748, 0x26012f34, 0x2726033d, 0x30232726, - 0x22313031, 0xf67a0382, 0x2211850b, 0x83233130, 0x021d2414, 0x87010f14, 0x37322c3d, 0x34013d26, 0x011f013f, 0x82060716, 0x36372344, 0xb25d0517, - 0x27062b05, 0x38cf3726, 0x1a2f2f1a, 0x235d0346, 0x30082208, 0x290b8308, 0x0f1d0105, 0x190f0f07, 0x06820f19, 0x05011d26, 0x010d0e14, 0x802b1a86, - 0x040b0c0f, 0x0a308c0b, 0x840b0b0a, 0xdafe2604, 0x0a0b0b30, 0x2904840a, 0x0210a7d3, 0x07d31002, 0x8c44a808, 0x0fc12807, 0x0f0c480c, 0x83064a11, - 0x10032a10, 0x01060707, 0x07070601, 0x23728410, 0x0e124a06, 0xc1201e83, 0x12265f84, 0x0c0da816, 0x4d897822, 0x64893020, 0x47000021, 0x2741056b, - 0x00692906, 0x00930082, 0x07171300, 0x1426e782, 0x012b0617, 0xf14a2726, 0x36032707, 0x33373637, 0x01823130, 0x31303324, 0xb6581716, 0x30372908, - 0x30313231, 0x013b3031, 0x1d2b1283, 0x011f1402, 0x14011d16, 0x55070607, 0x3f20064d, 0x26219982, 0xdc4c1827, 0x06272311, 0x8568011f, 0x05e56805, - 0x2736372a, 0x27010f26, 0x1d170726, 0x3b334a82, 0x26373601, 0x26352327, 0x97070627, 0x0b040b38, 0x41800f0c, 0x4a410a2f, 0x0401210e, 0x0e221b86, - 0x2684140e, 0x1a460326, 0x371a2f2f, 0x0b3e4118, 0x08202108, 0x080f0f08, 0x0f090808, 0x07090810, 0x07101007, 0x10080907, 0xf008090f, 0x08200f01, - 0x16020216, 0x2c05a85f, 0x0c22a77a, 0x1216a80d, 0x0e0d0108, 0x29684114, 0xa8292d83, 0x10d30708, 0xfe100202, 0x7c41187e, 0x91c8200b, 0x288a8572, - 0x0f200818, 0x16160201, 0x2f7d8402, 0x00010000, 0x02200000, 0x00600140, 0x2500002f, 0x2409d54c, 0x3d363732, 0x082f4601, 0x4605d04c, 0x1522053d, - 0x686e1f14, 0x23172105, 0x47078d61, 0x0e29060d, 0x0aa90909, 0x690a0d0d, 0x052e4c89, 0x0c84a020, 0x4d539321, 0x288609f2, 0x09aa5325, 0x4c8a6a09, - 0xa02005b6, 0x93200a82, 0x9562878e, 0x06ef7008, 0x06071422, 0x8305e95b, 0x012f2107, 0x35290d85, 0x36013f34, 0x011f3233, 0x4f87a737, 0x88980abe, - 0x00000225, 0x8201c0ff, 0x23002a01, 0x00004b00, 0x31232613, 0x0ac84822, 0x2009c448, 0x08705317, 0x6f450320, 0x05e64307, 0x4105214f, 0xbb83083a, - 0x2722212b, 0xf7013d26, 0x0a0d0d0a, 0x20f58580, 0x05e74449, 0x28414920, 0xb7802105, 0x1c500e85, 0x08e74a09, 0x0e00ff25, 0x82010909, 0x8580201f, - 0xd34a212a, 0x21056f44, 0x48854ad3, 0xa9fe8022, 0x2b4f1085, 0x06e44408, 0x97440687, 0x82e02006, 0x00a027d3, 0x00490045, 0xd582004e, 0x66062721, - 0xcf83054e, 0x47013b21, 0x42180af8, 0x9e491486, 0x8a272009, 0x2317250a, 0x33071737, 0xfe260582, 0x08151509, 0x87865b48, 0x85330d21, 0x15182108, - 0x12b14218, 0x85181621, 0x0d33211c, 0x5b319f86, 0x20400247, 0x0d765b20, 0x8c010d90, 0x13010113, 0x51fa85ac, 0x34200669, 0x11d34218, 0x208c3420, - 0x4dacac23, 0x5140824d, 0x012d0503, 0x00c00140, 0x00370032, 0x00460041, 0x75e78252, 0x2325052e, 0x1d060722, 0xc44c1804, 0xf442180f, 0x34352b0d, - 0x07232627, 0x33352315, 0x7e723517, 0x0f062205, 0x200e8501, 0x220f8633, 0x82902307, 0x104a27bc, 0x0c0c0b0b, 0x85864612, 0x201f302c, 0x180f0e01, - 0x20010114, 0x1382301f, 0x30302023, 0x07314540, 0x0b824020, 0x0c872020, 0xc0012022, 0x0b2a1e83, 0x2a7a100b, 0x0c127616, 0x0941200c, 0x83202005, - 0x191e2538, 0x251c0f19, 0x15834b83, 0x82608021, 0x077b4a00, 0x0c8b4020, 0x774e0020, 0x24e78405, 0x00550049, 0x52e38262, 0x1d2207ed, 0x6e673301, - 0x15142109, 0x6c72b485, 0x08677c07, 0x8a230121, 0x27222b0a, 0x34043d26, 0x013b3637, 0xc4511735, 0x15232408, 0x89152317, 0x06e5470d, 0x28068f41, - 0x01161623, 0x0f181401, 0x82ee860e, 0x201986c3, 0x82d28206, 0x100a22dc, 0x08fa5170, 0x90707022, 0x7143fd89, 0x87202006, 0x03022bf6, 0x271d1d0a, - 0x190f1c25, 0xf8871e19, 0x0e090922, 0x0c2b1f88, 0x1676120c, 0x0b107a2a, 0x41c0200b, 0x6021070b, 0x08f25140, 0x00820020, 0x0000012e, 0x8001c0ff, - 0x2200c001, 0x013f0000, 0x18070e77, 0x20083d4d, 0x05826203, 0x3f343524, 0xea822301, 0x1d003539, 0x0ba91a05, 0x2e020808, 0x0b0a108b, 0x1009c106, - 0x08090c03, 0x82902f01, 0xe4c037c5, 0x0808021a, 0x7b05050b, 0x0b100a0b, 0x0ee7fe09, 0x040c0808, 0x9282bd03, 0x21051f58, 0x6782c001, 0x3a002d23, - 0x06595300, 0x114a3320, 0x16173105, 0x35373637, 0x1732013b, 0x14111516, 0x15230607, 0x08820983, 0x012b2408, 0x26272621, 0x14131127, 0x33163117, - 0x22213521, 0x00150607, 0x291b1b01, 0x08080160, 0x09363609, 0x87010808, 0x060a42ed, 0x29e0fe26, 0x40011b1b, 0x01217382, 0x05f84300, 0x10836020, - 0x040abf2b, 0x2b2b0604, 0x0a040406, 0x211b82bf, 0x2e82c0fe, 0x06822483, 0x01214f83, 0x42118840, 0xe02a051f, 0xa0010002, 0x39001c00, 0xad825600, - 0x06230726, 0x11070607, 0x2008c454, 0x58968311, 0x072805cf, 0x23070617, 0x3f342726, 0x20069256, 0x06805227, 0x33363728, 0x05151716, 0x06823736, - 0x450f1421, 0xc96705ed, 0x26072205, 0x25e38227, 0x95352726, 0x464f4b0a, 0x09bb5907, 0x0a4b2308, 0x227a220c, 0x0f01eb0c, 0x03010a4d, 0x1e1e1518, - 0x11111415, 0x23140e0e, 0x18243132, 0x010a0503, 0x1b9900ff, 0x1f7f0123, 0x58511801, 0x0001210c, 0x1f2a6283, 0x1f02021f, 0x01010fbf, 0x5282050a, - 0x0e141530, 0x1411110e, 0x22010122, 0x0a010318, 0x1897404d, 0x2608fb7e, 0x00c00160, 0x4e400036, 0x07220fb9, 0x38631716, 0x32332705, 0x013d3637, - 0x01823736, 0x21053c7a, 0x1a823507, 0x22089a7d, 0x5b150735, 0x01210790, 0x05f44300, 0x2d2c4626, 0x2c2d0101, 0x08060244, 0x0b242f21, 0x09070102, - 0x140b0d0c, 0x0b141919, 0x07090c0d, 0x240b0201, 0x1b2a402f, 0x1a01011a, 0x42012a1b, 0x232906fa, 0x4934330d, 0x0d333449, 0x05ee4123, 0x1b08232f, - 0x0b0c0d09, 0x0802020b, 0x06f8070f, 0x20368310, 0x2c3e820b, 0x6423081b, 0x21220bf8, 0x22212e2e, 0x07934c0b, 0x2805d341, 0x002f001b, 0x00560042, - 0xa7421869, 0x17162208, 0x06704221, 0x6f422320, 0x37342405, 0x6b173336, 0x36470581, 0x20138308, 0x09f74337, 0x34830e83, 0x202026a6, 0x0123ae82, - 0x8590010f, 0x70fe28b5, 0x01161722, 0x690e0909, 0xfa680c89, 0x0c664b0c, 0x0121198c, 0x213882a0, 0xec4bb0fe, 0x16012507, 0x50012217, 0xc0205782, - 0xb7461682, 0x4140200a, 0x06860631, 0x1d822020, 0x83062c57, 0x55602006, 0x068606d5, 0x41054f4a, 0x55200b1f, 0x601e1d41, 0x336308b1, 0x17352108, - 0x0def4318, 0x36373423, 0x41129233, 0x60201609, 0x19419f8e, 0x20068606, 0x0d9047a0, 0x58170241, 0xdd430c0d, 0x056e4206, 0x420c3157, 0x083a0d0f, - 0x15000e00, 0x2d002000, 0x23010000, 0x3f33010f, 0x17232201, 0x07273435, 0x0e852733, 0x07062326, 0x15070631, 0x23211882, 0x0ac85805, 0xc001352f, - 0x5c7f0156, 0x03037f01, 0x76680e40, 0x820982da, 0x1be63002, 0x06011212, 0x01467f01, 0x0100fec0, 0x431b1212, 0xa02a06d9, 0x7f017f01, 0x11174080, - 0x09838068, 0x40241983, 0xe0a07f01, 0x21070044, 0x7e8200e0, 0xff000022, 0x22056348, 0x5e000081, 0x153305c7, 0x16011f14, 0x06071407, 0x012f0623, - 0x06012b26, 0x83070607, 0x010f2512, 0x17161506, 0x26053f5d, 0x17321736, 0x4c161516, 0x322308e5, 0x8236013f, 0x36332635, 0x35373637, 0x24368234, - 0x36373437, 0x22128333, 0x5e36013b, 0x262005bf, 0xe2822282, 0x23272623, 0x24368222, 0x26272227, 0x25128335, 0x2726013d, 0x12832726, 0x232a3582, - 0x11111aad, 0x02130901, 0x02820201, 0x101f0324, 0x10830512, 0x0501122e, 0x01120105, 0x051a1111, 0x02201012, 0x01231b83, 0x830a1202, 0x821a2010, - 0x010623f9, 0x37891913, 0x86010221, 0x85122037, 0x84122036, 0x031f2135, 0x53825282, 0x83091321, 0x13192335, 0x35830601, 0x94a00121, 0xa11e8754, - 0x031f218c, 0x568daa85, 0x2366379a, 0x0035270f, 0x006b0062, 0xd9510500, 0x34352705, 0x1736013f, 0xc7471716, 0x26352605, 0x36352627, 0x055a5837, - 0x13601420, 0x13152108, 0x2007215c, 0x2c1c8225, 0x1516011f, 0x06010f14, 0x35272627, 0x07ee5923, 0x2008af58, 0x843d8234, 0x35332342, 0xbd501603, - 0x01260806, 0x0e0d0140, 0x0808500c, 0x0d0e0c50, 0x121b1001, 0x0d160112, 0x1716010d, 0x16172222, 0x160d0d01, 0x36252401, 0xbb528810, 0xf8fe2107, - 0x28382eac, 0x0905070f, 0x0b0b0748, 0x05094807, 0x01280f07, 0xa71b1212, 0x19131409, 0x64835c83, 0x1413192b, 0x2536a709, 0x01280124, 0x073b6298, - 0x34a93820, 0x6968fe21, 0x04200877, 0x2b08f34b, 0x00530008, 0x0065005c, 0x37361300, 0x25051c41, 0x31071437, 0x60690706, 0x013d2108, 0x7b164b41, - 0x894e10d5, 0x692d8a05, 0x03200979, 0x36225a85, 0x82875037, 0x0d0d5023, 0x066e6916, 0x230e4241, 0x30291b1b, 0x3023128d, 0x411b1b29, 0xd0200b68, - 0x2010516a, 0x097e6a01, 0x14131924, 0xb8452709, 0x41272005, 0x27200f3c, 0x47204883, 0x4721158f, 0x8c728201, 0x4118202b, 0xb82008c1, 0x735c6a87, - 0x002c220b, 0x061d6c35, 0x16010027, 0x16331517, 0x052d5317, 0x230d3b42, 0x27262726, 0x42076862, 0x0720059d, 0x21070541, 0x3c411517, 0x0f644110, - 0x20083141, 0x07974105, 0x0d320127, 0x25361001, 0x0f724224, 0x1b121223, 0x09674210, 0xba87ca20, 0x43410820, 0x200d8d0d, 0x21258708, 0xc96a4801, - 0x07be2708, 0x2401280f, 0x72423625, 0x121b2311, 0x9c420112, 0x874e200c, 0xce492134, 0x900f4c41, 0xe9fe2110, 0x55412c87, 0x00003c08, 0xff200003, - 0x016001c1, 0x004c00bf, 0x005b0054, 0x27361300, 0x26272631, 0x450f0607, 0x17220534, 0x974d1716, 0x480b8b09, 0xb1480bb5, 0x23302306, 0x84662726, - 0x823e8305, 0x010f240b, 0x82342726, 0x3717211c, 0x26333982, 0x0703ff27, 0x0b0e0d06, 0x420b040a, 0x12012a29, 0x87121f12, 0x0e0d2310, 0x1c88070e, - 0x0b273236, 0x09080202, 0x100b0d0c, 0x0a0f3612, 0x0b020107, 0x0f010101, 0x0c371f87, 0x5c060e0e, 0x1301142e, 0x3d091e12, 0x0f3e0e0f, 0x0d98010d, - 0x83040b0b, 0x0f2d291f, 0x2c463333, 0x471a2625, 0x34231187, 0x871c0305, 0x072a220b, 0x2f55831d, 0x0701020b, 0x01d9070c, 0x0c0d0b0c, 0x3c010109, - 0x30321e87, 0x671a0204, 0x25281fb8, 0xe6111e1d, 0xf90401f5, 0x45180603, 0xa023086b, 0x6e004a00, 0xa149067d, 0x053e530b, 0x490a1e52, 0x3d2706c6, - 0x32373601, 0x4116011f, 0xa9580518, 0x23262705, 0x1d060722, 0x22822603, 0x2d02602a, 0x2c3f442d, 0x090d0d0a, 0x0a238082, 0x183f583d, 0x180ac94f, - 0x080b414e, 0x07150221, 0x0c0c0a06, 0x0307080d, 0x160a0b02, 0x0811121b, 0x09090e0c, 0x011a1a2b, 0x2d2d44c0, 0x83280102, 0x2147833f, 0x226b0237, - 0x504e1805, 0x09602511, 0x07040215, 0x0c204083, 0x062d4882, 0x0907070f, 0x09370e09, 0x27261453, 0x055f4c32, 0x01400228, 0x002b00c0, 0xa37d0030, - 0x08994f0c, 0x0af64d18, 0x36332722, 0x1120d282, 0x2126c383, 0x11211105, 0x88474021, 0x0bb02207, 0x05eb4345, 0x85000121, 0x0b452207, 0x201b87b0, - 0x835f82fe, 0xc0012703, 0x1b121201, 0x1783e0fe, 0x200cce60, 0x21178320, 0x17832001, 0xe0fe4025, 0x4e002001, 0x8022066b, 0x9582a001, 0x56004229, - 0x22010000, 0x61063107, 0x01230935, 0x5c232615, 0x16230503, 0x83373217, 0x3d362103, 0x25074961, 0x26273423, 0xb9590323, 0x0717210f, 0x55184184, - 0x01210d9f, 0x83ac8220, 0x09092503, 0x231d200e, 0x07774718, 0x081e2523, 0x85188215, 0x07126bc8, 0x490bba5b, 0x012006ff, 0x23065f49, 0xa001c0fe, - 0x33492682, 0x11312505, 0x36252401, 0x13224a83, 0x12820112, 0x1a836020, 0x4d6b4d85, 0x851b8611, 0x00280839, 0x00070000, 0x02c0ff00, 0x00c00100, - 0x0023000d, 0x004b0035, 0x00730061, 0x13000081, 0x16170607, 0x37323317, 0x26012f36, 0x4d06fa74, 0x21200e58, 0x6b103f75, 0x704a0bf6, 0x013d2208, - 0x090c6c33, 0x487a158a, 0x16273c11, 0x2736013f, 0x22232726, 0x011f0607, 0x03074085, 0x0a800a05, 0x40070305, 0x4d450b0b, 0xfe221182, 0x3d5a6080, - 0x0150250f, 0x40140e0d, 0xe1821583, 0x090e6024, 0x108fc009, 0xe85a8020, 0x0b2b220f, 0x2d688a0b, 0x0740bb01, 0x0a01090a, 0x0a40070a, 0xa34d7b0a, - 0x08a14f13, 0x2c5f4887, 0x41102008, 0x102005bf, 0x0f879487, 0xa58f8020, 0x0a0ab522, 0x4b576588, 0x40023207, 0x1700c001, 0x42002900, 0x36130000, - 0x17162137, 0x07114516, 0x012f2629, 0x27013d26, 0x6d013726, 0x07200f66, 0x5508d455, 0x043f0fec, 0xb001190b, 0x0f0a0b19, 0x27273d6b, 0x02031201, - 0x0fb70d40, 0x3dac010a, 0x02022829, 0x873d2928, 0x0a3b2c07, 0x250b0b0a, 0x0a0b0b25, 0x8b24240a, 0xa901390b, 0x16010116, 0x0d831317, 0x29412f2f, - 0x30010224, 0xe04f100a, 0x17fe1713, 0x46833e8b, 0x3c91b520, 0x49184885, 0x39210d53, 0x05534300, 0x200c8c53, 0x08f44306, 0x32013b25, 0x183f3637, - 0x5b0a6f5f, 0x01270ce0, 0x17181e3b, 0x416b370c, 0x50230561, 0x7915092d, 0x252006d6, 0x01251797, 0x1b1010a0, 0x05e74285, 0x59136c21, 0x12920671, - 0x0223a482, 0x4dff0000, 0x0c2b0553, 0x00001e00, 0x27262105, 0x7b352726, 0x13200557, 0x2306667b, 0x16011f32, 0x2e058257, 0x80fec001, 0x0112121b, - 0x12010002, 0x4c401b12, 0x7626053d, 0x131a131a, 0x1783951b, 0x16832020, 0x83e0e021, 0x4001220a, 0x82068340, 0x1813831a, 0x200a8754, 0x07af533b, - 0x865c0220, 0x096e5509, 0x12045518, 0x55182b20, 0x50230b1a, 0x4209090e, 0xe085075b, 0x09821183, 0xb74e5020, 0x63902006, 0xd022063c, 0x1582a001, - 0x544da020, 0x063b4406, 0x86066f4d, 0x441b8606, 0xc02608ff, 0x3d003300, 0x4f544400, 0x07f34408, 0x230cd15e, 0x26273437, 0x16209182, 0x22071756, - 0x54272627, 0x3e500653, 0x35172207, 0x20398333, 0x50a982c0, 0x0d830d41, 0x802a9382, 0x0c0a1822, 0x0a090a0d, 0x0d823c2a, 0x3e502020, 0x5c402707, - 0x22191809, 0x1382c001, 0x26104150, 0x4934330d, 0x8209090e, 0x0a092821, 0x0a0c0d0a, 0x82230b29, 0x5084200e, 0xf826083d, 0x1819225c, 0x03560009, - 0x40022307, 0xcb82a001, 0x45003a2b, 0x26010000, 0x15070627, 0x08527c21, 0x5c430120, 0x16172305, 0x7242013b, 0x013f2306, 0x7c423233, 0x6a3d2005, - 0x35390551, 0x33372307, 0x27230607, 0x06171621, 0x27262107, 0x10023736, 0x02161602, 0x064641fe, 0x09100a38, 0x03280309, 0x60100909, 0x681a0718, - 0x060e0e13, 0x0a0d1f1b, 0xa2424316, 0xcf102f05, 0x1569105c, 0x01f20502, 0x01010f80, 0x0584fe0f, 0x16880126, 0x08160202, 0x7020dd82, 0x01302582, - 0xa0100c0b, 0x010c0d0f, 0x0a0a6817, 0x17094b11, 0x50201782, 0x08251782, 0x053b40f8, 0x07c75bb0, 0x0536cf82, 0xc4ff2000, 0xc0012002, 0x15000a00, - 0x68005000, 0x00007300, 0x44181501, 0x07210890, 0x08255b17, 0x775d0720, 0x06f75007, 0x14011d2b, 0x06070607, 0x012f2627, 0x06935d26, 0x01230997, - 0x52360706, 0x5a55051d, 0x223c820a, 0x5d0f1603, 0x172106e3, 0x94441801, 0x20632508, 0x090d0b07, 0x66230484, 0x827c1111, 0x066143d2, 0x25151531, - 0x29363631, 0x110e0e64, 0x0b0b3511, 0x835d0909, 0x835d2009, 0x83752009, 0x86752009, 0x2a012813, 0x14252925, 0x42020e14, 0x368205c0, 0x070b0825, - 0x840d0920, 0xb0012204, 0x060a7140, 0x070f0127, 0x07090d30, 0x2704840b, 0x7c0e0e60, 0x0b040407, 0x3306e44b, 0x24252b9a, 0x07071d17, 0x11116427, - 0x09350e0e, 0x5d0b0b09, 0x5d200983, 0x75200983, 0x75200983, 0xfe2b1386, 0x1e011692, 0x62302a2a, 0x41280f01, 0x3b84059e, 0x09d20126, 0x070b300d, - 0xd35c0484, 0x40022908, 0x2000c001, 0x42003200, 0x1ea54a18, 0x16051724, 0x65182707, 0x07211082, 0x05296806, 0x18074563, 0x241cae4a, 0x010c0001, - 0x0f8267e0, 0xea726020, 0x16012408, 0x18402217, 0x2318bb4a, 0x200e0ae1, 0x200fdd63, 0x23328360, 0x0f01010f, 0x6f444383, 0x5748200a, 0x3b21063b, - 0x06405303, 0x28822b20, 0x20090652, 0x18b58206, 0x22078151, 0x4526012f, 0x58180679, 0x262e0ab0, 0x022b2627, 0x35262722, 0x0e090900, 0x5e441040, - 0x0e382206, 0x06de5307, 0x210a2438, 0x0a912e21, 0x08080203, 0xe00c0c0d, 0x17070611, 0x14131950, 0x6d419909, 0x09992605, 0x10191314, 0x7c0c8240, - 0x16210ad3, 0x05fa411a, 0x1e1e2c24, 0x36836707, 0xa0243e83, 0x0115160e, 0x8205204e, 0x0d16222d, 0x0b63180d, 0x00a0250b, 0x0100003d, 0x09364018, - 0x785a3520, 0x13454508, 0x0c4b1720, 0x094f4508, 0x5501372b, 0x0901010a, 0x0b0c0d09, 0x187d85ab, 0x220d1563, 0x4b0c0bab, 0x9e200521, 0x2306695a, - 0x68019ea9, 0x35832d83, 0x187a9221, 0x18090a4e, 0x2509195a, 0x0109927a, 0x37830a01, 0x51858820, 0x77418820, 0x01802406, 0x185f00a0, 0x2308034e, - 0x17323336, 0x20095743, 0xef521816, 0x09ad540c, 0xc8822620, 0x06210d89, 0x053a5207, 0x83161721, 0x05804113, 0x36373426, 0x2726013b, 0x23053352, - 0x90333637, 0x08208982, 0x7b850082, 0x1c1c2a2d, 0x0807030a, 0x0a0b0d0d, 0x85230b03, 0x251d8913, 0x2401022e, 0x68543625, 0x86a02006, 0x2f112607, - 0x1f1e0102, 0x212b8232, 0x0482a001, 0x01012123, 0x05c14421, 0x23143124, 0x48832e24, 0x07070326, 0x441d2d0e, 0x5f231585, 0x855f0101, 0x25442309, - 0x5218363f, 0x6a850851, 0x3b4b3526, 0x31182e2e, 0xc74c1f82, 0x002f220a, 0x22571800, 0x011d2108, 0x070c6a18, 0x18013f21, 0x230cb960, 0x3735012b, - 0x22069456, 0x4a35010f, 0x292906a4, 0x0306060d, 0x0d0c0b04, 0x4b5e8217, 0xe02107e6, 0x20158789, 0x074c4277, 0x830b9621, 0x21168324, 0x9b85a807, - 0x9a210582, 0x22148727, 0x18008322, 0x200be750, 0x0cdb4639, 0x180dd746, 0x5709154b, 0x26200d31, 0x4607e146, 0xef8507d0, 0x1b1a0122, 0x22066d63, - 0x451a1b2a, 0x2c570600, 0x83012006, 0x0d2324c3, 0x41493433, 0xa0260667, 0x0b22212e, 0x9f85e4fe, 0x0b1c0125, 0x872e2122, 0x07275719, 0x0022a682, - 0x00820006, 0x01800238, 0x00280080, 0x00420035, 0x0058004d, 0x01000063, 0x06010f22, 0xab52032b, 0x011f2b07, 0x3f361716, 0x36373601, 0xbd7e3537, - 0x2f222505, 0x03232601, 0x2621a682, 0x2516823d, 0x17161533, 0x1c820725, 0x876b3320, 0x36252206, 0x05c66337, 0x63272621, 0x262406cf, 0x17373627, - 0x42081589, 0x222a4001, 0x091d1925, 0x10184810, 0x1801010f, 0x356c2919, 0x6c354444, 0x01181929, 0x18100f01, 0x1d091048, 0x2a222618, 0x0f191dbc, - 0x2807010f, 0x95012301, 0x2801231d, 0x0e010107, 0xa7fe190f, 0x82e00f01, 0x20048336, 0x82088710, 0x0f012236, 0x831583a0, 0x17802304, 0x11821019, - 0x2a551830, 0x1b0a2020, 0x22010123, 0x20200b1b, 0x6e83552a, 0x1719103c, 0x0707e6fe, 0x55191313, 0x45300107, 0x35070735, 0x07013045, 0x13131955, - 0x82638307, 0x07114708, 0x11875020, 0x00820020, 0x0000012a, 0x8001c1ff, 0x5100bf01, 0x0cb35318, 0x26070624, 0x03842227, 0x61180620, 0x18540a4f, - 0x50152007, 0x32240b62, 0x013d3637, 0x42063e71, 0x2637090e, 0x37272627, 0x05042e01, 0x0c0d0c06, 0x0922050b, 0x1e302007, 0x42110918, 0xfe4b0860, - 0x874e2007, 0x08162222, 0x221c8214, 0x4c060624, 0x0c82067e, 0x1d1c0126, 0x9501132b, 0x25834083, 0x08065f2c, 0x0d0e0121, 0x0e090901, 0x4885d050, - 0x2108446e, 0x2587da2b, 0x83103c21, 0x649a2520, 0x140e0e02, 0x2d242587, 0x36051e1f, 0x0021ee82, 0x36ef8207, 0x018002e0, 0x001400a0, 0x0024001c, - 0x0032002b, 0x00590044, 0x5a151300, 0x352008f5, 0x2120bb83, 0x2406d445, 0x23171631, 0x056a4d35, 0x05333524, 0xb0792315, 0x83152005, 0x106c6822, - 0x26251723, 0x09fb6e27, 0x21272622, 0x35272583, 0x12120160, 0x46a0011b, 0xfe21076b, 0x20098360, 0x20048440, 0x221a8340, 0x85600140, 0x20138507, - 0x06145501, 0xfe370787, 0x16160270, 0x22220102, 0x16900133, 0xfe160202, 0x14141f70, 0x4b600101, 0x5a820521, 0xa0200888, 0x68844d84, 0x84a04021, - 0x84a0204c, 0x08bd7958, 0x036a2220, 0x83582006, 0x33f02447, 0x84012222, 0x1414235a, 0xbf47f01f, 0x05975707, 0x3a003624, 0x2f683e00, 0x4f072005, - 0xfa6f0bc3, 0x013d2706, 0x37161733, 0xb36e3736, 0x0a4b460a, 0x3313272d, 0x23012f15, 0x0e7b1735, 0x46011616, 0x64210d20, 0x2e139161, 0x0fb68c39, - 0x3a3a770f, 0x05129201, 0x44c01708, 0x8020051a, 0x2005de41, 0x5a138480, 0xc0200617, 0xc0281385, 0x16eefed2, 0x56564016, 0x0228b388, 0x00a00180, - 0x003d002b, 0x6d6f1282, 0x07884405, 0x2206c856, 0x51323316, 0x23230606, 0x82060722, 0x27262101, 0x23290182, 0x31071417, 0x27222306, 0x07594626, - 0x32331527, 0x0716011f, 0x821d8206, 0x26272125, 0x24073562, 0x142e3336, 0x3300820d, 0x0d070714, 0x6c6c4645, 0x070d4546, 0x0c0d1407, 0x0d0c0101, - 0x7220138c, 0x82088c61, 0x0dd03fab, 0x07087c07, 0x63460f09, 0x09104663, 0x08450907, 0x1a080b0b, 0x010d0757, 0x140d0da0, 0x52829cfe, 0x0f060229, - 0x0f02020f, 0x8202060f, 0x64012111, 0x345b118c, 0xb60b330c, 0x020c0e0d, 0x0d01010d, 0x0d0e0d02, 0x21090957, 0xff880b7f, 0xff830120, 0x35002d24, - 0x9b453d00, 0x1d561808, 0x011d2107, 0x2009b341, 0x0c124e36, 0xe4822620, 0x08be6318, 0x82330721, 0x230723ef, 0x45514035, 0x250b820b, 0x2b2b3b60, - 0x7741030c, 0x0c033805, 0x803b2b2b, 0x2060bbdb, 0xbb0b1818, 0x18180bbb, 0xa0016020, 0x4d0e0909, 0x60200603, 0x6021b086, 0x3c611801, 0x23382f08, - 0x40800124, 0x1c121101, 0x11121c40, 0x7f5b4001, 0x26af8406, 0x004a0044, 0x90580052, 0xa11520b1, 0x353622ba, 0x0a5c6234, 0x0724c88a, 0x14151633, - 0x1721c682, 0x20048206, 0x85cc8933, 0x059b41c0, 0x29345025, 0x85131729, 0x82012011, 0x34098500, 0x29291713, 0x9ebe7034, 0x9e1f2f50, 0xbf0101bf, - 0x502f1f9e, 0x4ddd849e, 0xff5206e8, 0x5b402006, 0x4024067b, 0x2b1a1a01, 0x290f2048, 0x011a1a2b, 0x1f012060, 0x00820840, 0x1f602026, 0x01002001, - 0x20081f52, 0xd9531831, 0x6617200c, 0x2f220584, 0x09831501, 0x22070624, 0x03822723, 0x35272629, 0x35013f34, 0x67270607, 0x353405bf, 0x121201c0, - 0x11121c1b, 0x070eb201, 0x3aab0806, 0x020d0106, 0x0808e977, 0x0608ab22, 0x01b20e07, 0x1f1f1d62, 0x1f1f0303, 0x0977421d, 0x05083911, 0x50390204, - 0x2a08052b, 0x2020010d, 0x2b054578, 0x04023950, 0x11390805, 0x00427709, 0x0a2f4018, 0x2400a028, 0x4a003000, 0x64185700, 0xf7440cc3, 0x07f54c05, - 0x22090262, 0x18331702, 0x22082e5d, 0x62332515, 0x6f4908e8, 0x34022808, 0x17333637, 0x6e313736, 0x233905f2, 0x09003315, 0x3d500e09, 0x01022829, - 0x34271717, 0x0c050504, 0x060b0c0d, 0x06f34738, 0x44304021, 0x302b078f, 0x30500001, 0x0101201f, 0x6a301f20, 0x17520929, 0x30302f08, 0x090e8001, - 0x29280209, 0x22232d3d, 0x44838012, 0x8c204c83, 0x21067042, 0x8d6ee0a0, 0x60a02108, 0x4b824384, 0x2106a741, 0x3982a080, 0x1462a020, 0x01002e08, - 0xe0ff0000, 0xa0014002, 0x00003700, 0x0edd5d01, 0x2b21ca83, 0x44058b01, 0x3b22061b, 0xdc823501, 0x01210588, 0x09d35e80, 0x00436020, 0x86078306, - 0x4b12888f, 0x8e830aad, 0x36420387, 0x21118805, 0x93820400, 0x8002d031, 0x0800b001, 0x5e005500, 0x00006700, 0x6e272613, 0x172505b5, 0x36313736, - 0x070e7035, 0x16171422, 0x22098976, 0x18152133, 0x29079b6c, 0x37363736, 0x27262734, 0x70182135, 0x3520087c, 0x378d1382, 0x25352124, 0x57850706, - 0x06850320, 0x80070622, 0x20076258, 0x0de65820, 0x15434020, 0x00012105, 0x444a168d, 0x8d402007, 0xc0fe2316, 0x17597801, 0x59d82007, 0x43180816, - 0x312008a0, 0x200fea58, 0x05014137, 0x17a83720, 0x87493721, 0xa8fe2155, 0x2009df6e, 0x085b4304, 0x30002726, 0x54004200, 0x27076143, 0x16171621, - 0x07061117, 0x200a2c55, 0xf3421821, 0x17112a0c, 0x26272107, 0x0f062327, 0x10006d01, 0x117d4618, 0x16010025, 0x4e012217, 0x1f290557, 0x200e0909, - 0xff09090e, 0x2b088600, 0x1282011f, 0x07122001, 0x0718be18, 0x85068c4f, 0x07f946dd, 0x47064941, 0xfe240884, 0x301729e0, 0xd2631485, 0x17302b07, - 0x48200129, 0x01174848, 0x814b1701, 0x57468209, 0x002b0c74, 0xff1f0001, 0x01a001e0, 0x4d4f00a0, 0x37210817, 0x050a4d36, 0x15010f22, 0x33210a8a, - 0x06835d36, 0x44163321, 0x0628055e, 0x27222307, 0x07013d26, 0x08447418, 0x0a8a3520, 0x36373424, 0x92828033, 0x0c0d7729, 0x0603040b, 0x89890d06, - 0x34403009, 0x01042424, 0x0d0e090a, 0x36060809, 0x82604e36, 0x87172027, 0x89292027, 0x07004d09, 0x83222321, 0x21208340, 0x0a891d27, 0x22019a25, - 0x82083522, 0x09012842, 0x4e080e0a, 0x82023333, 0x07a8212f, 0x0b212a87, 0x200a891e, 0x20608236, 0x05f76b00, 0x0140022b, 0x001d00c0, 0x0041002f, - 0x0deb5854, 0x37331723, 0x58038333, 0xc37809dd, 0x15172110, 0x2010ed55, 0x05f35125, 0x83272621, 0x05c04436, 0x24080f59, 0x10401010, 0x200382e0, - 0x08a74910, 0x73a04021, 0x44220f33, 0x6e182d2d, 0x022608e9, 0x01442d2d, 0x59180100, 0x14250806, 0x02010d0e, 0x0631591e, 0x4483a020, 0x00822020, - 0x12120125, 0x8360011b, 0x73fe200d, 0x50201031, 0x0f9b7418, 0x0f73b328, 0x730f0101, 0xef56210c, 0x0c212207, 0x05637000, 0xc0012031, 0x2e001800, - 0x4c003300, 0x00006500, 0x18060713, 0x290ce14e, 0x22232602, 0x0603010f, 0x6f6b3115, 0x01372405, 0x5a343536, 0x092605c4, 0x37270701, 0x2f920517, - 0x93010221, 0x26eb2a14, 0x0e260505, 0x02050502, 0x2909890e, 0x230e0ebd, 0x0f13140e, 0x08867d01, 0x0183fe36, 0x691869b7, 0x0823fe18, 0x03153808, - 0x15030808, 0x39070739, 0x38220985, 0x15946001, 0x568f9520, 0xfe2d6083, 0x13130fa0, 0x0e0e230f, 0x130f7d01, 0x20668214, 0x205b820e, 0x205b8338, - 0x83568f22, 0x00ff2154, 0x00211593, 0x06175b00, 0xc0010033, 0x6b000a00, 0x36010000, 0x010f2627, 0x3f161706, 0x25088401, 0x011f1415, 0x89592607, - 0x200b9005, 0x05b54c06, 0x17013f28, 0x3f323316, 0x26823601, 0x97372721, 0x2358840b, 0x27360726, 0x82053a58, 0xf9012653, 0x11110e0e, 0x2a048458, - 0x0b0b0cc7, 0x1f0a1d1d, 0x820b1f05, 0x1c1c2609, 0x20051e0a, 0x820a820b, 0x45210809, 0x0d0a0909, 0x0c450a0d, 0x1e26271d, 0x0b09090b, 0x0d1f2c22, - 0x1d27261d, 0x0c09090c, 0x0c202c22, 0x220b861e, 0x832e0808, 0x203b254b, 0x3a080a1f, 0x2e2a0983, 0x010b0705, 0x0e111197, 0x0484580e, 0x30820e20, - 0x1d244482, 0x212a1e0b, 0x38834883, 0x44200b8c, 0x2305ff6b, 0x1c1c0c45, 0x0b237b82, 0x83200421, 0x830a8209, 0x1d1d2109, 0x08229083, 0x4b832e06, - 0x09073c25, 0x833a2121, 0x082e2309, 0x97700c06, 0x01bc2b08, 0x001100c0, 0x005a0048, 0x975b0100, 0x05b47211, 0x37262723, 0x05816336, 0x0f161725, - 0x59163301, 0x2727066f, 0x3f262726, 0x5f162301, 0x362808d2, 0x32373637, 0x03273717, 0x210f647c, 0x97470117, 0x079f4708, 0x0809d323, 0x07156729, - 0x2c262939, 0x0405165a, 0x17622610, 0x1d030d0e, 0x0d0b0a03, 0x0307070e, 0x430d4618, 0x11240b37, 0x2d2a370f, 0x240ba67b, 0x291b1b01, 0x084b6a01, - 0x26074943, 0x1f050349, 0x82020208, 0x080d2ff9, 0x2b121b1f, 0x1316170b, 0x1011012b, 0x53838d17, 0x7a225b83, 0xde43221e, 0x3603240b, 0x18b9fe14, - 0x240fea72, 0x0c000000, 0x07eb5800, 0x15000a39, 0x3a002000, 0x50004500, 0x66005b00, 0x7c007100, 0x92008700, 0x50130000, 0xa17b142b, 0x37362d08, - 0x31373407, 0x32213336, 0x06151617, 0x2805b75f, 0x012f2623, 0x27262726, 0x203a8937, 0x270a8823, 0x1633012f, 0x23070617, 0xa10d7150, 0x89272015, - 0x02b02536, 0x02161016, 0x18200484, 0x02220887, 0x0a899016, 0x08083838, 0x0bca010b, 0x1d010808, 0x0601301d, 0x061ae81a, 0x1d1d3001, 0x3889e001, - 0x43946020, 0x1594d820, 0x15947820, 0x6f896020, 0x8305c957, 0x18302092, 0x8708db4c, 0x826b2008, 0x2e8e8286, 0x13292936, 0x02021a0e, 0x29130e1a, - 0x18533629, 0x820f134d, 0x2012858e, 0x21068560, 0x119a1602, 0x2b088a48, 0x20000200, 0x6001c0ff, 0x1100c001, 0x1806dd6e, 0x240ae974, 0x07060706, - 0x05457803, 0xc7420620, 0x37362b05, 0x32033b36, 0x16171633, 0xd252011f, 0x06072305, 0xf24a022b, 0x4a012008, 0x5b47052d, 0x108a7705, 0x16482308, - 0x0c070502, 0x030c0b0d, 0x183a0703, 0x0106062d, 0x0202020d, 0x0514141b, 0x15162206, 0x0e090901, 0x2b482810, 0x08082105, 0xa67e0785, 0xe1fe2611, - 0x08371807, 0x8341820b, 0x27613149, 0x11030107, 0x07211b12, 0x2024191a, 0x6009090e, 0x20054848, 0x21078660, 0x6f4c0061, 0x82402005, 0x005821df, - 0x22834a18, 0x30151423, 0x06b06431, 0x3332332b, 0x32023b32, 0x023d3637, 0x28f58234, 0x16173201, 0x1714021d, 0x82138216, 0x83012018, 0x34012418, - 0x18332737, 0x261b894a, 0x10110b0c, 0x82010202, 0x18202400, 0x690c0b11, 0x158206a9, 0x82211821, 0x10022116, 0x01221382, 0x4a182001, 0x45231a82, - 0x82700102, 0x20318324, 0x20da8540, 0x82488340, 0x0410250f, 0x0000a004, 0x2f20df8a, 0x4b18df8a, 0x33251057, 0x013f2627, 0x05b25927, 0x4c010f21, - 0xba8905b9, 0x4b18ff20, 0x66320e3c, 0x550a061f, 0x0909073c, 0x0c0c760c, 0x1b7b2651, 0xa6891212, 0x4b18e120, 0x34310e20, 0x5347090c, 0x0708090c, - 0x430d0c5d, 0x12120140, 0x2597831b, 0xff000002, 0xfb5802c0, 0x9b3d2005, 0x36212699, 0x27373637, 0x05505433, 0x16331527, 0x07061517, 0x23038323, - 0x23352726, 0x36230382, 0x41353337, 0xa78f0762, 0x07e44b18, 0x01e0fe2c, 0x010f200f, 0x01010f30, 0x0a8a300f, 0x8f065841, 0x20a384b1, 0x852c8f50, - 0x82002037, 0x43012000, 0xb9820813, 0x0f6c1320, 0x0b615705, 0x7f180620, 0x6c4a0934, 0x430f8205, 0xb25c0902, 0x34352807, 0xe0333637, 0x6c09090e, - 0x212109e4, 0x07a0612c, 0x6c212c21, 0x186d09ec, 0x05af5c10, 0x081c0822, 0x2006e16c, 0x22751819, 0x6c192009, 0x0f420ae8, 0x6d232005, 0xf7470b19, - 0x80012606, 0x2900c001, 0x73bd8300, 0xd358095f, 0x09c95813, 0x6f033521, 0x2f4d056b, 0x21232606, 0x15060722, 0x779a85e0, 0x702006ac, 0x1c830d8d, - 0x82093f62, 0xa001218c, 0x278e9185, 0xe75c3586, 0x08238507, 0x00030020, 0x02c0ff05, 0x00bf013a, 0x001b000d, 0x0100002c, 0x17363736, 0x06071613, - 0x2726012b, 0x07420711, 0x27222a05, 0x36013f26, 0x37260317, 0x06bd6021, 0x2726213a, 0x01012f26, 0x0b0a0100, 0x0405e007, 0x0fe00a04, 0x010b2c01, - 0x09800f01, 0x27080d82, 0xce0b0780, 0x16021203, 0x0c040312, 0xfe2c2122, 0x22212cca, 0xb001040c, 0x0903040b, 0x0808c0fe, 0x010f0109, 0x0c035140, - 0x08353482, 0x0ae00808, 0x11cdfe03, 0x0f110303, 0x0119192a, 0x2a191901, 0x060f450f, 0xc0011f29, 0x8d007200, 0x18130000, 0x58084f6c, 0x2065074e, - 0x07142f06, 0x17161706, 0x33301730, 0x31300706, 0x0d831514, 0x11821620, 0x82183120, 0x31200ead, 0x2321af82, 0x07a55826, 0x33321724, 0x26843316, - 0x86163321, 0x83608250, 0x20038252, 0x282a8223, 0x17372627, 0x30013926, 0x820c8631, 0x0568451d, 0x0607162d, 0x0361010f, 0x08281512, 0x4c070e0f, - 0x3f08076f, 0x0811100a, 0x0b2f2c36, 0x0c0c0301, 0x22010114, 0x0d0c0408, 0x15141113, 0x13290312, 0x02030108, 0x29151302, 0x0f0f0e0a, 0x02020404, - 0x040c0b0d, 0x0d060504, 0x01010403, 0x120e0201, 0x35010e12, 0x05253a82, 0x19110a0a, 0x3d058207, 0x15151114, 0x14290212, 0x01030309, 0x2901014d, - 0x03020915, 0x16120201, 0x07091128, 0x4b820208, 0x010c2328, 0x0b081160, 0x41820106, 0x07060428, 0x0b0b0d0d, 0x0b820304, 0x12092808, 0x01013515, - 0x0d18181e, 0x012a1501, 0x17181d01, 0x07080b0c, 0x0d0b0105, 0x0e040506, 0x0509090f, 0x05050402, 0x83010102, 0x3b85837d, 0x05010201, 0x09020606, - 0x1d341312, 0x150d1619, 0x181a1e25, 0x08080d0f, 0x070d0c06, 0xd120a082, 0x0c213985, 0x2039820e, 0x29338203, 0x170f0606, 0x00000308, 0x6b480600, - 0x00212808, 0x0035002e, 0x4d4b0040, 0x16200907, 0x2505597c, 0x35331716, 0xa650022b, 0x21332706, 0x27263736, 0x14831321, 0x075a6118, 0x37361737, - 0x15070627, 0x34373637, 0x15160727, 0x03170714, 0x32331523, 0x21288217, 0x55182726, 0x064d0845, 0x04012808, 0x38452f2f, 0x4219af18, 0x2b0805b7, - 0x010f9001, 0x70fe0f01, 0x481602a0, 0x050a1540, 0x02120414, 0x56293780, 0x26790505, 0x017d0401, 0x10895b02, 0x850c0f12, 0x382b2b14, 0x2d080250, - 0x1201a001, 0x121b1b12, 0x2d440112, 0xd055022d, 0x012c0806, 0xfe010f0f, 0x48021658, 0x15140517, 0x1404010a, 0x23220517, 0x40460103, 0x1212402f, - 0x07060557, 0x1f012406, 0x305d09c0, 0x40011d1e, 0x20093b6a, 0x08e34f03, 0x77005225, 0x18008300, 0x47079d4f, 0x0720058f, 0x2105c26c, 0x0782012b, - 0x12851520, 0x82151721, 0x4407200b, 0x2f240a9e, 0x26272601, 0x2b6efe82, 0x056c4909, 0x3736352a, 0x34353736, 0x05333637, 0x08ce8018, 0xfc521720, - 0x01200824, 0x09090e90, 0x0c0a1113, 0x07050404, 0x0a0c0c0c, 0x17021010, 0x2101100f, 0x13142234, 0x16160101, 0x3306395c, 0x0b181317, 0x08070302, - 0x170c0c0d, 0x0e151411, 0x2002010e, 0x14292282, 0x24151601, 0xfe0e0909, 0x281e5370, 0x2982c020, 0x08041222, 0x75836d84, 0x01080532, 0x23170f0f, - 0x1d0e150f, 0x2704251d, 0x150c1d1d, 0x2305af41, 0x0f0d0613, 0x0b206f83, 0x10267782, 0x0e0e010b, 0x25860415, 0x1e1d2824, 0x2482160d, 0x49534020, - 0x00003127, 0xff000003, 0x01c001e0, 0x001500a0, 0x0040002b, 0x1807cd74, 0x25088788, 0x26272623, 0x4e181127, 0x16200877, 0x84057b41, 0x54352015, - 0x11240521, 0x07060706, 0x112e1084, 0x37363736, 0x0e0d01a0, 0x0e142014, 0x0888010d, 0x01211292, 0x83228d70, 0x7601202b, 0xfe21082a, 0x213f87a0, - 0x72496001, 0x21138808, 0x2d83b0a0, 0x88e0fe21, 0x464a8423, 0xe0220527, 0xcb820002, 0x52002628, 0x06010000, 0x98823107, 0xb64c1520, 0x5f2f2006, - 0x352005b4, 0x3522a984, 0x3f663736, 0x15172505, 0x33233503, 0x27200d82, 0xdc852683, 0xf2832120, 0x33282184, 0x17161706, 0x33152333, 0x2005294e, - 0x05cf6433, 0x112ea82f, 0x460b0605, 0x0b461111, 0x2e110506, 0x0d7567a8, 0x01534027, 0x0702030d, 0x65158747, 0x01320509, 0x471b1212, 0x0d030207, - 0x05935301, 0x12161612, 0x5b699305, 0x0e012c06, 0x0e460c0e, 0x0e0c460e, 0x8340010e, 0x08a74326, 0x00ff4027, 0x11110f40, 0x83148d0f, 0x24158357, - 0x10100640, 0x05bf4106, 0x042af384, 0x44001900, 0x35250000, 0x01821521, 0x2120c288, 0x08408518, 0x89057d69, 0x023b21fe, 0x1e411a84, 0x2726290e, - 0xc0011523, 0x800180fe, 0xd175b889, 0x83a02009, 0x87a0208b, 0x109027da, 0x16172290, 0x0e412601, 0x0126260b, 0x4020500f, 0x84c98e40, 0x84d88931, - 0x1716230e, 0xfc8b1022, 0x010f1023, 0x22cf8a40, 0x851a0014, 0x08a95bcf, 0x2709bd5b, 0x013b3501, 0x35332315, 0x1527bb82, 0x06070623, 0x6916011f, - 0x35200615, 0x1805ea5d, 0x24089f4a, 0x36373633, 0x05b64137, 0xfe27cf8f, 0xa0109040, 0x8f0f50e0, 0x829782bf, 0x22a284d8, 0x841b1212, 0x8e2020ec, - 0x211782ba, 0xe4830001, 0xc18d0f20, 0x16172223, 0x0cad4101, 0x44060021, 0x1a2208db, 0x434e4a00, 0x05002408, 0x84313736, 0x21ae8302, 0xae832726, - 0x2105c960, 0xc0501716, 0x068d6405, 0x0282d582, 0xf6443720, 0x06a95a05, 0x15260c83, 0x06010f14, 0xc5502223, 0x06072206, 0x210b8407, 0x22823637, - 0x4e031721, 0x27210855, 0x09f56437, 0x2308a064, 0x00010716, 0x120d7f18, 0x22224908, 0x2f48393a, 0x100a0a27, 0x070d0d0e, 0x05050704, 0x03032310, - 0x13130c05, 0x0503050b, 0x030b070d, 0x0a030706, 0x09120704, 0x150d0c09, 0x04190b0d, 0x07164103, 0x1e0b0304, 0x0b2b0709, 0x270b0201, 0x011a0f15, - 0x010f100f, 0xb7300484, 0x0e0e0408, 0x0d030806, 0x2014060e, 0x0a0a0b0b, 0x40210484, 0x91668401, 0x9b35087e, 0x0404040d, 0x0d050605, 0x0f101006, - 0x03021108, 0x01010e07, 0x0105060e, 0x040f0a02, 0x090b1a07, 0x0e0f0b17, 0x07110f0c, 0xd7020210, 0x09090817, 0x06130301, 0x238e820b, 0xdffe0f04, - 0x2507eb5e, 0x060e1885, 0x04820d03, 0x500e0427, 0x0b0a0a20, 0x2004840b, 0x06675400, 0xc001802a, 0x41002c00, 0x65006000, 0x0c254518, 0xe15c3620, - 0x2726220a, 0x6d461836, 0x2615280b, 0x0722012b, 0x71062527, 0x272111f3, 0x097b4a03, 0x06171422, 0x280a127e, 0x27351716, 0x36170706, 0x814a1837, - 0x039a220c, 0x05bd4540, 0x09024025, 0x52400101, 0x40380527, 0x701a1601, 0x01c90c0c, 0x1b1b2919, 0x0c080801, 0x08080c88, 0x291b1b01, 0x22082376, - 0x8603030f, 0x253f2a2b, 0x02058935, 0x5f2738b0, 0xe7481801, 0x0e78220a, 0x058b4a0f, 0x82121521, 0x05125255, 0x01014026, 0x059e030b, 0x04204783, - 0x56824f82, 0x5e830420, 0x8500ff21, 0x20252429, 0x85400202, 0x213f2b29, 0x0e6d8f06, 0x2606df0f, 0x335a764a, 0x058f5508, 0x33002124, 0x0d464c00, - 0x053e4e08, 0x07061535, 0x17140706, 0x23061716, 0x26272621, 0x23051127, 0x55131735, 0x37211081, 0x2eff8226, 0x07062315, 0x15331716, 0x37361716, - 0x82363335, 0x35232713, 0x12120100, 0x8582a01b, 0x2438802d, 0x14140123, 0xff050522, 0x82121b00, 0x808023b9, 0x756b3080, 0x0110220f, 0x09fe4c0f, - 0x80200988, 0x802d2f83, 0x2709090e, 0x3e2d2e10, 0x1825252d, 0x26558301, 0x80408001, 0x6b80fe80, 0xd0210f76, 0x053d4d0f, 0x0f42488c, 0x0018260a, - 0x0039002c, 0x22e78257, 0x83373621, 0x055355aa, 0x41212721, 0x052308d0, 0x18231523, 0x220c584c, 0x4d17023d, 0x2327053d, 0x36373435, 0x69150733, - 0x41180931, 0x35200823, 0x2907cb59, 0x1f9d0125, 0x0f1f2f2f, 0x4c180a09, 0x4c270777, 0x100a0b06, 0x18405b01, 0x200a734c, 0x20cd8290, 0x06d76840, - 0x8206f473, 0x08226006, 0x011f0037, 0x0a021f01, 0x090b0f0a, 0x01011472, 0x0b097214, 0x200b0a10, 0x814c18a0, 0x2050230a, 0x32821080, 0x82303021, - 0x30202149, 0x2009b75a, 0x5b0f8280, 0xbf6f0880, 0x00022906, 0x7800c001, 0x93008a00, 0x240ac552, 0x37171615, 0x05494f27, 0x2f060729, 0x17160701, - 0x18363533, 0x2308d96d, 0x17070623, 0x08594418, 0x27013f25, 0x52150706, 0x33200976, 0x5c69ec82, 0x011f2209, 0x05d77337, 0x85272621, 0x36332540, - 0x06072737, 0x2905f24c, 0x17010f16, 0x23353736, 0x146f2726, 0x0a734e05, 0x47183720, 0xc0310801, 0x16501602, 0x10160202, 0x0b18232f, 0x11110e0e, - 0x24048338, 0x061c180b, 0x073c5222, 0x1c062229, 0x11110b18, 0x83380e0e, 0x180b2404, 0x18102e24, 0xaf08c772, 0x6e302036, 0x974a0fea, 0xa8012108, - 0xc605a14a, 0x2f23216d, 0xc820a49e, 0x200f016f, 0x09055b68, 0x2805db48, 0x018002c0, 0x004100c0, 0x0dbf4472, 0x65433720, 0x05764306, 0x37272630, - 0x36371617, 0x0726012f, 0x07011f06, 0x7d432726, 0x058e4306, 0x56070621, 0x272506d3, 0x23070617, 0x43328435, 0x162205a2, 0x4e4c0717, 0x223c8405, - 0x43171637, 0xba4306c1, 0x37362205, 0xdf491827, 0x119f220a, 0x188c4105, 0x2124e794, 0x01026e5f, 0xbf413298, 0x1a1f220c, 0x0be044fc, 0x231e7c22, - 0x411e3741, 0x21240ea5, 0x0909d14b, 0x042232a5, 0x0b44c60e, 0x0011290a, 0x00670055, 0x01000076, 0x10896e18, 0xed5e1720, 0x05af4205, 0x2009f745, - 0x054b4915, 0x20066e41, 0x058a580f, 0x1716152c, 0x013b1716, 0x27263732, 0xaa6f3d23, 0x6b05200a, 0x27211006, 0x20328216, 0x05736c2f, 0x17363722, - 0x45074d7e, 0x552205a5, 0x99560229, 0x29022207, 0x053a460b, 0x29302026, 0x07011b1b, 0x3006f942, 0x110e0e38, 0x2d020711, 0x5050442d, 0x13220c0c, - 0x06856313, 0x2b010b22, 0x2f0f0645, 0x480a0a4d, 0x0a280b0b, 0x1d0b0b0a, 0x010b0b3d, 0x220c5b7c, 0x57341c50, 0x3421075b, 0x207c851c, 0x217a83d0, - 0x7d430706, 0x83382006, 0x06072970, 0x022d2d44, 0x50251902, 0x4507a863, 0x2b2e0faf, 0x0a480b0b, 0x0b0b280a, 0x3c1c0a0a, 0x4b180a0a, 0x5b410c3b, - 0x00702205, 0x575d417b, 0x2111195c, 0x5d5f2635, 0x18352006, 0x4109a072, 0x9b204862, 0x8442fc8f, 0x16022105, 0x41078a48, 0xfe214462, 0x0fc841b0, - 0x23084857, 0x500f01c0, 0x04826b83, 0x410bdf48, 0x80200567, 0x20696541, 0x06fa4537, 0x4605e245, 0x37240542, 0x07161736, 0x20596a41, 0x0d83733b, - 0x23054673, 0x0a0a0b0b, 0x20567341, 0x13f973b5, 0x3b447583, 0x0057240c, 0x41820064, 0x3d224977, 0xce720601, 0x2a73480c, 0x233d7941, 0x30080808, - 0x20074844, 0x1d9848bb, 0x24394544, 0x0121110d, 0x056a44d0, 0xb7484020, 0x01402f28, 0x004b00c0, 0x00630057, 0x33161700, 0xa84b3231, 0x0b12630a, - 0x09874918, 0x22232622, 0x220a964b, 0x66022b15, 0x3b220674, 0x4a181501, 0x032109b9, 0x09d56833, 0x6a230521, 0x892509da, 0x0a0d0d0a, 0x05a64b60, - 0x59422920, 0x29602107, 0x2005374b, 0x201c8b60, 0x072e66c0, 0x09201d88, 0x0e24d483, 0x40010909, 0x37220886, 0x32840909, 0x2a090923, 0x21f68573, - 0x5a852a73, 0x19976182, 0x80370122, 0x2105f645, 0x08878080, 0x2c0c5345, 0x00510045, 0x006a005d, 0x17000088, 0x64581837, 0x21352608, 0x23373435, - 0x2e054135, 0x32331624, 0x08411337, 0x17332109, 0x21090841, 0xee4a3723, 0x41972029, 0x00220830, 0x2b414b0b, 0x40802113, 0x8b07054d, 0x4109201d, - 0x40200513, 0x21065946, 0x7742f040, 0x4137201c, 0x10220830, 0x4741161a, 0x09092122, 0x20124941, 0x22764250, 0x18070021, 0x2f08fb51, 0x00300023, - 0x004a003d, 0x00640057, 0x01000087, 0x4b0aab79, 0x3d520628, 0x012b2709, 0x27262726, 0x7c181711, 0x062409e8, 0x07061707, 0x0a8a0e89, 0x37070622, - 0x25221998, 0xe54f1617, 0x26272206, 0xb2481835, 0x37342407, 0x6a013b36, 0x013008cb, 0x0e0d0120, 0x0e146014, 0x0228010d, 0x18021616, 0x2007424a, - 0x251384a0, 0x200f0140, 0x0484010f, 0x07861020, 0x10200c82, 0xb0201589, 0xfe251594, 0x090950a7, 0x05e94250, 0x42731a21, 0x73210583, 0x05af421a, - 0x2609755f, 0x02164890, 0x18481602, 0x83083959, 0xa0012208, 0x22708720, 0x89500f01, 0x89702067, 0x8a7d8a15, 0x84d72015, 0x8376826e, 0x42192075, - 0x1920050e, 0x974e8185, 0x00232f0c, 0x006a0058, 0x2500007e, 0x36313732, 0xe642013d, 0x82142018, 0x06072619, 0x31272607, 0x80581826, 0x37162108, - 0x2406e34d, 0x16171637, 0x580b8317, 0x262407af, 0x31072627, 0x26242d83, 0x06232707, 0x15213082, 0x222b8236, 0x82363336, 0x49352045, 0x232205b8, - 0x36593115, 0x35172608, 0x090e2001, 0x8fa08609, 0x124e08ba, 0x232a2b23, 0x1c161315, 0x0307070d, 0x0d0b0b03, 0x322c1526, 0x07091f31, 0x311f0907, - 0x26142d32, 0x030b0b0d, 0x0d070703, 0x1513161c, 0x232a2a23, 0x904e1213, 0x010d0e14, 0x11140a08, 0x13151511, 0x80011e1d, 0x140e0d01, 0x131d1e90, - 0x12821515, 0x60080926, 0xd30e0909, 0x41068241, 0xd3200a9c, 0x46288582, 0x18020119, 0x07120f0d, 0x0d206a83, 0x0a267282, 0x0301190f, 0x00820410, - 0x01031025, 0x830a0f19, 0x2a72836a, 0x0c0e1207, 0x19010218, 0x83e60c0c, 0x05b92a5d, 0x0f0d0502, 0xe0140c01, 0x277c8330, 0x0c1401e1, 0x0d0e0101, - 0xb9211582, 0x086b6300, 0xc0014029, 0x88005300, 0x51130000, 0x1c410502, 0x17142105, 0x82091e41, 0x32332109, 0x20058641, 0x29078217, 0x36171617, - 0x2726013d, 0x83442726, 0x3523211a, 0x13212084, 0x32a14126, 0xac837020, 0x04831020, 0x06060523, 0x062f4115, 0x111a2127, 0x1d111414, 0x0730411e, - 0x05060622, 0x3020e283, 0x2013a141, 0x22198380, 0x4113c380, 0x012130a6, 0x203983c0, 0x230483d0, 0x020a0c60, 0x2f063d41, 0x0c0c1301, 0x010c1414, - 0x02050d0f, 0x600c0a02, 0x93209983, 0x2111a941, 0x1883d093, 0x0c5afe23, 0x2fae410c, 0x00000023, 0x08775e0b, 0x35002335, 0x59004700, 0x7d006b00, - 0xa1008f00, 0xc500b300, 0x1800d700, 0x210b7d5e, 0xba450607, 0x183f2005, 0x240a0585, 0x2b262734, 0x117f4c01, 0x112d9d18, 0x1805e557, 0x200a975a, - 0x054d7d1f, 0x200ba84f, 0x10c74c33, 0xf4632520, 0x9035920f, 0x25172159, 0x27204790, 0x1720478f, 0x21067c5d, 0x7c44ca33, 0x44c92005, 0x05820518, - 0x56648020, 0x10b37e11, 0x08767718, 0x4f071445, 0x329010ea, 0x4fd0fe21, 0x33900f83, 0x218fb020, 0x50b00121, 0x78900f41, 0x1e5b0120, 0x44c92006, - 0xca2105d1, 0x05534533, 0x06828020, 0x8708ff6c, 0x10077f56, 0x32905e90, 0x5020918f, 0x3190908f, 0x4390d5a1, 0x00820020, 0x20000332, 0x6002e0ff, - 0x1200a001, 0x5a003600, 0x21250000, 0x18065249, 0x2b088d42, 0x35363723, 0x26273431, 0x010f2223, 0x49094f48, 0x1628096e, 0x013f3233, 0x31232625, - 0x36201f9b, 0x02233982, 0x4100fe40, 0x02200526, 0x17200786, 0x20050442, 0x05044229, 0x260b3f48, 0x0ac0fe60, 0x930a0d0d, 0x09092119, 0x200c5e6b, - 0x05814189, 0x85d32a21, 0x49d3205a, 0x2e220a85, 0x16930909, 0xfa823083, 0x0006003b, 0x02c0ff10, 0x00c0016f, 0x00260014, 0x004a0038, 0x00b800a3, - 0x07061300, 0x06365115, 0x8f683f20, 0x26352305, 0x6f6c1727, 0x90072010, 0x11816c11, 0x47500520, 0x43362005, 0x3b2005b9, 0x26058c63, 0x07171617, - 0x8e161706, 0x36372513, 0x2726012f, 0x86059c56, 0x0f062207, 0x820f8401, 0x202f8f07, 0x243f8313, 0x0f262736, 0x05ef5101, 0x1734af83, 0x17021690, - 0x0e0e1111, 0x40111140, 0x11110e0e, 0xd8160217, 0x0b305618, 0x0c8bb020, 0x63380121, 0x058505af, 0x1bd8fe39, 0x0913140c, 0x1b020224, 0x300e0909, - 0x1b09090e, 0x09240202, 0x880c1413, 0x281f830f, 0x15140c26, 0x14191418, 0x24078422, 0x0c141518, 0x830d8222, 0x8b262007, 0x8ad7202b, 0x25938681, - 0x1602c001, 0x95831776, 0x1e829a82, 0x170e0e26, 0xc8021676, 0x6020838b, 0x28200c8b, 0x6a2aab8b, 0x0c091331, 0x04024414, 0xe4413631, 0x31362a05, - 0x14440204, 0x3113090c, 0x20108526, 0x25218426, 0x0d0c1547, 0x04833f0d, 0x3f150c27, 0x150c0d0d, 0x21238c47, 0x7b8b2101, 0x00238f87, 0x82000300, - 0x80022900, 0x13008001, 0x5a004700, 0x08594e18, 0x06071434, 0x26272223, 0x37341135, 0x16173336, 0x0f143115, 0xa8493301, 0x011f2107, 0x820eca49, - 0x2c308420, 0x3526012f, 0x36013f34, 0x25173233, 0x20428c11, 0x4d228232, 0xb5850687, 0x0909d724, 0x354ce62a, 0x21128f11, 0x24458901, 0x21378208, - 0x52188001, 0x0782071f, 0x82400121, 0x0a492511, 0x290a0d0d, 0x430c3d43, 0x138e0657, 0x75fe2921, 0x3684068a, 0x67503e82, 0x052b5e05, 0x2f001722, - 0x5f20fd82, 0x9f42fd82, 0x33173305, 0x34353736, 0x010f2627, 0x07222726, 0x07333615, 0x77791617, 0x22233705, 0x011f0607, 0x17140706, 0x36352633, - 0x16230537, 0x27070615, 0xf64a0726, 0x37323105, 0x36012f36, 0x07273437, 0x36372726, 0x23272627, 0x37081782, 0x3f161714, 0x32171601, 0x23063537, - 0x202a3be0, 0x0a050307, 0x0a010f70, 0x3d22070a, 0x0f101056, 0x07217c11, 0x0101090a, 0x050a700f, 0x35220703, 0x03410202, 0x5a012301, 0x198f0583, - 0x3f93de20, 0x01600123, 0x22288f23, 0x913b0341, 0x2a3b2468, 0x91110f45, 0x93c02041, 0x08b7663e, 0xc001002c, 0x00004d00, 0x31230613, 0xde412722, - 0x011f2207, 0x05ae6016, 0x11012f22, 0x200cb07c, 0x05005c01, 0x1342f982, 0x27338212, 0x3233010f, 0xf7073517, 0x2312784e, 0x1b121201, 0x23074e4d, - 0x01242536, 0x0f4d0f83, 0x1d232413, 0x4e290129, 0xfe22106e, 0x5f181bed, 0x01230839, 0x83362524, 0x0e02420d, 0x29237383, 0x822aa411, 0x050022da, - 0x9b651800, 0x00282807, 0x0062003a, 0x82b8008b, 0x333625e3, 0x011f3231, 0x0d0b4118, 0x07063125, 0x84012b06, 0x08ac4cfa, 0x18060521, 0x200f956e, - 0xc6a71805, 0x01392509, 0x16311732, 0x18062c75, 0x4109d759, 0x8c55053b, 0x7a1d2008, 0x1523067e, 0x7f010f14, 0x22230995, 0x82263127, 0x01392328, - 0x3f411335, 0x09186209, 0x82303121, 0x37342701, 0x33363736, 0x368a3930, 0xda830920, 0x29436920, 0x03022705, 0x05060504, 0x66436007, 0x6a132505, - 0x77010909, 0x0f6f4018, 0x76f3fe21, 0x2582064c, 0x72030421, 0x69200602, 0x22059341, 0x852d016a, 0x8c0f8748, 0x826d202a, 0x216c8d4f, 0x6a870e09, - 0x09b70124, 0x2d876a09, 0x84820720, 0xf7245a8d, 0x0112121b, 0x8377898b, 0x8e092006, 0x735e84ae, 0xbf8307b5, 0x2b856f8a, 0x8f00ff21, 0x4f6d839b, - 0x4d180676, 0x1b280bbb, 0x51003600, 0x7f006d00, 0x60088363, 0x5e5e061d, 0x33372706, 0x36373435, 0x03820333, 0x20054479, 0x093b7607, 0x26230128, - 0x27372627, 0x50183533, 0x0a420f3c, 0x05332406, 0x18313526, 0x18088750, 0x26086341, 0x06070615, 0x1807012f, 0x8410777e, 0x182020d0, 0x250d6e8a, - 0x0e090920, 0xde834057, 0x070e4024, 0xda471509, 0x22248406, 0x18012089, 0x450a348a, 0x01280639, 0x40090929, 0x01131310, 0x23850f86, 0x7a184920, - 0xc0200c06, 0x3b905382, 0x4077fe22, 0xa9203992, 0x4b828e92, 0x90943720, 0x09204082, 0x0938ab18, 0x0006003b, 0x02c8ff08, 0x00b80178, 0x00330014, - 0x005a0045, 0x0084006f, 0x1f361300, 0x05285b01, 0x2307062d, 0x37362726, 0x37262733, 0x60373617, 0x1620051c, 0x20097867, 0x248d1807, 0x4b1e8608, - 0x17220aa5, 0x9e6f3601, 0x85448406, 0x0137244f, 0x85013f26, 0x07005752, 0x27060724, 0x1e732721, 0x07226005, 0x82161721, 0x110f2314, 0x6b5a3f11, - 0x16603805, 0x26160202, 0x770e0e3f, 0x251a190c, 0x25313125, 0x0d191a25, 0x890d0505, 0x060c230d, 0x9842ba06, 0x8201200f, 0x0e0e2341, 0x3d83263f, - 0x16244284, 0xc0fd3f02, 0x1123118f, 0x8f400211, 0x11112367, 0x2791b101, 0x1f1ae52e, 0x0116161e, 0x1e161601, 0x0c0c1a1f, 0x4c200d8d, 0x230f9c43, - 0x0e0e3101, 0xfe21c18f, 0x91118f1e, 0x0e0e2165, 0x08135818, 0xc001e026, 0x5b002d00, 0x09bd8e18, 0x660d7951, 0x36230d6d, 0x47373637, 0x032005da, - 0x4705ff44, 0x105e0edc, 0x050f4805, 0x89013d21, 0x4901212d, 0x52063654, 0xd32007c0, 0x210d8145, 0x26542ad3, 0x0a145406, 0xab429320, 0x1b012408, - 0x8293291b, 0xb7012121, 0x4f832589, 0x12012924, 0xdf421b12, 0x25362407, 0x83290124, 0x00ff2115, 0x0922258e, 0x24870e09, 0x1b1b2922, 0xfe822485, - 0x2206c356, 0x82b00100, 0x005a27ff, 0x007e006c, 0xd5831300, 0x52057c52, 0x581805d5, 0x27230937, 0x46012b26, 0x13200ea7, 0x2210a652, 0x181d0607, - 0x89097891, 0x333623fe, 0x68721f32, 0x16012511, 0x17163117, 0x8307ae7d, 0x45f9202d, 0x1a210556, 0x48a78393, 0x534f08cc, 0x510e200b, 0x20410a02, - 0x06794f0e, 0x2342f920, 0x63fe200f, 0xbb4208c0, 0xa7012107, 0x24051247, 0x1b1b0119, 0x071a4129, 0x210fd551, 0xdd5100ff, 0x0b44410f, 0x20065e50, - 0x100e4367, 0x1039a218, 0x4d000021, 0x1320103b, 0x6c07c679, 0xb0520596, 0x31152105, 0x32200783, 0x520bbc4f, 0x05200ee2, 0x4f05fa56, 0x372005e4, - 0x20150253, 0x07324d40, 0x4d07424d, 0x01211a3a, 0x193a4d40, 0x70460120, 0x0e092407, 0x4d09090e, 0x7118393b, 0x172d098f, 0x00003800, 0x31072201, - 0x06111506, 0x67a81807, 0x34112609, 0x07232627, 0x18178206, 0x2010985c, 0xa7971815, 0x01232708, 0x09090e00, 0xdb41021e, 0x1e022407, 0x4f0e0909, - 0x012008b1, 0x20081e68, 0x07385d70, 0xc0017022, 0xfe232182, 0x412512f7, 0x252307a1, 0x82090112, 0x68802043, 0xe020133f, 0x2107055d, 0x008200e0, - 0x0000022f, 0x0001c0ff, 0x2c00c001, 0x00004000, 0x84ad8513, 0x8065188c, 0x37362107, 0x2305f44a, 0x35272627, 0x26240b83, 0x01392327, 0x13220283, - 0x70722722, 0x17362106, 0x2d058178, 0x16402306, 0x07160202, 0x19100101, 0xc0830f0f, 0x92838020, 0x190f0f26, 0x07010110, 0x082b1a83, 0x14400870, - 0x01010d0e, 0x840b0c0c, 0x83012002, 0xc0012ea3, 0x02161602, 0x13410701, 0x1b1b120b, 0xec701821, 0x21c02908, 0x0b121b1b, 0x01074113, 0xfe2d1f83, - 0x130d0d82, 0x0e13140d, 0x130e0c0c, 0x210a8214, 0xd743000d, 0x26bf8405, 0x003d0008, 0x82530048, 0x163324c3, 0x82231517, 0x36072baa, 0x3b36013f, - 0x011f3201, 0xd7831716, 0x0622038d, 0xee6f2307, 0x27262305, 0x03893736, 0xc663c982, 0x07062105, 0x0c853484, 0x16505832, 0x16028002, 0x19160158, - 0x135a1310, 0x01161910, 0x0123dd82, 0x89151501, 0x0e0d2203, 0x059b4114, 0x1228148b, 0x01400112, 0x010f600f, 0x10200484, 0x0c820786, 0x2834f283, - 0x98021628, 0x080b0c19, 0x190c0b08, 0x180e0c16, 0x1a0e0e1a, 0x14200387, 0x8b06596a, 0x0e182413, 0x5d58160c, 0x7020077b, 0x0a164c18, 0x4e180020, - 0x2a2409b7, 0x00004400, 0x2205275e, 0x82303330, 0x373628be, 0x37361732, 0x82323336, 0x333622da, 0x23058216, 0x31323132, 0x14250783, 0x35262107, - 0x18c17515, 0xe2820020, 0x01011b39, 0x1e151506, 0x130a1217, 0x13171713, 0x17120a13, 0x0615151e, 0x821b0101, 0xfe0923d9, 0x6c750912, 0x00012116, - 0x1c262083, 0x0b011112, 0x00820c13, 0x010b1325, 0x831c1211, 0x0e122450, 0x755b120e, 0x7b4b1316, 0x001c290a, 0x003e0031, 0x0056004b, 0x20068358, - 0x6bae8321, 0x36240580, 0x3736013d, 0x22055955, 0x68360135, 0x17230545, 0x65013f16, 0x17250582, 0x36253716, 0x212e8237, 0xdc820615, 0x05352723, - 0x88641815, 0x07212509, 0x17160706, 0x2105d041, 0xb4180001, 0xd3230d62, 0x83021e03, 0x70200811, 0x0a0a3b01, 0x400b0b40, 0x0b0b0a0a, 0x0f0f0125, - 0x0b0b2501, 0x0f01c5fd, 0x010f6001, 0xa0fe0f01, 0x602b0582, 0xff0e0909, 0x09090e00, 0x41d04001, 0x90200ad0, 0x2107b141, 0x098360fe, 0xf3080825, - 0x8320210c, 0xfe502209, 0x825084d5, 0x0a0a2356, 0x32837924, 0x0a247924, 0x9558ab0a, 0xe0502109, 0x55824d82, 0x4140e021, 0x04300bd3, 0xe0ff0000, - 0xa0014002, 0x45004000, 0x4f004a00, 0x210c0155, 0xf1822315, 0x0a038318, 0x18058247, 0x850c1683, 0x23352112, 0x2308f967, 0x15052123, 0x23200d82, - 0xe6450488, 0x48282106, 0x83068446, 0x0756440f, 0x83064a47, 0x2848210e, 0xfe269f85, 0x50a80100, 0x02848050, 0x46a00121, 0x402105b4, 0x5a218380, - 0x1b2208ef, 0x0f8f011b, 0x86408021, 0x84402029, 0x06002700, 0xc0ff2000, 0xd7828002, 0x3a00352a, 0x44003f00, 0x65005600, 0x3227dba2, 0x36373617, - 0x9b171637, 0x11c855d0, 0x860e7e62, 0x27f190a8, 0x29170909, 0x2f413529, 0x9820ea94, 0x620fa060, 0x0b410f69, 0x2c022718, 0x01011a1b, 0x02414827, - 0xf0fe210d, 0x620f5861, 0x07200f55, 0x22122341, 0x416a005f, 0x82564725, 0x13466210, 0x20342a41, 0x62d98f08, 0x2b411032, 0x4160202f, 0x1d620f7c, - 0x42002015, 0x6f201457, 0x62583141, 0x36411812, 0x19fe6145, 0x61403f41, 0x434119e9, 0x00512513, 0x13000070, 0x25092446, 0x2b060714, 0x215b1501, - 0x07062105, 0x1805d36d, 0x2b0c9042, 0x33352726, 0x27222335, 0x15053526, 0x07250882, 0x33152335, 0x26098327, 0x31072205, 0x60011d06, 0x29590589, - 0x17162505, 0x32151716, 0x21061351, 0x3482012b, 0x34013d2a, 0x35333637, 0x0e090920, 0x2907de49, 0x1f300828, 0x090f0120, 0xa5442c1c, 0x2848300e, - 0x0109090e, 0x30505078, 0x50d05050, 0x5f780150, 0x546a0750, 0x05b54407, 0x18065e59, 0x280ac144, 0x1f200140, 0x10081930, 0x15ab4420, 0x86402021, - 0x5f902000, 0x2223083e, 0x83011617, 0x0f756a55, 0x28074349, 0x014002e0, 0x00330080, 0x0b2b4168, 0x25051f4c, 0x07060706, 0x04822215, 0x315c3120, - 0x240f8305, 0x2726011d, 0x051f5c26, 0x5a82f384, 0x31373622, 0x20054649, 0x232a8216, 0x27262706, 0x4a05094f, 0x05820516, 0x26221182, 0x01833637, - 0x16311723, 0x21088217, 0x23410017, 0x08082a07, 0x13131d0c, 0x1d111401, 0x07bc451e, 0x111d1e2e, 0x13130114, 0x08080c1d, 0x2a233301, 0x210ea95d, - 0xa95d2d14, 0x152c2109, 0x230ea95d, 0x1312232b, 0x20070962, 0x823f8324, 0x0b7d2346, 0x7a180114, 0x802509a0, 0x0b140101, 0x8272837d, 0xfe242279, - 0x2feb5bda, 0x000c0c22, 0x2c05774a, 0x00c001c0, 0x00380018, 0x23151300, 0xc8881835, 0xae7c1808, 0x0f062209, 0x0e784201, 0x75530720, 0x012f3f07, - 0x26272223, 0x02306035, 0x30412a2b, 0x022b2a41, 0x1e1d0130, 0x1e2c302c, 0x0960011d, 0xed410e09, 0x16053307, 0x130d0d03, 0x0d0d13ea, 0x0e051603, - 0x28010909, 0x2d830808, 0x08213683, 0x832d8308, 0x4e482036, 0xd520087f, 0x2005ae48, 0x414282d5, 0x1f2a05db, 0x5c02c5ff, 0x3e00bf01, 0xa7827d00, - 0x27363725, 0x59010f26, 0x0622050a, 0x08852307, 0x33171624, 0xab820715, 0x16170635, 0x1716023f, 0x011f3736, 0x2f363716, 0x012f2601, 0x59363335, - 0x23230630, 0x85052726, 0x3437253d, 0x010f2227, 0x2308a26a, 0x07011f06, 0x3d835483, 0x14170125, 0x59371617, 0x4182060b, 0xd3583720, 0x277a0808, - 0x21c52736, 0x0b151307, 0x150b1a1a, 0x10220713, 0x07041107, 0x08031516, 0x26201304, 0x0108030f, 0x06051616, 0x26261212, 0x05051312, 0x08011616, - 0x20260f03, 0x02080513, 0x05061615, 0x01100711, 0x0b10424c, 0x0634130e, 0x08041615, 0x070f0f13, 0x09161405, 0x1c10050d, 0x0a10250c, 0x13100c23, - 0x2012190f, 0x0f0e1f22, 0x0a151306, 0x1c0b0516, 0x0d111b0c, 0x120f0d1b, 0x5d830e10, 0x49554908, 0x13070b15, 0x07133a3a, 0x0b49150b, 0x03151512, - 0x12281606, 0x040a1701, 0x05163810, 0x05281501, 0x1f02021f, 0x01162804, 0x10381605, 0x01170a04, 0x06162812, 0x12151503, 0x0f2fb40b, 0x250b1113, - 0x1604163f, 0x080b0250, 0x2f087682, 0x12271405, 0x0b14100b, 0x122d0c04, 0x1f100b10, 0x11152405, 0x15260d12, 0x3513060a, 0x141b0b0f, 0x1f0d0810, - 0x0f0d1012, 0x11130810, 0x09000000, 0x20089355, 0x06174a24, 0x65005828, 0x84007200, 0x47189900, 0x15220c25, 0xdd820706, 0x4406f06b, 0x23250698, - 0x27262726, 0x0c976211, 0x620cb162, 0x27200c97, 0x6209bc62, 0x338c0eb1, 0x3411dd4f, 0x011f0627, 0x16070623, 0x06073317, 0x013f1617, 0x26012f36, - 0x0a614a07, 0x11111e26, 0x170e3302, 0x08c56b18, 0x0e146025, 0x4950010d, 0x43620aff, 0x2015890a, 0x621594d0, 0x01200a6f, 0x24100870, 0x1c0a0a93, - 0x2b418359, 0x0a0a1c59, 0x0a380b0b, 0x0b0b380a, 0x2709cc62, 0x232319b8, 0x11324c29, 0x098f9d18, 0x0d015027, 0xa001140e, 0x206a89b0, 0x1fc46210, - 0x8a0ada62, 0x00ff212b, 0x2a0ff847, 0x1d0b0b43, 0x010f0f01, 0x840b0b1d, 0x418c8286, 0x93201bcb, 0x0d154718, 0x08b86518, 0x36331526, 0x34272637, - 0x2f056659, 0x17212726, 0x16333736, 0x07061517, 0x35272623, 0x36210a8a, 0x20198c37, 0x8e248927, 0x4a338c19, 0xe55e202f, 0x09bc4108, 0x330e1726, - 0x1e111102, 0x41055c4f, 0xe8630a0d, 0x0aa4410a, 0x4f41b020, 0x8a158a09, 0x7001212b, 0x4a0fe048, 0xc0200f5d, 0x34426a84, 0x07644c05, 0x11015029, - 0x23294c32, 0x83b81923, 0x64f02011, 0x0d6514e1, 0x6590200a, 0x924a1f23, 0x0a002121, 0x22188743, 0x4198008d, 0x0e6d74bd, 0x61c24125, 0xfb42e020, - 0x10f44a0f, 0x4b64c241, 0x4f452629, 0x419d2019, 0x5b4b86c5, 0x72ca4118, 0x4119884b, 0xbd4b75d3, 0x43082019, 0x202e089f, 0x3a002d00, 0x54004700, - 0x6e006100, 0xd5418200, 0x3736241a, 0x45272611, 0x3f204f55, 0x2c06fa54, 0x36331133, 0x27263537, 0x26273423, 0x12ba4123, 0x20083051, 0x414545e0, - 0x090eb02d, 0x0f904009, 0x900f0101, 0x660e0909, 0x885105c4, 0x08166405, 0x4506eb46, 0x6020452f, 0xfe286582, 0x01400120, 0x010f800f, 0xa7487b82, - 0x01402308, 0xa74800c0, 0x007f210d, 0x25195743, 0x36013d26, 0x02823537, 0x20518541, 0x2a4c6f37, 0x25119c41, 0x1e020959, 0xe3461f01, 0x6cc02047, - 0xad411cea, 0x120e2815, 0x19122580, 0x41921f2f, 0xcb4d45b0, 0x0fc34d09, 0x2007db4d, 0x29008200, 0xff000008, 0x018001c0, 0x434300c0, 0x005e2607, - 0x007d0069, 0x4d434394, 0x23070623, 0x06516d15, 0x2105c848, 0xa34a3736, 0x37362405, 0x4f272635, 0x15580a1b, 0x17272108, 0x8205ef5c, 0x182f2010, - 0x2108ef61, 0xb8411736, 0x43602011, 0x58232a55, 0x6d010f30, 0x0f29052a, 0x20160201, 0x0f010216, 0x635b1888, 0x4f901809, 0x23078607, 0x0f0123c3, - 0x0a221c82, 0x0888060c, 0x2015b841, 0x58308201, 0x964805a6, 0x83b02020, 0x10402152, 0x0f295682, 0x02021618, 0x010f5816, 0x0aa94820, 0x2020ca87, - 0x29220888, 0x2c832b34, 0x040b6024, 0x0a8a0903, 0x6a080021, 0x2e2e083b, 0x48003b00, 0x62005500, 0x86006f00, 0x214c8d00, 0x2b07310d, 0x1d070601, - 0x30151402, 0x16171615, 0x012b0617, 0x2008c37a, 0x1f2a4c15, 0x22261d4c, 0x181f3617, 0x2307e8bf, 0x26270607, 0x372a0183, 0x17013f36, 0x37361527, - 0x144c3736, 0x262a220a, 0x24ca8220, 0x09371615, 0x23184c0a, 0x0d4c6020, 0x09a73c1f, 0x010e7809, 0x1d0b0c01, 0x0909361e, 0x0b1d1e36, 0x0e01010c, - 0x325f6878, 0x4c021516, 0x9f210903, 0x29488211, 0x01010818, 0x38382d01, 0x1d45042c, 0x15094c0f, 0x144c8020, 0x0afe4b14, 0x04722008, 0x10063004, - 0x26292921, 0x04041726, 0x29262617, 0x06102129, 0xbc265630, 0x28292a1b, 0x43060000, 0x77201257, 0x434a5343, 0x0720151d, 0x7b051458, 0x505106e2, - 0x83352005, 0x3d36430d, 0x09431320, 0x017d2211, 0x0638430f, 0x84062d43, 0x1521480f, 0x20291e43, 0x15ed42a9, 0x65180920, 0x4c5b0912, 0x84518205, - 0x0b5f4d12, 0x240bcb71, 0x00830071, 0x186d4197, 0x34352625, 0x52373637, 0x5e4d059c, 0x128d6d4e, 0x3117142c, 0x32013b16, 0x26353637, 0x86702627, - 0x118d4105, 0x120a5a24, 0x7c461d11, 0x30012147, 0x0f875e18, 0x0a0ae030, 0x0a0fda0f, 0x1b1a010a, 0x1b276627, 0xc844011a, 0x13102715, 0x101d1c24, - 0x8046e060, 0x46b02045, 0x07870767, 0x8182cd20, 0x7f848882, 0x00218882, 0x16bf4910, 0x89007b30, 0xa4009700, 0xbe00b100, 0xd400c900, 0xd344df00, - 0x0611220c, 0x05e27c07, 0x215af150, 0x64851505, 0x36373624, 0x0b823337, 0x71833120, 0x1d230c84, 0x89070601, 0x0715210d, 0x2b054545, 0x17163335, - 0x23351716, 0x27262726, 0x15210b85, 0x18198b35, 0x22154cad, 0x63171627, 0x9d5b07b5, 0x231f450e, 0x38517020, 0x1601242c, 0x98102217, 0x10802504, - 0x01161722, 0x51180499, 0x437f10a6, 0x16022106, 0x4a096745, 0x5e45157c, 0x15fe4a15, 0x20156851, 0x20968950, 0x20a58980, 0x200a8970, 0x20d78940, - 0x20e18960, 0x23158980, 0x681602f0, 0x0482c183, 0x83204021, 0x22048408, 0x84160218, 0x22048207, 0x18000000, 0x2309eb5d, 0x13000030, 0x2305637f, - 0x1f160706, 0x08468418, 0x3f361723, 0x05c96d01, 0x37363725, 0x54012f26, 0x250805da, 0x06272627, 0x2627010f, 0x090c0e11, 0x01106370, 0x35671001, - 0x0f0d0b07, 0x11062165, 0x65210611, 0x070b0d0f, 0x17836735, 0x041a6a27, 0x470e0b0a, 0x29178322, 0xbc01a320, 0x110e0c09, 0x258f20a3, 0x22273d8b, - 0x0a0b0e47, 0x836a1a04, 0x7063213d, 0x0736a382, 0xc0ff2000, 0xc001e001, 0x13000a00, 0x47003e00, 0x5b005000, 0xbc826600, 0x2109ef7f, 0xb3823307, - 0xa2822320, 0x06072727, 0x14021d07, 0x057b4417, 0x21013d23, 0x200b8815, 0x6ebe8203, 0x0722075e, 0x4f7d2617, 0x605c1806, 0x06012108, 0x2107ce55, - 0xde532107, 0x26272306, 0x74180107, 0x5e3508c8, 0x13040b8c, 0x0b0413d0, 0x02201d4b, 0x100e0909, 0x0109090e, 0x2c088600, 0x0a1c2002, 0x8c1a1414, - 0x0815141a, 0x07364211, 0xfe263b89, 0x300e0e8f, 0x04841111, 0x30900126, 0x11110e0e, 0x01210484, 0x202b83a8, 0x2d048450, 0x350a01c8, 0x0b010a35, - 0x28250f4f, 0x5b182040, 0x202c0d6d, 0x0f252840, 0x0f0e184f, 0xb3180e0f, 0x2205db66, 0x88180216, 0x86492067, 0x8753824e, 0x0e0e2165, 0x2e06675f, - 0x00c00100, 0x0041001b, 0x0053004a, 0x4300005c, 0x312b05c7, 0x16150706, 0x33171617, 0x53363321, 0x26270771, 0x27221327, 0x183d2631, 0x220b4281, - 0x82013f36, 0x013b361f, 0x1f161732, 0x15171601, 0x23060714, 0x27330727, 0x22012b26, 0x261a820f, 0x07062726, 0x18371716, 0x18088a95, 0x25078947, - 0x401b1212, 0xa4640001, 0x22222505, 0x8048393a, 0xc020cf82, 0x2e051e5e, 0x06151b01, 0x74120f0e, 0x060e0f12, 0x82011b15, 0x0ec12914, 0x05020e9e, - 0x17020574, 0xc820d187, 0x0122e387, 0x3f8401c0, 0x27092a62, 0x223a3948, 0x00fe0122, 0x5c183782, 0x682d078b, 0x12401021, 0x0a0b0b0a, 0x21104012, - 0x25698268, 0x062a2aea, 0x27418206, 0x64002010, 0xc02805b7, 0xc0012002, 0x40001100, 0x14479418, 0x35031723, 0x0b8e6433, 0x3716172a, 0x2f363736, - 0x23272601, 0x8305fa57, 0x09d16410, 0x2b013528, 0x16070601, 0xfc591517, 0x011d2a05, 0x3b161714, 0x17161501, 0x4f338233, 0x35200616, 0x20056241, - 0x23228223, 0x27263507, 0x74180282, 0xc96308b6, 0x10082107, 0x2c051c41, 0x0c0d070d, 0x03030b0c, 0x341d3407, 0x2803820c, 0x0b030307, 0x080c0c0c, - 0x231e850d, 0x10101801, 0x42057f48, 0x1027051f, 0x113c0f01, 0x832c1702, 0x35302513, 0x0f01010a, 0x14821e82, 0x010f0122, 0x2210b465, 0x7b80a0fe, - 0xb3210678, 0x20618314, 0x27578208, 0x01012c52, 0x0c0c522c, 0x2105db77, 0x5585b314, 0x01e00129, 0x64010f0f, 0x82201309, 0x82902075, 0x0f602513, - 0x5c120201, 0x1b245c84, 0x540c0411, 0x38286e83, 0x09136d05, 0x00010f74, 0x2d059b63, 0xc0016f02, 0x4b001100, 0x8c005d00, 0x47180000, 0x03271145, - 0x27222335, 0x5a013f26, 0x098206f4, 0x16373624, 0x045b011f, 0x012f2206, 0x18098217, 0x6b0b9956, 0x35200888, 0x1805ba55, 0x2209fe5c, 0x6d030706, - 0x4e8b0911, 0x4f8b3320, 0x23212289, 0x0fd066a0, 0x12482408, 0x02040508, 0x0d091c1f, 0x020b0b0c, 0x253a0801, 0x3b253a3a, 0x0b020107, 0x080d0c0b, - 0x04021f1d, 0x41120805, 0x96410570, 0x88012106, 0x0820438f, 0x2024af41, 0x13864110, 0x06075025, 0x82255d08, 0x83072078, 0x2e4e2580, 0x4e2e0101, - 0x09207882, 0x25248083, 0x0706085d, 0x07da7118, 0x01210786, 0x0ffe6760, 0x6000ff22, 0x4105a941, 0x60211fc9, 0x08fb6500, 0xc001e027, 0x32002800, - 0x06696300, 0x21066f6b, 0x4e48010f, 0x17162805, 0x37321716, 0x66150617, 0x373b09c4, 0x37353605, 0x06071716, 0xa2012707, 0x0111111b, 0x22171601, - 0x02161721, 0x482216b8, 0x122307da, 0x83049210, 0x320f8316, 0xfe252102, 0x05b804fa, 0x07092506, 0x07220192, 0x851d1515, 0x21152226, 0xc791184a, - 0x80082309, 0x16850d0b, 0x2b22172e, 0x0a4ad017, 0x05054a0b, 0x800402cf, 0x21064742, 0xa7828001, 0x30001e29, 0x65005300, 0x48130000, 0x83180575, - 0xc08313e1, 0x666d1520, 0x36072510, 0x3b363137, 0x16319282, 0x010f0617, 0x27260706, 0x013f3435, 0x27263536, 0x24918223, 0x37262706, 0x41671835, - 0x20c02511, 0x260a1818, 0x20084969, 0x23098700, 0x18180b25, 0x3d0cb472, 0x0e0e0656, 0x121b3a13, 0x1f010111, 0x16160220, 0x082c0c02, 0x063a0e01, - 0x14150a02, 0xa9727606, 0x65c0200c, 0xfe200707, 0x2108ba44, 0x2b654001, 0x06197e07, 0x653e3085, 0x010a0a11, 0x241b1112, 0x02161213, 0x0e0d1602, - 0x09041a07, 0x0205010e, 0x15090614, 0xe841bb02, 0x20058505, 0x055f4d00, 0x013f022f, 0x002100c0, 0x0037002c, 0x004d0042, 0x06b57382, 0x2305037c, - 0x17163317, 0x0723fc82, 0x66210706, 0x362105f7, 0x20018337, 0xb5481803, 0x25072108, 0x09dd7118, 0x71180f20, 0x162207e6, 0x15893707, 0x82160721, - 0x2fa55e4a, 0x171de02b, 0x22170c17, 0x0615151e, 0x2b501802, 0x31fb8908, 0x53291b1b, 0x12140d30, 0x130d300a, 0x47010912, 0x0d870912, 0x1689d720, - 0x15896720, 0xcc5e3120, 0x10c02532, 0x0117190f, 0x43077841, 0x292a0bb1, 0xfe011b1b, 0x091250dc, 0x0484130e, 0x140d2122, 0x04820784, 0x15942120, - 0xeb5ea320, 0x18062032, 0x3408a76b, 0x00300004, 0x00510046, 0x006e005c, 0x21150100, 0x06252135, 0x08734707, 0x08ff7618, 0x10f47a18, 0x27263526, - 0x01292726, 0x2209386a, 0x55373633, 0x232006b9, 0x0ac36d18, 0x18360721, 0x4309d96d, 0x01251001, 0x01c0fe80, 0x09754240, 0x4b0a7522, 0x20053c42, - 0x06787801, 0x750a4b22, 0x18099f41, 0x4e09d19a, 0x195c0961, 0x0c084315, 0xe0600129, 0x120140e0, 0x83e01b12, 0x0c93784a, 0x16882020, 0x0e0d0123, - 0xf9521814, 0x0e14230b, 0xf866010d, 0x46502008, 0x012205c6, 0x3643e00f, 0x0600380b, 0xe0ff0000, 0xa001c001, 0x2a001400, 0x56004000, 0x81006b00, - 0x49130000, 0x012209c5, 0x9f182734, 0x1f260bfd, 0x16171601, 0xa247013f, 0x0f262306, 0x7d623701, 0x08f54905, 0x17202f85, 0x80181594, 0x56880bf8, - 0x2a942720, 0x0ec28518, 0x030c6d2a, 0x07200603, 0x370c0d0c, 0x0d240985, 0xcd370c0c, 0x64056841, 0x42180618, 0x1586081b, 0x8b47418e, 0x212c8706, - 0x85188001, 0x8f200d47, 0x65845b8e, 0x86180f20, 0xc0180d47, 0x158607a0, 0x418d2020, 0x2c8d2020, 0x2d055f45, 0x018002e0, 0x00170080, 0x003b0029, - 0x5f45004a, 0x1f162206, 0x05424101, 0x0789d718, 0x06132132, 0x2f223123, 0x17161501, 0x26211716, 0x07373427, 0x1812df7c, 0x4f0def49, 0x230805dc, - 0x1313da12, 0x2627123a, 0x01120e33, 0x140e0d01, 0x11f660fe, 0xda111515, 0x1b121201, 0x01272801, 0x5a011b01, 0x201f065d, 0x08388380, 0xa40e1820, - 0x2e2b0c0c, 0x0b051e1d, 0x0e14180e, 0xedfe010d, 0xd0a30d0d, 0x0112121b, 0x0908412f, 0x8a5b0314, 0x0f59670f, 0x03000023, 0xdf5c1800, 0x00302f07, - 0x00520047, 0x17360100, 0x16030716, 0x07823717, 0x23010f33, 0x23262726, 0x07060722, 0x37262723, 0x36011f36, 0x2d078637, 0x37333233, 0x1f163736, - 0x31011301, 0x9c753121, 0x21232207, 0x05ff7822, 0x13013b23, 0x08c04e16, 0xf4013508, 0x0712130c, 0x61030389, 0x0d0b0d12, 0x180b4757, 0x18202018, - 0x4c500a18, 0x130a070f, 0x3f050561, 0x100f0e08, 0x01010166, 0x14040d02, 0xaf0d0414, 0xc0014cfe, 0x20064b43, 0x069143fe, 0x4be02021, 0x2d0808c9, - 0x0b0810b5, 0x03cffe14, 0x0e083704, 0x1d570f11, 0x11121211, 0x130c341d, 0x051e0410, 0x0d116806, 0x01580c0c, 0x0202148f, 0x19018e14, 0x71464bfe, - 0x1602240d, 0x84021630, 0x05eb4104, 0x3f02c02f, 0x1600c001, 0x41003c00, 0x00007600, 0x75c98413, 0x21200500, 0x3727ea83, 0x36373433, 0x65210733, - 0x0f250597, 0x06070601, 0x09144107, 0x26272627, 0x27313027, 0x05a86526, 0x21151725, 0x46172135, 0x80303417, 0x4b09090e, 0x0a060610, 0x15b0fe15, - 0x1006060a, 0x8021b683, 0x35168301, 0x0303330c, 0x1b101b18, 0x14141118, 0x111b1711, 0x0303181b, 0xd5820c33, 0x40012025, 0x46b3c0fe, 0x3c823302, - 0x0d0d0125, 0x8218180d, 0x0e012404, 0x82800909, 0x147c3510, 0x02014811, 0x11030311, 0x04100c0c, 0x01021103, 0x7c141148, 0x40231c82, 0x45e66060, - 0x002132e8, 0x065b4d00, 0xc001402d, 0x21001d00, 0x3c003300, 0x18004700, 0x2408398d, 0x3b161714, 0x5d521801, 0x36352226, 0x053d4d37, 0x18063521, - 0x20082f9f, 0x58521800, 0x073b422c, 0x20075045, 0x53521801, 0x1565692d, 0x3b430420, 0x20df8508, 0x73dda23e, 0x2322120e, 0x2f632726, 0x37362105, - 0xc020d49c, 0x230f1344, 0x800f0140, 0x0483d083, 0x606bcf9b, 0x07054110, 0x2014a341, 0x20c5a25f, 0x11bb4c17, 0x2008a341, 0x07675627, 0x17163332, - 0x06010f14, 0x1716011d, 0x37353736, 0x27343736, 0x0621e984, 0x18e69c15, 0x41101454, 0x164707bb, 0x28093405, 0x2007010d, 0x0f0f0109, 0x01171801, - 0x28140d0d, 0x410c0c12, 0x8e2f37ce, 0x01010f06, 0x0109060f, 0x04080d01, 0x82090511, 0x0f012d54, 0x1b0e0c05, 0x010d0c14, 0x120c0b01, 0x0aaf6a18, - 0x20001c25, 0x41003700, 0x072310e3, 0x18060706, 0x210d1e55, 0xf558011f, 0x1212311e, 0x0909a01b, 0x215d800e, 0x14140102, 0xff110d37, 0x23054d4b, - 0x27808080, 0x411cb758, 0x2f3208e4, 0x2d250f25, 0x082f3a3a, 0x1b121201, 0x80408001, 0x73586280, 0x80022523, 0x1c00c001, 0x6b29c582, 0x8f007d00, - 0x0000a100, 0x053d6901, 0xc1821620, 0x0dd96718, 0x3233362a, 0x37361317, 0x26273631, 0x07200182, 0x08b25818, 0x2a821520, 0x37323324, 0x1a823405, - 0x79013b21, 0x232306d1, 0x45352115, 0x138208f8, 0x18831d20, 0x2005f069, 0x09c66a21, 0x11fe4018, 0x117ba418, 0x37082391, 0x1a1d2601, 0x0a0a0f0c, - 0x060b1725, 0x2d2d0207, 0x2c2d4544, 0x1f1f0102, 0x05060433, 0x05174c05, 0x02010d05, 0x01240202, 0x0f0f0e0e, 0x0b0c1603, 0x23161701, 0xaefe161b, - 0x2009fc76, 0x06d47e01, 0x820e2021, 0x82092013, 0xfd0e2100, 0x6d181186, 0x84180dca, 0xfe200c02, 0x48068570, 0x01310597, 0x10201abc, 0x2408080e, - 0x1515162d, 0x2d2d440f, 0x2c898302, 0x2e32322a, 0xf3fe0404, 0x1a1b1a11, 0x2f008203, 0x1212012a, 0x1b041313, 0x25111313, 0x0f0f1514, 0x05823b85, - 0x07134c18, 0x60207f82, 0x200d7048, 0x06ef5160, 0x0c747b18, 0x304a3785, 0x0200310c, 0xe0ff0000, 0xa0014002, 0x44003200, 0x26010000, 0x2105627f, - 0x75690706, 0x058b5305, 0x7f171621, 0x3f21059a, 0x05cf4c01, 0x09936118, 0x012f2622, 0x0811d24d, 0x11130134, 0x09041213, 0x1217171d, 0x0f12155d, - 0x0a2e2e0a, 0x5d151110, 0x1d171712, 0x13110309, 0x23294e11, 0x141e1b22, 0x08080b15, 0x1e14150b, 0x2923221b, 0x4e47ad4e, 0x0c9a300c, 0x31150c0b, - 0x1312110e, 0x120f0a37, 0x83505015, 0x13372646, 0x310e1112, 0x341a8215, 0x0f0f033b, 0x18181714, 0x13101013, 0x14171818, 0x3b030f0f, 0x0dab4dda, - 0xe7570420, 0x001e3208, 0x00480023, 0x37000053, 0x23061506, 0x27262726, 0x07534211, 0x67420320, 0x03072608, 0x23353315, 0x0a794225, 0xb7421720, - 0x83212005, 0x3f342230, 0x09874201, 0x14151732, 0x2733010f, 0x23013d26, 0x110f0faf, 0x011b1b29, 0x40207a85, 0x2707744a, 0x40404f31, 0x20800001, - 0x762d1685, 0x1413010a, 0x1dcafe1d, 0x0a011314, 0x30138576, 0x30052020, 0x400531ab, 0x051d193b, 0x291b1b01, 0x0c944101, 0x0150f625, 0x70606046, - 0x972306cd, 0x831411bf, 0x2344833a, 0x97bf1114, 0x28052741, 0x0809a040, 0x09084f4f, 0x056350a0, 0xff1f6e08, 0x01a001c0, 0x001400c0, 0x13000020, - 0x17060722, 0x16171613, 0x37363317, 0x36133736, 0x21232627, 0x0f332717, 0x26270601, 0x012f0607, 0x0a090e40, 0x16031d01, 0x21a62116, 0x1d031616, - 0x0e090a01, 0x0729c0fe, 0x1f1807fc, 0x1f21211f, 0xc001181f, 0xfe0e0a0a, 0x1415206c, 0x15140101, 0x0e940120, 0x5d9d0a0a, 0x0e0e0c5d, 0x0e0e1010, - 0x2174820c, 0x738b0003, 0x75963420, 0x758a1320, 0x27263725, 0x82272631, 0x1d661880, 0x95372009, 0x11332589, 0x200d11fc, 0x0d2b0084, 0x121102ad, - 0x0f0c0c0f, 0x51021112, 0x9c920888, 0xead6fe25, 0x840f06ea, 0x062a0800, 0x1c1c1366, 0x120c0c12, 0x19131c1c, 0x01011111, 0x00191111, 0x09000600, - 0xf601caff, 0x2900b601, 0x7d005300, 0xc400a700, 0xb582e100, 0x82078a44, 0x23262294, 0x21058206, 0x78451714, 0x37162205, 0x21018236, 0x05833332, - 0x36353427, 0x0726013f, 0x28198631, 0x16151417, 0x32171617, 0x84058333, 0x26272427, 0x82353627, 0x222325dc, 0x01272607, 0xbe45e883, 0x20298507, - 0x538a1837, 0x8334200b, 0x22272629, 0x05272623, 0x09124136, 0x7d852220, 0x63821520, 0x17060722, 0x16202f85, 0x27257d85, 0x34253736, 0x05431837, - 0x82248411, 0x435d827a, 0x1d2b05af, 0x33171601, 0x2f363732, 0x82373601, 0x2627218d, 0xc93f4982, 0x0306060d, 0x0d0b0b05, 0x0e0c1c21, 0x0112121b, - 0x04091206, 0x0d0d0606, 0x06040c0b, 0x8303030c, 0x16132212, 0x200e8380, 0x2d168203, 0x12011316, 0x03031b12, 0x0b04070b, 0x3b820d0c, 0x12090423, - 0x28128306, 0x201d0c0e, 0x0c04fffe, 0x21148d0b, 0x3991211c, 0x84ad0121, 0x0b0c2460, 0x870b0704, 0x21858760, 0x85881d20, 0xccfe2108, 0x06050f0f, - 0x0a010106, 0x0203073c, 0x011c0b05, 0x141c1011, 0x2112080c, 0x02215d02, 0x060f0e01, 0x09231c82, 0x8202073d, 0x011c2bbe, 0x1b111001, 0x13080c15, - 0x83a47801, 0xe3913d20, 0x250d0841, 0x0a110513, 0x138dd3fe, 0x24161c41, 0x0b0b0d12, 0x0b1c4105, 0x92060c21, 0x18483d83, 0x03050f11, 0x093d0702, - 0x06060601, 0x212c1f0b, 0x080f1a1a, 0x120c1413, 0x27123b27, 0x05231c8b, 0x872d1e0c, 0x8200201c, 0x45042000, 0x2e330883, 0x64003500, 0x00006b00, - 0x31372637, 0x36013f36, 0x7132023b, 0x072308b8, 0x44032b06, 0x023b07b9, 0x27263736, 0x27060723, 0x31252726, 0x30313033, 0x07161723, 0x010f0631, - 0x47022b06, 0x3b230719, 0x18363701, 0x2d098082, 0x16070602, 0x36373317, 0x05171617, 0x31822331, 0x0a083328, 0x7f0d0302, 0x80182d24, 0x25240799, - 0x4e2d232d, 0x09cbc118, 0x01010f2e, 0x0e77790f, 0x010a1010, 0xba010176, 0xfe242ca7, 0xf001018a, 0x5d213583, 0x0692461b, 0x441c2421, 0x012405b3, - 0x58010f0f, 0x30214683, 0x211f8390, 0x1f981a5e, 0x00000023, 0x08bf4508, 0x23001131, 0x5b004900, 0x94008200, 0xb800a600, 0x18010000, 0x1810857b, - 0x2911f141, 0x31173207, 0x16331516, 0xab431517, 0x0b147e05, 0x013d2623, 0x057e4d36, 0xa2751120, 0x34372410, 0x89373627, 0x17322120, 0x35204494, - 0x11b84c18, 0x0b520320, 0x90172010, 0x18012011, 0x180cd5a2, 0x2a0ce2a1, 0x09090e20, 0x2b021608, 0x18011a1a, 0x2908f6d6, 0x012c1a1a, 0x09081602, - 0x70180e09, 0xc0230faf, 0x86351a0e, 0x27378d1a, 0x1426252f, 0x1b01e00e, 0x09aee818, 0xd0203a83, 0x560b1a47, 0x128506d7, 0x07926a18, 0x50200d85, - 0x8505a741, 0x82102005, 0x16022806, 0x13020310, 0x48322727, 0x32280799, 0x02132727, 0x02161003, 0xfe213082, 0x24678fc0, 0x33222760, 0x8f1e8717, - 0x1701253e, 0x27222718, 0xf846c98f, 0x0c1f410d, 0x02000022, 0x2508074d, 0x0072005b, 0x6b181300, 0x052108ab, 0x060a7014, 0x36043b2b, 0x23272637, - 0x053d3637, 0x05505034, 0x55021d21, 0x2730066b, 0x07262726, 0x06010f06, 0x3d23021d, 0x012f3401, 0x072f0f84, 0x16011f06, 0x012f0607, 0x1513013d, - 0x83333533, 0x26428303, 0x0706042b, 0x47331716, 0x0e2b0673, 0x02160456, 0x80201602, 0x83208040, 0x56042108, 0x0e20ef82, 0x21080382, 0x100d0b45, - 0x01081c0a, 0x0c0b0a01, 0x192f090d, 0x092f1940, 0x0a0b0c0d, 0x1c080101, 0x0b0e0f0a, 0x32874045, 0x20203b88, 0x27076341, 0x24013b40, 0x63111616, - 0x2607195b, 0x16161163, 0x523b0124, 0x31260737, 0x0b070c5c, 0x57822310, 0x82090821, 0x1d34295f, 0x20203e26, 0x341d263e, 0x09215c82, 0x2a648208, - 0x070b1023, 0x40315c0c, 0x822040fe, 0x44458700, 0xc02c073f, 0xc0018002, 0x2f001100, 0x97006300, 0x137bc318, 0x14011f27, 0x012f2207, 0x051e4123, - 0x36220585, 0x0e413233, 0x32252706, 0x1d163117, 0x0e821403, 0x37363729, 0x26022f36, 0x83373435, 0x3102261e, 0x15171617, 0x15641806, 0x3d272207, - 0x20178302, 0x302e8521, 0x06010f06, 0x2726012b, 0x36352726, 0x3f31013f, 0x26318201, 0x14151617, 0x8206020f, 0x82162035, 0x033d210f, 0x01242e83, - 0x0c0b1140, 0x08584b18, 0x150b2d3e, 0x08040516, 0x16160504, 0x13130b01, 0x1b100d0f, 0x1e26261e, 0x0f0d0f1c, 0xbbfe1412, 0x13232a82, 0x83110e33, - 0x200f36f6, 0x0d0a0909, 0x0f200a0d, 0x01012019, 0x43140e0d, 0x1b64131a, 0x21498201, 0x26823002, 0x641b012f, 0x14431a13, 0x01010d0e, 0x200f1920, - 0x2b29820a, 0x10200909, 0x0a010108, 0x13330e11, 0x01212682, 0x82758870, 0x5954342f, 0x23150516, 0x05011623, 0x0d115916, 0x17101210, 0x82171919, - 0x110d2206, 0x2b268264, 0x1b285028, 0x090c3313, 0x090b0b07, 0x19234c89, 0x834f2e21, 0x64132661, 0x4066271c, 0x26c78538, 0x27664038, 0x8313641c, - 0x2e4f2491, 0x88101921, 0x0b0928a6, 0x0c09070b, 0x821b1333, 0x212a824c, 0x07530000, 0x059b4106, 0x79004524, 0xcb530000, 0x37362305, 0x2a583736, - 0x5f7b4107, 0x24253622, 0x09206f18, 0x36252424, 0x6241e8fe, 0x18c0204b, 0x87070c91, 0x41c02007, 0x40385e4b, 0x26009501, 0x4f003800, 0x17370000, - 0x3f323316, 0x36272601, 0x32373637, 0x072d5418, 0x06072624, 0xfe43010f, 0x06072605, 0x17161507, 0x11e64505, 0x010f1625, 0x59173233, 0x2d080775, - 0x26272223, 0x1736013f, 0x100cb430, 0x1d020c10, 0x31320201, 0x01242b4b, 0x34212101, 0x19202123, 0x20190c0c, 0x21342321, 0x2f010121, 0xfc548001, - 0x07302b0f, 0x08241f04, 0x60070303, 0x0a8a0807, 0x0ba99435, 0x382b020b, 0x0232314b, 0x060a0a13, 0x0a272636, 0x830a0a05, 0x820a204b, 0x26272608, - 0x2c410636, 0x0f7a51d4, 0x0906e12b, 0x06080836, 0x07060548, 0x55088608, 0xf785094b, 0xf7a94720, 0x11165318, 0xa20e3656, 0x100221ef, 0x3973a38f, - 0x20e7a30e, 0x0f334144, 0x20103056, 0x06eb4504, 0x4122e385, 0xe5a94c00, 0x2010dd41, 0xae5f1835, 0x35da4112, 0xa30fde53, 0x10d341eb, 0x5714e453, - 0xef85071f, 0xeda94320, 0x2310d341, 0x23070623, 0x3321f083, 0x24bf4216, 0x5311cf41, 0xdfa30aee, 0x2310cb41, 0x0f01010f, 0xf3570383, 0x20d38508, - 0x41d3a951, 0x372110c1, 0x82cd8215, 0x05aa66d7, 0x536ade85, 0x22b14205, 0x2111a143, 0x67183010, 0xeba312bb, 0x2110cb41, 0x681830d0, 0x00201249, - 0x4408e745, 0xfbbc079b, 0x17066118, 0x7335c242, 0xffb4185a, 0x08191873, 0x00000023, 0xff020005, 0x01fe01c2, 0x000a00be, 0x00210015, 0x0056002c, - 0x26332500, 0x15272627, 0x1f161716, 0x0f5b1801, 0x16212609, 0x17163117, 0x2b1a8335, 0x36333523, 0x35373637, 0x07060706, 0x2008b853, 0x8686181d, - 0x0910640a, 0x097f8e18, 0xbd013537, 0x3c3d0c41, 0x2a2b3d59, 0x0b41410b, 0x593d2b2a, 0xfe0c3d3c, 0x20139104, 0x0bd44ace, 0x0c844818, 0x83e06021, - 0x203c8433, 0x83478440, 0x4912923c, 0xdb5306a1, 0x07e45106, 0x3b610e88, 0x00022b06, 0x2800c001, 0x44002d00, 0xf5825d00, 0x2108a643, 0xfb830706, - 0x013b172d, 0x013b1617, 0x27263736, 0x6b352723, 0xcd83059a, 0x27073126, 0x03153337, 0x3d2e596d, 0x4309e001, 0x36436242, 0x01202036, 0x26181901, - 0x07810f70, 0x02166009, 0x02561602, 0xcc4b2050, 0x4ea02405, 0x6d232e20, 0xe0372643, 0x023f3f60, 0x36202001, 0x26384336, 0x79011918, 0x16160207, - 0x41af0102, 0xc125053a, 0x01813849, 0x30256d3a, 0x0400003c, 0xc0ff2000, 0xa0016102, 0x45003300, 0x68005700, 0x16250000, 0x37363137, 0xfb823536, - 0x07262728, 0x37161706, 0x52181736, 0xc95708cd, 0x35362105, 0x63051e63, 0x1422051b, 0xf74b0117, 0x07084208, 0x18153521, 0x24107bc7, 0x31072625, - 0xef491806, 0x27300809, 0x1ad80101, 0x1a181e1f, 0x1c1c151a, 0x0c081319, 0x0c151915, 0x10100c0c, 0x0223520c, 0x03170e0e, 0x22171601, 0x230b172b, - 0x010d0e14, 0x28370101, 0x4d0b2442, 0xfe250b2d, 0x17161564, 0x3a2d8302, 0x0a1b3d01, 0x9bfe1209, 0x0302112e, 0x23231b17, 0x0404151b, 0x12140c0d, - 0x83130b08, 0x0c0c2a57, 0x1a2c1851, 0x0b091314, 0x058f630b, 0x0102212b, 0x06140e0d, 0x01cafe06, 0x62518b52, 0x69260c7e, 0x1b0a0912, 0x3184c3fe, - 0x15161724, 0xdb5a6501, 0xa0200808, 0x23001200, 0x48003600, 0x00005a00, 0x3b161713, 0x013f3201, 0x26012f36, 0x0f22012b, 0x27170601, 0x0922f08e, - 0x1f821601, 0x8205e84c, 0x011d241f, 0x18011f14, 0x2011ab84, 0x10384117, 0x051bfc2b, 0x04093609, 0x1b05051b, 0x20088604, 0x24f28fb9, 0x0808b401, - 0x21028830, 0x2c41c8fe, 0x0606430b, 0x0121e185, 0x22268958, 0x8f110808, 0xc3fe22dc, 0x8b688204, 0x1b05236e, 0x1c415401, 0x0d8f600b, 0x18000321, - 0x2d072754, 0x00370025, 0x25000046, 0x36313736, 0xfc823237, 0x0b17c718, 0x16171427, 0x3732013b, 0x24fc8236, 0x023b3637, 0x10214705, 0x0e9d4618, - 0x08410128, 0x0d463130, 0x7b18d40d, 0xd2820ad5, 0x2306d565, 0x3f010140, 0x261ef148, 0x2c2d4560, 0x18bb0202, 0x4109e77b, 0x41830604, 0xe9481020, - 0x63671820, 0x22d7830b, 0xa64b0040, 0x471720d9, 0xe9481027, 0x20de9f13, 0x48a18faf, 0xde9b0fe4, 0x1a41a020, 0x14dc480f, 0x830cf74c, 0xb85020e3, - 0x18a57ae1, 0x0847e6b0, 0x47efac18, 0xaf421b00, 0x00322409, 0x8266004b, 0x23152df3, 0x1d060722, 0x06071402, 0x2322022b, 0x2b210182, 0x059d5301, - 0x23013d2e, 0x35262726, 0x36253734, 0x011f3217, 0x22051557, 0x5b371506, 0xb1520936, 0x5b36200b, 0x012b1b32, 0x090e2020, 0x110b0c09, 0x82012018, - 0x02022500, 0x0c0b1110, 0x0a2f1283, 0x0b0b0001, 0x138a090c, 0x1022360f, 0x5aa60b0a, 0x172107ef, 0x0bee5a01, 0x5a0a0a21, 0x622618ec, 0x0e090902, - 0xf34e1840, 0x01703705, 0x09014502, 0x0a0e0d09, 0x070109e0, 0x310d0179, 0x1b1c1936, 0xc05aba1b, 0x212c2f07, 0x022e2e44, 0x442e2e02, 0x2e323129, - 0xbe5a0808, 0x07d75118, 0xc0018029, 0x3b001400, 0x63010000, 0x112005f3, 0x180cc97a, 0x2107ad43, 0x7d643317, 0x6780180b, 0x14012a07, 0x013b1617, - 0x01112331, 0x26fb82e0, 0x010f7040, 0x83700f01, 0x158b27ac, 0x0710e015, 0x7f631608, 0x231a820e, 0xc0010141, 0xa0220682, 0x4f7ac0fe, 0x779f2709, - 0x0ec01010, 0xc95b1415, 0x06024407, 0x01220683, 0xcf4a0061, 0x013f2806, 0x002200c0, 0x828c0057, 0x0f2625a9, 0x16170601, 0x16269382, 0x36331617, - 0x62183637, 0x0b8207ae, 0x03823520, 0x012f3623, 0x28641803, 0x52172033, 0x3758059b, 0x09ff5707, 0x27501720, 0x58362007, 0x26320c41, 0x07063107, - 0x13133301, 0x080611b0, 0x02031016, 0x62181e1d, 0x1f2c07b6, 0x0101021c, 0x08161001, 0x25b01106, 0x313d6418, 0x232a7222, 0x2fcd6218, 0x0cba0132, - 0x160e800c, 0x01490115, 0x13011402, 0x14140c0c, 0x49278182, 0x0e161501, 0x61d0fe80, 0x0f2829e1, 0x0102180d, 0x8a0c0c19, 0x36a90483, 0x180c0e25, - 0x47000002, 0x5f2e0637, 0x1100c001, 0x48002600, 0xb2007d00, 0x42180000, 0xc8181278, 0x5618089b, 0x272807d0, 0x14173726, 0x07063107, 0x230bce41, - 0x17161716, 0x2506d041, 0x16010f26, 0x64181715, 0x1520335e, 0x012134b3, 0x0f614520, 0x0b0b9328, 0x380a0a38, 0x44180b0b, 0xb3270b76, 0x12201313, - 0x1814110f, 0x2109a964, 0xf4410304, 0x13132405, 0x41131350, 0xf5412fc3, 0x232a2231, 0x10506101, 0xa6844320, 0x4418ac82, 0x433b0994, 0x1824252b, - 0x0c0c0b05, 0x010c1414, 0x5402030e, 0x0e161501, 0x3a0c0c80, 0x18a62b25, 0x422bbf64, 0x7020051c, 0x0e2632ab, 0x0102180c, 0x8b460019, 0x00312a0c, - 0x005d003e, 0x17140500, 0x05874523, 0x2106ce68, 0xd018011d, 0x984509e1, 0x0706240c, 0x82150706, 0x06d86802, 0x24564b18, 0x60800121, 0x394c070f, - 0x0e602306, 0x90450909, 0x22b6270a, 0x1e011414, 0x4b189002, 0x20211c48, 0x181e8212, 0x4407dd5b, 0xc0200697, 0x29097f45, 0x1c1d0c9f, 0x25121925, - 0x4b18f080, 0x0320223d, 0x32084749, 0x00450033, 0x25000054, 0x16311714, 0x27262117, 0x8c352726, 0x069367ee, 0x27263523, 0x18f48223, 0x200c4cdc, - 0x765d1821, 0xa4491810, 0x3f162d09, 0x01273601, 0x23141440, 0x121bf5fe, 0x0c21e818, 0x0d0dd528, 0x19232329, 0x84180128, 0x01210e80, 0x0fe74240, - 0x0b0b4d38, 0x0b0b1d3d, 0x0b280a0a, 0x0a0a480b, 0x26252d50, 0x12120118, 0xf589a01b, 0x1102bb24, 0x84181e11, 0xce480fc5, 0x0a2b2f0f, 0x0a1c3c0a, - 0x280b0b0a, 0x0b480a0a, 0x6f49000b, 0x22ff830b, 0x4159004e, 0x17203501, 0x109d7818, 0x66089b64, 0x06410a3f, 0x8fb0202d, 0x0f8c49bd, 0x20280641, - 0x0f4f4190, 0x42159949, 0x5e200d0b, 0x21470941, 0x4b18013f, 0xbb180ab3, 0x0e410b05, 0x1817203e, 0x220c23a5, 0x180b0a0a, 0x41073ba5, 0x90203917, - 0x127ca518, 0xab575884, 0x0014270a, 0x00440027, 0x455c0100, 0x07062f08, 0x11231123, 0x36373435, 0x11170733, 0x7e643133, 0x26232105, 0x21053756, - 0x2a431507, 0x7435200c, 0x2621077a, 0x24178227, 0x090ee001, 0x05a14809, 0x09094028, 0x018bcb0e, 0x1182bffe, 0x08162028, 0x15e01007, 0xcf423515, - 0x0130240f, 0x480f200f, 0x012905ac, 0x010f800f, 0x4001c0fe, 0x233082a0, 0x9ffe7728, 0xc0283f82, 0x0e151401, 0xa81010c0, 0x3d8f2785, 0x2909ef44, - 0x00c00140, 0x007c005f, 0x1b6900b1, 0x17322106, 0x08a36c18, 0x06239682, 0x82171607, 0x32332101, 0x31200184, 0x481a6848, 0x3025059c, 0x22313031, - 0x200b8227, 0x056c5735, 0x37244b8b, 0x32011d06, 0x2106c165, 0x67821736, 0x1716172c, 0x34273536, 0x0f26012f, 0xdc481301, 0x12513d33, 0x192b2122, - 0x0b0c0d17, 0x06060405, 0x5824200d, 0x01023c3b, 0x14432525, 0x01020116, 0x6d180282, 0x233f1d04, 0x1b10132b, 0x19011111, 0x11152519, 0x060c0c0c, - 0x0c040506, 0x2a3d231e, 0x02010dfc, 0x181f1c02, 0x2907dc6b, 0x01010808, 0x1313600c, 0x01473360, 0x37012631, 0x01131421, 0x07676008, 0x38020b29, - 0x35465638, 0x18061235, 0x4615306d, 0x0c2d05c1, 0x0401190c, 0x1e161709, 0x01191925, 0x20958308, 0x3d9d820d, 0x1328010e, 0x0179100a, 0x14140101, - 0x0d0f010c, 0x04040205, 0x0a109004, 0x480c0c48, 0x0f49b6fe, 0x00032e34, 0x01c0ff00, 0x00c00140, 0x00290013, 0xb197183f, 0x2b611808, 0x27222a08, - 0x36073526, 0x37363137, 0xf7571833, 0x27262409, 0x6f112726, 0x202315ae, 0x4e0e0909, 0x068306e7, 0x12012024, 0x61721b12, 0x46088408, 0x802206a5, - 0x0082090e, 0x5e800e21, 0x80240d5b, 0x0112121b, 0x091dac18, 0x01220983, 0x764f4020, 0x203c8309, 0x20008200, 0x20b78e05, 0x19531855, 0x089b6508, - 0x99012b21, 0x233321bb, 0x2705d742, 0x3736023b, 0x27263736, 0x26220e82, 0x07841727, 0x1686e583, 0x06012b24, 0x2986010f, 0x09567e18, 0x18822f82, - 0x27260722, 0x7038eaa1, 0x0101052a, 0x16191010, 0x10191620, 0x05010110, 0x12121e2a, 0x1e12301e, 0x30201792, 0x01231387, 0x8b010f0f, 0x2220412e, - 0x84050121, 0x8269825e, 0x1515246f, 0x82157601, 0x2312876b, 0x4a150106, 0x20252085, 0x0f01010f, 0x82908320, 0x01152213, 0x0c5b7c00, 0x0000403b, - 0x22232601, 0x1d06010f, 0x26350701, 0x1d070627, 0x36171602, 0x15333537, 0x18128207, 0x20089e7d, 0x22128233, 0x82012f34, 0x211d8316, 0x2983023d, - 0x35271522, 0x01271282, 0x0a0a050f, 0x18052c05, 0x250820cf, 0x01063a90, 0xcf83600f, 0x010f6024, 0x17893b05, 0x012c0532, 0x670a0ab6, 0x544d0d0c, - 0x02021613, 0x18203816, 0x08280683, 0x07053321, 0x40010f10, 0x4028a783, 0x07100f01, 0x08213305, 0x18221983, 0x06833820, 0x4d541325, 0x44670c0d, - 0x013108bb, 0x00c00180, 0x00280012, 0x1300003b, 0x16333736, 0x060f5817, 0x82272621, 0x0bb6420d, 0xe5181520, 0x2120098b, 0x26102756, 0x16026015, - 0x84021650, 0x84902068, 0x01602987, 0x80362524, 0x01242536, 0x0a69ac18, 0xcf520020, 0x05147c0b, 0x2108777c, 0x2c84e818, 0xeb423582, 0x0a254e09, - 0xab623982, 0x05d77a08, 0x2605e954, 0x007d0064, 0x82900085, 0x108c52bd, 0x47491720, 0x84332010, 0x053676e1, 0x27262324, 0x67480723, 0x41052010, - 0x36240e00, 0x33350737, 0x0848cf18, 0x3b012f23, 0x5d9b1802, 0x09c74a08, 0x17373624, 0x4e823736, 0x18331521, 0x200a4a92, 0x0fb361f0, 0x270b2c24, - 0x84483426, 0x26343407, 0x0e480b27, 0x0e146816, 0x0d01010d, 0x1668140e, 0x438c480e, 0xa27707b8, 0x02162709, 0x02021660, 0x0483f016, 0x16026024, - 0xc418e070, 0xf0220818, 0x46181050, 0x10200846, 0x2a06de63, 0x0f800f01, 0x100f0101, 0x83b09810, 0x21048430, 0x08623001, 0x3120240f, 0x48011f1f, - 0x012307c2, 0x82311f1f, 0xe5431833, 0x79202008, 0x20230f83, 0x61081602, 0x08250701, 0x70e00216, 0x20b28770, 0x838b8390, 0x0585440c, 0x740f5021, - 0x202105f5, 0x0a306150, 0x20000535, 0x6002c0ff, 0x0a00c001, 0x29001800, 0x3f003400, 0x18010000, 0x2509dfa9, 0x31373403, 0x6b6c3b36, 0x35212505, - 0x21373607, 0x2706dc7a, 0x26272621, 0x3603013f, 0x23063461, 0x36253726, 0x2008435e, 0x18b51801, 0x45982008, 0xff3a0629, 0x1d0e4d00, 0x0e1d4401, - 0x0809071c, 0x1368fe13, 0x1c070908, 0x68140e4f, 0x04820b11, 0x020a102a, 0x0b0e1416, 0x0f136811, 0x01260482, 0x021690a8, 0x04841602, 0x85d8fe21, - 0x202039bb, 0x01011a5b, 0x0e11371a, 0x0e01010e, 0x0137110e, 0x480b1111, 0x0a10140e, 0x062a0482, 0x0f13110b, 0x14100a48, 0x2763480e, 0x82002006, - 0x001f28cf, 0x01000042, 0x82171633, 0x152321cc, 0x26123d73, 0x33373635, 0x62153307, 0x078406f9, 0x30331625, 0x78161731, 0x3f2e06b2, 0x32313201, - 0x1001013d, 0x01010f50, 0xf045500f, 0x42fe2006, 0xc02806f2, 0xd0100f01, 0x30402840, 0x01300382, 0x05123001, 0x40fe1708, 0x12050817, 0x01010130, - 0x40211c82, 0x0dcf630f, 0x010f7024, 0x0084c0e0, 0x2001c42d, 0x0116160e, 0x0e161601, 0x4bc40120, 0x1a220c93, 0xb5823c00, 0x00004624, 0x6a7a2313, - 0x36332208, 0x82a98237, 0x4d3520ab, 0x344305a7, 0x021d2105, 0x23056649, 0x36211716, 0x3306d57d, 0x26272635, 0x17022b27, 0x35231533, 0x33150333, - 0x1490c027, 0x2706bc42, 0x01210c73, 0x20221716, 0x6020bb83, 0x20201483, 0x1222d282, 0x097a1b12, 0x0f012305, 0x0c820120, 0x1010d029, 0x10e0d020, - 0x82606060, 0x0e0d24bf, 0x83c0fe14, 0x021e2d29, 0x16172270, 0x09094001, 0x01e0600e, 0x10221682, 0xfa822060, 0x21070143, 0x17700f10, 0x80402805, - 0x60200180, 0x19030060, 0x22087305, 0x44270013, 0xd76905b3, 0x06032107, 0x2606ca69, 0x07263713, 0x89070631, 0x8236200f, 0x223321b8, 0x152f1382, - 0x16171411, 0x36373233, 0x27341135, 0x18de2326, 0x2007058e, 0x29088880, 0x0a0b0d47, 0x07024002, 0x08820e07, 0x01400322, 0x5b200882, 0x85052242, - 0x76012105, 0x07bb8e18, 0x8780fe21, 0x80012209, 0x8327832a, 0x030a2110, 0x01200983, 0x0a211a82, 0x20d18203, 0x06a047fe, 0x07830120, 0x08b36518, - 0x1c00c024, 0xbb822e00, 0x00005926, 0x35373617, 0x446a0284, 0x07062105, 0x20055247, 0x82a58416, 0x009518b5, 0xd379180e, 0x11d83b2a, 0x011e0217, - 0x0d291a1a, 0x52493434, 0x02023636, 0x27271f1e, 0x0e0e0a1b, 0x6644180a, 0x18d0200f, 0x3b1ccd4c, 0x5f1f1533, 0x2b191225, 0x47071e1e, 0x02022c2d, - 0x2d523636, 0x38373b3b, 0xf30c0c21, 0x180f2c44, 0x3623ce84, 0x1f000500, 0x6002e0ff, 0x4300a001, 0x4c004700, 0x5f005600, 0x83010000, 0x823320f9, - 0x261725f8, 0x2627012b, 0x2905f04e, 0x03072627, 0x3f161706, 0xe74c1701, 0x86332005, 0x16172a06, 0x012f3637, 0x36373633, 0x5af51837, 0x27262708, - 0x23011f23, 0x03820f37, 0x07212d82, 0x224f8331, 0x18052337, 0x0808bfed, 0x02165854, 0x4c101602, 0x0e0e3635, 0x062a400f, 0x29080e0d, 0x0d0d0616, - 0x100cf009, 0x2b4f0f13, 0x13110c28, 0x1e4b340e, 0x0e14100a, 0x0d275030, 0x19091214, 0x1716220c, 0x21210101, 0x10453838, 0x1e2f1133, 0x21300258, - 0x1018ba11, 0x10010110, 0x9701264e, 0x8d5f010f, 0xa0012305, 0x5d821602, 0x482e2d2a, 0x020d6105, 0x32370b01, 0x35080582, 0x13d0fe0a, 0x65100c0f, - 0x0e133711, 0x2a46110c, 0x110b0f13, 0x09124446, 0x012c140d, 0x28221716, 0x21383845, 0x28a80121, 0x29022628, 0x10010227, 0x10181810, 0x63185061, - 0xc02d0f03, 0xc0010002, 0x2f001a00, 0x06250000, 0x09bf5b07, 0x0dc8e918, 0x18054070, 0x240eb157, 0x2701a001, 0x05d4657f, 0x46357e26, 0x023b3b58, - 0x076bd418, 0x1111af26, 0x761f0e0e, 0x162eb282, 0x0e0e1f76, 0x0e481111, 0x46f0480e, 0xd6657e35, 0x277f2205, 0x83298701, 0x83592007, 0x831f2021, - 0x831f20e1, 0x82482037, 0x4200202e, 0x1a260acb, 0x30002500, 0x9f9c3b00, 0x1615052b, 0x35373617, 0x07062726, 0x200a8937, 0x990a8917, 0xc8fe21ab, - 0x03837983, 0x88085646, 0x21b29808, 0xdb834008, 0x60210484, 0x840a83a0, 0x60402104, 0x08e86a18, 0x00030038, 0x02c0ff03, 0x02c00180, 0x03f402e2, - 0x01000017, 0x1f060706, 0x40180701, 0x14270925, 0x01391431, 0x9b153115, 0x211b8204, 0x21830239, 0x92410897, 0x22238305, 0xb5391503, 0x15052302, - 0x029f0839, 0x2333363c, 0x37361716, 0x36393323, 0x35063935, 0x39350439, 0x0a39350d, 0x35093935, 0x02840839, 0x17840720, 0x39350623, 0x20028405, - 0x22058403, 0x82393504, 0x85028208, 0x88088232, 0x200b8e11, 0x82298402, 0x33012905, 0x27263736, 0x39353123, 0x35220c83, 0x02830139, 0x07840d82, - 0x168a0d83, 0x31210e82, 0x84018335, 0x841c8508, 0x2104832a, 0x354c3534, 0x096b6f05, 0x8b490320, 0x26032510, 0x010f2223, 0x2205dc42, 0x18170607, - 0x820aad47, 0x34230883, 0x07373637, 0x10f80127, 0x270b0606, 0x443d2b16, 0x01022d2d, 0x183b2626, 0x16020216, 0x02181818, 0x82021616, 0x2f0d8406, - 0x0126263b, 0x27191801, 0x010e0e0c, 0x68701602, 0x080f1149, 0x0b04d134, 0x4c1d040b, 0x0506070b, 0x02094228, 0x054e0b03, 0x08090a01, 0x09063b3b, - 0x13140129, 0x011d3c21, 0x0e0e01c0, 0x2516270c, 0x2d2d0201, 0x2b2c3d44, 0x0098010a, 0x1c987983, 0x96831886, 0x479d239f, 0x2c2b0a2e, 0x1925303d, - 0x06050a27, 0x02167010, 0x0811226c, 0x0a2e0121, 0x03174a0a, 0x45090908, 0x0a0a072d, 0x0b500c02, 0x36070405, 0x33020636, 0x26272e45, 0x484a121b, - 0xa0320a1b, 0x42000d00, 0x5c005000, 0x06130000, 0x27171407, 0x9a6d2726, 0x23372105, 0x0b98ad18, 0x27263525, 0x69363734, 0x16270650, 0x15070615, - 0x48013f36, 0x26220620, 0x4d602327, 0x07062c05, 0x17163305, 0x06071415, 0x8236010f, 0x15072231, 0x53781833, 0x15470807, 0x06011e9f, 0x0f0f191f, - 0x1a670701, 0x0f101881, 0x19180101, 0x3b234729, 0x0d0d011f, 0x1b1b1516, 0x0d0d1615, 0x243a1f01, 0x18192947, 0x100f0101, 0x221b8118, 0x22282723, - 0x28011a23, 0x0f010767, 0x0620180f, 0x6cc11e01, 0x012e063c, 0x18394410, 0x13070816, 0x07551913, 0x2f833001, 0x202a553c, 0x2f120a20, 0x291a4d14, - 0x171f1f19, 0x17010117, 0x191f1f17, 0x144d192a, 0xad18112f, 0x2a360895, 0x01011b1a, 0x302a1a1b, 0x19550701, 0x08071313, 0x44391816, 0x8349c090, - 0x00002106, 0x0a2f7618, 0x19000c26, 0x00002f00, 0x28055063, 0x16171611, 0x13113317, 0xaf401821, 0x11212108, 0x4c0bc24a, 0x01210912, 0x09c54c00, - 0x18012021, 0x2208cdb2, 0x76e0e0fe, 0x01210d3d, 0x0a1e4d80, 0x84fe8021, 0x0001250d, 0x0112121b, 0x5f620b82, 0x20968606, 0x935518c0, 0x40013507, - 0x1500c001, 0x33002a00, 0x45003c00, 0x57004e00, 0x6b006000, 0x17039418, 0x40181720, 0x17211353, 0x058e7b36, 0x7b011f21, 0x36200595, 0x2205127f, - 0x9a160706, 0x03372111, 0x17201f82, 0x20050144, 0x11945000, 0x8c184020, 0x10200dc1, 0x4d075f55, 0x382008e1, 0x882111a2, 0x0afe180f, 0x05f94908, - 0x92186783, 0x60200b02, 0x8606e957, 0x46c02006, 0x5c88071e, 0x11a23820, 0x47680121, 0x06200a68, 0x3008b357, 0x002d0016, 0x005d0056, 0x00770065, - 0x37260100, 0x4dc31836, 0x08c35a09, 0xe24d0120, 0x16172306, 0x78180607, 0x0b820707, 0x06330329, 0x16171615, 0x6b063317, 0x15250528, 0x07060706, - 0x05606323, 0x2736232f, 0x0f222326, 0x37363501, 0x23173736, 0x26068315, 0x31070605, 0x4f330706, 0x38430660, 0x37418307, 0x0e0e1702, 0x07401111, - 0x11114007, 0xae170e0e, 0x16020216, 0x52fe17ae, 0x1d8b0987, 0x06f20932, 0x160f0e01, 0x10140675, 0x13101515, 0x1b121201, 0x40251191, 0x12121b40, - 0x054d4101, 0x6d184020, 0xdd18082e, 0x9720089d, 0x40256683, 0x070a0a07, 0x275a8340, 0x16160217, 0xb0fe1702, 0x1b8d0785, 0x0b39012d, 0x0e0f160d, - 0x0f161b01, 0x83d6130f, 0x210f8955, 0x0f83d714, 0x83404021, 0x83c02083, 0x20402104, 0x260f004f, 0x07000000, 0x48ff0000, 0x322f05d3, 0x4f004800, - 0x5e005600, 0x78006600, 0x82010000, 0x391522fa, 0xf1481801, 0x2f22210c, 0x0a14a718, 0x011f3622, 0x0ab5b518, 0x17323125, 0x19360131, 0x50087a1f, - 0x17270a9b, 0x27263315, 0x41372726, 0x27260d66, 0x16311716, 0xf04f3517, 0x187f1806, 0xd701210b, 0x0abe7518, 0x0a0c0c34, 0x0c0b5b5b, 0x0109090d, - 0x15700a01, 0x13555915, 0x0082090e, 0x0e600e25, 0x1829fe09, 0x18090856, 0x2109c05e, 0x0b833030, 0x14303027, 0x01010d0e, 0x86058370, 0xcc481811, - 0xb7012110, 0x0c007618, 0x08010824, 0xb5184e4e, 0x6024075f, 0x544c1010, 0x21061b51, 0x4b84d9fe, 0x087e6d18, 0x70200883, 0x70205f84, 0x70206b84, - 0x6a857084, 0xca4b5020, 0x8200200f, 0x410f2000, 0x0d380863, 0x23001800, 0x3b002e00, 0x57004900, 0x72006400, 0x8f008800, 0x9e009600, 0x2505dd73, - 0x31171613, 0x4a4a1716, 0x0aba5007, 0x17220a8a, 0x1f6a3736, 0x27262105, 0x8506f645, 0x8c37202f, 0x05344e3b, 0x46272621, 0x2720051a, 0x85056051, - 0x0607230e, 0x32833107, 0x1f6e1a85, 0xdc961805, 0x05185b09, 0x262fb341, 0x161722b0, 0x850f0101, 0x30782505, 0x16020216, 0x20210484, 0x840a8370, - 0x86082004, 0x20178212, 0x832987f0, 0x8b80202f, 0x0150263a, 0x0f221716, 0x20058501, 0x83088780, 0x8b60200e, 0x00ff2119, 0x203ef941, 0x204d8bc0, - 0x55a31810, 0x45602010, 0xa8200717, 0x1020828b, 0x9020348b, 0x1020b68b, 0x1020d08b, 0xa020198b, 0x203b3a42, 0x08074501, 0x0000682e, 0x012f3605, - 0x012f3435, 0x37161731, 0x2405a949, 0x37012f26, 0x18511836, 0x1f062607, 0x26350701, 0x22028227, 0x82150706, 0x83272002, 0x0726211a, 0x03841683, - 0x2607c84e, 0x0731013f, 0x4d011d06, 0x362805b7, 0x1537013d, 0x17161714, 0x55085082, 0x1517013d, 0x16011f14, 0x0fd00137, 0x43052a0d, 0x23241e85, - 0x01011a1b, 0x99221616, 0x17080c28, 0x12100b26, 0x0809300f, 0x16023216, 0x01070701, 0x16320216, 0x0f300908, 0x260b0f13, 0x290c0818, 0x16162299, - 0x1b1a0101, 0x851e2423, 0x0c2a0642, 0x3010120e, 0x42431806, 0x182d0805, 0x12103006, 0x3112103a, 0x57060937, 0x02011d7a, 0x252a1a19, 0x17061a1a, - 0x2a100e29, 0x0c0f1333, 0x0f0d4010, 0x18263227, 0x01073907, 0x08048201, 0x3226183d, 0x400d0f27, 0x130f0c10, 0x0e102a33, 0x1a061828, 0x1a2a251a, - 0x1d010219, 0x0906577a, 0x10123137, 0x07380f0d, 0x3f1f3809, 0x0109090d, 0x0d090901, 0x09381f3f, 0x0d0f3807, 0x46000000, 0x6632093f, 0xbc00b700, - 0xc600c100, 0x0000cb00, 0x013f2617, 0x03823435, 0x27060723, 0x82018226, 0x013f21f4, 0x0dfba218, 0x3736352c, 0x32333635, 0x17161517, 0x1a833715, - 0x16173624, 0x0385010f, 0x07061724, 0x03852726, 0x27070625, 0x82141715, 0x21088324, 0x14830714, 0x013d262a, 0x0f141507, 0x25270601, 0x33203b82, - 0xb7544882, 0x06bf5508, 0x530dd66d, 0xe8180571, 0x23260d2a, 0x37362726, 0xf26d3533, 0x8315200a, 0x82172048, 0x011d2112, 0x15220482, 0x0a871527, - 0x060da93f, 0x753b051e, 0x1720201b, 0x13010118, 0x31a01f14, 0x1d0e0308, 0x070e0d06, 0x0c020320, 0x07a3412d, 0x0c2d2308, 0x08200302, 0x1d060d0d, - 0x3108030e, 0x041422a0, 0x1a1a0e03, 0x231a0e0e, 0x280a100b, 0x06150120, 0xa3412b05, 0x02202e05, 0x010d0820, 0x30010f57, 0x010f0f01, 0x05b65410, - 0x1583058a, 0x1f9d1a84, 0x82301021, 0x82502000, 0x30550803, 0x3d0d080e, 0x3c04072c, 0x01196617, 0x25161601, 0x0516171f, 0x0a072a17, 0x080e3a2a, - 0x06400d05, 0x17272506, 0x082b0718, 0x18072b08, 0x06262617, 0x060d4006, 0x2a3a0e07, 0x182a070a, 0x05041a05, 0x15010115, 0x20020115, 0x18230e05, - 0x1a030320, 0x2b06040e, 0x07ed4132, 0x29203224, 0x30820304, 0x0f01ce23, 0xa6ab8510, 0x22df8f9f, 0x82303070, 0x848020ad, 0x82002005, 0x00012a00, - 0x0220001f, 0x00600120, 0x06bf4914, 0x17323322, 0x200c0255, 0x34ac8290, 0x26262d2d, 0x09096c17, 0x3efe1308, 0x09090813, 0x270d016c, 0x25008216, - 0x0f11bd27, 0x8a82010f, 0x47bd1121, 0x8022085b, 0x6118c001, 0x672f0a2d, 0x00007700, 0x31070601, 0x17150706, 0x54013b36, 0x172505ae, 0x07060716, - 0x09b74b33, 0x2005c643, 0x24068223, 0x17232726, 0x8e661833, 0x37362208, 0x9d661807, 0x9066180b, 0x28268c0c, 0x07231725, 0x26013f27, 0x06765327, - 0x5b822120, 0x0103272b, 0x0d0e1450, 0x05044701, 0x26a48320, 0x11134903, 0x447a0101, 0x182b07a1, 0x02161602, 0x0e0d0128, 0x18206014, 0x20148d5b, - 0xc36718a0, 0xd0fe3714, 0x19303d3c, 0x130a1d4a, 0x0abe0a13, 0x01140b09, 0x090b137b, 0x5354be0a, 0x775c2205, 0x24358403, 0x0122227a, 0xe38a1801, - 0x16482608, 0x48160202, 0x20798390, 0x20548940, 0x60571870, 0x18602009, 0x2d14ba68, 0x294063a3, 0x01102c7a, 0xc6fe1001, 0xbb821211, 0x3a200483, - 0x220b5367, 0x182d0011, 0x350e6750, 0x16171607, 0x3b210117, 0x36373601, 0x012f3437, 0x0f222326, 0x17412701, 0x83152005, 0x3002231b, 0x50181722, - 0x21080925, 0x22171601, 0x450108fe, 0x111a7b4b, 0x84090111, 0x070c0c07, 0x140b7e30, 0x09d80b14, 0x18100f01, 0x21832001, 0xfe2c318b, 0x111101a0, - 0xd80f111a, 0xc94f0b0b, 0xa7269b84, 0x1018100e, 0x9787010f, 0xbd014026, 0x46004100, 0x26249782, 0x0f263127, 0x8306d750, 0x020f2282, 0x20888335, - 0x09951811, 0x18332007, 0x2b07ca78, 0x0727012b, 0x0f372317, 0x25352301, 0x08064c78, 0x2f363721, 0x33370101, 0x10022317, 0x211c1c09, 0x06070d0f, - 0x076c1903, 0x08161608, 0x1602840e, 0x18100216, 0x3e0de585, 0x1b3e4389, 0x354b1a42, 0x1a510129, 0x0d0b0c03, 0x1010210f, 0xbdfe2a08, 0x860b700b, - 0x82208301, 0x0404340c, 0x5b0d0b0b, 0x0114131d, 0x23271401, 0x02021627, 0x5af8fe16, 0xbe280b0e, 0x134b4e10, 0x5e589f98, 0x29086b83, 0x1c1b0a04, - 0x7dfe9b21, 0x00002020, 0xff00000a, 0x018002e0, 0x001100a0, 0x00320017, 0x005f004d, 0x00770065, 0x0083007d, 0xef1800a1, 0x0625136d, 0x35171607, - 0x18058337, 0x2d0dc96f, 0x36373635, 0x1f163337, 0x37363501, 0x0a832726, 0x1423ee82, 0x88070607, 0x13352126, 0x260f335a, 0x3615011f, 0x78273435, - 0x0f21104b, 0x22638201, 0x84370706, 0x05d6661d, 0x61826c94, 0x0f01b825, 0x44181810, 0x07840537, 0x010f7829, 0x2e900f01, 0x4e1f0102, 0x1d38060c, - 0x20011211, 0x2520301f, 0x011ff01b, 0x251b2e02, 0x201f3020, 0x1d111201, 0x78201f86, 0x0824418f, 0x00ff1010, 0x280ffc49, 0x0f0f0150, 0x10109001, - 0x87388940, 0x214e8358, 0x838b6801, 0x9e2b5183, 0x11191911, 0x422a3254, 0x41152734, 0x1b2405cf, 0x221b1a0e, 0x13282c84, 0x342715dc, 0x01132a42, - 0x22249883, 0x1b0e1a1b, 0x01212185, 0x20459048, 0x20468354, 0x0f0b5656, 0x5a829020, 0x2a191122, 0x2a201c84, 0x2b204083, 0x2b204085, 0xf1826288, - 0x00820020, 0xdf410520, 0x0023280a, 0x00490037, 0x6f0000a2, 0x07201150, 0x2810506f, 0x31072207, 0x17141506, 0x08c94216, 0x25212322, 0x05272590, - 0x36371617, 0x1836012f, 0x180e8c87, 0x2141a087, 0xf17a6801, 0x7bd8200b, 0x70200b77, 0x0220ea85, 0x2306a44e, 0xd001c0fd, 0x87181e8b, 0x01214d8a, - 0x205b8b78, 0x20948b88, 0xf3ba18d0, 0x18198b0c, 0x20466f87, 0x08435200, 0xc001402a, 0x77001100, 0x9b008900, 0x12b5ec18, 0x064c1720, 0x59152005, - 0xa859057f, 0x2f362306, 0x0a873301, 0x17032729, 0x31303332, 0x82363716, 0x31343001, 0x36373130, 0x3330013f, 0x06073732, 0x1816021f, 0x24089c58, - 0x1737012f, 0x06397d16, 0x2f262724, 0x594f2602, 0x07062505, 0x012b2627, 0x4f05b370, 0x0f210b4b, 0x578d1802, 0x224e8208, 0x18272627, 0x0810538b, - 0x121b1034, 0x09090112, 0x18090f0e, 0x0d0b0a03, 0x0107070e, 0x031e1015, 0x0d0d0b0b, 0x39030707, 0x0d010174, 0x0504050d, 0x1a090302, 0x01010108, - 0x47160811, 0x1d840416, 0x03062108, 0x32080317, 0x10070914, 0x0c0c0c1b, 0x04040607, 0x0e0f150d, 0x23221b1b, 0x1426081f, 0x35151383, 0x093c5d18, - 0x2207f446, 0x573c1972, 0x3d260591, 0x280e0407, 0xae180304, 0x202a1154, 0x1b121201, 0x09090e80, 0x8b83900b, 0x7b219383, 0x838a8387, 0x02013792, - 0x03060636, 0x01060504, 0x040c1a08, 0x1a214001, 0x060d584e, 0x90830307, 0x090c5c2b, 0x10174136, 0x04050e08, 0x2d8f8204, 0x250a070c, 0x0e13121f, - 0x3c221104, 0xa95d2009, 0x22078707, 0x573b3ef0, 0x3e3005eb, 0x2d240907, 0x04000404, 0xc0ff0800, 0xc0012f02, 0x21060773, 0x35480088, 0x27262206, - 0x0bcf7f26, 0x1d191720, 0x33200925, 0x24082374, 0x013f3611, 0x05057c36, 0x36020f24, 0xcc5a3137, 0x9021200d, 0x050b4211, 0x42021d21, 0x3622050c, - 0x4a88013d, 0x72013d21, 0x35250660, 0x2b262734, 0x30538201, 0x08e80123, 0x20201818, 0x09081818, 0x0e0a0b04, 0x22ee820d, 0x183b1309, 0x2f093841, - 0x3b09090e, 0x07030913, 0x0b0e0d06, 0x5809040a, 0x18076a41, 0x20083666, 0x20118fc0, 0xbf811808, 0x85102009, 0x0a0d2347, 0xb1433011, 0x261e2f05, - 0x01212b18, 0x12131f85, 0x13120101, 0x5d41231f, 0x0e0a2605, 0xfe1f4423, 0x202285ce, 0x07d45b80, 0x441f3227, 0x0b0b0d23, 0x217b8304, 0x62412523, - 0x270f8f0f, 0x12120120, 0xbf01601b, 0xe322448d, 0x82850f14, 0x01243b23, 0x085b6d00, 0x01802508, 0x001600c0, 0x003a0028, 0x00a5004c, 0x16050100, - 0x06071617, 0x25270607, 0x26270605, 0x36372627, 0x17362537, 0x128a4318, 0x10074318, 0x43182520, 0x052110c0, 0x0aa64627, 0x4e820720, 0x5c183f20, - 0x558207fa, 0x21058a5f, 0x0787011f, 0x2f217582, 0x202f9001, 0x20138e26, 0x3d9d8307, 0x01500127, 0x03040b20, 0x0d0c0706, 0xfef0fe0c, 0x0c0c0df0, - 0x04030607, 0x0f21010b, 0xa1441010, 0x8bb0200b, 0x4401200c, 0xfe210caf, 0x8b8c18cb, 0xd78c1833, 0xbc012617, 0x0c0c07a0, 0x2194830d, 0x8a839797, - 0x07249982, 0xec0808a0, 0x200b0845, 0x200c8b60, 0x209a8b28, 0x798c18c3, 0x1831202c, 0x5b17bf8c, 0x802a062b, 0x1100c001, 0x4b001600, 0x1f456e00, - 0x35032213, 0xea981833, 0x4902200a, 0x2322079a, 0x2c453521, 0xd45f1809, 0x05197107, 0x36371626, 0x0115013f, 0x0a149918, 0x18331621, 0x790c5d99, - 0x152006c2, 0x23110043, 0x58401010, 0x23058742, 0x78015078, 0xfe390985, 0x0c071da8, 0x030b0c0d, 0x0d3a0703, 0x1e191616, 0x0d16151a, 0x0303073a, - 0x2415820b, 0x58011d07, 0x05314419, 0x0f598318, 0xc5443d82, 0xa0fe2211, 0x0cff7960, 0x0c2fbf22, 0x072b5782, 0x610c0d0c, 0x0c0c0d15, 0x8261150d, - 0x8207200a, 0x2f0c265c, 0xf38001bf, 0x0514451a, 0x0a1f8418, 0x9485f320, 0x465e3b41, 0xc844063c, 0x051f4805, 0x37323324, 0x96183d36, 0x272008a0, - 0x20453b41, 0x123441df, 0x41064e41, 0x47203e3b, 0x41113341, 0x002f074d, 0xff200003, 0x01e001c0, 0x001100c0, 0x4c630051, 0xbb180611, 0x06230a60, - 0x18071707, 0x22078979, 0x59272623, 0x1d2307a4, 0x18151401, 0x250932cb, 0x31302722, 0x01822726, 0x18343721, 0x240d2461, 0x07061516, 0x20911827, - 0x00012110, 0x2b0fdf4c, 0x130e3fd5, 0x040d1013, 0x3c010703, 0x0806fc79, 0x06126629, 0x13090906, 0x01a01212, 0x07050802, 0x020a0502, 0x201f1443, - 0x1e234c24, 0x0333151f, 0x0a010402, 0x130c0d75, 0x850d0c13, 0x11064d05, 0x104fdf2c, 0x0c0c0202, 0x0a0f100f, 0x2b42252d, 0x30240805, 0x0a330101, - 0x12131212, 0x50090606, 0x08060501, 0x0212130a, 0x111e6501, 0x1c101011, 0x0a050547, 0x330d110a, 0x58825288, 0x00820020, 0x0300032e, 0x7f02c0ff, - 0x1100c001, 0x6c004400, 0x2013cd4d, 0x27611803, 0x2b262417, 0x18072201, 0x5c152b61, 0x362e19b8, 0x013f012f, 0x27363727, 0x27010f26, 0x9b46e001, - 0x06914610, 0x461c8b43, 0xfe210531, 0x17b55ce7, 0x0a09082e, 0x19320501, 0x06052737, 0x1d4c0b07, 0x18126242, 0x20089b9c, 0x199843df, 0x5641df20, - 0xce012105, 0x3015465c, 0x0b050407, 0x2629084f, 0x08090945, 0x004a1703, 0x066f4200, 0xc001a028, 0x42001100, 0x6f425b00, 0x0b6c5707, 0xcc440720, - 0x4123200b, 0x0e48153d, 0x3736220d, 0x08276016, 0x27059c5f, 0x36171615, 0x10013537, 0x2d0f6047, 0x0d092f08, 0x010a0b0d, 0x1d4a0801, 0xbd44242d, - 0x0c2e480d, 0x07015828, 0x16020107, 0x544d0216, 0x640b8407, 0x924108cc, 0x39bb2207, 0x824b820b, 0x590a3053, 0x0d0c0122, 0x0d0b6116, 0x0307070c, - 0x41300b03, 0x08480619, 0x8df52b07, 0x07010107, 0x02021670, 0x1b4d7016, 0x83082007, 0x0008280d, 0x20000200, 0x4502c0ff, 0x5e2005fb, 0x6417f745, - 0x3b200894, 0x0ac0f818, 0x23153324, 0xeb822335, 0x09191620, 0x8b5d0ac9, 0x18764205, 0x8512ac44, 0x403821f8, 0x2306ae4f, 0x40c0c010, 0x88081651, - 0x424d2108, 0x42132d41, 0x7b661b36, 0xc0402307, 0x2f413020, 0x08cb4207, 0x2c415020, 0x06082106, 0x4c0a2c41, 0x40240e27, 0x61005200, 0x1813bb4f, - 0x4816f362, 0x06210790, 0x067c4807, 0x2005ac66, 0x05465b23, 0x24065e55, 0x16171637, 0x0e2a7317, 0x2642d020, 0x4138200f, 0x1d250512, 0x0b0d0c07, - 0x0cec460c, 0x0c182d25, 0x851d0203, 0x0110221e, 0x0fe471a8, 0x4b0e3473, 0xfe2111dc, 0x06194ad0, 0x0b30df22, 0x2d05ed46, 0x0d16610b, 0x160d0c0c, - 0x03231b4a, 0x36422f04, 0x11b77c07, 0x77104673, 0x534d0663, 0x00402605, 0x005b0052, 0x432d4166, 0x73106261, 0x32411356, 0x73182038, 0x33411f61, - 0x270c7d39, 0x4c180420, 0x112608c7, 0x52004000, 0x35415d00, 0x0f125243, 0x59181720, 0x2c410aee, 0x105f4238, 0x0a1b4618, 0x42392741, 0x0f20105b, - 0x4306a366, 0x6b20127f, 0x42431b41, 0x37201051, 0x1746ae18, 0x42382941, 0x10201056, 0x12184618, 0x33413020, 0x105b4239, 0x157eae18, 0x20129343, - 0x5441417e, 0x2b865b18, 0x18495441, 0x4723a25b, 0xf2441023, 0x10624127, 0x045d3020, 0xbe5b1807, 0xbf5b1821, 0x05d3430a, 0x4956b742, 0x26230592, - 0x181f0607, 0x2408146e, 0x012f3637, 0x49624137, 0x1990dc18, 0x20495841, 0xb1dc18b5, 0x0beb4a19, 0x78005022, 0x20139f49, 0x0a895103, 0x32240a8b, - 0x012f3637, 0x241c884e, 0x16170607, 0x1ab06733, 0x200cf74a, 0x10bc4902, 0x6a188a20, 0x12260d87, 0x02040508, 0x904e2226, 0x10353907, 0x0c1e1919, - 0x1019191e, 0x03030735, 0x0c0d0b0c, 0x02262207, 0xc7080504, 0x4127024b, 0xb0201160, 0x2006686f, 0x24078760, 0x73080607, 0x07a64e38, 0x0f195927, - 0x190f0e0e, 0x07a64e59, 0x08733826, 0x6e010706, 0x30270a4b, 0x00000300, 0x3f02e0ff, 0x2d00a001, 0x74003f00, 0x51531800, 0x1401260a, 0x07171617, - 0xc38e1816, 0x36372908, 0x3736013f, 0x27262736, 0x07bcc518, 0x18352721, 0x20117e44, 0x33e17e07, 0xcc48c020, 0x10113105, 0x0b0c151d, 0x14111a21, - 0x15131114, 0x69101011, 0x25075054, 0x263d3f69, 0x1a641617, 0x0bbf5705, 0xd57e0d20, 0x48012031, 0x203106fc, 0x1b232429, 0x02010392, 0x0d0b0b13, - 0x04026105, 0x074c5518, 0x140e1828, 0x28201f0c, 0x29588020, 0x0cc6220f, 0x8440180c, 0x1901222d, 0x2d008200, 0xff400002, 0x01e001c1, 0x003e00c0, - 0x417a0050, 0x011d2705, 0x07060714, 0x6d181715, 0x2b210c23, 0x063e5301, 0x012f2622, 0x0fe49418, 0x36373628, 0x3734013d, 0x0a743336, 0x20012f11, - 0x1409090e, 0x57392113, 0x072c0e18, 0xcf820201, 0x26090c2f, 0x075c0160, 0x0b0c0203, 0xa0080c0d, 0x055f4105, 0x1b1a0126, 0x10101c2e, 0xb0200c82, - 0x210fcf4d, 0x1582c001, 0x23290a2d, 0x50011623, 0x0b3a1201, 0x83090c0d, 0x8f332149, 0x08200982, 0xf8234783, 0x4d4a0f0e, 0x4a290568, 0x13282831, - 0x1e17180b, 0xea92180a, 0x824c8b07, 0x000326ef, 0x02c1ff00, 0x20ef867c, 0x0a23597f, 0x0620f585, 0x5355f983, 0x37342108, 0x2009af43, 0x0cbb433b, - 0x31272322, 0xf185f584, 0x590b9e4d, 0x3720062a, 0xe8611e82, 0x05225107, 0x2808836b, 0x31163130, 0x011f3233, 0x225c8207, 0x85000137, 0x101026ff, - 0x1a1b2e1c, 0x2e0c8501, 0x0c08a005, 0x020c0b0d, 0x015c0703, 0x82092650, 0x020b2c0b, 0x0e2c0701, 0x21394718, 0x4ba01314, 0x012d0f8e, 0x09083b70, - 0x4f05010a, 0x0801030a, 0x06b14e41, 0x290dd543, 0x171f1301, 0x03240112, 0xc6772703, 0x1e0a2807, 0x130b1817, 0x41322728, 0x0f22073a, 0x7183f80e, - 0x8f217983, 0x836f8333, 0x123a2877, 0x23175001, 0x4c0a2923, 0x504108a2, 0x36ce2d07, 0x0b050407, 0x0a030c4f, 0x462d060a, 0x4305c04e, 0x01270bda, - 0x31110315, 0x18240404, 0x250ba7f3, 0x002d0011, 0x6f18004f, 0x132112f1, 0x09b25f35, 0x4c270621, 0x31280c9e, 0x31373627, 0x31113736, 0x1809d666, - 0x630f1d70, 0x9b8708b1, 0x1a070827, 0x3b0d1615, 0x07785306, 0x24055541, 0x1918106e, 0x450a851d, 0x0b25091b, 0x0703030c, 0x11a74d35, 0xe000ff22, - 0x2513824d, 0x0e19aa80, 0x6f18010e, 0x60250853, 0x73080607, 0x07a94c39, 0x62005a21, 0x734c06c7, 0x00422805, 0x00750054, 0x4e8b0080, 0x072113b3, - 0x09ff7737, 0x590cba57, 0x272008a6, 0x200cdb4f, 0x54691837, 0x15072311, 0x3b512627, 0x1617210c, 0x25098f60, 0x07060706, 0x686a1603, 0x0f062206, - 0x26298201, 0x3716011f, 0x4e012f36, 0x852010e1, 0x51061441, 0x02500636, 0xa5012119, 0x260f7942, 0x100c2910, 0x59300810, 0x1c27072e, 0x1c1b1337, - 0x50011213, 0xb0240714, 0x0f380f01, 0x04830d82, 0x06080d26, 0x070e300d, 0x6c410482, 0x50d12011, 0x3750100e, 0x44412017, 0x682b0f1c, 0x020b2a3b, - 0x0c600f03, 0x83070c0c, 0x37382786, 0x13120113, 0x4450661c, 0x28012107, 0x2c07bd4b, 0x0e0d0632, 0x0d061807, 0x0018080d, 0x05537700, 0x01202908, - 0x000b00bf, 0x002b001a, 0x0048003b, 0x07061300, 0x36331716, 0x27263537, 0x1716010f, 0x36171631, 0x34373637, 0x15062327, 0x2908265d, 0x3715013b, - 0x05022b26, 0x54563307, 0x1d6c180c, 0xf7232c0b, 0x17020215, 0x02010f97, 0x8207980f, 0x22222847, 0x02011617, 0x57a8029c, 0x98360518, 0x691614a3, - 0xab5a01a8, 0x0f0936a9, 0x040f0e10, 0x114d0804, 0xf86bc21b, 0x01c02d06, 0x171504b2, 0x1f0f0102, 0x620d010f, 0x20070754, 0x20008208, 0x05645770, - 0x07a25926, 0x5a2eab15, 0x09203682, 0x81243e83, 0x20cb111d, 0x2105fc44, 0xd7830020, 0xc0ff1f24, 0xd784e001, 0x41001926, 0x60005700, 0x3621d782, - 0x06b4623f, 0x17272626, 0x06151633, 0x3b05fe64, 0x13373427, 0x15141527, 0x36273130, 0x1732013b, 0x36372637, 0x0f16021f, 0x17161701, 0x73180582, - 0x27200921, 0x085dd118, 0x2706072f, 0x3f262726, 0x13373601, 0x36272306, 0x05f86c37, 0x1502a024, 0xb2820f98, 0x02179725, 0x88029c12, 0x36e43ef1, - 0x321c19ae, 0x0c5f1618, 0x0e0e0806, 0x38060c0e, 0x03040b02, 0x02032407, 0x0404094c, 0x2200820f, 0x82805609, 0x070641ba, 0x0e4c0927, 0x0605b516, - 0x07454b18, 0x1599012e, 0x0f010d04, 0x02010f1f, 0x08083917, 0x2b090b41, 0x6e5a94fe, 0x0bf90202, 0x0d09a408, 0x08305b82, 0x01600e08, 0x0b0d0c07, - 0x81050440, 0x090f100e, 0x34245d83, 0x6e0e0909, 0x24092541, 0xfdfe1018, 0x08e76c02, 0x0800003a, 0xc0ff0000, 0xc0010002, 0x19000b00, 0x31002500, - 0x59004300, 0x87007000, 0x270b0542, 0x23170723, 0x17161506, 0x41070742, 0x332307e4, 0x18070627, 0x2407bd57, 0x17072223, 0x169d5b37, 0x360a346e, - 0x27262726, 0x35360323, 0x26012f34, 0x15070607, 0x16070623, 0x82153317, 0x023f255b, 0x16011f14, 0x35204282, 0x2005146e, 0x292a8235, 0x1506010f, - 0x01010e47, 0xfb826f10, 0x776f1024, 0xee47037b, 0x9e022107, 0x8027d782, 0x14900203, 0x8302be01, 0x06402414, 0x60a28905, 0x20200fc4, 0x23069d5b, - 0x09090e80, 0x88332484, 0x0c400808, 0x58010d0e, 0x16020216, 0x0e0d0158, 0x9048400c, 0x01082e11, 0x100e02b3, 0x0e0f0101, 0x09410d10, 0x23548709, - 0x20b20909, 0x6f254782, 0x052b1d12, 0x21598406, 0x0e196a01, 0x97870818, 0x08832020, 0x83078742, 0xfefe3639, 0x070b0b07, 0x07060a38, 0x1602200f, - 0x0f200216, 0x380a0607, 0x21128412, 0x128a1006, 0x000b0722, 0x2e08ff67, 0x00c00100, 0x00440011, 0x005a004f, 0x18700065, 0x52139dcf, 0xe25b1edb, - 0x0c404605, 0x007b2320, 0x7b21200a, 0x26220a00, 0x0d86013f, 0x6e272121, 0x072405a6, 0x30012706, 0x520fe244, 0xd8590aeb, 0x0f5f460e, 0x11f11026, - 0x0e0e5011, 0x01260484, 0x0e1111d0, 0x0484500e, 0x8730fe21, 0x11112309, 0x2187d001, 0x504b0b82, 0x08fd5211, 0x22205256, 0x89590180, 0x82748655, - 0x85fe2079, 0x8583847e, 0x3882837d, 0x00030000, 0x02c0ff0f, 0x00c00120, 0x00260014, 0x0100005b, 0x23111732, 0x07ba5835, 0x36013f27, 0x013b3637, - 0x10a55137, 0x2c053956, 0x36353715, 0x17163337, 0x010f0615, 0x28078415, 0x16172307, 0x27262307, 0x05435435, 0x36373423, 0x2b228233, 0x36272635, - 0x01013b37, 0xc0202709, 0x2509d543, 0x251f1e13, 0x16443732, 0x2e078707, 0x0f010f80, 0x0f011001, 0x01010f10, 0x8230350a, 0x2c0f2505, 0x3c110217, - 0xce441482, 0x0f012105, 0x10271383, 0x14000110, 0x43aed4fe, 0x202209ca, 0xdd181211, 0x502810f1, 0x09740f01, 0x38056d13, 0x55243283, 0x1b11040b, - 0x5c295884, 0x0f010212, 0x0e090960, 0x23528290, 0x64091320, 0x00215383, 0x08fb4303, 0x30001e2c, 0x00005300, 0x010f2601, 0xd77a0706, 0x5f372009, - 0x352408a1, 0x012f2611, 0x22113463, 0x57333503, 0x17220541, 0xaa183716, 0xc658098f, 0x013f2105, 0x01251a84, 0xe0101010, 0x06cf490f, 0x444cc020, - 0x0f012206, 0x0cc55de0, 0x0210082b, 0x1b021616, 0x0913140c, 0x2aaa1826, 0x09262508, 0x1b0c1413, 0x01261883, 0x800808bc, 0xa818120a, 0x2d24088d, - 0xd3fe6e6e, 0x24061c41, 0x800a1240, 0x0b765dcc, 0x58e8fe28, 0x02021658, 0xa918ae16, 0x0c2809e2, 0x0c144715, 0xae311309, 0xb9181783, 0x4d240d2b, - 0x95005f00, 0x22149748, 0x62313334, 0x435d2730, 0x3f36220a, 0x10276201, 0x83160521, 0x3536274a, 0x33012f34, 0xd0603736, 0x22232305, 0x16450607, - 0x02401805, 0x18372008, 0x8208c0b5, 0x181f2019, 0x47096474, 0x542007e9, 0x211f3262, 0x3262160c, 0x13332f07, 0x06050402, 0x0c0b0d0d, 0x1a090304, - 0x29621e08, 0x5d5b200f, 0x1a29057e, 0x2d2d4413, 0x2d2d0202, 0x066f4d44, 0xc8718020, 0x5d132007, 0xa6480a45, 0x01692611, 0x1b214001, 0x202e624d, - 0x08351722, 0x2407d77c, 0x030c1a08, 0x0e286287, 0xa95d7720, 0x83192005, 0x4a888380, 0xe8710592, 0x0c225e07, 0x240cbb5d, 0x005f004d, 0x5eb34183, - 0x2326252a, 0x06072231, 0x011f1415, 0x4109aa41, 0x185f05b2, 0x412f2006, 0xc9205ca1, 0x2006a141, 0x05e64293, 0x8f419320, 0x41b72063, 0xb518068f, - 0x6d5e0c7b, 0xd7651805, 0x057f410c, 0x99008e26, 0xaf00a400, 0x20818741, 0x04721802, 0x18172009, 0x940adc80, 0x4bd02015, 0x54430f36, 0x1ab2414a, - 0xac769f20, 0x08dc4910, 0x4308d076, 0xd6415866, 0x7299201a, 0x982009d8, 0x1020a283, 0xa8220484, 0x08851602, 0x78021622, 0x25080e73, 0x04000030, - 0x3b472400, 0x00112606, 0x005f004d, 0x13e15e78, 0x37450720, 0x012f2448, 0x4d010f26, 0x1f2608d9, 0x36371601, 0x0283013f, 0x51012721, 0xc641101a, - 0x13312113, 0x450a4e67, 0x3e38281b, 0x3620090d, 0x070c0d0c, 0x03030640, 0x0c0c370c, 0x0240070d, 0x0c062c01, 0x24589f41, 0x370c063e, 0x306c831f, - 0x0c0c0c6f, 0x04072007, 0x046f0b03, 0x090d4c04, 0x03511800, 0x002a250c, 0x004b003c, 0x27064967, 0x1d060715, 0x013f1601, 0x17230785, 0x82373332, - 0x37362b03, 0x35262726, 0x37363734, 0x09823527, 0x53182720, 0x62181246, 0x1b7a0d47, 0x08b83b05, 0x3aac1103, 0x020d0106, 0x026e6e02, 0x1d030a02, - 0x15151111, 0x11014d23, 0x97181c12, 0x62181145, 0x012e0e45, 0x1f1f03c0, 0x0569541d, 0x03124209, 0xe2184731, 0x0830088f, 0x29232219, 0x1925262e, - 0x1f1d542c, 0x90fe031f, 0x180fce5b, 0x47104962, 0xeb830b97, 0x50004522, 0x9418edac, 0xf2a125ef, 0x101d7518, 0x0fda4f18, 0x0020f2a7, 0x580ff45d, - 0xc11808a7, 0x00200cb9, 0x23068749, 0x00c00180, 0x5520f783, 0x3725f5be, 0x07161707, 0x05ed7806, 0x4b013f21, 0x372105d1, 0xb2138236, 0x7b5918fa, - 0x38034118, 0x25875918, 0x3b002e24, 0x59465a00, 0x17163007, 0x17151716, 0x06011d06, 0x17152707, 0x18021d16, 0x251145e5, 0x013f3435, 0x9f180535, - 0xc02d2a42, 0x1b121201, 0x0111121c, 0x041c0666, 0x09fc4240, 0x06010d32, 0x0311ac3a, 0x5001b808, 0x4009090e, 0x500e0909, 0x152f9f18, 0x1f1d6237, - 0x1f03031f, 0x3a541d1f, 0x11191311, 0x2b471322, 0x12180805, 0x8be5180d, 0x31472908, 0x09421203, 0x92546905, 0x22e95318, 0x39069770, 0xa001fd01, - 0x1a000f00, 0x30002500, 0x4f003f00, 0x6d005e00, 0x9a007c00, 0x5d790000, 0x18152005, 0x7908a58d, 0x0a8a0a54, 0x87115f79, 0x16372531, 0x17163117, - 0x0a833f89, 0x35204c83, 0x51086479, 0x1084060c, 0x0c8b0720, 0x07171629, 0x36313726, 0x56322133, 0x072005f8, 0x0a35a618, 0x26272623, 0x6e3f7927, - 0x02fc2108, 0x010c0707, 0x07070cc8, 0x19190601, 0x0e090925, 0x090e00ff, 0x19192509, 0x01a00105, 0x10221716, 0x8205f778, 0x79202006, 0xb820191c, - 0x32842488, 0x388d1020, 0x0779a020, 0x21068706, 0x108b0f01, 0x1d8d1020, 0x080c9c22, 0x0c250082, 0x071b1a26, 0x05ac4902, 0x1b070225, 0x1800261a, - 0x2b0bef7a, 0x0019000c, 0x00530041, 0x1300006a, 0x200ba542, 0x200c8b33, 0x08817005, 0x19161521, 0x230e8706, 0x37363526, 0x35250182, 0x23262734, - 0x05aa7c21, 0x200b996e, 0x16691837, 0x42602015, 0xc02006c2, 0xff210786, 0x189f8500, 0x2d09b7e9, 0x01031013, 0x01382323, 0xfe0e0909, 0xa34501c0, - 0x21691810, 0xc0012116, 0xea5a2f82, 0x20658308, 0x821082a0, 0x3b20255b, 0x430c2b2b, 0x432a6485, 0x11100804, 0x112d2e3d, 0x10820304, 0xb45dfe20, - 0x31691810, 0x13334114, 0x33416220, 0x18052043, 0x1810cf4d, 0x410e5c60, 0x02202e2b, 0x10ee5918, 0x41101747, 0xd0203023, 0x201f2247, 0x088f6206, - 0x22074f42, 0x4167005c, 0x5142431d, 0xa0601811, 0x2e224113, 0x47114e42, 0x23411148, 0x11474230, 0x20165447, 0x102b4105, 0x29415e20, 0x11474243, - 0x69182320, 0x204109c6, 0x1143422e, 0x430bb563, 0x3f423163, 0x0aae6310, 0x420a6f62, 0x6c20073b, 0x42430f41, 0x6a181139, 0x1d411802, 0x113e422e, - 0x6a181020, 0x8b44130d, 0x1d6a1844, 0x11434216, 0x49573341, 0x334117b2, 0x1ac04940, 0x49427b43, 0x3b671acc, 0x01803505, 0x001e00c0, 0x004a0034, - 0x0100005f, 0x22232627, 0x0706020f, 0x280c1463, 0x36372735, 0x012f2627, 0x41861807, 0x20159514, 0x0a505805, 0x6d273421, 0x2008053a, 0x18620115, - 0x04060703, 0x02073418, 0x09260502, 0x07050501, 0x05072f2f, 0x05260905, 0x34070203, 0x05964662, 0x2007e852, 0x210e8de0, 0x765aa001, 0x3e068606, - 0x06308a01, 0x01083006, 0x25050706, 0x04040735, 0x03181903, 0x34070404, 0x07060525, 0x18ca0801, 0x180d5357, 0x180eab46, 0x460e5446, 0x737a05d3, - 0x00162805, 0x0024001d, 0x4341002b, 0x5018067b, 0x3d240843, 0x35233701, 0x2328ca82, 0x010f2305, 0x07013f33, 0x09820382, 0x0c842720, 0x5d052321, - 0x35210818, 0x4b6b1811, 0x58072008, 0xc8820665, 0x82555521, 0x75012490, 0x825a064a, 0x4a2a2302, 0x06825b05, 0x0c84a020, 0x20014a22, 0xec851b83, - 0x55200582, 0xfe20e884, 0x21060541, 0x4383aab6, 0xb50b4025, 0x89c0b50b, 0x12aa1804, 0xaa36210e, 0x35099758, 0x00c00180, 0x001f0014, 0x0035002a, - 0x0060005b, 0x32210100, 0xc5821617, 0x23060725, 0x18272221, 0x5107fabe, 0x0320147a, 0x05261589, 0x15231521, 0x63601533, 0x14341905, 0x3335230c, - 0x47832335, 0x36373424, 0x23821733, 0x60013523, 0x06b54801, 0x0786ff20, 0x08caee18, 0x51083951, 0xfe2c084b, 0x28000140, 0x1b1b2928, 0x0e090901, - 0x0125da83, 0x48291b1b, 0x24fd8528, 0x015050a8, 0x201782c0, 0x064779fe, 0x82c00121, 0x02c82517, 0x02164016, 0xb8200484, 0x0c820786, 0x89580121, - 0x40382316, 0xaf186040, 0x60210fb4, 0x05ef4840, 0x40404023, 0x1f911800, 0x01802b08, 0x003d00a0, 0x005e004f, 0xee641300, 0x16172a0c, 0x2326011f, - 0x07060722, 0x08bc4135, 0x16171429, 0x06373233, 0x83171415, 0x011d2a18, 0x26272623, 0x13373427, 0x18f78236, 0x511242a7, 0x1f280608, 0x013f1601, - 0x4bd52736, 0x4b2b7e85, 0x07101015, 0x2d11112b, 0x79182625, 0x0324089b, 0x01010704, 0xc92cd982, 0x010f0f18, 0x10077603, 0xab011411, 0x6c0f894e, - 0xd8180f7e, 0x0c27086b, 0x0378140b, 0x7b231414, 0x4020065e, 0x01244882, 0x08081918, 0x40235e82, 0x820f0f01, 0x4c012566, 0xfe0c0b14, 0x10ff5e18, - 0x766c2b20, 0x6e04200e, 0x134106ab, 0x00582205, 0x40154163, 0x6c101c6a, 0x1a41136e, 0x491b2030, 0xa4480f74, 0x301b4110, 0x48101a4a, 0xe37016a2, - 0x42022005, 0x68200737, 0x18512141, 0x4118dd5f, 0x17204126, 0x17e05f18, 0x2f410120, 0xe95f1841, 0x00002119, 0x2f095742, 0x00430030, 0x006e0050, - 0x22230100, 0x03070607, 0x2e05a05e, 0x37343533, 0x17323336, 0x33011d16, 0x82373635, 0x37362602, 0x26272627, 0x0d4a182b, 0x1517240a, 0x5b060714, - 0x2c8209af, 0x32171524, 0x32823117, 0x3d842320, 0x1dcfd918, 0x4b20012d, 0x07101015, 0x0f010376, 0x43c9180f, 0x202b0577, 0x1c011e02, 0x071f2c1d, - 0x43151010, 0x2244069c, 0x201f8506, 0x145518b0, 0xa0012c1c, 0xfe140b0c, 0x180909b4, 0x44010f0f, 0x402c069d, 0x19122580, 0x041f1f2d, 0x0c0b1456, - 0xc0201387, 0x0dae4c18, 0x23205518, 0x82000221, 0x80023300, 0x24005b01, 0x00003700, 0x31373613, 0x35011f36, 0x058e3736, 0x0607162b, 0x35062b07, - 0x17322103, 0x08e04f16, 0x3734352a, 0x01403336, 0x63070b0a, 0x8226048d, 0x1408090a, 0x00834044, 0x02208022, 0x4508987e, 0x01270568, 0x04030c4b, - 0x8f8b940a, 0x11c22705, 0xeb011010, 0x8e18f5fe, 0x03200cbb, 0x80269f86, 0x2f002a00, 0xa1825a00, 0x1d013b25, 0x18012b05, 0x200c4e46, 0x270d9223, - 0x11211121, 0x23070605, 0x0ea14618, 0x17163322, 0x2b311488, 0x3b053d01, 0x18171601, 0x20181820, 0x16020216, 0x05497308, 0x58260590, 0x60fea001, - 0x20991002, 0x012c4085, 0x50581880, 0x02185850, 0x28021616, 0x20200483, 0x0e840488, 0x8280fe21, 0x871a9521, 0x06eb5338, 0xc0010024, 0xef820c00, - 0xef824820, 0x3637332b, 0x23272627, 0x1f060706, 0x23058202, 0x31300139, 0x07270b82, 0x17160706, 0x5c211716, 0x2620072f, 0x4a063977, 0x39081629, - 0x80c0010f, 0x0404052f, 0x040ac40a, 0x802f0504, 0x1e070680, 0x2020292a, 0x1b1b0102, 0x29400129, 0x02011b1b, 0x2a292020, 0x0403021e, 0x0e2f1e04, - 0x2f11110e, 0x0e11112f, 0x0b8b2f0e, 0x47600134, 0x01070809, 0x09080701, 0x04042047, 0x37232212, 0x125c5238, 0x38522a07, 0x12222337, 0x02030201, - 0x853991d0, 0x08bf6045, 0xdf828020, 0x43003630, 0x5f005000, 0x80007100, 0x26010000, 0xd582020f, 0x84111521, 0x233122d4, 0x25d78335, 0x37363331, - 0x6f732306, 0x0714240b, 0x82323736, 0x343526f6, 0x022f2627, 0x3c461807, 0x8a15200b, 0x013f250c, 0x16150706, 0x2206d365, 0x4d272635, 0x27201195, - 0x0805d160, 0x26012f28, 0x011f3637, 0x12520137, 0x117d8b12, 0x0d010b0a, 0x1001140e, 0x12120140, 0x2406011b, 0x19251813, 0x19010119, 0x07832519, - 0x3b2c0f2c, 0x1826252d, 0x7d110a0b, 0x4618f28b, 0x09890945, 0x010fe024, 0x0e840f01, 0x0f011022, 0x11086718, 0x0b0b6324, 0xd9180a0a, 0x01370963, - 0x5d0a0abb, 0x0d0d041c, 0x14ddfe11, 0x60010d0e, 0x0112121b, 0x870b293a, 0x2e07836e, 0x0120151c, 0x5e231414, 0x040d0d11, 0x19bb5d1c, 0x2009644e, - 0x200a8980, 0x247386c0, 0x0f10010f, 0x109c5601, 0x0a0a2b24, 0xd9180b0b, 0x00240973, 0xff000007, 0x41052376, 0x7a22097f, 0x81418500, 0x267c575f, - 0x48518641, 0xbf471088, 0x53864110, 0x4980fe21, 0xe3470f51, 0x41062017, 0x8a20128f, 0x20718d41, 0x15135837, 0x43010f21, 0x92415219, 0x192b4810, - 0x48659b41, 0x53531b4f, 0x002f2a09, 0x004e0041, 0x0068005b, 0x8b5f1875, 0x3317240a, 0x57161716, 0x2321052d, 0x33321935, 0x2c098309, 0x36373635, - 0x35373337, 0x33363734, 0x105f5417, 0xa2442520, 0x21358207, 0xad440523, 0x220a8305, 0x8b050706, 0x8b212019, 0x2001320c, 0x01010f70, 0x665a500f, - 0x0112121b, 0x1b121201, 0x078565b0, 0x08fc9c18, 0x095a6624, 0x9c650e09, 0x00ff2110, 0x22089b44, 0x18700120, 0x2109974a, 0x178a90fe, 0x0b8a8020, - 0x0f01c024, 0x09450f30, 0x83e02006, 0x1970206d, 0x8308a21f, 0x25128477, 0x090e4040, 0x315ff009, 0x4410200f, 0x1021099a, 0x60551840, 0x89738208, - 0x2109870c, 0x8f440000, 0x0029370a, 0x00430036, 0x00640055, 0x00900071, 0x1f360100, 0x16171602, 0x5441011d, 0x07062b08, 0x07063123, 0x33150706, - 0x14832131, 0x37341125, 0x18023f36, 0x230c29d7, 0x1716011d, 0x2205976a, 0x68070623, 0x7b52116d, 0x27262707, 0x16373635, 0x5d57011f, 0x37aa180b, - 0x1832200a, 0x22089a87, 0x6f262722, 0x352205b0, 0x21462e01, 0x1f203a07, 0x201f3030, 0x40021e01, 0x0112121b, 0x14f0fe40, 0x0b010d0e, 0x8b7d110a, - 0x095741de, 0xf0200989, 0x250b4246, 0x25191901, 0x66411010, 0x010f2208, 0x1d455ac0, 0x2008ff42, 0x20728363, 0x2d7a8201, 0x01251219, 0x601b1212, - 0x140e0d01, 0x17462301, 0x41cb2005, 0x80200959, 0x48200a89, 0x830b4846, 0x10782384, 0x7a880f01, 0x755a6020, 0x00043222, 0x01c0ff00, 0x00c00180, - 0x00220017, 0x0031002d, 0x05275a00, 0x34353335, 0x013b3637, 0x26272611, 0x07062127, 0x13110706, 0x68270607, 0x07210527, 0x240a8917, 0x37152313, - 0x20ae8300, 0x186d82a0, 0x250a7b58, 0x0b0b60ab, 0x04850a0a, 0x0a83a020, 0x752b0484, 0x1b008080, 0x80011212, 0x1809090e, 0x270ac458, 0x60750180, - 0x0b0b0a0a, 0x20210484, 0x840a83a0, 0xebfe2104, 0x00232f82, 0x190f0004, 0x24082b37, 0x00410038, 0x1567184a, 0x06072108, 0x079cf018, 0x83363721, - 0x34273401, 0x012f2627, 0x33373607, 0x16011f32, 0x3f32013b, 0x19333601, 0x180c5f33, 0x1807a758, 0x190a7ba1, 0x301a0637, 0x0109016d, 0x05280305, - 0x05083008, 0x0a050328, 0x07986401, 0x57553820, 0x18602007, 0x2108d7a8, 0x361903bd, 0x972b18de, 0x36040109, 0x04360606, 0x49760901, 0x7621074a, - 0x20398786, 0x204b8710, 0x8b008200, 0x003c24eb, 0x9e55004c, 0x6e0320eb, 0x332306e6, 0x49011f16, 0x0631051d, 0x06152307, 0x012f2207, 0x3f343526, - 0x013b2701, 0x85c7181d, 0x1817200b, 0x9a0872a2, 0x076c2bf6, 0x12121b08, 0x09142c01, 0x245b4007, 0x01302b05, 0x6302030c, 0x010f020b, 0xbb4b0828, - 0x0f012205, 0x21faa380, 0x996be5fe, 0x11013605, 0x200f010e, 0x01161722, 0x01010c33, 0x040c052a, 0x207e1e04, 0x052d4c20, 0x010f3022, 0x4e850282, - 0x00000023, 0x0aef4102, 0xff9e3420, 0x2405d243, 0x37011f32, 0x25fe8236, 0x0f141716, 0xfa820601, 0x9a012721, 0x017d36de, 0x191a1111, 0x13070713, - 0x11111a19, 0x0b531201, 0x0111530b, 0x1ac04101, 0x2784da20, 0x12070722, 0x52383985, 0x13520a0a, 0x00040019, 0x01e0ff00, 0x00a001c0, 0x002c0015, - 0x004e0043, 0x19055b4d, 0x2210bd77, 0x69070617, 0x37230922, 0x82272635, 0x2627280f, 0x011d1707, 0x18361716, 0x6c0816e9, 0x062205f2, 0xc0643307, - 0x01002309, 0x64181212, 0x098207f4, 0x1bc0fe2f, 0x4c011212, 0x0f01010b, 0x0742010f, 0x2008880b, 0x09c07a94, 0x8e453020, 0x41a02006, 0x6020089d, - 0x85074846, 0x2352853e, 0xa00c0341, 0x66242983, 0x04020a6e, 0x03230a88, 0x8360400f, 0x83502015, 0x8820203c, 0x840f2041, 0x52a0202a, 0xf38905e7, - 0x49002722, 0x0620f182, 0x0cbd7d18, 0x072eb318, 0x41103c6b, 0x484705a8, 0x2f222108, 0x0cd1a218, 0x011f3624, 0x68184035, 0x098808a5, 0xc0c0fe22, - 0x200f826c, 0xb94e1810, 0x13122808, 0x37131b1c, 0x820c071c, 0x04042a00, 0x10073105, 0x01290c10, 0x18df83a0, 0x460f3ba0, 0xc84608d8, 0xb94e1807, - 0x1c662808, 0x13011213, 0x820c3837, 0x26498341, 0x02030f60, 0x413b2a0b, 0x56240cdb, 0x71006800, 0xd283e998, 0x3b982f19, 0x4311516b, 0x114108a3, - 0x16a03814, 0x13130102, 0x0e111111, 0x07080f0e, 0x02021617, 0x08071716, 0x820e0e0f, 0x13132412, 0x82160201, 0x87122011, 0x8308201f, 0x1616220d, - 0x201f8708, 0x182d8212, 0x200c909e, 0x822f8458, 0x15384125, 0x1e823e20, 0x7c8b3c8c, 0x7c9d5c85, 0xe94fa220, 0x4b20200b, 0xf7180798, 0x6a270bcb, - 0x00007300, 0x6b330713, 0xfb6f0803, 0x012b2105, 0x23291290, 0x0615010f, 0x35272607, 0x071f5627, 0x27013b22, 0x28083b4e, 0x33171615, 0x06012b27, - 0x28118807, 0x3527023b, 0x35303134, 0x050d5236, 0x31141726, 0x07153114, 0x2207a871, 0x454201df, 0x2829078b, 0x01010f28, 0x041c280f, 0x47118728, - 0x2b2405c0, 0x0f020103, 0x27201a82, 0x2205ac72, 0x84130124, 0x16162b1f, 0x110f0123, 0x100d1c05, 0x5a731023, 0x08082c07, 0x0801015a, 0x090d0d09, - 0x829f0108, 0x23368332, 0x0595010f, 0x21073046, 0x11820150, 0x0d8c9020, 0x012b6422, 0x01242883, 0x110b0c1f, 0x20206082, 0x24281c83, 0x5f071a1a, - 0x1e90010f, 0x084b4418, 0x010b052d, 0x09080d01, 0x010d0809, 0x43450b01, 0x00200792, 0x29095b59, 0x00420030, 0x00ad0054, 0x62181300, 0x15210adb, - 0x09747c14, 0x3f323323, 0x059b6d01, 0x0d89aa18, 0x55152321, 0x9718104e, 0x3422127c, 0x4b533137, 0x07062206, 0x07017814, 0x66263521, 0x0626055d, - 0x15070607, 0x06842326, 0x82531e8e, 0x18022007, 0x3a101bda, 0x023d012b, 0x18050aa0, 0x07070a39, 0x0a371603, 0x0316370a, 0x390a0707, 0x890a0518, - 0x01092315, 0x17890901, 0x4210d371, 0x01210b55, 0x2b0d8538, 0x0a0b0117, 0x100b0b10, 0x17010b0a, 0x2407b063, 0x1722110f, 0x890e8216, 0x212b8519, - 0x511858fe, 0x68220d50, 0x8694c001, 0x0a209c95, 0x10881419, 0x8506fe52, 0x85102054, 0x0c352806, 0x12120d21, 0x82090912, 0x210d2304, 0xb373350c, - 0x07172107, 0x15209d83, 0x15201d8d, 0x08213385, 0x22d98ba8, 0x456008a8, 0x002d0673, 0x01400200, 0x00170080, 0x002d001b, 0x05d46700, 0x24059549, - 0x17161716, 0x05ab4921, 0x37033525, 0x18011523, 0x8210b24d, 0x12122339, 0x4c44fe1b, 0x82602009, 0x82802063, 0x59fe2000, 0x7a8506e5, 0x20880120, - 0xa249ff20, 0xfea02408, 0x798080c0, 0x99850795, 0x0af74118, 0x1300bf28, 0x37003300, 0x91874900, 0x7c193620, 0x0625088f, 0x27070607, 0x189b8333, - 0x240ab5c2, 0x1d060722, 0x05d64b01, 0x01241583, 0x01073335, 0x105d5318, 0x1805154a, 0x2a0d3996, 0x180a86e0, 0x18202018, 0x4a850b18, 0xfe21073c, - 0x082d46a0, 0x2024c991, 0x19111101, 0x0d499618, 0x121c2028, 0x11010111, 0xaa4a1c12, 0x050e670c, 0x4182fe20, 0x0120e48f, 0x20083b60, 0x08dd8216, - 0x011f3643, 0x16131716, 0x012b0607, 0x22211527, 0x13372627, 0x01013f36, 0xe013130d, 0x0120020b, 0x800e0a09, 0x0e00ff80, 0x2001090a, 0x01e00b02, - 0xa00c0cba, 0xe0fe0f08, 0xe00b0a0e, 0x0f0a0be0, 0x080e2001, 0x0be367a0, 0x33001427, 0x00003700, 0x0a8a6913, 0x37363526, 0x37151716, 0x02826982, - 0x011f1623, 0x0f845515, 0x35013b23, 0x3d748237, 0x15273313, 0x500f0df2, 0x0f501010, 0x2812100d, 0x02161602, 0x7b101228, 0x0ba81313, 0xca411802, - 0xc0fd2105, 0x23080785, 0x0b021880, 0x4d4d13a8, 0x10125001, 0x480c0c48, 0x0d0f1210, 0x02167a24, 0x247a1602, 0x0e170f0d, 0x0d07800e, 0x4107737c, - 0x052905dd, 0x80070da0, 0x8080c7fe, 0x2e008200, 0xff200002, 0x016002c0, 0x002200c0, 0x79000039, 0x21300536, 0x26273637, 0x1506010f, 0x16011f14, - 0x012f3637, 0x07f3ad18, 0x2f343524, 0x19830701, 0x17211c82, 0x22ad8216, 0x83323317, 0x2f262c1f, 0x12080201, 0x220f0d10, 0x83216dfe, 0x085022b2, - 0x248f8208, 0x01210f0d, 0x200f8892, 0x2abe85b5, 0x0f090a02, 0x0f6060c0, 0x83010909, 0xba0127ba, 0x10120f0d, 0xb7831e1e, 0x0b074825, 0x8f48070b, - 0x85a1200f, 0x0b0f2dc3, 0x0ba0a00b, 0x0ca00f0b, 0x00008008, 0x2025b789, 0x00003700, 0x22b08f13, 0x18161716, 0x220a024a, 0x95173721, 0x8d9820b5, - 0x1f7130ac, 0x02011414, 0x01021616, 0xfe332222, 0x95bb218f, 0x8e9620b2, 0x14012fac, 0x16281f14, 0x28160202, 0x01222233, 0xb0927d1e, 0x0700032e, - 0x3802c0ff, 0x1400c001, 0x40002900, 0xdd18b182, 0xf15b0ca3, 0x93212006, 0x16704114, 0x1842d220, 0x072a4209, 0x91600121, 0x95ff2013, 0x425020c2, - 0x39420b25, 0x20138713, 0x20cc9237, 0xcf5a1800, 0x00bf2209, 0x23cf8212, 0x16070100, 0x1f21c282, 0x080e4201, 0x7141c882, 0x8d012915, 0xa80d0ea1, - 0x92070414, 0x22070142, 0x959a1313, 0x7ab927a3, 0x10800903, 0xf441291a, 0x0d0d2206, 0x188b95a0, 0x37094b77, 0x001f000c, 0x1300002a, 0x34352115, - 0x21232627, 0x15060722, 0x11152317, 0x2005824b, 0x23068315, 0x21233511, 0x28052069, 0x16373635, 0x40010017, 0x065a6809, 0x02181826, 0xe0021616, - 0x18230483, 0x47e8f0fe, 0x01210786, 0x07c24ca0, 0xfe184023, 0x095e5890, 0x18700123, 0x09a54f90, 0x13570020, 0x01402308, 0x878500c0, 0x4a003724, - 0x8d825500, 0x8205a65a, 0x36372e92, 0x023b0733, 0x07061115, 0x23352726, 0x21068315, 0x384c3511, 0x27262208, 0x2629a837, 0x090ec020, 0x8200ff09, - 0x182022ba, 0x20b784d0, 0x20b783a0, 0x079548c0, 0x1f9ea020, 0x83c00121, 0x8220203a, 0x8f602044, 0x0a9256d4, 0x24a3e020, 0x2607fb51, 0x00bf0140, - 0x82330019, 0x005a26f1, 0x006f005e, 0x23f98280, 0x06310726, 0x7d054c73, 0x272505e5, 0x37343526, 0x056d5036, 0x5a063121, 0x6f480581, 0x82342008, - 0x0f262217, 0x1d0f1901, 0x8203200b, 0x20398323, 0xf357183f, 0x37232b0c, 0x17271733, 0x36273723, 0x5d852627, 0x59825383, 0x0e822520, 0x37355487, - 0x27343536, 0x0c0c0d3f, 0x05151505, 0x0c0d0c0c, 0x10050505, 0x22048210, 0x89c2010c, 0x211f890b, 0xda790cad, 0x890c2307, 0x31820405, 0x060c0c27, - 0x0615dc15, 0x3b3b820c, 0x89060504, 0x860ea21d, 0x4c26510e, 0x13077d26, 0x0f0f0b15, 0x0713150b, 0x26010b0b, 0x13850785, 0x04be0129, 0x320c0505, - 0x82323a3a, 0x06042f61, 0x270d0c0b, 0x0d272d2d, 0x06060c0b, 0x0b880b0c, 0x06050522, 0xa3222388, 0xe3461510, 0x10152307, 0x6c82d2fe, 0x05060627, - 0x2d2d0d04, 0x8383820c, 0x2e01307b, 0xb32020db, 0x15835353, 0x2313070b, 0x82232727, 0x19152575, 0x14191d1d, 0x18870887, 0x00002908, 0xff000006, - 0x010002c0, 0x003b00c0, 0x0045003f, 0x004d0049, 0x13000058, 0x16011f36, 0x06071617, 0x07141523, 0x17012b06, 0x07777418, 0x22012b24, 0x04843031, - 0x6c4b3120, 0x83372009, 0x013d3c0a, 0x37262722, 0x13013f36, 0x27330727, 0x27371707, 0x37010f23, 0x27011f27, 0x7e062707, 0x26320533, 0x0ef22327, - 0x040ca00e, 0x130a0504, 0x050e0909, 0x90464520, 0x015f2305, 0xcb18fe01, 0x4522073a, 0x14820520, 0x050a133c, 0xa00c0404, 0x753a3b49, 0x3f3f0575, - 0x0b0e7405, 0x2d6e232e, 0x0f76220b, 0x774e0101, 0xbd012506, 0x07500606, 0x1221ff82, 0x20318250, 0xc28a18c0, 0x210c820c, 0x1a821250, 0xfe500733, - 0xc0313143, 0x1c35351c, 0x1d264353, 0x1d43261d, 0x082c4bf0, 0x83540020, 0xf7b9180b, 0x0089220b, 0xc3eb1800, 0x07142865, 0x07061716, 0x5e230706, - 0xa64c0976, 0x05d66b06, 0x16171628, 0x01200117, 0xeb180e0d, 0xe03551c5, 0x01022002, 0x10221716, 0x0e0d090a, 0x23100909, 0x02011616, 0x08c9521f, - 0x09e64a18, 0x18489021, 0x244ac9eb, 0x170709d0, 0x4a6a8329, 0xa02b0663, 0x23161601, 0x09071729, 0x841b1b29, 0x0000227b, 0x05634900, 0xc001003c, - 0x00002400, 0x16170725, 0x05070607, 0x37262706, 0x36373613, 0x2637011f, 0x98183435, 0x2d080996, 0x22230601, 0x63580127, 0x05040c42, 0x1300ff10, - 0x50060d0e, 0x0d121105, 0x0b0b6341, 0x1c1b165f, 0x60141415, 0x0b0f0f0b, 0x0d4163eb, 0x1b821112, 0x120e0d2a, 0x05110001, 0x63420c04, 0x602a1783, - 0x1c151414, 0x0b5f161b, 0x3b4d000b, 0x2c778305, 0x00360020, 0x0060004b, 0x1d161300, 0xcb791801, 0x1415280f, 0x012f0607, 0x82362726, 0x011f2184, - 0x0a577818, 0x09946d18, 0x94450520, 0x25108905, 0x3b363734, 0x5c562101, 0x18232007, 0x2509e9a4, 0x07590ff1, 0x7e505818, 0x18583207, 0x0f0f5907, - 0x0111c010, 0x10c01101, 0x09092f0f, 0x0727410e, 0x09090e22, 0x09514318, 0x20053543, 0x0ffe64c0, 0x09bb0126, 0x02164812, 0x2f071a51, 0x12481602, - 0x60070909, 0x0a13130a, 0xfb090760, 0x44603585, 0x1f6e1808, 0x6a0d8d0d, 0x802c0613, 0x3400c001, 0x4c003a00, 0x73005e00, 0x270cc552, 0x1f323315, - 0x031d1601, 0x21068d4a, 0x4118012b, 0x2320072f, 0x262a0888, 0x11272627, 0x27353305, 0x97181523, 0x431811ad, 0x464a11a9, 0x5b741805, 0x8300200e, - 0x40012acb, 0x010d0e14, 0x4d131a33, 0x20c28513, 0x072f4f20, 0x08878020, 0x21831020, 0x80a00126, 0x00ff334d, 0x210f9458, 0x2b527001, 0xf1fe2d0f, - 0x0e0e1111, 0x0216a627, 0x27a61602, 0x2006187e, 0x09f14250, 0x69823020, 0x20131a22, 0x1806a661, 0x850fc471, 0x13d02392, 0x4b18604d, 0x461810b1, - 0x01211000, 0x255d8341, 0x16160227, 0x73832702, 0x11115023, 0x125b4150, 0x5b417220, 0xb05e185e, 0x07262209, 0x23018206, 0x17161716, 0x32565a41, - 0x14141fc0, 0x15140201, 0x110c0c11, 0x01021415, 0x411f1414, 0x902a5358, 0x1c131201, 0x16212116, 0x05830d0d, 0x12131c26, 0x00040001, 0x07bf6318, - 0x47004224, 0x70185900, 0x33240ca9, 0x14011f16, 0x4206b05b, 0x5f681ab3, 0x59352007, 0x052409fd, 0x15232733, 0x7105a554, 0xc0420b57, 0x01202e11, - 0xe01b1212, 0x29341225, 0x04013512, 0xf05b191b, 0x11ad4208, 0x240c6953, 0x2b566001, 0xd354182b, 0xb3041908, 0x10b44208, 0x26052460, 0x24021e02, - 0x83020177, 0x4620206a, 0x9e4205f0, 0x8315850f, 0x0e60261c, 0x80200909, 0x22a64260, 0x2e050748, 0x018002e0, 0x004400a0, 0x005b0049, 0x1884006d, - 0x18097dc7, 0x2008c3fe, 0x7e098333, 0xc34f099a, 0x26088408, 0x35363732, 0x5d262734, 0x2328050a, 0x35303526, 0x23272627, 0x05250282, 0x35231733, - 0x10f95503, 0x18059961, 0x200b359d, 0x33951803, 0x4160202e, 0x18440964, 0x066a4117, 0x12120131, 0x3501041b, 0x12342912, 0x2001e025, 0x18562b2b, - 0x201037ed, 0x05434401, 0x0abcc518, 0x9518e320, 0x2255266a, 0x08714105, 0x831c9641, 0x01012ab1, 0x02247701, 0x6060021e, 0x11ad4460, 0x2210be5d, - 0x18342901, 0x1814bac5, 0x6e19ccc2, 0x803b059b, 0x2a00c001, 0x52004900, 0x64005b00, 0x06130000, 0x07063107, 0x1d060715, 0x7a171401, 0x0984071d, - 0x3d261731, 0x31272601, 0x3531033d, 0x27262726, 0x18161517, 0x2007b5d1, 0x069a5e33, 0x84373621, 0x06212d19, 0x17070607, 0x16333736, 0x3723011f, - 0x08f0bd18, 0x07062735, 0x37362726, 0x18c81716, 0x8801100f, 0x08070608, 0x8206327b, 0x5a5b2905, 0x01031d02, 0x5818100f, 0x1625ec82, 0xa0021610, - 0x25058302, 0x0d01021e, 0xf985140e, 0x0e065029, 0x10060e98, 0x56c810e0, 0xb8200702, 0x08087856, 0x1d02c02c, 0x516b1a1d, 0x08400905, 0x25020405, - 0x08042852, 0x05050820, 0x071e1e03, 0x22112108, 0x018e5204, 0x1d1d1a61, 0x21e0b002, 0x3e832b0c, 0x83282821, 0x0c2b2205, 0x084d4321, 0x010e4f27, - 0x31310e01, 0x6c538791, 0xb37e080d, 0x000a3c0a, 0x00270015, 0x004b0039, 0x00740062, 0x13000086, 0x16213736, 0x21070617, 0x89112726, 0x1413230a, - 0x7b183107, 0x13440c0c, 0x32332106, 0x2305c049, 0x35262722, 0x2b06d142, 0x1716013b, 0x07141716, 0x27012b06, 0x06200983, 0x2a06c66c, 0x36373435, - 0x013b3637, 0x91371732, 0x2726234c, 0x20842631, 0x07253186, 0x02160200, 0x21d08350, 0x0583b0fd, 0xd3230b89, 0x541b1213, 0x133909f8, 0x121201b3, - 0x0e13601b, 0x0813141c, 0x09090e56, 0x1508ce01, 0x120e1d14, 0x2d238360, 0x520e0909, 0x05123367, 0x09090101, 0x1d82e00d, 0x30120528, 0x0b600d0c, - 0x448dac0a, 0x1722f122, 0x222a0082, 0x01171622, 0x22161701, 0x7283a801, 0xfe210383, 0x21098730, 0x6d554801, 0x84a0200f, 0x170c2361, 0x66821e16, - 0x171e2025, 0x83090b17, 0x2465828b, 0x0f300e3e, 0x05924311, 0x2f0f1126, 0x8202030e, 0x60203b8f, 0x87078955, 0x068b4b07, 0x34058344, 0x00230011, - 0x004b0034, 0x006f005d, 0x13000083, 0x26312734, 0x404e1827, 0x07352c0a, 0x16311714, 0x3736013b, 0x48263736, 0x0523057b, 0x4e373233, 0x23260506, - 0x17160722, 0xfb6f1716, 0x05ec4d06, 0x82013b21, 0x2637251d, 0x37272627, 0x48184b91, 0x15210b99, 0x773a8214, 0x6118096d, 0x7541091e, 0x27f2820f, - 0x14140756, 0x60130e1c, 0xce21db84, 0x83ef8252, 0x12602ffe, 0x15141d0e, 0x0b0a6708, 0x300c0d60, 0x28820512, 0x090de028, 0x05010109, 0x75413312, - 0x066f4110, 0x21057d41, 0x7c56defe, 0xc0fd210d, 0x1805f345, 0x200bc650, 0x242282a0, 0x0c17161e, 0x07014609, 0x09297c83, 0x1e17170b, 0x0e03023e, - 0x0975412f, 0x410e3021, 0x97182173, 0x00200d9a, 0x09a7d218, 0x15000a35, 0x2b002000, 0x54003d00, 0x76006600, 0x97008500, 0x18130000, 0x53091e4d, - 0x272207db, 0x766e0726, 0x0f262605, 0x21170601, 0x9c711816, 0x09704808, 0x2107b541, 0x4c440607, 0x27342205, 0x05736b26, 0x22072225, 0x18070607, - 0x240cd4f3, 0x16171415, 0x20148217, 0x062f4e31, 0x26373625, 0x8205012b, 0x41318205, 0x332006d5, 0x0721308c, 0x25308216, 0x0e111129, 0x0484480e, - 0x482e0226, 0x11110e0e, 0xfd210484, 0x820886b0, 0x5002210d, 0xfe212389, 0x0f8b42e9, 0x02046c35, 0x0216b016, 0x10010104, 0x50060626, 0x01010606, - 0x47240e28, 0x25080789, 0x0e0e0d15, 0x161b150d, 0x02010f0f, 0x11063819, 0x0e0b1911, 0x19700146, 0x0f0f0102, 0x0b0e4616, 0x06111119, 0x744a3538, - 0x88b92010, 0x85482088, 0x2181839b, 0xa9870efe, 0x9f870d83, 0xe041f920, 0x319c830b, 0x160d0b50, 0x0d160202, 0x2302020b, 0x01010108, 0x0d482509, - 0x83202010, 0x0219297d, 0x0a13131a, 0x19025006, 0x06249d83, 0x1a13130a, 0x00212890, 0x0aeb4400, 0x2b00152f, 0x4c003d00, 0x6e005b00, 0x92008000, - 0x06154600, 0x22057969, 0x5d363736, 0x072006a5, 0x093cda18, 0x71141121, 0xc76408be, 0x14152408, 0x83171617, 0x05d54f2d, 0x410a8243, 0x80430caa, - 0x17162909, 0x34373633, 0x37272627, 0x49100a65, 0x60201158, 0x2107d048, 0x0987c001, 0x2040fe26, 0x010e0909, 0x2906bd56, 0x090e40fe, 0x0d01a009, - 0x9a41140e, 0x0e142405, 0x4180010d, 0x1626099a, 0x01010f0f, 0x9f41386d, 0x0659270c, 0x06065006, 0xe8410f29, 0x290f2206, 0x0f124c8c, 0x1442c020, - 0xc001260f, 0x291b1b01, 0x6b8388fe, 0x60200528, 0x1805a143, 0x20086d48, 0xe7691840, 0x41852010, 0x01240694, 0x1b160f0f, 0x240a9841, 0x0901012f, - 0x07d74126, 0x71092622, 0x200f3042, 0x0f044250, 0x8f430020, 0x00103a0a, 0x00320022, 0x00540041, 0x00780066, 0x009a0089, 0x130000ab, 0x26373633, - 0x05237227, 0x36171623, 0xcc551837, 0x234b430d, 0x41262321, 0x386510a3, 0x41272011, 0x3f230fb3, 0x84153301, 0x8334206f, 0x0706243d, 0x60011716, - 0x142005ba, 0x080e9f18, 0x15832120, 0x3732333a, 0x26013d36, 0x15070627, 0x16583023, 0x68160202, 0x0209090e, 0x80021616, 0x222c5b43, 0x41290f59, - 0x9a430dbe, 0xd3d71808, 0x47122009, 0x12230b12, 0x83587801, 0x09092366, 0x7683680e, 0x8b38fe21, 0x0158220d, 0x228b8bc8, 0x8c900158, 0x10174a1d, - 0x21176943, 0xd1410926, 0x1077430b, 0x50422020, 0x4190200f, 0xfe210c02, 0x8c0e8c60, 0x05ef6382, 0x28059753, 0x002000a0, 0x00370025, 0x7d301946, - 0x1523250f, 0x17140706, 0x29059148, 0x26272211, 0x33151735, 0x1f742335, 0x09002520, 0x40400e09, 0x2f060350, 0x1c0f011f, 0x1b1b2933, 0x09090e01, - 0x01404060, 0x7410887d, 0x28190f0b, 0xab25098e, 0x2126392c, 0x05426e27, 0x53822020, 0x60602023, 0x13806cfe, 0x0eb69318, 0x2c06fb4e, 0x00a00100, - 0x00350030, 0x00890077, 0x69e21892, 0x1133210a, 0x2d051a5c, 0x31343734, 0x27262726, 0x37363736, 0x17493530, 0x4c352005, 0x2b31065f, 0x33351703, - 0x16172315, 0x07163117, 0x37161706, 0x440a8236, 0x0982058f, 0x27363723, 0x44348226, 0x09820588, 0x07262723, 0x48488206, 0x0982053d, 0x024f3183, - 0x5d372006, 0x17201011, 0x4c07c94a, 0x1b240735, 0x1c2c291b, 0x2308cb5f, 0x04041010, 0x2005ff43, 0x33008440, 0x07081678, 0x110e0e0e, 0x12121111, - 0x16160202, 0x12120202, 0x12820c82, 0x02610720, 0x211f9705, 0x1f85080f, 0x4d856820, 0x71610585, 0x05414c0a, 0x29e0fe29, 0x01011b1b, 0x1811161f, - 0x27082b54, 0x17161101, 0x72030311, 0xa0232085, 0x87b86060, 0x97528772, 0x960e2072, 0x091c7692, 0x87618582, 0x09434c0a, 0x67000a2f, 0x82007900, - 0x00008d00, 0x26273601, 0x5121190f, 0x34372c3e, 0x36353431, 0x37272637, 0x84171617, 0x21548407, 0x21190726, 0x13200a4d, 0x102b5218, 0x614c3520, - 0x07062105, 0x0bad0719, 0x3a732119, 0x012e242d, 0x201a1818, 0x2b0b090c, 0x19060746, 0x20126b21, 0x20fb75be, 0x3e8c2119, 0x01072228, 0x28320101, - 0x8482030d, 0x0b350725, 0x192e0506, 0x21118b21, 0x4a6e1bfe, 0x00022524, 0x01c0ff00, 0x00230182, 0x1848003f, 0x210c9d81, 0x8d53021d, 0x095e7807, - 0x36231188, 0x18373637, 0x210d4c42, 0xa3472623, 0x07063d05, 0x37361716, 0x1b1b01e0, 0x1a262629, 0x27010119, 0x263a3a26, 0x0b0c0127, 0x0c0b1111, - 0x8c083a47, 0x29202315, 0x4a451b1b, 0x16022405, 0x47010216, 0x192505c5, 0x1056261a, 0x833a83b8, 0x82502042, 0x2042823c, 0x07b645a8, 0x188ea820, - 0x7083b820, 0x0b640820, 0xaf731809, 0x00132809, 0x00400027, 0x44720059, 0x9b4b0b2b, 0x18112009, 0x89081d43, 0x7c272013, 0x2f210c49, 0x059e5e01, - 0x07262723, 0x795f1821, 0x27362611, 0x27010f26, 0x44319733, 0xcb74060d, 0x2c0f890f, 0x370e0e19, 0x110e0e37, 0x11373711, 0x210b8b11, 0x0f8d0201, - 0xbe201b89, 0xa0203298, 0x200bc758, 0x5aa418fe, 0x91f9200c, 0x93468561, 0x9719837b, 0x0000212f, 0x26053342, 0x00c00140, 0x184b0011, 0x2013d390, - 0x7a591803, 0x05ab5d14, 0x09f05b18, 0x18272621, 0x250b976a, 0x16170607, 0x0463013b, 0x18882010, 0x080c1569, 0x05081223, 0x1d1f0204, 0x0b0c0d08, - 0x0701020b, 0x3a3a253b, 0x01083a25, 0x0c0b0b02, 0x1f1c090d, 0x08050402, 0x285e1812, 0xb0fe2111, 0x0ec4c918, 0xc9185020, 0xe3831ff4, 0xc0ff1024, - 0xe3876f01, 0x11f24a18, 0x72180720, 0x012c2d72, 0x23060706, 0x31222722, 0x00012722, 0x230fae49, 0x13162567, 0x0c26d382, 0x0703020b, 0x7c181c14, - 0xf985077c, 0x121d2c25, 0x82020307, 0x080c29df, 0x191a1112, 0x0111131f, 0x95180082, 0x2948083e, 0x0d692307, 0x3e831e20, 0x1d244683, 0xfdfe1529, - 0x0dd82119, 0x16020128, 0x0d0c1b2b, 0x4b82080c, 0x1a1b0c27, 0x01060e0e, 0xb3621800, 0x001d260a, 0x00330021, 0x08ff4342, 0x2005a653, 0x93131915, - 0x57c01812, 0xcc681812, 0x74bf180e, 0x5bc0181c, 0x10254810, 0x19078c63, 0x48128313, 0x04252323, 0xc0ff0000, 0x0bc21802, 0xa24c2009, 0x65c018d3, - 0x08f14312, 0x9c0fd743, 0x019f18dd, 0x4c631810, 0x9a802019, 0x110574e7, 0x19306318, 0xef820520, 0x8002c12e, 0x1100c001, 0x46002200, 0x62005000, - 0x3324f182, 0x06071415, 0x153b0184, 0x31303130, 0x33211123, 0x012f2311, 0x27012b26, 0x37362334, 0x13013d36, 0x4d331723, 0x911809b4, 0x21200868, - 0x23099e43, 0x012b1733, 0x35243c83, 0x03173734, 0x3c0fc74b, 0x10e04037, 0x1b2e1c10, 0x0140011a, 0x0344e020, 0x47170e4c, 0x13220129, 0x2b2e4914, - 0x07a345aa, 0x4b53fd20, 0x04012208, 0x07df4221, 0x284a5427, 0x45054a9f, 0x0f444d4a, 0x18800121, 0x3009305f, 0xc0fe4001, 0x3f115b04, 0x23231701, - 0xc0fe0a29, 0x212c8340, 0x75186001, 0xa020082d, 0x32200983, 0x2607ee42, 0x0f4a307e, 0x5901670e, 0x0b5c10bb, 0x0051220a, 0x05935d00, 0x74731620, - 0x82142005, 0x33162606, 0x37363732, 0x1a766836, 0x27822089, 0x82163721, 0x181d2033, 0x220886ac, 0x6c200103, 0x2e370734, 0x1f111202, 0x06080806, - 0x0212111f, 0x2222012e, 0x22223333, 0x831f1901, 0x241b8e05, 0x1818100f, 0xb4561810, 0xa47a1807, 0x100d2f09, 0x1e1f1636, 0x1d05051d, 0x36161f1e, - 0x39830d10, 0x16214783, 0x8f05830e, 0x8341831d, 0xc820217b, 0x2505e343, 0x008020c8, 0xbf580200, 0x002c2e08, 0x25000031, 0x0706011d, 0x012b0706, - 0xda1f1921, 0x5c352008, 0x27220538, 0x035d2726, 0x36372505, 0x05173233, 0x152ed582, 0x15253507, 0x01800221, 0x50140e0d, 0xa74bfe40, 0x80012306, - 0x5f82a0fe, 0x090f1e3c, 0x1924080a, 0x292a2424, 0x19460125, 0xfec00e0e, 0x954001c0, 0x0e148005, 0xa144010d, 0x82302005, 0x05753606, 0x0f0b0b03, - 0x212f0b0e, 0xa4121213, 0x1b17170c, 0x49391005, 0x06634400, 0x01c00131, 0x003c00c0, 0x00640052, 0x13000076, 0x71010f22, 0x372e05f5, 0x011f1621, - 0x2f060716, 0x012b2601, 0x9c413315, 0x82172006, 0x23072911, 0x23012f22, 0x012b0607, 0x3f20ae82, 0x14750482, 0x23352205, 0xce431817, 0x34172414, - 0x18263127, 0x2308327e, 0x35363732, 0x11d9aa18, 0x0c135730, 0x1012100d, 0x2a1b0d0c, 0x1b2a1201, 0x0c840c0d, 0x71132408, 0x1b1b2928, 0x42230201, - 0x08020305, 0x37090d28, 0x0d093780, 0x03020828, 0x02234205, 0x291b1b01, 0x18497128, 0x590dd343, 0xfc85063b, 0x8506d44f, 0x90012421, 0x8310100f, - 0x01202b57, 0x13102001, 0x10100c0f, 0x4383300f, 0x1c2fa02c, 0x06060642, 0x37370901, 0x08820109, 0x2f1c4223, 0x217683a0, 0x45827030, 0x83062248, - 0x06a55006, 0x1398c118, 0x2f080365, 0x00c00100, 0x00250021, 0x07061300, 0x15011f06, 0x6f18f687, 0xf3620b97, 0x27172905, 0x15200721, 0xd70e0709, - 0x2006b34d, 0x34ad8660, 0x070ed740, 0x40fe1509, 0x260193e0, 0x01c00193, 0xd6101313, 0x0b3a48b3, 0x10d6b328, 0xd3011313, 0x43439393, 0x002a270a, - 0x1d160100, 0xa8181101, 0x32230b88, 0x19053517, 0x290ea82b, 0x3736013d, 0x01173625, 0x89180df3, 0x11230b59, 0x8d00ff0f, 0x16012c0f, 0x0d0f4001, - 0x100aba01, 0x6af8fe48, 0x078307c6, 0x4d920523, 0x260f8cd0, 0x0817489d, 0x6d090460, 0x022006df, 0x1a22ff83, 0x91182c00, 0x19521ccb, 0xbc911811, - 0xde481819, 0xb1911810, 0x4b902018, 0x002e0f51, 0x00010000, 0x02e0ff00, 0x00950100, 0xb618001e, 0x3620077f, 0x1805f258, 0x271077b6, 0x100cb430, - 0x2fb40c10, 0x1447b618, 0x0ba99427, 0x412ca90b, 0x17b61806, 0x82002014, 0xff182667, 0x012802c0, 0x236783c0, 0x06272601, 0x10f04618, 0x0805a64a, - 0x01022f41, 0x1314093d, 0x1390400a, 0x680e0606, 0x100f0219, 0x11818012, 0x18031010, 0x07050d68, 0x01409013, 0x010111ae, 0x03168411, 0x670e1312, - 0x0b0c1392, 0x09444409, 0x92130c0b, 0x12130e67, 0x41841603, 0x01210667, 0x226b82c0, 0x82250011, 0x10514dd5, 0x18056655, 0x2408d37e, 0x27262726, - 0xc3901923, 0x25363908, 0x24010124, 0x4b2e3625, 0x09023233, 0x84010d08, 0x0209080d, 0x5c4b3332, 0x101ab818, 0x16833020, 0x25821d82, 0x00202c83, - 0x09200082, 0x32064f41, 0x001500a0, 0x002f0022, 0x0049003c, 0x00630056, 0x5e8e0078, 0x11210ce7, 0x6b848206, 0x132005f7, 0x790b0479, 0x25200c1e, - 0x481819b2, 0x75441403, 0x01002215, 0xb7521912, 0x27098208, 0x121b80fe, 0x01300112, 0x2405ca7d, 0x01010f20, 0x08367770, 0x90fe2022, 0xff2117ad, - 0x38481800, 0x4420200d, 0xdc570d83, 0x0b967209, 0x18f0fe21, 0x1914a484, 0x2020220f, 0x189b8910, 0x200eb7ce, 0x0eda61a0, 0x574d0020, 0x01003505, - 0x000400a0, 0x000e0009, 0x00290013, 0x23150100, 0x011d3335, 0x27200482, 0x15220382, 0x0f823307, 0xc3731120, 0xc0012214, 0x200082a0, 0x210382e0, - 0xba4aa0a0, 0x09b04b07, 0x0180fe29, 0xc0808060, 0x84408080, 0x05284b02, 0x220f7773, 0x420a0000, 0x1a240a23, 0x24001f00, 0x2e298382, 0x38003300, - 0x42003d00, 0x16975600, 0x93821720, 0x82023b21, 0x219c8304, 0x05840533, 0x07201287, 0x40201b8c, 0x58339893, 0x58385858, 0x5858f058, 0x585880fe, - 0x405858e8, 0x87d05858, 0x15e67212, 0x00854020, 0x068c8020, 0x96070021, 0x16e575bb, 0x3315332a, 0x01292335, 0x05352115, 0x80420992, 0x266f8214, - 0x00ff8001, 0x82fe0001, 0x42098f7a, 0x32821537, 0xa7844020, 0x3a820484, 0x20002033, 0x6001e001, 0x00001900, 0x31151601, 0x06010714, 0x05fd7723, - 0x33363725, 0x83011f32, 0x01172d05, 0xff0909d7, 0x0d0d0a00, 0x0909800a, 0x69210683, 0x210583e9, 0x05835701, 0x0900ff24, 0x08838009, 0x6a090925, - 0x820909ea, 0x82002053, 0x82402053, 0x82292053, 0x35362353, 0x5f193431, 0x6c5b0fe7, 0x05587205, 0x3732332a, 0x2f343536, 0x37013701, 0x69205a86, - 0x6a204b86, 0x01210f8f, 0x87199729, 0x18002029, 0x220923fe, 0x4633001a, 0x3b771d37, 0x2372180b, 0x193e460b, 0x1602e82a, 0x16400216, 0x40160202, - 0x42460989, 0x8e582018, 0x20328428, 0x0cdb4700, 0x25001a22, 0x2520a39c, 0x99091069, 0xe8fe2195, 0x90206883, 0x8c980484, 0x7d831820, 0x7f840383, - 0xd0ff102a, 0xc001f001, 0x49001300, 0x0db56b18, 0x57161721, 0x0720058d, 0x0a1bc718, 0x16150622, 0x29093955, 0x26273437, 0x06072627, 0x13840607, - 0x11481620, 0x37342308, 0x9e183736, 0x32080d01, 0x01010a90, 0x0d0d0908, 0x1717290a, 0x36202001, 0x36434336, 0x01202036, 0x0a281817, 0x08090d0d, - 0x1e0a0101, 0x32021111, 0x324b4b31, 0x11110231, 0x44a0011d, 0xe02005f8, 0x59200686, 0x0b203c83, 0x22234482, 0x8538302f, 0x2347853b, 0x222f3038, - 0x0b203e83, 0x18274682, 0x4b292323, 0x83023231, 0x23292347, 0xdf821823, 0x09734f18, 0x27001328, 0x4e003a00, 0xe5826100, 0x3117322a, 0x14111516, - 0x22230607, 0x07644c18, 0x13930720, 0x3223228d, 0x84151617, 0x7b1d2026, 0xea820905, 0x18073321, 0x2011ff47, 0x0cae6302, 0x23090257, 0x600e0909, - 0x730b7049, 0x198c0c35, 0x115b4c18, 0xfe201e83, 0x01273086, 0x09090e60, 0x4100ff80, 0xd367051d, 0x67402007, 0xd4180dfb, 0x00290ecd, 0xff0e0002, - 0x01f101c0, 0x052d4ec0, 0x0f160124, 0xba821601, 0x0716172a, 0x06010f06, 0x012f0607, 0x23290785, 0x2f262722, 0x07272601, 0x26078506, 0x26013f26, - 0x6b373435, 0x362705a9, 0x011f3637, 0x82013f36, 0x32332907, 0x011f1617, 0x36371716, 0x7d490785, 0xf0260812, 0x022c0a04, 0x040a2c02, 0x0a050907, - 0x380e0a0c, 0x040c1814, 0x1616140f, 0x0c040e15, 0x0e381418, 0x05090d0a, 0x258a0709, 0x940d0921, 0x040a2425, 0x4af00709, 0x77820b1e, 0x01222c08, - 0x280a0e19, 0x0c0d0d0c, 0x120e0a28, 0x0f100811, 0x1012040b, 0x030e3a09, 0x0e030404, 0x1210093a, 0x100f0b04, 0x0f111108, 0x8e0d270a, 0x390a2125, - 0x39212585, 0x2125870a, 0x5e60a912, 0x73002012, 0x4a3d09bb, 0x06250000, 0x07063107, 0x1d061723, 0x06071401, 0x2322012b, 0x22022b22, 0x023d2627, - 0x06145b34, 0x20e3b318, 0x16051737, 0x01400207, 0x200d0909, 0x0b0c0101, 0x01021011, 0x18210202, 0xf4321911, 0xc0b3180c, 0x00012c15, 0x0dc0010c, - 0xa0010909, 0x55100404, 0x18200516, 0x1806e04b, 0x22159cb3, 0x450e0ae1, 0x29260c03, 0x26050000, 0xa9773127, 0x05ca5508, 0x22054c6c, 0x73030706, - 0x352a0885, 0x07062726, 0x39480001, 0xa619223a, 0x222f0ede, 0x48393a22, 0x13600b18, 0x55120b0e, 0x82161602, 0x921284c9, 0x88882e2a, 0x0b40070d, - 0x390e1312, 0x0202167b, 0x07eb4416, 0x3282e020, 0x2e00a024, 0x4b184100, 0x36261a67, 0x34373637, 0x4b180327, 0x01212165, 0x3a4b1800, 0xa74e1811, - 0x394b1808, 0xa0012115, 0x121b4b18, 0x0a894e18, 0x161a4b18, 0x0a674918, 0x40002322, 0x200e2945, 0x06824e27, 0x18011f21, 0x200ee482, 0x70da1803, - 0x83212009, 0x823520d4, 0x232727d2, 0x22230607, 0x9f18012f, 0x584e0afd, 0x46492006, 0x802005d0, 0x210a5947, 0x9348e049, 0x2e652911, 0x131a1914, - 0x7001662d, 0x44086563, 0xf3210614, 0x05fa464a, 0x82478020, 0xf34a2708, 0x1201c0fe, 0xac191b12, 0x2d240d0c, 0x682d1313, 0x4c0c0346, 0xa03105cb, - 0x2c001b00, 0x22130000, 0x0f063107, 0x011d0601, 0x314a1816, 0x34352307, 0xbb82012f, 0x15212325, 0x83231721, 0x2307221b, 0x28118326, 0x17793723, - 0x39061110, 0x09114b02, 0x06390231, 0xfe171011, 0x300e01f2, 0x0e091433, 0x84781409, 0x30332a05, 0x0d0ea001, 0x0808e316, 0x2dd2875c, 0xe308085c, - 0x400e0d16, 0x1c1101c0, 0x04840111, 0x0100c02c, 0xe0ff2000, 0xa001f001, 0x21424000, 0x9b531806, 0x05ba5e0d, 0x46077746, 0x5a180779, 0x222008cc, - 0x2006d245, 0x05af4834, 0x32820122, 0x45052145, 0x12220981, 0x0082392c, 0x0f2c2c26, 0x2c0f0e0e, 0x0a2b0b85, 0x0d0d090a, 0x4040310a, 0x832f2f31, - 0x46112005, 0x38860abb, 0x8b113321, 0x830b8530, 0x09092134, 0x2f273285, 0x0000112f, 0x86100002, 0x003526bb, 0x37000070, 0x4f848536, 0x012b08a8, - 0x39303130, 0x36373201, 0x4234013d, 0x1d200533, 0x099fc418, 0x81530620, 0x06072106, 0x14220182, 0x72521407, 0x17012509, 0x16171631, 0x37214d83, - 0x23f88936, 0x31272223, 0x0acc4419, 0x06232226, 0x1a0c6923, 0xf397be84, 0x19102521, 0x24073249, 0x06060842, 0x06c65102, 0x89061041, 0x26458e1c, - 0x02030202, 0x821a22f5, 0x08b846e1, 0x250e1441, 0x0c0d2e25, 0x5b83050b, 0x06035625, 0x82010806, 0x8a219830, 0x00012148, 0x2208bf65, 0x67a00140, - 0x56240851, 0x6c006100, 0x5117f34d, 0x667c11de, 0x11047f11, 0x3a493720, 0x94152009, 0x0100250a, 0x011b1212, 0x7a08cf61, 0xb54705df, 0x0cfc510c, - 0x250cdc47, 0x02021660, 0x0498e016, 0x7215794b, 0x688c0c78, 0x200c5f65, 0x07a543f8, 0x08906020, 0xaf4f0020, 0x000b310b, 0x1300002b, 0x26353315, - 0x06272627, 0x010f0607, 0x0ad2f918, 0x08274118, 0x48182120, 0x90280965, 0x171601a0, 0x16172222, 0x09764c18, 0x97431020, 0x41fe2007, 0x10230807, - 0x18303001, 0x20081292, 0x08e55630, 0x18013021, 0x4610f3ad, 0x12220a67, 0x8b825500, 0x2d113949, 0x31072213, 0x36112306, 0x32171637, 0x7c5f3331, - 0x36372f06, 0x36313033, 0x17360139, 0x06111716, 0xab822707, 0x03392329, 0x30073023, 0x56310623, 0x262305c9, 0x84313027, 0x015118d5, 0x02293d0c, - 0x28030202, 0x01283730, 0x2a262901, 0x03080f1f, 0x01010102, 0x010f1010, 0x0a0e1101, 0x01300c84, 0x0c050301, 0x36392914, 0x25210123, 0xa0012b2c, - 0x0ca95518, 0x0e090924, 0x3282d1fe, 0x010d432a, 0x010e0e03, 0x04060c02, 0x012b0d82, 0x120a0808, 0x0a1300ff, 0x8304151d, 0x06022b0f, 0x03021006, - 0x010d010e, 0xf3510d02, 0x00a02608, 0x01000039, 0x21ce8206, 0xbc543607, 0x05546107, 0x36023d23, 0x07335637, 0x5d171621, 0x14830a49, 0x26173222, - 0x0126c782, 0x39395100, 0x386c0e0b, 0x17222408, 0x47010116, 0x16220b44, 0xf0562217, 0x0e102c07, 0x5139390b, 0x33027001, 0x18064f32, 0x20085cab, - 0x22218201, 0x47303010, 0x30220b73, 0x47841030, 0x140e0d23, 0x243c8380, 0x33324f06, 0x28af8502, 0xa0014001, 0x00001600, 0x2e7c8201, 0x0623010f, - 0x15070607, 0x17161716, 0x82161733, 0x821120aa, 0x1312241e, 0x4144870f, 0x443107fc, 0x12130f87, 0x14800101, 0x780d0809, 0x1b121201, 0x27198340, - 0x09080d78, 0x00800114, 0x22057342, 0x84c001e0, 0x82272053, 0x17162255, 0x22528211, 0x4223012f, 0x3725095b, 0x16011f36, 0x21158217, 0x61822627, - 0x37241782, 0x2d011736, 0x68905482, 0x0221702c, 0x0f132102, 0x01110f0c, 0x06821101, 0x9d011325, 0x91fe1409, 0x1b932c7b, 0x0c1c2f2f, 0x0e101210, - 0x820e1717, 0x560c2006, 0xdb32055f, 0xa5018002, 0x2f001900, 0x57004000, 0x16010000, 0x77843117, 0x84060721, 0x35362379, 0x7d852734, 0x19830720, - 0x8a051a59, 0x05467593, 0x2720108a, 0x172bcc94, 0x1c311602, 0x1c01011c, 0x8213311c, 0x182921a3, 0x29200082, 0x13230882, 0x8213213d, 0x12212800, - 0x33100c10, 0x82330202, 0x3c122106, 0x7020d08f, 0x0135f693, 0x3a39289f, 0x393a4444, 0x12100c29, 0x30302110, 0x30303939, 0x310a8221, 0x261b4b0c, - 0x272d2d27, 0x0f0c1b26, 0x462a0f13, 0x06822a46, 0xfd8e1482, 0x24419220, 0x19002014, 0x310a13aa, 0x001a0015, 0x00350030, 0x004f004a, 0x00590054, - 0x1d510069, 0xb3851806, 0x1517240f, 0x53333523, 0x1a9405d6, 0x158f1320, 0x2c820620, 0x82331721, 0x15132635, 0x33233533, 0x20058223, 0x2a0d8227, - 0x33011d23, 0x33153335, 0x7223023d, 0xb75908cf, 0x50602208, 0x09f36640, 0x8020158c, 0x8808a576, 0x40402608, 0x20202040, 0x22038260, 0x82406040, - 0xa0012107, 0xc0202394, 0x01211594, 0x435e8910, 0x40230844, 0x82a0fe40, 0x8220204e, 0x60602304, 0x5e822060, 0x00000023, 0x088f5106, 0x17000c3a, - 0x31002400, 0x49003e00, 0x06130000, 0x17161107, 0x11373633, 0x33232726, 0x0b840c84, 0x178c0a85, 0x17200c86, 0x06222f89, 0x0c822707, 0x06222f84, - 0x6a181807, 0x582009ff, 0x20072d7b, 0x20138948, 0x200a8960, 0x1e6b18a8, 0x7c402009, 0x0223090c, 0x8370fe16, 0x90012723, 0x0f010216, 0x438360fe, - 0x0fa00123, 0x8b178b01, 0x8918200b, 0x1602222e, 0x232f8908, 0x02000f01, 0xea22eb82, 0x6347b501, 0x13002306, 0xa94a1415, 0x012f2209, 0x050b6d26, - 0x11a6d218, 0xb0130032, 0x14191a13, 0xb0121286, 0x14951b13, 0x70010d0e, 0x0c6dac18, 0x1a967022, 0x13212182, 0x25248386, 0x0d0113b0, 0xc04e140e, - 0x0000220c, 0x08634103, 0x2a00142c, 0x00003c00, 0x15161701, 0x045a0f14, 0x34352106, 0x372a7b82, 0x35051736, 0x37363736, 0x1a193233, 0x178209d0, - 0xd6473520, 0x59013311, 0x70272780, 0x0e0e1111, 0x80191970, 0x11110e0e, 0x7483a7fe, 0xa8218582, 0x22858513, 0x189013a8, 0x260ccc43, 0x362a8199, - 0x83712a36, 0x1b71252b, 0x811b2323, 0xbf213d83, 0x21ca8396, 0xdb86a813, 0x56200782, 0xbb5ad68b, 0x0020240c, 0x5437002c, 0x33200f5b, 0x8308b472, - 0x34112908, 0x012b2627, 0x15211121, 0x1908725b, 0x2a0a8d43, 0x17163317, 0x26230706, 0x6a373627, 0x202009a3, 0x240c3f48, 0x01e0fe20, 0x07c94f00, - 0x0f012025, 0x84010fc0, 0x87102004, 0x0f012108, 0x850b576a, 0x824020e0, 0x40012106, 0xfe21b782, 0x06164780, 0x3683f020, 0x30200383, 0x36074342, - 0x00000100, 0x8001c0ff, 0x1500c001, 0x11130000, 0x3f321716, 0x42161701, 0x263605b7, 0x07062127, 0x02000706, 0x9a060816, 0x1608069a, 0x0e0d0102, - 0xb95dfe14, 0xfe902c05, 0x04021648, 0x02046c6c, 0x43b80116, 0xab180747, 0x13260b57, 0x3c001b00, 0x55444500, 0x35333408, 0x33151733, 0x012f3435, - 0x01012b26, 0x3d21011d, 0x52172102, 0x4d18053d, 0xc74b08f3, 0x4c152005, 0x27390953, 0x37362726, 0x07061716, 0x12121b80, 0x1de34001, 0x131d1340, - 0x0001e31a, 0x21b982ff, 0x1a6f2040, 0x055d5706, 0x2026ee82, 0x1b121201, 0x2b830001, 0xf94c1020, 0x83c02008, 0x60602514, 0x1a43431d, 0xfe273c82, - 0x404020a0, 0x82201010, 0x05606f2d, 0x60203182, 0x40204782, 0x2007dd46, 0x08306740, 0x00820020, 0x9f420220, 0x001c2208, 0x21cb822e, 0xea182307, - 0xa68213e3, 0xe0181782, 0x95201190, 0x1a9d6e19, 0x60756b20, 0x7f01210f, 0x19776e19, 0x18c1fe21, 0x84128ba4, 0xc001279b, 0x2f00a001, 0x9b823300, - 0x06272624, 0x494c0307, 0x37322b09, 0x27343536, 0x37012b26, 0x15921733, 0x2317032b, 0x09fe1737, 0x88091515, 0x05dc421a, 0x06856020, 0xa0120224, - 0x118c0212, 0x1a881a2d, 0x01383870, 0x0101148b, 0x4395fe14, 0x30200b3e, 0x0c86d518, 0xfb6b0124, 0xd3439595, 0x80012106, 0x29249782, 0x43003600, - 0x7208616a, 0x05820581, 0x07061532, 0x022b0706, 0x35262722, 0x3b363734, 0x23013d01, 0x17200b83, 0x24084c5a, 0x07331523, 0xb7741815, 0x012b2208, - 0x32738200, 0x36801030, 0x01012425, 0x11111c1d, 0x36252401, 0x853010a0, 0x101021a4, 0x044f0782, 0x70702308, 0xca419070, 0x70202307, 0x1b828001, - 0x30252d83, 0x1d1d1122, 0x85408323, 0xa0a021be, 0xa0200782, 0x22076c63, 0x87804080, 0x8f58190a, 0x1829200c, 0x20110bb9, 0x0ab17e03, 0x1320bf87, - 0x8020be84, 0x09a16118, 0x50853b21, 0xb45d0623, 0x840f8506, 0x207e858c, 0x0cdc4bfe, 0x82400121, 0x00002e15, 0xff000002, 0x014002e0, 0x003600a0, - 0x5e79825a, 0x254308ce, 0x18332005, 0x2108f89c, 0xdb41013b, 0x18112008, 0x310af65f, 0x2b262734, 0x23260502, 0x010f2231, 0x17161706, 0xa5191533, - 0x23270e8e, 0x37363335, 0x44012f36, 0x4020095b, 0x7a0d3b5a, 0x8e82079a, 0x01808023, 0x601a19d7, 0x15202209, 0x7fa51909, 0x09072308, 0x0f852015, - 0x025a0120, 0x8f20200a, 0x415986d2, 0x09240508, 0x13131040, 0x19054d5e, 0x2607e11a, 0x131301c0, 0x4a004010, 0xf7950c2f, 0x8909c65e, 0x8f3520f7, - 0x06032af7, 0x1f143115, 0x36371601, 0x341b8237, 0x3f161716, 0x34353601, 0x0726012f, 0x23150706, 0x26272635, 0x21f78a0f, 0xe0421080, 0x6710200c, - 0xc023090e, 0x980917c0, 0x67f08cad, 0x80200c42, 0xfe21ee8a, 0x153841b7, 0x41080821, 0x00200738, 0x0aef4d18, 0x2700132f, 0x4f003b00, 0x14010000, - 0x2b063107, 0x08154301, 0x16173224, 0x13921115, 0x45712520, 0x08447109, 0x23203b84, 0x20085d46, 0x243b8321, 0x09092001, 0x071b570e, 0x0d8aee85, - 0x82e0fe21, 0x0791421d, 0x8280fe21, 0x054d561f, 0x8308e261, 0x0c754e11, 0x4700ff21, 0x1a9a0b03, 0x00820020, 0x00000429, 0xc001e0ff, 0x8900a001, - 0x273423df, 0xdf822631, 0x200a3975, 0x059c6135, 0x85222121, 0x21332a13, 0x35363732, 0x31171401, 0x180a8516, 0x20083845, 0x213b9225, 0x65186001, - 0x0e830d12, 0x0cb0b418, 0x9040fe21, 0x43328ee2, 0x525d0a91, 0x9ae58509, 0x41df97ed, 0xbf4112ab, 0x41c0203c, 0xdc911cbf, 0x00412f83, 0x9ade8d0c, - 0x971a8dd1, 0x273424df, 0x41232631, 0x11200dab, 0x25201392, 0x2012bf41, 0x42279201, 0xef82116f, 0xc041bf8c, 0x38e3cb12, 0xff100006, 0x010002f0, - 0x000c0090, 0x00340020, 0x00550048, 0x13000062, 0xff571806, 0x6c17200a, 0x15201202, 0x001913a6, 0x17200ca0, 0x2820558b, 0x09e27618, 0x6e429820, - 0x079b4405, 0xa243fe20, 0x200f9906, 0x3f7718b0, 0x89182009, 0x90012146, 0x10201689, 0x980c3d5a, 0x1898200c, 0x200977aa, 0x293c8988, 0x05000000, - 0xe0ff1a00, 0xbb43e001, 0x003a2406, 0x475c004e, 0x33210607, 0x254c1821, 0x1817200c, 0x2208a442, 0x44071415, 0x741906ba, 0xf67512ae, 0x07b0440a, - 0x26013d25, 0x6736013f, 0x06230570, 0x4320012f, 0xc0200fa8, 0x200dda43, 0x06474720, 0xba440686, 0x0c0c2b10, 0x08080966, 0x08080101, 0xf4426609, - 0x0ca6440d, 0x5b0c7b4c, 0xb32f0c56, 0x064f0d0d, 0x9e0b0404, 0x0604040b, 0x6000004f, 0xbf4405cb, 0x54034108, 0x0737352f, 0x27262706, 0x36373635, - 0x0716011f, 0x3e034100, 0x02418020, 0x0c0c2109, 0x41350441, 0x0d250a02, 0x0200000d, 0x27008200, 0x80014002, 0x26001500, 0x20176d55, 0x06105125, - 0x023d0226, 0x1736013f, 0x20052555, 0x07814900, 0x0984ff20, 0x102f022e, 0x11100101, 0x0e0e6010, 0x01111060, 0x85086a4b, 0x05b34b1d, 0x13091c31, - 0x091300ff, 0x0a400a09, 0x0a118011, 0x4e080940, 0x15240a1b, 0x3f002d00, 0x05258197, 0x0f222326, 0x05326001, 0x1617062a, 0x32023b17, 0x022f3637, - 0x61109964, 0x01391411, 0x0d0c0844, 0x081a5707, 0x40080b0b, 0x0f070508, 0x0ed02060, 0x78070607, 0x0f4877d4, 0x3015a455, 0x7f0b0b6b, 0x50090921, - 0x010d0d0c, 0xb00b0d0d, 0x0fbb6a0b, 0x27064f4a, 0x018001c1, 0x001a00c0, 0x21061354, 0x84580631, 0x26272105, 0x0d540182, 0x80012107, 0x09e3ba18, - 0x27271b2f, 0x02021e1f, 0x52523636, 0x01023636, 0xb1ba1800, 0x38212507, 0x2d3b3b37, 0x1b831383, 0x2b0bf766, 0x0025000a, 0x27262500, 0x11272631, - 0x33235183, 0x18310706, 0x21081b41, 0x74542726, 0xc001210b, 0x40205887, 0x540c5654, 0xc0200a62, 0xfe216283, 0x54278380, 0x0b8b0b44, 0x0002002f, - 0x01d0ff10, 0x00ba0170, 0x002b0019, 0x09be4b00, 0x2322d482, 0xe2820722, 0x16270382, 0x27171617, 0x4b311716, 0xee8505fc, 0x17162608, 0x32314bc0, - 0x1b1b0102, 0x0a1a2323, 0x1a0a0f0f, 0x1b1b2323, 0x31320201, 0x1601504b, 0x010f2217, 0x1f300f01, 0x22058220, 0x8330010f, 0x38272915, 0x25383839, - 0x38250d0d, 0x27200882, 0xb0233b83, 0x84161722, 0x2001231f, 0x2f83301f, 0x774c0020, 0x01c02d05, 0x00bb01fb, 0x001b000d, 0x0100004d, 0x20050b4b, - 0x05306217, 0x52700520, 0x013f2705, 0x27013f36, 0x83642707, 0x09c8720e, 0x23085449, 0x36373411, 0x3b0a6a4b, 0x1612d801, 0x621e1216, 0x1211111e, - 0x0409d4fe, 0x0b0a041e, 0x090c590e, 0x4ca862a8, 0x20085b7a, 0x45098300, 0xff200872, 0x4d063249, 0x60240659, 0x1111aa01, 0x47834082, 0x09dc1227, - 0x0b0e580d, 0x8346820a, 0x01b22541, 0xff291b1b, 0x09833d84, 0x0d37c218, 0x79490120, 0x4fe68209, 0x022505b3, 0x00c00100, 0x20e38869, 0x05567106, - 0x15013f23, 0xd3811823, 0x5016200e, 0x2f23058b, 0x5c153301, 0x33201884, 0x0e658018, 0x1908ac5c, 0x260b4d33, 0x0d0a1701, 0x5c400a0d, 0x0922053f, - 0x08850a73, 0x40200f82, 0x2205945c, 0x8509730a, 0xa30f8408, 0xb7012327, 0x3cb80909, 0x00228c94, 0x00820001, 0x01400129, 0x00200080, 0x7c162500, - 0x0f21067a, 0xc0b71802, 0x18112008, 0x2d08608e, 0x0c01011f, 0x0111130f, 0x0f131101, 0xb3410cc0, 0x090e3208, 0x07c00c09, 0x1409080c, 0x09144001, - 0x0aa00c08, 0x0d9c7b91, 0xa00a9123, 0x21678500, 0x67820002, 0x67822a20, 0x012f0625, 0x83070615, 0x0c2f6205, 0x1617322a, 0x3637011d, 0x15171617, - 0x11270584, 0xee010706, 0x83ac0f13, 0x8bac2071, 0x83ac2070, 0x26048487, 0x08031101, 0x83768f0c, 0x768f2178, 0x01207785, 0x2205424d, 0x838f760e, - 0x26058594, 0x0914c0fe, 0x82000200, 0x20838400, 0x28ed8d0d, 0x17011d01, 0x26023d27, 0x38531827, 0x3537230a, 0xed87cc01, 0xccacac22, 0x0c21f485, - 0x8a1283c0, 0x2a8f27ec, 0x60598f2a, 0xf8852080, 0x0a0f0f23, 0x207383a0, 0x06cb6a40, 0x0180013d, 0x000f00a0, 0x07261300, 0x16110706, 0x25371617, - 0x27263736, 0x18184925, 0x83010118, 0x16202f04, 0xfe160101, 0x0e9901e0, 0xfe1c0e0d, 0x06821ca0, 0x1b0eb025, 0x85b00f1a, 0x079b41aa, 0x2b001522, - 0x200c8b67, 0x086e7033, 0xb6442320, 0x205c8305, 0x56158a17, 0x20200830, 0x20079645, 0x4a8d1820, 0x82128908, 0x09a0529f, 0x01200982, 0xb4521a88, - 0x41138806, 0x2f8205bf, 0x15008022, 0x46175746, 0xbc4614ca, 0x41002015, 0x37220f8b, 0x86452706, 0x011f2705, 0x3707011d, 0xe447023d, 0x06d95405, - 0x35352723, 0x05784210, 0xabab102b, 0x131101cb, 0x0b0bc010, 0x411283c0, 0x7b42238a, 0x1637260d, 0x1615013f, 0x18058317, 0x5e08869d, 0x07240a39, - 0x27150706, 0x2306ae41, 0xab101312, 0xab206c83, 0x200b7a42, 0x847683ab, 0x2b7a4204, 0x890d6743, 0x190220ed, 0x5b08ed64, 0x3d2307dc, 0x88010f01, - 0x0bc021ed, 0x0b207a8b, 0x51216643, 0x012e0513, 0x00a001c0, 0x0023000f, 0x1f321300, 0xdd6b1601, 0x013f2506, 0x36033336, 0x0842b718, 0x3108f46b, - 0xb00e15e0, 0x1f0d0b14, 0x0e1ea0fe, 0x0eb0140b, 0x2272e015, 0xa0012413, 0x5917c010, 0x182305b3, 0x18fe0fc0, 0x2910b15d, 0x01000000, 0xe0ff2000, - 0x7b822001, 0x00001923, 0x065f5037, 0x20087e68, 0x05524436, 0x29010f25, 0x44c00909, 0xaa2105f8, 0x051345aa, 0x83d7c021, 0x85c0200f, 0xa9a9210c, - 0xc0201c85, 0x60204f82, 0x60204f82, 0x25294f85, 0x14311516, 0x2306010f, 0x05737122, 0x09b33119, 0xa7570121, 0x68a38250, 0x05200ebf, 0x19df4b19, - 0xb3182720, 0x16290d28, 0x23070617, 0x26070615, 0x1ac56327, 0x630fbb68, 0xa8201cce, 0x680ae468, 0x002008ee, 0x2521a38e, 0x834c1900, 0x5703201b, - 0x9599090a, 0x68904821, 0xbe4808bf, 0x68012018, 0x002a0dbf, 0x0002c0ff, 0x1a00c001, 0x7f9d3300, 0x011f3628, 0x16173637, 0x6818010f, 0x8d990ebb, - 0x6c185120, 0x2f2214d5, 0x9b990e0e, 0x6d185120, 0x2c820e02, 0x2b414485, 0x9c29200e, 0x071326ab, 0x26012f06, 0x65b18637, 0x71261a8b, 0x40111180, - 0x62820e0e, 0x11116f22, 0x2f21979b, 0x831d8280, 0x6f2f2122, 0x00222e83, 0x37410003, 0x003d2209, 0x208d9c4f, 0xcf011903, 0x19554133, 0x29c00119, - 0x20196641, 0xaf01195b, 0x22eb8b2b, 0x9c420030, 0x332721eb, 0x18064a43, 0x2408b2b6, 0x3f362726, 0x10f67f01, 0x2821de99, 0x07ba4f18, 0x02160825, - 0x83501602, 0x53282004, 0xd5980b5d, 0x6140b021, 0xa45805e5, 0x0ccd5a08, 0xb3410020, 0x0039240a, 0x6a850073, 0x1d2406c7, 0x16171601, 0x220a994f, - 0x6a060706, 0x26230a90, 0x18272627, 0x2e097455, 0x37363736, 0x36373435, 0x17160333, 0x18171631, 0x2009db72, 0x89188236, 0x6a348326, 0x508309d3, - 0x20091857, 0x120a4133, 0x4824dd82, 0x0a0c3131, 0x0a24e585, 0x4732310c, 0x8d050b46, 0x48312115, 0x95241582, 0x2c1f200a, 0x2c241d85, 0x150a201f, - 0x15203385, 0x95201595, 0x200c705c, 0x9d3682c0, 0x21888a5c, 0x5ea1e0fe, 0x72187489, 0x53440f43, 0x00093306, 0x002e0013, 0x06012500, 0x16171607, - 0x013f3617, 0x62633736, 0x37012105, 0x2c1a824d, 0x23f5fe6f, 0x36360201, 0x2e303f52, 0x22088622, 0x4d630c01, 0x232b178f, 0x3f300c01, 0x02363652, - 0x862e2201, 0xfe232308, 0x9b4d6ff5, 0x00012118, 0x01250082, 0x008001c0, 0x11bb4623, 0x3e582120, 0x21232106, 0x23092b4c, 0xa0090909, 0x2205a846, - 0x4133016a, 0xfe210552, 0x06516fcd, 0x83d7a021, 0x46a02019, 0x692005cf, 0x6f050741, 0xa0220674, 0x0b480000, 0x266b8606, 0x31353625, 0x4c012f34, - 0x2f540841, 0x09634c09, 0x89b70121, 0xcdfe216c, 0x01216c85, 0x206c8733, 0x286c9ba9, 0xff000001, 0x018001e0, 0x19d783a0, 0x4b0f158f, 0x352207db, - 0xf54c1711, 0x21ba9a08, 0x869b9701, 0x240bf34a, 0x17000023, 0xfb451916, 0x4911200d, 0x15210664, 0x09554d11, 0x1720b99a, 0x411b5e41, 0xff230543, - 0x820002e0, 0x002a27d7, 0x07060100, 0x4a182315, 0x162007e0, 0x51427982, 0x05c44f05, 0xed493320, 0x06dc5805, 0x33015008, 0x4b700112, 0x01023231, - 0x18181415, 0x1204040a, 0x07090102, 0x01010707, 0x60291b1b, 0x0f131201, 0xa00b0ba0, 0x9d01130f, 0x02401409, 0x384b3132, 0x13142525, 0x12020205, - 0x0e07080b, 0x1b29170d, 0x1440011b, 0x900d0809, 0x0a0e0e0a, 0x57080d90, 0x19250cbb, 0x4d003300, 0xef811800, 0x083b4d09, 0x24050549, 0x012b2627, - 0x69f11813, 0x82012008, 0x0a2e4f1d, 0x55013521, 0x3b200726, 0x90419b82, 0x013d2205, 0x5c338e34, 0x3d200c98, 0x4c0aa159, 0x602006f4, 0x4f095467, - 0x40200613, 0x5e070d4f, 0x092306d4, 0x59600e09, 0x3387068a, 0x09090e24, 0x1783a001, 0x86055a42, 0x5c491828, 0x82478607, 0x0140211b, 0x388a1a86, - 0x5d8a2587, 0x410d0f57, 0xf9890913, 0x0320c58e, 0x0757f998, 0xba511905, 0x3435260c, 0x012b2627, 0x20338435, 0x08437c1d, 0x61410120, 0x83c98309, - 0x83cc85ac, 0x06d454bd, 0xc887a28a, 0x905af48a, 0x54398a06, 0x378a0714, 0x4300ff21, 0x004105cd, 0x075e410a, 0x840a2641, 0x860f8625, 0x8200203c, - 0x00013100, 0x01a00010, 0x00e000b0, 0x25000013, 0x06310714, 0x200f815a, 0x705d82b0, 0xc47a0c8e, 0x4842820c, 0x25220c63, 0x77473700, 0x16112b1c, - 0x07061517, 0x36352726, 0xb2181737, 0x6c471016, 0x07086019, 0x22094942, 0x4709090e, 0x01241860, 0x70160280, 0x04823283, 0x41068b57, 0x13560578, - 0x05474a05, 0x38000e2c, 0x51004800, 0x00005a00, 0xb25b1713, 0x1716220a, 0x5d7d1807, 0x07017907, 0x2906f242, 0x27263536, 0x06232726, 0x0684010f, - 0x07060723, 0x35c28321, 0x3637022b, 0x17323337, 0x15051516, 0x17161716, 0x05233533, 0x13823633, 0x15233526, 0x480122bf, 0x2505c26f, 0x7f0d1802, - 0x86852a0a, 0x42410120, 0x0a2a3c06, 0x25191901, 0x181b3302, 0x02331b18, 0x01191925, 0x0b0c5001, 0x23014811, 0x8202180c, 0x90fe3236, 0x140e0d01, - 0x0001c090, 0x0d0e1490, 0x7b01c001, 0x821e823b, 0x14012418, 0x77121613, 0x12210dba, 0x253f8316, 0x292a2a02, 0x5583022b, 0x3b222582, 0x2e820114, - 0x83b0c821, 0xe0e0213b, 0xb0214a83, 0x05f341e0, 0xa7440020, 0x003a2206, 0x06df6800, 0x1633372c, 0x2b070617, 0x30313001, 0xd9822231, 0x06313022, - 0x24054168, 0x36353736, 0x54d68437, 0x3245057d, 0x073c0806, 0x01012b06, 0x2d2d3c10, 0x583d3312, 0x0f01010f, 0x17194810, 0x1a2c2127, 0x16020119, - 0x34020216, 0x3e2e2e10, 0x36364301, 0x1501201f, 0x03050602, 0x201a1a0f, 0x01600168, 0x1a372122, 0x0f292e82, 0x16090501, 0x392f2e1e, 0x342c8210, - 0x304b1016, 0x0124243a, 0x42272701, 0x37415141, 0x101b0505, 0x0bf76a10, 0x38002029, 0x36130000, 0x82171617, 0x05847484, 0x86741720, 0x058f6905, - 0x22055545, 0x82373213, 0x2627221e, 0x66001927, 0x9f4e080e, 0x25290e0e, 0x0e0e1510, 0x0f16151a, 0x01090910, 0x32331e1d, 0x32333f3f, 0x02011d1e, - 0x43472b2b, 0x081f2025, 0x06041207, 0x14140133, 0x1f041515, 0x20011010, 0xbb013120, 0x2e260c0b, 0x0c0c1417, 0x201e1f19, 0x171d1d1f, 0x20353540, - 0x1b820120, 0x4035353d, 0x4349483c, 0x171565fe, 0x09242526, 0x1a023b08, 0x051b1a19, 0x191a1a26, 0x181d1c34, 0x2908f36c, 0xa0014002, 0x37002500, - 0x67415300, 0x75062007, 0xcc850945, 0x8209ee6d, 0x272621b7, 0x112dd618, 0x2605e354, 0x31302722, 0x86161514, 0x82262033, 0x2322372b, 0x20011516, - 0x2430303d, 0x0b171723, 0x170b0505, 0x30242317, 0x11863d30, 0x05050c23, 0x7c11860c, 0x902610d6, 0x1b121201, 0x8d620f11, 0x0404360b, 0x01a00108, - 0x21221717, 0x0c1c2323, 0x23231c0c, 0x17172221, 0x19119101, 0x27109523, 0x12121b40, 0x04040801, 0x210b0963, 0x1344110f, 0x01802806, 0x001d00c0, - 0x194d0034, 0x410e7554, 0xc68305a6, 0xdf822620, 0x27070623, 0x05634217, 0x27071422, 0x83056443, 0x230c82dd, 0x23062713, 0x34212583, 0x41268337, - 0x2c8207f8, 0x0f132726, 0x5002100c, 0x69260583, 0x0b14141d, 0xed870404, 0x2a2b332e, 0x28b87021, 0x28293d39, 0x08271102, 0xdc82e483, 0xdf5a0725, - 0x831c1949, 0x5e012f13, 0x05050e22, 0x2417170b, 0x3d303023, 0x54193648, 0x52240b30, 0x191f201f, 0x102ffd8a, 0x91581b11, 0x28020125, 0x1f263d29, - 0x8315121e, 0x110f28e3, 0xfe460d0f, 0x830a3ad6, 0x0a0a2415, 0x89242e4a, 0x1e022130, 0x2a0aef58, 0x001a000f, 0x0100002c, 0x50131716, 0x372807ed, - 0x15373613, 0x16150706, 0x4319c182, 0x013114eb, 0xd80c1700, 0x170c0a0a, 0x0c1750fe, 0x0cd90a0a, 0x14f84416, 0x01a00130, 0x1490fe13, 0x01011314, - 0x01141413, 0xf0441370, 0x09d77419, 0x396b2d20, 0x0723260b, 0x26230706, 0x8241183f, 0x3f343107, 0x35262701, 0x32333736, 0x2733011f, 0x16333726, - 0x01210782, 0xab8e18e2, 0x74210807, 0x38130965, 0x67310312, 0x2a08052b, 0x1f01010d, 0x0d01011f, 0x2b05082a, 0x12033167, 0x65091338, 0x05ca7b74, - 0x11121c26, 0x010fb001, 0x0c169218, 0x06010d30, 0x0311ac3a, 0x00b00f01, 0xff000008, 0x018201c0, 0x1b190020, 0x7e200d47, 0x08ad7019, 0x0b857f18, - 0x16171625, 0x68211517, 0x35260534, 0x33363734, 0x147e2107, 0x8658180a, 0x27262407, 0x18070623, 0x84078b58, 0x5d37200c, 0x77180ba4, 0x198c0c40, - 0x8023408c, 0x4809090e, 0x302f067f, 0x010d0e14, 0x0d0140fe, 0x0930140e, 0x82800e09, 0x210a82af, 0x1683a0fe, 0x477d4020, 0x89802009, 0x2a77180a, - 0xf0fe210a, 0x70201694, 0x01201589, 0x08286518, 0x20205c82, 0x71846584, 0x81822020, 0xf0fec022, 0x22071955, 0x18501001, 0x7d13497c, 0x90200ac8, - 0x158a1f89, 0x15891020, 0x2f06c365, 0xa0010002, 0x2b001900, 0x00005200, 0x011f3601, 0x32079969, 0x22233527, 0x3727010f, 0x35333736, 0x17073736, - 0x4e070607, 0x32260918, 0x0605013f, 0x23822627, 0x012f2623, 0x0b1c4726, 0x3b214082, 0xa63f1901, 0x9401220a, 0x6ec91913, 0x10202b08, 0x1f282a0a, - 0x01202f1e, 0x0783f013, 0x20069048, 0x2a168240, 0x13101301, 0x2f200113, 0x180a991e, 0x840871fe, 0x3e3f190c, 0x9e012108, 0x2d089c64, 0x20150808, - 0x2a35380d, 0x15200125, 0x0783f909, 0x2b05e048, 0x0ebc380d, 0x20150907, 0x0dcd2501, 0x09831185, 0x4b0ad664, 0x2f210c83, 0x06c77700, 0x07063125, - 0x82062722, 0x272229df, 0x03393726, 0x30313035, 0x20057545, 0x0d515b37, 0x4d000221, 0x383105b8, 0x26231330, 0x03050a2c, 0x03020107, 0x05110807, - 0x0cb86f2f, 0x2f3ad038, 0x011b1c2f, 0x11110e12, 0x070a0a02, 0x04020101, 0x251a0e07, 0x17854534, 0x1c1b0125, 0x443a2f2f, 0x012b0507, 0x00a001c0, - 0x0027001a, 0x6d000034, 0x16210561, 0x05454717, 0x7b233521, 0x35230844, 0x4a333523, 0x2225053f, 0x011d0607, 0x210c8b21, 0xdb190100, 0x60180af1, - 0x802108d0, 0x06fa4780, 0x88400121, 0x60202409, 0x1933323f, 0x20083cdc, 0x08846a60, 0x41206021, 0x07870785, 0x01000027, 0x60002000, 0x06ff7d01, - 0x33361323, 0x05936b31, 0x5c05af76, 0x352405d3, 0xe9013f34, 0x54130055, 0x002013d8, 0x53830082, 0x53822020, 0x19002025, 0x4d370000, 0x5d4d0e67, - 0x55539409, 0xb75e127c, 0x0025250a, 0x2500004b, 0x07f36d18, 0x22012b2e, 0x013d2627, 0x36373633, 0x2326012f, 0x25082567, 0x17161716, 0xb34b1333, - 0x17322409, 0x67011d16, 0x2626103a, 0x23272627, 0x85491001, 0x82702005, 0x0a3c4206, 0x08080e29, 0x1b012015, 0x4b70291b, 0x1f8f0675, 0x87090721, - 0x057c421f, 0x80210582, 0x38421901, 0x2980240a, 0x4b011b1b, 0x1c910ac4, 0x93430020, 0x02c02f05, 0x00c0013d, 0x002e001c, 0x13000040, 0xb9830706, - 0x2117162d, 0x27263736, 0x36212721, 0x8236013f, 0x822120a6, 0x18232003, 0x1811ec50, 0x2a115a60, 0x02021618, 0x053c3416, 0x83480113, 0xccfe3209, - 0x173d0109, 0x09033608, 0x5cfe1009, 0x48130502, 0x10055f98, 0xe05e5020, 0xc001290f, 0x02161602, 0x0112c3fe, 0x302c0783, 0x10c01601, 0x0c010c0c, - 0x00fe0113, 0xc5592a8f, 0x4f558708, 0x02280663, 0x00a00100, 0x1700001a, 0x3628c782, 0x27261137, 0x22232726, 0x2508756e, 0x16171611, 0x42184017, - 0x95260909, 0x131a131b, 0xe469751b, 0x09f36b08, 0x0c831782, 0x20059c74, 0x053b5800, 0x82400221, 0x0015265b, 0x37000026, 0x05175f07, 0x011f3225, - 0x46013b16, 0x06250522, 0x37361707, 0x240b8221, 0x0706010f, 0x23788221, 0x5959013f, 0x76214383, 0x3164881a, 0x1324b0fe, 0x01120a1b, 0x080a1290, - 0x120a7008, 0x088470fe, 0x0198e023, 0x86838318, 0x01202874, 0x010f101f, 0x6d100f01, 0x06820593, 0x00010029, 0x01c0ff20, 0x6bc00120, 0x9769059d, - 0x07a75d05, 0x7a0a3650, 0xbb500d11, 0x0ab7230a, 0x56190d0d, 0x2920080c, 0x09220c83, 0x13936009, 0x089c4119, 0x2a090925, 0x192adafe, 0x21107447, - 0x13872601, 0x00820020, 0x03820120, 0x00024029, 0x32004001, 0x5f250000, 0xaf51051c, 0x173e5e09, 0xbf512120, 0x01372307, 0x87866097, 0x49206e9f, - 0xc192ad94, 0x82050f69, 0x00a02893, 0x002f001b, 0x47550042, 0x152306d7, 0x64171611, 0x26280974, 0x11272627, 0x33363734, 0x20267964, 0x0daf6415, - 0x99193983, 0x594d1a3b, 0x20068306, 0x06624f20, 0x67180686, 0xa0251010, 0xfe0e0909, 0xad4b18b0, 0x17162708, 0x0e500122, 0x49180909, 0x8b760cf1, - 0x0c7a640c, 0x5106cb43, 0x0d2005ef, 0x2d06db62, 0x23153337, 0x07062726, 0x32333523, 0x5b180737, 0x232f0e3a, 0x23010f22, 0x23272635, 0x06150706, - 0x18070607, 0x2c1136b8, 0x73b132dd, 0x212c2c21, 0x0e0f8073, 0x7c4618dd, 0x0fb1350d, 0x0120330d, 0x010f400f, 0x0112121b, 0x19015801, 0x19252519, - 0x09848418, 0x1947012b, 0x01011760, 0x07074017, 0x08476dfe, 0x83400121, 0x1907212c, 0x8305d442, 0x8cb02050, 0x59438233, 0x23240ddb, 0x00003500, - 0x0d9f5d18, 0x0717142b, 0x16011d06, 0x37363317, 0x24038435, 0x16013f32, 0x1f571833, 0x50012111, 0x07914118, 0x08280783, 0x160207a1, 0x28021650, - 0x0a250282, 0x1c1a2107, 0xd4c01828, 0x0260240b, 0x874b3132, 0x1a1c242e, 0x820a07a1, 0x1602222a, 0x22028228, 0x19082107, 0x830c3e4e, 0x0004379f, - 0x02c4ff03, 0x00b80178, 0x00620050, 0x00c500b3, 0x27360100, 0xea762f26, 0x29078505, 0x06072223, 0x0706010f, 0x07852627, 0x011f0624, 0xbb831506, - 0x1f161722, 0x1620bd82, 0x0784b482, 0x37323329, 0x36013f36, 0x85161737, 0x2f362707, 0x34353601, 0x1b753727, 0x63262005, 0x218a0bc9, 0x26833183, - 0x37206b84, 0x76827b8a, 0x8183718b, 0x73847683, 0x89060721, 0x2076827b, 0x185b8217, 0x080e4adf, 0x0b350128, 0x03040405, 0x0e0a0505, 0x0614101d, - 0x0a0b0e04, 0x040f0a0a, 0x1c101406, 0x05050a0f, 0x05040403, 0x0202160c, 0x25830c16, 0x0a060424, 0x25831c0f, 0x24820f20, 0x64202593, 0x240faa45, - 0x0f0a2901, 0x33d88208, 0x09050c07, 0x0f1d080d, 0x03010103, 0x0d081d0f, 0x070c0509, 0x08261682, 0x0a140a0f, 0x04820b0b, 0x05212582, 0x22259308, - 0x88070508, 0x46292025, 0x39201046, 0x388b5e99, 0x848b2599, 0xfe215e90, 0x0d1c41bb, 0x0c20f697, 0x41064241, 0xa75b2e1c, 0x01802608, 0x002400c0, - 0x074b184d, 0x82062011, 0x2403829e, 0x01392331, 0x06784f06, 0x37171626, 0x06310706, 0x20052458, 0x068e4f37, 0x02392726, 0x31223530, 0x5505cd4e, - 0x162205e5, 0xde18d015, 0x34080beb, 0x09062701, 0x01030607, 0x03080101, 0x1c220b04, 0x3a2f0b0e, 0x3e3d03f0, 0x3636135a, 0x0b2f3a49, 0x0b221c0e, - 0x01090304, 0x07060301, 0x01270609, 0x53363602, 0x0c244301, 0x2c3b3508, 0x05090a0f, 0x07010103, 0x01010a0b, 0x1706060b, 0x3856b001, 0x23390938, - 0x17010124, 0x010b0606, 0x070b0a01, 0x05030101, 0x2c0e0b09, 0x3131473b, 0x00080807, 0x02260082, 0xc0ff1800, 0xe382b101, 0x14001025, 0x18010000, - 0x260d574c, 0x33321311, 0x18200123, 0x250e4e4c, 0x0301028e, 0x4c18c001, 0x01220e43, 0x4f85feb8, 0xe0ff202c, 0xa0012002, 0x4b002300, 0x29580000, - 0x0944550f, 0x21076946, 0xbb49013f, 0xf0e3180a, 0x08fc7009, 0x07984518, 0x02013b23, 0xcf401817, 0x99a61909, 0x18a9202f, 0x490b4c41, 0xa719059e, - 0x9b65120f, 0x08bd4905, 0x0e000124, 0xd4820909, 0x0000022c, 0x7f01c0ff, 0x2500c001, 0x256b3100, 0x012b270f, 0x011f1617, 0x17550716, 0x013f2305, - 0xe8723f36, 0x33132105, 0x2009395b, 0x3f8b1920, 0x0b1d330a, 0x05011639, 0xfe100a09, 0x090a10c0, 0x39160105, 0x66821e0c, 0x2007be75, 0x09b26a01, - 0x401f942d, 0x0d0e0f03, 0x030f0e0d, 0x82941f40, 0xa0fe2142, 0x20067b46, 0x06f74860, 0x01c00129, 0x002300a0, 0x5700004f, 0x58410a87, 0x00e91809, - 0x012b210c, 0x4605c244, 0x0d670974, 0x07062709, 0x11272621, 0x8f563736, 0x07a45709, 0xed603320, 0x41a92006, 0x80200814, 0x089c4f18, 0x22000125, - 0x85011617, 0x0f012718, 0x010f00ff, 0x57180f01, 0x01200768, 0x2006d056, 0x05d048a9, 0x6d5aaa20, 0x82802006, 0x012025e9, 0xff221716, 0x09833b84, - 0x3d833187, 0x43820120, 0xd7494f85, 0x82002006, 0x002622df, 0x25df824a, 0x16173233, 0x816c1115, 0x21e18505, 0x5064013b, 0x075b7009, 0x985a0720, - 0x136e420e, 0x95180120, 0x40280e47, 0x011b1b29, 0x291b1b01, 0x2006004d, 0x19654209, 0x82600121, 0x0a476f9d, 0x01203583, 0x200a0d68, 0x196542b7, - 0x28090757, 0x00c00140, 0x00520046, 0x21d5825e, 0xcb840623, 0x16200682, 0x2008bc52, 0x06676d16, 0x210b4271, 0x644f2734, 0xbbc11909, 0x27262408, - 0x82353623, 0x05272219, 0x443d8333, 0x0523055f, 0x82360706, 0x82332021, 0x01073458, 0x0e14e090, 0x166a010d, 0x16150102, 0x25252123, 0x820b111f, - 0x76102000, 0x0a49060a, 0x101a2106, 0x2a081382, 0x251f110b, 0x16222225, 0x16020115, 0x0e0d016a, 0x54a1fe14, 0x110e0e07, 0x12182326, 0x9f010411, - 0x0e112623, 0x0454070e, 0x50191111, 0x082f05f0, 0x45160208, 0x20213132, 0x05081212, 0x820f0d0c, 0x0cf66344, 0x0f100b31, 0x08050c0d, 0x21201212, - 0x16453231, 0x83080802, 0x4370358a, 0x101e2f2f, 0x23231721, 0x10218e31, 0x432f2f1e, 0x17232331, 0x260d2358, 0x00400022, 0x18000049, 0x4e0a5791, - 0x36200972, 0x83061e7a, 0x012f2211, 0x84f78407, 0xdb4018ee, 0xbe9d1912, 0x57451809, 0x0813761b, 0xce6c8020, 0x88fe2007, 0x59451809, 0xf353210a, - 0x1805134e, 0x87135a45, 0x60451838, 0x18682011, 0x21095c45, 0x2b730002, 0x00312207, 0x2bdd8243, 0x26312726, 0x06072227, 0x26270607, 0x21054746, - 0x07831617, 0xc9831520, 0x82373221, 0xea4318d4, 0x200d8309, 0x05bd4335, 0xff412d82, 0x212d8205, 0x7183c001, 0x11090a32, 0x39111312, 0x2b2c3839, - 0x040e1314, 0x03060304, 0xeb301696, 0x0d1f202a, 0x030e0e05, 0x3225250f, 0x0d03050e, 0x8205ed6c, 0x04042f30, 0x2b14130e, 0x3939382c, 0x11121311, - 0xd1830a09, 0x1f301692, 0x2a201f0d, 0x0e05030d, 0x0f252532, 0x050e0e03, 0x5f05674c, 0x21230623, 0x83130000, 0x5f0f20d5, 0x16210624, 0x05a94e17, - 0x012f4e08, 0x26010f26, 0x37272627, 0xa5012f36, 0x0f0e0d06, 0x01021b58, 0x65653c3c, 0x180a1d7d, 0x0f060603, 0x28131b60, 0x19292a35, 0x28091531, - 0x060fa701, 0x0a180306, 0x65657d1d, 0x02013c3c, 0x0e0f581b, 0x0928060d, 0x29193115, 0x1328352a, 0x0cfb441b, 0x30001522, 0x4e0c6368, 0x212a095b, - 0x011f3617, 0x16010f16, 0x08853717, 0x20080858, 0x09de673f, 0xfe330989, 0x07105bc0, 0x190a0514, 0x0915361a, 0x030e300e, 0x510f040c, 0x0e210630, - 0xdf4f182c, 0x03612115, 0x0a2c2782, 0x191a3614, 0x0714050a, 0x010e2c10, 0x22058c51, 0x410c040f, 0x01230717, 0x84c001c0, 0x373625a1, 0x32373631, - 0x5805e243, 0xd8560683, 0x05025e05, 0x260a0c7b, 0x27262726, 0x82903523, 0x182235b7, 0x060a1313, 0x0c0c0d0c, 0x12060504, 0x3d2c2222, 0x10022829, - 0x6f086c42, 0xf02b0860, 0x17223001, 0x0c0d0116, 0x82040c15, 0x0c0c2a29, 0x1616250d, 0x29280201, 0x9f43183d, 0x5c302012, 0x022908e7, 0x00a00140, - 0x001a000d, 0x09434125, 0x35211522, 0x21227f83, 0x918a2105, 0xaf650520, 0x36172109, 0x2205065a, 0x84272623, 0x2943827e, 0xfe1b1212, 0xfd000240, - 0x451801c0, 0xfe210839, 0xa67a1830, 0x01702509, 0x010f800f, 0xa0200485, 0x20212283, 0x20c18320, 0x5a4418c0, 0x18c02008, 0x2008f187, 0x07b87c10, - 0x240a1b53, 0x002f001d, 0x0771474e, 0x6b052245, 0xee44077c, 0x27222305, 0xd5183526, 0x1720100d, 0x2205d562, 0x91171631, 0x37342c2c, 0x09003336, - 0x5e740e09, 0x4638375e, 0x2f2707bc, 0x62504f2f, 0x4409090e, 0xa983080c, 0x6025a783, 0x27414150, 0x24268726, 0x32331d1e, 0x0507443f, 0x82800121, - 0x38012507, 0x745e5e37, 0x62241085, 0x2f2f4f50, 0x80182883, 0xaa410944, 0x01002508, 0x41412726, 0x4206e846, 0x80180555, 0x234e0cf7, 0x00112605, - 0x00380026, 0x0ca96a4a, 0x27261528, 0x35070621, 0xdf442117, 0x07f25213, 0x08f75818, 0x20112b7f, 0x09244e00, 0xfe261a25, 0x511a2680, 0xe7440a62, - 0x097a6e0a, 0xf2789782, 0x0522440c, 0xb8264583, 0x17010117, 0x4418c0b8, 0x0888080a, 0xd17e2f8c, 0x0d3b4e0c, 0x42003424, 0x924d0000, 0x07062205, - 0x4b931906, 0x18172009, 0x230ad849, 0x16173233, 0x08b8b619, 0x2205dc46, 0x831d0735, 0x012b3434, 0x37323335, 0xe0013736, 0x10131301, 0x2f2e252b, - 0x7d200933, 0xef5408dc, 0x33092806, 0x2b252e2f, 0x19131310, 0x33078119, 0x3c37372d, 0x373c0909, 0xa0012d37, 0x0e070915, 0x1314242c, 0x3884b883, - 0x0806f74f, 0x13148031, 0x070e2c24, 0x07941509, 0x15151010, 0x94071010, 0x2883834d, 0x16601615, 0x01002815, 0xc1ff0000, 0xbf01ff01, 0x00004800, - 0x06072613, 0x8227010f, 0x011f2205, 0x83c48207, 0x27b08305, 0x16170607, 0x1617013f, 0x37200585, 0x0ba52f19, 0x012f3622, 0x83050f4e, 0x213b8305, - 0x05822627, 0x0ad32408, 0x10030e0d, 0x090a0e3e, 0x0d3f1203, 0x2f090304, 0x0403092f, 0x03123f0d, 0x3e0e0a09, 0x0d0e0310, 0x822d2d0a, 0x0f042123, - 0x2e21238a, 0x2123912e, 0x1391b901, 0x0f21379c, 0x8e5b8704, 0x0000237f, 0xb0410500, 0x80012105, 0x26082b77, 0x01000077, 0x48311732, 0x35220692, - 0x0c890733, 0x7d272221, 0x372006d8, 0x93121279, 0x33272527, 0x17141506, 0x2e06f048, 0x27262726, 0x013f3635, 0x16333736, 0x4b171617, 0x2624092a, - 0x15070627, 0x01201283, 0x2106985f, 0x114bd0d0, 0x08a75606, 0x0e090922, 0x8306157e, 0x06124b06, 0x58351d87, 0x130b0901, 0x09090c0c, 0x022d2d44, - 0x250c2e01, 0x121b1b35, 0x7d641812, 0x0f0f2707, 0x14140101, 0xa951011f, 0x7d402006, 0x85180ca1, 0xbf4a0c6f, 0x05a74306, 0x120e6039, 0x11061014, - 0x0e121510, 0x442d2d02, 0x0b2f423e, 0x12010125, 0x50581b12, 0x382005b5, 0x0f255682, 0x14141f38, 0x15434101, 0x210a7756, 0x6d782335, 0x0a476308, - 0x17142722, 0x07a03519, 0x2205ea49, 0x93150607, 0x23372727, 0x07141516, 0x05831716, 0x25054260, 0x26012f26, 0xbf182327, 0x36240d55, 0x15171637, - 0x8d431283, 0x3d424106, 0x41260b21, 0x00296e42, 0xff000005, 0x018001c0, 0x0b8742c0, 0x88181320, 0x23220934, 0x0c891735, 0x2706e245, 0x3227013d, - 0x1d163117, 0x0d915318, 0x07272793, 0x32331635, 0x83171637, 0x06152705, 0x23070607, 0x5e182f26, 0x32210860, 0x06eb4217, 0x08457018, 0x42063c4a, - 0xe94d512a, 0x539d4107, 0x4106c762, 0x17230f43, 0x83311714, 0x3d3625f6, 0x37152301, 0x4b700c89, 0x32072308, 0x4e183137, 0x14230b95, 0x93331617, - 0x15272727, 0x17323336, 0x05833736, 0x27263522, 0x4305f462, 0x444e06b8, 0x27262109, 0x4106de43, 0xe0425843, 0x15234444, 0x2708ff51, 0x00c00100, - 0x002f001a, 0x20067777, 0x05b84931, 0x5b05e351, 0x252507ae, 0x0f161736, 0x05284901, 0x2205556e, 0x5c013f26, 0xbf69072f, 0xd7fe3611, 0x0e0e1111, - 0x0216d647, 0x47d61602, 0x11110e0e, 0x700e0e70, 0x5c2891c0, 0x81200570, 0x47252183, 0x02161602, 0x20378347, 0x182e8270, 0x820ccf53, 0x1637239b, - 0x02843117, 0x61053e5c, 0x06240939, 0x27060507, 0x08ad5b19, 0x4b262721, 0x0020060d, 0x71925985, 0x9ac02920, 0xaf709b8f, 0x1613221a, 0x05567507, - 0x35272623, 0x22a78407, 0x65011f36, 0x084119e5, 0x19e36512, 0x9b8fc894, 0x2005dd64, 0x0dcd4131, 0x22053d41, 0x82372603, 0x3635228c, 0x06d97537, - 0x82010f21, 0x219bacaa, 0x6541c001, 0x15004217, 0x00820020, 0x00092708, 0x02c0ff00, 0x00c00100, 0x0015000a, 0x002b001d, 0x003e0033, 0x0054004c, - 0x2500005d, 0x26230714, 0x33373435, 0x03831516, 0x362f0d82, 0x37273435, 0x16272623, 0x2b171617, 0x82373601, 0x36172101, 0x0d870b82, 0x010f0627, - 0x14150633, 0x25368417, 0x33272617, 0x01820706, 0x27062726, 0x16012f26, 0x11820f82, 0x0706212d, 0x36070631, 0x60013337, 0x8203ba03, 0x1d250802, - 0x7b08087b, 0x74700303, 0x2d3c2810, 0xb095172c, 0x11101209, 0x110b0b11, 0x09121011, 0x2c1774d1, 0x10283c2d, 0x8221827f, 0x12bb2227, 0x201e8a09, - 0x2231853c, 0x82660174, 0x273b2824, 0x21c07410, 0x83211f1f, 0x85402003, 0x1f213b06, 0x11366220, 0x37382827, 0x0f102328, 0x100f0101, 0x38372823, - 0x36112728, 0x21872062, 0x3728ff22, 0x5f201d89, 0x22852e85, 0x230d4f4a, 0x0036002d, 0x21068b58, 0x06772734, 0x012b2805, 0x34352726, 0x8336013f, - 0x8223200f, 0x073008e8, 0x06071714, 0x16171615, 0x013f3217, 0x26053316, 0x16373627, 0x01070617, 0x2d2d4460, 0x08030602, 0x054d0607, 0x010f3907, - 0x01054d05, 0x17150802, 0x0a2d1683, 0x130114b6, 0x141c1d13, 0xfe1d19b6, 0x076063f0, 0x2d028037, 0x1517442d, 0x06010208, 0x0f01054c, 0x4d050739, - 0x03080706, 0x2c168306, 0x14b51a1d, 0x13131d1c, 0x09b51401, 0x09f34f88, 0x2000063d, 0x2002f0ff, 0x1000a001, 0x35002100, 0x5d004900, 0x00006f00, - 0x010f1613, 0x71222306, 0x152009d8, 0x3720108f, 0x2012737f, 0x7f139215, 0x35231274, 0x58272607, 0xb8300e45, 0x07480d0f, 0x28070b0a, 0x11110e0e, - 0x12103716, 0x48200f8f, 0x1b834218, 0x1c824020, 0x0ca84018, 0x30104575, 0x12109a01, 0x28070850, 0x0e0e1111, 0x0d0f3d16, 0x200e8da0, 0x0bbb6f66, - 0x8c0c907f, 0xbb7c180c, 0x18002010, 0x230a6751, 0x13000014, 0x7907c35d, 0x2e080584, 0x27013d26, 0x0b043726, 0x19b00119, 0xb70f0a0b, 0x10111101, - 0x0fb70d40, 0x1689010a, 0x17160101, 0x137fe013, 0x300b080a, 0xe04f100a, 0x4e001713, 0x02290553, 0x00c00100, 0x00230008, 0x194f823c, 0x4f08b15a, - 0x3b210683, 0x05c94602, 0x06250585, 0x05070607, 0xf2401823, 0x013d2208, 0x0a124f23, 0x0790b82e, 0x0701a001, 0x121b4038, 0x80c00112, 0x2b05144d, - 0x18100f01, 0x0f101890, 0xc0800101, 0x84068f4c, 0x06d45e18, 0x0701902e, 0x01072828, 0x12012808, 0x60601b12, 0x28203983, 0x36822d84, 0xc746e820, - 0x52202006, 0x8020087a, 0x230d037c, 0x01000049, 0x2605e77c, 0x17161706, 0x83231533, 0x308d18a4, 0x35372109, 0x13064818, 0x210c436e, 0x34820706, - 0x7b051561, 0x0e2506e3, 0x20150907, 0x0ba06060, 0xed606020, 0x281d930f, 0x0909b701, 0x13131040, 0x272da401, 0x0a0d0d0a, 0x08080e40, 0x00226987, - 0xa0180006, 0x112b0747, 0x37002300, 0x5d004b00, 0x18006d00, 0x1912b1c8, 0x2010d2d8, 0x05474607, 0x17323323, 0x31d98206, 0x31303130, 0x05272623, - 0x30013930, 0x34373631, 0xee5f3627, 0x07062205, 0x64c11823, 0x0cd91911, 0x2621240c, 0x18229027, 0x200edee6, 0xf0c01801, 0x00fe3e10, 0x2e1e1e01, - 0x0215182a, 0x13d62902, 0x29950102, 0x18150202, 0x1e1e2e2a, 0xd6130201, 0xa94b180b, 0xe0fe360f, 0x38262601, 0x26263876, 0xfe190201, 0x010219b6, - 0x17160120, 0x8b678f22, 0x838b200f, 0x0b0a2c4b, 0x02253b0b, 0x3b251513, 0x830a0b0b, 0x02132171, 0x56089a63, 0xfe210797, 0x835683fb, 0x0219345f, - 0x00001902, 0x12000200, 0x6e02d5ff, 0x3700ab01, 0x59006f00, 0x01450563, 0x06072106, 0x2005854e, 0x22068336, 0x780f1415, 0x2721057b, 0x06134526, - 0x82060721, 0x281a8311, 0x013f3233, 0x31150625, 0x182e8614, 0x180cdacd, 0x21082287, 0xc0181617, 0x62830b81, 0x22233908, 0x4402010f, 0x34272a2a, - 0x0b022c33, 0x08080202, 0x020b0d0c, 0x161d1c19, 0x19711717, 0x15192020, 0x01110202, 0x0b020207, 0x080d0c0b, 0x04041f01, 0x3a392d26, 0xf8fd702d, - 0x2d213384, 0x21338201, 0x33880907, 0x98701821, 0x2c250833, 0x3a2db471, 0x05252d39, 0x08011f04, 0x0a0c0c0d, 0x01080302, 0x15020211, 0x18212019, - 0x16171771, 0x02191c1d, 0x2064820b, 0x286c8208, 0x33342c02, 0x702a2a27, 0x2232a218, 0x8b080c0d, 0x08136632, 0xa0018026, 0x00002600, 0x22054949, - 0x5b373621, 0x6e6a05a9, 0x73072006, 0x062305ed, 0x6c151407, 0x430805f9, 0x29280200, 0x3670013d, 0x01012425, 0x062c1d1c, 0x291b1b01, 0x2416171e, - 0x2d442d24, 0x1a2b022d, 0x3d70011a, 0x01022829, 0x2f362524, 0x11092322, 0x1b1b2912, 0x16241001, 0x2d020115, 0x0404442d, 0x30242410, 0x2a08cf46, - 0xc001c001, 0x33002800, 0x18010000, 0x24083b49, 0x0f141533, 0x05bb4601, 0x34258c84, 0x3d26012f, 0x08165b01, 0x82350721, 0x011f2820, 0x35363723, - 0x44802001, 0x092e063f, 0x13010a6d, 0x36011d14, 0x0113141d, 0x87756c0a, 0x60202906, 0xab231340, 0xc0011322, 0x2505cd4e, 0xb00f1285, 0x22831411, - 0x14252c83, 0x120fb011, 0x31198585, 0x248585c5, 0x1f38381f, 0x04000024, 0xc0ff0000, 0x9782f801, 0x35002b29, 0x59004700, 0x6b010000, 0xb472067b, - 0x37322407, 0x72260717, 0x363108c2, 0x34373637, 0x27360127, 0x0f222326, 0x16011f01, 0x22ab8233, 0x6c07012f, 0x385f059f, 0x4603200b, 0x012b10a1, - 0x01072700, 0x30301f20, 0x8301201f, 0x13162507, 0x16132727, 0x07830d87, 0x1a01072b, 0x1d160b0b, 0x178d161d, 0x24068376, 0x409c0b0b, 0x0fcf5e77, - 0x82107a64, 0x22468e57, 0x8c082827, 0x01123068, 0x150d0d1b, 0x76978d15, 0x0d0d1515, 0x5ee7409c, 0xfe200fc4, 0x10d37918, 0x434a0020, 0x0015220a, - 0xfb50182d, 0x17162208, 0x05db1816, 0x4c55180b, 0x15232610, 0x35333523, 0x087c6123, 0x67180889, 0x12840809, 0x40e04025, 0x18c00140, 0x88082ca1, - 0x8ca02008, 0x82402012, 0x82002026, 0x00013200, 0x01c4ff24, 0x00b701dc, 0x01000045, 0x22310726, 0x0acd190f, 0x3233220a, 0x05cf6917, 0x1805ba69, - 0x200ef98a, 0x0b8b1826, 0x1617210d, 0x2c081f82, 0x01273435, 0x1919138c, 0x2020b813, 0x212b2b21, 0x0b0b0998, 0x98080809, 0x33414133, 0x25b83030, - 0x23252f2f, 0x1d17b023, 0x1515171d, 0x2d1b8590, 0x0c0a0a90, 0x1313b00c, 0x01136c01, 0x3483b812, 0x98202024, 0x1c830808, 0x30309822, 0xb8223883, - 0x38832323, 0x1515b022, 0x90203883, 0x90251b85, 0x0a0a0c0c, 0x6f6a83b0, 0xf682080f, 0x1600a026, 0x3e002c00, 0x2611d557, 0x012f3435, 0x49012b26, - 0x1d210906, 0x228b1801, 0x42132009, 0x40201052, 0x240d2857, 0x1a134d13, 0x6f4818f3, 0x0875410d, 0x9b182988, 0xf3210ee6, 0x5235821a, 0xfe210e5e, - 0xbb7318e0, 0x4b50180f, 0x01c02308, 0x401800a0, 0x94881e67, 0x84c0fe21, 0x18602074, 0x24116a5b, 0x00004001, 0x2a538203, 0x01c00100, 0x00130080, - 0x5e3b0027, 0x23260f71, 0x26272221, 0x4e181535, 0x05201221, 0x18129f73, 0x23107248, 0x010e0909, 0x1806fa54, 0x6417124e, 0xa5490ce2, 0x200c8c0c, - 0x20008200, 0x5f4b1806, 0x00112a08, 0x00390025, 0x005f004d, 0xbbc31871, 0x69372013, 0x4d18077b, 0x4b180af5, 0x64182764, 0x80181150, 0x4020110c, - 0x860fb943, 0x0cbb4ae3, 0x8c0fcb4a, 0x8f80200f, 0x10924a41, 0x11bcca18, 0x4b185020, 0x40541879, 0x1050690c, 0x6b8fd020, 0x00820020, 0x07000535, - 0x0002e0ff, 0x1500a001, 0x47003400, 0x6d005a00, 0x19130000, 0x2311ef08, 0x13272623, 0x08f8cd19, 0x17363725, 0x50140716, 0x2620077c, 0x2005ea47, - 0x11136713, 0x92122667, 0x02182612, 0x02162016, 0x08b07c10, 0x16081035, 0x0b0d3f02, 0x11130f0b, 0x1d130c0b, 0x0110161d, 0x83212310, 0x0f58281e, - 0x48090507, 0x67890708, 0x4d581037, 0x86ff2006, 0x201f9007, 0x203e8388, 0x07264d78, 0x16026028, 0x0c0be3fe, 0x63821110, 0x01191029, 0x17131701, - 0x83261218, 0x0d01281d, 0x0a4e0b0f, 0x4115010b, 0x97452563, 0x053f4105, 0x6c003e23, 0x8b941900, 0x31302619, 0x17061514, 0x30551816, 0x08914208, - 0x2205de74, 0x82272623, 0x5d372001, 0x0a83058f, 0xbc632720, 0x069b7306, 0x3a823220, 0x16013922, 0x25080585, 0x36373637, 0x17162327, 0x211d05a1, - 0x14140a38, 0x0b0b0d0a, 0x07060304, 0x15160c0d, 0x3a37450b, 0x070e040e, 0xd6755d0a, 0xd227080d, 0x0d1f3701, 0xbc010505, 0x1e040305, 0x140e3821, - 0x03011314, 0x0d050602, 0x04040c0b, 0x020d0605, 0x13040403, 0x83131819, 0x0805323e, 0x01040a4c, 0x0e0d1a30, 0x03040208, 0x07060303, 0x2c61840d, - 0x0c010504, 0x01401717, 0x0e1d2301, 0x0b20410a, 0x0a120f29, 0xc113080a, 0x831b1509, 0x23b28232, 0x01020101, 0x5d825583, 0x0a820520, 0x0807072a, - 0x18160c03, 0x081b1f40, 0x2807db62, 0x01c001e0, 0x003b00a0, 0x0955184f, 0x08527411, 0xfc6f3520, 0x0723550a, 0x240aa26e, 0x35262722, 0x12914403, - 0xac781020, 0x4b102009, 0x53180733, 0x02270e96, 0x44442d2d, 0x83022d2d, 0x442e8316, 0x4d180d9c, 0x3e6d09db, 0x1b1b2205, 0x0c705a29, 0xca188020, - 0x69820869, 0x4e18fe20, 0x6e180c09, 0x372515ab, 0x23153335, 0x21038215, 0x09831735, 0x82233721, 0x18252005, 0x260e274a, 0x26272611, 0x18402127, - 0x5b09aa6e, 0xa24d0a2b, 0x80fe2608, 0x406060c0, 0x23008360, 0xe06060a0, 0x8309946c, 0x05595e09, 0x2b0c4354, 0x001a0015, 0x35261700, 0x01373431, - 0x5008c760, 0x22080508, 0x07273701, 0x0e0e0e17, 0x130f7d01, 0x0e230f13, 0x0f83fe0e, 0x230e1413, 0x18694e01, 0x0e0f1869, 0x190f1314, 0x200a3aa1, - 0x2018820e, 0x82188313, 0x05a7495e, 0x01800222, 0x096b9118, 0x0bff6e18, 0x180d2061, 0x210c698d, 0x5047023d, 0x84352005, 0x330523eb, 0x8d181517, - 0x64492567, 0x08cf4108, 0x4a087770, 0x132f0685, 0x331a134d, 0x140e0d01, 0x7001c0fe, 0x18804d33, 0x1810e990, 0x21112d8d, 0x2f85c001, 0x0d0e1423, - 0x32591801, 0x05dc420f, 0x13204023, 0x8458821a, 0x4da0227d, 0xfc8c1813, 0x06002223, 0x2e008200, 0x80014002, 0x1c001500, 0x2b002300, 0x18003300, - 0x6b08ab5a, 0x212d0e7c, 0x16352313, 0x27171617, 0x07063335, 0x066b4e06, 0x46231521, 0x33210567, 0x11555115, 0x2008cb47, 0x05cb4701, 0x1b121225, - 0x844040fe, 0x40402215, 0x210d8201, 0x05838001, 0xfe181186, 0x1d8411d1, 0x4800ff21, 0x0984087c, 0x84c0fe21, 0x84c0203a, 0x21578446, 0x4584c040, - 0x704ea020, 0x061f500f, 0x01400027, 0x00000140, 0x09537110, 0x27262723, 0x3ec18221, 0x0a89011f, 0x800a0d0d, 0x1509070e, 0x091500ff, 0x49800e07, - 0x10800909, 0x01011313, 0x50101313, 0x0021075f, 0x203f8280, 0x7f3f8340, 0x17280767, 0x36211716, 0x012f3637, 0x8305cc64, 0x8501203f, 0x3701213f, - 0x7882408e, 0x001f0025, 0x846001c0, 0x3526267f, 0x013f3431, 0x203f8236, 0x227f8211, 0x8b09012f, 0x8fa9202d, 0x24bf858c, 0x011f0040, 0x653f8600, - 0x072906ba, 0x16110706, 0x013f1617, 0x223fa0f7, 0x47000003, 0x1a20082f, 0x71188982, 0x17261643, 0x23113311, 0x05822321, 0x200a0e5f, 0xb0731801, - 0xa0402408, 0x828001a0, 0x148c4903, 0x00ff4024, 0x03830001, 0x00820020, 0x6f830220, 0x01400123, 0x21ef82a0, 0x6d820020, 0x18051973, 0x2308aa48, - 0x37262711, 0x22086970, 0x41272223, 0x80201081, 0x250a4d41, 0x0a0d0d0a, 0xe38b9701, 0x4152fe21, 0x0925099e, 0x00000009, 0x206f8501, 0x246f8300, - 0x23061700, 0x05335431, 0x4106cb70, 0x1720109f, 0x830e9e41, 0xe000213f, 0x0020af86, 0x8c22df41, 0x29ef858d, 0x00020000, 0x12008001, 0xef822400, - 0x3107062a, 0x1f160706, 0x013f1601, 0x20051c4f, 0x05aa5d21, 0x82362121, 0x653520f6, 0x302a0593, 0x010d0e14, 0x13da1201, 0x4219da13, 0x30200774, - 0x33098460, 0x151511da, 0x8001da11, 0x140e0d01, 0x0ca40e18, 0x180ea40c, 0x70213083, 0x070743d0, 0x0da3d032, 0x0000a30d, 0x10000100, 0xe001e0ff, - 0x4000a001, 0x5b187982, 0x3d240c8f, 0x36373401, 0x1d211183, 0x22778201, 0x18161736, 0x230707ec, 0x26270607, 0x08bf8419, 0x875a1620, 0x22232507, - 0x327e010f, 0x6afe6918, 0x220a1f4e, 0x5347002d, 0x152309b9, 0x82011f14, 0x013f2495, 0x88060717, 0x3536220b, 0x06a77434, 0xa4712720, 0x53032005, - 0x218d06e7, 0x0727372d, 0x0a3f0127, 0x780a0d0d, 0x83100909, 0x6a042207, 0x8d098604, 0x83982011, 0x0970231c, 0x07863009, 0x2d3b0229, 0xb701013b, - 0x83780909, 0x09102210, 0x86388209, 0x24118f09, 0x0909e0fe, 0x201b8370, 0x20078630, 0x203b8201, 0x29c08202, 0xc0ff1f00, 0xc001a001, 0x0c821600, - 0x2627362a, 0x17060507, 0x07331716, 0x37210582, 0x300f8225, 0x01372327, 0x1513095d, 0x1000ff13, 0x70150907, 0x200b834d, 0x2f0b8201, 0x4c6f1608, - 0x10179301, 0x0fe00f0d, 0xb3011414, 0x00200989, 0x22087751, 0x4aa00140, 0x312106e7, 0x060d6036, 0x06070627, 0x33152307, 0x86648216, 0x60118405, - 0x37200534, 0x35222582, 0x1f872726, 0x2322198f, 0x33960706, 0x39843620, 0x45842320, 0x0d01d024, 0x324c140e, 0x98082a08, 0x010f1018, 0x0d0e1408, - 0x22178d01, 0x92980701, 0x07982115, 0x0f222b94, 0x2d861810, 0x84082257, 0x01282161, 0x20201982, 0x1784588c, 0x01072023, 0x22159128, 0x93070128, - 0x85a0832b, 0x00002e2d, 0xff220002, 0x015e02c0, 0x003b00c0, 0xfd471858, 0x4314200c, 0x23220502, 0x01830706, 0xad5ce983, 0x200b8507, 0x22178322, - 0x18352627, 0x2108ff47, 0x29603211, 0x27222505, 0x26012f26, 0x08054e43, 0x16011f24, 0x35373633, 0x40013336, 0x6509090e, 0x090e4645, 0x120b090a, - 0x151e1312, 0x0e040615, 0x1506040e, 0x0b8b1e15, 0x12121323, 0x3522820b, 0x6545460e, 0x130e0909, 0x1717010d, 0x13131822, 0x0406020b, 0x00820c04, - 0x05020726, 0x0d01100b, 0x33058052, 0x40400c12, 0x05040c60, 0x07080c08, 0x1c121101, 0x0f01010f, 0x0747a518, 0x07200b87, 0x04271c82, 0x40600c05, - 0x82120c40, 0xd0fe2b82, 0x1722730c, 0x0c0c0117, 0x4e830515, 0x56820520, 0x010a0425, 0x180c7310, 0x2a0b8b62, 0x0035001b, 0x0042003e, 0x18061300, - 0x210ac061, 0xf6411133, 0x21ff8305, 0x3f7f2623, 0x15112106, 0x2009ac51, 0x24fa8223, 0x012b013d, 0x071b5a27, 0x33150527, 0x1225a027, 0x070d4239, - 0x1601902c, 0x01302217, 0x39140e0d, 0xd9412512, 0x83c02008, 0x8260201e, 0x3040219c, 0x097f6f18, 0x60600026, 0x1e02c001, 0x2409cb48, 0x17221001, - 0x05ee4816, 0x80021e22, 0xf0211784, 0x25588710, 0x0e0909d0, 0x074d2860, 0x60282307, 0x00820060, 0x10000337, 0x7001c0ff, 0x1c00c001, 0x3a002900, - 0x36250000, 0x39343137, 0x078f5401, 0x21077c53, 0x96823914, 0x184f3320, 0x58352005, 0x0322059b, 0xc3830706, 0x16373623, 0x05ff4117, 0x11100127, - 0x1e080820, 0x074d7301, 0x081e0127, 0xa0112008, 0x20938350, 0x293e82a0, 0x0f015022, 0x2001010f, 0x0582301f, 0x15830f20, 0x272e4027, 0x2b0b0b01, - 0x077b7339, 0x0b2b3927, 0x2f27010a, 0x202c8380, 0x21cb8410, 0x55185001, 0x17830bb8, 0x02000028, 0xc0ff2000, 0xb3822002, 0x46002322, 0x0628b182, - 0x27223123, 0x3f343526, 0x0a7d8018, 0x09fa4e18, 0x14151625, 0x8505010f, 0x4536201f, 0x0f2105d8, 0x09af4e01, 0x2d055c4c, 0x01272223, 0x0d0d0aa7, - 0x3a09090a, 0xbc458dfe, 0x73012405, 0x4409093a, 0x702306d5, 0x4470f2fe, 0x218206a4, 0x85730121, 0x8dfe2121, 0xa9202186, 0x39202885, 0x20053b4a, - 0x20488539, 0x203b8470, 0x930685e0, 0x18002020, 0x29080b64, 0x00a00180, 0x00390024, 0x58521700, 0x18342008, 0x2708496d, 0x17163336, 0x07141716, - 0x062b0583, 0x21070607, 0x3f161737, 0x18273601, 0x080c4ba5, 0x3d901727, 0x01022829, 0x022b1a1a, 0x2d442d2d, 0x17162424, 0x1b1b291e, 0x1d2c0601, - 0x2401011c, 0x90fe3625, 0x1111504f, 0xe29b1850, 0x2022080d, 0x3d292802, 0x10242430, 0x2d440404, 0x1501022d, 0x01102416, 0x12291b1b, 0x22230911, - 0x2425362f, 0x3182a701, 0x0e293782, 0x1686270e, 0x86160202, 0xb7408327, 0x830620b7, 0x16152bb8, 0x35373617, 0x36371617, 0xc282012f, 0xb38db7a2, - 0x50208d82, 0xd922b7a1, 0xb38d1111, 0x5718c783, 0xc02808cf, 0x1100c001, 0x68005f00, 0x27116573, 0x06071716, 0x07063107, 0x0c6d7e18, 0x1627b382, - 0x0706011d, 0x82272623, 0x08be62bb, 0x84171621, 0x34352212, 0x24158237, 0x22012b26, 0xeecb1907, 0x36172d11, 0x06272637, 0xe0171607, 0x01242536, - 0x07a43619, 0x603a0783, 0x01232339, 0x010d0809, 0x09080d84, 0x39232301, 0x010e0d15, 0x010f100f, 0x47420f01, 0x82098305, 0x0d0e2a0e, 0x5c090915, - 0x0b120909, 0x211e820b, 0x12821818, 0x120b0b22, 0x088b6618, 0x10e57e18, 0x2e123724, 0x52823e2d, 0x3e295a82, 0x33122e2d, 0x17111006, 0x05ec6a28, - 0xb7421820, 0x01182205, 0x2c0f830f, 0x10111728, 0x01013906, 0x0f0e0641, 0x83568313, 0x0f13255e, 0x893b060e, 0x4308545e, 0x302f056b, 0x5300bf01, - 0x00006500, 0x31071613, 0x83010f06, 0x82d882e6, 0x262721f5, 0x08aca219, 0x1d161723, 0x072e4401, 0x82373621, 0x421a821b, 0x142108c4, 0x06657807, - 0x33831482, 0x34352724, 0xbe4b3637, 0x6a052005, 0x29081058, 0x0605048e, 0x1b011a0d, 0x1b29291b, 0x0d1a011b, 0x04040506, 0x1a0d0b0c, 0x010c0c14, - 0x05372423, 0x302c1f1f, 0x1601201f, 0xf45a0d0d, 0x0d0d3607, 0x31320216, 0x3131474b, 0x24233906, 0x140c0c01, 0x0c0b0d1a, 0xfa2e1904, 0xaa01210d, - 0x09211383, 0x07f14d79, 0x83097921, 0x365d8355, 0x10110708, 0x2b3b7915, 0x1b2b0d2a, 0x2001011c, 0x0947301f, 0x5b191314, 0x1936073e, 0x47091413, - 0x0232314b, 0x462e2d02, 0x3b2b2b0c, 0x11101579, 0xa5830807, 0x0b51ca20, 0x4600200b, 0xe032051f, 0xc0010002, 0x19000800, 0x33002600, 0x15130000, - 0xb1643533, 0xfe6e1905, 0x011d3609, 0x35112111, 0x23113323, 0x27262726, 0x36373611, 0x11230137, 0x091f1933, 0xa0b02708, 0x07900701, 0xe45d3001, - 0x00ff2408, 0x4d202040, 0x802008bc, 0x88270b8a, 0x01072828, 0x5d280701, 0x282608dd, 0x01a0fe20, 0x0f192060, 0xff4d0e36, 0x0d075a0a, 0x2f002422, - 0x2223a382, 0x41063107, 0x152005be, 0x2006b35b, 0x23948221, 0x2726012f, 0x0482bb82, 0x27343508, 0x36132326, 0x14012b35, 0x32331617, 0x090ee037, - 0x24233809, 0x082f0101, 0x1409080d, 0x09148001, 0x30070d08, 0x23240101, 0x0e090938, 0x4040132d, 0x1a1a1313, 0x39058247, 0x2b2b0c13, 0x3748133b, - 0x12130f09, 0x13120101, 0x4936090f, 0x2b2b3b13, 0x4582130c, 0x2784fe20, 0x7a131321, 0x802808bf, 0x1a00a001, 0x39002600, 0x20088756, 0x07f94433, - 0x7c492320, 0x18052009, 0x2208c967, 0x54051523, 0x6020117d, 0x01228482, 0x72434040, 0x01202b07, 0xc0291b1b, 0x011b1b29, 0x45418001, 0xfe202308, - 0x33540240, 0x86fe2006, 0xda671807, 0x84388308, 0x2137822e, 0x6718a0e0, 0xbf6908d2, 0x0a0b510c, 0x33001824, 0x03544f00, 0xd1201906, 0x35232108, - 0x0812ba18, 0x07112322, 0x2606ea41, 0x37363335, 0x87232726, 0x4d362006, 0x312205c0, 0xe2181716, 0xe3820741, 0x33171623, 0x24e98415, 0x06253311, - 0x20188307, 0x82128315, 0x37362103, 0x35203883, 0x03824083, 0x0d01c029, 0x14a0140e, 0x55010d0e, 0x502308ef, 0x84707090, 0x010f2510, 0x50500f01, - 0x25830584, 0x93200221, 0x70702615, 0x010fe8fe, 0x23258318, 0x100f0118, 0xa1180a8a, 0xfe210906, 0x36961830, 0x01502508, 0x60fe30d0, 0x90254e83, - 0x010f0f01, 0x51048340, 0x3020089e, 0x90201288, 0x01246a83, 0x0f0120a0, 0x5f84548e, 0x00000024, 0x935f0005, 0x00342807, 0x004c003a, 0x597b005e, - 0x45520c7f, 0x36012452, 0x82353337, 0x17162203, 0x235d8215, 0x23070615, 0x26230383, 0x82233527, 0x52c38803, 0xfe234b62, 0x190f0190, 0x52142225, - 0x0125537a, 0x30010f40, 0x5dad190f, 0x0f01220e, 0x056b4120, 0x230d8f44, 0x13000050, 0x30088b62, 0x2111011d, 0x26013d11, 0x23272627, 0x0f060706, - 0x8a6c1801, 0x11332309, 0xf1763301, 0x03112109, 0x82173d41, 0xb8352117, 0x2106a062, 0xb0440001, 0x09a14408, 0x40012022, 0x20097343, 0x939582c0, - 0x08ae62ab, 0x4405bc44, 0x012309cc, 0x521b1212, 0x141906b6, 0x10200f09, 0x5b82f192, 0x26060f4f, 0x00c00180, 0x824d0042, 0x29b984ed, 0x17230706, - 0x011f3233, 0xe5821716, 0x012b0623, 0x09667207, 0x23353323, 0x23118207, 0x3d262722, 0x07296918, 0x34353326, 0x013b3637, 0x1c822f82, 0x07272622, - 0x3a069e6b, 0xa0232726, 0x16701602, 0x10160202, 0x0b0c7468, 0x01010e66, 0x0c0b660e, 0x83106874, 0x28188413, 0x09372008, 0x090e130d, 0x84028209, - 0x130e2904, 0x2037090d, 0x50021608, 0x4020af83, 0x01210484, 0x05e765a8, 0x26049029, 0x070f0f07, 0x47900426, 0x90220771, 0x35820937, 0x2006e77f, - 0x20438340, 0x201b8237, 0x5c6f18d8, 0x00002508, 0x20000500, 0x28068752, 0x002a0021, 0x00400035, 0x082b454b, 0x16173224, 0xda82011d, 0x2105e36e, - 0x4844010f, 0x27262905, 0x05112726, 0x013d3637, 0x1520c182, 0x06210c82, 0x05864907, 0xb9183320, 0x0a8a09a7, 0xa75a2020, 0x21332807, 0x0c011516, - 0x5e52150d, 0x6026090b, 0x0c010838, 0xe619e033, 0x08900876, 0x14570120, 0x01202b06, 0x66211615, 0x0a121317, 0xb8462225, 0xf8602e08, 0x66080419, - 0xa898010c, 0x0f01010f, 0x200498e0, 0x09bf7600, 0x2f001522, 0x200c1d44, 0x08944221, 0x1d052124, 0xae180601, 0x3a69096a, 0x84332005, 0x0e8e5d06, - 0xfe28be83, 0x021001c0, 0x80021616, 0x84076941, 0x156b7508, 0x68687828, 0x16020216, 0x05835050, 0x0a89d020, 0x220b077b, 0x972e0015, 0x35132497, - 0x44272623, 0x57180571, 0x152008ce, 0x9694a983, 0x5b188820, 0x97951311, 0x18c8fe21, 0x2a190f5b, 0x01000020, 0x008001c0, 0x18320019, 0x18119d55, - 0x20098043, 0x080c5225, 0x8705ff51, 0x29072119, 0x084d5418, 0x4c8a8a21, 0xa02305ad, 0x90a06001, 0xfb541814, 0x8989210b, 0x2205e94c, 0x18a0a0a0, - 0x870a5f55, 0x02002315, 0x93824000, 0x9387e020, 0x2c7b2520, 0x09387c0e, 0x44180520, 0x44180e2f, 0xd7200915, 0xa0227f90, 0x9491a0fe, 0x0b245518, - 0x0025949e, 0x00020000, 0x22978220, 0x41a001a0, 0xa954052b, 0x14152307, 0x86181617, 0x13200d0e, 0x0e0b0119, 0xaa831f83, 0x92f72721, 0x150441ee, - 0x0a0f5618, 0x93085641, 0x839682c1, 0xe0ff2397, 0x2f41a001, 0x07815507, 0x37343523, 0x04871836, 0x15162508, 0x13010f14, 0x2005fb54, 0x20198f26, - 0x1897a907, 0x41093b56, 0x00241ced, 0x00200001, 0x93840482, 0x1daf5e18, 0x0b42a020, 0x424e8805, 0x4a821428, 0x4f824020, 0x4f852020, 0x5e182520, - 0x9f9219af, 0x00205095, 0xa3824e82, 0xa0016027, 0x19004001, 0x08255700, 0x18141521, 0x200f3f4a, 0x13b441c9, 0x42370121, 0x52821161, 0x4020f784, - 0x20205382, 0x1d3f4a18, 0x49205394, 0x02235292, 0x18ff0000, 0x20072fa4, 0x08374420, 0x21113324, 0xfd5b3311, 0x06032105, 0x0b28cb18, 0x80212008, - 0x0112121b, 0x40800140, 0x1b121201, 0x116d80fe, 0x15160102, 0x21e60121, 0x02011516, 0x44a6fd11, 0x2d58051f, 0x232c8307, 0x1102a0fe, 0x01241d83, - 0x11211615, 0x52186e82, 0x15220baf, 0xab442700, 0x575b1818, 0x14a44410, 0x640c8861, 0xa45c052e, 0x18fe200f, 0x200cb773, 0x527f8300, 0x7f8f075b, - 0x200a5848, 0x197f9013, 0x2008bf17, 0x073646e0, 0x7818e020, 0xc0200d00, 0x0ffe1a19, 0x7d8dfe84, 0x00000224, 0xa7822000, 0x26006022, 0x094b4318, - 0x2109d657, 0xb6550706, 0x023d2711, 0x31373621, 0x259f3736, 0x22010025, 0x47083322, 0x082305dd, 0x5d0f1018, 0x9f78057b, 0x9e012008, 0x33e8241f, - 0x4e012222, 0x01240535, 0x0818100f, 0x12253889, 0x20201b12, 0x821e9e48, 0x5edb8ed7, 0x2f5f054d, 0x37362409, 0x18353736, 0x250a177d, 0x17161716, - 0x766f021d, 0x21259f05, 0xdc9dc001, 0xdc9eff20, 0xbd9e9820, 0x1b191e9e, 0x11220b0b, 0x09682300, 0x006b2406, 0x1800007d, 0x21111199, 0xa7182611, - 0x37200e69, 0x0d294818, 0x4c18f783, 0x0523119e, 0x51313536, 0xf04506c0, 0x11372105, 0x13201190, 0x07e8ea18, 0x7a262721, 0x896306ec, 0x0f0c6811, - 0x6300ff21, 0x01200f62, 0x2710885e, 0x0e0e8ffe, 0x0f13130f, 0xe2200591, 0x7c4d168b, 0x81961809, 0x5e7c1808, 0x18118708, 0x681033f6, 0xb520108c, - 0x2620528c, 0xfe210d8b, 0x22818bda, 0x18000100, 0x18099361, 0x721b4963, 0x1573198c, 0x06234f18, 0xc001002a, 0x34001a00, 0x58004600, 0x1c8d5918, - 0x53742720, 0x16172109, 0x2d095358, 0x37173637, 0x06310714, 0x26272223, 0x8c5b3627, 0x17152205, 0x06787022, 0x2007af43, 0x089f9923, 0x160e5c28, - 0x17212117, 0x0c0b0e16, 0x1d11090a, 0x1d29291d, 0x0b09111d, 0x092c0b0b, 0x090d0e09, 0x09010109, 0x090e0d09, 0x0b8a8009, 0xd6981982, 0x0d10ba35, - 0x0c01010c, 0x090b100d, 0x10140c0b, 0x10010110, 0x820c1410, 0x7076200c, 0x86760b7c, 0x0c7b7d06, 0x26056b73, 0x0033001a, 0x41570045, 0x06201d0b, - 0x20055953, 0x066f5c37, 0x5c59fa82, 0x3d0a4105, 0x0f05612b, 0x220d030d, 0x222e2e22, 0x2a088222, 0x1a0a050f, 0x1a23231a, 0x41310a1a, 0x7b31350a, - 0x0e06030d, 0x01191928, 0x28191901, 0x0d03050f, 0x05f25f1e, 0x41b51e21, 0x17421b0a, 0x002c240c, 0x4149003e, 0x03201c0b, 0x4110eb41, 0xd04d1104, - 0x1908420a, 0xe0415020, 0x8dc0200d, 0x18d020f3, 0x4109fa7c, 0x012018fa, 0x0c097318, 0x180c7f7e, 0x23085a40, 0x04000000, 0x002c0382, 0x80018002, - 0x25001300, 0x50003700, 0x1808cf5e, 0x210b0dd3, 0xfd460521, 0x42072010, 0xdc4907e8, 0x16172505, 0x37362515, 0x4c0d454c, 0xc02a075d, 0x02363652, - 0x52363602, 0x09870001, 0x0100ff23, 0xd94c1830, 0x1818200b, 0x2a0c51f0, 0x161602d0, 0x02162002, 0x89201602, 0x80012109, 0x40874283, 0xb8200783, - 0x3820348b, 0x68204e8b, 0x45843b8e, 0x000e0022, 0x02200082, 0x2105f762, 0x95180022, 0x702c0943, 0x8a007d00, 0xa4009700, 0xbe00b100, 0x20177f48, - 0x0fd31817, 0x0737230a, 0x0e893736, 0x3f20198b, 0x5105b97d, 0x339906b4, 0x36203e8a, 0x19b34d8d, 0x1649678c, 0x6bc02009, 0x40200846, 0x0adf5618, - 0x15f55618, 0x18015021, 0x8d089e95, 0x07fb4e2b, 0x57187020, 0x15ab1437, 0x0364578a, 0x0fe56305, 0x0a265818, 0x0a219618, 0xb022998a, 0xa687010f, - 0x2b8a158a, 0xc589d020, 0x5818158a, 0x15a00a46, 0xfb43578a, 0x0057370a, 0x00980060, 0x130000a7, 0x01391716, 0x37363515, 0x17163336, 0xe77a3130, - 0x18362007, 0x2127a587, 0x66180722, 0x11220d7e, 0x4a823435, 0x37361723, 0x23178335, 0x3736021d, 0x362a0a82, 0x15173233, 0x16011f16, 0x03823d17, - 0x15373222, 0x06221584, 0x26843507, 0x23061536, 0x26352726, 0x2726012f, 0x22232615, 0x07061507, 0x17161537, 0x16328b82, 0x27263517, 0x20272631, - 0x1c140817, 0x2f3b1e1b, 0x8718272f, 0x152522f9, 0x1318191a, 0x05fc450d, 0x20230582, 0x8217251b, 0x083e080e, 0x221a1608, 0x2c08081e, 0x0303011d, - 0x0808241c, 0x080a1c22, 0x212f2f21, 0x08082f21, 0x0d0e1c24, 0x08181a03, 0x25221e08, 0x1d23901b, 0x05050303, 0x231d0808, 0x1501c001, 0x07080101, - 0x88180307, 0xfe210e31, 0x318818e0, 0x04052512, 0x68040506, 0x23057d45, 0x28180180, 0x3d080982, 0x4a07089e, 0x04050805, 0x02475043, 0x48040602, - 0x05480107, 0x0101010b, 0x010a0245, 0x09044801, 0x0d460304, 0x0d055005, 0x47030c44, 0x460a0101, 0x07010304, 0x07014504, 0x65080750, 0x29820450, - 0x50010227, 0x040b0302, 0x05a34e00, 0x0160022d, 0x001900a0, 0x1300002c, 0x4e313526, 0xf86f069e, 0x6c27200d, 0x29201212, 0x20055650, 0x8a6c18c0, - 0x6df7200a, 0x6920102e, 0x2005464e, 0xec5718c0, 0xb7fe210c, 0x2d0e6659, 0x00000300, 0x8002c1ff, 0x1300bf01, 0xf5622d00, 0x31072305, 0x30190706, - 0x17260ddf, 0x14311506, 0x7218011f, 0x21201288, 0x510df562, 0x012a0a0a, 0x0b0c0d89, 0x06038004, 0x08880d06, 0x09095024, 0x0b5e5a5a, 0x219a8309, - 0x0583cefe, 0x8309135e, 0xbf01211f, 0xfe213583, 0x83378340, 0xc0012109, 0x78200983, 0x59212883, 0x20d68559, 0x5e358670, 0x3f82064b, 0xf3521d89, - 0x40022c05, 0x1600a001, 0x00004100, 0x18313713, 0x200d6d71, 0x05c45e31, 0x3520148d, 0x24081d59, 0x17160706, 0x495a1832, 0x27262608, 0x6b753523, - 0xac651801, 0x01122508, 0xeb15156b, 0x203c0f8b, 0x011b1b29, 0x07070701, 0x12020109, 0x180a0404, 0x01151418, 0x4b313202, 0x60200130, 0x0bbe6518, - 0x60140925, 0x821c1c14, 0x18092004, 0x0809d265, 0x40140926, 0x291b1b01, 0x070e0d17, 0x02120b08, 0x14130502, 0x4b382525, 0x40023231, 0x10000100, - 0xb001f1ff, 0x10009001, 0x080cbf63, 0x17161529, 0x01133716, 0x100e07ae, 0x17a0fe13, 0xb0190604, 0x0b191802, 0x13640190, 0x90070e10, 0x0218190b, - 0x040619b0, 0x82600117, 0x08934a36, 0x0c824020, 0x2309be52, 0x07331523, 0x093be218, 0x23069d4b, 0x11013b16, 0x17245b82, 0x37233533, 0x098b7318, - 0x09184018, 0xc0011123, 0x05be4137, 0xb3f33623, 0x054a42d3, 0x2506b947, 0x12120120, 0x1490e01b, 0x41365321, 0x372205af, 0x6818d340, 0xcd4907b9, - 0x055c4506, 0xfed34023, 0x056143cd, 0x01221686, 0xd7440013, 0xc0012d05, 0x0800c001, 0x59005000, 0x00006200, 0x0f6beb19, 0x013b3622, 0x23191a5d, - 0x06070623, 0x2111415e, 0x475d013d, 0x1833200b, 0x5e08fbd0, 0x50200757, 0x2b054956, 0x0d501602, 0x231d160d, 0x12121b60, 0x230e195d, 0x36252401, - 0x3e5d1692, 0x55e8200a, 0xfe210713, 0xe28418c8, 0x0d6c1808, 0x19182b08, 0x58091413, 0x12120111, 0x155d071b, 0x3607240f, 0x95012425, 0x8bc72019, - 0xa2b5182b, 0x0aae7c08, 0x330a3f5b, 0x00390030, 0x005f0041, 0x07261300, 0x16011706, 0x012f3637, 0x2405f341, 0x010f2627, 0x10657806, 0x27362723, - 0x28018326, 0x36172707, 0x17163117, 0x22088216, 0x82170627, 0x25372108, 0x2205ed43, 0x193f1617, 0x240e4006, 0x013f3435, 0xa7611827, 0x5b8e210a, - 0x3d155678, 0x08122060, 0x35292008, 0xc8932c35, 0x14191917, 0xa873081e, 0x1e2d03ba, 0xfe262626, 0x567839de, 0x323d2115, 0x0bb66118, 0x785a6f21, - 0x603c1916, 0x2c2b2919, 0x03032721, 0x0b9d7321, 0x21130304, 0x92fe5a2a, 0x091d303e, 0x38e40b09, 0x3e313699, 0x00000028, 0xff000002, 0x01c000c0, - 0x001100a0, 0x074f4936, 0x200be976, 0x08b37d07, 0x68011d21, 0xcd580cc2, 0x05536f05, 0xb94e9020, 0x7c90200f, 0x8318063d, 0x0e830eb6, 0x7f640120, - 0x089d6408, 0x2005f542, 0x0b8f45e0, 0x0c82c020, 0xbf690020, 0x00c0280a, 0x0059001f, 0x41340100, 0xbb1808bc, 0x0221098b, 0x05d74132, 0x18352321, - 0x2308b8b6, 0x0717013b, 0x2109c843, 0x1a193f32, 0x52180eee, 0x22320a25, 0x2627010f, 0xe001012b, 0x20100f0f, 0x0504040c, 0x8e85130a, 0x07d98818, - 0x8540fe21, 0x5a0f230f, 0x09850f5a, 0x0a102026, 0x100a5656, 0x1791db86, 0x12a0012b, 0x10070909, 0x0c0c0c07, 0x0c5c7312, 0xd8438020, 0x80802106, - 0x0e22ea85, 0x51827a7a, 0x03820e20, 0x9341118b, 0x00022505, 0x39008001, 0x4718f383, 0xd4af0a79, 0x981d2d41, 0x21f097c0, 0x2441c001, 0x86012017, - 0x21d99dd1, 0x184100ff, 0x02003017, 0xe0ff2700, 0x99012002, 0x25001e00, 0x58010000, 0x3b210651, 0x06db4103, 0x57012b21, 0x133109cf, 0x3727012b, - 0x23010717, 0x501212ea, 0x09691b13, 0x32b085d7, 0x1212837c, 0x191a138a, 0x69090614, 0x448a7c50, 0x83ea8701, 0x1350210d, 0x20056d41, 0x290c8383, - 0xfe12128a, 0x8a7d5099, 0x0f460043, 0x0068230b, 0xf4421300, 0x0572620b, 0x18163321, 0x210710cb, 0x2e603736, 0x057e5f07, 0x6607015b, 0x06220fd1, - 0x20832307, 0x2f853520, 0x26211d8b, 0x05a86127, 0xc0373626, 0x01120c01, 0x27098177, 0x1502010c, 0x0d0e1439, 0x0e230682, 0x51140e09, 0x092809f0, - 0x0102150e, 0x39140e0d, 0x31900682, 0x319b7920, 0x31827920, 0x4ccb5720, 0xb0867e90, 0x200c8f55, 0x09f17813, 0x17161522, 0x25056d4b, 0x26272635, - 0x4b180727, 0x8f60080f, 0x013b2105, 0x4605ae60, 0xc36306b4, 0x6135200a, 0xa363054e, 0x82012006, 0x02802f07, 0x01021616, 0x30422a2b, 0x16020216, - 0x05834848, 0x2a423024, 0x1784012b, 0x36252428, 0x01242536, 0x2a83c001, 0x1b29a024, 0x0888011b, 0x2983d820, 0x30442825, 0x83220a30, 0x2503832a, - 0x30300a22, 0x17842844, 0x3d823584, 0xd75d2820, 0x0020220a, 0x0c2b4641, 0x82373621, 0x219c82bd, 0xd1180714, 0x27200ad3, 0x2721bb82, 0x05e44106, - 0x1d062723, 0x8de88301, 0x0a0d46d5, 0x84179f21, 0x120e21a6, 0x9d839583, 0x3101b927, 0x122b1a1f, 0x217e8314, 0xd68f012f, 0x220bee45, 0x8531287c, - 0x1b2023a9, 0xd887cd0e, 0xfe913628, 0x220e0457, 0xb9820106, 0x03250923, 0x30de8e03, 0x0f000100, 0xf001c3ff, 0x1c00c001, 0x32010000, 0x209d831f, - 0x05f25215, 0xdb460620, 0x37360805, 0x3f363734, 0x01333601, 0xbd060700, 0x010b0a11, 0x2e2f1212, 0x551b1a56, 0x12122f2e, 0x110a0b01, 0x010706bd, - 0x075003c0, 0x33140f0f, 0x42414545, 0x2b0c0c2b, 0x101a4142, 0x0320078e, 0x250bff57, 0x002f0022, 0xfc831300, 0x15070625, 0x82263521, 0x18232061, - 0x88098e57, 0x0515220a, 0x0aa67221, 0x52546020, 0x01c02405, 0x57140e0d, 0x3944065c, 0x60012306, 0x158340fe, 0x96540120, 0x20a02105, 0x0d376618, - 0x0e090922, 0x20079045, 0x426618a0, 0x7755180b, 0x0033240d, 0x82490040, 0x1d162dfb, 0x06071401, 0x2726012f, 0x17161523, 0x8e820d82, 0x37363728, - 0x06070635, 0x08822627, 0x8b5f0a82, 0x261b8305, 0x013f3633, 0x43031736, 0x262407d3, 0x03333527, 0x3a070849, 0x0c0cf401, 0x14a00e0c, 0x111d4105, - 0x1112e012, 0x0c1a381d, 0x12081314, 0x832a2021, 0x090e2991, 0x14054109, 0xd40c0ea0, 0x08914f18, 0x6770e021, 0x24080516, 0xb9010f01, 0x0f600f0a, - 0x2003090a, 0x0e231304, 0x90221b1a, 0x1a1b2290, 0x35121d0e, 0x140c0712, 0x0a1a1a26, 0x05b7441c, 0x04131827, 0xfe090320, 0x09d16067, 0x23050763, - 0x010f0f01, 0x022fdf83, 0xc0ff0000, 0xbf01ff01, 0x3f002d00, 0x84370000, 0x222323c2, 0xb7822627, 0x36333722, 0x3621cf84, 0x20e78217, 0x82df8207, - 0x06152303, 0xe782010f, 0x82013d21, 0x3727210e, 0x08100967, 0x0d1f9d2b, 0x6a070505, 0x0606070e, 0x52291535, 0x322a0304, 0x25313132, 0x03070512, - 0x3c1a1a04, 0x22010605, 0x0c0c0c59, 0x0d120f15, 0x0ba851e3, 0x0e1f3f25, 0x82140e12, 0x59220819, 0x05060122, 0x041a1a3c, 0x12050703, 0x32313125, - 0x04032a32, 0x35152952, 0x0e070606, 0x0505076b, 0xed51d90d, 0xaf48180b, 0x0029210c, 0x1b834a18, 0x78182720, 0x4a180ad3, 0xf12e1c7d, 0x0e0e1111, - 0x0e0e5757, 0x0e681111, 0x4a18680e, 0x79201876, 0x57212183, 0x202d8357, 0x7e2a8268, 0x1a210bf7, 0x188b8200, 0x211a734a, 0x2e190617, 0x4a180c43, - 0x8ab8186d, 0x180f1741, 0x201a634a, 0xb5fa1837, 0x5d4a180a, 0x54ef8e1c, 0xb48e1871, 0x18101741, 0x221a534a, 0x18372607, 0x18087d7a, 0x8e1c4d4a, - 0x494a188b, 0x338c8f19, 0xff000002, 0x014002c0, 0x001100c0, 0x01000068, 0x36313734, 0x24089057, 0x35262722, 0x05ba7317, 0x4905a547, 0xc01909e6, - 0x36211b6f, 0x0b206c37, 0x16170623, 0x06c6623f, 0xd24d3520, 0xebd41809, 0x61c0190d, 0x2d44362d, 0x1107022d, 0x380e0e11, 0x0e381111, 0x0711110e, - 0x291b1b01, 0x06624930, 0x7e010b21, 0x50220c8e, 0xd345341c, 0x1c342107, 0x1f52c019, 0x442d2d24, 0x51830706, 0x5c825682, 0x070e0e23, 0x203c8306, - 0x080258d0, 0x27054742, 0xc001c001, 0x44003000, 0x08cb4118, 0x2005bd48, 0x06d97506, 0x6b067e48, 0x1620083b, 0x25054571, 0x26272627, 0x22441323, - 0xb8431807, 0x013b2708, 0x161722e0, 0x9454f001, 0x089e5408, 0x28021034, 0x222c3d29, 0x05061222, 0x0c0d0c04, 0x130a060c, 0xe5861813, 0x2206284b, - 0x70800140, 0x1220056e, 0x0f4d4919, 0x293d3028, 0x16010228, 0x38832516, 0x04040526, 0x0d0c150c, 0x0d8e8f18, 0x2006c767, 0x28cb8200, 0x002c0011, - 0x0050003e, 0x07314462, 0x210b076c, 0x86180633, 0xcb181834, 0x1520116b, 0x4908006f, 0x372007c5, 0x20101057, 0x6a861801, 0x07b95608, 0x18183b43, - 0x6b09f75d, 0xb91807cb, 0xa4590f2b, 0x0851570c, 0x20070e57, 0x8ba21848, 0x01502116, 0x0e6d4718, 0xad184020, 0x90200fab, 0x85052f46, 0x00002b05, - 0x00080003, 0x00b80188, 0xd75c00f8, 0x18002005, 0x41113548, 0x26200527, 0x2005e25a, 0x20fe8237, 0x05f35c1f, 0x0b75c818, 0xde187820, 0x0f270839, - 0x10181810, 0x8fa0010f, 0x83682010, 0x20148b15, 0x8f108fc0, 0x8f38200f, 0x82002042, 0x25af8200, 0x7800e8ff, 0xaf889801, 0x31171624, 0xe6731716, - 0x20938307, 0x20118f35, 0xd1bd183f, 0x8f402011, 0x900f8f6c, 0x8f58207c, 0x18e1a18d, 0x2b08635a, 0xa001c001, 0x28001500, 0x4b003900, 0x18186f58, - 0x20097da4, 0x05684926, 0x85152721, 0x07062112, 0x76181087, 0x13611109, 0x02203014, 0x38384516, 0x02012121, 0x02021616, 0x82553839, 0x41162405, - 0x83022b2a, 0x1d01250f, 0x02162c1e, 0x0caf6718, 0x2815d365, 0x01021668, 0x38382121, 0x223d8345, 0x82393855, 0x8260203d, 0x2a2b220a, 0x23058241, - 0x1d1e2c16, 0x78205e82, 0x450c4c42, 0x535d0573, 0x002a2105, 0x09556e18, 0x6348be85, 0x17162105, 0x25200183, 0x0741c918, 0x2005f677, 0x22521807, - 0x0cbc2a1a, 0x900c0d0c, 0x0c900b0b, 0x18a1470d, 0x0e076d33, 0x06070eb0, 0x0d075807, 0x0658080d, 0x00000006, 0x28038203, 0x01400200, 0x00270080, - 0x060d752c, 0xc5523120, 0x18172005, 0x2008f39d, 0x20938321, 0x07d94235, 0x21260884, 0x35211517, 0xc27f2321, 0x011d2a08, 0x23060714, 0x26272221, - 0x054f613d, 0x18075c4d, 0x8b09e75b, 0x40fe2b11, 0xfe400140, 0x090920c0, 0xca44010e, 0xc0fe2406, 0x5909090e, 0x50200500, 0x6207e250, 0x118d084a, - 0x83c06021, 0x9e45182b, 0x0dd7670a, 0x20099f63, 0x07ac5b16, 0x2005a363, 0x09336a17, 0x25141042, 0x02169058, 0x04841602, 0x2015eb41, 0x085771c8, - 0x00000135, 0x6001c0ff, 0x2d00c001, 0x22370000, 0x15063107, 0x54161714, 0x6b18051d, 0x26210aad, 0x5f471823, 0x1411250b, 0x012b0607, 0x2506c145, - 0x1b1b2960, 0xa5184901, 0xd78212bb, 0x19006021, 0x2209830a, 0x544a3301, 0x802005fb, 0x09686218, 0x0ecdfe24, 0xf75f0909, 0x63838705, 0x3b220887, - 0xf5821601, 0x75371121, 0x0620082b, 0x0c8aad18, 0x27341123, 0x5083a526, 0x01250767, 0xfe291b1b, 0x218491cd, 0x84833301, 0x7b410020, 0x08f77b0d, - 0x250a884c, 0x27262726, 0x82180521, 0x7f410d9a, 0x11012114, 0x0d968218, 0x21158441, 0x821880b1, 0x5d180d92, 0x15220aff, 0x5f182200, 0x053019e1, - 0x14151617, 0x3727010f, 0x17323336, 0x07173707, 0x2305ba4b, 0x3736013f, 0x06388d95, 0x150c0c0e, 0x0f0d1547, 0x69ce0d10, 0x09066947, 0x0606093c, - 0x06020f02, 0x6c259795, 0x10100c0e, 0x2230820d, 0x83950c0c, 0x8429832e, 0x41002033, 0x2a280e23, 0x16010000, 0x17163117, 0x0a7f7418, 0x3637362b, - 0x06072137, 0x33171607, 0x05314907, 0x36171629, 0x27263537, 0x48800123, 0x012d1119, 0x0216e040, 0x875e1602, 0x11110e0e, 0x05944287, 0x95959820, - 0x1d837020, 0x11118726, 0x66870e0e, 0xa0213383, 0x095b6616, 0x01400227, 0x002a00bf, 0x188f8256, 0x200e8b88, 0x0809742b, 0x23070623, 0x06674522, - 0x18051979, 0x1808564f, 0x2308f958, 0x21171611, 0x7d05e54d, 0x07490565, 0x112f0808, 0x0e018001, 0x07900c0e, 0x0e0c9007, 0x0e20010e, 0x01171723, - 0x010c1003, 0x04021002, 0x18170b03, 0x02011515, 0x503d2928, 0x160180fe, 0x45102217, 0x10260525, 0x0f01010f, 0x6d182001, 0x2d080b48, 0x1722e0fe, - 0xa8010116, 0x0a05070f, 0x0a0a0788, 0x060b8807, 0x01480f07, 0x20231717, 0x110d0708, 0x10040101, 0x2f1e1e10, 0x0228293d, 0x66187848, 0xfe220b66, - 0x4d820fe0, 0x45845987, 0x01216982, 0x0dcb4e20, 0x2b001a24, 0xc1603d00, 0x0737271c, 0x3f262706, 0x02823601, 0x0f161724, 0x2a190601, 0x6d481425, - 0x91332817, 0x040a0a0f, 0x870d0538, 0x06255307, 0x4805e443, 0xbb2818fc, 0x0a0a0438, 0x050d910f, 0x45200787, 0x6d0c4646, 0x87180c63, 0xe9440843, - 0x18691805, 0x27212208, 0x05a87b22, 0x84163321, 0x164e42b7, 0x080aa030, 0x07060a68, 0x070fd00f, 0x08680a06, 0x4418200a, 0x44180994, 0x802c09a8, - 0x0f0b7008, 0x0d01010d, 0x08700b0f, 0x820ed342, 0x1813207f, 0x25141545, 0x011f3217, 0xac530716, 0x013f2305, 0x6a433336, 0x427e8f14, 0x7f9e15ca, - 0x1091e218, 0x3637362a, 0x14071137, 0x2706010f, 0x08529318, 0x68011521, 0x644b057d, 0x05ad4608, 0x60185a8c, 0xfe2009c4, 0xa38f268a, 0x086f4118, - 0x00a0012d, 0x37000059, 0x30311514, 0x18141531, 0x230a989a, 0x17161716, 0x2009f14c, 0x89848226, 0x3d34230d, 0x0e4d3401, 0x6a45180a, 0x057b430b, - 0x20096a4d, 0x06bd4230, 0x36181c25, 0x42184836, 0x18250502, 0x1423232c, 0x200b857e, 0x06aa4a90, 0x23147e24, 0x1f872c23, 0x36364823, 0x06f25018, - 0x04d01026, 0x04041004, 0x21066c42, 0xbc682827, 0x16152207, 0x8a138524, 0x1624221e, 0x211e8715, 0xfc482728, 0x01002706, 0xe0ff2000, 0xe7826001, - 0x0000432d, 0x31373613, 0x1f323736, 0x82371601, 0x262724b4, 0x5a26012f, 0xb08905f7, 0x0f141524, 0xfb820601, 0x4f562120, 0x36352208, 0xbc80183d, - 0x9035360a, 0x1b121201, 0x0d510a0b, 0x03050c0b, 0x510d0605, 0x24361514, 0x47751825, 0x0e102607, 0x0a08091d, 0x074a1812, 0x17c72107, 0x29063d6a, - 0x1b200170, 0x03011212, 0x3282041b, 0x04263a82, 0x2501071b, 0xa5863624, 0x171a2d24, 0xbd181032, 0x2622092b, 0xdc852d2c, 0x46004021, 0x24240a1f, - 0x8b003000, 0x08b54818, 0x6607a14c, 0xca8305aa, 0x1415232c, 0x22230607, 0x023d2627, 0x52563317, 0x15232507, 0x14170605, 0x3320cf82, 0x29059449, - 0x07060716, 0x01392706, 0x01822726, 0x26312323, 0x20088423, 0x822e8237, 0x30312123, 0x0db56518, 0x26852f20, 0x42181d86, 0x5145087a, 0x06072305, - 0xdb190015, 0x2e082893, 0x04010101, 0x0d011c0a, 0x0f0d0f0f, 0x08040808, 0x0f272224, 0x0107080f, 0x02010201, 0x05050c02, 0x0c0c0504, 0x0105030d, - 0x060d0707, 0x82070a17, 0x03012615, 0x1a031b0a, 0x082d821c, 0x2209032e, 0x0b062723, 0x060c070c, 0x0b050306, 0x09050d0b, 0x0b160509, 0x0e800109, - 0x28020909, 0x232d3d29, 0x0d801222, 0x04060b0c, 0x8c0c0505, 0x97821583, 0xc0e0a022, 0x3807264d, 0x010910a0, 0x09080302, 0x0a070704, 0x1814150c, - 0x070f122b, 0x03030504, 0x27008201, 0x0d0b0c05, 0x0505050d, 0x7f828883, 0x06034108, 0x03090a03, 0x09080402, 0x0b130701, 0x2b171414, 0x01071110, - 0x04030203, 0x0d0d0c0b, 0x01030506, 0x03010203, 0x00070507, 0xff000001, 0x013f01e0, 0x0049009f, 0x27261300, 0x06072631, 0x011f0607, 0x8a0a4942, - 0x6784180a, 0x0a404312, 0x27363724, 0x3f822726, 0x27010f2d, 0x0c0d083b, 0x03020b0c, 0x43345f07, 0x50210520, 0x42078650, 0x0d870511, 0x342d0786, - 0x0203075f, 0x0d0c0c0b, 0x01656508, 0x83378392, 0x858e203f, 0x8520202b, 0x06a24a06, 0x86066a42, 0x838e2014, 0x223b8333, 0x45009898, 0x8026068b, - 0x3a00a001, 0x8f794600, 0x42c9aa08, 0x1721086d, 0x09126023, 0xb8826020, 0x55062e4a, 0x7c860791, 0x2106cf6d, 0x0f4f70a0, 0x284e1a07, 0x06eb7810, - 0xf5192f86, 0x20240d16, 0x3d292802, 0xe0213983, 0x07e141a0, 0x240afb7a, 0x003e00a0, 0x20c58242, 0x1695414a, 0x3316172a, 0x33013f36, 0x32171617, - 0xe4430682, 0x09824108, 0x26272330, 0x010f0627, 0x33172723, 0x013f2707, 0x07832317, 0x0c043e2a, 0x060d0d0b, 0x14320405, 0x2e058e41, 0x17083929, - 0x2e2a0717, 0x1717072a, 0x85293908, 0x32142114, 0x3707dd43, 0x072a4039, 0x2a071818, 0x1b4e3940, 0x076d100b, 0x1b600e07, 0x8a010b10, 0x20074d7c, - 0x059a4196, 0x0216aa25, 0x82a8a816, 0x85aa2004, 0x0d96240f, 0x83040c0b, 0xa8aa3e43, 0x17010117, 0x2eeaaaa8, 0x1c1c402e, 0x002e2e40, 0xff000002, - 0x018001c0, 0x001700c0, 0x25db821b, 0x36313736, 0xb74b3337, 0x0a8a4905, 0x35230529, 0x12010017, 0x18a01b12, 0x230d4df2, 0x80808001, 0x20058c49, - 0x20ab8280, 0x08dd6efe, 0x40800125, 0x82008080, 0x8c052000, 0x0026245f, 0x4e3c0031, 0x232b12c5, 0x3d262722, 0x15332301, 0x4c032733, 0x1520098f, - 0x2c470a94, 0x1b002409, 0x83011212, 0xc0a02577, 0xa0908080, 0x0998e018, 0xde6f0992, 0x83202010, 0x808023c8, 0xec7500ff, 0xcbb21910, 0xff27310e, - 0x010f02e0, 0x002200a0, 0x005e0042, 0x17000062, 0x44053c4c, 0x1f2405be, 0x37341101, 0x2005564c, 0x24118511, 0x010f1617, 0x05b45e37, 0x0b831620, - 0x2409b45e, 0x3f262726, 0x24ea8301, 0x1f161335, 0x05324502, 0x012f2628, 0x07060723, 0x1c832706, 0x37360234, 0x07273307, 0x0e0e0ab8, 0x0109580a, - 0x0c0b0901, 0xac420a0d, 0x0d0a2307, 0x13830b0c, 0x83885821, 0x091525b9, 0x334a0e07, 0x20051f42, 0x280c8880, 0x400a1360, 0x04040510, 0x2400820c, - 0x07580707, 0x2f078207, 0x0504040c, 0x130a4010, 0x14142814, 0x600a0a16, 0x47835383, 0x2e012422, 0xfe223e85, 0x0f8324d2, 0x0d0c0a25, 0x8296600b, - 0x13012412, 0x42491013, 0x0a870538, 0x01200129, 0x0c208011, 0x83070c0c, 0x0e0e215c, 0x5b835383, 0x1180202b, 0x28289001, 0x04000000, 0x10274100, - 0xe84d1320, 0x16172705, 0x36371617, 0xc462013f, 0x11352107, 0x372c1185, 0x13012f36, 0x16311714, 0x0607013b, 0x2d0c1548, 0x26273637, 0x07222327, - 0x06131506, 0x1b83020f, 0x3c194084, 0x2f270842, 0x07272602, 0x41231737, 0x33252227, 0x09070e4a, 0x06bb4515, 0x27410c89, 0x1414241c, 0x41960128, - 0xfe210b28, 0x052841d2, 0x412e0121, 0x0a230728, 0x82ebfe60, 0x10492313, 0x1a481313, 0x410a8706, 0x05321f29, 0xe0ff0700, 0xa0014002, 0x36002200, - 0x5e004a00, 0x51427200, 0x6b172024, 0x3b230754, 0x4c173201, 0x35200665, 0x982013ba, 0x201d6342, 0x45f185a8, 0x0d850721, 0x86064356, 0x076d4506, - 0xe0201b85, 0x61420686, 0x68511820, 0x8650180c, 0x0573420d, 0x198c0585, 0x00000022, 0x280b3741, 0x00480035, 0x006e005b, 0x23614200, 0x20095e4a, - 0x05456322, 0x21473320, 0x4112ad0a, 0x2d411f33, 0x05344131, 0x20226d42, 0x181b414b, 0x8c0c2841, 0x0693430c, 0xa001082d, 0x48002500, 0x72005900, - 0x43010000, 0x904b0570, 0x07bb6209, 0x35012b22, 0x08356918, 0x3f320323, 0x083a4801, 0x0bbf8d18, 0x8c482720, 0x33162506, 0x22230625, 0x09264c18, - 0xa6431520, 0x1836200b, 0x25082240, 0x17161714, 0xb9826001, 0x85101021, 0x303021e8, 0x10200785, 0x0a831382, 0xe644c020, 0x0e0a251b, 0x07071e01, - 0x3a08dd4d, 0x07291101, 0x0b020208, 0x090c0d0b, 0x19011531, 0x19252519, 0x11110119, 0x8280011b, 0x0c935423, 0x2106a042, 0xec4460fe, 0x0c0d261a, - 0x730a600b, 0x08564103, 0x37091423, 0x835a8309, 0x1d422262, 0x835b8324, 0x161e2363, 0x47410917, 0x0022270a, 0x00590048, 0x97180073, 0x0624085f, - 0x012f2627, 0x099fb318, 0x2308c945, 0x17333601, 0x1813b864, 0x6409cba9, 0x132205b8, 0xb8733736, 0x2607230d, 0xe6183127, 0x1422097a, 0x1b46010f, - 0xa0012107, 0x201d2c41, 0x065341c0, 0x830f6a41, 0x115e210f, 0x8206a544, 0x07072523, 0x11111b29, 0x2c073f41, 0x0c093115, 0x020b0b0d, 0x01070802, - 0x0a2e41a0, 0x240ff244, 0x600b0c0d, 0x06df420a, 0x34416020, 0x06784108, 0x09d3fe22, 0x8206be48, 0x37032510, 0x1e161709, 0x22073f41, 0x83421d24, - 0x2064835c, 0x050f4a09, 0x01000225, 0x5f3400a0, 0x17220525, 0xe0831631, 0x1716332a, 0x07141716, 0x15160706, 0x09830585, 0x0729f782, 0x012f2223, - 0x023d2726, 0x05645036, 0x17363723, 0x054d5105, 0x0cd8e518, 0x01332f08, 0x0b0b1439, 0x15080204, 0x0d0e1490, 0x130c0d01, 0x110b0b0c, 0x011f0207, - 0x140e0d01, 0x26181e49, 0x2301012a, 0x020b2907, 0x14101004, 0xb84ae7fe, 0x055a4207, 0x839f0121, 0x280c2215, 0x2f2c8323, 0x020d0e13, 0x0d12130d, - 0x0e0b030d, 0x05050c22, 0x102c4f83, 0x26331d1a, 0x1d2e1930, 0x0b332106, 0x9f206883, 0x0dea6318, 0x8906e74a, 0x360524d7, 0x83363137, 0x36332ab8, - 0x34373637, 0x36272627, 0x83058535, 0x82262009, 0x2223210f, 0x1d24f683, 0x011f1602, 0x17290283, 0x33253716, 0x3d363732, 0x07824301, 0x14011d24, - 0xd7bd1617, 0xd6c01f20, 0x0001002e, 0x01c0ff20, 0x00c00160, 0x37000022, 0x210b0844, 0x717d2223, 0x013f2108, 0x08e09918, 0x55064067, 0x2d2013bf, - 0x095e4a18, 0x20113455, 0x20008200, 0x236b8801, 0x13000023, 0x7c08c96c, 0x3a4805bd, 0x05cf450b, 0xd7012f22, 0x19277818, 0x56b70121, 0x8d200a15, - 0x2006e641, 0x22778773, 0x82010000, 0x0220246f, 0x84600100, 0xe49318d7, 0x15062413, 0x18011f14, 0x20081a93, 0x20bc9b6d, 0x097b18a0, 0x82958b0d, - 0x826b8a66, 0x0f2d7ed7, 0x14f39318, 0xbc9bf720, 0x1a837b18, 0x28058742, 0x013f01c0, 0x001100c0, 0x0f641850, 0x19032013, 0x270f942c, 0x3b363736, - 0x16173201, 0x24058e52, 0x2f262706, 0xb79c1901, 0x013d2218, 0x091c66a0, 0x01010d39, 0x48140e0d, 0x04050812, 0x07222602, 0x0c0b0d0c, 0x35070303, - 0x19191910, 0x2b09be31, 0x0c0d0c0b, 0x02262207, 0x12080504, 0x20052441, 0x19068510, 0x2711ad1d, 0x0607e0fe, 0x0b397308, 0x4b834382, 0x0e195a28, - 0x190e0f0f, 0x40820b5a, 0x03030728, 0x0873390b, 0xd5450706, 0x18602006, 0x210dbf7b, 0xa75f01c0, 0x08775e05, 0x210a6b5c, 0xba500317, 0x45012008, - 0xf3910a99, 0x23202689, 0x2010df78, 0x19b38538, 0x1912463a, 0x78105a27, 0x271912e3, 0x3020082b, 0x6127db87, 0x0c0c0d16, 0x1961160d, 0x0810643c, - 0x03000025, 0xc0ff0000, 0xc0010002, 0x42003000, 0x00005400, 0x021f1601, 0x0f161716, 0x07161701, 0x06020f06, 0x822f0607, 0x262723c8, 0xe582022f, - 0x27013f28, 0x3f363726, 0x0e613602, 0x5d811806, 0x26332111, 0x3a0f4c7a, 0x02076a01, 0x04086c14, 0x3e3e0503, 0x08040305, 0x0702146c, 0x5a5a0808, - 0x8f080708, 0x82128217, 0x0a082117, 0x0f345718, 0x4b182020, 0x36250bee, 0x01012425, 0x20478abf, 0x205fa308, 0x9e5818ff, 0x6746840f, 0x0782074c, - 0xfa820020, 0xff000028, 0x017f01e0, 0x3d5900a0, 0x18312008, 0x220a616c, 0x67072627, 0x34200505, 0x08057153, 0x23262726, 0x33323fe0, 0x01011d1e, - 0x32331d1e, 0x083e5d3f, 0x0e0c0505, 0x31324a10, 0x28191802, 0x0c03020a, 0xa0010a09, 0x0bea8918, 0x093d0233, 0x03010a0a, 0x4b313202, 0x17282832, - 0x020a0c06, 0xe3681801, 0x00a02909, 0x00210014, 0x1300002c, 0x1335ec18, 0x4f211521, 0x172b0a1b, 0x36331716, 0x23272637, 0x18200706, 0x6b077592, - 0x595507b4, 0x0180220b, 0x08a34e0f, 0xbd65a020, 0x20068606, 0x05816f80, 0x12120128, 0x5000011b, 0x934e010f, 0x82002005, 0x42022000, 0x14240813, - 0x00007700, 0x18052359, 0x200a5269, 0x25ff8236, 0x31333607, 0x1a821f32, 0x36153029, 0x1732013b, 0x5a013f34, 0x072009e8, 0x314c9d82, 0x07142208, - 0x42278216, 0x2f2305ee, 0x68070601, 0x26210561, 0x1d7c1827, 0x2637210a, 0x21059948, 0x4b823734, 0x2f29d682, 0x34352601, 0x29000137, 0x01e9191b, - 0x0ad72e0c, 0x400a0d0d, 0x1a150101, 0x01161a70, 0x05b25b40, 0x09210f82, 0x075e4702, 0x03030f23, 0x05a45b40, 0x35253f22, 0x3522d083, 0x26863f25, - 0x0f030322, 0x02232587, 0x82010109, 0x05426926, 0x080c0422, 0x0c210082, 0x226b8304, 0x82090969, 0x0c01234e, 0x1f83020c, 0x12216d86, 0x058d4315, - 0x02202523, 0x23e91902, 0x0fef2809, 0xef0f0101, 0x853f2106, 0x0240246e, 0x85252002, 0x12152127, 0x3b835d82, 0x180f1758, 0x580aa166, 0x372b0a1c, - 0x36013f34, 0x15171617, 0x83060706, 0x570020f7, 0x202020f1, 0x08054618, 0x21089650, 0x1557c0fe, 0x0ddf6411, 0x55592c20, 0x0597751c, 0x6b373621, - 0xfa7909f3, 0x0f484319, 0x20183659, 0x0fc643a0, 0x13190020, 0x1f28081b, 0x1100c001, 0x67003200, 0x13716218, 0x4b360721, 0x072005f3, 0x8607516b, - 0x4523200f, 0x3f220666, 0x09822701, 0x07062325, 0x57011f06, 0x3b2205da, 0x9c193201, 0x1c8309c2, 0x22840f20, 0x27012b22, 0x2009894d, 0x0f4846e0, - 0x13473b08, 0x2f150a05, 0x02011c1c, 0x2e442d2d, 0x09152525, 0x0f0c1413, 0x3021191a, 0x0101201f, 0x8b211413, 0x0c0d0402, 0x0d0e1712, 0x12051703, - 0x01051711, 0x050a5e01, 0x0b0b0524, 0xfb52300d, 0x19132807, 0x1914140a, 0x473f0945, 0x4c2005f0, 0x2c116546, 0x14160997, 0x28281206, 0x2d2d4434, - 0x08ae8202, 0x0c142724, 0x101b1309, 0x1f200110, 0x1c1c2430, 0x110a470d, 0x10010b0a, 0x16741711, 0x0a010e0e, 0x05060c61, 0xa1531004, 0x44062507, - 0x300e0e18, 0x21055642, 0xff570000, 0x5757200a, 0xf65425ff, 0x58062009, 0x0f701109, 0x0a9d4e0a, 0x4b1f1358, 0x0e2206ea, 0x1c580903, 0x0412220d, - 0x05034171, 0x25587020, 0x0759521d, 0x1021d485, 0x0b2b580e, 0x55221d21, 0x20200cec, 0x2308f282, 0x00000400, 0x8002e0ff, 0x0600a001, 0x3b000d00, - 0x00004a00, 0x013f3217, 0x13331523, 0x012b2627, 0x35213315, 0x3605f658, 0x06072233, 0x1714031d, 0x15233316, 0x17161716, 0x36333533, 0x45322137, - 0x212408aa, 0x05232726, 0x3b058544, 0x3334013d, 0x15161732, 0x6b353e82, 0x6bde02e0, 0xe0023e35, 0x141000ff, 0x08010d0e, 0x0805fc69, 0x0d01082d, - 0x0810140e, 0x20011729, 0x222e2e35, 0x2e220a0a, 0xe0fe352e, 0x01082917, 0x100a0aa0, 0x0b0f0404, 0x4020200a, 0x40600160, 0x83606020, 0x0c30262c, - 0x9010110b, 0x203e8210, 0x34478330, 0x131f0160, 0x0e0e2c13, 0x1f13132c, 0x0f197401, 0x58040a0a, 0x5f398204, 0x21220c23, 0x97543300, 0x27262612, - 0x17212726, 0x28bc8227, 0x06071716, 0x17272623, 0x61b68437, 0xdf8205d3, 0x265f3220, 0x9a9a2915, 0x00011b05, 0x039a051b, 0x1d2e0082, 0x0e090989, - 0x090e00ff, 0x0d0a8909, 0xc75b0a0d, 0x64f02b15, 0x1a02021a, 0x01010264, 0xc35a591b, 0x597e2306, 0x13480606, 0x0013240a, 0x82460034, 0x060721a3, - 0x2f051570, 0x35373621, 0x2f363736, 0x010f2601, 0x23061523, 0x14821784, 0x22231182, 0x823d2231, 0x35232313, 0x03851523, 0x114a8a18, 0xe0f32a08, - 0x19060416, 0x90011602, 0x06190216, 0x0de01604, 0x0140730d, 0x05123001, 0xc0011708, 0x12050817, 0x40010130, 0x40304028, 0x10621828, 0xbd01340c, - 0x18180b60, 0x02160802, 0x02081602, 0x600b1818, 0x19dd0606, 0x200d896a, 0x4e0084c0, 0xd7180c25, 0x362d0b5b, 0x00004800, 0x05072201, 0x1f160706, - 0x067d6f01, 0x3d5bd382, 0x83272008, 0x08535ed6, 0x3316172d, 0x36253732, 0x25272637, 0x18032326, 0x08084b41, 0x06072733, 0x012f2223, 0x0c400107, - 0x0fe8fe0c, 0x3a0f0101, 0x13030119, 0x03050d0a, 0x07400803, 0x0a020506, 0x0109050c, 0x9d1e131b, 0x0d04070e, 0x9f0d139d, 0x2100820c, 0x2a831801, - 0x0ce8fe23, 0x086f670c, 0x8e0f3308, 0x10121211, 0xa0010f8f, 0x10076504, 0x27150710, 0x252c1c31, 0x08071213, 0x01100308, 0x42070403, 0x1914162a, - 0x0c17242e, 0x0e0d043e, 0x0e083d07, 0x2985043a, 0xfe046535, 0x16151c88, 0x15160101, 0x0633911c, 0x00913306, 0x82000500, 0x80022d00, 0x1b008001, - 0x32002000, 0x6b003600, 0x22071f44, 0x1821023b, 0x28080b53, 0x26022b21, 0x11272627, 0x22018321, 0x44272607, 0x3f260513, 0x16173301, 0xd6823637, - 0x37231730, 0x15171625, 0x1716013b, 0x07230706, 0xd7180706, 0x2a8408e4, 0x26272208, 0x3736013f, 0x36372627, 0x3615011f, 0x26012b37, 0x33373627, - 0x00373635, 0x1b121201, 0x011030c0, 0x07984600, 0x1000ff23, 0x05b15d30, 0x01402308, 0x8e00ff00, 0x050d0d05, 0x11100640, 0x094a0909, 0x06101109, - 0x26131240, 0x12200113, 0x12102c02, 0x02820202, 0x011a0d3f, 0x080f1202, 0x0713100b, 0x04121006, 0x10060911, 0x0c090904, 0x0e0e0c0c, 0x230b130f, - 0x23228248, 0x12023412, 0x09214618, 0x290bbb48, 0x000100ff, 0x01010b30, 0x3783900b, 0x10141434, 0x90110906, 0x452b2b39, 0x02041202, 0x05021212, - 0x1c821d24, 0x82100b21, 0x0504245f, 0x8301080c, 0x04022288, 0x825b8206, 0x1401225f, 0x25238319, 0x00021204, 0xf7480700, 0x00123108, 0x00380027, - 0x005c004a, 0x0080006e, 0x33151300, 0x0b20bd18, 0x0607062e, 0x1411010f, 0x013b1617, 0x35363732, 0x2505c963, 0x15060722, 0x15832105, 0x87213321, - 0x07232115, 0x6b072d55, 0x856908ca, 0x20239111, 0x10a96927, 0xc340802e, 0x1d13401d, 0x1bc31a13, 0x80011212, 0x230dc849, 0xa0fee001, 0xbf651182, - 0x06155507, 0x18058d45, 0x180ccd68, 0x430c6441, 0x01210c2b, 0x83bd1880, 0x12012508, 0xfe601b12, 0x8706d765, 0x18202053, 0x2008fab4, 0x53578200, - 0x548c0cf1, 0x00206e99, 0x07290082, 0xc0ff0000, 0xc0018001, 0x73bb1900, 0xf964180d, 0x08ad6b0c, 0x18331521, 0x2009a04e, 0xcf401817, 0x8140180b, - 0x29198c0c, 0x17163327, 0x23070615, 0x45822726, 0x338c198c, 0x08e24518, 0xdf666020, 0x057f7107, 0x140e0d25, 0x7f10e0fe, 0x20200aa2, 0x7f08cf7f, - 0xb0200a76, 0x40181594, 0x01210a68, 0x205683c0, 0x185384fe, 0x820af353, 0xe8b7195d, 0x89902026, 0x88102082, 0x8a202081, 0x4f002098, 0x43200d77, - 0x4e13c378, 0x33201787, 0x4e0d7a4f, 0xe0200a86, 0x0f226d18, 0x3a06c777, 0x0c0d0715, 0x03030b0c, 0x1e132807, 0x1e24241e, 0x0728131e, 0x0c0b0303, - 0x4b080c0c, 0x2020061a, 0x44091b65, 0xfe210702, 0x06334fc0, 0x8321c021, 0x8208203a, 0x1e3f222d, 0x25008211, 0x0c0c3f1e, 0x4083070d, 0x64422120, - 0x00602106, 0x05320082, 0xe0ff0000, 0xa001ff01, 0x23001100, 0x5a004800, 0xd5826c00, 0x31071622, 0x5a068b54, 0x072006e7, 0x36221191, 0x02833137, - 0x5f361721, 0x006905f0, 0x2f222605, 0x010f2601, 0x05e35b06, 0x25373426, 0x26312726, 0x16214286, 0x05694b07, 0x2729118e, 0x0a090ae3, 0x18181918, - 0x2b07870c, 0x03020e7f, 0x16161313, 0x02030e0f, 0x29080784, 0x23241b1f, 0x16162122, 0x24232221, 0x0d0e051b, 0x58111114, 0x11581717, 0x0e0d1411, - 0x13610105, 0x0f0e0203, 0x13131616, 0x07840302, 0x0a187026, 0x180b0b09, 0x51825382, 0x07820c20, 0x21630129, 0x07091c1b, 0x84211110, 0x10112b07, - 0x18196a21, 0x0a0a0c17, 0x07871909, 0x2746ca2c, 0x01100f26, 0x260f1001, 0x08824627, 0x04255982, 0x16060616, 0x826d8204, 0x0c762814, 0x19191817, - 0x870a0a09, 0x095d2807, 0x21211b1c, 0x84071110, 0x10112207, 0x05634b07, 0xff003f08, 0x010002c2, 0x001a00be, 0x0024001f, 0x1f361300, 0x16171601, - 0x0714011d, 0x06010f06, 0x2726012f, 0x34013d26, 0x013f3637, 0x37170717, 0x35371327, 0x15eb1507, 0x0b13c016, 0x130b0c0c, 0x098616c0, 0x15c01423, - 0x2f0082ae, 0x01a0a020, 0x440808ba, 0x15101008, 0x101015f2, 0x08230982, 0x87110744, 0x3e3c210c, 0xfe260082, 0x39bc398f, 0x434500bc, 0x01403c06, - 0x000600c0, 0x0030002b, 0x003c0037, 0x004a0043, 0x07170100, 0x17363727, 0x82221507, 0x15072281, 0x82918216, 0x3f16267d, 0x35373601, 0x22918226, - 0x84313023, 0x251d8307, 0x37350705, 0x30840715, 0x83011f21, 0x8237200a, 0x203e82c0, 0x08178317, 0x01071420, 0x51514e23, 0x9b03034e, 0x22600202, - 0x60210102, 0x72711716, 0x20601716, 0x60220201, 0x04820202, 0x83141421, 0x52002318, 0x2985ed52, 0x52521325, 0x830303f7, 0x6624080b, 0x0105524d, - 0x20201d8f, 0x2c01011d, 0x0f240170, 0x10237726, 0x310a0a2a, 0x2a0a0a31, 0x2677240f, 0x7001240f, 0x08210482, 0x331a8208, 0x20591f76, 0x1f1e285a, - 0x01011e1f, 0x602064cc, 0x0101cc24, 0xaa260d83, 0x5b206422, 0x6b410205, 0xff202805, 0x012002c8, 0x822200c0, 0x007125e5, 0x37361300, 0xe982db82, - 0x69411620, 0x013f2207, 0x056c4727, 0x82060721, 0x82262008, 0x173622f5, 0x26238231, 0x07061516, 0x4d230706, 0x3f2006f8, 0x4c05054e, 0x2f2705b0, - 0x36372601, 0x82272537, 0x22178205, 0x5116011f, 0x15200585, 0x21057346, 0x8c4f1617, 0x82262005, 0x3f343e4e, 0x341dcf01, 0x1b271d34, 0x030b0d0e, - 0x57160817, 0x0d01030f, 0x110a261d, 0x08110a11, 0x2f00820c, 0x12070303, 0x0d0c0bff, 0x010e1907, 0x60291b1b, 0x0c5f4b1a, 0x09090e3a, 0x03071805, - 0x93fe0c03, 0x03010d1d, 0x0816570f, 0x0c0c0317, 0x05331b0e, 0x0e1dd819, 0x320f2608, 0x012c9301, 0x103e2c01, 0x0f0a0907, 0x18031458, 0x090f1004, - 0x010e3c10, 0x0b1c0e01, 0x08060303, 0x1c0c0d0c, 0x354b82cf, 0x1b17280b, 0x011b1b29, 0x06061020, 0x1111400b, 0x07050a40, 0x4e82200f, 0x27080923, - 0x3187820c, 0x1008111f, 0x0417050f, 0x0b0f5715, 0x520f0809, 0x70590908, 0x22a08209, 0x6150171c, 0x08290c03, 0x47003500, 0x00005900, 0xbb0f1a13, - 0x52f51808, 0x05c85607, 0x57021d21, 0x2120099a, 0x2109a650, 0x26823402, 0x18341721, 0x180f60e0, 0x3811255d, 0x26011a87, 0xb616081a, 0x235f0816, - 0x1f18190a, 0x19181fb6, 0x0b12230a, 0x0601410b, 0x86c0fe21, 0x0b0b2308, 0x87585812, 0x11a7180b, 0x3516820a, 0x4b4b4b01, 0x14010114, 0x111d6550, - 0x1d111212, 0x10100765, 0x7d5a9014, 0x07855a06, 0x14903026, 0x5b071010, 0x3782f088, 0x210c3871, 0x83480400, 0x453f2008, 0x222e0805, 0x1d063107, - 0x30313001, 0x06070631, 0x0482010f, 0x7d48f282, 0x013d2106, 0x0b87f282, 0x27340229, 0x26012f26, 0x83272627, 0x8235202c, 0x012b2a0d, 0x1f163307, - 0x36372101, 0x11674837, 0x11bf5719, 0x9882c020, 0x17171d22, 0x0121fd8b, 0x32fd8940, 0x17170a23, 0x0e09091d, 0x16b61b80, 0xdafe1a08, 0x6916081a, - 0x01200c0a, 0x200d5448, 0x242a82c0, 0x11110220, 0x1a0a411c, 0x111c6525, 0x82200211, 0x01802676, 0x144b4b14, 0x06cf5701, 0x0c5b4218, 0x21052d41, - 0xeb6d0000, 0x01c02d05, 0x003200c0, 0x06071300, 0x33171615, 0x1520058b, 0x25099a64, 0x2f343736, 0x058a3301, 0x22232633, 0x0695d307, 0x49191502, - 0x21150207, 0x1602054b, 0x3a6485a8, 0x050215a9, 0x0215214b, 0x15194907, 0x05950602, 0x01050808, 0x0907a3ba, 0x83490215, 0x065a2104, 0xa0830982, - 0x1528cc84, 0x025a0609, 0x49070915, 0xa3200483, 0x20072b4d, 0x24938301, 0x00250012, 0x18a48238, 0x51095d6f, 0x0722074f, 0x14893736, 0x2005d450, - 0x8b068505, 0xc0012918, 0x5f3f4002, 0x02403f5f, 0x37220787, 0x0a871720, 0x46201727, 0xfe466363, 0x89078577, 0x70012217, 0x074b6b30, 0x87230888, - 0x8766120b, 0x12662714, 0x0101180b, 0x06858318, 0x56120b22, 0x56201887, 0x2c0c8f49, 0x001b0017, 0x0037002f, 0x00510048, 0x12934e68, 0x200a2b63, - 0x27451807, 0x82232008, 0x27262ed4, 0x3736013d, 0x26373617, 0x33152327, 0x08681837, 0x2726270c, 0x36331735, 0x1a833537, 0x56633720, 0x065d6305, - 0xc0523888, 0x053b4c08, 0x21075763, 0x0f1918c0, 0x9554084a, 0x16182a05, 0x08160202, 0x0f014808, 0x07c65118, 0x010f182b, 0x010f0820, 0x60080f01, - 0x20068330, 0x05964920, 0x79632f85, 0x73e02017, 0x2c840714, 0x0f50302a, 0x16025001, 0x40300216, 0x0d204182, 0x07586818, 0x70800f24, 0x11820f01, - 0x83806021, 0x8320204c, 0x20618404, 0x4f138240, 0x0120051b, 0x2007bb64, 0x1d2b4138, 0x37170322, 0x2d0b0d46, 0x012f2207, 0x26070607, 0x3726012f, - 0xfb961736, 0x1f1b9133, 0x06111007, 0x16081b1f, 0x06300414, 0x21071110, 0x24108321, 0x16140430, 0x23d79708, 0x5a59fffe, 0x0f2cc282, 0x0414595a, - 0x10a01608, 0x5f5f1001, 0x10250f82, 0x040816a0, 0x20b38e14, 0x20b39d34, 0x57b38207, 0xae8307fe, 0x57262721, 0xaf9705f4, 0x2424642c, 0x0a10130f, - 0x110b2f2f, 0x0b8b0f13, 0xfa2cab97, 0x0b113434, 0x4242130f, 0x110b0f13, 0xfb440b8b, 0x085b4105, 0xb5652f20, 0x1489421f, 0x2009d677, 0x0ae26c15, - 0xb5650020, 0x44782a0b, 0x01151620, 0x20161501, 0x05b16f2c, 0x02564420, 0x2c2c2105, 0xf020b297, 0x34832c83, 0x0216202c, 0x68381602, 0x08680216, - 0x35820c08, 0xb38e3820, 0x46002d22, 0x201d5d41, 0x10da4d03, 0x976d1720, 0x042b2805, 0x3f262722, 0x82333601, 0x6d37200e, 0xba8c0b9d, 0x2c0c794d, - 0x58050858, 0x0a040405, 0x30302858, 0x27088209, 0x09090530, 0x05300d05, 0x21182542, 0x774600ff, 0x80072d0c, 0x08090808, 0x08500808, 0x07461508, - 0x67100f44, 0x50220537, 0xd19d5b00, 0x43360721, 0x262206db, 0x0a941527, 0x1f212084, 0x5dde1801, 0x013f220a, 0x075e1817, 0x16064309, 0x034da020, - 0x27099309, 0x0e180706, 0x02180718, 0x2207b24c, 0x4d171702, 0xc6410929, 0x58302017, 0x402007e4, 0x48270890, 0x17010117, 0x4c080858, 0x082307be, - 0x18585808, 0x20082a5e, 0x0c4f6805, 0x48003524, 0x13415900, 0x1617261d, 0x15163117, 0x05ff5b14, 0x3736372d, 0x27343536, 0x37262726, 0x4b071736, - 0x2f210584, 0x05a34e01, 0x36373325, 0x8236011f, 0x0706222e, 0x831f8306, 0x0add5327, 0x220cfb41, 0x82111c02, 0x0d1c3500, 0x160b0609, 0x0c0d0d0c, - 0x09060c15, 0x0a0a5c0d, 0x2124070a, 0x2126cf83, 0x330a0724, 0x0a830b0c, 0x0a0c0b27, 0x09080809, 0x1708410a, 0x1d11e233, 0x1d23231d, 0x0c06111d, - 0x150d090d, 0x161a1a16, 0x08088215, 0x1f060c24, 0x0a800a05, 0x23070305, 0x0f300f01, 0x03072301, 0x120a0923, 0x0a121919, 0x080c0b09, 0x0c090c0d, - 0x0082000b, 0x0f410420, 0x1831200c, 0x74090343, 0x31460a6b, 0xc374190a, 0x27172c15, 0x33363735, 0x06151716, 0x42272207, 0xc0201604, 0x0d578419, - 0x2d2ded2a, 0x010b0403, 0x03040b01, 0xa750d997, 0x067c4e07, 0x1e6e602c, 0x01021e40, 0x010b680b, 0xab430002, 0x002a220e, 0x1dc54139, 0x1707032b, - 0x2f060716, 0x013f2601, 0x25098236, 0x0f161737, 0x0e450601, 0x1f672f1f, 0x110e0e1f, 0x0e0e3011, 0x0e111130, 0x0887700e, 0xb6981685, 0x1f1fdf22, - 0x33822e83, 0x11223082, 0x08872211, 0x00231685, 0x4a060000, 0x0a360817, 0x4e004300, 0x64005900, 0x00007600, 0x26070625, 0x33163727, 0x0f5c3732, - 0x056a4205, 0x0f222327, 0x06272601, 0x76571807, 0x011f2507, 0x17160706, 0x09be4d18, 0x36171622, 0x6a4ccd82, 0x36032306, 0x42823435, 0x0706172d, - 0x23260703, 0x36270722, 0x83171637, 0x2323823f, 0x17141506, 0x3d11607b, 0x3f306f01, 0x183a303f, 0x3a181d1d, 0x0202345b, 0x09090d34, 0x0a0d0d0a, - 0x5a5a430c, 0x6f5b0c43, 0x970d2005, 0x3a2d2917, 0x223a0d0d, 0x2e220101, 0x4a834085, 0x233ad129, 0x3a230101, 0x18920e0e, 0x200f5349, 0x83298323, - 0x8b5aa331, 0x215d8a72, 0x59820b01, 0xd1216184, 0x20b8883a, 0x0f0e5a35, 0x4a000021, 0x0225055f, 0x00b60100, 0x087b5035, 0x0ae4aa19, 0x2c702620, - 0x08427005, 0x57180620, 0x27210958, 0x28158636, 0x060603df, 0x26263c0d, 0x07517d01, 0x25260124, 0xec6f0d3d, 0x32512306, 0x8a180232, 0x02290b59, - 0x0d513232, 0x01040c0b, 0x230583a0, 0x42323113, 0x23072e7d, 0x13313242, 0x2505045a, 0x42190406, 0xd0745941, 0x4159240b, 0x82041942, 0x2caf8565, - 0x010002c1, 0x002200c0, 0x07160100, 0x08ac5f03, 0x35275a08, 0x36013f34, 0x020f2627, 0x012f0631, 0x37342726, 0x01173601, 0x400210f2, 0x0e0e0d03, - 0x1209287f, 0xa5050111, 0x06040502, 0x120f20b3, 0x10021255, 0x1012c001, 0x140bba01, 0x080f60fe, 0x4a340607, 0x12050410, 0xd4070860, 0x04040306, - 0x070d1da2, 0x13130923, 0x0900010b, 0x0c1f5e0b, 0x43003433, 0x27130000, 0x07060726, 0x33171615, 0x2f363736, 0x37481801, 0x2118820c, 0xc75b1706, - 0x18372008, 0x2009cd70, 0x23318217, 0x16011f14, 0x35323183, 0x224b2726, 0x010e0e0c, 0x116e1602, 0x1f0b0605, 0x08415236, 0x303e2b07, 0x080c0d0b, - 0x0b030208, 0x0441533f, 0x2f353f0b, 0x16b5232e, 0x11480702, 0x410e0e11, 0x75011602, 0x05060b22, 0x02166e11, 0x0c0e0e01, 0xc518361f, 0x2120099d, - 0x0b243c83, 0x2d080d0c, 0x0ceda918, 0x2314143e, 0x68160235, 0x0e48070a, 0x4111110e, 0x0002165e, 0x00000100, 0xc001e0ff, 0x5b00a001, 0x3425d582, - 0x3b363137, 0x08c65e02, 0x5e331521, 0x158909a3, 0x0a1f4c18, 0x200b6667, 0x08806d15, 0x3d2a1589, 0x27222301, 0x09003526, 0x93680e09, 0x67e02008, - 0x20a01339, 0x1d590120, 0x70702109, 0x210b904e, 0x0d8cb090, 0x0c7eba18, 0x0d83b020, 0x2020e383, 0x2920e386, 0xd86be382, 0x0950680a, 0xc0182320, - 0x725d091e, 0xc0372207, 0x067a6b40, 0xa25b2020, 0x2d44270d, 0x2d02022d, 0x7d1a442d, 0xfe201177, 0x60203086, 0x07277c18, 0x3205c344, 0x010002d0, - 0x002500b0, 0x00490037, 0x0081006f, 0x6e0000a6, 0x362506b8, 0x32333637, 0x0b396017, 0x06070627, 0x26272223, 0x21048327, 0xc94f3335, 0x90372010, - 0x32272311, 0x40983117, 0x23065c60, 0x22273336, 0x1806257c, 0x41086976, 0x738c0a06, 0x97833288, 0xf9820020, 0x14093729, 0x13191913, 0x49f70914, - 0xf7200549, 0x37200f87, 0x138c1019, 0x05822385, 0x32832020, 0x42972283, 0x85062b41, 0xd7492130, 0xd7200785, 0x57205c87, 0x57200f85, 0x20200f87, - 0x16210f82, 0x2000820d, 0x058c4116, 0x00420b8b, 0x22528c08, 0x920d0d50, 0x4237822b, 0x4d910c3e, 0x39822182, 0x00820020, 0x20091b43, 0x49a61835, - 0x27262112, 0x09a84218, 0x18061721, 0x21080a4b, 0x18832726, 0x60462720, 0x60012106, 0x220c3a60, 0x87281b5e, 0x1b28230f, 0x2c60015e, 0x820f840b, - 0x8be0201f, 0x06062314, 0x25891a2f, 0x062f1a23, 0x834e8c06, 0x7d228410, 0x47200d07, 0x8312e347, 0x05212b96, 0x06310706, 0x07272207, 0xd14e3617, - 0x21188308, 0xcb823534, 0x2009d065, 0x3f721837, 0x14317909, 0x0140012b, 0x181b1212, 0x11555511, 0x073c4a18, 0x51220783, 0x0e871c13, 0x51131c22, - 0x20085957, 0x09c579a0, 0x2009e761, 0x23298380, 0x0f2f2e0e, 0x52822688, 0x2d030423, 0x324d1813, 0x2d132309, 0x4f870403, 0x0805cf4d, 0x01000222, - 0x001800c0, 0x004b0035, 0x26270100, 0x020f2223, 0x1f141506, 0x36171602, 0x3736023f, 0x07012f26, 0x1805d168, 0x230fea87, 0x34353637, 0xfe841c82, - 0x07061526, 0x36352726, 0x08f0d818, 0xcb012708, 0x07070410, 0x072e1103, 0x03112e07, 0x10030807, 0x0101062e, 0x0a842e06, 0x020a0d0d, 0x3b582522, - 0x3b02023b, 0x0783583b, 0x09030c28, 0x2c7f5009, 0x39641d1e, 0x26272205, 0x058e4f3a, 0x2d8c0128, 0x112d0707, 0x47820803, 0x01072d23, 0x820b8301, - 0x35112549, 0x0c030909, 0x07833c87, 0x03212522, 0x50255683, 0x1e1d0157, 0x223b852c, 0x8427263a, 0x0b97664d, 0x45002a2e, 0x00005500, 0x07222725, - 0x06010f06, 0x21059f6b, 0xb8822326, 0x3622b682, 0xca48012f, 0x013f2905, 0x06071716, 0x011f1617, 0x36202482, 0x18480f1a, 0x82261321, 0x821f2042, - 0x3633232b, 0x3c82013f, 0xa1012c08, 0x06070847, 0x1a171202, 0x0212171a, 0x47080706, 0x073d041b, 0x1b030302, 0x06373020, 0x37060808, 0x031b2030, - 0x3d070203, 0x7ca11b04, 0x2d081756, 0x300e0e0e, 0x0613040d, 0x06103c10, 0x300d0413, 0x04050558, 0x06064608, 0x05040846, 0x26352905, 0x08070804, - 0x2e132742, 0x132e0505, 0x0c824227, 0x34270424, 0x92189829, 0x012a1763, 0x23090946, 0x1038100b, 0x04820101, 0x00230b24, 0xfb490d00, 0x00bf2806, - 0x0027001a, 0x19410034, 0x2b08972a, 0x008f0082, 0x00a9009c, 0x010000b6, 0x2205a94a, 0x19170726, 0x2308481c, 0x16173637, 0x05200d83, 0x4d0b3d5b, - 0x152605a4, 0x26230706, 0x165b3527, 0x1a5c180b, 0x20199919, 0x0c645b37, 0x18197e5b, 0x8c0c005c, 0xd901348e, 0x164a1b10, 0x54540501, 0x4a160105, - 0x0c22101b, 0x82584611, 0x11462500, 0x47fe230b, 0x2013fa4d, 0x097f5b40, 0x1f892020, 0xc15b15a0, 0x062a520a, 0x1a010f21, 0x200c9000, 0x21578910, - 0x6b18d0fe, 0x033b0a53, 0x0a1c0815, 0x1a1a2b16, 0x1c0a162b, 0x15381609, 0x15143f12, 0x123e1515, 0x4e533815, 0xc0200973, 0x70200a89, 0x50209589, - 0x14105c18, 0xea5b1595, 0x8a418a0a, 0x89b02015, 0x24158a57, 0x05000000, 0x4f7f1800, 0x000c2d07, 0x00340020, 0x00470042, 0x32331300, 0x08044e18, - 0x11173322, 0x240cbd6e, 0x3736013f, 0x06066e3b, 0x098e8918, 0x33113522, 0x0ba8671a, 0x07352330, 0x33352315, 0x090e2080, 0x09096009, 0x0382400e, - 0x0b828020, 0x05151b2d, 0x641a0508, 0x07061ae4, 0x861b1505, 0x64642114, 0x25062556, 0x40402060, 0x4e18a001, 0x485e07b9, 0x353b2f08, 0x3c28232d, - 0x1a02021a, 0x2d23283c, 0xd1463b35, 0x40012105, 0x24069267, 0xa0402020, 0x05d744a0, 0x01800129, 0x000c00c0, 0x79400019, 0x332608bd, 0x26273435, - 0x06573323, 0x180c8505, 0x2508f454, 0x17161533, 0xf9551716, 0x37362409, 0x18353736, 0x200842c1, 0x062d7060, 0x0786c020, 0x19070151, 0x2309f142, - 0x01242338, 0xfe238c85, 0x82c001c0, 0x08eb6bb7, 0x42193b83, 0x0c2313c7, 0x493b2b2b, 0x00200605, 0x0b87e018, 0x3000232e, 0x46003b00, 0x5c005100, - 0x36130000, 0x08fbc818, 0x770ab569, 0x162508b5, 0x11373617, 0x05324b17, 0x0938691a, 0x26373627, 0x07062327, 0x08db6933, 0x88010f21, 0x25158a0a, - 0x12016007, 0x2b191b12, 0x90200a31, 0x0b684118, 0x40010f27, 0x16f01602, 0x24048402, 0x0f600f01, 0x20048401, 0x7f0a9fa0, 0x1622106c, 0x097e2217, - 0xf0fe2107, 0x01234583, 0x83501830, 0x20048457, 0x074251b8, 0x08fc2a19, 0xc345108f, 0x02e03005, 0x00a00180, 0x003e0021, 0x37000050, 0x49313736, - 0x7f1805e4, 0x272008e5, 0x20053a48, 0x06c14106, 0x17160523, 0x22258216, 0x82342736, 0x23262418, 0x4c060722, 0x15820741, 0x5b6c1720, 0x34363610, + 0x0000bc57, 0x00000000, 0xfc760600, 0x00000400, 0x00010037, 0x000a0000, 0x00030080, 0x2f534f20, 0x626b6132, 0x01000053, 0x08158228, 0x6d636028, + 0x77da7061, 0x0000de39, 0x00005817, 0x6c67e648, 0xc05f6679, 0x000017ba, 0x05001476, 0x6568a0af, 0x192a6461, 0x2b826c22, 0x0382ac20, 0x82683621, + 0x4d042310, 0x0b829f07, 0x0382e420, 0x6d682428, 0x11fe7874, 0x4f82980e, 0x00008830, 0x6f6cd015, 0x5e0f6163, 0x000030d2, 0x0f824060, 0x616dd428, + 0x8b057078, 0x1f828507, 0x2f820820, 0x6e202008, 0x48656d61, 0x0076de05, 0x00b42506, 0x70ed0300, 0x9774736f, 0x0044d73b, 0x00a42906, 0x83584d00, + 0x06032fab, 0xf82c0001, 0x0f5fe2b7, 0x0b00f53c, 0x00830002, 0xf0bae223, 0x27078777, 0xb5fff4ff, 0xcb018b02, 0x08220f82, 0x31830200, 0x012a0982, + 0xcb010000, 0x0000b5ff, 0x1f828002, 0x8b02f522, 0x1a821786, 0x05210285, 0x25118374, 0x83077405, 0x11841500, 0x11823182, 0x0e840583, 0x04260482, + 0x84030302, 0x49820500, 0x66014c22, 0x47210f82, 0x2a078501, 0x001900f5, 0x02000084, 0x82030900, 0x21028515, 0x07851001, 0x41290584, 0x004d5357, + 0xff210080, 0x828385ff, 0x824b209b, 0x82012018, 0x01002403, 0x82af0141, 0x00202c07, 0x00800100, 0x00800000, 0x82c00113, 0x0040230b, 0x0f82010a, + 0xff800123, 0x220f82fe, 0x82400110, 0x82002013, 0xff40240b, 0x824001fb, 0xff802207, 0x830784fc, 0x83038b17, 0x00c02233, 0x24378410, 0x02100040, + 0x83378200, 0x24238343, 0x01f9ff80, 0x870f8280, 0x8b67832f, 0x2017850f, 0x837f8420, 0x831f8317, 0x20078713, 0x83738240, 0x20978617, 0x20878502, + 0x236b84ff, 0x02fbff80, 0x03846b82, 0x02203382, 0x20200385, 0x20210782, 0x202f8202, 0x23838202, 0xfdff0002, 0x13831f88, 0x20004022, 0xf9201782, + 0x00210385, 0x83078400, 0x82002013, 0x833f830b, 0x22278353, 0x83140080, 0xc001231b, 0x03832100, 0x00000223, 0x8247840f, 0x200f8227, 0x20438910, + 0x824b85ff, 0x82138517, 0x85c020eb, 0x208f8603, 0x88db8400, 0x821b82cf, 0x8213835f, 0x014022a3, 0x878f8280, 0x840782c3, 0x82078b17, 0x2113821f, + 0x9b820220, 0x37820120, 0x1b820220, 0xff400224, 0x0b8601fa, 0x17870120, 0xeb820782, 0x2784f920, 0x840e3341, 0x882f822b, 0x858b8307, 0x830020e3, + 0x20178413, 0x84ff8200, 0x8307825b, 0x230b821b, 0xfeff8001, 0x03844f83, 0x13829386, 0x8402ff21, 0x1e00211b, 0x9b851b88, 0x47842020, 0x03004024, + 0x37820001, 0x01204f86, 0x02206b82, 0x07880b86, 0x84ff8021, 0x860220a7, 0x104b4167, 0x23831f8b, 0x4f824020, 0x9b820384, 0x37826b82, 0x3b860a20, + 0x53842020, 0x00214788, 0x216f8501, 0xb388f7ff, 0x20004023, 0x88038201, 0x203f8527, 0x893f8220, 0x215b8203, 0x5b83c001, 0x4b836782, 0x6341038f, + 0x8b01200a, 0xff00261b, 0x000002fb, 0x24038219, 0x00400200, 0x41c7821e, 0x0f82071b, 0x57844b85, 0x5f86c384, 0x8205a342, 0x82cb881f, 0xfaff210b, + 0x00248f82, 0xffff8001, 0x21065f41, 0x93820207, 0x8021e384, 0x06cb4200, 0x3f8f2f86, 0x1a820f83, 0x8f0c0343, 0x828020bf, 0x204f89a7, 0x86578600, + 0x201b8507, 0x05874301, 0xdb410020, 0x269f8506, 0x021a0080, 0x86fcff00, 0x85fe209b, 0xf9ff2163, 0x00200784, 0x80227482, 0x4b870200, 0xcf413f83, + 0x851b8508, 0x0040235f, 0x5343021b, 0x057b4107, 0x63831787, 0x1b820820, 0x4388fe20, 0xfdffc022, 0x02240b82, 0x1e00c001, 0x1e210782, 0x08f74102, + 0x8607ff41, 0x83778307, 0x0000221b, 0x889b843a, 0x20002527, 0x1d000002, 0xa7829f85, 0x0d004022, 0x0f410b84, 0x0040220b, 0x42ff8d22, 0x5b410af7, + 0x413b8b13, 0x3742058b, 0x201b8709, 0x8d438200, 0x20e38463, 0x44138301, 0x0f210537, 0x44078202, 0xc0200807, 0x84050344, 0x21738887, 0x0f8dffff, + 0x02010022, 0x43064345, 0x00200867, 0x00226786, 0xd790fcff, 0xd744a78d, 0x20138705, 0x87378200, 0x440020a3, 0x012705ff, 0x01ffff40, 0x880e0080, + 0x85ab855b, 0xffc022b7, 0x0d2341f9, 0xef420f86, 0x41002005, 0x402208ff, 0xdf431400, 0x44e78413, 0x10200dd7, 0x20204f82, 0x0c213782, 0x05af4202, + 0x20055f42, 0x43978600, 0x10200543, 0x01241b83, 0x010000c0, 0x02210382, 0x82078200, 0x073f432b, 0x1b871388, 0x01200782, 0x9b44b387, 0x43338208, + 0x4787066b, 0x0227078b, 0x01100000, 0x84f4ffc0, 0x4587864b, 0x4b8b0847, 0x83841b86, 0x63451782, 0x84af8608, 0xffc0220f, 0x230784f9, 0x02400040, + 0x8e0fdf44, 0x8383880f, 0x8403824b, 0x85bf8357, 0x8b102003, 0x0987443f, 0x02f9ff26, 0x02fbff00, 0x13848b82, 0xff215384, 0x260b86fe, 0x00000220, + 0x85400220, 0x223f841f, 0x82fcff40, 0x050f458f, 0xf3412b84, 0x05c7450a, 0x77841420, 0x0f478020, 0x82002006, 0x845b821f, 0x45c02013, 0x334105af, + 0x82738d07, 0x0bcf4527, 0x63418020, 0x89e38e06, 0x20b784c3, 0x820f88fa, 0x8002232f, 0x03821200, 0x8509d741, 0x410420f7, 0x0a200e9b, 0x01203382, + 0x73838f85, 0xa782bf8a, 0x83480120, 0x01fb2205, 0x227f8200, 0x84400000, 0x82138727, 0x820f8307, 0x84102003, 0x00c02317, 0x3382021b, 0x02200382, + 0x80240f84, 0xc0011000, 0x8409a343, 0x0040220b, 0x221b8420, 0x42fbffc0, 0xbb440ceb, 0x00002207, 0x209f8720, 0x820b8202, 0x82402003, 0x2113830f, + 0x53460120, 0x870f8805, 0x860120db, 0x215f8467, 0x0341ff00, 0x87538309, 0x84978257, 0x8307821f, 0x40022537, 0xc0011300, 0x8405a744, 0xff802417, + 0x82c000f9, 0x223387ab, 0x84270040, 0x008021a7, 0x44057348, 0x02210647, 0x48b78200, 0x3f4807db, 0x4002230a, 0x4784f9ff, 0x07821382, 0x80000823, + 0x08774100, 0x7b860220, 0x13830120, 0x8b831786, 0x1b822f84, 0x200e9742, 0x05df4200, 0x84fcff21, 0xff402323, 0x338201fe, 0x07847782, 0x9b830b84, + 0x07230385, 0x83004002, 0x82272003, 0x84af8407, 0x0080234b, 0x03820120, 0x37430220, 0x82438208, 0x88438747, 0x21ef8a17, 0x6f464001, 0x83138406, + 0x0547470b, 0x93824f86, 0x8f420f82, 0x0aa74307, 0x2b88bb8b, 0x2006ab42, 0x43079201, 0xe3840fb3, 0x1342c020, 0x0a334107, 0x9742bb85, 0x48478205, + 0x0120076f, 0x80200b83, 0x49096b41, 0x2021067b, 0x23b78401, 0x40020000, 0x07824b85, 0x00210b83, 0x832f8302, 0x21b38213, 0xcb47c001, 0x4800200a, + 0x9f420517, 0x226f8508, 0x42800100, 0x078305b3, 0x00000223, 0x83038260, 0x42102043, 0x002308ab, 0x82012000, 0x200f824b, 0x822b8420, 0x0f13462f, + 0x03835383, 0x27830220, 0x3b83038e, 0xff000123, 0x821b84ff, 0x20b7889b, 0x05e74180, 0x200c3341, 0x0da34ac0, 0x82400221, 0x0533447b, 0x8f841e20, + 0x8706db42, 0x8407876f, 0x00402327, 0xe2820210, 0x00200b82, 0x830b7341, 0x4a138a23, 0x4784054b, 0x88f7ff21, 0x820020c7, 0x276b8238, 0xf9ff8002, + 0x0c000002, 0x00206b88, 0xcf838f82, 0xef450020, 0x0040220a, 0x8cd38210, 0x135f4203, 0x1f431383, 0x09f74409, 0x23441782, 0x82002005, 0x84c02047, + 0x860020b3, 0x07df493f, 0xff230f82, 0x840002fd, 0x01fe2203, 0x06834740, 0x83820020, 0x13824020, 0x20228f85, 0xb3828001, 0x13820020, 0x4507a347, + 0x7b870e27, 0x20084742, 0x842f82c0, 0xfbff213b, 0x20079743, 0x860f8202, 0x8210200b, 0x83038807, 0x80022317, 0x2783f9ff, 0x57850220, 0x82010f21, + 0x0e4b413f, 0x00020024, 0x1f86f9ff, 0xe7420120, 0x865b8310, 0x22378233, 0x85400110, 0x410b83eb, 0x0922065f, 0x93828001, 0x41057b41, 0xb3910cb3, + 0x2b83e782, 0x0024af89, 0xffff4002, 0x1b828f88, 0xc020c784, 0x2009af41, 0x412b8202, 0x378b08df, 0x830bbf48, 0x008022bf, 0x20c78a02, 0x0e5b4a00, + 0x1b820b20, 0xc34dfe20, 0x061b4708, 0x53825b84, 0x220c7343, 0x860a0080, 0x8202203b, 0x83fe202f, 0xc001231b, 0x17411100, 0x2233840f, 0x84060080, + 0xff80262b, 0x004001f9, 0x452f820f, 0x9b8b054b, 0x01210b86, 0x06af49c0, 0xbb430f82, 0x46378208, 0x338808e7, 0x00202782, 0x8712bb4b, 0x82bb841f, + 0x4380201f, 0x0d21088b, 0x099f4101, 0x0b8e0020, 0xdb881020, 0x09000022, 0x82084b41, 0x820120f3, 0x207b8233, 0x07434a03, 0x17820f84, 0x1741c383, + 0xc001210f, 0x2008f341, 0x20438300, 0x208b8901, 0x08e34104, 0x93830020, 0x200c374a, 0x221b8400, 0x41070040, 0x27840c8b, 0x01ffff22, 0x4205ff42, + 0x0120082f, 0x01218f82, 0x069f4880, 0x42062341, 0x2383060b, 0x1f830f20, 0x43430220, 0x020c2409, 0x430c0000, 0x00200cf7, 0x57857b86, 0x3b840920, + 0x20066b42, 0x201b8202, 0x064b4901, 0xc3880783, 0x20056744, 0x07234f02, 0x00200784, 0xb74a1482, 0x4713840f, 0x0f8c0a63, 0x94f8ff21, 0x00002387, + 0xd3830100, 0x0b84e78b, 0x8c0eaf44, 0x11c7484b, 0x33850220, 0x9b89fe20, 0xcb825782, 0x01200f87, 0x0b826382, 0x00020222, 0x4206e746, 0x4b8e086f, + 0x2009f34e, 0x8bff8303, 0x210f824f, 0x538a0114, 0x2008474d, 0x05174480, 0x43c00121, 0x0782058f, 0x67820020, 0x4001fc22, 0x8505db50, 0x063b490f, + 0x8023c78f, 0x41020200, 0x6f420b7f, 0x09e74605, 0x03428f89, 0x00022308, 0x03821400, 0x830d4344, 0x059742ff, 0x7782fe20, 0x82098b4e, 0x430f8313, + 0xef83094b, 0x02feff22, 0x91068f46, 0x0a5f4947, 0x19004024, 0x2f474002, 0x090b4105, 0x82fcff21, 0x093b4faf, 0x430ecf42, 0x23840a57, 0x638c0f83, + 0x0f868f82, 0x4e0b7347, 0x002009bb, 0x40229f82, 0x3784f8ff, 0x1f22d385, 0x7384c001, 0xb3482382, 0x4b102008, 0x87520acf, 0x06d74205, 0x2b461782, + 0x203b8305, 0x05db4180, 0x00800123, 0x21ef8205, 0x138302fb, 0x0f820382, 0x40020022, 0x83063f44, 0x20278723, 0x832f82c0, 0x83c0201f, 0xf9ff2167, + 0x2006a34f, 0x0c7b440c, 0x210cbf41, 0x5384faff, 0xff211384, 0x206382fb, 0x842b87fe, 0x07ab4663, 0xcb4e5384, 0x20478a0e, 0x059b4201, 0xb3489382, + 0x021e2208, 0x200b8400, 0x0d7f49ff, 0x84fcff21, 0x12535293, 0x200a9753, 0x203387fe, 0x82578400, 0x202f8597, 0x20238207, 0x49578540, 0xcb460c87, + 0x82802005, 0x065b4bf3, 0x82800121, 0x2003831f, 0x863b83c0, 0x06a34ae3, 0x82053b46, 0x82238817, 0x483784a7, 0x022105df, 0x084b4d40, 0x41059f42, + 0xeb4c076f, 0x8202200e, 0x00022317, 0x33431000, 0x200f8607, 0x820f8400, 0x0933425b, 0x450c4b48, 0xdf500cb7, 0x82af8209, 0x820120eb, 0x857f8303, + 0xffff223b, 0x42738202, 0xff2209f7, 0x574b02f9, 0x85b38217, 0xfdff214b, 0x01200783, 0x0b847f8a, 0x00230f82, 0x82040000, 0x82032003, 0x82242003, + 0x250b8203, 0x0300a618, 0x0f840100, 0x0a00032e, 0xa6180000, 0x82180400, 0xaa050000, 0xb80d1c82, 0x00aa0109, 0x00250021, 0x0039002b, 0x0061005a, + 0x00630062, 0x00650064, 0x00670066, 0x00690068, 0x006b006a, 0x006d006c, 0x006f006e, 0x00710070, 0x00730072, 0x00750074, 0x00770076, 0x00790078, + 0x00a3007a, 0x00a900a5, 0x00ae00ab, 0x00bb00b6, 0x20f700d7, 0x201c2013, 0x2039201d, 0x20a4203a, 0x20a920a8, 0x20ac20aa, 0x20b820b4, 0x212221bd, + 0x21912190, 0x21932192, 0x21952194, 0x21ba2197, 0x22c421bb, 0x231e2212, 0x23042303, 0x2328231b, 0x232a2329, 0x2399232b, 0x23e923cf, 0x23ed23ea, + 0x23f123ee, 0x23f823f3, 0x23fb23f9, 0x25bd24fe, 0x25b625a0, 0x25d025cf, 0x26fc25fb, 0x26012600, 0x26042603, 0x26152611, 0x2620261d, 0x26232622, + 0x262a2625, 0x262e262c, 0x2638262f, 0x263f2639, 0x26422640, 0x265b265a, 0x265d265c, 0x265f265e, 0x26662665, 0x267a2672, 0x267e267b, 0x26812680, + 0x26832682, 0x26852684, 0x26962693, 0x269b2699, 0x26a126a0, 0x26a326a2, 0x26a526a4, 0x26a726a6, 0x26a926a8, 0x26ab26aa, 0x26bd26b2, 0x26c426be, + 0x26c626c5, 0x26e926df, 0x26f726ea, 0x27fd26fa, 0x27022700, 0x27052704, 0x270a2709, 0x270c270b, 0x2711270f, 0x27132712, 0x27152714, 0x271d2716, + 0x27312721, 0x27462744, 0x274e274c, 0x27542753, 0x27572755, 0x27952764, 0x29972796, 0x2b352934, 0x2b1b2b0d, 0x2b242b1c, 0xe006e050, 0xe012e00d, + 0xe076e041, 0xe098e086, 0xe0a9e09a, 0xe0b4e0ac, 0xe0bbe0b7, 0xe0d8e0cf, 0xe1e4e0df, 0xe13ce131, 0xe152e140, 0xe169e163, 0xe17be16d, 0xe18fe185, + 0xe1a8e19b, 0xe1bce1b0, 0xe1c8e1c4, 0xe1d5e1d3, 0xe1ede1d7, 0xe1f6e1f3, 0xe209e2fe, 0xe22de222, 0xe289e23d, 0xe2b7e29c, 0xe2c5e2bb, 0xe2cee2ca, + 0xe3ebe2e6, 0xe3afe31e, 0xe4f5e3b2, 0xe445e43c, 0xe46ce448, 0xe477e473, 0xe490e47b, 0xe4a5e494, 0xe4b0e4ad, 0xe4cce4b3, 0xe4e6e4de, 0xe4ede4eb, + 0xe503e5ee, 0xe52fe525, 0xe558e54f, 0xe574e56f, 0xe58fe587, 0xe59de59a, 0xe5aae5a1, 0xe6b4e5af, 0xe67ae678, 0xe68fe682, 0xf002f091, 0xf005f003, + 0xf00ef006, 0xf014f013, 0xf016f015, 0xf01af019, 0xf01cf01b, 0xf01ef01d, 0xf040f03e, 0xf045f044, 0xf04ef046, 0xf05cf05b, 0xf05ef05d, 0xf067f066, + 0xf069f068, 0xf07ef06e, 0xf086f080, 0xf088f087, 0xf08af089, 0xf08ef08b, 0xf095f091, 0xf097f096, 0xf09ef098, 0xf0a2f0a1, 0xf0b2f0ae, 0xf0d1f0ce, + 0xf0e0f0de, 0xf0e4f0e3, 0xf0e6f0e5, 0xf0f4f0ee, 0xf0f6f0f5, 0xf1fef0f7, 0xf108f107, 0xf10cf10b, 0xf111f10e, 0xf114f112, 0xf11cf115, 0xf11ef11d, + 0xf123f122, 0xf128f127, 0xf12af129, 0xf135f12e, 0xf13ef13a, 0xf147f146, 0xf154f14e, 0xf159f155, 0xf165f15e, 0xf183f178, 0xf18ef188, 0xf193f190, + 0xf196f195, 0xf199f197, 0xf1aef19d, 0xf1b1f1b0, 0xf1bbf1b3, 0xf1cef1c9, 0xf1d9f1d8, 0xf1dbf1da, 0xf1e6f1de, 0xf1f6f1ec, 0xf1f9f1f7, 0xf2fef1fa, + 0xf207f201, 0xf21ef20b, 0xf236f22d, 0xf249f239, 0xf24ef24a, 0xf25df250, 0xf277f26c, 0xf27af278, 0xf283f27b, 0xf28cf28b, 0xf28ef28d, 0xf292f291, + 0xf29af295, 0xf29ef29c, 0xf2a8f2a4, 0xf2b7f2b6, 0xf2baf2b9, 0xf2bcf2bb, 0xf2bef2bd, 0xf2c2f2c0, 0xf2cef2c3, 0xf2d4f2d3, 0xf2e5f2dc, 0xf2eaf2e7, + 0xf2f2f2ed, 0xf2f9f2f6, 0xf305f3fe, 0xf31cf30c, 0xf328f31e, 0xf338f332, 0xf35df35b, 0xf363f360, 0xf382f381, 0xf390f387, 0xf3bff3a5, 0xf3c5f3c1, + 0xf3cff3c9, 0xf3ddf3d1, 0xf3e5f3e0, 0xf3fbf3ed, 0xf4fff3fd, 0xf410f406, 0xf424f422, 0xf434f425, 0xf43af436, 0xf43ff43c, 0xf443f441, 0xf447f445, + 0xf44ef44b, 0xf453f450, 0xf45df458, 0xf462f45f, 0xf46df466, 0xf474f472, 0xf47df479, 0xf482f47f, 0xf48bf487, 0xf494f48e, 0xf49ef497, 0xf4adf4a1, + 0xf4baf4b3, 0xf4c2f4be, 0xf4c6f4c4, 0xf4d3f4ce, 0xf4dff4db, 0xf5e6f4e3, 0xf52bf509, 0xf530f52c, 0xf535f531, 0xf540f536, 0xf591f541, 0xf5a2f59d, + 0xf5b1f5a7, 0xf5b8f5b4, 0xf5c5f5bd, 0xf5cef5cb, 0xf5d7f5d2, 0xf5dcf5da, 0xf5e1f5df, 0xf5e7f5e4, 0xf5eef5eb, 0xf601f6fd, 0xf610f604, 0xf619f613, + 0xf621f61f, 0xf62af625, 0xf637f630, 0xf641f63c, 0xf647f644, 0xf64ff64a, 0xf655f651, 0xf65ef658, 0xf666f662, 0xf66df66b, 0xf674f66f, 0xf679f676, + 0xf67ff67c, 0xf689f684, 0xf69bf696, 0xf6a7f6a1, 0xf6adf6a9, 0xf6bbf6b7, 0xf6c0f6be, 0xf6c8f6c4, 0xf6d1f6cf, 0xf6d5f6d3, 0xf6d9f6d7, 0xf6e3f6de, + 0xf6e8f6e6, 0xf6f2f6ed, 0xf7fcf6fa, 0xf70cf700, 0xf715f70e, 0xf71ef717, 0xf729f722, 0xf72ff72b, 0xf740f73d, 0xf747f743, 0xf753f74d, 0xf75bf756, + 0xf769f75f, 0xf770f76c, 0xf77df773, 0xf784f781, 0xf78cf788, 0xf796f794, 0xf7a0f79c, 0xf7a6f7a2, 0xf7aef7ab, 0xf7baf7b6, 0xf7c0f7bd, 0xf7c5f7c2, + 0xf7cef7ca, 0xf7d2f7d0, 0xf7e6f7da, 0xf7eff7ec, 0xf7f5f7f3, 0xf8fbf7f7, 0xf807f802, 0xf80bf80a, 0xf80df80c, 0xf812f810, 0xf818f816, 0xf82af81d, + 0xf83ef82f, 0xf84cf84a, 0xf853f850, 0xf863f85e, 0xf879f86d, 0xf882f87d, 0xf891f887, 0xf8c1f897, 0xf8d7f8cc, 0xf8e5f8d9, 0xfffff8ef, 0x000000ff, + 0x00230021, 0x0030002a, 0xab05103c, 0x052c7c01, 0x12e00de0, 0x59e03fe0, 0x97e085e0, 0x2412ab45, 0xe131e1e3, 0x0cab4539, 0x8fe18424, 0xab459ae1, + 0x4521201a, 0xcd2010ab, 0x2008ab45, 0x06ab45b1, 0x6ce44728, 0x76e473e4, 0xab457ae4, 0xa82a0806, 0xb3e4afe4, 0xcee4b5e4, 0xe8e4e0e4, 0xeee4ede4, + 0x07e5efe4, 0x32e527e5, 0x5ae551e5, 0x76e571e5, 0x91e589e5, 0xa0e59ce5, 0xab45a9e5, 0xf0002a0e, 0xf004f003, 0xf007f006, 0x06ab4510, 0xab451720, + 0xf0212c0a, 0xf041f040, 0xf046f045, 0x4550f047, 0x602006ab, 0x2606ab45, 0xf070f06a, 0x4583f080, 0x8d240aab, 0x93f090f0, 0x3206ab45, 0xf0a0f09c, + 0xf0a3f0a2, 0xf0c0f0b0, 0xf0d6f0d0, 0x45e2f0e0, 0xe72206ab, 0xab45f0f0, 0xf1f82c06, 0xf108f100, 0xf10cf109, 0x4510f10d, 0x182a06ab, 0x1ef11df1, + 0x23f120f1, 0xab4524f1, 0x2b220806, 0x37f130f1, 0x40f13df1, 0x48f147f1, 0x55f150f1, 0x5bf156f1, 0x75f160f1, 0x85f182f1, 0x90f18ef1, 0xab4591f1, + 0xf19c2e08, 0xf1b0f1ab, 0xf1b2f1b1, 0xf1c0f1b8, 0x08ab45cd, 0xf1dc2e08, 0xf1eaf1e0, 0xf1f7f1f6, 0xf1faf1f8, 0xf200f2fb, 0xf20af204, 0xf221f217, + 0xf238f233, 0xf24af240, 0xf250f24d, 0xf26cf251, 0xf278f271, 0x0cab4579, 0xab459020, 0xf29d2608, 0xf2a7f2a0, 0x10ab45b4, 0xc3f2c12a, 0xd0f2c7f2, + 0xdbf2d4f2, 0x2a08ab45, 0xf2f5f2f1, 0xf3fef2f9, 0x4509f302, 0x373408ab, 0x5df358f3, 0x62f360f3, 0x82f381f3, 0x90f386f3, 0xbef3a5f3, 0x2006ab45, + 0x0aab45cd, 0xab45fa20, 0xf432240e, 0x4539f436, 0x5c3e16ab, 0x61f45ff4, 0x68f466f4, 0x74f470f4, 0x7df477f4, 0x81f47ef4, 0x8bf484f4, 0x90f48df4, + 0xab4596f4, 0xb83e0808, 0xc0f4bdf4, 0xc6f4c4f4, 0xd3f4cdf4, 0xdef4d6f4, 0xe6f4e2f4, 0x15f5faf4, 0x2df52cf5, 0x32f531f5, 0x37f536f5, 0x42f541f5, + 0x9ff593f5, 0xaaf5a4f5, 0xb6f5b3f5, 0xbff5baf5, 0xcdf5c7f5, 0xab45d0f5, 0x45de2006, 0xfc200aab, 0x280eab45, 0xf629f624, 0xf637f62e, 0x0cab453b, + 0x58f6532a, 0x62f65df6, 0x69f664f6, 0x2e08ab45, 0xf67bf678, 0xf681f67f, 0xf696f687, 0x45a0f698, 0xb62006ab, 0x2006ab45, 0x0eab45c3, 0xe2f6dd36, + 0xe8f6e6f6, 0xf0f6ecf6, 0xfcf6faf6, 0x0bf7fff6, 0x14f70ef7, 0x2606ab45, 0xf72bf728, 0x453bf72e, 0x500808ab, 0xf756f751, 0xf75ef75a, 0xf76bf769, + 0xf772f76f, 0xf780f77c, 0xf786f783, 0xf793f78c, 0xf79cf796, 0xf7a2f79f, 0xf7a9f7a4, 0xf7b5f7ad, 0xf7bdf7b9, 0xf7c2f7bf, 0xf7c9f7c4, 0xf7d0f7cc, + 0xf7d7f7d2, 0xf7ecf7e4, 0xf7f2f7ef, 0xf7f7f7f5, 0xf802f8fa, 0x08ab4505, 0x12f80f2a, 0x18f815f8, 0x27f81df8, 0x2a14ab45, 0xf881f87b, 0xf891f884, + 0x45c0f897, 0xff2a0dab, 0xffdfffe0, 0xffd7ffdb, 0x001000d5, 0x087a0100, 0x202b20c5, 0x1f212025, 0x1fde1ff5, 0x1fc01fd0, 0x1fb11fbf, 0x1fa81faf, + 0x00a31fa6, 0x1f871f00, 0x1f7e1f81, 0x1f2b1f32, 0x1f171f28, 0x1e021f07, 0x1ef21eff, 0x1ee11eea, 0x1ecb1ed7, 0x1eb91ec4, 0x1eaf1eb2, 0x1ea41ea5, + 0x1e8e1ea3, 0x1e871e89, 0x1e761e80, 0x1e551e5f, 0x1dfb1d46, 0x1dcf1de9, 0x1dc31dcc, 0x1dbd1dbf, 0x1da21da6, 0x1ce01c70, 0x1c9d1cdf, 0x1c4f1c57, + 0x1c2b1c4e, 0x1c231c25, 0x1c0d1c21, 0x1bfa1b0a, 0x1bf71bf8, 0x1bf41bf5, 0x1bf21bf3, 0x00f01bf1, 0x1bef1b00, 0x1beb1bec, 0x1be81be9, 0x1be61be7, + 0x1be41be5, 0x1be21be3, 0x1bd91be0, 0x1bd11bd5, 0x1b0d1b0e, 0x1afa1a06, 0x008b11f9, 0x828a1100, 0x11892203, 0x20058288, 0x21038287, 0x00820086, + 0x00841127, 0x11831100, 0x20058281, 0x240e827f, 0x117d1100, 0x2607847c, 0x0079117a, 0x82781100, 0x11772603, 0x11751176, 0x2a158473, 0x11000071, + 0x116f1170, 0x846d116e, 0x116b340f, 0x00671168, 0x11661100, 0x11581165, 0x11531157, 0x83511152, 0x22138219, 0x864d114e, 0x114a2209, 0x200f8249, + 0x22038248, 0x86461147, 0x00402613, 0x113f1100, 0x2005823e, 0x2003823d, 0x2803823c, 0x113a113b, 0x11371139, 0x220b8236, 0x82341135, 0x11332a05, + 0x11311132, 0x11191122, 0x3b358318, 0x0f111011, 0x0e110000, 0x0b110d11, 0xfd10fe10, 0xfc100000, 0xf410f810, 0xe810f110, 0xe7200b82, 0xe6260382, + 0xe210e510, 0x0982d910, 0x0382d820, 0xd610d730, 0xd210d410, 0xc510c710, 0xbf10c010, 0x1382b910, 0x0382b620, 0xa610b424, 0x0782a210, 0x5583a120, + 0x00911025, 0x82901000, 0x848e2003, 0x00862a0d, 0x10841000, 0x10811083, 0x20098276, 0x20038274, 0x20038273, 0x261b8472, 0x1000006f, 0x826a106b, + 0x10633a05, 0x105a105b, 0x10561058, 0x10511053, 0x104b104f, 0x10451048, 0x10351036, 0x281d822c, 0x0fff0f1e, 0x0ffc0ffe, 0x083583fb, 0x0fd90f27, + 0x0fbd0fd1, 0x0fa40fa5, 0x0f9e0fa1, 0x0f9a0f9b, 0x0f8d0f8f, 0x0f820f89, 0x0f000076, 0x0f6d0f73, 0x0f530f64, 0x080b8252, 0x440f452a, 0x410f420f, + 0x3e0f3f0f, 0x3c0f3d0f, 0x380f3b0f, 0x350f360f, 0x2f0f330f, 0x2b0f2c0f, 0x270f2a0f, 0x240f260f, 0x210f230f, 0x1d2e2d82, 0x1b0f1c0f, 0x170f180f, + 0x150f160f, 0x11820f0f, 0xfc0e013c, 0xf60ef80e, 0xf40ef50e, 0xed0ef30e, 0xe70ee90e, 0xe30ee50e, 0xcd0e0000, 0x0582c20e, 0x0382c120, 0x0382c020, + 0x0382bf20, 0x0ebe1109, 0x0ebc0ebd, 0x0eb90ebb, 0x0eb70eb8, 0x0eb50eb6, 0x0eb30eb4, 0x0eae0eb2, 0x0eab0eac, 0x0ea90eaa, 0x0ea50ea7, 0x0ea00ea2, + 0x0e900e93, 0x0e830e8e, 0x0e7c0e81, 0x0e760e77, 0x0e710e74, 0x0e680e6e, 0x0e610e65, 0x0e5d0e5f, 0x0e570e5b, 0x0e550e56, 0x0e4f0e53, 0x0e4b0e4c, + 0x0e480e49, 0x0e430e47, 0x0e410e42, 0x0e3e0e40, 0x0e3b0e3d, 0x0e2e0e2f, 0x0e250e2a, 0x0e210e24, 0x0e160e19, 0x0e130e14, 0x0e0e0e11, 0x0e070e08, + 0x0e050e06, 0x0e030e04, 0x0dfd0d00, 0x0dfa0dfb, 0x0df50df7, 0x0ded0dee, 0x0de10deb, 0x0ddb0de0, 0x0dd40dda, 0x0dcc0dd1, 0x0dc90dcb, 0x0dbc0dbe, + 0x0db70dba, 0x0daf0db2, 0x0daa0dad, 0x0d9f0da8, 0x0d9c0d9e, 0x0d930d9b, 0x0d900d91, 0x0d8c0d8f, 0x0d850d86, 0x0d7e0d80, 0x0d7c0d7d, 0x0d790d7a, + 0x0d710d73, 0x0d6e0d6f, 0x0d6c0d6d, 0x0d680d69, 0x0d660d67, 0x0d590d62, 0x0d520d54, 0x0d4f0d50, 0x0d4c0d4e, 0x00440d46, 0x3b080084, 0x3e0d3f0d, + 0x3b0d3d0d, 0x360d3a0d, 0x290d2d0d, 0x100d1b0d, 0x0c0d0f0d, 0x000d0a0d, 0xf30cfc0c, 0xe70ce80c, 0xe30ce40c, 0xd50cda0c, 0xa30cad0c, 0x980c990c, + 0x830c0000, 0x0100740c, 0x04844084, 0xb1b60521, 0x46063501, 0x66064806, 0x8e061e06, 0x1a065a06, 0xe606b405, 0x1c06e605, 0x103e0182, 0x40061006, + 0x2e062a06, 0x20064a06, 0x0a07fa06, 0x68062206, 0xc405c205, 0xc205c005, 0x01828406, 0xd8058c23, 0x23038305, 0x05b606b6, 0x423a3583, 0x9805ec05, + 0xaa069805, 0x8e057c05, 0x7e058805, 0x78058605, 0x2c065606, 0x01827805, 0xf0055c28, 0xa0057806, 0x43826a05, 0x27826020, 0xde05962a, 0xb2068e05, + 0xbe05a606, 0x822c0382, 0xa2069a06, 0x7a069c06, 0x7c068206, 0x82240182, 0x9c057406, 0xd2265f82, 0x3406d205, 0x01823806, 0x89822c20, 0x0c052e2c, + 0xae05be05, 0xaa05ac05, 0x17844206, 0x2c063434, 0x2c062806, 0xc2057405, 0x3606fc04, 0x46052c05, 0x0184a805, 0xa6059e22, 0xa4264182, 0x5205a405, + 0x77825005, 0xe8057e24, 0x43824406, 0x1e05342e, 0xf2052206, 0x20063606, 0x0e05fc05, 0x0a265182, 0x0c053c05, 0xad821606, 0xaa05862a, 0xec05f005, + 0xaa04ac04, 0xa8260182, 0xf605ee05, 0xe3825404, 0x9c048a32, 0x54048405, 0x3e045204, 0x88043c04, 0xc2044204, 0x92208782, 0x7e29e582, 0x9e05a005, + 0x7604f004, 0x21009800, 0x1a98d205, 0x032118e0, 0x2562a9da, 0x00000804, 0x2f83ae03, 0x00a00425, 0x82380400, 0x04a22203, 0x200582a6, 0x2613841a, + 0x04000090, 0x83120416, 0xb603230b, 0x0784b603, 0x00003a24, 0x09833403, 0x04230383, 0x820a040a, 0x836a200f, 0x2303830b, 0x7203b403, 0x00230783, + 0x85ba0300, 0x25058707, 0x86039204, 0x0d838a03, 0x03340425, 0x84dc03d2, 0x82402009, 0x84a82027, 0x033c2309, 0x4582036a, 0x83320321, 0x6403240d, + 0x82020000, 0xc40221c5, 0x03850d83, 0x02203b85, 0x11858384, 0x03000025, 0x83f603fa, 0x5203210b, 0x03850583, 0x85d40321, 0x24178407, 0x0300007a, + 0x83098348, 0x21998303, 0x09838602, 0x0320038d, 0x7c202583, 0x03271385, 0x03000080, 0x82e602c8, 0x82782005, 0x82762003, 0x02422287, 0x20058244, + 0x231f85bc, 0x66030000, 0x64200382, 0x62200382, 0x60220382, 0x05827402, 0x1b835c20, 0x41860320, 0x03910b83, 0x89600221, 0x9c022313, 0x0d899c02, + 0x61830991, 0x02201587, 0x0d87df84, 0x0220079f, 0x3f88eb88, 0x0987f820, 0x8385078f, 0x00700125, 0x826e0100, 0x82662003, 0x8fc78403, 0xfe0f4027, + 0x8a009e24, 0x03419a00, 0x43012033, 0xcb090723, 0x00020001, 0x00040003, 0x00060005, 0x00120011, 0x00140013, 0x00160015, 0x00180017, 0x001a0019, + 0x001c001b, 0x001e001d, 0x0020001f, 0x00220021, 0x00240023, 0x00260025, 0x00280027, 0x002a0029, 0x002c002b, 0x002e002d, 0x008f002f, 0x018e019e, + 0x0190018f, 0x01960195, 0x019b0199, 0x01a1019c, 0x01af01a5, 0x01b101b0, 0x01c601c1, 0x01c801c7, 0x01ca01c9, 0x01cc01cb, 0x01cf01ce, 0x01d301d0, + 0x01d501d4, 0x01da01d9, 0x01dc01db, 0x01e701e0, 0x01f101eb, 0x01f901f2, 0x020502fa, 0x021a020c, 0x0220021c, 0x02320228, 0x02350233, 0x023b023a, + 0x0240023c, 0x02480242, 0x024a0249, 0x024e024d, 0x0250024f, 0x02550254, 0x02590257, 0x0274025c, 0x027c027a, 0x0282027f, 0x02880287, 0x028a0289, + 0x028c028b, 0x028e028d, 0x02960295, 0x029e029d, 0x02ab02a4, 0x02c002b0, 0x02c802c3, 0x02d102cf, 0x02e002dd, 0x02e702e6, 0x02e902e8, 0x02eb02ea, + 0x02ed02ec, 0x02ef02ee, 0x03f102f0, 0x03040302, 0x03080307, 0x030f030a, 0x03110310, 0x031a0312, 0x031d031c, 0x032c032a, 0x032e032d, 0x0331032f, + 0x033f033d, 0x03410340, 0x03450343, 0x0355034b, 0x03570356, 0x03590358, 0x035c035a, 0x03630361, 0x036e0364, 0x03780374, 0x037e037c, 0x0380037f, + 0x03820381, 0x038e0388, 0x03ae039b, 0x03e503df, 0x03e703e6, 0x03e903e8, 0x03eb03ea, 0x04f403f0, 0x04650418, 0x04840466, 0x049b0499, 0x04a904a3, + 0x04b504aa, 0x04c704bc, 0x04cb04c8, 0x04d104ce, 0x04de04d5, 0x04ef04e7, 0x050205fb, 0x05290511, 0x0532052b, 0x05390537, 0x000c003c, 0x30210082, + 0x82048240, 0x04042102, 0x21200482, 0x01200386, 0x23200782, 0x25200382, 0x02240382, 0x2a000000, 0x2b200382, 0x05200382, 0x30200382, 0x39200382, + 0x07200382, 0x3c200382, 0x5a200382, 0x11200382, 0x61200382, 0x16200386, 0x62200782, 0x17200386, 0x63200782, 0x18200386, 0x64200782, 0x19200386, + 0x65200782, 0x1a200386, 0x66200782, 0x1b200386, 0x67200782, 0x1c200386, 0x68200782, 0x1d200386, 0x69200782, 0x1e200386, 0x6a200782, 0x1f200386, + 0x6b200782, 0x20200386, 0x6c200782, 0x21200386, 0x6d200782, 0x22200386, 0x6e200782, 0x23200386, 0x6f200782, 0x24200386, 0x70200782, 0xe7830386, + 0x0b827120, 0x26200383, 0x72200782, 0x27200386, 0x73200782, 0x28200386, 0x74200782, 0x29200386, 0x75200782, 0x2a200386, 0x76200782, 0x2b200386, + 0x77200782, 0x2c200386, 0x78200782, 0x2d200386, 0x79200782, 0x2e200386, 0x7a200782, 0x2f200386, 0xa3200782, 0x02210385, 0x20078288, 0x210385a5, + 0x07828a02, 0x0385a920, 0x82d10221, 0x85ab2007, 0x49022103, 0xae200782, 0x03210385, 0x20078211, 0x210385b6, 0x0782c302, 0x0385bb20, 0x824a0221, + 0x85d72007, 0x96012103, 0xf7200782, 0x03250385, 0x200000eb, 0x21038513, 0x0782e001, 0x03851c20, 0x82540221, 0x851d2007, 0x55022103, 0x39200782, + 0x02210385, 0x2007824d, 0x2103853a, 0x07824e02, 0x0385a420, 0x07830220, 0x0b82a820, 0x02210382, 0x20078289, 0x210385a9, 0x07828c02, 0x0385aa20, + 0x82dd0221, 0x85ac2007, 0x87022103, 0xb4200782, 0x04210385, 0x200782e7, 0x200385b8, 0x20678305, 0x820b82bd, 0x8b022503, 0x22210000, 0x03210385, + 0x20078210, 0x21038590, 0x0782d901, 0x03859120, 0x82db0121, 0x85922007, 0xda012103, 0x93200782, 0x01210385, 0x200782dc, 0x20038594, 0x21bf8203, + 0x0b829521, 0x03210382, 0x20078256, 0x21038597, 0x07825c03, 0x0385ba20, 0x82330221, 0x85bb2007, 0xa1012103, 0xc4200782, 0x02200385, 0x2224eb82, + 0x22000012, 0x01210382, 0x200782e0, 0x2503851e, 0x0000f403, 0x03850323, 0x824f0221, 0x85042007, 0x50022103, 0x1b200782, 0x03210385, 0x20078207, + 0x20038528, 0x216b8202, 0x0b822923, 0x01210382, 0x200782cf, 0x2103852a, 0x0782d001, 0x03852b20, 0x82180421, 0x85992007, 0xb0012103, 0x27830782, + 0x01210382, 0x200b82ce, 0x210385e9, 0x0782cb01, 0x0385ea20, 0x82c70121, 0x85ed2007, 0xcc012103, 0xee200782, 0x01210385, 0x200782c6, 0x210385f1, + 0x07824503, 0x0385f320, 0x82080321, 0x85f82007, 0xc9012103, 0xf9200782, 0x01210385, 0x200782ca, 0x200385fb, 0x207f8301, 0x820b82fe, 0x9e022503, + 0xbd240000, 0x03250385, 0x2500009b, 0x210385a0, 0x07822002, 0x0385b620, 0x82c80121, 0x20a38207, 0x21038225, 0x0b825702, 0x2520cf82, 0x01210382, + 0x820b82c1, 0x82252053, 0x202f8403, 0x820f82fc, 0x240b8303, 0x00000026, 0x21038226, 0x07829d02, 0x03850120, 0x821a0221, 0x85032007, 0x37052103, + 0x04200782, 0x05210385, 0x20078202, 0x21038511, 0x07827f02, 0x03851520, 0x82290521, 0x851d2007, 0x0c022103, 0x93820782, 0x03822620, 0x82ef0421, + 0x8522200b, 0x2b052103, 0x23200782, 0x05200385, 0x25204383, 0x03820b82, 0x82a30421, 0x852a2007, 0xc7042103, 0x2c200782, 0x04210385, 0x200782b5, + 0x2103852e, 0x0782bc04, 0x03852f20, 0x82ce0421, 0x85382007, 0xaa042103, 0x39200782, 0x02210385, 0x20078259, 0x2103853f, 0x0782e802, 0x03854020, + 0x82e60221, 0x85422007, 0xe7022103, 0x5a200782, 0x03210385, 0x2007827e, 0x2103855b, 0x07828103, 0x03855c20, 0x82820321, 0x855d2007, 0x7c032103, + 0x5e200782, 0x03200385, 0x5f20ef83, 0x03820b82, 0x82800321, 0x85652007, 0x8e012103, 0x66200782, 0x02210385, 0x200782e0, 0x21038572, 0x0782b002, + 0x03857a20, 0x7b200b84, 0x03820b82, 0x7e200b84, 0x03820b82, 0x82f40321, 0x824b8307, 0x83032003, 0x8287839b, 0xea032103, 0x82201782, 0x03210385, + 0x200782e9, 0x20038583, 0x20cb8303, 0x820b8284, 0xe5032103, 0x85200782, 0x03210385, 0x200782e8, 0x21038593, 0x07827402, 0x03859620, 0x82040321, + 0x85992007, 0x9b012103, 0x03860782, 0x3f820420, 0x82a02621, 0x2103820f, 0x0782e701, 0x0385a120, 0x82350221, 0x85a22007, 0xeb022103, 0xa3200782, + 0x02210385, 0x200782ec, 0x210385a4, 0x0782ed02, 0x0385a520, 0x82e90221, 0x85a62007, 0xee022103, 0xa7200782, 0x02210385, 0x200782ea, 0x210385a8, + 0x0782ef02, 0x0385a920, 0x82f00221, 0x85aa2007, 0x57022103, 0xab200782, 0x0b840385, 0x0b82b220, 0x02210382, 0x200782f1, 0x210385bd, 0x0782c802, + 0x0385be20, 0x82780321, 0x85c42007, 0x37052103, 0xc5200782, 0x04210385, 0x200782d5, 0x210385c6, 0x0782fb04, 0x0385df20, 0x82280221, 0x829f8307, + 0xcb042103, 0x93830b82, 0x03200382, 0xf7201f83, 0x03820f82, 0x82320521, 0x85fa2007, 0xd1042103, 0xfd200782, 0x03200385, 0x2724a782, 0x27000000, + 0x02210382, 0x2007821c, 0x84038502, 0x8204200b, 0x8403820b, 0x8205200b, 0x2103820b, 0x07827f02, 0x03850920, 0x53820220, 0x820a2721, 0x2103820b, + 0x0782de04, 0x03850b20, 0x0f820320, 0x820c2721, 0x2103820b, 0x07820f03, 0x03210386, 0x200b824b, 0x21038511, 0x07826604, 0x03851220, 0x82650421, + 0x85132007, 0x95012103, 0x14200782, 0x0b840385, 0x0b821520, 0x01210382, 0x20078296, 0x84038516, 0x821d200b, 0x2103820b, 0x0782a904, 0x03852120, + 0x82c80421, 0x85312007, 0x82002003, 0x442721ab, 0x03820b82, 0x823f0321, 0x85462007, 0x200b8403, 0x820b824c, 0x20478403, 0x820b824e, 0x3d032103, + 0x53200782, 0x00210385, 0x20078214, 0x84038554, 0x8255200b, 0x2103820b, 0x07820100, 0x03855720, 0x64200b84, 0x03820b82, 0x828e0121, 0x82b78307, + 0x06002103, 0xab830b82, 0x01210382, 0x200b82e0, 0x25038597, 0x0000eb03, 0x03853429, 0x33820320, 0x82352921, 0x2503820b, 0x00006303, 0x03850d2b, + 0x82560321, 0x851b2007, 0x88032103, 0x1c200782, 0x0b840385, 0x0b822420, 0x02200382, 0x2b217f82, 0x820b8250, 0x8f012403, 0x82e00000, 0x82e020e7, + 0x30002173, 0x47820b82, 0x0382e020, 0x82320021, 0x8512200b, 0x33002103, 0x3f200782, 0x41240382, 0x34000000, 0x59200782, 0x76200382, 0x37200b82, + 0x85200782, 0x86200382, 0x55200b82, 0xa7820782, 0x8298e021, 0x8257200b, 0x859a200b, 0x83002003, 0x82a9202b, 0x2103820b, 0x07825a00, 0x0385ac20, + 0x825b0021, 0x85b42007, 0x5c002103, 0xb7200782, 0x00210385, 0x2007825d, 0x210385bb, 0x07825e00, 0x0385cf20, 0x823c0521, 0x85d82007, 0x5f002103, + 0xdf200782, 0x00210385, 0x20078260, 0x200382e3, 0x05ab49e4, 0x0031e124, 0x0382e100, 0x82630021, 0x82392007, 0x21378203, 0x07826400, 0x03854020, + 0x82680021, 0x85522007, 0x69002103, 0x27830782, 0x00210382, 0x830b826a, 0x2103820f, 0x0b826b00, 0x03856d20, 0x826c0021, 0x857b2007, 0x83002003, + 0x82842013, 0x21f3820b, 0x07826e00, 0x03858f20, 0x82700021, 0x21ef8207, 0x6f499be1, 0xa8e12105, 0x03820f82, 0x82730021, 0x85b02007, 0x74002103, + 0xbc200782, 0x00210385, 0x20078275, 0x210385c4, 0x07827600, 0x0385c820, 0x82770021, 0x85d32007, 0x78002103, 0xd5200782, 0x00210385, 0x20078279, + 0x210385d7, 0x07827a00, 0x0385ed20, 0x827b0021, 0x85f32007, 0x7c002103, 0xf6200782, 0x00210385, 0x2007827d, 0x250385fe, 0x00007e00, 0x038509e2, + 0x827f0021, 0x82212007, 0x82222003, 0x828020a7, 0x852d2007, 0x82002103, 0x3d200782, 0x00210385, 0x20078283, 0x20038589, 0x21eb8200, 0x0b829ce2, + 0x00200382, 0xe221f382, 0x820b82b7, 0x86002103, 0xbb200782, 0x00210385, 0x20078287, 0x210385c5, 0x07828800, 0x0385ca20, 0x43830020, 0x0b82cd20, + 0x6b82ce20, 0x07828a20, 0x0385e620, 0x828c0021, 0x85eb2007, 0x8d002503, 0x1ee30000, 0x00210385, 0x2007828e, 0x210385af, 0x07828f00, 0x0382b120, + 0x3b82b220, 0x07829020, 0x0385f520, 0x00920025, 0x853ce400, 0x93002103, 0x45200782, 0x00210385, 0x20078294, 0x20038247, 0x202f8248, 0x20078295, + 0x2103856c, 0x07829700, 0x03857320, 0x82980021, 0x82762007, 0x82772003, 0x82992023, 0x827a2007, 0x827b2003, 0x829b200b, 0x85902007, 0x9d002103, + 0x4b830782, 0x00210382, 0x200b829e, 0x210385a5, 0x07829f00, 0x0382a820, 0x2f82ad20, 0x0782a020, 0x0382af20, 0x0b82b020, 0x0782a620, 0x0385b320, + 0x1f830020, 0x0b82b520, 0xe34acc20, 0xcee42105, 0xde200b82, 0xc1200b82, 0xe0200782, 0xff820382, 0x82d20021, 0x82e82007, 0x21ff8203, 0x0782d900, + 0x0385ed20, 0x82dd0021, 0x85ee2007, 0x24778403, 0xe50000ef, 0x823b8203, 0x07e5213f, 0x25200b82, 0xf3200b82, 0x27200782, 0x2f240382, 0x12010000, + 0x32200782, 0x4f200382, 0x1b200b82, 0x51200782, 0x58200382, 0x39200b82, 0x5a200782, 0x6f200382, 0x41200b82, 0x71200782, 0x74200382, 0x57200b82, + 0x76200782, 0x87200382, 0x5b200b82, 0x89200782, 0x8f200382, 0x6d200b82, 0x91200782, 0x9a200382, 0x74200b82, 0x9c200782, 0x9d200382, 0x7e200b82, + 0xe7820782, 0x82a1e521, 0x8280200b, 0x82a9200b, 0x82aa2003, 0x8282200b, 0x20fb8207, 0x210382e5, 0x0b828401, 0x0385b420, 0x00850125, 0x8578e600, + 0x86012103, 0x7a200782, 0x01210385, 0x82078287, 0x82e62033, 0x88012103, 0x73820b82, 0x0382e620, 0x7f820120, 0x7782e620, 0x01250383, 0xf000008a, + 0x20038200, 0x205f8202, 0x8207828b, 0x82f020f7, 0x82022003, 0x04f021df, 0x05240f82, 0x8e010000, 0x06200782, 0x01200385, 0xf0213f82, 0x240b8207, + 0x0100000e, 0x20078290, 0x20038210, 0x200b8213, 0x20078298, 0x21038514, 0x07824303, 0x03851520, 0xd3820120, 0x8216f021, 0x2103820b, 0x07828d02, + 0x03821720, 0x2f821920, 0xf021e782, 0x820b821a, 0x57032103, 0x1b200782, 0x03210385, 0x2007825a, 0x2103851c, 0x0782a001, 0x03851d20, 0xd3820220, + 0x821ef021, 0x2103820b, 0x0782a101, 0x03822120, 0x47823e20, 0x0782a220, 0x03854020, 0x824b0321, 0x82412007, 0x82442003, 0x82c02017, 0x85452007, + 0x82022003, 0x46f021ff, 0x03820b82, 0x827f0221, 0x82472007, 0x824e2003, 0x82c42023, 0x82502007, 0x825b2003, 0x82cc200b, 0x855c2007, 0xd3012103, + 0x5d200782, 0x01210385, 0x200782d4, 0x2103855e, 0x0782d801, 0x03826020, 0x2f826620, 0x0782d920, 0x03856720, 0x82060021, 0x85682007, 0xe0012103, + 0x69200782, 0x00210385, 0x20078205, 0x2403826a, 0x0100006e, 0x200782e1, 0x20038270, 0x200b827e, 0x200782e6, 0x21038580, 0x0782f501, 0x03828320, + 0x17828620, 0x0782f620, 0x03858720, 0x82950221, 0x85882007, 0x96022103, 0x89200782, 0x01210385, 0x200782fa, 0x2103858a, 0x07828e01, 0x03858b20, + 0x82fb0121, 0x828d2007, 0x21138203, 0x0782fc01, 0x03829020, 0x53829120, 0x0782fe20, 0x03829320, 0x02214f82, 0x83078200, 0x2103824b, 0x0b822002, + 0x03859720, 0x82af0121, 0x85982007, 0x03022103, 0x9c200782, 0x9e240382, 0x04020000, 0xa0200782, 0xa1200382, 0x07200b82, 0xa2200782, 0x02210385, + 0x20078240, 0x200382a3, 0x201782ae, 0x20078209, 0x200382b0, 0x200b82b2, 0x20078215, 0x200382c0, 0x200b82ce, 0x20078218, 0x200382d0, 0x200b82d1, + 0x20078227, 0x200382d6, 0x200b82de, 0x20078229, 0x210385e0, 0x07823202, 0x0382e220, 0x1782e320, 0x07823320, 0x0385e420, 0x829b0421, 0x85e52007, + 0xeb012103, 0xe6200782, 0x01210385, 0x200782f9, 0x200382e7, 0x202f82ee, 0x20078235, 0x200382f0, 0x200b82f4, 0x2007823d, 0x210385f5, 0x07824103, + 0x0385f620, 0x828e0221, 0x85f72007, 0xab022103, 0xf8200782, 0xfe200382, 0x42242f82, 0x00f10000, 0xd3820382, 0x82490221, 0x85082007, 0x61032103, + 0xcf820782, 0x000bf125, 0x82510200, 0x850c200b, 0x57022103, 0x0d200782, 0x0e200382, 0x54201782, 0x10200782, 0x11200382, 0x56200b82, 0x12200782, + 0x03210385, 0x2007826e, 0x20038514, 0x215c8201, 0x0b8215f1, 0x01210382, 0x200782f2, 0x20038218, 0x202f821c, 0x20078258, 0x2103851d, 0x0782a501, + 0x03851e20, 0x825d0221, 0x82202007, 0x82222003, 0x825e2023, 0x85232007, 0xfa012103, 0x24200782, 0x27200382, 0x9b831782, 0x0b822820, 0x00200382, + 0x29206783, 0x03820b82, 0x82650221, 0x852a2007, 0x01002103, 0x2b200782, 0x2e200382, 0x66202f82, 0x30200782, 0x35200382, 0x6a200b82, 0x37200782, + 0x3a200382, 0x70200b82, 0x3d200782, 0x3e200382, 0x74200b82, 0x40200782, 0x46200382, 0x76200b82, 0x47200782, 0x02210385, 0x2007827c, 0x20038248, + 0x2017824e, 0x2007827d, 0x20038250, 0x200b8254, 0x20078284, 0x21038555, 0x07820300, 0x03825620, 0x17825920, 0x07828920, 0x03825b20, 0x0221bb82, + 0x2007828d, 0x82038260, 0x91022197, 0x75200782, 0x78200382, 0x97202382, 0x82200782, 0x83200382, 0x9b200b82, 0x85200782, 0x88200382, 0x9d200b82, + 0x8e200782, 0x03210385, 0x20078259, 0x21038590, 0x07825803, 0x93203f83, 0xa1202382, 0x95200b82, 0x02210385, 0x200782a4, 0x20038596, 0x20a38302, + 0x820b8297, 0xa5022103, 0x99200782, 0x02210385, 0x200782a6, 0x8203829c, 0xa702215b, 0xab200782, 0xae200382, 0xa9204782, 0xb0200782, 0x02210385, + 0x200782ad, 0x210385b1, 0x07824003, 0x0382b220, 0x2382b320, 0xf1212782, 0x200b82b8, 0x200b82bb, 0x200782b0, 0x200382c0, 0x200b82c9, 0x200782b4, + 0x200382cd, 0x200b82ce, 0x200782be, 0x200385d8, 0x201f8302, 0x820b82d9, 0x200b8403, 0x820b82da, 0xc1022103, 0xdb200782, 0x02210385, 0x20078257, + 0x200382dc, 0x203b82de, 0x200782c2, 0x200382e0, 0x200b82e6, 0x200782c5, 0x200382ea, 0x200b82ec, 0x200782cc, 0x210385f6, 0x0782cf02, 0x0385f720, + 0xf8200b84, 0xf9200b82, 0xd0202382, 0xfa200782, 0x00210385, 0x20078215, 0x200382fb, 0x241782fe, 0xf20000d2, 0x20038200, 0x200b8201, 0x200782d6, + 0x20038204, 0x200b8207, 0x200782d8, 0x2403820a, 0x0200000b, 0x200782dc, 0x20038217, 0x200b821e, 0x200782de, 0x20038221, 0x820b822d, 0x33f22187, + 0x36200b82, 0xf3200b82, 0x38200782, 0x39200382, 0x7f820b82, 0x8240f221, 0x8249200b, 0x82f9200b, 0x854a2007, 0x02032103, 0x4d200782, 0x4e240382, + 0x03030000, 0x50200782, 0x03210385, 0x20078208, 0x20038251, 0x2017825d, 0x20078205, 0x2103856c, 0x07821203, 0x03827120, 0x17827720, 0x07821320, + 0x03857820, 0x821a0321, 0x82792007, 0x827a2003, 0x200b8317, 0x820b827b, 0xae032103, 0x83200782, 0x02200385, 0x8b204783, 0x03820b82, 0x821c0321, + 0x858c2007, 0x200b8403, 0x820b828d, 0x1d032103, 0x8e200782, 0x0b840385, 0x0b829020, 0x53829120, 0x07821e20, 0x03859220, 0xb3830020, 0x0b829520, + 0x00210382, 0x20078204, 0x2103859a, 0x07822003, 0x03859c20, 0x82d50121, 0x829d2007, 0x829e2003, 0x8221203b, 0x82a02007, 0x82a42003, 0x8223200b, + 0x82a72007, 0x82a82003, 0x8228200b, 0x82b42007, 0x82b62003, 0x822a200b, 0x85b72007, 0x2c032103, 0xb9200782, 0x03210385, 0x2007822d, 0x840385ba, + 0x82bb200b, 0x2103820b, 0x07822e03, 0x0385bc20, 0xbd200b84, 0x03820b82, 0x822f0321, 0x85be2007, 0x200b8403, 0x820b82c0, 0x90012103, 0xc1200782, + 0xc2200382, 0x30206b82, 0xc3200782, 0x03210385, 0x20078231, 0x200382c7, 0x201782ce, 0x20078232, 0x200382d0, 0x200b82d3, 0x2007823a, 0x210385d4, + 0x07827403, 0x0382db20, 0x1782dc20, 0x07823e20, 0x0385e520, 0x82400321, 0x85e72007, 0x41032103, 0xea200782, 0x03210385, 0x20078242, 0x210385ed, + 0x07824303, 0x0382f120, 0x3b82f220, 0x07824420, 0x0382f520, 0x0b82f620, 0x07824620, 0x0385f920, 0x82480321, 0x85fe2007, 0x49032503, 0x02f30000, + 0x05200382, 0x4a202382, 0x09200782, 0x0c240382, 0x4e030000, 0x1c200782, 0x03210385, 0x20078252, 0x2103851e, 0x07825303, 0x03852820, 0x82540321, + 0x20c38207, 0x210382f3, 0x0b82b101, 0x03823720, 0x3b823820, 0x07825520, 0x03825820, 0x0b825b20, 0x07825720, 0x03855d20, 0x0f820320, 0x8260f321, + 0x2103820b, 0x07825c03, 0x03826220, 0x23826320, 0x81201f83, 0x03820b82, 0x823b0221, 0x85822007, 0x3c022103, 0x86200782, 0x87200382, 0x5f202382, + 0x90200782, 0x03210385, 0x20078261, 0x200385a5, 0x20438303, 0x200b82be, 0x202382bf, 0x20078263, 0x210385c1, 0x07826503, 0x0385c520, 0x82660321, + 0x85c92007, 0x67032103, 0xcd200782, 0xcf200382, 0x68202f82, 0xd1200782, 0x03210385, 0x2007826b, 0x210385dd, 0x07826c03, 0x0385e020, 0x826d0321, + 0x85e52007, 0x6e032103, 0xed200782, 0x03210385, 0x2007826f, 0x200382fa, 0x204782fb, 0x20078270, 0x210385fd, 0x07829904, 0x0385ff20, 0x00720325, + 0x8506f400, 0x73032103, 0x10200782, 0x03210385, 0x20078274, 0x21038522, 0x07827503, 0x03852420, 0x82760321, 0x85252007, 0x2a032103, 0x32200782, + 0x34200382, 0x77205f82, 0x36200782, 0x03210385, 0x2007827a, 0x20038239, 0x2017823a, 0x2007827b, 0x2103853c, 0x07827d03, 0x03853f20, 0x827e0321, + 0x85412007, 0x7f032103, 0x43200782, 0x03210385, 0x20078280, 0x21038545, 0x07828103, 0x03854720, 0x82820321, 0x854b2007, 0x83032103, 0x4e200782, + 0x03210385, 0x20078284, 0x21038550, 0x07828503, 0x03855320, 0x82860321, 0x85582007, 0x87032103, 0x5c200782, 0x5d240382, 0x88030000, 0x5f200782, + 0x03210385, 0x2007828a, 0x20038261, 0x20178262, 0x2007828b, 0x21038566, 0x07828d03, 0x03826820, 0x17826d20, 0x07828e20, 0x03827020, 0x0b827220, + 0x07829420, 0x03857420, 0x82970321, 0x20f38307, 0x20178279, 0x200b8298, 0x2103857d, 0x07824202, 0x7f20db83, 0x9b201782, 0x81200b82, 0xbb820382, + 0x829d0321, 0x82842007, 0x218b8203, 0x07829f03, 0x03826f83, 0x82a30321, 0x826f830b, 0xa4032167, 0x90200b82, 0x67820382, 0x82a60321, 0x82962007, + 0x21678203, 0x0782ab03, 0x03859e20, 0x82ad0321, 0x85a12007, 0x82032003, 0x83f42033, 0x2103820f, 0x1382ae03, 0x0385b320, 0x82af0321, 0x82b82007, + 0x82ba2003, 0x82b02083, 0x82bd2007, 0x82be2003, 0x201f830b, 0x200b82c0, 0x200b82c2, 0x200782b5, 0x210385c4, 0x0782b803, 0x0385c620, 0x82b90321, + 0x82cd2007, 0x82ce2003, 0x82ba2023, 0x85d32007, 0xbc032103, 0xd6200782, 0xdb200382, 0x4f831782, 0x0b82de20, 0x0b82df20, 0x0782c320, 0x0382e220, + 0x0b82e320, 0x0782c520, 0x0385e620, 0x822a0321, 0x00fa2407, 0x8209f500, 0x82c72017, 0x82152007, 0x822b2003, 0x82d7200b, 0x852c2007, 0x12002103, + 0x2d200782, 0x30200382, 0xee201782, 0x31200782, 0x00210385, 0x20078213, 0x20038232, 0x20178235, 0x200782f2, 0x21038536, 0x07821100, 0x03823720, + 0x17824020, 0x0782f620, 0x03854120, 0x82040021, 0x82422007, 0x00912103, 0x00220a83, 0x0b8293f5, 0x0b829d20, 0x07825020, 0x03829f20, 0x0b82a220, + 0x07825b20, 0x0382a420, 0x0b82a720, 0x07825f20, 0x0382aa20, 0x0b82b120, 0x07826320, 0x0382b320, 0x0b82b420, 0x07826b20, 0x0382b620, 0x0b82b820, + 0x07826d20, 0x0382ba20, 0x0421eb82, 0x20078270, 0x200382bf, 0x201782c5, 0x20078274, 0x200382c7, 0x200b82cb, 0x2007827b, 0x200382cd, 0x200b82ce, + 0x20078280, 0x200382d0, 0x200b82d2, 0x83078282, 0x210382e7, 0x0b828504, 0x0385da20, 0x82860421, 0x85dc2007, 0x87042103, 0xde200782, 0xdf200382, + 0x88202f82, 0xe1200782, 0x04210385, 0x2007828a, 0x210385e4, 0x07828b04, 0x0385e720, 0x828c0421, 0x85eb2007, 0x8d042103, 0xee200782, 0x04210385, + 0x2007828e, 0x200382fc, 0x244782fd, 0xf600008f, 0x21038501, 0x07829104, 0x03850420, 0x82920421, 0x85102007, 0x93042103, 0x13200782, 0x04210385, + 0x20078294, 0x21038519, 0x07829504, 0x03851f20, 0x82960421, 0x85212007, 0x97042103, 0x24200782, 0x25240382, 0x98040000, 0x29200782, 0x2a200382, + 0x9a200b82, 0x2e200782, 0x30200382, 0x9c200b82, 0x37200782, 0x04210385, 0x2007829f, 0x2003823b, 0x2017823c, 0x200782a0, 0x21038541, 0x0782a204, + 0x03854420, 0x82a30421, 0x85472007, 0xa4042103, 0x4a200782, 0x04210385, 0x200782a5, 0x2103854f, 0x0782a604, 0x03855120, 0x82a70421, 0x82532007, + 0x82552003, 0x82a82053, 0x85582007, 0xab042103, 0x5d200782, 0x5e200382, 0xac201782, 0x62200782, 0x04210385, 0x200782ae, 0x20038264, 0x20178266, + 0x200782af, 0x20038269, 0x200b826b, 0x200782b2, 0x2103856d, 0x0782b504, 0x03856f20, 0x82b60421, 0x85742007, 0xb7042103, 0x76200782, 0x04210385, + 0x200782b8, 0x20038278, 0x203b8279, 0x200782b9, 0x2003827b, 0x200b827c, 0x200782bb, 0x2103857f, 0x0782bd04, 0x03828120, 0x17828420, 0x0782be20, + 0x03828720, 0x0b828920, 0x0782c220, 0x03859620, 0x82c50421, 0x82982007, 0x829b2003, 0x82c62017, 0x82a02007, 0x82a12003, 0x82ca200b, 0x82db8307, + 0xcc042103, 0xa9200b82, 0x04210385, 0x200782cd, 0x210385ad, 0x0782ce04, 0x97829f83, 0x82cf0421, 0x827b830b, 0xd1042103, 0x6f830b82, 0x04210382, + 0x200b82d2, 0x210385c0, 0x0782d304, 0x0382c320, 0x5f82c420, 0x0782d420, 0x0385c820, 0x82d60421, 0x823f8307, 0xd7042103, 0xd1200b82, 0x04210385, + 0x200782d8, 0x210385d3, 0x0782d904, 0x0385d520, 0x82da0421, 0x85d72007, 0xdb042103, 0xd9200782, 0x04210385, 0x200782dc, 0x200382dd, 0x835f82de, + 0x82e22007, 0x82e3200b, 0x82df200b, 0x85e62007, 0xe1042103, 0xe8200782, 0x04200385, 0xec201f83, 0xed200b82, 0xe3202382, 0xf0200782, 0xf2200382, + 0xe5200b82, 0xfa200782, 0x04200385, 0xfc202b83, 0x03820b82, 0x82e90421, 0x00ff2407, 0x8200f700, 0x82ea2023, 0x820b2007, 0x820c2003, 0x2143820b, + 0x0b820ef7, 0x04210382, 0x200782ee, 0x20038214, 0x20178215, 0x200782ef, 0x21038517, 0x0782f104, 0x03851e20, 0x63820420, 0x8222f721, 0x2103820b, + 0x0782f304, 0x03822820, 0x2f822920, 0x0782f420, 0x03852b20, 0x82f60421, 0x822e2007, 0x822f2003, 0x21708217, 0x0b823bf7, 0x0b823d20, 0x0782f920, + 0x03854020, 0x93820420, 0x8243f721, 0x2103820b, 0x0782fd04, 0x03854720, 0x82fe0421, 0x854d2007, 0xff042103, 0x51200782, 0x53230382, 0x82050000, + 0x56f721b7, 0x03820b82, 0x82030521, 0x825a2007, 0x825b2003, 0x82042017, 0x825e2007, 0x825f2003, 0x8206200b, 0x85692007, 0x08052103, 0x6b200782, + 0x6c200382, 0x09201782, 0x6f200782, 0x70200382, 0x0b200b82, 0x72200782, 0x73200382, 0x0d200b82, 0x7c200782, 0x7d200382, 0x0f200b82, 0x80200782, + 0x81200382, 0x11200b82, 0x83200782, 0x84200382, 0x13200b82, 0x86200782, 0x88200382, 0x15200b82, 0x8c200782, 0x05210385, 0x20078218, 0x20038293, + 0x20178294, 0x20078219, 0x21038596, 0x07821b05, 0x03859c20, 0x821c0521, 0x829f2007, 0x82a02003, 0x821d2023, 0x85a22007, 0x1f052103, 0xa4200782, + 0xa6200382, 0x20201782, 0xa9200782, 0xab200382, 0x23200b82, 0xad200782, 0xae200382, 0x26200b82, 0xb5200782, 0xb6200382, 0x28200b82, 0xb9200782, + 0xba200382, 0x2a200b82, 0xbd200782, 0x05210385, 0x2007822c, 0x200382bf, 0x201782c0, 0x2007822d, 0x210385c2, 0x07822f05, 0x0382c420, 0x1782c520, + 0x07823020, 0x0382c920, 0x0b82ca20, 0x07823220, 0x0382cc20, 0x0b82ce20, 0x07823420, 0x0385d020, 0x82370521, 0x85d22007, 0x38052103, 0xd7200782, + 0xda200382, 0x39202382, 0xe4200782, 0xe6200382, 0x3d200b82, 0xec200782, 0x05210385, 0x20078240, 0x210385ef, 0x07824105, 0x0382f220, 0x2382f320, + 0x07824220, 0x0385f520, 0x82440521, 0x85f72007, 0x45052103, 0xfa200782, 0xfb200382, 0x46242382, 0x02f80000, 0x05210385, 0x20078248, 0x20038205, + 0x20178207, 0x20078249, 0x2103850a, 0x07829c01, 0x03850b20, 0x828f0021, 0x850c2007, 0x20178403, 0x820b820d, 0x4c052103, 0x0f200782, 0x10200382, + 0x4d203b82, 0x12200782, 0x05210385, 0x2007824f, 0x24038215, 0x05000016, 0x20078250, 0x21038518, 0x07825205, 0x03851d20, 0x82530521, 0x82272007, + 0x822a2003, 0x82542023, 0x852f2007, 0x58052103, 0x3e200782, 0x05210385, 0x20078259, 0x2103854a, 0x07825a05, 0x03826f83, 0x825b0521, 0x8550200b, + 0x5c052103, 0x4b830782, 0x05210382, 0x200b825d, 0x2003855e, 0x20078305, 0x820b8263, 0x5f052103, 0x6d200782, 0x05210385, 0x20078260, 0x21038579, + 0x07826105, 0x03827b20, 0x83827d20, 0x07826220, 0x03828120, 0x0b828220, 0x07826520, 0x03828420, 0x0b828720, 0x07826720, 0x03859120, 0x826b0521, + 0x85972007, 0x6c052103, 0xc0200782, 0xc1200382, 0x5b832382, 0x0b82cc20, 0x05210382, 0x2007826f, 0x210385d7, 0x07827005, 0x0385d920, 0x82710521, + 0x85e52007, 0x12032103, 0xef200782, 0x05210385, 0x20078272, 0x250385ff, 0x01007305, 0x03847ff1, 0xff030026, 0x08f30100, 0x00220384, 0x07820505, + 0x03840b20, 0x0c050022, 0x0d200782, 0x00220384, 0x07823a04, 0x03840e20, 0x3b040022, 0x0f200782, 0x00220384, 0x07823c04, 0x03841020, 0x12020022, + 0x19200782, 0x00220384, 0x07829e02, 0x03842120, 0x34030022, 0x26200782, 0x00220384, 0x0782fd04, 0x03842720, 0xfb040022, 0x29200782, 0x00220384, + 0x07820a05, 0x03842a20, 0x83050021, 0x822d207f, 0x002d240b, 0x824d0500, 0x84312007, 0x03002203, 0x200782bf, 0x22038432, 0x82b30200, 0x84362007, + 0x05002203, 0x20078251, 0x2203844b, 0x82010200, 0x844e2007, 0x04002203, 0x20078283, 0x8503844f, 0x8268200b, 0x8268200b, 0x201f8353, 0x230b826a, + 0x0400006a, 0x7420a383, 0x74240b82, 0x41030000, 0x77200782, 0x00220384, 0x0782c603, 0x03847820, 0x39040022, 0x81200782, 0x00220384, 0x0782e201, + 0x03848220, 0xd4020022, 0x93200782, 0x00220384, 0x0782a802, 0x03849720, 0xbd030022, 0x99200782, 0x00220384, 0x07826703, 0x03849e20, 0x91010022, + 0x9f200782, 0x00220384, 0x07827b02, 0x0384a720, 0xa6010022, 0x3f830782, 0x8382a820, 0x0b82fe20, 0x0384ad20, 0x83040021, 0x82b22037, 0x82b2200b, + 0x82e42017, 0x84b52007, 0x01002203, 0x2007828c, 0x220384c0, 0x82790300, 0x84c12007, 0x02002203, 0x2007825d, 0x220384c2, 0x82360500, 0x84c32007, + 0x04002203, 0x200782ed, 0x220384c5, 0x825e0400, 0x24db8307, 0x010000c6, 0x200b82ff, 0x220384c8, 0x82840300, 0x84ca2007, 0x04002103, 0xcd205383, + 0xcd240b82, 0xe3020000, 0xd0200782, 0x00220384, 0x07828a03, 0x0384d320, 0x89030022, 0xff830782, 0x0000d424, 0x0b82e904, 0x0384d620, 0x7e040022, + 0xd9200782, 0x00220384, 0x0782a604, 0x0384db20, 0xb6040022, 0xe0200782, 0x00220384, 0x07829c01, 0x0384e220, 0xab020022, 0xe5200782, 0x00220384, + 0x07824202, 0x0384e820, 0x51040022, 0xeb200782, 0x00220384, 0x07820704, 0x0384f420, 0xa5010022, 0xf7200782, 0x00260384, 0x0100ac01, 0x038404f4, + 0x82040021, 0x08f4217f, 0x08200b82, 0xd2208f82, 0x09200782, 0x00220384, 0x0782da04, 0x03840e20, 0x82040021, 0x15f42167, 0x15240b82, 0xd9040000, + 0x1f200782, 0x00220384, 0x07823604, 0x03844120, 0x83010021, 0x824d2023, 0x004d240b, 0x82950200, 0x844e2007, 0x02002203, 0x82078296, 0x51f42593, + 0xe3030000, 0x55200b82, 0x00220384, 0x07821104, 0x03846420, 0x90010022, 0x65200782, 0x00220384, 0x0782cd03, 0x03847b20, 0xdf040022, 0x80200782, + 0x00220384, 0x07820a04, 0x03848920, 0x82030021, 0x8ef421cb, 0x8e240b82, 0x62030000, 0x94200782, 0x00220384, 0x07822305, 0x03849920, 0x83010021, + 0x829a201f, 0x009a210b, 0x9b200b85, 0x9b200b82, 0x9c200b86, 0x9c200b82, 0xa1200b86, 0xa1200b82, 0x3920b382, 0xa3200782, 0x00220384, 0x0782c702, + 0x0384a720, 0xc2010022, 0xa9200782, 0x00220384, 0x07824903, 0x0384ac20, 0xae030022, 0xb0200782, 0x00220384, 0x07825305, 0x0384b220, 0x07829082, + 0x0384b320, 0x05020022, 0xbb200782, 0x00220384, 0x07825102, 0x0384bc20, 0x16020022, 0xbe200782, 0x00220384, 0x07821f02, 0x0384bf20, 0xe1030022, + 0xc0200782, 0x0b850384, 0x0b82c120, 0xa782c120, 0x0782f120, 0x0384c220, 0xf2010022, 0xc4200782, 0x00220384, 0x07828d02, 0x0384c520, 0x6d020022, + 0xc6200782, 0x0b850384, 0x0b82cb20, 0x8e82cb20, 0x07825420, 0x0384cc20, 0xfc010022, 0xcd200782, 0x00220384, 0x07821803, 0x0384ce20, 0x1e020022, + 0xcf200782, 0x00220384, 0x07820304, 0x0384d420, 0x83010021, 0x82d620e3, 0x82d6200b, 0x82da2047, 0x84dc2007, 0x04002203, 0x200782ee, 0x220384dd, + 0x82520300, 0x84de2007, 0x02002203, 0x20078202, 0x220384df, 0x82500500, 0x84e02007, 0x02002203, 0x830782aa, 0x00e124db, 0x822e0500, 0x84e2200b, + 0x02002203, 0x20078208, 0x210384e6, 0xcb830300, 0x0b82f020, 0x0000f024, 0x0782cc02, 0xf124f383, 0x69030000, 0xf6200b82, 0x00220384, 0x07829a01, + 0x0384f720, 0x83010021, 0x82fb2013, 0x82fb200b, 0x00702453, 0x8400f501, 0x01002203, 0x200782ea, 0x22038401, 0x825e0300, 0x84042007, 0x03002203, + 0x20078244, 0x22038408, 0x82a80100, 0x840a2007, 0x01002203, 0x200782a9, 0x2203840b, 0x82f90200, 0x840c2007, 0x02002203, 0x200782cb, 0x2103840d, + 0x9b820100, 0x8211f521, 0x8211200b, 0x82f72064, 0x84122007, 0x01002203, 0x200782a4, 0x21038413, 0x67830200, 0x0b821420, 0x00001424, 0x07824002, + 0x03841520, 0xcf020022, 0x16200782, 0x00220384, 0x0782af01, 0x03841720, 0x19020022, 0x18200782, 0x00220384, 0x0782a202, 0x03842520, 0xe4010022, + 0x27200782, 0x00210384, 0x205b8302, 0x240b8228, 0x04000028, 0x200782e0, 0x2203842c, 0x82930400, 0x84342007, 0x02002203, 0x20078257, 0x85038435, + 0x8247200b, 0x8247200b, 0x20d7832f, 0x200b8249, 0x200b8249, 0x200782ba, 0x2203844a, 0x82b20300, 0x844b2007, 0x04002203, 0x200782b4, 0x2203844c, + 0x82b90400, 0x844d2007, 0x04002203, 0x200782c9, 0x2203844e, 0x82e10400, 0x84532007, 0x01002203, 0x2007829d, 0x2203846b, 0x82080200, 0x846e2007, + 0x03002203, 0x200782da, 0x22038471, 0x82ef0400, 0x84752007, 0x02002203, 0x200782e2, 0x22038477, 0x82f10400, 0x847b2007, 0x02002203, 0x20078202, + 0x2203847d, 0x82610500, 0x84822007, 0x02002203, 0x20078232, 0x22038488, 0x82fc0100, 0x848a2007, 0x03002203, 0x2007824c, 0x2203848b, 0x82650400, + 0x848c2007, 0x02002203, 0x200782d3, 0x21038495, 0xdf830500, 0x0b829620, 0x00009624, 0x07820d03, 0x0384a420, 0x8e010022, 0xa5200782, 0x00210384, + 0x206b8303, 0x240b82a8, 0x010000a8, 0x200782b0, 0x220384a9, 0x82ce0200, 0x84aa2007, 0x02002203, 0x2007821f, 0x220384b1, 0x826f0500, 0x84b42007, + 0x02002203, 0x20078207, 0x850384b6, 0x82b7203b, 0x00b7230b, 0x37830200, 0x0b82b820, 0x7782b820, 0x0782e120, 0x0384b920, 0x83020021, 0x82bb2077, + 0x82bb200b, 0x82b92023, 0x84bf2007, 0x01002203, 0x200782f1, 0x220384c1, 0x82f20100, 0x84cb2007, 0x02002203, 0x8307828d, 0x82ce2087, 0x203b832f, + 0x200f82d5, 0x205382d5, 0x2007823b, 0x220384d6, 0x823a0300, 0x84d82007, 0x01002203, 0x200782a2, 0x210384d9, 0xf7830100, 0x0b82e920, 0xd782e920, + 0x0782eb20, 0x0384ea20, 0xf9010022, 0xfa200782, 0x00250384, 0x01001a03, 0x821e82f6, 0x04002203, 0x200b823e, 0x22038401, 0x82570400, 0x84022007, + 0x04002203, 0x20078246, 0x22038403, 0x823f0400, 0x84042007, 0x04002203, 0x20078240, 0x22038405, 0x82410400, 0x84062007, 0x04002203, 0x20078243, + 0x21038409, 0xd3820300, 0x820af621, 0x000a240b, 0x826f0400, 0x840d2007, 0x04002203, 0x20078242, 0x22038410, 0x825a0200, 0x84172007, 0x04002203, + 0x20078253, 0x22038418, 0x82550400, 0x84192007, 0x04002203, 0x20078254, 0x2203841b, 0x82470400, 0x841c2007, 0x04002203, 0x20078249, 0x2203841d, + 0x82480400, 0x84202007, 0x04002203, 0x20078214, 0x22038422, 0x826c0400, 0x84262007, 0x04002203, 0x20078238, 0x2203842b, 0x827c0400, 0x842c2007, + 0x04002203, 0x2007823d, 0x2203842d, 0x826b0400, 0x842e2007, 0x04002203, 0x20078277, 0x22038433, 0x82370400, 0x84362007, 0x04002203, 0x8307825f, + 0x004224c3, 0x82580200, 0x8444200b, 0x04002203, 0x20078260, 0x22038481, 0x82f30300, 0x84862007, 0x02002203, 0x200782f7, 0x2203848a, 0x82850100, + 0x848d2007, 0x02002203, 0x200782db, 0x22038490, 0x826d0400, 0x84912007, 0x02002203, 0x20078243, 0x22038496, 0x82b20200, 0x84972007, 0x04002203, + 0x2007828b, 0x22038498, 0x82b10200, 0x849a2007, 0x02002203, 0x20078228, 0x2103849c, 0x77830400, 0x0b82a120, 0x0000a124, 0x07823c05, 0x0384a220, + 0xe1020022, 0xa6200782, 0x00220384, 0x07829f04, 0x0384aa20, 0xec030022, 0xab200782, 0x00220384, 0x0782d801, 0x0384ac20, 0xa4030022, 0xad200782, + 0x00220384, 0x07820b04, 0x0384b020, 0x31000022, 0xb2200782, 0x00220384, 0x0782da02, 0x0384b420, 0x5a050022, 0xb6200782, 0x00220384, 0x07821204, + 0x0384bd20, 0x3a050022, 0xbf200782, 0x00220384, 0x07823703, 0x0384c120, 0x38030022, 0xcc200782, 0x00220384, 0x0782f602, 0x0384ce20, 0x20040022, + 0xd0200782, 0x00220384, 0x0782c004, 0x0384d220, 0xf0010022, 0xc3830782, 0x0000e124, 0x0b826c02, 0x0384e320, 0x9e010022, 0xeb200782, 0x00220384, + 0x07826904, 0xec24cf83, 0x68040000, 0x33830b82, 0x0000f024, 0x0b822d05, 0x0384fb20, 0xa1040026, 0xe0f70100, 0x00220384, 0x07825702, 0x0384e120, + 0xe2200b85, 0xe2200b82, 0x17835f82, 0x0b82e320, 0x0b86e320, 0x0b82e420, 0x0b86e420, 0x0b82e520, 0x0000e524, 0x07828803, 0x0384e620, 0xe7200b85, + 0xe7200b82, 0xe8201786, 0xe8200b82, 0xe9200b86, 0xe9200b82, 0xea200b86, 0xea200b82, 0xeb200b86, 0xeb200b82, 0xf9230b85, 0x8201000d, 0x01002203, + 0x2007828e, 0x8503840e, 0x8216200b, 0x0016240b, 0x82020400, 0x841a2007, 0x03002203, 0x2007820a, 0x2203841d, 0x82b90300, 0x84232007, 0x04002203, + 0x20078244, 0x22038429, 0x82450400, 0x84412007, 0x04002203, 0x20078227, 0x21038442, 0x37830500, 0x0b824320, 0x00004324, 0x07821e05, 0x44243383, + 0x40030000, 0x4e200b82, 0x00220384, 0x07827803, 0x03845320, 0x3e050022, 0x55200782, 0x00210384, 0x208b8305, 0x200b825a, 0x203b825a, 0x20078247, + 0x22038477, 0x82d10300, 0x84902007, 0x00002203, 0x20078296, 0x2203849b, 0x82e40400, 0x84a62007, 0x04002103, 0xf921eb82, 0x200b82b4, 0x20cb82b4, + 0x20078285, 0x220384b7, 0x827d0400, 0x84cd2007, 0x02002203, 0x2007829c, 0x220384e0, 0x82870400, 0x84e12007, 0x05074103, 0x0b82e620, 0x3b82e620, + 0x0782c520, 0x0384e920, 0x69020022, 0xea200782, 0x00220384, 0x0782a803, 0x0384ec20, 0x95030022, 0xed200782, 0x00220384, 0x07828302, 0x0384ef20, + 0x6e020022, 0xf0200782, 0x00220384, 0x07821004, 0x0384f220, 0x83010021, 0x82f32037, 0x00f3240b, 0x823f0200, 0x84f92007, 0x03002203, 0x200782dc, + 0x210384fb, 0x2b830400, 0x0b82fc20, 0x0000fc24, 0x07824c00, 0x0384fe20, 0x01040026, 0x79fa0100, 0x00220384, 0x07828c03, 0x03847a20, 0x3e020022, + 0x91200782, 0x00220384, 0x0782d304, 0x03849b20, 0x08040022, 0xb6200782, 0x00220384, 0x0782ee03, 0x0384c120, 0x92040022, 0x02855782, 0x0000a424, + 0x89821401, 0x83003821, 0x04002251, 0x24f58228, 0x050000f0, 0x2303826c, 0x060000f4, 0x06290782, 0x070000f8, 0x080000b4, 0x82038248, 0xac092891, + 0x0c0a0000, 0x830b0000, 0x25178203, 0x00001c0c, 0x0382940c, 0x0d2c2782, 0x0e0000c4, 0x0f0000d8, 0x10000058, 0x10251f82, 0x11000090, 0x24038214, + 0x1200009c, 0x82038210, 0x4813291f, 0xc8130000, 0x44140000, 0xd4240382, 0x28150000, 0x87820382, 0x27821620, 0x4f821620, 0x00381725, 0x82041800, + 0x00a82303, 0x4b821900, 0x0f821a20, 0x00b01a24, 0x1f821b00, 0x27821b20, 0x0f821c20, 0x1b821c20, 0x00181d24, 0x13821e00, 0x004c1f24, 0x6b822000, + 0x0030212c, 0x00802200, 0x00d02300, 0x63822500, 0x6f822920, 0x47822b20, 0xc7822b20, 0x03822c20, 0x6b822e20, 0x00203124, 0x6f823200, 0x97823320, + 0x3f823520, 0x00683628, 0x00783700, 0x27823900, 0xf7823920, 0x00cc3a28, 0x00843d00, 0x3b823f00, 0x7b823f20, 0x4b824020, 0x93824120, 0x2b824320, + 0x5f824420, 0x5f824520, 0x27824620, 0x27824720, 0x00c04828, 0x00bc4900, 0x57824a00, 0x47824c20, 0x00dc4d24, 0x5b825000, 0x4f825120, 0x002c5324, + 0x1f825300, 0x00545428, 0x00345500, 0x03825600, 0x00405724, 0x27825800, 0x00e05828, 0x00985900, 0x3b825a00, 0x008c5b24, 0x27825c00, 0x03825d20, + 0x37825e20, 0x00006028, 0x00586100, 0x1f826200, 0x67826320, 0x4f826520, 0xe3826620, 0x1f826620, 0x87826720, 0x47826920, 0x5b826a20, 0x6b826a20, + 0x27826b20, 0xb7826c20, 0x4f826c20, 0x8f826d20, 0x004c6f25, 0x821c7000, 0x24378203, 0x0000ac71, 0x205f8272, 0x207f8273, 0x20238274, 0x29078275, + 0x00005076, 0x00007477, 0x03823c78, 0x79243382, 0x7a0000e8, 0x7b202782, 0x7c205782, 0x7d244b82, 0x7e000070, 0x7f206b82, 0x80200b82, 0x81208882, + 0x82200382, 0x8324ef82, 0x850000d8, 0x86203382, 0x8720bb82, 0x89281b82, 0x8a000048, 0x8b000024, 0x8b206b82, 0x8c209782, 0x8d20c382, 0x8e207b82, + 0x8e24bb82, 0x900000a0, 0x91200b82, 0x922c3b82, 0x930000f8, 0x940000d4, 0x950000e4, 0x96209f82, 0x98246782, 0x9900005c, 0x9a24db82, 0x9b0000a4, + 0x9d2c3b82, 0x9f000094, 0xa0000010, 0xa2000090, 0xa3244f82, 0xa50000c4, 0xa6245f82, 0xa800006c, 0xa9204f82, 0xab203382, 0xac207b82, 0xae208382, + 0xaf244782, 0xb20000f4, 0xb3242782, 0xb400002c, 0xb5208f82, 0xb720d382, 0xb8342f82, 0xba0000d0, 0xbb000078, 0xbc000088, 0xbd0000ec, 0xbe0000fc, + 0xbf207382, 0xc0248f82, 0xc100009c, 0xc2242b82, 0xc300008c, 0xc4201f82, 0xc624fb82, 0xc7000044, 0xc9286b82, 0xca000020, 0xcb000064, 0xcc205382, + 0xce206382, 0xd0201b82, 0xd2200782, 0xd4200382, 0xd6206b82, 0xd8203f82, 0xda24a382, 0xdc00007c, 0xdd24d782, 0xdf0000dc, 0xe2209382, 0xe320af82, + 0xe4204382, 0xe524c782, 0xe70000b8, 0xe8204782, 0xe920cf82, 0xea20b782, 0xec243382, 0xed000058, 0xef291782, 0xf0000034, 0xf1000040, 0x05415e54, + 0x9382f320, 0x00acf424, 0x5b82f500, 0xb382f620, 0x9b82f820, 0x5b82f920, 0x0383fa20, 0xfb20b382, 0x3c083382, 0x000060fe, 0x010090ff, 0x0100c401, + 0x01001803, 0x0100ec04, 0x01007806, 0x01009407, 0x01009808, 0x0100a809, 0x01009c0a, 0x0100bc0b, 0x0100e80c, 0x0100f80d, 0x0100300f, 0x01006c10, + 0x28378211, 0x0100a012, 0x0100b813, 0x20378214, 0x243f8216, 0x0100d816, 0x30178218, 0x0100d41a, 0x0100041c, 0x0100281d, 0x0100581e, 0x2427821f, + 0x01008c20, 0x244b8222, 0x01005c23, 0x20338224, 0x250f8225, 0x01004c26, 0x03821c28, 0x0100fc27, 0x0100d029, 0x2413822a, 0x0100502b, 0x2033822c, + 0x2433822d, 0x0100442e, 0x2557822f, 0x0100f037, 0x03822039, 0x0100c823, 0x2053823b, 0x2007823c, 0x201b823e, 0x20a78240, 0x241b8241, 0x01008444, + 0x24738244, 0x01006846, 0x20a38246, 0x24138247, 0x0100c049, 0x204f824b, 0x286f824d, 0x0100e04e, 0x0100cc50, 0x244b8252, 0x01006453, 0x2c2f8254, + 0x0100dc55, 0x0100f456, 0x01000858, 0x204b8259, 0x202b825a, 0x2897825b, 0x0100105d, 0x0100a45e, 0x24bf8260, 0x01008061, 0x203b8262, 0x209b8263, + 0x20938265, 0x20af8266, 0x20338267, 0x20138268, 0x2087826a, 0x2487826b, 0x0100346d, 0x2417826e, 0x0100546f, 0x24a38271, 0x0100b472, 0x248b8274, + 0x01005c76, 0x288f8277, 0x01007c78, 0x0100ac79, 0x208f827a, 0x245f827c, 0x01000c7e, 0x282f827f, 0x01009880, 0x0100c481, 0x24338283, 0x01008884, + 0x24378285, 0x01009c86, 0x24978287, 0x01001489, 0x206f828a, 0x2013828b, 0x2887828d, 0x0100b08d, 0x0100d88e, 0x2057828f, 0x28a78291, 0x01005093, + 0x01002c95, 0x202f8296, 0x20278298, 0x202f8299, 0x2027829a, 0x2007829b, 0x2053829b, 0x20eb829c, 0x203b829d, 0x28ef829f, 0x010074a0, 0x010070a2, + 0x287782a3, 0x010000a4, 0x010078a4, 0x20ef82a5, 0x20bf82a6, 0x203382a7, 0x230383a8, 0xa90100bc, 0xaa204782, 0xac202b82, 0xad28ff82, 0xae01003c, + 0xaf0100f8, 0xb024ff82, 0xb20100a8, 0xb3202382, 0xb4201f82, 0xb6247b82, 0xb7010064, 0xb9208f82, 0xba207f82, 0xbc20c382, 0xbe20e782, 0xbf305782, + 0xc00100f0, 0xc20100e4, 0xc4010094, 0xc501006c, 0xc624a382, 0xc70100c8, 0xc8282b82, 0xc9010090, 0xca010084, 0xcb202f82, 0xcc209b82, 0xcd20a382, + 0xce242382, 0xd00100d0, 0xd1285b82, 0xd1010038, 0xd20100e8, 0xd3248782, 0xd40100ec, 0xd520af82, 0xd5251782, 0xd60100ac, 0x82038220, 0x24d72437, + 0x82d80100, 0x82d92063, 0x82da204b, 0x60db2487, 0x82db0100, 0x40dc242f, 0x82dc0100, 0x82dd2033, 0x54de2433, 0x82df0100, 0x82e020df, 0x82e12037, + 0x82e220bb, 0xdce224f3, 0x82e30100, 0x82e4206f, 0x82e520b7, 0x68e624f3, 0x82e70100, 0x48e8281f, 0xd4e80100, 0x82e90100, 0x82e9204f, 0x82ea207b, + 0x82eb2037, 0x82ed20bb, 0x82ee204f, 0x82ee201b, 0x82ef20bb, 0x82f0201b, 0x82f020a7, 0xb4f1240b, 0x82f20100, 0x14f3240b, 0x82f30100, 0x5cf42453, + 0x82f50100, 0x82f62073, 0x82f72067, 0x58f82c17, 0x44f90100, 0x34fa0100, 0x82fb0100, 0x74fc249b, 0x82fd0100, 0x82fe203f, 0xe0fe24bf, 0x82ff0100, + 0xbcff2d57, 0x50000200, 0x48010200, 0x7c020200, 0xec230382, 0x82030200, 0xf4032507, 0x38040200, 0xcc240382, 0x20050200, 0x98240382, 0x28060200, + 0x07820382, 0x00180725, 0x826c0702, 0x00c42303, 0x07820802, 0x33820820, 0x009c0928, 0x00300a02, 0x2b820b02, 0x00f00b24, 0x17820d02, 0x00140e25, + 0x82840e02, 0x00f82303, 0x0f820f02, 0x00dc0f24, 0x07821002, 0x00901125, 0x82b41202, 0x30178203, 0x0200a413, 0x0200c814, 0x02007415, 0x02003416, + 0x208b8217, 0x23038318, 0x190200e8, 0x1b203b82, 0x1c207382, 0x1c248782, 0x1d0200d4, 0x1d200f82, 0x1e204382, 0x1f206782, 0x1f208382, 0x20287782, + 0x20020054, 0x210200e4, 0x22201b82, 0x23252b82, 0x2402002c, 0x82038200, 0x82272057, 0x82272007, 0x4428258b, 0x24290200, 0x67820382, 0x00b82a24, + 0xc3822b02, 0x00c02c2d, 0x00b02d02, 0x00882e02, 0x82042f02, 0x200b8203, 0x20778230, 0x200b8231, 0x284f8231, 0x0200d032, 0x0200a033, 0x20478234, + 0x24478236, 0x02005837, 0x28238238, 0x0200083a, 0x0200a83a, 0x2053823b, 0x2027823b, 0x2877823c, 0x0200bc3d, 0x0200703e, 0x20d3823f, 0x201f8240, + 0x20ab8240, 0x205f8241, 0x244b8243, 0x02006044, 0x20b38244, 0x24278245, 0x02009446, 0x20e38247, 0x20178248, 0x28338248, 0x02001049, 0x0200c449, + 0x20c7824a, 0x297b824c, 0x0200904d, 0x02007c4e, 0x03821c4f, 0x50209782, 0x51207f82, 0xe0230383, 0x82520200, 0x645221bf, 0x8f820782, 0x0b825320, + 0x17825320, 0x17825320, 0x0b825420, 0x8f825420, 0x006c5524, 0x43825602, 0x00ac5624, 0x5f825802, 0x00185924, 0x9f825902, 0x2f825a20, 0x53825b20, + 0x00405c2c, 0x00fc5c02, 0x004c5e02, 0x5b825f02, 0x07826020, 0x00e86024, 0x3b826102, 0xb3826320, 0x23826420, 0x009c6524, 0x83826602, 0x1f826720, + 0x00306824, 0xc7826802, 0x00786924, 0x8f826a02, 0xcf826a20, 0x7f826b20, 0x00b86b24, 0xb7826c02, 0x82686c21, 0x24c38207, 0x0200386d, 0x2007826d, + 0x205f826e, 0x2533826f, 0x02002070, 0x03825471, 0x72208782, 0x73202b82, 0x74203782, 0x75208382, 0x78205782, 0x79206782, 0x79283782, 0x7a0200f8, + 0x7b0200dc, 0x7b201782, 0x7c20fb82, 0x7d242782, 0x7f0200f0, 0x7f284b82, 0x800200d0, 0x810200d8, 0x8220db82, 0x83246f82, 0x840200b0, 0x85249b82, + 0x85020058, 0x86204b82, 0x87203f82, 0x88200b82, 0x88206782, 0x89206382, 0x89243382, 0x8a0200c4, 0x8b28fb82, 0x8c020094, 0x8d02006c, 0x8e241782, + 0x8e020034, 0x8f209782, 0x90200b82, 0x91240b82, 0x91020028, 0x92206f82, 0x9220a382, 0x93204782, 0x9424ff82, 0x94020004, 0x9524f382, 0x960200b4, + 0x97206382, 0x97290f82, 0x9802008c, 0x99020014, 0x8203820c, 0x829b20a3, 0x829c20b7, 0x449d2553, 0x489e0200, 0x8f820382, 0x00889f28, 0x00c8a002, + 0x2382a202, 0x7782a320, 0x00a0a428, 0x0010a602, 0x4382a702, 0xb382a820, 0x2782a920, 0xd382a920, 0x002caa24, 0x5f82aa02, 0x1b82ab20, 0x5b82ac20, + 0x00d4ac24, 0x5b82ae02, 0x5382ae20, 0x8782af20, 0x6b82b020, 0x1b82b120, 0x5382b120, 0xff82b220, 0x00f4b32c, 0x00ecb402, 0x00a8b502, 0x2382b602, + 0x6782b720, 0x0f82b820, 0x7f82ba20, 0x8b82bb20, 0x1782bc20, 0x00fcbd24, 0x3782be02, 0xb382bf20, 0xd382c120, 0x0040c229, 0x0070c302, 0x8218c402, + 0x25238203, 0x02003cc6, 0x038208c7, 0xc8249f82, 0xc9020094, 0xca201b82, 0xcb248382, 0xcc0200bc, 0xcd203782, 0xce209f82, 0xcf200f82, 0xcf24ff82, + 0xd00200c4, 0xd1245382, 0xd20200a4, 0xd3204b82, 0xd4207f82, 0xd5200b82, 0xd6207b82, 0xd7202b82, 0xd9201b82, 0xda202f82, 0xdb202b82, 0xdc24eb82, + 0xdd020044, 0xdf20b782, 0xe0207382, 0xe024cf82, 0xe1020098, 0xe2201b82, 0xe2206f82, 0xe5243782, 0xe5020034, 0xe6204382, 0xe720b782, 0xe8202382, + 0xe828db82, 0xea0200a0, 0xeb02001c, 0xec20af82, 0xed28ff82, 0xee0200ac, 0xef0200d0, 0xf020ab82, 0xf1207382, 0xf2202b82, 0xf4201782, 0xf5247382, + 0xf60200cc, 0xf720a782, 0xf8209f82, 0xf924b782, 0xfa020080, 0xfb391782, 0xfd0200ec, 0xfe020078, 0x000300d4, 0x01030040, 0x02030044, 0x03030034, + 0x3003821c, 0x040300c0, 0x0503005c, 0x06030068, 0x07030048, 0x27038230, 0x080300e0, 0x0a0300d0, 0x0a200b82, 0x0b250b82, 0x0c030090, 0x2403823c, + 0x0d0300e8, 0x82038280, 0x040f2907, 0x38100300, 0x60110300, 0xdc2b0382, 0x78120300, 0xb8130300, 0x82140300, 0x8215201f, 0x2016254f, 0x0c170300, + 0xcc280382, 0xa4180300, 0x54190300, 0xf82b0382, 0xf41a0300, 0x081c0300, 0x821d0300, 0x821e2037, 0x821e205f, 0xa01f2813, 0x94200300, 0x82210300, + 0x58222437, 0x82230300, 0xac232817, 0x64240300, 0x82250300, 0xb42524a7, 0x82260300, 0x822620ab, 0x8227208b, 0x4c282467, 0x82290300, 0x822a20ab, + 0x822b2007, 0x822c2047, 0x822d2003, 0x82302077, 0x7432243b, 0x82340300, 0xa83528ab, 0x50370300, 0x82380300, 0x8238201b, 0x823a2083, 0xc43a242f, + 0x823b0300, 0xfc3c24ab, 0x823d0300, 0x823e20ab, 0xbc3f24d7, 0x82400300, 0x8241200b, 0xb0422463, 0x82430300, 0x82442077, 0x7046248b, 0x82470300, + 0xd048247f, 0x82490300, 0x82492043, 0x8c4a24c3, 0x824b0300, 0x824c208f, 0x984e282b, 0x004f0300, 0x82500300, 0x825020cb, 0x8251200f, 0x8252206f, + 0x82532003, 0x40542433, 0x82550300, 0xc85528af, 0x28570300, 0x82580300, 0x82592033, 0x825920d3, 0x825a2043, 0xc05a254b, 0x205b0300, 0x84200382, + 0xe8230382, 0x825c0300, 0x825d2083, 0x685e241b, 0x825e0300, 0x825f20e3, 0x046024c7, 0x82600300, 0x5c61248f, 0x82620300, 0x82622063, 0x82632027, + 0x4464257f, 0x24650300, 0xcb820382, 0x00d86624, 0xf7826703, 0x0f826820, 0x00a06824, 0x73826903, 0x5b826920, 0xeb826a20, 0x00546b28, 0x00ec6b03, + 0x8f826c03, 0x00f06c24, 0x83826e03, 0x43826e20, 0x27826f20, 0x8b827020, 0x73827020, 0x005c7124, 0x43827103, 0x93827220, 0x23827220, 0xd3827320, + 0x003c742c, 0x00e47403, 0x00947503, 0xbf827603, 0x00d47724, 0x2b827803, 0x17827a20, 0x23827a20, 0xf3827c20, 0x00cc7c30, 0x009c7d03, 0x00387e03, + 0x002c7f03, 0xcb828003, 0x53828120, 0x7f828220, 0xbb828320, 0x53828320, 0xbb828420, 0x07828420, 0x4b828520, 0x87828620, 0x00748824, 0xdf828903, + 0x00dc8928, 0x00fc8a03, 0x13828b03, 0x6f828c20, 0x00888d24, 0x87828e03, 0x007c8f24, 0x13829003, 0x53829220, 0x00189324, 0xe7829403, 0x00049524, + 0x7b829503, 0x27829620, 0x0f829720, 0xd3829820, 0x07829920, 0xc7829920, 0x83829a20, 0x00849b24, 0x3b829c03, 0x008c9d28, 0x00f89e03, 0x4382a003, + 0x006ca124, 0xeb82a203, 0xb782a220, 0x6f82a320, 0x2f82a420, 0x4f82a520, 0x0008a628, 0x0070a703, 0xa782a803, 0xa382a920, 0xab82aa20, 0xcf82aa20, + 0x00a4ac24, 0x0382ad03, 0x2782ae20, 0xcb82af20, 0x00bcb024, 0xdb82b103, 0x00e0b228, 0x000cb403, 0x1382b503, 0x3b82b620, 0x00c8b724, 0x0782b903, + 0xd382b920, 0x7382bb20, 0x00f4bb30, 0x00b4bc03, 0x00c0bd03, 0x00a0be03, 0xa382bf03, 0x1382c020, 0x00a8c124, 0x4b82c203, 0x9f82c220, 0xf382c420, + 0x0040c528, 0x0048c603, 0x3b82c803, 0x1f82c820, 0xa782c920, 0x1b82ca20, 0x00d0cb24, 0xfb82cc03, 0x0090cd24, 0xc782ce03, 0x6b82cf20, 0x1b82cf20, + 0x5f82d020, 0x1b82d320, 0xb382d520, 0x0060d628, 0x0080d703, 0x3f82d803, 0x6782d920, 0xdb82da20, 0x0010db24, 0x4b82dc03, 0x00e4dc28, 0x0094de03, + 0xbb82df03, 0x1782e020, 0x0038e124, 0xff82e203, 0xbf82e320, 0x00cce428, 0x0050e503, 0x3382e603, 0x9b82e720, 0x0054e828, 0x00ece803, 0x6f82e903, + 0x0b82ea20, 0x0014eb24, 0xd782ec03, 0x003ced24, 0x9f82ef03, 0x00dcef28, 0x00e8f003, 0xe382f103, 0x8f82f220, 0x1b82f320, 0x4782f420, 0x8b82f520, + 0x1782f620, 0x2782f820, 0x7382f920, 0xa782fa20, 0x004cfb24, 0xeb82fc03, 0x005cfd35, 0x0028fe03, 0x0024ff03, 0x00a40004, 0x00500104, 0x82340204, + 0x00ec2803, 0x00900304, 0x82180504, 0x00a83f03, 0x00b80604, 0x00b40704, 0x00f80804, 0x00cc0904, 0x00840a04, 0x00380b04, 0x000c0d04, 0x3b820e04, + 0x00d40e25, 0x82041004, 0x00b02b03, 0x00e41104, 0x00881204, 0x1b821404, 0x00c81528, 0x00741604, 0x37821704, 0x23821820, 0x00c01931, 0x00e81a04, + 0x00fc1b04, 0x009c1c04, 0x825c1d04, 0x00d82f03, 0x00dc1e04, 0x00f41f04, 0x00ac2004, 0x73822204, 0x0044232c, 0x007c2404, 0x00782504, 0x87822604, + 0x006c2728, 0x00a02804, 0x9f822904, 0x57822a20, 0x57822a20, 0x00f02b24, 0x67822d04, 0x00942e24, 0x0b822f04, 0x4f823020, 0x00543124, 0x23823204, + 0x00303424, 0x73823404, 0x00003624, 0x6b823604, 0xaf823720, 0x00d03824, 0x5b823a04, 0x6f823b20, 0x00483d24, 0x03823e04, 0x004c3f24, 0x3b824004, + 0xef824220, 0x00244424, 0x77824504, 0x00284724, 0x73824804, 0x8f824a20, 0x00344c24, 0x5f824d04, 0x1f824e20, 0x03824f20, 0x00585124, 0x7b825204, + 0x00bc5324, 0xc7825404, 0x00985524, 0x6f825704, 0x57825920, 0xfb825a20, 0x0f825c20, 0x3f825f20, 0xaf826120, 0x00606224, 0x33826304, 0x00046524, + 0x8b826504, 0x0f826720, 0x2b826820, 0x00646924, 0x97826a04, 0x00146b24, 0x93826b04, 0x00e06c24, 0xe7826d04, 0x00206e24, 0x73826e04, 0x93827020, + 0x37827020, 0xef827120, 0x00b87228, 0x00cc7304, 0xe7827404, 0x00687524, 0x07827604, 0x00a87724, 0x13827804, 0x00107a24, 0x73827b04, 0x00c07c24, + 0x53827d04, 0xbf827e20, 0x4b827f20, 0x009c8024, 0xdb828104, 0x47828220, 0x00308324, 0x9b828404, 0x00548524, 0x6b828604, 0xcb828720, 0x07828820, + 0x00788928, 0x00848a04, 0x3b828b04, 0x3b828c20, 0x23828d20, 0x73828e20, 0x3b828f20, 0x00709128, 0x00409204, 0xb7829304, 0x001c9424, 0x3b829504, + 0x004c9624, 0x37829704, 0xc7829820, 0x5b829a20, 0x2b829a20, 0xab829b20, 0x6f829c20, 0x00b49d2c, 0x00d49e04, 0x000ca004, 0x9382a104, 0x00c4a128, + 0x008ca204, 0x3782a304, 0x0034a428, 0x0090a504, 0x2b82a604, 0x7b82a720, 0x0f82a820, 0x002caa24, 0xcb82ac04, 0x0060ae24, 0x0b82af04, 0x00a4b124, + 0x3f82b204, 0x00e4b324, 0xef82b404, 0x0f82b520, 0x00e8b624, 0x9782b904, 0x00dcba2c, 0x00a0bc04, 0x0038bd04, 0x8382bf04, 0x1382c020, 0x00f0c024, + 0x2382c104, 0xef82c320, 0x00acc424, 0x8b82c504, 0xb382c720, 0x6f82c920, 0x5382cb20, 0x8f82cc20, 0x00bccf28, 0x0074d004, 0x3b82d104, 0xe382d420, + 0x0028d624, 0x5382d804, 0x4f82db20, 0x1382dc20, 0x005cdd2c, 0x0050de04, 0x0044df04, 0xb782e004, 0x0782e120, 0x0088e224, 0x7f82e304, 0x0084e424, + 0x9f82e504, 0x0058e624, 0x0382e704, 0x0f82e820, 0x6f82e920, 0x7f82eb20, 0x2782ec20, 0x001cee2c, 0x00d0ee04, 0x00d8ef04, 0xbf82f104, 0xeb82f220, + 0x0782f320, 0x5782f420, 0x8782f520, 0x3382f620, 0x7f82f720, 0x1382f920, 0x7782fb20, 0x7382fb20, 0xdf82fc20, 0x3782fe20, 0x00e8fe30, 0x00400105, + 0x00e40205, 0x00440405, 0x0b820505, 0x00000638, 0x00640905, 0x00800a05, 0x00bc0b05, 0x007c0d05, 0x009c0e05, 0x13820f05, 0x00981024, 0x07821105, + 0x00dc112c, 0x00341305, 0x00741505, 0x07821605, 0x00601729, 0x00201805, 0x82681905, 0x00a02703, 0x00501b05, 0x2b821c05, 0x43821e20, 0x008c1f2d, + 0x005c2005, 0x00c42105, 0x82102305, 0x203b8203, 0x20778225, 0x20138227, 0x24238228, 0x0500b029, 0x2463822b, 0x0500b42d, 0x2847822f, 0x05003830, + 0x05001431, 0x244f8232, 0x0500d033, 0x202b8234, 0x20178236, 0x20778238, 0x206f8239, 0x200f823a, 0x293b823c, 0x05004c3d, 0x05000c3e, 0x0382043f, + 0x41245b82, 0x420500b8, 0x43242f82, 0x450500c0, 0x46248782, 0x47050084, 0x48208782, 0x49204782, 0x4a202b82, 0x4b245782, 0x4d0500f0, 0x4e24e382, + 0x4f05003c, 0x50242b82, 0x520500ac, 0x53200f82, 0x53242f82, 0x550500d4, 0x56204782, 0x56201b82, 0x57208b82, 0x5820bb82, 0x5924af82, 0x5a0500e0, + 0x5b205382, 0x5c2c4b82, 0x5c05002c, 0x5d0500cc, 0x5e0500f4, 0x60203f82, 0x61203b82, 0x62285382, 0x630500e4, 0x640500fc, 0x652c3f82, 0x670500c8, + 0x68050018, 0x69050054, 0x6a209382, 0x6c200382, 0x6d20df82, 0x6f251782, 0x71050078, 0x8203821c, 0x8272205f, 0x08742447, 0x82750500, 0x827620d7, + 0x82762007, 0x827720d7, 0x82782083, 0xb07830ab, 0xa0790500, 0x987a0500, 0x8c7b0500, 0x827c0500, 0x827d209f, 0x827e2013, 0x287f246f, 0x82800500, + 0x8281208b, 0x828120f7, 0x82822047, 0xa484288b, 0x34850500, 0x82860500, 0xdc862447, 0x82870500, 0x82882073, 0x588a24b7, 0x828b0500, 0x828c201f, + 0x908d240f, 0x828e0500, 0x9c8f2447, 0x82900500, 0x82912047, 0x6c92287f, 0x5c960500, 0x82970500, 0x829920bb, 0x8299204f, 0x889b24c7, 0x829c0500, + 0x829c200b, 0x829e206f, 0x609f24b7, 0x82a00500, 0x82a1208b, 0x30a3281b, 0x74a40500, 0x82a50500, 0x48a7245b, 0x82a80500, 0x82a92053, 0x82aa20af, + 0x82aa2093, 0x82ab20bb, 0x82ac200b, 0x82ad2003, 0x84ae2433, 0x82af0500, 0x00260837, 0x01c0ff00, 0x00c00180, 0x000d0006, 0x001b0014, 0x37000035, + 0x27370737, 0x33171131, 0x31273323, 0x27173707, 0x06821117, 0x23332331, 0x25373117, 0x31313736, 0x31213736, 0x82161716, 0x07062c16, 0x31210706, + 0x27262726, 0x825a4011, 0xb3272700, 0x595ab3b3, 0x00825980, 0x0a823320, 0xfe5a592d, 0x0e0d01e6, 0x14200114, 0x83010d0e, 0xe0fe2109, 0x3a210983, + 0x21008286, 0x0682f4fe, 0x0882c020, 0x860c0122, 0x10200682, 0x60202288, 0x01220987, 0x008200a0, 0x13000226, 0x6d00e0ff, 0x153e0c82, 0x00002200, + 0x31273413, 0x22232631, 0x11150607, 0x16171431, 0x36373233, 0x36031135, 0x85823637, 0x97828f82, 0x09096025, 0x82090e0e, 0x26058300, 0x0a0c1720, + 0x85170c0a, 0x80012105, 0xff211785, 0x29078500, 0x60fe0001, 0x14141301, 0x05850113, 0x002a6f85, 0xc001deff, 0x6a00a101, 0x6f827300, 0x3117162a, + 0x07071631, 0x37313331, 0x3620f982, 0x0d855f82, 0x16173229, 0x06071415, 0x83312323, 0x820d8b1b, 0x238b8285, 0x31373726, 0x0d8b1b83, 0x26272228, + 0x36373435, 0x4b823333, 0x8b312321, 0x3736270d, 0x07171736, 0x19840737, 0x070eb52b, 0x5f0a0107, 0x0b0a030b, 0x220a820d, 0x853a0902, 0x154521ae, + 0x1a890887, 0x0d222585, 0x25970708, 0x15150628, 0x5f155f15, 0x4d83a001, 0x82453b21, 0x8401204f, 0x05244109, 0x06858020, 0x09821689, 0x96020821, + 0x80a02120, 0x00200082, 0x21080082, 0xff0a0001, 0x013401c0, 0x008200c0, 0x17321300, 0x15163131, 0x33323115, 0x31163130, 0x17163117, 0xf5830716, + 0x26312722, 0x17200783, 0x17230f82, 0x83323117, 0x830b8317, 0x32038213, 0x07143115, 0x27222306, 0x31353526, 0x31302330, 0x82303123, 0x27262101, + 0x37230184, 0x84363736, 0x83162037, 0x20138409, 0x821f8427, 0x8221892f, 0x31352f1b, 0x33363734, 0x09090ea0, 0x30010302, 0xbb82070d, 0x0e0a0b3d, + 0x1c1e302f, 0x02040301, 0x0331180b, 0x18171601, 0x0c0e1614, 0x12110606, 0x85181419, 0x01013aef, 0x151a1913, 0x0504050c, 0x0d0b0c06, 0x10151511, + 0x02191b31, 0x0a030302, 0x82318219, 0x14172b32, 0x070d0d16, 0x19131305, 0x32821714, 0x82c00121, 0x01242304, 0x5c820308, 0x07070d3e, 0x0d070802, + 0x050f100c, 0x0c0f0706, 0x08080501, 0x1b1a0e0c, 0x13131d20, 0x2103080a, 0x3505aa41, 0x07070323, 0x0c0c0609, 0x05040d0c, 0x05060805, 0x0b0b0603, + 0x30831012, 0x88010b21, 0x841c2031, 0x82232031, 0x00220831, 0x00030000, 0x01f7ff00, 0x00890180, 0x00220015, 0x0100002f, 0x31313536, 0x23262734, + 0x31010722, 0xeb421506, 0x07012a05, 0x07262726, 0x17160706, 0x20fd8216, 0x270c8c01, 0x0a090977, 0xfe0a0d0d, 0x0783ab82, 0xf7400128, 0x20201f01, + 0x0586011f, 0x0d8c0020, 0x22834920, 0xfe090923, 0x280785c0, 0x24094001, 0x13121213, 0x21058524, 0x0d8b00ff, 0xff01002b, 0x01e0fffe, 0x00a00182, + 0x0aef414a, 0x36313722, 0x2006cf41, 0x0cf54107, 0x230bd941, 0x27063107, 0xab82a482, 0x27313723, 0x23098531, 0x31171736, 0x2005b741, 0x33fa82c0, + 0x0c0d0b70, 0x03030707, 0x0b73720c, 0x08060303, 0x700b0d0c, 0x2105a441, 0x19870c6f, 0x030c7225, 0x86070703, 0xa0012119, 0x88211e82, 0x82328343, + 0x4408223a, 0x20188245, 0x213a830c, 0x7b418743, 0x42872105, 0x07211b86, 0x201b8345, 0x213c830b, 0x1b828843, 0x0001002e, 0x01f0ff10, 0x009001b0, + 0x01000031, 0x25094944, 0x31233115, 0x63410722, 0x31332105, 0x5744bf82, 0x31353006, 0x37323133, 0x27343536, 0x31232326, 0x85000135, 0x85902098, + 0x8d902067, 0x7001210d, 0x24861694, 0x00020030, 0x01e0ff00, 0x00a00140, 0x002c0015, 0x49451300, 0x17163205, 0x31151716, 0x07060706, 0x27262726, + 0x07063735, 0x210d8231, 0x17833115, 0x36373625, 0x83313537, 0x02002817, 0x44442d2d, 0x87022d2d, 0x29a02807, 0x01011b1b, 0x87291b1b, 0x00012107, + 0x80201e87, 0x60200888, 0x80202083, 0x08842187, 0xf6820020, 0x82feff21, 0x01002487, 0x822900a5, 0x215d8285, 0x71820707, 0x87820620, 0x37371624, + 0x09411131, 0x8933200b, 0xa01130fb, 0x10111001, 0x03020b60, 0x0c0d0807, 0x85402e0c, 0x606021eb, 0x40270785, 0x09138001, 0x83400a09, 0x2223831b, + 0x45dcfe1f, 0x01210b84, 0x20778360, 0x24ff86fb, 0x13000030, 0x20758322, 0x05014523, 0x36313723, 0x20ef8337, 0x21138206, 0x49453133, 0x83212007, + 0x219182f9, 0xa3823736, 0x228f2724, 0xa9421e18, 0x2b1f2a05, 0x29283e3c, 0x89290102, 0x307b85b3, 0x091500ff, 0x17bf0e07, 0x17170101, 0x18600122, + 0x0506431f, 0x012a1e29, 0x3e282902, 0x85882b3c, 0x13012b89, 0x18be1013, 0x17172222, 0xcf420001, 0x01402f05, 0x004400a0, 0x37341300, 0x33363131, + 0x83823133, 0x8b858184, 0x23070623, 0x239f8231, 0x26312727, 0x20068d44, 0x20218217, 0x85ab8233, 0x86232091, 0x2125849f, 0x64820035, 0x0915f038, + 0x16840f07, 0x0127263a, 0x3a262701, 0x1b1a204f, 0x0405020f, 0x00820c04, 0x0d02072d, 0x141f4f1d, 0x14010114, 0x84681f14, 0x829e2028, 0x800121be, + 0x13230483, 0x83780f15, 0x22398331, 0x831d1011, 0x83072030, 0x19042137, 0x36842e84, 0x63822383, 0xbb820020, 0xe0fffc28, 0xa2018001, 0xbb823900, + 0x31273622, 0x07278783, 0x31030706, 0x82161706, 0x18bd42c5, 0x27064b44, 0x31151506, 0xbd373123, 0x0d296083, 0x80060c0c, 0x110a0907, 0x052341e0, + 0x51412020, 0x85202005, 0x6bae230d, 0x21837201, 0xfe252983, 0x0f0f10f0, 0x201e8550, 0x0df74250, 0x4100e221, 0x3f200a4f, 0x37209383, 0x4709c541, + 0x5141051d, 0x27222827, 0x21373726, 0x85c01906, 0x15a52268, 0x074c4172, 0x181f5325, 0x41050d19, 0x0424074c, 0x1f53190b, 0x29064c41, 0x090a0f98, + 0x86012102, 0x96850218, 0x49417020, 0x0f102707, 0x0c0c091a, 0x3483070c, 0x41150821, 0x0b230849, 0x47b00f0c, 0xe02807e7, 0xa1014001, 0x3c002100, + 0x280c4941, 0x07063107, 0x15141514, 0x08854331, 0x26272628, 0x14173727, 0x19823107, 0x82230621, 0x05c747a5, 0x33363724, 0xdb821732, 0x09e8152b, + 0x0b0a0101, 0x91090c0d, 0x08a24325, 0x2b2a022e, 0x0d183f40, 0x1917160d, 0x0d161719, 0x09870082, 0x836b0121, 0x2632832a, 0x01392bac, 0x43020101, + 0x422707b1, 0x4b052d2c, 0x85161aeb, 0x1a16212d, 0xb0820989, 0x0000012a, 0x4401deff, 0x1e00a001, 0x2008b342, 0x21a18321, 0x95830307, 0x2623a182, + 0x42311337, 0x0128098d, 0x080a1200, 0x0c08e008, 0x03240082, 0xc8c40603, 0x25086e42, 0xfe10100f, 0x13820c80, 0x0c0d0728, 0x0950010c, 0x5e820e09, + 0x44030021, 0x222e089f, 0x63004400, 0x26010000, 0x26313127, 0x5d832327, 0x17160726, 0x15060706, 0x1720eb82, 0x20050143, 0x256f8234, 0x33073736, + 0xdb413323, 0x84262009, 0x37362413, 0x82303133, 0x23058501, 0x31313035, 0xdc470c82, 0x37362109, 0x34872083, 0x0130012f, 0x20362524, 0x01242536, + 0x0e182301, 0x200d830e, 0x310d8340, 0x23180e0e, 0x10108001, 0x12121b10, 0x12120101, 0x0887401b, 0x20201022, 0x08880a87, 0x41850120, 0x35244a82, + 0x1b1a1224, 0x20260d88, 0x24121a1b, 0x3f838035, 0x07833387, 0x108f4020, 0x2f070f42, 0x014001df, 0x001a00a0, 0x13000038, 0x31311714, 0x3321a682, + 0x21b08232, 0xef833536, 0x22232628, 0x06070607, 0x18411715, 0x82c98305, 0x14172320, 0x42450615, 0x23fe8205, 0x40373726, 0x2313f241, 0x2a2b4158, + 0x2d081942, 0x09912403, 0x0a0b0d0c, 0x40080101, 0xee410001, 0x05a02413, 0x42422c2d, 0x04240715, 0xac2a3704, 0x09202c82, 0x4b383483, 0x00000100, + 0x8201feff, 0x1e008201, 0x16010000, 0x06313107, 0x05310507, 0x9d83ab83, 0x25272608, 0x36272631, 0x36312537, 0x01171617, 0x0404057d, 0x01fafe0c, + 0x04040c06, 0x0c0c0705, 0x11c0fe0c, 0x01110101, 0x220a8240, 0x836e0107, 0x83832105, 0x1f831783, 0x130aa025, 0x83a00a13, 0x050f4131, 0x4000102e, + 0x4001b001, 0x2b001500, 0x22130000, 0x15256983, 0x33161714, 0x08134721, 0x94152121, 0x43302015, 0x012005be, 0x21061c46, 0x0f8fa0fe, 0x46400121, + 0xc0200b1d, 0x00230c8b, 0x82feff01, 0x858020df, 0x061323df, 0xd9823117, 0xdb4bdf83, 0x83162005, 0x263721d9, 0x0723e583, 0x83030706, 0x070123ac, + 0xbe83f9fe, 0x0121c683, 0x21de8340, 0xde9ec0fe, 0x1000022c, 0x3001e0ff, 0x3c00a001, 0x8b474900, 0x82332008, 0x058d4769, 0x06310723, 0x0b474507, + 0x37373427, 0x36373631, 0x058d4735, 0x49051143, 0x3622058f, 0x7a4c1335, 0x0150240b, 0x421b1212, 0x1c230596, 0x8501272b, 0x2a0b24d8, 0x42100f1c, + 0x138508e7, 0x964c5020, 0x08c8420c, 0x13220426, 0x01301a1c, 0x2b062f41, 0x121b080d, 0x03221c1c, 0x01242536, 0x16853f83, 0x4cc0fe21, 0x022f0cb2, + 0xc0ff0000, 0xc0010002, 0x5d005000, 0x48010000, 0x16230541, 0x47171617, 0x26210749, 0x07994327, 0x48056747, 0x75480971, 0x05c84205, 0x83333621, + 0x4815202f, 0x37830cfd, 0x634a1720, 0x5200280c, 0x02023636, 0x85523636, 0x39482b8b, 0x0122223a, 0x3a222201, 0x0b864839, 0x291b1b26, 0x33241c2d, + 0x2b23b387, 0x4d0d0820, 0x3883088c, 0x864a4020, 0x8380200c, 0x41538312, 0x498c0516, 0x202c5584, 0x011b1b29, 0x01212101, 0x36252401, 0x17215484, + 0x202b8208, 0x07aa4650, 0xc0203b83, 0x3a0cac4a, 0x02000000, 0xdefffeff, 0xa0018201, 0x28002100, 0x26130000, 0x03070627, 0x48310731, 0x362405e5, + 0x33313737, 0x2005b14a, 0x3dfb8237, 0x03312727, 0x23332313, 0xde173137, 0x08151509, 0x04052878, 0x0c0c0d05, 0xc61f060c, 0xc24b061f, 0x78283006, + 0x9090902b, 0x8c014848, 0x13010113, 0x8260e0fe, 0x04062117, 0x4c252782, 0x04050d4c, 0x26268304, 0xfe200160, 0x45adadf4, 0x1f240d4b, 0x3e002f00, + 0x95418182, 0x31152305, 0x43453115, 0x2726250f, 0x17232726, 0x35207f82, 0x17459482, 0x0d584507, 0xfc443520, 0x36802e08, 0x11012425, 0x011d1c11, + 0x36252401, 0x44008460, 0x0c8207d9, 0x0b878020, 0xa0018028, 0x1b121201, 0x1084a0a0, 0x23252a82, 0x22111d1d, 0x203d8330, 0x080e45c0, 0x20080645, + 0x25b38380, 0xfff9ff01, 0x388201e0, 0x002c0027, 0x23260100, 0x08114b31, 0x42373221, 0xaf4d051b, 0x26272306, 0x118c3637, 0x31490127, 0x2f313c3c, + 0x2f05832f, 0x090d0d0a, 0x56440a0a, 0x0f2c4456, 0x2c0f0e0e, 0x0a260983, 0x0d0d090a, 0x2183010a, 0x82404021, 0x09092105, 0x0a242582, 0x392d4141, + 0x2c280082, 0x0c0a4242, 0x09090a0d, 0x83099347, 0x001b2283, 0x0e97432b, 0x06171623, 0x2c018307, 0x27263123, 0x33112726, 0x11233323, 0x098e4931, + 0xef830020, 0x323f602d, 0x011e1d33, 0x331d1e01, 0x83603f32, 0x60a021fb, 0x49450082, 0x84012007, 0x861d8512, 0x12122629, 0xfe40011b, 0x07574bc0, + 0x01218482, 0x07a74b00, 0xb7413520, 0x09114b12, 0x4c0e1b4c, 0xae410b29, 0x42e02008, 0xe02005f9, 0x20060045, 0x410f87a0, 0x874f0b9d, 0x068e4f0c, + 0x00208682, 0x2d208789, 0x7744878c, 0x857f9f07, 0x49799657, 0xa0200660, 0x00207c8c, 0xc0247386, 0x3a00a001, 0x894c7388, 0x0baf5007, 0xe14f3220, + 0x44072005, 0x07201059, 0x2005ed50, 0x077141e0, 0x2b2b3b24, 0x04417d0c, 0x14902805, 0x09010e0e, 0x415a3e3e, 0x582d0ba3, 0x01010a3d, 0x0d0c0a09, + 0x013f2c0a, 0x07854160, 0x23240123, 0x26998538, 0x58170e0e, 0x41023a39, 0x02250bb2, 0x0d0d0937, 0x2136830a, 0x27410128, 0x01802a09, 0x003200a0, + 0x35152500, 0x09204115, 0xf24a3520, 0x3121210a, 0x11200d89, 0x22083852, 0x46213135, 0xff200d8b, 0x8506e24d, 0x0001227e, 0x410082c0, 0x80200dc4, + 0x20064352, 0x200786fe, 0x0c3342c0, 0x29473120, 0x4d33200c, 0x37470c4f, 0x82232009, 0x0a594e17, 0x4d06cb44, 0x0121074c, 0x0d5c4d00, 0x8e85db82, + 0x2947fe20, 0x8cb8870c, 0x002a237f, 0x8f510100, 0x4e112005, 0x31210955, 0x06af4334, 0x2009574e, 0x20138411, 0x41798301, 0x63850775, 0x8207544e, + 0xa001210d, 0xff200482, 0x8608584e, 0x059045a5, 0x291b1b22, 0x6e82a684, 0xff000029, 0x014201de, 0x503500a0, 0x07220cb3, 0x72410731, 0x0b4f470c, + 0x7d453720, 0x01372a0c, 0x0a0a0937, 0x9b0a0d0c, 0x8583852e, 0x85412e05, 0x0b0d0c08, 0x0803020b, 0x6a01898c, 0x241f820a, 0x2fa00a09, 0x051b41b9, + 0x78f8fe22, 0x6b270885, 0x030bc043, 0x82080802, 0x8dcb222a, 0x22008200, 0x4e200001, 0x1e200667, 0x2108ab50, 0x914c3111, 0x2722230b, 0xff853526, + 0x43824020, 0x43060a43, 0xf384069a, 0x1743fe20, 0x21878206, 0x22828001, 0x20081743, 0x05b94fa4, 0x31171722, 0x2005fb50, 0x08c35211, 0xed821120, + 0x22230625, 0x8b312727, 0x37362913, 0xa50e1617, 0x16160ea5, 0x25060a48, 0x11110a85, 0xdf85850a, 0x0116012b, 0xf812059f, 0x080512f8, 0x074c4217, + 0xc8160127, 0xfec80e0e, 0x23db85ea, 0x08178001, 0xdc267b84, 0xa4018001, 0xcf822400, 0x01173622, 0xcf416182, 0x31112507, 0x27060706, 0x9b451183, + 0x26d78206, 0x15153736, 0x8607010f, 0x15142463, 0x87f9fe0f, 0x9e01270b, 0xc4fe1006, 0x5d852801, 0x1680fe29, 0x010f0608, 0x85d8fe3d, 0x8201200f, + 0x0000210f, 0x2606a750, 0x00a001c0, 0x4235001a, 0x1b5107cd, 0x05155105, 0x23050f51, 0x17232627, 0x4d05d446, 0x27210610, 0x07164636, 0x1716172d, + 0x25252be0, 0x16151516, 0x892b2525, 0x01e02c09, 0x35341e1d, 0x34353b3b, 0x8c011d1e, 0x8260200b, 0x2a262329, 0x3385262a, 0xa02a0986, 0x1f33333d, + 0x331f1e1e, 0x09893d33, 0x40209f87, 0x1f229f82, 0x23462e00, 0x051f460e, 0x240b7f52, 0x23331735, 0x26998333, 0x27262726, 0x46153123, 0x9e440526, + 0x06295607, 0x60604024, 0x50512960, 0x46602006, 0x14430524, 0x06c24a07, 0xc0e08022, 0x21071843, 0x838500c0, 0xc101bf22, 0x1e2d8382, 0x00004000, + 0x31171637, 0x36171631, 0x0b2b5037, 0x83052550, 0x49052091, 0x26200566, 0x82052141, 0x05e5472c, 0x55311721, 0x26230526, 0x83402727, 0x232c2d6e, + 0x01010848, 0x0d0d0a0b, 0x011f4709, 0x22080b45, 0x45443519, 0x0b850b31, 0x30350222, 0x2e212b87, 0x23cd83c0, 0x0b561401, 0x14833882, 0x372a5522, + 0xbd21df87, 0x060b4722, 0x5622418b, 0x6383393d, 0x0a212a82, 0x43cb8638, 0x2b2205bf, 0x69463b00, 0x20ac8218, 0x058b5517, 0x01512720, 0x0fb54809, + 0x121b4023, 0x06e84212, 0x08675f33, 0x0b0b0d0c, 0x54080203, 0x01181928, 0x3d292802, 0x27008470, 0x01161722, 0x22171601, 0x20050247, 0x069f46c0, + 0x43928021, 0x782a07c4, 0x2e232411, 0x0228293d, 0x2683a0e0, 0xf3502e83, 0x01d82605, 0x00a80144, 0x22a1846a, 0x82161706, 0x31302301, 0x07833316, + 0x07250382, 0x27060706, 0x0b415631, 0x48262321, 0x074b05a7, 0x85058205, 0x241582bd, 0x26313027, 0x05b94623, 0x17372623, 0x84cf8431, 0x8347874f, + 0x3736081b, 0x26310731, 0x041e6307, 0x0d040503, 0x0102381d, 0x171a1b19, 0x060d0e18, 0x45373a0e, 0x14191813, 0x01020405, 0x0405060d, 0x0d0b0c04, + 0x01010907, 0x0d141314, 0x2f912039, 0x83202021, 0x0b320831, 0x0d0c1615, 0x04030607, 0x0a0d0b0b, 0x050a1414, 0x01203905, 0x141b0d57, 0x12090a09, + 0x0907010e, 0x1d100f0a, 0x1840241e, 0x08030c16, 0x01020707, 0x57820501, 0x02225f83, 0xdb820103, 0x0e080222, 0x05282c90, 0x17174005, 0x0405010c, + 0x0d205584, 0x032b5d82, 0x1f020403, 0x000f081f, 0x49000001, 0x232006cb, 0x47108f46, 0x1120071e, 0x450bb148, 0x7e4806db, 0x06d94606, 0x4501a021, + 0xc04d0607, 0x05494409, 0x2a205f8a, 0x46086345, 0xdb55095b, 0x054d4c05, 0x2408d954, 0x36373431, 0x4b668333, 0x4a8507c7, 0x840afe4b, 0x36e0216d, + 0x4506eb4c, 0xe020068f, 0x83076f4c, 0x0887560f, 0x1e00a222, 0x36287782, 0x16313117, 0x13311317, 0x33089759, 0x07063103, 0x31032726, 0x37363726, + 0x0c0c0c14, 0x05838206, 0x0d2f0682, 0xa0040405, 0x08151509, 0x050405a0, 0x839d010d, 0xc7fe2305, 0x17823901, 0x1f830520, 0x1380fe27, 0x01130101, + 0x202a8280, 0x23638505, 0xa2014202, 0x8a055d44, 0x206b9063, 0x836b8323, 0x86222073, 0x15220873, 0x050c0b0d, 0x1708556e, 0x6e550817, 0x0d0b0c05, + 0x0405050d, 0x17160990, 0x08515107, 0x90091616, 0x7f820504, 0x05839e20, 0x01dafe2b, 0x01011624, 0x01dcfe16, 0x83258326, 0x80fe282d, 0x01150215, + 0x83e9fe17, 0x83802006, 0x00002d4b, 0xffff0100, 0x8101dfff, 0x3100a101, 0xef530c82, 0x57072009, 0x0725054f, 0x17060706, 0x0cdb4c17, 0x260bab43, + 0x08790137, 0x820a0101, 0x87092c89, 0x0d0d0987, 0x01010b0a, 0x448f8f08, 0x1384073c, 0x840a0b21, 0x6b012113, 0x21074144, 0x2583a2a2, 0x0d0d0925, + 0x44acab0b, 0xa321072a, 0x822583a3, 0xac0a2213, 0x0a8741ab, 0x00002526, 0x31272613, 0x2006e959, 0x0c3d4e17, 0x36313723, 0x053c4e27, 0x3a29ab82, + 0x0c0c0d08, 0x0802030a, 0x05f8419a, 0x02089a2c, 0x0c0c0a03, 0x8686080d, 0x17839301, 0xd7211f83, 0x058a4696, 0x83d79621, 0x22218319, 0x8200bcbc, + 0xff012a00, 0x01e0fffb, 0x00a00185, 0x0efb5226, 0xd9470120, 0x0531560a, 0x03530120, 0x1440270b, 0xfe0c0809, 0x5685fceb, 0x83c0fe21, 0x1501210e, + 0x01210e83, 0x25138280, 0x10131101, 0x9085b5fe, 0x0f220b82, 0x0c534c01, 0x00022105, 0x02270082, 0x00800100, 0x8269002b, 0x35152371, 0x0e4d2715, + 0x31372808, 0x33333137, 0x51173117, 0xe8480806, 0x5107200b, 0x152a0511, 0x16171431, 0x16313333, 0x0d553617, 0x230f8407, 0x35363732, 0x2b058a46, + 0x23263127, 0x31353123, 0x31073127, 0x23057f58, 0xc0233107, 0x24066f46, 0x01011f60, 0x4b0b871f, 0x64250cc9, 0x213b3b21, 0x20cf8524, 0x32068240, + 0x442d2d02, 0x0d091720, 0x13202013, 0x6017090d, 0x820c6001, 0x23328500, 0x0c04040c, 0x0c200986, 0xa0203185, 0x35830e82, 0x02022e22, 0x2f096b49, + 0x022d2d44, 0x042c0917, 0x17092c04, 0x00030000, 0x22074f50, 0x5b6a002c, 0x37200cdf, 0x20089b57, 0x22b58227, 0x82072323, 0x552220b9, 0x33200509, + 0x2007d159, 0x074c5707, 0x36313722, 0x3524fe82, 0x17313731, 0x3320de82, 0x17203a82, 0x5d06df4e, 0x38840534, 0x23262728, 0x07063123, 0x5c4c2726, + 0x05352905, 0x17323336, 0x15163117, 0x230bc247, 0xe0373734, 0x1941bd82, 0x82e02016, 0x896020d1, 0x832020ff, 0x82e486cc, 0x21242506, 0x64213b3b, + 0x01273d82, 0x080803b5, 0x41031203, 0x0323050e, 0x82c00112, 0x410c2009, 0x2741071d, 0x416d830d, 0x0223070f, 0x50442d2d, 0x354108be, 0xc7402606, + 0x062b0707, 0x07a55107, 0x2b060722, 0x2d052e42, 0x02c0ff00, 0x00c10141, 0x00480038, 0x1c492500, 0x82232005, 0x09255ffe, 0x2331352d, 0x26272631, + 0x25373435, 0x83173631, 0x052b45ea, 0x20059d4a, 0x212b8215, 0x38820716, 0x68581520, 0x82352006, 0x0223332c, 0x09090140, 0x0101200d, 0xfe1b1212, + 0x12121bbf, 0x90822001, 0x00010a27, 0x090c0b0b, 0x83c5826b, 0x0c35290e, 0x16b8fe01, 0x50160202, 0xc0240484, 0x0109090d, 0x8205fb4f, 0x83a02035, + 0x0a0e2740, 0x070109e0, 0x3b82255e, 0x79243382, 0x3f0d0b2e, 0x16222d87, 0x00820002, 0x83000521, 0x01452dbf, 0x001d00c0, 0x0040002d, 0x00640053, + 0x51070750, 0xfb550639, 0x4f352006, 0x27220576, 0xca550727, 0x31152305, 0xd7830706, 0x06053523, 0x068f4707, 0xfd481720, 0x27262c05, 0x31373213, + 0x34353631, 0x5b232627, 0x27200760, 0x063f238d, 0x0a660107, 0xd00a0c0c, 0x2f42060e, 0x14ba1330, 0x20010d0e, 0x0f070915, 0x0f0146d0, 0x84010f40, + 0xf8fe2104, 0x4e22d783, 0xe2823434, 0x01021628, 0x34341f1f, 0x97410841, 0x09092b08, 0x1602200e, 0x01191925, 0x1d821602, 0x3a262722, 0xb7340582, + 0x0ec00909, 0x30301314, 0x0e0d0142, 0x13017014, 0xc7c00f14, 0x53824e86, 0x2a833020, 0x34340223, 0x2558834e, 0x1f343441, 0xfb4d011f, 0x8288200d, + 0x19192243, 0x221e8325, 0x8227263a, 0x00003359, 0x20000400, 0x2502c0ff, 0x1d00c001, 0x5b004400, 0xc75b7d00, 0x20d9820e, 0x07f14615, 0x36373423, + 0x09cf5b37, 0x30153023, 0x4f198331, 0x2627074d, 0x30272627, 0x54313031, 0x11200551, 0x21050c5c, 0x0e832726, 0x15070622, 0x28832a82, 0x33232524, + 0xc34e1123, 0x31112208, 0x27178223, 0x31171706, 0x37323316, 0x20055c45, 0x26db8380, 0x010d0e14, 0x49110d02, 0x1133072e, 0x3030020d, 0x0101201f, + 0x02011d01, 0x3d3d2928, 0x82022829, 0x0101240a, 0x84301f20, 0x011e262a, 0x1e010f0f, 0x233a8302, 0x20205001, 0x3006ed59, 0x07091520, 0x0d0a400e, + 0x0e400a0d, 0x01150808, 0x07866150, 0x101aa524, 0xb6491c15, 0x151c2507, 0x70a51a10, 0xa4254a83, 0x25020101, 0x835c8333, 0x25332464, 0x83a50102, + 0x60fe2175, 0x21295783, 0x010f330c, 0x0c330f01, 0x21458321, 0x5f480140, 0xe0fe2d06, 0x10131301, 0x40090940, 0x01131310, 0x20114f41, 0x5d4f417c, + 0x0b4c0120, 0x27272605, 0x22232631, 0x05d44207, 0x50313321, 0x1120090d, 0x22404e41, 0x41202030, 0x07220b47, 0x5d411509, 0x3f4e4106, 0x010fd325, + 0x41d30f01, 0x0121054e, 0x0b454100, 0x2949fe20, 0x20013c06, 0x00080000, 0x02e0ff00, 0x00a00180, 0x00340029, 0x004d0041, 0x0068005a, 0x4b880075, + 0x112008d7, 0x250a7f54, 0x17161716, 0xd1523333, 0x2726240b, 0x5e212726, 0x35260691, 0x17373631, 0x06830722, 0x1517162b, 0x17232631, 0x36351535, + 0x200b8437, 0x23068427, 0x27260706, 0x15222584, 0x0b871535, 0x01171623, 0x0a8a6336, 0x8b503520, 0x079d4e05, 0x36373424, 0x57423033, 0x07112907, + 0x2b2b1f1e, 0xc9071e1f, 0x3706ca4f, 0x0e0d0140, 0x2040fe14, 0x0f11010f, 0x08600f01, 0x0f0f0108, 0x50080801, 0x0f240683, 0x010f7011, 0x01220883, + 0x0685700f, 0xfe010f29, 0x16182dd0, 0x852d1816, 0x0b0d4405, 0x83a00121, 0x00ff214a, 0x2a276a83, 0x01011b1a, 0x452a1a1b, 0xf02005f9, 0x29058f42, + 0x0c09830f, 0x80010f98, 0x55837101, 0x13017125, 0x83838383, 0x0c982609, 0x0f019309, 0x820a83c0, 0xc0102204, 0x290a87c0, 0x90fe0f01, 0x28282701, + 0x05850127, 0xb3587020, 0x0722080c, 0xbefffeff, 0xc2018202, 0xaa009e00, 0xc600bd00, 0x70016401, 0x00008301, 0x07072601, 0x06072631, 0x05832707, + 0x31171722, 0x15890995, 0x0631302e, 0x14070615, 0x14310615, 0x15311415, 0x31200182, 0x22260082, 0x30173233, 0x13822731, 0x06310729, 0x37371617, + 0x87171631, 0x33322c09, 0x31173732, 0x27363716, 0x94363127, 0x24158a09, 0x36313727, 0x84938427, 0x27032c09, 0x31302717, 0x33323130, 0x41373316, + 0x372911aa, 0x17163736, 0x27260706, 0x82748613, 0x2e6aa710, 0x35363130, 0x35343736, 0x35343136, 0x82353134, 0x23c78201, 0x22233231, 0x17207082, + 0x888d1382, 0x22229283, 0x26412223, 0x88062028, 0x171623fe, 0x635c3707, 0x23262a05, 0x07172326, 0x31310714, 0x06586006, 0x33364208, 0x15161732, + 0x06103101, 0x0b0d0c05, 0x1008050a, 0x1905050f, 0x0f0a0515, 0x1406080d, 0x0b0e0a10, 0x030b0c09, 0x08060a02, 0x0e040810, 0x0103010b, 0x04050101, + 0x0f0f1d15, 0x10100603, 0x0304150b, 0x3e3a820f, 0x13180201, 0x0a0d0d09, 0x020e070a, 0x05081007, 0x1c08080f, 0x0f100602, 0x06060203, 0x83070d12, + 0x0b092a19, 0x03100f01, 0x0c101007, 0x28338214, 0x303030c1, 0x100d0b08, 0x0b924210, 0xb5424020, 0x84832007, 0x218fc354, 0x8f820f08, 0x0f060724, + 0x8f880909, 0x880e1121, 0x20c3878f, 0x208a83fd, 0x06d94d30, 0x0805b542, 0x03bf012f, 0x03010f0f, 0x0f0d0303, 0x0b100805, 0x0d080c0a, 0x090f0a08, + 0x09081211, 0x090b0e0c, 0x10110504, 0x100e0404, 0x01010408, 0x03030a0e, 0x23008601, 0x06050405, 0x0425f682, 0x10100b15, 0x31418206, 0x0a0a090a, + 0x13070d0d, 0x0f06031a, 0x10030810, 0x73830512, 0x0102082d, 0x0b070a05, 0x090d0c0b, 0x89041a15, 0xf1fe2130, 0x50204683, 0x200b3743, 0x07d24330, + 0x84a7fe21, 0x21928850, 0x928f0b0a, 0x0f120423, 0x2292aa03, 0x8f050319, 0x83082092, 0x229289ac, 0x82f70f0c, 0x418f208f, 0x00350ba2, 0xfdff0400, + 0x0302bdff, 0x9f00c301, 0xb600a900, 0x0000bf00, 0x062f4301, 0x202ac343, 0x06eb4706, 0x07821420, 0x31311523, 0x29038331, 0x17163322, 0x31273130, + 0xc1431506, 0x43162011, 0x35250ab5, 0x35373631, 0x13644331, 0x2016c543, 0x05fc4201, 0x27311722, 0x5706a562, 0xb8430581, 0x36640806, 0x04a70137, + 0x04081614, 0x11120f0f, 0x14150a06, 0x1b210507, 0x11130e07, 0x141b080a, 0x0c10120e, 0x03030f10, 0x150a090e, 0x0c13060a, 0x01020501, 0x07060201, + 0x0f01271c, 0x16080414, 0x0420110d, 0x08151504, 0x0a1d2504, 0x0e0e1111, 0x01030e0b, 0x0a150d02, 0x0e0b1407, 0x16080223, 0x0a040414, 0x0b0f140c, + 0x13201b84, 0xfe2a3389, 0x143434b5, 0x18181701, 0x05850117, 0x02168024, 0x03831602, 0x82a10121, 0x0f14388a, 0x05040401, 0x0a07140d, 0x120e0c15, + 0x0e0a110a, 0x19160c13, 0x82100c0b, 0x0405288e, 0x06041618, 0x820a1513, 0x0c13258a, 0x02010407, 0x03229283, 0x8e820807, 0x20226e82, 0x40850d11, + 0x0e0b1335, 0x0a11110e, 0x02011b16, 0x07050107, 0x050b1513, 0x82081717, 0x821520b4, 0x0b0421cf, 0x1e271d85, 0x15080424, 0x82040415, 0xb4fe2a35, + 0x1b2b0505, 0x0f0c0c0f, 0x2005851b, 0x21908588, 0xef4c0216, 0x0023280a, 0x00590048, 0x60331300, 0x162305d4, 0x4b171617, 0x14280598, 0x07310707, + 0x27312131, 0x262d0182, 0x36373435, 0x27170733, 0x06312317, 0x27218207, 0x26373621, 0x37312327, 0x2006dd4c, 0x2b278215, 0x37363135, 0x07333736, + 0x15212121, 0x06202482, 0x0806236b, 0x735d3527, 0x0e1d7373, 0x0e08080d, 0x0c551d0d, 0x24020807, 0x1000ff1a, 0x0808012f, 0x10100e0d, 0x010f0f10, + 0x01300f01, 0x33068330, 0x1414190d, 0xfe010d0e, 0x0e0d0100, 0x024f1f14, 0x0200fe00, 0xfe210b84, 0x34178360, 0x0e01c001, 0x0e13130e, 0x0708010e, + 0x5b05050c, 0x03bd4040, 0x22588203, 0x444040e0, 0x40200868, 0x70213a83, 0x202e8370, 0x087447c0, 0xef863020, 0xc0014226, 0x5d002900, 0x8307dd4e, + 0x05754ccb, 0x20097b4c, 0x21c58233, 0xdb833135, 0x06250585, 0x37360107, 0x06d34f31, 0x23310722, 0xe4821a82, 0x22093f48, 0x83072223, 0x07222315, + 0xfd4e1506, 0x291b8206, 0x23332537, 0x30313033, 0x03822231, 0x1638e02b, 0x38160202, 0x16301602, 0x2b0a8a02, 0x030d5001, 0x100a0a02, 0x79770e10, + 0x1021fb83, 0x05954340, 0x2d5e4024, 0xb04c2d23, 0xa1a02706, 0xfe7f242c, 0x00830191, 0x3838a822, 0x4e844390, 0x0a90fe25, 0x830e1010, 0x0158244c, + 0x44010f0f, 0x1c21056a, 0x060e4e24, 0x085e1a23, 0x26008200, 0xff000004, 0x828002c0, 0x005e27ff, 0x009f007e, 0x315900c0, 0x21fa8307, 0xbd523736, + 0x1716210b, 0x06200f8d, 0x0725e182, 0x16070631, 0x05f14c17, 0x42312721, 0x3226050e, 0x34311717, 0x55583435, 0x05f95206, 0x03203b89, 0x82056d4a, + 0x14152138, 0xbf4b2882, 0x31372e07, 0x27343536, 0x27273127, 0x16172717, 0x05644215, 0x22230622, 0x57841283, 0x82313721, 0x82332022, 0xa001205b, + 0x0e402320, 0xf2890909, 0x13340989, 0x1d1f0906, 0x2f1d0202, 0x435d1340, 0x0c0b0c71, 0x3c0d1010, 0x86051741, 0x02072224, 0x23028207, 0x19070719, + 0xd12c098a, 0x08303030, 0x020e3008, 0x0e020808, 0x01210989, 0x201796e0, 0x255282c0, 0x01010fd0, 0xb941b00f, 0x83b02005, 0x8570200b, 0x08c32d0b, + 0x0a091f14, 0x260a1f1f, 0x6b3f0101, 0x0c248083, 0x01023a0b, 0x1f470082, 0x202c8406, 0x212c82d0, 0x858db9fe, 0xcf229985, 0x878f0e0e, 0xfe219183, + 0x3a1795e0, 0x20000700, 0x2002baff, 0x1200c101, 0x32002500, 0x80007000, 0xe9009400, 0x4e010000, 0x1720118a, 0x526b1291, 0x5c03200c, 0x172c054e, + 0x31303534, 0x37343135, 0x31373736, 0x27270384, 0x31070726, 0x83262706, 0x210b840f, 0x01853130, 0x290b0a52, 0x07370725, 0x17301716, 0xec481716, + 0x82172005, 0x0706230f, 0x1d653333, 0x20138505, 0x053c5307, 0x36434c82, 0x202e8207, 0x20368214, 0x21688233, 0x64432726, 0x850b9e06, 0x3130237a, + 0x54823123, 0x27363723, 0x06555701, 0x51058041, 0x0c850638, 0x45a0fe21, 0x11390c98, 0x1a1a1e11, 0x0e0d3c2e, 0x1511092e, 0x0a074e0c, 0x093e0509, + 0x440d1412, 0x0624422b, 0x18182c29, 0x010d1518, 0x831d0101, 0x1b2f2916, 0x04011b1b, 0x17200d05, 0x0c3c0d82, 0x0c0d0740, 0x16273c0c, 0x111b0216, + 0x27020111, 0x0216b033, 0x0b5c1602, 0x7c0b0101, 0x7c200983, 0x9c200983, 0x9c200983, 0x88271388, 0x030b2e5d, 0x48010703, 0x0c8c0c8f, 0x45f0fe21, + 0x24080ba7, 0x49493001, 0x22232749, 0x08030319, 0x1e2e2e37, 0x4f020825, 0x12090d14, 0x06050987, 0x0c156b0a, 0x4b751209, 0x34da8531, 0x2a2a2a47, + 0x02011407, 0x0c143201, 0x2f40120a, 0x08092f2f, 0x202b8328, 0x2e718317, 0x27281925, 0x0d0d082e, 0x1d151507, 0x501d0909, 0x0b210529, 0x2007940b, + 0x20d8831d, 0x34008200, 0xfff9ff02, 0x018702b9, 0x004100c7, 0x13000061, 0x17060726, 0x066b4b01, 0x27272630, 0x27310731, 0x36313731, 0x07071617, + 0x15511731, 0x06b16b05, 0x27232322, 0xf8431b82, 0x86238305, 0x15072209, 0x06446735, 0x46831720, 0x82074f4b, 0x31012c07, 0x15060706, 0x0c0f1327, + 0x83500210, 0x02872f05, 0x1a17870d, 0x080b0c4d, 0x2ab1150b, 0x40710e14, 0x054c3e05, 0x1c184804, 0x1a591b21, 0x1d131252, 0x277e2318, 0x140e0d01, + 0x130f5c6c, 0x03090e13, 0x2e068311, 0x8bfe0201, 0x010c0b12, 0x13100cbb, 0x8330fe0f, 0x116a2c05, 0x15127b0d, 0x0d0a073c, 0x83a3100a, 0x83802030, + 0x2f022d4f, 0x1549150f, 0x18100742, 0x8080ab63, 0x53271284, 0x0f01010e, 0x830f0b09, 0x01012b06, 0x0d022501, 0x0000130d, 0x07410600, 0x00372a08, + 0x0062004a, 0x007c006b, 0x200f4185, 0x23313522, 0x22053247, 0x41072223, 0x05410529, 0x27172506, 0x31232717, 0x2c062446, 0x36373231, 0x25053535, + 0x31152505, 0x05f94833, 0x200a1641, 0x05804c25, 0x5f373621, 0x332007d9, 0x31222f85, 0x9c4c1723, 0x16334107, 0x41018b21, 0x39240e29, 0x29373737, + 0x28062f53, 0xe2fe3e01, 0xe2fe1e01, 0x0e38411c, 0x914a9220, 0xf0012107, 0x60212986, 0x07b84b20, 0x21175041, 0x4841bd80, 0x2ca7230a, 0x904f2c2c, + 0xfab42506, 0x9be1e1e1, 0x200d5141, 0x224c8766, 0x86e0e0c0, 0xd0e02126, 0xbf4f7387, 0x059b4605, 0x5b004835, 0x6d006400, 0x7f007600, 0x91008800, + 0x36370000, 0x85313137, 0x31332103, 0x22054153, 0x72163117, 0x30250681, 0x15313031, 0x05994631, 0x09821720, 0x2107075d, 0x78690706, 0x065e5505, + 0x27263125, 0x44212726, 0x4a4111f3, 0x08354a08, 0x5c410720, 0x077f4108, 0x20080b4e, 0x20118707, 0x05956100, 0x49182208, 0x030e3737, 0x0d0a2a0c, + 0x6d14130c, 0x13020112, 0x0e0d016b, 0x16025014, 0x090ea028, 0x2e100109, 0x07086801, 0x2205a743, 0x4a160270, 0x9820050f, 0x02220685, 0x11871816, + 0x11872820, 0x11902820, 0x3ee02908, 0x1e1e3233, 0x2d2d0101, 0x35101445, 0x0c130f0c, 0x030e200d, 0x07021412, 0x0d0e1410, 0x02160801, 0x490e0909, + 0x4d3d1419, 0x200b614c, 0x206290a0, 0x20118778, 0x206287a8, 0x20118718, 0x08134a78, 0xf9ff053c, 0x8502b9ff, 0x3800c701, 0x6a006100, 0x7c007300, + 0x17250000, 0x17161727, 0x03833117, 0x32313222, 0x232a0782, 0x06071631, 0x26310127, 0x17823637, 0x41373621, 0x25231698, 0x41053736, 0x1725089c, + 0x23070631, 0x05325531, 0x30313022, 0x5406ac58, 0x05200506, 0x20075a41, 0x10754127, 0x2cc0013c, 0x050d2c2c, 0x2705112b, 0x05120101, 0x0f0a0a04, + 0x10b0fd13, 0x33130f0c, 0x82414d39, 0x40fe2e0c, 0x3b011a01, 0x02011203, 0x0c2b3e13, 0x0b874122, 0x87680221, 0x414020ea, 0x7a371068, 0x03222222, + 0x0f02220b, 0x0e11011f, 0x010c100f, 0x10130fd0, 0x412c280c, 0x062d0c71, 0xf8313a66, 0x14120301, 0x1f220402, 0x0a734102, 0x55084e4b, 0x16220556, + 0x55410216, 0x05734908, 0xc0ff2035, 0xc0012002, 0x2c001400, 0x6d005a00, 0x34370000, 0x6e311737, 0x2223058b, 0x41352627, 0x17240500, 0x36271727, + 0x4108206c, 0x2324056c, 0x17070631, 0x2306444a, 0x31073133, 0x8c06764b, 0x07062e09, 0x31232306, 0x37363135, 0x33363130, 0x11e14237, 0xdd092024, + 0x8d428006, 0xe3f82706, 0x351ce3e3, 0x35414436, 0x01093207, 0x381721d0, 0x0ac6c6c6, 0x010f9c14, 0x0a930f01, 0x2b068389, 0x1007017f, 0x01911511, + 0x30130d0f, 0x260b254e, 0xa11f21e0, 0x42a0110e, 0x4726076d, 0x3aa6a6a6, 0x26412323, 0x0d0a2a07, 0x40091601, 0x010f0f01, 0x27048320, 0x0d0c1403, + 0x0d0d16a0, 0x230cf64e, 0x00040000, 0x26076359, 0x00770036, 0x43890080, 0x15211edf, 0x0bd96031, 0x200bcd43, 0x24188337, 0x07262706, 0x06926506, + 0x92731620, 0x16172105, 0x20064075, 0x05164e36, 0x5f363721, 0x3722050e, 0x01822726, 0x07200d83, 0x0b823582, 0x6a420720, 0x08044407, 0x2413d743, + 0x1b121201, 0x20f28240, 0x064341c0, 0x010fe033, 0x13151502, 0x09090c0b, 0x19090911, 0x0f01010f, 0x250a8419, 0x15130b0c, 0xfa830215, 0x0c211f83, + 0x421f970b, 0x2820081e, 0x43071145, 0x402012e0, 0x4107ed58, 0xa020076c, 0x0b216687, 0x8f66a50c, 0x436020a6, 0x502007e2, 0x21087445, 0xb7590003, + 0x00372607, 0x00570044, 0x06e37800, 0x27273622, 0x2106bf64, 0xd34c3123, 0x31272605, 0x07262326, 0x058b7505, 0x3133172a, 0x17163115, 0x31211716, + 0x2105196c, 0x3f602533, 0x27262605, 0x37363726, 0x0baa4507, 0x28052c4c, 0x090d2002, 0x0c010109, 0x06594635, 0x0b0a6a27, 0xfffe0b0b, 0x290e830a, + 0x1b121201, 0x121c4001, 0x79752012, 0x01702e0d, 0x40221716, 0x01161722, 0x0fc00f01, 0x06c95901, 0x42792f21, 0x25270590, 0x0901075e, 0x590e0ae0, + 0x80200ded, 0x200b606b, 0x823b84f0, 0x23ef8344, 0xfbff0300, 0x2b06fb4c, 0x0036002d, 0x13000058, 0x31313336, 0x2305725b, 0x07063123, 0x4e07e84d, + 0x15230504, 0x82312331, 0x352721cd, 0x37270785, 0x35151337, 0x82313315, 0x5b27200e, 0xea4c07e5, 0x31332105, 0x21059c69, 0x686c2323, 0x2a238205, + 0x0c0c0ada, 0x900ad00a, 0x5901121e, 0xa02006c4, 0x2309d859, 0x30c0c086, 0xe020f582, 0x2020c582, 0x0d249782, 0xf030140e, 0x012c1d83, 0xb701200f, + 0x09c00909, 0x2615010e, 0x2006aa59, 0x09bd5980, 0x90d9fe22, 0x354c0082, 0x01a02206, 0x8232840f, 0x010f263c, 0x000000a0, 0x08d74d06, 0x5f00122a, + 0xe800a000, 0xfa00f100, 0x220adb4d, 0x82222326, 0x373424df, 0x4b173336, 0x35250573, 0x36373631, 0x61c18237, 0x142106fc, 0x05664315, 0x27272222, + 0x1632f682, 0x17312737, 0x34353631, 0x34352627, 0x30333635, 0x47643631, 0x27222808, 0x35342722, 0x82363734, 0x0607241d, 0x59072627, 0x098207f3, + 0x37262723, 0x096f6d36, 0x37630d83, 0x05f66305, 0x17363724, 0xbd620716, 0x82338305, 0x07072609, 0x06073707, 0x05674123, 0x92826882, 0x03843620, + 0x96821620, 0x84311521, 0x14152b5b, 0x14151617, 0x30070615, 0x465b0631, 0x32172107, 0x14220182, 0x99651415, 0x06372205, 0x25348207, 0x07062726, + 0xde821716, 0x30080683, 0x40013736, 0x0d09090e, 0x090d1313, 0x0d7d0e09, 0x010f1011, 0x231d1413, 0x14130c15, 0x11101514, 0x19190106, 0x480b0b26, + 0x11161420, 0x0e0e1616, 0x20008201, 0x07524102, 0x0c820220, 0x0e0e0123, 0x0dce4316, 0x3d31ee43, 0x484848ef, 0x19260b0b, 0x11060119, 0x14141510, + 0x23150c13, 0x0113141d, 0x0c11110e, 0x72860f0f, 0x0e0e0e23, 0x26708414, 0x16110f0f, 0x46712014, 0x4820079b, 0x21071a44, 0xc182c001, 0x0c0c7c23, + 0x25cf827c, 0x02010dc4, 0x43831809, 0x1e111d2b, 0x2c26271f, 0x02022c2c, 0x24618307, 0x19081203, 0x22ca8303, 0x820e1314, 0x8202204e, 0x0e0d2203, + 0x83d18414, 0x0f01250b, 0xe20e1413, 0x44178f44, 0xcf440f28, 0x12452b17, 0x01031212, 0x07261919, 0x7a820202, 0x1f272630, 0x011c111e, 0x1d141301, + 0x01020918, 0x63820e0d, 0x02827782, 0xd4820120, 0x13267b8b, 0x1902100f, 0x7f44ab08, 0x44202007, 0x2108087f, 0xff140005, 0x016c02c0, 0x000c00c9, + 0x00410034, 0x00910067, 0x37361300, 0x17161736, 0x27060706, 0x4b442726, 0x0706210a, 0x42074550, 0xa04305ab, 0x27262507, 0x25373726, 0x2621348c, + 0x07904827, 0x8d056866, 0x31372730, 0x27343536, 0xd1430727, 0x83398306, 0x825d8226, 0x31352170, 0x2505a148, 0x31272706, 0x2a823726, 0x40208a82, + 0x2d0b5544, 0x17160326, 0x172b2c20, 0x10400404, 0xf6823010, 0x83201421, 0x0c1426eb, 0x0104020c, 0x2e298ba6, 0x18040410, 0x17202c2a, 0x02040316, + 0x88140c0c, 0x1030312a, 0x60a04010, 0x0c0e0e01, 0x400e0e40, 0x010e0e0c, 0x01230c8c, 0x7a132480, 0xa92f098d, 0x0114151f, 0x03032002, 0x16161240, + 0x83492f12, 0x2649836b, 0x12120774, 0x8ba93216, 0x03882e2a, 0x01022003, 0x321f1514, 0x07121216, 0x21298774, 0x39832f49, 0x20284022, 0x10310082, + 0x400b0606, 0x0a401111, 0x20100605, 0x05061020, 0x240d830a, 0x1006060b, 0x09ef4d00, 0x47002525, 0x67010000, 0x7b4705d7, 0x49172005, 0x27330cec, + 0x33372631, 0x17171631, 0x05253331, 0x31070525, 0x82230706, 0x06f27d12, 0x0b822320, 0x37342724, 0x26823137, 0x37363530, 0x1f1d0202, 0x1f03031f, + 0xbe491d1f, 0xb8490c10, 0xc7310807, 0x38120328, 0x74650913, 0x410128fe, 0x4101bffe, 0x38130942, 0x67310312, 0x2a08052b, 0x1f01010d, 0x0901011f, + 0x12010001, 0x121c1b12, 0x0f950111, 0x07954913, 0x118d9c3d, 0xb00f0103, 0xfdfdfd3f, 0x03010f72, 0x063aac11, 0x02020d01, 0x02026e6e, 0x8200030a, + 0x00033000, 0x01c0ff21, 0x00c001a0, 0x003f0025, 0x45000061, 0x332007b9, 0x2005ec45, 0x05f45b33, 0x7a058262, 0x222405dc, 0x07150607, 0x8205b360, + 0x161728cc, 0x36313317, 0x82273637, 0x26272722, 0x15172327, 0xe5451535, 0x05194205, 0x14462620, 0x37362406, 0x82353133, 0x16250828, 0x3c808017, + 0x0a220407, 0x090a0d0d, 0x21182209, 0x0e09093c, 0x09090e40, 0x1212190b, 0x13021302, 0x1dba1d12, 0x2f078212, 0x19121202, 0x16206396, 0x20160202, + 0x02161602, 0x01290989, 0x606060a0, 0x09220520, 0x21448309, 0xe2461722, 0x01803505, 0xe01a1010, 0x0114131d, 0x1d131401, 0x10101ae0, 0x20207801, + 0x44843a8e, 0x5620f791, 0x0620f7c2, 0x6a074e5a, 0xecab0cde, 0x6c768b20, 0x12022b07, 0x08050c13, 0x130c0508, 0xeca80212, 0x1bc82508, 0x0e0f0f0e, + 0x1d1d1a1b, 0x0e06060e, 0x001a1d1d, 0xff0f0004, 0x01f101bd, 0x001d00c0, 0x0067005e, 0x01000070, 0x2405574f, 0x15060706, 0x05cc4606, 0x83363721, + 0x34272701, 0x27272627, 0x13831607, 0x46127946, 0x072227b9, 0x59463736, 0x060d280f, 0xbd060707, 0x820b0a11, 0x2e2f2fdc, 0x561a1a56, 0x12122f2e, + 0x110a0b01, 0x4a450dbd, 0x19fa4905, 0x4a1f6a45, 0xff45081a, 0x03bd3b09, 0x0f075003, 0x4533140f, 0x2b424145, 0x422b0c0c, 0x33454541, 0x070f0f14, + 0xa9456d50, 0x27e94517, 0x92459020, 0x75002011, 0x5b250953, 0x00006d00, 0x05ee4801, 0x16173222, 0x2a085c70, 0x27262726, 0x07060706, 0x61233115, + 0x974c06c3, 0x17162107, 0x5f0c4d7e, 0x36230c5f, 0x58313337, 0x3b88052e, 0x15351324, 0x4a4a2135, 0x0137210b, 0x6f063260, 0x402d0d8f, 0x18100f01, + 0x02021630, 0x01073016, 0x051c4350, 0x23074250, 0x38070150, 0x38311983, 0x010f1018, 0x40fec040, 0x291b1b01, 0x1b290001, 0x0e7a4f1b, 0x1b821184, + 0x8318c021, 0x22f88329, 0x4f180701, 0x18210b2f, 0x05105307, 0x18246b82, 0x20c0fec0, 0x33870082, 0x23640020, 0x01002e08, 0x000c00c0, 0x002c0019, + 0x0073005d, 0x0c007700, 0xfd5f1720, 0x7f37200b, 0x756a0961, 0x06152207, 0x07246307, 0x4d05bb46, 0x667a05ee, 0x0a524b07, 0x20064853, 0x09cf7605, + 0x796c3320, 0x54d02009, 0x70200b23, 0x180b0046, 0x250cfc43, 0x111b1d01, 0xf0830112, 0x5822c587, 0x117f0117, 0x40012108, 0xff221587, 0x667a1b00, + 0x87c02006, 0x01202208, 0x0b295560, 0xd446a020, 0x06b9510b, 0x26058441, 0x0b1b2ba0, 0x7f1f1818, 0x1a210b90, 0x7f738326, 0x60200d79, 0x3013737a, + 0xff100004, 0x01b001c0, 0x003700c0, 0x005c004e, 0x0ead6b8b, 0x2305b347, 0x17161716, 0x4705c26e, 0xed4305b5, 0x27262205, 0x0bc16b35, 0x31212382, + 0x09d97731, 0x21059961, 0x70543736, 0x37362105, 0x21055864, 0xb6562227, 0x83372009, 0x31152256, 0x20118314, 0x07db4507, 0x34213683, 0x83668337, + 0x06cd5730, 0x314c102f, 0x3b020231, 0x3b58583b, 0x2001023b, 0x05a14518, 0x392b1522, 0x29068a4b, 0x0f167060, 0x0e01010e, 0x0787160f, 0x0b010c24, + 0x0383010b, 0x0309742a, 0x11120701, 0x250d0104, 0x0e321b83, 0x2c020927, 0x12020212, 0x15021240, 0x0b010427, 0x7d42c001, 0x0e222405, 0x83503838, + 0x2266835e, 0x46183140, 0x16230547, 0x85220a23, 0x83cc201f, 0x8760205d, 0x2308845e, 0x60606034, 0x04846483, 0x01090c29, 0x12070411, 0x82022202, + 0x02172828, 0x0b2c1014, 0x8312020e, 0x20102969, 0x05052b18, 0x00010c02, 0x03200082, 0x2408c754, 0x003d002f, 0x0ec15458, 0x2105f648, 0x07873127, + 0x47312121, 0x272d0826, 0x07063121, 0x07273107, 0x27332333, 0x05834931, 0x05331625, 0x85233323, 0x05b7422c, 0x2305a042, 0x31273135, 0x080bc855, + 0x8040372d, 0x46012b40, 0x060b0a10, 0xfe1a0e4c, 0x080e1a74, 0x55550223, 0x060f6555, 0x01100a0b, 0xc0c0c01b, 0x0e0d0140, 0x0e14e014, 0x5440010d, + 0x2b260b65, 0x346498ca, 0x25822202, 0x72090b2d, 0x14010114, 0x4fbb1c0c, 0x820b0916, 0xa0c0234a, 0xdc4850a0, 0x33412207, 0x24db8c24, 0x00400035, + 0x20db905b, 0x26c18235, 0x23063130, 0x82152722, 0x373623a0, 0x03831716, 0xe547e182, 0x21232305, 0xe1832231, 0x3316172e, 0x31273732, 0x17161706, + 0x35153517, 0x31222f83, 0x33822631, 0x2121e285, 0x201d8331, 0x0a735523, 0x06572f08, 0x12090806, 0x080bb311, 0x18292819, 0x06062919, 0x150f102a, + 0xfe10083a, 0x1708109c, 0x06064938, 0x046a0e11, 0x30211111, 0x08081311, 0xea4e0606, 0x0f142305, 0xea8bce95, 0x8311442e, 0x05010101, 0x09078c64, + 0x1c01011c, 0x08350382, 0x5b252525, 0x2c240d0d, 0x530601da, 0x051a1a1f, 0x858585a1, 0x27248205, 0x121b4083, 0x760a0112, 0x2724f38c, 0x52003f00, + 0x3343f38e, 0x05a74505, 0x27171636, 0x26353631, 0x21373637, 0x27070631, 0x25052501, 0x07141506, 0x2106844d, 0xd6823317, 0x37232e83, 0x82310714, + 0x05a3691f, 0x16373624, 0xc9411617, 0x266e230b, 0x43181818, 0x25080975, 0x01033b17, 0xfe220e0d, 0x391a26e4, 0xd4fe4801, 0xd4fe2c01, 0x09070703, + 0x08090d07, 0x11ee120a, 0x0c080f0f, 0x5d45b10e, 0x24f08b0b, 0x35350856, 0x07dc6e4d, 0x354b2208, 0x322c262e, 0x02273334, 0x84fe2d30, 0x15ededed, + 0x35354c17, 0x101c1e20, 0x09010f10, 0x411a1209, 0x079744c1, 0x00210787, 0x08cb4204, 0x45003126, 0x62005500, 0x6946fd8e, 0x27262705, 0x07223123, + 0xf3821516, 0x93693120, 0x20098c05, 0x075d4517, 0x2305ad7f, 0x31272726, 0x5007d673, 0x0f8205d9, 0xd2453720, 0x0af8410b, 0x13b2be37, 0x1e1e0102, + 0x15182a2e, 0x191b0102, 0x1b010114, 0x1c30291b, 0x3f088229, 0x2b221716, 0x2e442717, 0x02011e1e, 0x091fd613, 0x389a0f49, 0x02012626, 0x114a0119, + 0xfb40b807, 0x410bb765, 0x95220b14, 0x33831302, 0x0b0b0a38, 0x1914222e, 0x1b1b2923, 0x20240201, 0x17222016, 0x22020116, 0x6e83bb1f, 0x1c02132f, + 0x01a0392b, 0x19382626, 0x910e0102, 0x0b9565c0, 0x00820020, 0x5b530320, 0x00812508, 0x0097008e, 0x0de74518, 0x06070622, 0x2620e382, 0x2506454f, + 0x07163117, 0xdf510706, 0x07af6d05, 0x624d1620, 0x33162306, 0xfa4c3732, 0x78152005, 0x284d0a2e, 0x09404b06, 0x37363723, 0x08086e33, 0x26312324, + 0x35832627, 0x27343522, 0x2505a545, 0x27262706, 0x984d0735, 0x5317200b, 0xe7470770, 0x20033007, 0x0a081e1f, 0x090a0d0c, 0x0d190809, 0x460c260d, + 0x0c2f0557, 0x190d0d26, 0x0a090908, 0x090a0c0d, 0x6c1f201d, 0x202307ba, 0x83081d20, 0x0a0a2113, 0x27212d83, 0x212d850b, 0x2d83270b, 0x830a0a21, + 0x1e082547, 0x7003201f, 0x610ce75b, 0x195c0880, 0x825c8d06, 0x05a6422e, 0x5c848aa2, 0xc0202d96, 0x200b9547, 0x07574938, 0x240ca743, 0x00530049, + 0x0ea94289, 0x43412620, 0x08066b23, 0x41311521, 0x07290ac3, 0x33361727, 0x17161716, 0x22098214, 0x41250525, 0x372030cc, 0x240ad042, 0x0f10029a, + 0x0c4f411b, 0x93057d41, 0x010334f2, 0x0d0ae260, 0x010d0e14, 0xfe894502, 0xfe0101ff, 0x41160fff, 0x3b8a12b9, 0x0f0e0123, 0x0bec4214, 0x75177921, + 0x7741082d, 0x0302301e, 0x0106b14b, 0x07140e0d, 0xcbe73706, 0x600dcbcb, 0x368e06da, 0x26080b42, 0x020f0f18, 0x60000500, 0x603207e7, 0x7c006900, + 0xd200bf00, 0x16130000, 0x16311517, 0xd9421617, 0x08026b05, 0x2605cf60, 0x17060706, 0x43163117, 0x07200521, 0x6c05866c, 0xed5e0592, 0x0a945e0c, + 0x27273622, 0x2806fc58, 0x37363716, 0x37363135, 0x072b4c17, 0xfb492720, 0x16052411, 0x82313117, 0x10025328, 0x8227884c, 0x315591bc, 0x020216c0, + 0x0a151617, 0x0e0e1111, 0x090a120a, 0x10820d1c, 0x1c0d1623, 0x270c8209, 0x11110e0e, 0x1716150a, 0x8b057e64, 0x0e1b2125, 0x0e212583, 0x66258e1b, + 0x30200891, 0x200cb745, 0x15cc5640, 0x8c298556, 0x02c0224d, 0xb8789016, 0x53e020c4, 0x40200724, 0x85050844, 0x57502005, 0xb24d2d8d, 0x06bc6111, + 0x33644d85, 0xc0013705, 0x6a00c001, 0x86007800, 0x27370000, 0x17162717, 0x31073736, 0xfb481506, 0x2734270d, 0x35263127, 0x01833135, 0x6305e872, + 0x062007fd, 0x20092655, 0x050f6427, 0x23313023, 0x05084d31, 0x4a311521, 0x4d880689, 0x83373221, 0x37342645, 0x27171737, 0x06934217, 0x17363725, + 0x82073705, 0x4a162005, 0xcf2906c6, 0x1a383838, 0x461a2f2f, 0x08d45e03, 0x08300822, 0x05290b83, 0x070f1d01, 0x19190f0f, 0x2606820f, 0x1405011d, + 0x86010d0e, 0x0f802d1a, 0x0b040b0c, 0x3030308c, 0x0b0b0a0a, 0xfe210484, 0x240d82da, 0x0a0a0b0b, 0x2b048330, 0xa7a7a7d3, 0x10020210, 0xa80807d3, + 0x28076349, 0x480c0fc1, 0x4a110f0c, 0x2a108306, 0x07071003, 0x06010106, 0x84100707, 0x4a062378, 0x1e830e12, 0x6584c120, 0xa8161226, 0x78220c0d, + 0x0b82518b, 0x00216c89, 0x05ff5900, 0x01c0012e, 0x006b00c0, 0x00990078, 0x130000af, 0x4d41e682, 0x17142405, 0x57232306, 0x8b4b0678, 0x31352707, + 0x37363135, 0xa6473736, 0x33302505, 0x17163130, 0x2907164c, 0x31303736, 0x31303132, 0x7f5c3330, 0x31152105, 0x14240183, 0x16311717, 0x8b06d156, + 0x0706244d, 0x47032726, 0x3e760cd1, 0x37372108, 0x22057e5f, 0x62312727, 0x3127069c, 0x07263127, 0x82351517, 0x17162347, 0xba4e3333, 0x054a4c05, + 0x38389729, 0x0b040b38, 0x41800f0c, 0x75410a5a, 0x0401210e, 0x27841b8a, 0x1a460326, 0x371a2f2f, 0x0bfc4418, 0x08203608, 0x080f0f08, 0x0f090808, + 0x07090810, 0x07101007, 0x10080907, 0xf008090f, 0x08200f01, 0x16020216, 0x16160208, 0xa77a0102, 0x0c22a7a7, 0x1216a80d, 0x0e0d0108, 0x29904114, + 0xa8292d83, 0x10d30708, 0xfe100202, 0x3b45187e, 0x91c8200b, 0x208c8574, 0x228f8218, 0x83010f20, 0x20818477, 0x20008200, 0x29038201, 0x01400220, + 0x00390060, 0xe5752500, 0x05334805, 0x36373224, 0x9f463535, 0x7027200a, 0x0785065e, 0x14150622, 0x2408b271, 0x01233117, 0x05534380, 0x2609a263, + 0x0d0d0aa9, 0x4c89690a, 0xa02005f2, 0x93210c84, 0x09c64e53, 0x53252886, 0x6a0909aa, 0x057a4d8a, 0x0a82a020, 0x93909320, 0x27220124, 0x8f663131, + 0x31332305, 0x44751732, 0x3107270d, 0x27222306, 0x07853127, 0x37242583, 0x32333631, 0x37209982, 0x985093a8, 0x25949a0a, 0xff000002, 0x018201c0, + 0x0029002b, 0x13000057, 0x31312326, 0x0c534922, 0x670b4f49, 0x3625050c, 0x27273435, 0x09db4503, 0x16311522, 0x2007595b, 0x0b594137, 0x06071430, + 0x22312123, 0x35352627, 0x0d0d0af7, 0x0f41800a, 0x45492005, 0x4920055e, 0x21054241, 0x0e85b780, 0x45090451, 0xff25087d, 0x09090e00, 0x201f8201, + 0x212a8580, 0x8c41d34a, 0x4ad32105, 0x80224885, 0x1085a9fe, 0x45081950, 0x06870655, 0x00000023, 0x20df8203, 0x26df82de, 0x005500a0, 0x8365005c, + 0x062721e1, 0x454adf82, 0x3107210b, 0x46180d8d, 0x394a1777, 0x4f27200b, 0x312d0bcd, 0x33231727, 0x17313723, 0x33233307, 0x274d8217, 0x1509fe37, + 0x5b480815, 0x0d219e86, 0x21088533, 0x46181518, 0x152112ab, 0x211c8518, 0xb6860d33, 0x02475b35, 0x20404040, 0x76765b20, 0x0d900d76, 0x01138c01, + 0x41ac1301, 0x6c520515, 0x18342006, 0x2011cf46, 0x23208c34, 0x4d4dacac, 0x00204282, 0x2d055748, 0xc0014001, 0x47003e00, 0x5c005300, 0xb5506b00, + 0x07f95208, 0x41058244, 0x511805e7, 0x36270f4f, 0x34373637, 0x4c272627, 0xdd41058d, 0x15072c05, 0x31231535, 0x17333135, 0x18351535, 0x8b080347, + 0x05da4414, 0x06070625, 0x82902307, 0x104a27dd, 0x0c0c0b0b, 0xa2864612, 0x201f302c, 0x180f0e01, 0x20010114, 0x1382301f, 0x30302023, 0x07b94540, + 0x0b824020, 0x0c872020, 0xc0012022, 0x0b2a1e83, 0x2a7a100b, 0x0c127616, 0x2a41200c, 0x83202005, 0x191e2538, 0x251c0f19, 0x15834b83, 0x86608021, + 0x07627500, 0x108f4020, 0x2a050b42, 0x014001c0, 0x005900c0, 0x7a790068, 0x7d43089b, 0x68332005, 0x33200533, 0x14210d85, 0x52d88515, 0xe27807fe, + 0x3123210b, 0x22220d8d, 0x42472627, 0x31352706, 0x33363734, 0x40183133, 0x17250fc7, 0x15233323, 0x0a115331, 0x4106b048, 0x232806ce, 0x01011616, + 0x0e0f1814, 0x82061041, 0x201986e5, 0x82f48206, 0x100a22fe, 0x051a6c70, 0x0a82dd83, 0x90707022, 0x43092341, 0x202006dd, 0x2b071c41, 0x1d0a0302, + 0x1c25271d, 0x1e19190f, 0x22071e41, 0x880e0909, 0x0c0c2b1f, 0x2a167612, 0x0b0b107a, 0x2d41c020, 0x40602207, 0x320a8760, 0x00010000, 0x01c0ff00, + 0x00c00180, 0x3700002b, 0x7b370737, 0x51180814, 0x03230af2, 0x60230631, 0x342205da, 0x17633737, 0x1d003a06, 0x1a051d1d, 0x08080ba9, 0x108b2e02, + 0xc1060b0a, 0x0c031009, 0x2f010809, 0x39d28290, 0xe4e4e4c0, 0x0808021a, 0x7b05050b, 0x0b100a0b, 0x0ee7fe09, 0x040c0808, 0x9d82bd03, 0x00820020, + 0x8b440220, 0x00352208, 0x085b7646, 0x6e553320, 0x67648205, 0x352f0584, 0x32333331, 0x11151617, 0x06071431, 0x18311523, 0x0808cb57, 0x27262126, + 0x13112726, 0x31311714, 0x31213316, 0x31213135, 0x15060722, 0x1b1b0100, 0x08016029, 0x36360908, 0x01080809, 0x42070741, 0xfe26064a, 0x1b1b29e0, + 0x82824001, 0x44000121, 0x60200570, 0xbf2b1083, 0x0604040a, 0x04062b2b, 0x82bf0a04, 0xc0fe211b, 0x24832e82, 0x4f830682, 0x88400121, 0x00003011, + 0xff400003, 0x014002e0, 0x002500a0, 0x82690047, 0x370722b9, 0x052b4907, 0x2705c075, 0x37363121, 0x31113736, 0x20056149, 0x83078227, 0x06956c1d, + 0xd9823420, 0x82087d4e, 0x37362b0b, 0x31371716, 0x17163336, 0x135c0515, 0x07142205, 0x4ed18207, 0x0b8206df, 0x2607062f, 0x06310727, 0x35272623, + 0x0a0a0ad5, 0x0764504b, 0x87800121, 0x4b230809, 0x7a220c0a, 0x01eb0c22, 0x010a4d0f, 0x1e151803, 0x1114151e, 0x140e0e11, 0x24313223, 0x0a050318, + 0x9900ff01, 0x7f01281b, 0x011f1f1f, 0x551b1212, 0x01210968, 0x2a5a8300, 0x02021f1f, 0x010fbf1f, 0x82050a01, 0x14153054, 0x11110e0e, 0x01012214, + 0x01031822, 0x97404d0a, 0x05db4118, 0xc0ff202a, 0xc0016101, 0x47003b00, 0x2211e54f, 0x82171607, 0x0db94fef, 0x7e363721, 0x3521068f, 0x181d8231, + 0x24085958, 0x35150735, 0x05b96015, 0x01373623, 0x05534400, 0x2d2c4626, 0x2c2d0101, 0x08066144, 0x0b242f20, 0x09070102, 0x140b0d0c, 0x0b141919, + 0x07090c0d, 0x240b0201, 0x1b2a402f, 0x1a01011a, 0x726b2a1b, 0x0d232907, 0x49493433, 0x230d3334, 0x2f050d42, 0x091b0823, 0x0b0b0c0d, 0x0f080202, + 0x1006f807, 0x0b203683, 0x1b2e3e82, 0xf8642308, 0x220bf8f8, 0x212e2e21, 0xd0820b22, 0x00000532, 0x0002e0ff, 0x2000a001, 0x4d003700, 0x7a006400, + 0x085b4118, 0xaf821120, 0x97422120, 0x31212108, 0x1126ac83, 0x36373431, 0xb5751733, 0x0d2f7d05, 0x37333622, 0x7477d182, 0x09d06e07, 0x20202cac, + 0x0123c082, 0x8590010f, 0x70fe28c7, 0x01161722, 0x480e0909, 0x158506be, 0x4c0cb86b, 0x198c0c80, 0x82a00121, 0xb0fe2138, 0x2507916f, 0x22171601, + 0x41825001, 0xa87dc020, 0x223c8309, 0x44a0a040, 0x06860679, 0x1f822020, 0x8306bd6c, 0x69602006, 0x7e850933, 0x41040021, 0x63200e33, 0x62233141, + 0x14210bbb, 0x07734407, 0x23331723, 0x08f84333, 0x27223122, 0x95054849, 0x161a4115, 0xae8e6020, 0x41808021, 0x0686062c, 0x4040a022, 0x410d4e48, + 0xb16d1717, 0x2a51180c, 0x0cdd580c, 0x42058b47, 0x0f350533, 0x25001800, 0x46003500, 0x23010000, 0x31072333, 0x31333107, 0x27018237, 0x35172322, + 0x27343515, 0x27200f82, 0x2320188b, 0x2005f953, 0x24268615, 0x21210523, 0x0c764921, 0x56c00132, 0x7f015656, 0x037f015c, 0x680e4003, 0x5c5cda76, + 0x02820b82, 0x121be634, 0x01060112, 0xc001467f, 0x000200fe, 0x120100fe, 0x29441b12, 0x01a02506, 0x807f017f, 0x1723e782, 0x83806811, 0x241b830b, + 0xa07f0140, 0x074844e0, 0x8200e021, 0x00012e00, 0x01e0ff00, 0x00a001c0, 0x13000097, 0x2d8b8226, 0x31150706, 0x31171714, 0x07140716, 0xa3532306, + 0x05f04405, 0x07231585, 0x73150631, 0x372a0690, 0x17363137, 0x15161732, 0x7e4e0716, 0x05cb4409, 0x33313f82, 0x37363736, 0x27343135, 0x37263127, + 0x33363734, 0x26558336, 0x36313333, 0x85353637, 0x823f8215, 0x05195509, 0x27244182, 0x35262722, 0x6805b553, 0x22200585, 0x272d5783, 0x1913d927, + 0x0111111a, 0x01021309, 0x24028202, 0x12101f03, 0x2e108305, 0x05050112, 0x11011201, 0x12051a11, 0x83022010, 0x0201231b, 0x10830a12, 0x01121a25, + 0x8b010606, 0x01022137, 0x12203786, 0x12203685, 0x1f213584, 0x82528203, 0x09132153, 0x19213583, 0x21358313, 0x53958e01, 0x8ba31d85, 0x85031f21, + 0x9b558ba9, 0x05874e37, 0x0002bd2f, 0x3300c301, 0x70003c00, 0x00007900, 0x065d5305, 0x54343521, 0x332b08fd, 0x36373631, 0x26313537, 0x83352627, + 0x056f5309, 0x25051f52, 0x31230706, 0x1e5e1315, 0x62362005, 0x17250581, 0x14151631, 0x09496207, 0x7f05e14f, 0x5484101a, 0x35313324, 0x33521603, + 0x01250806, 0x0e0d0140, 0x0808500c, 0x0d0e0c50, 0x121b1001, 0x0d160112, 0x1716010d, 0x16172222, 0x160d0d01, 0x36252401, 0x08696a10, 0xacf8fe21, + 0x0f28382e, 0x48090507, 0x070b0b07, 0x07050948, 0x1201280f, 0x09a71b12, 0x83191314, 0x2a64835c, 0x09141319, 0x242536a7, 0x6c012801, 0x38200898, + 0xfe2034a9, 0x4f085b6b, 0x082a0cdf, 0x66005d00, 0x00006f00, 0x445f3613, 0x58372006, 0xfd6e0562, 0x195a410c, 0x37413120, 0x07cd4f11, 0x530b8e41, + 0x03200876, 0x20078a41, 0x07f25550, 0x0d0d502a, 0x0e090916, 0x09090ea0, 0x230e4e41, 0x30291b1b, 0x3023128d, 0x411b1b29, 0xd0200b74, 0x21101a6d, + 0x366d5801, 0x13192408, 0x45270914, 0x27200588, 0x200f4841, 0x20488327, 0x21158f47, 0x72820147, 0xf96d2b8c, 0xb8fe2108, 0x00206a87, 0x300a675e, + 0x003400c3, 0x0063003d, 0x0075006c, 0x17160100, 0x08647715, 0x49111641, 0x1d56050a, 0x06bf4208, 0x0f410720, 0x15172307, 0x34941535, 0x410cd242, + 0x0520083e, 0x2707ae41, 0x010d3201, 0x24253610, 0x230f8b42, 0x101b1212, 0x20098042, 0x071541ca, 0x50410820, 0x200d8d0d, 0x21258708, 0x90574801, + 0x07be2708, 0x2401280f, 0x8b423625, 0x121b2311, 0xb5420112, 0x874e200c, 0xce493334, 0x1409cece, 0x16221913, 0x17010117, 0x13192216, 0x10850914, + 0x01161722, 0x2107cb42, 0xfb6ee9fe, 0x03003210, 0xbeff2000, 0xc2016201, 0x5f005500, 0x00006900, 0x4f481813, 0x0706250b, 0x17140706, 0x2406597e, + 0x36371617, 0x08677e37, 0x36200d86, 0x82073349, 0x31372129, 0x27260d82, 0x23302726, 0x47182726, 0x0d820be9, 0x37070726, 0x34272607, 0x17232c82, + 0x83370737, 0x27263350, 0x060703ff, 0x0a0b0e0d, 0x29420b04, 0x1212012a, 0x1087121f, 0x0e0e0d23, 0x361c8807, 0x020b2732, 0x0c090802, 0x12100b0d, + 0x070a0f36, 0x010b0201, 0x870f0101, 0x0e0c3b1f, 0x2e5c060e, 0x01142e2e, 0x091e1213, 0x0f3d3d3d, 0x0d0f3e0e, 0x0b0d9801, 0x2383040b, 0x330f2d29, + 0x252c4633, 0x87471a26, 0x05342311, 0x0b871c03, 0x1d072a22, 0x0b2f5983, 0x0c070102, 0x0c01d907, 0x090c0d0b, 0x873c0101, 0x3024081e, 0x671a0204, + 0x1fb8b8b8, 0x1e1d2528, 0xf5f5e611, 0xf90401f5, 0x00000603, 0x20000100, 0xa101e0ff, 0x5200a001, 0x4a08a96d, 0xda540b41, 0x0a925305, 0x2608674a, + 0x37363135, 0x73171732, 0x158205ec, 0x5a051352, 0x1521057f, 0x20018331, 0x2a158226, 0x2d2d0260, 0x0a2c3f44, 0x82090d0d, 0x3d0a2290, 0x23531858, + 0x02210817, 0x0a060715, 0x080d0c0c, 0x0b020307, 0x121b160a, 0x0e0c0811, 0x1a2b0909, 0x44c0011a, 0x01022d2d, 0x833f8328, 0x18372047, 0x25183453, + 0x02150960, 0x40830704, 0x48820c20, 0x070f062d, 0x0e090907, 0x14530937, 0x4d322726, 0x02250733, 0x00c00140, 0xb9561835, 0x05764c0a, 0x20057f6f, + 0x05736a22, 0x52183320, 0x27200bcf, 0x4c068b4e, 0x212a0592, 0x11111105, 0x31113121, 0xf7474021, 0x0bb02207, 0x052b4445, 0x85000121, 0x0b452207, + 0x201b87b0, 0x836d82fe, 0xc0012703, 0x1b121201, 0x1783e0fe, 0x200c0463, 0x21178320, 0x17832001, 0xe0fe4024, 0x03832001, 0x0022aa82, 0x574e0003, + 0x00a02905, 0x00430036, 0x01000059, 0x51059753, 0x15210b7d, 0x055f4831, 0x16171625, 0x83373217, 0x35362403, 0x5b353135, 0x342408b3, 0x03232627, + 0x850c3969, 0xe95a1843, 0x2001210e, 0x104fb682, 0x231d2107, 0x07a64c18, 0x081e2523, 0x85188215, 0x090922d2, 0x0c27620e, 0x2006c749, 0x06f54901, + 0x01c0fe23, 0x4c2282a0, 0x3121055f, 0x084d1811, 0x12132207, 0x20128201, 0x851a8360, 0x0d026e49, 0x35851786, 0x0720f482, 0x0238f383, 0x00c50100, + 0x002b0011, 0x00520038, 0x0079006c, 0x13000089, 0x06073707, 0x3320e482, 0x2724da83, 0x07263127, 0x4e06cf67, 0x21201132, 0x16202682, 0xab6e1d82, + 0x05494c12, 0x2505874f, 0x37363335, 0x324e3131, 0x17162105, 0x6c7e198c, 0x4437200e, 0x36820501, 0x17318282, 0x40404085, 0x0a050307, 0x03050a80, + 0x0b0b4007, 0x114f4e45, 0x6080fe22, 0x290b2c5c, 0x0e0d0150, 0x0e144014, 0xe782010d, 0x090e6024, 0x108fc009, 0xcf5c2020, 0x0b35220b, 0x21608a0b, + 0x6f83bb01, 0x01090a29, 0x40070a0a, 0x4e7b0a0a, 0xcc631368, 0x50b0200c, 0x102007ea, 0x2005b741, 0x200f8f10, 0x249b8b80, 0x400a0ab5, 0x3e5d8607, + 0x03000000, 0xc0fffaff, 0xc0014002, 0x37001c00, 0x00005700, 0x21373613, 0x16171631, 0x45310707, 0x26200541, 0x27060259, 0x37263127, 0x31173205, + 0x6b601c83, 0x3a601805, 0x3617230c, 0x33822627, 0x07194418, 0x17213d82, 0x07935016, 0x22084182, 0x190b0437, 0x0b19b001, 0x3d6b0f0a, 0x12012727, + 0x0d400203, 0x010a0fb7, 0x212127ac, 0x14131314, 0x89272121, 0x0a3b2c09, 0x250b0b0a, 0x0a0b0b25, 0x8b24240a, 0x0121080b, 0x010116a9, 0x83131716, + 0x412f2f0d, 0x01022429, 0x4f100a30, 0xc91713e0, 0x22221313, 0x22222626, 0x87008213, 0x916b2009, 0x824b853f, 0x01002cf6, 0xe0ff0000, 0xa0018001, + 0x43004500, 0xf5540667, 0x0d7e5d10, 0x36373222, 0xe354cf82, 0x3137210b, 0x270c2d5f, 0x181e3b01, 0x6b370c17, 0x23058541, 0x15092d50, 0x2006ed7d, + 0x25179725, 0x1010a001, 0x0b43851b, 0x136c2105, 0x9206065d, 0x06c74412, 0x0002e022, 0x1137af82, 0x00002900, 0x21212105, 0x27262726, 0x31213135, + 0x07063115, 0x82130706, 0x4a352011, 0x16200685, 0x2f06244c, 0x17161716, 0x80fec001, 0x80fe8001, 0x0112121b, 0x12233f82, 0x4c401b12, 0x802609e7, + 0x0a131320, 0x1b83a010, 0x82012021, 0xe0e0211a, 0x01210a83, 0x05e74440, 0x0d191922, 0x2b411483, 0x82402006, 0x5549207b, 0x17680a1b, 0x294f180c, + 0x6566180c, 0x0c07560c, 0x230ce365, 0x09090e50, 0x4107b242, 0x08680503, 0x4f502006, 0x902006a5, 0x2206b165, 0x82a001d0, 0x4ea0201f, 0x7e44062d, + 0x06484e06, 0x1b860686, 0x43450020, 0x00c02608, 0x0046003a, 0x18af8a50, 0x6007af4a, 0x37300eff, 0x23262734, 0x31353123, 0x33161716, 0x35363732, + 0x27200f82, 0x5109c755, 0x17250748, 0x33351535, 0x20438331, 0x51b682c0, 0x0d830d4e, 0x802aa082, 0x0c0a1822, 0x0a090a0d, 0x0d823c2a, 0x4b512020, + 0x5c402707, 0x22191809, 0x1382c001, 0x26104e51, 0x4934330d, 0x8209090e, 0x0a092821, 0x0a0c0d0a, 0x82230b29, 0x5184200e, 0xf8280a4a, 0x225c5c5c, + 0x00091819, 0x03360082, 0xe0ff0000, 0xa0014002, 0x4d004100, 0x00005b00, 0x06272601, 0xc7531507, 0xa34f1806, 0x5f162009, 0x33220509, 0xb1423133, + 0x06b94208, 0x8d413720, 0x82df8506, 0x230723f5, 0x14832333, 0x06310738, 0x21212723, 0x06171621, 0x26312107, 0x02373627, 0x16160210, 0x6d41fe02, + 0x100a3806, 0x28030909, 0x10090903, 0x1a071860, 0x0e0e1269, 0x0d1f1b06, 0x4243160a, 0x102105ec, 0x30a682cf, 0x02156910, 0x8001f205, 0x800180fe, + 0x0f01010f, 0x260584fe, 0x02168801, 0x82081602, 0x827020fd, 0x0b01302b, 0x0fa0100c, 0x17010c0d, 0x110a0a68, 0x8217094b, 0x82502017, 0xf8082517, + 0xb0053b40, 0x8207fc5d, 0xff0535eb, 0x02befff9, 0x00c00100, 0x001b000d, 0x007b0060, 0x01000088, 0x0c9a4918, 0x4a5d0720, 0x3607210c, 0x52069748, + 0x15230920, 0x70071431, 0xd75f0573, 0x0be35f0a, 0x01280b90, 0x37360706, 0x31353536, 0x0d284118, 0x03224683, 0x237f0716, 0x01172208, 0x27aa8750, + 0x20202063, 0x090d0b07, 0x66230484, 0x827c1111, 0x06c843e9, 0x25151531, 0x29363631, 0x110e0e64, 0x0b0b3511, 0x835d0909, 0x835d2009, 0x83752009, + 0x86752009, 0x2a012813, 0x14252925, 0x43020e14, 0x36820504, 0x070b0825, 0x840d0920, 0xb0012404, 0x74404040, 0x0129063c, 0x3030070f, 0x07090d30, + 0x2704840b, 0x7c0e0e60, 0x0b040407, 0x3306b54c, 0x24252b9a, 0x07071d17, 0x11116427, 0x09350e0e, 0x5d0b0b09, 0x5d200983, 0x75200983, 0x75200983, + 0xfe2b1386, 0x1e011692, 0x62302a2a, 0x41280f01, 0x3b8405bf, 0x09d20126, 0x070b300d, 0x47430484, 0x41022905, 0x2800c101, 0x47003500, 0x26015018, + 0x16310523, 0x062c4a07, 0x4705504a, 0x7f6f06b3, 0x82262005, 0x1823201a, 0x241c0050, 0x010c0001, 0x0b9b6ae0, 0x2c766020, 0x16012408, 0x18402217, + 0x23180950, 0x200e0ae1, 0x830c376b, 0x010f232e, 0x3f830f01, 0x00820020, 0xfcff012a, 0x4001deff, 0x5000a001, 0x2008d758, 0x0a225333, 0x3053a183, + 0x82062009, 0xf96d18b7, 0x4537200c, 0x372006e9, 0x58054a48, 0xcf8205c5, 0x2323232c, 0x35262722, 0x0e090900, 0x4b41c040, 0x0e382205, 0x072d5507, + 0x21210b37, 0x030a912e, 0x0d080802, 0x11e00c0c, 0x50170706, 0x09141319, 0x26288599, 0x13140999, 0x82401019, 0x07455d0c, 0x16210a82, 0x0505421a, + 0x1e1e2c24, 0x36836707, 0xa0243e83, 0x0115160e, 0x4e05f84e, 0x105805f7, 0x00012c05, 0x01dfff00, 0x00a10180, 0x18000049, 0x430ccd44, 0xe77705df, + 0x0d3d4a05, 0x2107b96c, 0xc54b3135, 0x0bb1450b, 0x5501372b, 0x0901010a, 0x0b0c0d09, 0x188b85ab, 0x220d4769, 0x4b0c0bab, 0x9e2005d7, 0x23065d5c, + 0x68019ea9, 0x35832d83, 0x187a9221, 0x82099953, 0x06f95409, 0x09927a25, 0x830a0101, 0x85882037, 0x47882051, 0x6a200a7f, 0x2508e554, 0x33363115, + 0x44181732, 0x16200db1, 0x2105087a, 0x01822627, 0x230b1656, 0x07222326, 0x06210f8b, 0x064f5307, 0x15161725, 0x41060714, 0xa7410697, 0x18362007, + 0x20085b6f, 0x20958290, 0x85008208, 0x1c2a2d87, 0x07030a1c, 0x0b0d0d08, 0x230b030a, 0x1d891385, 0x01022e25, 0x86362524, 0x07cc55c3, 0x022f1126, + 0x321f1e01, 0x01212b82, 0x230482a0, 0x21010121, 0x24050345, 0x24231431, 0x2648832e, 0x0e070703, 0x85441d2d, 0x015f2315, 0x09855f01, 0x3f254425, + 0x44242536, 0x6a85061b, 0x3b4b3526, 0x31182e2e, 0x00231f82, 0x48feff01, 0x3920068f, 0x0c157218, 0x07311522, 0x0acf6c18, 0x4c05e345, 0x35210ba9, + 0x07b94e31, 0x07072624, 0xa8563531, 0x0d292906, 0x04030606, 0x170d0c0b, 0xa24c6882, 0x89e02107, 0x77201587, 0x21077042, 0x24830b96, 0x07211683, + 0x82a585a8, 0x279a2105, 0x22211487, 0x0aa74183, 0x4b474220, 0x0f47470e, 0x0a785018, 0xad583120, 0x05aa480f, 0x26273423, 0x073d4723, 0x23050041, + 0x2a1b1a01, 0x2a220985, 0x1a411a1b, 0x06a65806, 0x47a00121, 0x80410730, 0x212e2507, 0xe4fe0b22, 0x0125a685, 0x21220b1c, 0x5819872e, 0x002307a1, + 0x82060000, 0x02003a03, 0x00800180, 0x003e002c, 0x005d0050, 0x0078006b, 0x07220100, 0x23063107, 0x069b5523, 0x17209f83, 0x3622a582, 0x0d543737, + 0x23273109, 0x27272223, 0x03232631, 0x26271727, 0x35352627, 0x5d5b1b82, 0x07252805, 0x37360737, 0x82333135, 0x056e4933, 0x37362522, 0x2e09656e, + 0x33233317, 0x07061716, 0x27263123, 0x8b173736, 0x0133081a, 0x25222a40, 0x58091d19, 0x010f1018, 0x29191801, 0x4444356c, 0x19296c35, 0x0f010118, + 0x19481810, 0x2226181d, 0x1d1dbc2a, 0x0f0f191d, 0x01280701, 0x82950123, 0x01232d0c, 0x01010728, 0xfe190f0e, 0xe00f01a7, 0x04833982, 0xe0e01022, + 0x3b820a87, 0xa00f0122, 0x04831783, 0x19178023, 0x30118210, 0x202a5518, 0x231b0a20, 0x1b220101, 0x2a20200b, 0x25738355, 0xfe171910, 0x008207e6, + 0x19131328, 0x30010755, 0x0b823545, 0x4535072b, 0x55070130, 0x07131319, 0x07ba7783, 0xd2463020, 0x094c7c07, 0x0000002d, 0xff000001, 0x018001be, + 0x185d00c2, 0x240eaf59, 0x27260706, 0x21038422, 0xa2631506, 0x053f4905, 0x55313521, 0x15200755, 0x0cc75918, 0x6107ab4e, 0xcd5a05a9, 0x2726370d, + 0x01372726, 0x0605042e, 0x0b0c0d0c, 0x07092205, 0x181e3020, 0x93421109, 0x0d012108, 0x2005fb78, 0x2222874e, 0x82140816, 0x0624221c, 0x06654d06, + 0x01260c82, 0x132b1d1c, 0x40839501, 0x5f242583, 0x01210806, 0x2105824d, 0x4885d050, 0x194dd020, 0xda2b2107, 0x3c2b2587, 0x09090110, 0x02649a0e, + 0x87140e0e, 0x1f2d2425, 0x4e35061e, 0xe038069b, 0xa0018002, 0x23001900, 0x37002d00, 0x4e004100, 0x00006600, 0x15351513, 0x830bd261, 0x312125be, + 0x07060706, 0x2306b770, 0x37353123, 0x23059158, 0x05333135, 0x232b2d82, 0x36373631, 0x23332737, 0x83311533, 0x0c436b2d, 0x0621fc82, 0x09ad5807, + 0x5b272621, 0x35280512, 0x12120160, 0x1ba0011b, 0x2106cc71, 0x098360fe, 0x04844020, 0x89584020, 0x85602005, 0x4b402007, 0xe02005b0, 0x370b3c6c, + 0x161602f0, 0x22220102, 0x16900133, 0xfe160202, 0x14141f70, 0xe0600101, 0x8206e24b, 0x05eb4b59, 0xa0200882, 0x67844c84, 0x86a04021, 0x84a0204b, + 0x6c702059, 0x58200bda, 0xf0244783, 0x01222233, 0x14235a84, 0x62f01f14, 0xdc2f053f, 0xa401c001, 0x4a004300, 0x00005100, 0x83072613, 0x177546cc, + 0x77463320, 0x0c094c06, 0x0a596318, 0x23311537, 0x33132731, 0x31153323, 0x33232727, 0x17313523, 0x16160e7b, 0x0d834601, 0x91616421, 0x8c392313, + 0x00820fb6, 0x823a7721, 0x92012600, 0x17080512, 0x055a44c0, 0xfc418020, 0x84802005, 0x06204513, 0x2b06ab47, 0xeefed2c0, 0x56401616, 0x00050056, + 0x18057b51, 0x4b9b3b78, 0x802805ff, 0x2e00a001, 0x5e004100, 0x45088f45, 0x37240879, 0x17163736, 0x5f06c74c, 0x2321054e, 0x09a66822, 0x75172321, + 0x07290af8, 0x27222306, 0x32213526, 0x05236b17, 0x06272624, 0xed6d0607, 0x06476505, 0x2e333624, 0x00820d14, 0x07071433, 0x6c46450d, 0x0d45466c, + 0x0d140707, 0x0c01010c, 0x20138c0d, 0x0c0e6a32, 0x070d103f, 0x0907087c, 0x6363460f, 0x07091046, 0x0b084509, 0x571a080b, 0xa0010d07, 0xfe140d0d, + 0x2953829c, 0x0f0f0602, 0x0f0f0202, 0x11820206, 0x8c640121, 0x0c905d11, 0x0db60b34, 0x0d020c0e, 0x020d0101, 0x570d0e0d, 0x7f210909, 0x7342000b, + 0x01e02a05, 0x00a00180, 0x00410035, 0x0807414c, 0x53311521, 0x8f4407cb, 0x3133210d, 0x4d056c68, 0x232306dd, 0x18263123, 0x2b0fa56a, 0x33233307, + 0x07060706, 0x40353123, 0x820b0053, 0x3b60250b, 0x030c2b2b, 0x2e054342, 0x2b2b0c03, 0xbbdb803b, 0x2060bbbb, 0x820b1818, 0x0bbb2a07, 0x60201818, + 0x0909a001, 0x06834e0e, 0xc2866020, 0x67186020, 0x382f09f7, 0x80012423, 0x12110140, 0x121c401c, 0x82400111, 0x500420c3, 0x4f26087f, 0x64005900, + 0xc5946c00, 0x3624cfa7, 0x33273435, 0x90080354, 0x22dd83df, 0x83141516, 0x841720dd, 0x333121e3, 0xd985e589, 0x2505c341, 0x29293450, 0x11851317, + 0x00820120, 0x13380985, 0x34292917, 0x9e9ebe70, 0x1f2f509e, 0xbfbfbf9e, 0x9ebf0101, 0x9e502f1f, 0x814ff684, 0x06e15406, 0x25544020, 0x01402406, + 0x492b1a1a, 0x2b290f50, 0x60011a1a, 0x401f0120, 0x24008208, 0x011f6020, 0x054b6320, 0x01000225, 0x184100c0, 0x2d0e2d59, 0x15163117, 0x07143115, + 0x31272706, 0x0d853115, 0x22070632, 0x07312723, 0x26232231, 0x34313527, 0x35313737, 0x06210d82, 0x065c6b27, 0xc0353124, 0x5f7c1201, 0x0eb22505, + 0xab080607, 0x2b09497c, 0x3a06010d, 0x070608ab, 0x6201b20e, 0x2a07be7c, 0x11097742, 0x04050839, 0x7c503902, 0x203305a4, 0x2a0d0120, 0x502b0508, + 0x05040239, 0x0a113908, 0x18004276, 0x2a08634f, 0x00a00100, 0x003a002b, 0x4c6a005a, 0x31200941, 0x21050565, 0x9f820706, 0x64086b4e, 0xeb640dff, + 0x1825200f, 0x4a0c6572, 0xd1830bc3, 0x17333622, 0x2305a554, 0x27262726, 0x33374883, 0x0e090900, 0x28293d50, 0x17170102, 0x05043427, 0x0c0d0c05, + 0x4938060b, 0x40240637, 0x22303030, 0x2d062759, 0x50000130, 0x1f305050, 0x20010120, 0xf36d301f, 0x46502009, 0x302f07f6, 0x0e800130, 0x28020909, + 0x232d3d29, 0x83801222, 0x20508348, 0x06b2428c, 0xc0e0a024, 0xa05c1601, 0x60a02105, 0x4b824384, 0x2106d041, 0x3982a080, 0x0f65a020, 0x82002008, + 0x00012100, 0x23078f50, 0x01000045, 0x85118860, 0x070d41db, 0x22200789, 0x08377c18, 0x5966f185, 0x21078207, 0x94618001, 0x43602009, 0x07830653, + 0x1288a086, 0x830a314d, 0x4203879f, 0x11880570, 0x2f06bb41, 0x018002d0, 0x000800b0, 0x00690060, 0x13000072, 0x4107b272, 0x35200569, 0x2107fc7a, + 0xec7a1714, 0x0659530d, 0x996c1520, 0x27342507, 0x31352726, 0x220d7c4b, 0x8e363736, 0x3121233f, 0x4a182535, 0x0320076e, 0x80206987, 0x2007bc5a, + 0x0d425b20, 0x60434020, 0x00012105, 0xb14b168d, 0x8d402007, 0xc0fe2516, 0x16024801, 0xa8204a85, 0x1808725b, 0x2008e749, 0x0fa05c61, 0x0e413720, + 0xa8372005, 0x49372117, 0xfe215587, 0x0aef72d8, 0x09df4718, 0x3f003126, 0x65005200, 0x2108a943, 0x7f183121, 0x4e570739, 0x2131210c, 0x18060168, + 0x2609db47, 0x37071711, 0x65312107, 0x072007db, 0x2011f970, 0xe7481805, 0x01002511, 0x01221716, 0x29050350, 0x0e09091f, 0x09090e20, 0x088600ff, + 0x82011f2d, 0x01121212, 0x18071220, 0x510718be, 0xf185063c, 0x41072d48, 0x7020065d, 0x24072043, 0x1729e0fe, 0x66148530, 0x302507e5, 0x20012917, + 0x23008348, 0x17010117, 0x8209044d, 0x0cb35948, 0x00820020, 0x2009a34d, 0x377c1862, 0x31152316, 0x7c183137, 0xd1680945, 0x31352707, 0x33363736, + 0xc06e1716, 0x27222309, 0xb9443526, 0x26272306, 0xc7443637, 0x200d8809, 0x20318234, 0x29aa8260, 0x0b0c0d77, 0x06060304, 0x0989890d, 0x2434402f, + 0x0a010424, 0x090d0e09, 0x36360608, 0x2027834e, 0x20278717, 0x4e098929, 0x232107a3, 0x83408322, 0x1d272120, 0x9a250a89, 0x35222201, 0x28428208, + 0x0e0a0901, 0x33334e08, 0x212f8202, 0x2a8707a8, 0x891e0b21, 0x8236200a, 0x08074588, 0xc001402a, 0x36002900, 0x67005100, 0x10875d18, 0x33311724, + 0x03823731, 0xd6670787, 0x7d212009, 0x35200c57, 0x20194758, 0x08e35305, 0x83272621, 0x0560453e, 0x2408785b, 0x10401010, 0x200382e0, 0x08154b10, + 0x4aa04021, 0x6b180ba4, 0x012313a9, 0x180f0100, 0x25072260, 0x010d0e14, 0x9a5b1e02, 0x83a02006, 0x82202044, 0x12012500, 0x60011b12, 0xfe200d83, + 0x240c8177, 0x251615f0, 0xc96b1826, 0x738d2a0f, 0x010f7373, 0x0c730f01, 0x07584521, 0x000c2122, 0x2d08e75f, 0x00c00120, 0x003a0020, 0x00630043, + 0xc75a0083, 0x18152005, 0x6f142955, 0x03230558, 0x64311506, 0x3324052c, 0x31013732, 0x2d06d663, 0x01072223, 0x07370701, 0x31373127, 0x756f0517, + 0x6a551805, 0x22408510, 0x9e010731, 0x26eb2c1f, 0x05052626, 0x05020e26, 0x890e0205, 0x0ebd2909, 0x140e230e, 0x7d010f13, 0xfe380886, 0x69b70183, + 0x69186969, 0x0823fe18, 0x03153808, 0x15030808, 0x39070739, 0x38220985, 0x15946001, 0x0e0e9522, 0x64835a8f, 0x0fa0fe2d, 0x230f1313, 0x7d010e0e, + 0x8214130f, 0x820e206a, 0x8538205f, 0x8f22205f, 0x2158835a, 0x159300ff, 0x02000034, 0xc0ff0000, 0xc7010702, 0x87000b00, 0x36010000, 0xe1562627, + 0x37372105, 0x15270985, 0x31171714, 0x5c263107, 0x31200526, 0x91050d41, 0x2217830f, 0x5a323316, 0x07840595, 0x31833620, 0x31372722, 0x97075941, + 0x2271850f, 0x18360726, 0x270a715e, 0x0ef90127, 0x5811110e, 0xc72a0484, 0x1d0b0b0c, 0x051f0a1d, 0x09820b1f, 0x0a1c1c26, 0x0b20051e, 0x09820a82, + 0x8c6f4520, 0x0c453a05, 0x1e26271d, 0x0b09090b, 0x0d1f2c22, 0x1d27261d, 0x0c09090c, 0x0c202c22, 0x220b861e, 0x832e0808, 0x203b254b, 0x3a080a1f, + 0x2e2a0983, 0x010b0705, 0x0e111197, 0x0484580e, 0x30820e20, 0x1d244482, 0x212a1e0b, 0x38834883, 0x44200b8c, 0x23050770, 0x1c1c0c45, 0x0b237b82, + 0x83200421, 0x830a8209, 0x1d1d2109, 0x08229083, 0x4b832e06, 0x09073c25, 0x833a2121, 0x082e2309, 0x534b0c06, 0x01c02d06, 0x00c601bf, 0x004c000c, + 0x01000067, 0x200c445e, 0x05fc5626, 0x21069e44, 0x1c551736, 0x31072205, 0x092a5c33, 0x82262721, 0x3137241d, 0x18163123, 0x82083464, 0x32372a42, + 0x27313717, 0x31373203, 0x05b26631, 0x944c2582, 0x14152805, 0x16171617, 0x5d400133, 0x73230b0a, 0x6a290809, 0x2939078f, 0x165a2c26, 0x26100405, + 0x0d0e1762, 0x0a031d03, 0x070e0d0b, 0x46180307, 0x3f80180d, 0x0f11240b, 0x182d2a37, 0x2113757a, 0xf65c9001, 0x0349390b, 0x02081f05, 0x0c0b0b02, + 0x1b1f080d, 0x170b2b12, 0x012b1316, 0x8d171011, 0x5b835383, 0x221e7a25, 0x182d2d44, 0x2309d67a, 0xb9fe1436, 0x13fc7a18, 0x01000032, 0xe0ffffff, + 0xa1018001, 0x00005f00, 0x31072613, 0x2106a153, 0x40483117, 0x3133210d, 0x490d4c76, 0xd34b05d2, 0x07d57207, 0x4605764c, 0x395b0511, 0x2c2f830d, + 0x0a0e2427, 0x0801020a, 0x1a080d08, 0x08de6f02, 0x291b1b28, 0x36365220, 0x08820102, 0x2607425b, 0x0109090e, 0x5f362524, 0x01260bd8, 0x08251717, + 0x3d83a001, 0x05224584, 0x20471f1b, 0x29a02905, 0x02011b1b, 0x20523636, 0xbf4d0883, 0x54202008, 0xa45f06a0, 0x261f3006, 0x01061a1a, 0x000c0000, + 0x02e0ff00, 0x82a00100, 0x001a3709, 0x00470028, 0x00610054, 0x007c006f, 0x0097008a, 0x00b300a5, 0x0e531300, 0x53072019, 0x07200c1c, 0x6b05264a, + 0xfa8305fe, 0x06310724, 0xba432307, 0x26272305, 0x478b3727, 0x0c8b2320, 0x468c2720, 0xa80c6353, 0x25288d1a, 0x101602b0, 0x04840216, 0x10101822, + 0x02220a87, 0x0c8b9016, 0x08083838, 0x0bca010b, 0x1d010808, 0x0601301d, 0x061ae81a, 0x1d1d3001, 0x3c89e001, 0x47966020, 0x1796d820, 0x17967820, + 0x778b6020, 0x8305365b, 0x4930209e, 0xfb490789, 0x826b2008, 0x2e96828e, 0x13292936, 0x02021a0e, 0x29130e1a, 0x83533629, 0x18038b2b, 0x20081c50, + 0x9a158760, 0x6e5b8811, 0x1e2d058b, 0x6001c0ff, 0x0c00c001, 0x00005000, 0x09501813, 0x2603230b, 0x92563527, 0x06ef4305, 0x36373627, 0x32333333, + 0x07525533, 0x20085961, 0x0c047223, 0xc0200d8b, 0x080b9843, 0x02164822, 0x0d0c0705, 0x03030c0b, 0x2d183a07, 0x0f010606, 0x131c0202, 0x22060514, + 0x09011516, 0x28100e09, 0x21059f42, 0x07850808, 0x44c00121, 0xfe260b30, 0x37180781, 0x3c820b08, 0x61304483, 0x03010727, 0x211b1211, 0x24191a07, + 0x09090e20, 0x2006bc4c, 0x20078660, 0x066f4e61, 0xc1014124, 0x51186b00, 0x14222c1b, 0x57183015, 0xee8209e2, 0xf4833220, 0x37363726, 0x31353135, + 0x73056558, 0xf4820517, 0x83161721, 0x2223821b, 0x84323133, 0x35342421, 0x18333135, 0x261b2f51, 0x10110b0c, 0x82010202, 0x18202400, 0x830b0b11, + 0x824020f5, 0x261682bc, 0x02032018, 0x83100201, 0x18202014, 0x261a2e51, 0x70010245, 0x830c0b11, 0x06524c30, 0x48824020, 0x10240f83, 0x00a00404, + 0x01250082, 0xc0ff0000, 0x20f78302, 0x18f78c3d, 0x26130352, 0x31273133, 0x84373726, 0x17362405, 0x18163117, 0x200a0f5a, 0x20c98927, 0xf15118ff, + 0x1f66340e, 0x3c550a06, 0x0c090907, 0x510c0c76, 0x121b7b26, 0x87010112, 0x18e120b5, 0x320edb51, 0x47090c34, 0x08090c53, 0x0d0c5d07, 0x12014043, + 0x47a01b12, 0xa38306e7, 0x4f002722, 0x5218a5a0, 0x264409a9, 0x054d6905, 0x06311522, 0x08905618, 0x35272625, 0x83312331, 0x20218305, 0x07814135, + 0x0132b78f, 0x12121c40, 0x01e0fe20, 0x010f200f, 0x01010f30, 0x0a8a300f, 0x8f067541, 0x20b184bf, 0x852c8f50, 0x056f4137, 0xcf712020, 0x18422006, + 0x200e5372, 0x06275016, 0x47078f60, 0x15840567, 0x600cd15a, 0x5f420779, 0x0ee02405, 0x712f0909, 0x212108b6, 0x07b1652c, 0x71212c21, 0xea7109be, + 0x05746010, 0x081c0822, 0x2106b371, 0x7e180119, 0x19200876, 0x820aba71, 0x0f9c605a, 0x27058b41, 0xc0018001, 0x48003100, 0x550e915a, 0x615319db, + 0x03352109, 0x87076774, 0x056d7413, 0xa485e020, 0x73857020, 0x0d8d7020, 0x5e661c83, 0x21228209, 0x2794a001, 0x9c603586, 0x31238507, 0x00030000, + 0x02c0ff03, 0x00c2013d, 0x0020000f, 0xc3480034, 0x31132305, 0x827c0716, 0x07112305, 0x1f421716, 0x27222b05, 0x31373726, 0x26031736, 0x1e822137, + 0x18310721, 0x3509d46e, 0x01000127, 0xe0070b0a, 0x0a040405, 0x2c010fe0, 0x0f01010b, 0x0d820980, 0x07802708, 0x1203ce0b, 0x03121602, 0x21220c04, + 0x2ccafe2c, 0x040c2221, 0x040bb001, 0xc0fe0903, 0x01090808, 0x5140010f, 0x34820c03, 0x08082608, 0x030ae008, 0x0311cdfe, 0x2a0f1103, 0x01011919, + 0x0f2a1919, 0xfeff0200, 0x0301baff, 0x7e00c601, 0x00009900, 0x158c1813, 0x27263411, 0x07060726, 0x17061522, 0x33141716, 0x07061730, 0x84143130, + 0x8216200d, 0x31302511, 0x31173130, 0xd1820983, 0x27060722, 0x27202d82, 0x07821383, 0x37832320, 0x16253583, 0x16333217, 0x202d8733, 0x08a96933, + 0x2f846b82, 0x54272621, 0x2624051d, 0x17271737, 0x1d820b88, 0x2005d249, 0x29598317, 0x12034107, 0x0f082815, 0x544e070e, 0x0a3f0807, 0x36081110, + 0x010b2f2c, 0x140c0c03, 0x08220101, 0x130d0c04, 0x12151411, 0x08132903, 0x02020301, 0x0a291513, 0x040f0f0e, 0x0d020204, 0x04040c0b, 0x030d0605, + 0x01010104, 0x12120e02, 0x8235010e, 0x0a05253a, 0x0719110a, 0x142c0582, 0x12151511, 0x09142902, 0x4d010303, 0x012f2282, 0x02091529, 0x12020103, + 0x09112816, 0x82020807, 0x0c23284d, 0x08116001, 0x8201060b, 0x06042843, 0x0b0d0d07, 0x8203040b, 0x0928080b, 0x01361512, 0x0d18181e, 0x2a140101, + 0x181d0101, 0x080b0c17, 0x0b010507, 0x0405060d, 0x09090f0e, 0x05040205, 0x01010205, 0x87837f83, 0x0102013f, 0x02060605, 0x34131209, 0x0d16191d, + 0x1a1d2615, 0x080d0e19, 0x0d0c0608, 0x0d050607, 0x847e82d1, 0x0e0c213b, 0x03203b82, 0x06293582, 0x08170f06, 0x00000003, 0x08f34806, 0x3600252a, + 0x4a003e00, 0x63005a00, 0x5e08ef4e, 0x0585056b, 0x60313521, 0x34310503, 0x21333637, 0x26373631, 0x16132127, 0x35313317, 0x256b1831, 0x36173f09, + 0x06312737, 0x36371507, 0x07273437, 0x14151631, 0x23031707, 0x31152333, 0x17323133, 0x125a3137, 0x052e5206, 0x2708eb4e, 0x2f2f0401, 0xc8183845, + 0x0805df42, 0x0f90012d, 0xfe0f0101, 0x1602a070, 0x0a154048, 0x12041405, 0x29378002, 0x79050556, 0x7d040126, 0x895b0201, 0x12101010, 0x14850c0f, + 0x18382b2b, 0x2d080f5c, 0x1201a001, 0x121b1b12, 0x2d440112, 0x1259022d, 0x012b0806, 0xfe010f0f, 0x48021658, 0x15140517, 0x1404010a, 0x23220517, + 0x40460103, 0x1212402f, 0x07060557, 0x1f012406, 0x305d09c0, 0x18011d1e, 0x62085c5b, 0x00280613, 0x6000c001, 0x9b008c00, 0x0a8d5618, 0x3d421620, + 0x71072005, 0x2321066d, 0x21ec8223, 0x15861506, 0x83151721, 0x0edb440d, 0xf3832720, 0x77423720, 0x06e57206, 0x84272621, 0x5f352015, 0x052009ad, + 0x20052d4a, 0x32665533, 0x90012008, 0x1309090e, 0x040c0a11, 0x0c070504, 0x100a0c0c, 0x0f170210, 0x34210110, 0x01131422, 0x5f161601, 0x172206ee, + 0x8c181813, 0x17280706, 0x0e151411, 0x2002010e, 0x14292282, 0x24151601, 0xfe0e0909, 0x2a7e5570, 0x2b82c020, 0x08041222, 0x77836f84, 0x01080532, + 0x23170f0f, 0x1d0e150f, 0x2704251d, 0x150c1d1d, 0x3205cb41, 0x0f0d0613, 0x0c0c0d08, 0x0703020b, 0x0e010b10, 0x8604150e, 0x1d282425, 0x82160d1e, + 0x55402024, 0x0f5927a7, 0x01c02808, 0x001900a0, 0x534d0033, 0x3641089d, 0x31112105, 0x2405614c, 0x27262726, 0xc8591811, 0x4355180c, 0x3325270c, + 0x17163323, 0x2e8c1716, 0x37363125, 0x18a03736, 0x8808e654, 0x23129208, 0x20207001, 0x2309987c, 0x010d0e14, 0x01212d83, 0x21098770, 0x1388a0fe, + 0x87c06021, 0x2113880a, 0x2d83b0a0, 0x88e0fe21, 0x684a8423, 0x31250cf7, 0x00006c00, 0x05555d01, 0x47312321, 0x936505ed, 0x31272205, 0x21a68226, + 0xed473133, 0x05ef4705, 0x2606c56a, 0x35031517, 0x6d233515, 0x272005ce, 0x85051041, 0x06635df6, 0x3321e184, 0x05696c31, 0x0c505685, 0x02333607, + 0x12120100, 0x112ea81b, 0x460b0605, 0x0b461111, 0x2e110506, 0x0dfd6ba8, 0x01534027, 0x0702030d, 0x69158747, 0x37830568, 0x0207472e, 0x53010d03, + 0x16120593, 0x93051216, 0x2c06ef6d, 0x0c0e0e01, 0x460e0e46, 0x010e0e0c, 0x43268340, 0x402908ed, 0x404000ff, 0x11110f40, 0x83168d0f, 0x25158359, + 0x10100640, 0x035c0006, 0x01022b05, 0x000800a0, 0x00560022, 0xdf822500, 0x15312125, 0x6a152131, 0x36210812, 0x25fd8837, 0x06070631, 0x34410307, + 0x27262107, 0x23071c41, 0x17163333, 0x23088072, 0x06310707, 0x29050a67, 0x35313337, 0x23272631, 0x366a1531, 0x073a6a07, 0x5e0a1577, 0xa0200731, + 0x9026f387, 0x161722a0, 0x26412601, 0x0126250b, 0x4020500f, 0xcc910083, 0xf2890120, 0x16234184, 0x41102217, 0x10230b16, 0x8a40010f, 0x891920e7, + 0x09675fe7, 0x2b092d5f, 0x35013736, 0x33333515, 0x33233115, 0x834f0883, 0x24f78206, 0x16311717, 0x07c96d37, 0xd882d683, 0x5c0aff61, 0xe3410515, + 0x09b54105, 0x83800121, 0x40fe2793, 0xe0a01090, 0xd48f0f50, 0x9020aa82, 0x0884f688, 0x8b18e483, 0x012110d4, 0x23fa8400, 0x0f014040, 0x2222d98d, + 0x8b181617, 0x00390dfe, 0xff000006, 0x010002c0, 0x001a00c0, 0x006c0056, 0x00870079, 0x05000095, 0x0b305136, 0xcd822720, 0x2505a570, 0x27171617, + 0xf5521727, 0x057f7105, 0x09c56718, 0x6f453720, 0x21f38306, 0xfd833233, 0x15250383, 0x31070714, 0x05d96206, 0x1737272b, 0x07161727, 0x31230706, + 0x06f04122, 0x36313724, 0x674f0317, 0x8522860b, 0x0717241e, 0x5e073707, 0x38820616, 0x4600012b, 0x22243a3a, 0x3a3a2422, 0x08098946, 0x27272f48, + 0x100a0a27, 0x070d0d0e, 0x05050704, 0x03032310, 0x13130c05, 0x0503050b, 0x030b070d, 0x0a030706, 0x09120704, 0x150d0c09, 0x04190b0d, 0x16164103, + 0x03040716, 0x07091e0b, 0x02010b2b, 0x0f15270b, 0x100f011a, 0x0484010f, 0x0808b734, 0x0e0e0408, 0x0d030806, 0x2014060e, 0x0b0b2020, 0x04840a0a, + 0x2101402c, 0x433d3c22, 0x223c3d43, 0x0b8b0121, 0x0d9b3908, 0x04040d0d, 0x05060504, 0x1010060d, 0x0211080f, 0x010e0703, 0x05060e01, 0x0f0a0201, + 0x0b1a0704, 0x0f0b1709, 0x110f0c0e, 0x02021007, 0x171717d7, 0x01090908, 0x0b061303, 0x04239882, 0x63dffe0f, 0x85270702, 0x0e181818, 0x820d0306, + 0x0e042204, 0x247b8250, 0x0b0b0a0a, 0x21048320, 0x4e180400, 0x3326089f, 0x72004c00, 0x4b187800, 0x36210ef5, 0x0d7f5d35, 0x18373621, 0x290bdd52, + 0x23261506, 0x07223123, 0x8a432527, 0x102e7705, 0x23032724, 0x19522333, 0x17142109, 0x071a5b18, 0x2a05af54, 0x31351716, 0x07063127, 0x18373617, + 0x220d8d51, 0x4640039a, 0x40250551, 0x01010902, 0x056a5440, 0x16014038, 0x0c0c701a, 0x291901c9, 0x08011b1b, 0x0c880c08, 0x1b010808, 0xb27b291b, + 0x030f220a, 0x292d8603, 0x8935253f, 0x38b00205, 0x4b185f27, 0x78220bce, 0x654b0f0e, 0x12152105, 0x57545782, 0x01402605, 0x9e030b01, 0x20498305, + 0x82518204, 0x83042058, 0x00ff2160, 0x25242985, 0x40020220, 0x3f302985, 0x6d8f0621, 0x06df0f0e, 0x00764a26, 0x00000400, 0x24066370, 0x002a0023, + 0x0a3f5a45, 0x074d4318, 0x6d700783, 0x17162305, 0x9a452306, 0x05112105, 0x7d05fe61, 0x172105e6, 0x13737016, 0x2505ff6c, 0x07063123, 0x6d531716, + 0x05a56505, 0x2637362c, 0x35312327, 0x12120100, 0x9d82a01b, 0x2438802d, 0x14140123, 0xff050522, 0x82121b00, 0x838020d1, 0x70302000, 0x1022137b, + 0x054e0f01, 0x20098809, 0x2d358380, 0x09090e80, 0x2d2e1027, 0x25252d3e, 0x11450118, 0x80402305, 0x7c706080, 0x071a4e13, 0x43594b8c, 0x01803408, + 0x001d00c0, 0x004d003c, 0x13000071, 0x36212121, 0x7b171637, 0x272108d2, 0x21d08221, 0xae563107, 0x23052505, 0x31152333, 0x0382cc82, 0x0d708b18, + 0x82313521, 0x08047f01, 0x34272183, 0x07333637, 0x18153515, 0x2a0ab46e, 0x36373231, 0x34313535, 0x45232627, 0x06310502, 0x25070607, 0x63fe9d01, + 0x2f1f9d01, 0x090f1f2f, 0xc753180a, 0x064c2907, 0x01100a0b, 0x4040405b, 0x0ac15318, 0xf3829020, 0xa46d4020, 0x4d068206, 0x0121068f, 0x05255e16, + 0x1f00013a, 0x021f0101, 0x0b0f0a0a, 0x01147209, 0x09721401, 0x0b0a100b, 0xa0a0a020, 0x2308745e, 0x10802050, 0x30213982, 0x23498230, 0x30303020, + 0x2009e05d, 0x5e118280, 0x002008bc, 0x2906bb6f, 0xc0010002, 0xad00a000, 0x5554b600, 0x3115230c, 0x91501716, 0x2706240b, 0x82073127, 0xb05b1813, + 0x31152307, 0xef4f0706, 0x07062205, 0x05855b17, 0xaf6d0720, 0x82272007, 0x052f481b, 0x20056a54, 0x06e64636, 0x18310721, 0x22081f4e, 0x83173637, + 0x27262135, 0x09105c18, 0x47373621, 0x36210520, 0x45698337, 0x35830904, 0x48373621, 0x8e18056b, 0xb57a0c4d, 0x02c03108, 0x02165016, 0x2f101602, + 0x0e0b1823, 0x3811110e, 0x0b240483, 0x22061c18, 0x2907cb53, 0x181b0722, 0x0e11110b, 0x0483380e, 0x24180b24, 0x7c18102e, 0x369b08ef, 0x911c0621, + 0x53302036, 0xad4b0b0f, 0x5e012008, 0x22200621, 0xa0b13293, 0x9e2f2321, 0x53c820a0, 0x68200bd4, 0x18083d5e, 0x2209835e, 0x45950055, 0x37200f33, + 0x4309b343, 0x262907c9, 0x17313727, 0x36371631, 0x09497427, 0x35272625, 0x43313331, 0xe94305d3, 0x07062107, 0x0ad64b18, 0x8506d462, 0x17162343, + 0xa9693736, 0x4d072005, 0x4f850881, 0x1b483720, 0x078f6e08, 0x35312322, 0x27205782, 0x0a355118, 0x05119f22, 0x4109a441, 0x03410e3a, 0x5f212414, + 0x9801026e, 0x0cd74132, 0xfc1a1f22, 0x220b6245, 0x41231e7c, 0xb8551e53, 0x08c14105, 0xd14b2124, 0x32a50909, 0xc60e0438, 0xff040000, 0x02c0fff9, + 0x00c00180, 0x00640012, 0x0092007f, 0x78180100, 0x17261150, 0x27263736, 0x8e522726, 0x0dda5105, 0x4a312321, 0x90410531, 0x07d67509, 0x16311528, + 0x33171617, 0x68453233, 0x67312005, 0x05230cce, 0x83312734, 0x0ce75939, 0x36373226, 0x27353637, 0x200ab14b, 0x05a74317, 0x0db18c18, 0x0229152d, + 0x291b1b01, 0x011b1b29, 0x460b2902, 0x202105db, 0x200e8330, 0x062e4307, 0x0e0e3830, 0x02071111, 0x50442d2d, 0x220c0c50, 0x15591313, 0x010b2206, + 0x1388452b, 0x0a0a4d2f, 0x280b0b48, 0x0b0b0a0a, 0x0b0b3d1d, 0x8d421801, 0x1c50220c, 0xe95a1834, 0x1c342107, 0x2005c546, 0x217e83d0, 0xb6430706, + 0x83382006, 0x06072974, 0x022d2d44, 0x50251902, 0x46073d68, 0x2b2e1338, 0x0a480b0b, 0x0b0b280a, 0x3c1c0a0a, 0xc3720a0a, 0x0b7f4106, 0x95008822, + 0x20668141, 0x196f5b13, 0x64503520, 0x37362105, 0x34450882, 0x37362107, 0x20488441, 0x131a419b, 0x2105c742, 0x67491602, 0x44844107, 0x41b0fe21, + 0xe35813ee, 0x01902308, 0x6f83500f, 0x00200482, 0x0b430082, 0x41a1200f, 0x37228189, 0x36663707, 0x46272005, 0x27220960, 0x8a462631, 0x17362306, + 0x95410716, 0x243b215d, 0x11790082, 0x0f297905, 0x215aa041, 0x008225b5, 0x24216f8f, 0x41878324, 0x66240fa7, 0x9b007700, 0x2554a741, 0x06313535, + 0xb5442323, 0x3449490d, 0x233da141, 0x30080808, 0x2007bd44, 0x1d6849bb, 0x2439b644, 0x0121110d, 0x05db44d0, 0x87494020, 0x0140302b, 0x005900c0, + 0x00770068, 0x33161700, 0x4c323131, 0x08670cd1, 0xf950180f, 0x0695620a, 0x22096d61, 0x4c233115, 0x15210adb, 0x49521831, 0x3303230a, 0xac743323, + 0x05ec4a0a, 0x89791420, 0x89352806, 0x0a0d0d0a, 0x83090960, 0x42292006, 0x60210793, 0x05634c29, 0x1c8b6020, 0x07798d18, 0x09221c88, 0x986a4040, + 0x82012006, 0x220a8609, 0x84090937, 0x09092335, 0x1141732a, 0x2a732105, 0x64825d85, 0x01221997, 0x86468037, 0x18802005, 0x63080049, 0x803308eb, + 0x5500c001, 0x73006400, 0xa8008400, 0x37170000, 0x18363707, 0x23082c5b, 0x31213135, 0x3721db82, 0x41058223, 0x3127361e, 0x37323316, 0x86153513, + 0x15062653, 0x17333115, 0x14941815, 0x3723260b, 0x31311732, 0x4c188216, 0x97222b00, 0x56416060, 0x0b002208, 0x1351414b, 0x4020ec87, 0x09201c8b, + 0x20053541, 0x06074740, 0x42f04021, 0x37201cb4, 0xab416582, 0x732a2405, 0x41161a10, 0x0923226b, 0x41370109, 0x09820966, 0x20077a41, 0x23b94250, + 0x5a180720, 0x2b2e0823, 0x4d003d00, 0x6f005f00, 0xab008100, 0x1b770000, 0x53372005, 0x334c07fe, 0x0b105409, 0x2623232a, 0x11272627, 0x15351517, + 0x53051e4a, 0x06240509, 0x07061707, 0x0cc28818, 0x21900720, 0x21a03720, 0x18172521, 0x2007147b, 0x26a21806, 0x051c6908, 0x23053c5e, 0x35263127, + 0x32320983, 0x01200117, 0x60140e0d, 0x010d0e14, 0x16160228, 0x12551802, 0x84a02007, 0x01402513, 0x010f200f, 0x10200484, 0x0c820786, 0x15891020, + 0x1594b020, 0x50a7fe27, 0x09095050, 0x058e4150, 0x42731a21, 0x732105d1, 0x05fd421a, 0x87900121, 0x48902664, 0x16020216, 0xc0611848, 0x22088308, + 0x8220a001, 0x20568800, 0x206b8950, 0x8a178b70, 0x20178c83, 0x837982d7, 0x837e8276, 0x42192006, 0x19200542, 0x003b8985, 0xfffeff04, 0x014202be, + 0x002a00c0, 0x00780063, 0x25000092, 0x31313732, 0x65353536, 0x10670695, 0x07124f09, 0x37373222, 0x27068b5f, 0x26070607, 0x26313027, 0x08f96018, + 0x4f371621, 0x37200649, 0x7a05b56b, 0x36200585, 0x2405fa5a, 0x30313007, 0x24318331, 0x23270726, 0x060a5433, 0x31823620, 0x3633362a, 0x35331617, + 0x31272605, 0x8205fd54, 0x31302127, 0x17221982, 0x41821732, 0x01351726, 0x09090e20, 0x5020b286, 0x5008cc8e, 0x2a2b2312, 0x16131523, 0x07070d1c, + 0x0b0b0303, 0x2c15260d, 0x091f3132, 0x1f090707, 0x142d3231, 0x0b0b0d26, 0x07070303, 0x13161c0d, 0x2a2a2315, 0x4e121323, 0x14909090, 0x08010d0e, + 0x1111140a, 0x1d131515, 0x0180011e, 0x90140e0d, 0x15131d1e, 0x26128215, 0x09600809, 0x41d30e09, 0xb841069e, 0x82d3200a, 0x19462887, 0x0d180201, + 0x8307120f, 0x820d206c, 0x0f0a2674, 0x10030119, 0x25008204, 0x19010310, 0x6c830a0f, 0x072a7483, 0x180c0e12, 0x0c190102, 0x5d83e60c, 0x0205b92a, + 0x010f0d05, 0x30e0140c, 0xe1267c83, 0x010c1401, 0x14820d0f, 0x0000b924, 0x87410200, 0x00612208, 0x08e75a9a, 0x5a181520, 0x142108d2, 0x09284117, + 0x33210982, 0x05a34532, 0x18062041, 0x41094b9e, 0x68181fb5, 0x1321085f, 0x36bc4126, 0xbc837020, 0x04831020, 0x06060523, 0x063f4115, 0x111a2127, + 0x1d111414, 0x0740411e, 0x05060622, 0x3020f283, 0x2013b341, 0x22198380, 0x4113c380, 0x012130b8, 0x203983c0, 0x230483d0, 0x020a0c60, 0x24064d41, + 0x0c0c1301, 0x064a4114, 0x0c0a0223, 0x20998360, 0x11b94193, 0x83d09321, 0x5afe2318, 0xbe410c0c, 0x0b00282f, 0xbaff0000, 0x6b014602, 0x43320577, + 0x5d005000, 0x77006a00, 0x91008400, 0xab009e00, 0xa0180000, 0x33210acd, 0x11254331, 0x21090252, 0x615e0523, 0x05164305, 0x0c7ca918, 0x5b180720, + 0xd7500b45, 0x8b33200c, 0x98252033, 0x20408c26, 0x20338b25, 0x52338b27, 0x33210641, 0x057a44ca, 0x0e44c920, 0x21058205, 0x7d180180, 0xd5500dcc, + 0x5030200b, 0xef500b5c, 0x8b80200c, 0x18fe2026, 0x8c0c4869, 0x8bb02027, 0xb0012141, 0x01205c98, 0x2006215d, 0x059f44c9, 0x4533ca21, 0x80200529, + 0x50200682, 0x4518428b, 0x4e8c0c53, 0x4618268c, 0x17200d15, 0x09448418, 0xa999258c, 0xa88b5020, 0xeb5b0020, 0x40022f07, 0x1500a001, 0x6a003f00, + 0x21250000, 0x48182121, 0x372111c2, 0x6dab1836, 0x77072008, 0x5b180c5d, 0x252010c5, 0x07d15a18, 0x11f35b18, 0x5b180620, 0x362b0aeb, 0x02273435, + 0x0200fe20, 0x4100fe00, 0x02200512, 0x17200786, 0x2005c841, 0x05c84129, 0x250c4a48, 0x0d0ac0fe, 0x19930a0d, 0x6f090921, 0x89200c5d, 0x21056d41, + 0x5a85d32a, 0x9549d320, 0x092e220a, 0x83169309, 0x82002030, 0x00063a00, 0x02c0ff0a, 0x00c00176, 0x0027001a, 0x00410034, 0x00ce00b2, 0x07061300, + 0x0afd5115, 0x3631372b, 0x07072627, 0x26313531, 0x0cdb4227, 0x200c0243, 0x0ba74205, 0x2717052a, 0x36371617, 0x36312727, 0x20086e46, 0x064d5533, + 0x8a181720, 0xca570ab0, 0x0829510d, 0xf0572720, 0x85708206, 0x82062009, 0x2009897e, 0x465b8206, 0x558607c4, 0x70841320, 0xc389a98b, 0x02169033, + 0x0e111117, 0x1111400e, 0x110e0e40, 0x16021711, 0xfa5d18d8, 0x8bb0200b, 0x3801220c, 0x24b01817, 0xd8fe3b0a, 0x0c1b1b1b, 0x24091314, 0x091b0202, + 0x0e300e09, 0x021b0909, 0x13092402, 0x0f880c14, 0x26281f83, 0x1815140c, 0x22141914, 0x18240784, 0x220c1415, 0x07830d82, 0x2b8b2620, 0x4040d722, + 0x9786858a, 0x02c00125, 0x83177616, 0x829e8299, 0x0e0e261e, 0x02167617, 0x20878bc8, 0x200c8b60, 0x2caf8b28, 0x3131316a, 0x140c0913, 0x31040244, + 0x05004236, 0x0431362a, 0x0c144402, 0x26311309, 0x26201085, 0x47252184, 0x0d0d0c15, 0x2704833f, 0x0d3f150c, 0x47150c0d, 0x0121238c, 0x219b8221, + 0x7f880e0e, 0x00209387, 0x2b053743, 0x80020000, 0x16008001, 0x6b005500, 0x21089365, 0x56183111, 0x11290758, 0x36373431, 0x15161733, 0x23128231, + 0x31333107, 0x18099349, 0x49080352, 0x13850abb, 0x585b0620, 0x34352105, 0x2306745b, 0x11111125, 0x3220508d, 0xe34d5182, 0x24ca8506, 0x2a0909d7, + 0x11764ce6, 0x0121128f, 0x0c567989, 0x0d828020, 0xb57afe20, 0x40012106, 0x49254982, 0x0a0d0d0a, 0x0c6e4329, 0x8e068843, 0xfe292413, 0x8c4001c0, + 0x374a823a, 0x20000400, 0xe001e0ff, 0x1c00a001, 0x58003a00, 0x00007500, 0x07171601, 0x3706085f, 0x31353736, 0x07262734, 0x27263107, 0x31150722, + 0x17073336, 0x37161727, 0x263f1783, 0x22312327, 0x17170607, 0x14070631, 0x26313317, 0x05373635, 0x16233323, 0x27070615, 0x4b072631, 0x3220070b, + 0x28063c43, 0x26072734, 0x36313727, 0x83388327, 0x8214201c, 0x31372448, 0x82321716, 0x06320864, 0x3b000123, 0x0307202a, 0x0f700a05, 0x070a0a01, + 0x10563d22, 0x7c110f10, 0x07212121, 0x0101090a, 0x050a700f, 0x35220703, 0x03410202, 0x5a012301, 0x07834141, 0xde201b8f, 0x01234393, 0x8f230160, + 0x03412428, 0x9120203b, 0x2a3b246e, 0x91110f45, 0x93c02043, 0x6a002040, 0x002b0643, 0x5b00c001, 0x06130000, 0x76313123, 0xd97e05d1, 0x0b184205, + 0x26551120, 0x18312005, 0x20095944, 0x08856526, 0x26154042, 0x07141516, 0x82333107, 0x31352331, 0xe94ef707, 0x12012312, 0xf35b1b12, 0x25362307, + 0x0f830124, 0x2413594d, 0x01291d23, 0x10dc4e29, 0x1bedfe22, 0x08a66718, 0x25240123, 0x420d8336, 0x73830e2f, 0xa4112924, 0x137d002a, 0x80022105, + 0x3028e782, 0x70003d00, 0xd900a400, 0x0a637b18, 0x0f674718, 0x06313122, 0x087e5818, 0x200bd44c, 0x0c487017, 0x43332321, 0x36240643, 0x30313333, + 0x31200182, 0x3122ea82, 0x61181631, 0x262414e0, 0x37373435, 0x6b065878, 0x6241055e, 0x09244105, 0x062c0983, 0x22312323, 0x26313127, 0x31352627, + 0x35215384, 0x066e4d13, 0x18059e43, 0x840c9bb3, 0x37342572, 0x33363736, 0x856f2c83, 0x83142005, 0x830920b9, 0x436920f9, 0x02260575, 0x06050403, + 0x75510705, 0x6a132406, 0x18f70909, 0x220b9646, 0x7b13138d, 0x21820625, 0x76030421, 0x6920067c, 0x2205ae41, 0x852d016a, 0x8c0f8744, 0x6a6d222a, + 0x8d4d826a, 0x0e09216a, 0x01246887, 0x6a0909b7, 0x07202f87, 0x5c8d8282, 0x1824f721, 0x200a4778, 0x20658560, 0x84a88e09, 0x4701205a, 0xb983069c, + 0x2b856b8a, 0x6900ff23, 0x839b8f69, 0x06dd4f6b, 0x2a06f741, 0x00c00100, 0x00440022, 0x65880066, 0x33200ceb, 0x4407f271, 0x796305fa, 0x37342606, + 0x37033336, 0x23058207, 0x31171732, 0x6e056360, 0x312a0c00, 0x37262726, 0x33233327, 0xf5653135, 0x56571806, 0x0541430c, 0x05333627, 0x31313526, + 0xac571834, 0x093a430a, 0x06311527, 0x27270607, 0xd9911827, 0x18ed8411, 0x2a0ba994, 0x20150808, 0x570e0909, 0x83404040, 0x0e4023fd, 0x10840907, + 0x09090e22, 0x89232684, 0x18202020, 0x450b7594, 0x012706a0, 0x40090929, 0x18131310, 0x84086d40, 0x18492023, 0x82088542, 0xc0012152, 0x3b900482, + 0x8277fe21, 0x203b9269, 0x829492a9, 0x9437204d, 0x37402194, 0x350bf145, 0x06000000, 0xc1ff0100, 0xbf017f02, 0x3b001a00, 0x62004800, 0x376a7d00, + 0x17172405, 0x5c313531, 0x062d059f, 0x26312307, 0x33373627, 0x26312731, 0x05d17a37, 0x84313721, 0x08286a1c, 0x07060722, 0x83067644, 0x18362020, + 0x240859b8, 0x16173601, 0x05c37307, 0x54874685, 0x26013725, 0x87313737, 0x05346b58, 0x3527262b, 0x06310731, 0x17272127, 0x09375827, 0x16313323, + 0x293b8317, 0x07163117, 0x110f2706, 0xf95b3f11, 0x16603805, 0x26160202, 0x770e0e3f, 0x251a190c, 0x25313125, 0x0d191a25, 0x890d0505, 0x060c230d, + 0xce42ba06, 0x8201200b, 0x0e0e233d, 0x3983263f, 0x16243e84, 0xc0fd3f02, 0x1125118f, 0x3f400211, 0x23658f3f, 0xb1011111, 0xe52e2991, 0x161e1f1a, + 0x16010116, 0x1a1f1e16, 0x0d8d0c0c, 0xcf434c20, 0x3101230b, 0xbb8f0e0e, 0x8f1efe21, 0x20618211, 0x2b9f8d3f, 0x0e0e1111, 0x00020000, 0x01c0ff00, + 0x00270182, 0x006d0036, 0x18360100, 0x63088580, 0x2624077b, 0x37373435, 0x20094b4f, 0x05045207, 0x36313523, 0x06b94137, 0x03201f82, 0xcf5f3699, + 0x21369406, 0x07552901, 0x07bf5406, 0xe145d320, 0x2ad3210d, 0x5406f454, 0x93200ae2, 0x2408d142, 0x291b1b01, 0x21218293, 0x2589b701, 0x29244f83, + 0x1b121201, 0x23061543, 0x24253620, 0xff216585, 0x22258e00, 0x870e0909, 0x1b292224, 0x3224851b, 0xff040000, 0x02c0fff7, 0x00b00100, 0x006b0035, + 0x46850078, 0xb8450835, 0x057c6607, 0x0ad25f18, 0x23262724, 0x11473123, 0x07c64510, 0x0be66718, 0x41312321, 0x36231b0d, 0x46173233, 0x25260c70, + 0x37262726, 0x70823736, 0x07060723, 0x05a045f9, 0x83931a21, 0x086c43ac, 0x200bac4f, 0x0c26530e, 0x4f0e2741, 0x792006d4, 0x210b3942, 0xc342c0fe, + 0x47a7200c, 0x19240571, 0x291b1b01, 0x52071941, 0xff210f3a, 0x11115300, 0x500b4541, 0x672006b3, 0xc020588b, 0x074e738b, 0x21132314, 0x6a6f2121, + 0x1714240d, 0x7a073316, 0x4564055c, 0xb1491805, 0x1090560b, 0xe3570520, 0x29259c07, 0x14150631, 0x00022017, 0xfe4d00fe, 0x070e4e07, 0x211a064e, + 0x064e4001, 0x46012019, 0x092407c5, 0x09090e0e, 0x2139074e, 0x47670002, 0x184a2009, 0x23083957, 0x07063111, 0x2a050854, 0x27263736, 0x27343111, + 0x65072326, 0x56180582, 0x59421146, 0xfe821807, 0x84352007, 0x0123272e, 0x09090e00, 0x456d021e, 0x1e022507, 0xd00e0909, 0x6a08a76a, 0x502008c1, + 0xb95e2582, 0x22218207, 0x82c00150, 0xf7fe2705, 0x121b2512, 0x3c830112, 0x01122523, 0x20238209, 0x13e86a80, 0xc0202a82, 0x2007885e, 0x312482c0, + 0x00020000, 0x01c0ff20, 0x00c00120, 0x0054003f, 0xc7851300, 0xcf821520, 0x6e189e82, 0xd86910a4, 0x27262409, 0x86303123, 0x20098a01, 0x05204913, + 0xbc183620, 0x45820889, 0x1660232c, 0x07160202, 0x19100101, 0xa1830f0f, 0xaa838020, 0x190f0f26, 0x07010110, 0x08231a83, 0x84400870, 0x0c0c22e8, + 0x6b02840b, 0xc02d05d2, 0x02161602, 0x13410701, 0x1b1b120b, 0x627a1821, 0x21c02908, 0x0b121b1b, 0x01074113, 0xfe2d1f83, 0x130d0d82, 0x0e13140d, + 0x130e0c0c, 0x230a8214, 0x0400000d, 0x0d26d388, 0x4b003e00, 0xd7825700, 0x33233322, 0x32053479, 0x37363135, 0x37373607, 0x33333631, 0x17173231, + 0x83171631, 0x460389f3, 0x262305a2, 0x89373627, 0x57172003, 0x594c05a9, 0x622f8405, 0x78340627, 0x16505050, 0x16028002, 0x0f1a0158, 0x1a4c1a16, + 0x011a0f16, 0x0123e382, 0x85151501, 0x12122203, 0x8aef841b, 0x40012610, 0x0f600f01, 0x20048401, 0x82078610, 0x8201200c, 0x282834f0, 0x1fa80216, + 0x0e0e0a11, 0x1a1f110a, 0x1e1c1210, 0x831e1212, 0x07dd4103, 0x1c240f87, 0x481a1012, 0x1807e75e, 0x2408db9b, 0x00020000, 0x06437900, 0xf9822c20, + 0x69130021, 0x302905df, 0x36333033, 0x32373637, 0x21058217, 0xce823233, 0x16333622, 0x32230582, 0x83313231, 0x07142607, 0x35263121, 0x1d337915, + 0xd7820020, 0x01011b38, 0x1e151506, 0x130a1217, 0x13171713, 0x17120a13, 0x0615151e, 0x9f830101, 0x12fe0923, 0x16c67809, 0x83000121, 0x121c2620, + 0x130b0111, 0x2500820c, 0x11010b13, 0x50831c12, 0x0e0e1224, 0x68785b12, 0x0b174c13, 0x3e002328, 0x5f004e00, 0x63596b00, 0x84212008, 0x31112db7, + 0x07060706, 0x35363123, 0x37363135, 0x23057866, 0x01353123, 0x6205d563, 0x1d830b44, 0x16311724, 0xb26c2537, 0x82152005, 0x25f28238, 0x15053527, + 0x6d181535, 0x31210a1f, 0x414f8221, 0x012108ec, 0x87c11800, 0x03d3230d, 0x1183021e, 0x01702008, 0x400a0a3b, 0x0a400b0b, 0x250b0b0a, 0x010f0f01, + 0xfd0b0b25, 0x010f01c5, 0x01010f60, 0x82a0fe0f, 0x09602b05, 0x00ff0e09, 0x0109090e, 0xe341d040, 0x0801590a, 0x1460fe2b, 0x08010d0e, 0x210cf308, + 0x22098320, 0x84d5fe50, 0x23568250, 0x79240a0a, 0x79243283, 0xab0a0a24, 0x21080f59, 0x65185020, 0x402009c8, 0x08c15418, 0x45180420, 0x4f26081b, + 0x61005800, 0xa5556a00, 0x3115220e, 0x061d7c23, 0x200d4052, 0x05ac4636, 0x15911720, 0x31823520, 0x260b6663, 0x35150521, 0x82312315, 0x90232012, + 0x064e4608, 0x46482821, 0x0f8306e8, 0x870a9c44, 0x2848210e, 0x26050848, 0xa80100fe, 0x84805050, 0x7b012002, 0x402106fc, 0x4e308380, 0x9c440769, + 0x200f8b07, 0x06555d80, 0x8506eb6c, 0x82002006, 0x00063400, 0x02c0ff20, 0x00a00180, 0x004a0041, 0x005c0053, 0xaa8a0077, 0x173221ff, 0xab050541, + 0x640120f1, 0xc6862c73, 0x27101f41, 0x29170909, 0x2f413529, 0x20141841, 0x136f6298, 0x410f5e64, 0x0227183d, 0x011a1b2c, 0x41482701, 0xfe211334, + 0x133563f0, 0x20105064, 0x12574107, 0x8d008022, 0x645f5941, 0x5c412f4b, 0x41082034, 0x37641301, 0x355d4110, 0x6414a06b, 0xbb421628, 0x41992013, + 0x23647961, 0x496d4121, 0x411b0f64, 0x00644a78, 0x097f411d, 0x4b00422a, 0x5d005400, 0x92006e00, 0x086f4b18, 0x49532120, 0x099b5c0a, 0x26070626, + 0x06070627, 0x18066176, 0x23097348, 0x31352726, 0x27051574, 0x35262722, 0x15351505, 0x07290d84, 0x23351535, 0x33311531, 0x26118727, 0x31072205, + 0x82150631, 0x062b5912, 0x24062675, 0x17161716, 0x7c741815, 0x285a870a, 0x33363734, 0x09092035, 0x07044b0e, 0x30082829, 0x0f01201f, 0x452c1c09, + 0x48300e70, 0x09090e28, 0x50507801, 0xd0505030, 0x78015050, 0x6d073061, 0x80450741, 0x06145b05, 0x0ad54a18, 0x20014029, 0x0819301f, 0x45012010, + 0x80210f86, 0x73788240, 0x7945055b, 0x61902008, 0x2220081e, 0x070b4c18, 0x200e666d, 0x2c008200, 0xfffeff02, 0x014202de, 0x003f0080, 0x0e534178, + 0x14311524, 0x125f0607, 0x07222706, 0x31300706, 0x78183130, 0x5b4107f4, 0x31152205, 0x08446e26, 0x26272224, 0xc2823535, 0x30373625, 0x50173631, + 0x27220868, 0x6a502726, 0x05424b05, 0x11820582, 0x4a372621, 0x51830575, 0x82171621, 0x0017210b, 0x2a073941, 0x1d0c0808, 0x14011313, 0x461e1d11, + 0x1e2e079d, 0x0114111d, 0x0c1d1313, 0x33010808, 0x595f2a23, 0x2d14210e, 0x2109595f, 0x595f152c, 0x232b230e, 0x24641312, 0x83242007, 0x2346823f, + 0x01140b7d, 0x09228518, 0x01018025, 0x837d0b14, 0x22798272, 0x5ddafe24, 0x0c222f89, 0xeb4f000c, 0x00212509, 0x13000048, 0x4f067a47, 0x2f4205c8, + 0x08e25e05, 0x07063124, 0x42180706, 0x14260cf0, 0x23230607, 0x29550731, 0x27272209, 0x05544231, 0x02306038, 0x30412a2b, 0x022b2a41, 0x1e1d0130, + 0x1e2c302c, 0x0960011d, 0x13420e09, 0x16053207, 0x130d0d03, 0x0d0d13ea, 0x0e051603, 0x28010909, 0x83008208, 0x2138832f, 0x2f830808, 0x48203883, + 0x2008db4f, 0x05d149d5, 0x4482d520, 0x0200002e, 0xc0fffeff, 0xc5014302, 0xab005500, 0x3722b782, 0x61183707, 0x06220db0, 0x305b2307, 0x33172309, + 0xa6841531, 0x2607aa49, 0x17163137, 0x6d173736, 0xb882099a, 0x2005946d, 0x065a5b37, 0x26312324, 0x55880527, 0x34313725, 0x82072227, 0x6d07203d, + 0x062209a6, 0x53821717, 0x18312721, 0x8208bc47, 0x1714224d, 0x87558216, 0x82362065, 0x05fe6d55, 0x27205587, 0x7b085d82, 0x212121a5, 0x0b151307, + 0x150b1a1a, 0x10220713, 0x07041107, 0x08031516, 0x26201304, 0x0108030f, 0x06051616, 0x26261212, 0x05051312, 0x08011616, 0x20260f03, 0x02080513, + 0x05061615, 0x01100711, 0x4242424c, 0x130e0b10, 0x16150634, 0x0f130804, 0x1405070f, 0x050d0916, 0x250c1c10, 0x0c230a10, 0x190f1310, 0x1f222012, + 0x13060f0e, 0x05160a15, 0x1b0c1c0b, 0x0d1b0d11, 0x0e10120f, 0x4d085f83, 0x49494955, 0x13070b15, 0x07133a3a, 0x0b49150b, 0x03151512, 0x12281606, + 0x040a1701, 0x05163810, 0x05281501, 0x1f02021f, 0x01162804, 0x10381605, 0x01170a04, 0x06162812, 0x12151503, 0x2f2fb40b, 0x11130f2f, 0x163f250b, + 0x02501604, 0x7a82080b, 0x14052c08, 0x100b1227, 0x0c040b14, 0x0b10122d, 0x24051f10, 0x0d121115, 0x060a1526, 0x0b0f3513, 0x0810141b, 0x10121f0d, + 0x08100f0d, 0x82001113, 0x00093a00, 0x02c0ff00, 0x00c00180, 0x003b002b, 0x005d004d, 0x007f006f, 0x00ac0091, 0x894d18c7, 0x3115230e, 0xe5820706, + 0x07061722, 0x43078442, 0xc86d05bb, 0x64112005, 0xeb640fc9, 0x0fc96411, 0xeb642720, 0x2b439120, 0x31373413, 0x36373631, 0x16173233, 0x240eb673, + 0x17170637, 0x07ae7331, 0x210bf541, 0xd24b0726, 0x111e270a, 0x0e330211, 0x50186017, 0x1424086c, 0x50010d0e, 0x640a704b, 0x15890a81, 0x1594d020, + 0x480aad64, 0x8d241406, 0x591c0a0a, 0x592b4483, 0x0b0a0a1c, 0x0a0a380b, 0x650b0b38, 0xb827090f, 0x29232319, 0x1811324c, 0x2009f0aa, 0x22958350, + 0x89b0a001, 0x6510206d, 0x1d652305, 0x212f8c0a, 0xf84800ff, 0x0b432a13, 0x0f011d0b, 0x0b1d010f, 0x8290840b, 0x1c074296, 0xb163bf20, 0x05d65008, + 0x2105e166, 0x90443736, 0x31332605, 0x27263736, 0x7fc91834, 0x17212908, 0x31333736, 0x31151716, 0x2105534f, 0x854f3735, 0x09055606, 0x2720218f, + 0x439121a0, 0x212d924b, 0x327c1430, 0x09f64106, 0x330e1726, 0x1e111102, 0x41053051, 0x5e660a40, 0x0ae0410c, 0xa666b020, 0x70012123, 0x2023c64b, + 0x207484c0, 0x74938360, 0x012809c8, 0x294c3211, 0xb8192323, 0xf0201683, 0x67146767, 0x90200a93, 0x4b1fa967, 0x002226f5, 0xff430a00, 0x00b52218, + 0x93f941c2, 0x41307e70, 0xe02067fc, 0x4c136c43, 0xfc411065, 0x148d4464, 0x4515944c, 0xe96219ff, 0x31312305, 0xf7430706, 0x1afd418a, 0x4221ce4c, + 0x014d7c09, 0x7914421b, 0x201c304d, 0x081b4408, 0x3700272e, 0x59004900, 0x7b006b00, 0xa8008d00, 0x18201744, 0x4607707b, 0x3720660d, 0x2305634d, + 0x31333111, 0x15540383, 0x31232505, 0x23262734, 0x1812f341, 0x20083542, 0x47f745e0, 0x090eb02d, 0x0f904009, 0x900f0101, 0x690e0909, 0xeb5305ca, + 0x0ae04505, 0x140e0d24, 0xdd45a001, 0x82602045, 0x20fe2865, 0x0f014001, 0x82010f80, 0x08bf477b, 0xc0014034, 0x3d002d00, 0x5f004f00, 0x81007100, + 0xa4009300, 0xad41c800, 0x3526251e, 0x37363135, 0x41094b55, 0x127366b3, 0x11cd4134, 0x02095925, 0x471f011e, 0xc0204dc6, 0x411c7970, 0x0e2815de, + 0x12258012, 0x921f2f19, 0x4f45e141, 0xd57c0974, 0x0008291a, 0x01c0ff00, 0x00c00180, 0x26079f43, 0x00860079, 0x41ba009c, 0x57181ef1, 0x8b490a39, + 0x1169490f, 0x5018218f, 0xd25009e7, 0x0b2a6005, 0x36313523, 0x06074c37, 0x50058343, 0xfb5a0ceb, 0x17272308, 0x63601727, 0x27062309, 0xf45f3127, + 0x17362109, 0x2011e341, 0x2cb14360, 0x30305825, 0x70010f30, 0x0f2905b8, 0x20160201, 0x0f010216, 0x89641888, 0x0e0d2209, 0x834f8714, 0x23c32507, + 0x0f012323, 0x0a221e82, 0x0888060c, 0x2015e341, 0x29c24301, 0x5283b020, 0x82104021, 0x180f2956, 0x16020216, 0x20010f58, 0x870ab349, 0x88202080, + 0x34292408, 0x832b3434, 0x0b60242e, 0x8a090304, 0x00003b0a, 0x00000800, 0x4102beff, 0x3900c001, 0x5b004900, 0x7d006d00, 0xa7008f00, 0xa14db100, + 0x31072710, 0x07062323, 0x01833115, 0x30151427, 0x16171615, 0x058c7617, 0x52272621, 0xaf4d07c7, 0x339f4d28, 0x18361721, 0x2109ad49, 0xd8180607, + 0x372a087f, 0x27172717, 0x37363115, 0x8b4d3736, 0x262a220a, 0x24f18220, 0x09371615, 0x238f4d0a, 0x844d6020, 0x09a73e1f, 0x010e7809, 0x1d0b0c01, + 0x0909361e, 0x0b1d1e36, 0x0e01010c, 0x5f5f6878, 0x1516325f, 0x09794d02, 0x82119f21, 0x0818294a, 0x2d010101, 0x042c3838, 0x4d0fa445, 0x8020177f, + 0x4d168c4d, 0x23080c74, 0x30040472, 0x29211006, 0x17262629, 0x26170404, 0x21292926, 0x56300610, 0xbc262626, 0x272a2a1b, 0x06000000, 0x2210b743, + 0x43950077, 0x70435cb3, 0x1507231c, 0xd87e1535, 0x07cb4305, 0x43056853, 0x8e4305a2, 0x4313203f, 0x7d22135f, 0x90430f01, 0x078d4306, 0x06490f83, + 0x29744315, 0x4343a920, 0x18092017, 0x5e0be76e, 0x55820576, 0x82834020, 0x221b0351, 0x41b5009e, 0x26211e95, 0x05f94e35, 0x4705855c, 0x67716639, + 0x1714280d, 0x33163131, 0x18323133, 0x23082ec1, 0x07060706, 0x2411b541, 0x11120a5a, 0x4d27471d, 0x18300121, 0x300b1468, 0x0f0a0ae0, 0x0a0a0fda, + 0x271b1a01, 0x1a1b2766, 0x15444501, 0x24131027, 0x60101d1c, 0x452747e0, 0x5d18b020, 0xcd200b9f, 0x84827d82, 0x84827b84, 0x4a100021, 0x9e3016bf, + 0xc200b000, 0xe500d400, 0x0401f700, 0x1f011201, 0x5e0e4745, 0x44180761, 0x152109d4, 0x28354531, 0x2343e552, 0x15351505, 0x6505e45e, 0x0d8206c6, + 0x53313121, 0x0d560578, 0x91152005, 0x82072011, 0x2ba58534, 0x31333135, 0x17161716, 0x23332335, 0x8505bd61, 0x2120820f, 0x228d1535, 0x80673720, + 0x37362209, 0x21768417, 0xf8432726, 0x8b272005, 0x0e145f1a, 0x2023ae45, 0x2a3e5370, 0x01800126, 0x10221716, 0x80250498, 0x16172210, 0x20048501, + 0x890b8a10, 0x87581815, 0x18a82010, 0x5f08c462, 0xed450e7e, 0x171c4c27, 0x21176d53, 0x998a1050, 0x99898020, 0x0a897020, 0x22824020, 0x6020e388, + 0x10210988, 0x23178b80, 0x681602f0, 0x0482bb83, 0x20204023, 0x840a8320, 0x02182204, 0x82078416, 0x00003504, 0xfbff0100, 0x0002c0ff, 0x3f00c501, + 0x26130000, 0x17170607, 0x0838ad18, 0x1807fc54, 0x7207856e, 0x37240738, 0x26373631, 0x0db29018, 0x06272408, 0x27310707, 0x0c0e1126, 0x10637009, + 0x67100101, 0x0d0b0735, 0x0621650f, 0x21061111, 0x0b0d0f65, 0x83673507, 0x1a6a2717, 0x0e0b0a04, 0x17832247, 0x01a32029, 0x0e0c09bc, 0x8f20a311, + 0x273d8b25, 0x0b0e4722, 0x6a1a040a, 0x63213d83, 0x3ab28270, 0x19000700, 0xe701c0ff, 0x0b00c001, 0x53001900, 0x65005c00, 0x80007200, 0x18010000, + 0x240a5d45, 0x33233307, 0x21cc8216, 0xae833123, 0x37072723, 0x08d04807, 0xe7441720, 0x31352207, 0x06a47921, 0x2005f744, 0x064e5a35, 0x26312723, + 0x07077327, 0xab181720, 0x012110ad, 0x73568206, 0x26220576, 0x58832107, 0x37161722, 0x23050c58, 0x16021801, 0x39052f42, 0x8c8c8c5e, 0xd013040b, + 0x4b0b0413, 0x201d1d1d, 0x0e090902, 0x09090e10, 0x08860001, 0x1c20022c, 0x1a14140a, 0x14141a8c, 0x33851109, 0xe8160222, 0xfe263e87, 0x300e0ebf, + 0x04841111, 0x30900128, 0x0e0e3030, 0x04841111, 0x83a80121, 0x8450202c, 0x01c82f04, 0x0a35350a, 0x4f4f0b01, 0x28250f4f, 0x64182040, 0x202c0d36, + 0x0f252840, 0x0f0e184f, 0x83180e0f, 0x18205887, 0x2008ce42, 0x82508649, 0x865f8255, 0x0e0e236b, 0x5b6d0000, 0x003a2b0a, 0x00540046, 0x0066005d, + 0x92660100, 0x31312b05, 0x31150706, 0x17161716, 0xf14d3133, 0x20f98205, 0x050f6537, 0x17171622, 0x15241982, 0x33071431, 0x0ab17018, 0x13272622, + 0x23212883, 0x22188431, 0x82370727, 0x3127211d, 0x18055e41, 0x0808e7a2, 0x27263742, 0x17160706, 0x00013736, 0x223a3948, 0x12010122, 0x0b2b1b12, + 0x06151b01, 0x74120f0e, 0x060e0f12, 0x0b011b15, 0x12121b2b, 0x22220101, 0x6b48393a, 0xd60bc00b, 0x0e0e0eac, 0x05020e9e, 0x17020574, 0xc820d887, + 0x0121ea87, 0x202985c0, 0x313483c0, 0x21700f09, 0x0a124010, 0x120a0b0b, 0x70211040, 0x6183090f, 0x6c85c020, 0x0900fe29, 0x0f28280f, 0x822aea09, + 0x06062200, 0x102c4182, 0x03000031, 0xc0ff1e00, 0xc0012002, 0x46000c00, 0x18008e00, 0x230d83a1, 0x35153503, 0x0d758f18, 0x0b11ca18, 0x2705fa65, + 0x17063107, 0x37161716, 0x2809aa75, 0x35363732, 0x23332301, 0x24f98206, 0x07063115, 0x07366a15, 0x33161722, 0x16274d83, 0x36313317, 0x82312727, + 0x35372205, 0x23458331, 0x31373135, 0x2005114d, 0x212f8423, 0x17833107, 0xb0200383, 0x210b8969, 0x386a1008, 0x070d2c05, 0x0b0c0c0d, 0x34070303, + 0x820c341d, 0x03072803, 0x0c0c0b03, 0x850d080c, 0x1801241e, 0x49201010, 0x3942053f, 0x01102705, 0x02113c0f, 0x13832c17, 0x0a353028, 0x100f0101, + 0x1482010f, 0x010f0123, 0x0c506a40, 0xf67ea020, 0x14b32109, 0x08206083, 0x52275682, 0x2c01012c, 0x7c0c0c52, 0x14210563, 0x295385b3, 0x0f01e001, + 0x0964010f, 0x74822013, 0x13829020, 0x010f6025, 0x845c1202, 0x111b245a, 0x83540c04, 0x0538376c, 0x7409136d, 0x0000010f, 0xffffff04, 0x017202c0, + 0x000c00c0, 0xe77b0054, 0xdb5d1805, 0x1535290c, 0x22312335, 0x37372627, 0x0ee25d18, 0xd36f1620, 0x27062b06, 0x31272726, 0x07163117, 0x6a182306, + 0x0d8b0de5, 0x548c0120, 0x8206c865, 0x35352156, 0x3321568e, 0x70588d31, 0xa0200c30, 0x080b7541, 0x08124824, 0x1f020405, 0x0c0d091c, 0x01020b0b, + 0x3a253a08, 0x073b253a, 0x0b0b0201, 0x1d080d0c, 0x0504021f, 0x79411208, 0x069f4105, 0x41880121, 0xb4410cb5, 0x01102124, 0x290c676b, 0x505020fe, + 0x08060750, 0x7282255d, 0x7a830720, 0x012e4e25, 0x824e2e01, 0x83092072, 0x5d25257a, 0x50070608, 0x20058a41, 0x20078650, 0xbe781801, 0x80fe220c, + 0x7a5e1860, 0x1fcb4107, 0x5e006021, 0xe026065b, 0x2b00c001, 0x51673700, 0x07154e08, 0x4e310721, 0x1629051d, 0x32171617, 0x06311737, 0x09d96a15, + 0x36053724, 0x94783735, 0x27073505, 0x111ba201, 0x16010111, 0x17212217, 0x16b80216, 0x16172222, 0x12230e84, 0x83049210, 0x320f8316, 0xfe252102, + 0x05b804fa, 0x07092506, 0x07220192, 0x851d1515, 0x21152226, 0x832d854a, 0x8008230e, 0x16850d0b, 0x2b221730, 0x0a4ad017, 0x05054a0b, 0x800402cf, + 0x1f4d0400, 0x82242008, 0x006122ab, 0x08854b74, 0x19d88f18, 0x1520c983, 0x5011bd71, 0x33200580, 0x2805ff48, 0x31070706, 0x27260706, 0x05047235, + 0x6d763520, 0x31152605, 0x37262706, 0xc0701835, 0x20c02612, 0x260a1818, 0x06636b1b, 0x2705ce68, 0x1b121201, 0x18180b25, 0x3d0c7677, 0x0e0e0656, + 0x121b3a13, 0x1f010111, 0x16160220, 0x082c0c02, 0x063a0e01, 0x14150a02, 0x6b773606, 0x69c0200c, 0xfe200703, 0x2108dc6a, 0x27694001, 0x06bf6507, + 0xa53e3085, 0x010a0a11, 0x241b1112, 0x02161213, 0x0e0d1602, 0x09041a07, 0x0205010e, 0x15090614, 0x8a5fbb02, 0x242d8208, 0x06000000, 0xeb4018ff, + 0x00242a07, 0x003f0032, 0x005a004d, 0x07897893, 0xad5b1720, 0xea581805, 0x31212109, 0x07015e18, 0x36373624, 0x53180337, 0x25210c88, 0xdc4e1816, + 0x18362008, 0x200ea353, 0x201a8c37, 0x61568216, 0xe02b33a2, 0x0c17171d, 0x151e2217, 0x18020615, 0x4108da56, 0x1b33090d, 0x3053291b, 0x140d3030, + 0x0d300a12, 0x01091213, 0x87091247, 0x8bd7200d, 0x89672018, 0x61312017, 0xc02532cd, 0x17190f10, 0x078e4101, 0x07838887, 0x1b1b292c, 0x50dcfe01, + 0x09125050, 0x0484130e, 0x140d2122, 0x04820784, 0x17962120, 0xf061a320, 0x0b5c1832, 0x01803908, 0x000800a0, 0x0058003e, 0x00730066, 0x01000086, + 0x21153515, 0x21313531, 0x08d45318, 0x1805ba47, 0x180b2e97, 0x460b2d6e, 0x6246056c, 0x27262305, 0xf4472121, 0x07b85905, 0x2009f053, 0x4e781823, + 0x1807200d, 0x430c5a65, 0x0121113e, 0x05e07980, 0x22071d41, 0x424b0a75, 0x01200577, 0x22060376, 0x41750a4b, 0x012009c2, 0x4f08ba6e, 0x1b510963, + 0x0a3a4b0c, 0x220c3f43, 0x82e06001, 0x01402100, 0x07387618, 0x32432020, 0x8820200b, 0x0d012316, 0x5918140e, 0x14230bea, 0x6b010d0e, 0x50200815, + 0x21051047, 0x4e660f01, 0x27428506, 0x00000600, 0xc001e0ff, 0x08bf5a18, 0x8100672a, 0x00009b00, 0x15351513, 0x0f929a18, 0x6f05a36f, 0x172005c2, + 0x2c050748, 0x37363137, 0x31272736, 0x07262726, 0x06655807, 0x250d3d6b, 0x23262734, 0x7f581723, 0x20199205, 0x20679807, 0x18339827, 0x2a0eeb91, + 0x03030c6d, 0x0c072006, 0x85370c0d, 0x0c0d2409, 0x41cd370c, 0xa0670586, 0x2c911806, 0x8e40200e, 0x8d802041, 0x8001212c, 0x0f5d9118, 0x5d8e8f20, + 0x0f206784, 0x0d729218, 0x0e8da020, 0x438f2020, 0x1f8d2020, 0x00820020, 0x00000430, 0x8002e0ff, 0x1b008001, 0x4c003100, 0xc7455f00, 0x17162a08, + 0x37163117, 0x37363137, 0x24058436, 0x27262726, 0x06ed7a21, 0xbb6c2720, 0x31212706, 0x37342726, 0x7c6b2507, 0x05f7502c, 0xda122308, 0x123a1313, + 0x0e332627, 0x0d010112, 0x60fe140e, 0x151511f6, 0x1201da11, 0x28011b12, 0x1b010127, 0xa95f5a01, 0x83802023, 0x1820083c, 0x0c0ca40e, 0x1e1d2e2b, + 0x180e0b05, 0x010d0e14, 0x0d0dedfe, 0x121bd0a3, 0x412f0112, 0x03140908, 0x6b13f75d, 0x033b105f, 0xc0ff0000, 0xc5014002, 0x5d003b00, 0x00006a00, + 0x16173601, 0x16310307, 0x77313717, 0x2320052a, 0x2623ef82, 0x65072223, 0x3726062c, 0x31171736, 0x4d183736, 0x362307b4, 0x82333233, 0x16372129, + 0x13281582, 0x31313001, 0x21313031, 0x30210382, 0x09657a31, 0x2b7c2120, 0x33362306, 0xbc4f1333, 0x0135080b, 0x12130cf4, 0x03038907, 0x0b0d1261, + 0x0b47570d, 0x20201818, 0x500a1818, 0x0a070f4c, 0x05056113, 0x0f0e083f, 0x01016610, 0x040d0201, 0x0d041414, 0x014cfeaf, 0x06a143c0, 0xe943fe20, + 0xe0202106, 0x0808814c, 0x0810b52d, 0xcffe140b, 0x08370403, 0x570f110e, 0x1212111d, 0x0c341d11, 0x1e041013, 0x11680605, 0x580c0c0d, 0x02148f01, + 0x018e1402, 0x464bfe19, 0x02240dfe, 0x02163016, 0x00200484, 0x0a9f4718, 0x4b001d37, 0x8d005400, 0x33130000, 0x17323323, 0x31331516, 0x07161716, + 0x2fe28207, 0x37263127, 0x31333736, 0x33363734, 0x21212107, 0x15221d83, 0x1b821431, 0x21052151, 0x34412726, 0x22098207, 0x82313027, 0x3535212f, + 0x17202d84, 0x20074345, 0x38a94617, 0x80808032, 0x4b09090e, 0x0a060610, 0x15b0fe15, 0x1006060a, 0x8023cf83, 0x82fe8001, 0x351a8203, 0x0303330c, + 0x1b101b18, 0x14141118, 0x111b1711, 0x0303181b, 0xf2820c33, 0x40012025, 0x46b3c0fe, 0x3c823396, 0x0d0d0125, 0x8218180d, 0x0e012404, 0x82800909, + 0x147c3510, 0x02014811, 0x11030311, 0x04100c0c, 0x01021103, 0x7c141148, 0x40211c82, 0x20008260, 0x327a46e6, 0x59180520, 0x4e220e37, 0x05535b00, + 0x39591808, 0x3615223e, 0x05154e37, 0x724e3520, 0x05954605, 0x332f5918, 0x45077142, 0x012007da, 0x302a5918, 0x124ef020, 0x01c02107, 0x09b25118, + 0xfb8e0420, 0xf9ac5220, 0x66057469, 0x332c1482, 0x31232726, 0x17160706, 0x37363133, 0xa361f09e, 0x01e02314, 0xec83800f, 0xeb9b0483, 0x4114d36f, + 0x07500725, 0x01402c06, 0x002300c0, 0x0045002a, 0xac7a004e, 0x155b18e1, 0x08db411a, 0x22051c5a, 0x82353736, 0x313329e9, 0x07141716, 0x15063107, + 0x0717c818, 0x15823720, 0x41273421, 0x0621050d, 0x1e094115, 0x142a5b18, 0x4707fa41, 0x093405df, 0x07010d28, 0x0f010920, 0x1718010f, 0x140d0d01, + 0x0c0c1228, 0x313a0d42, 0x0606068e, 0x0f01010f, 0x01010906, 0x1104080d, 0x59820905, 0x050f012d, 0x141b0e0c, 0x01010d0c, 0x46120c0b, 0x775b06bf, + 0x00232605, 0x0042002a, 0x1445414c, 0x0722f782, 0x5c181706, 0x0a5b125b, 0x425c1822, 0x215d2a07, 0x14140102, 0xff110d37, 0x425c1800, 0x5a272009, + 0x20421ece, 0x252f2808, 0x3a2d250f, 0x18082f3a, 0x2008365c, 0x20845a62, 0x69000621, 0x242f07f7, 0x77003900, 0x9d008a00, 0x0000b000, 0x42073701, + 0x172007d9, 0x2107af5d, 0x01823736, 0x17163322, 0x2b05646d, 0x17171716, 0x31312726, 0x07262726, 0x16242183, 0x32331617, 0x05242182, 0x31313734, + 0x29064f52, 0x06071415, 0x21311523, 0x91463531, 0x45312009, 0x058505b8, 0x200b7d75, 0x20708234, 0xa0771835, 0x18372012, 0x0824c677, 0x0c5a012b, + 0x0c090c0c, 0x181f090b, 0x2d020218, 0x2d45442d, 0x2203022c, 0x0b092621, 0x02010d14, 0x26130201, 0x0f131302, 0x130f0909, 0x08677913, 0x7ca0fe21, + 0x0121095c, 0x051d49c0, 0x06822020, 0xfd200985, 0x77181186, 0x564a0de9, 0xe0fe210c, 0x05852a85, 0x0d90012d, 0x07090d0d, 0x2e2a2a1d, 0x842d2d44, + 0x2f393d85, 0x03082030, 0x02020113, 0x1cc01401, 0x070c1818, 0x18180c07, 0x13121b1c, 0x301b1213, 0x52183c88, 0x8e820747, 0x3f496020, 0xc060210d, + 0x180c034b, 0x8b0cc0d7, 0x82002019, 0xff023600, 0x02dafffa, 0x00a60144, 0x004c0039, 0x07260100, 0x31171706, 0x87cf1806, 0x3107290a, 0x37161706, + 0x17163137, 0x090dd318, 0x3b6f3620, 0x36372305, 0x01862627, 0x034f2720, 0x01340812, 0x12131113, 0x171d0904, 0x155d1217, 0x2e0a1011, 0x11100a2e, + 0x17125d15, 0x04091d17, 0x4e121212, 0x1b222329, 0x0b15151d, 0x150b0808, 0x221b1d15, 0x6d4e2923, 0x3b0cf247, 0x0c0b0c9a, 0x110e3115, 0x0a371312, + 0x5015120f, 0x0f121550, 0x1213370a, 0x15310e11, 0x3b341a82, 0x140f0f03, 0x13181817, 0x18131010, 0x0f141718, 0xda3b030f, 0x450ddc4e, 0x803105af, + 0x1f00c001, 0x53002800, 0x00006400, 0x06150637, 0x20b78323, 0x09614211, 0x41183320, 0x152307ce, 0x71030731, 0x2520077e, 0x42065048, 0x17230591, + 0x18151631, 0x22098e6b, 0x42373734, 0x17200ba1, 0x14243382, 0x33310707, 0x28064348, 0x0f0faf23, 0x1b1b2911, 0x208d8501, 0x06464b40, 0x404f3127, + 0x80000140, 0x06577180, 0x010a762d, 0xfe1d1413, 0x13141dca, 0x85760a01, 0x20202f2a, 0x31ab3005, 0x193b4005, 0x1b01051d, 0xa618291b, 0x20820a0e, + 0x0150f624, 0x00826046, 0x2306ed4f, 0x1411bf97, 0x46833c83, 0xbf111423, 0x053c4197, 0xa0a04032, 0x4f0809a0, 0xa009084f, 0xffff0200, 0x8101c0ff, + 0x1720ff82, 0x0027ff82, 0x06072213, 0x4e311317, 0x36310510, 0x13373637, 0x26273631, 0x27172123, 0x31332717, 0x08018207, 0x26270640, 0x27270607, + 0x0a090e20, 0x16031d01, 0x21a62116, 0x1d031616, 0x0e090a01, 0x0729c0fe, 0x07fc0707, 0x211f1f18, 0x181f1f21, 0x0a0ac001, 0x206cfe0e, 0x01011415, + 0x01201514, 0x0a0a0e94, 0x00825d9d, 0x0e0e0c2b, 0x0e0e1010, 0x0000000c, 0x217f8c03, 0x8198003d, 0x818f1320, 0x29443720, 0x8317200e, 0x279695ae, + 0x11111133, 0x200d11fc, 0x0d2a0084, 0x121102ad, 0x0f0c0c0f, 0xb4431112, 0x22a99308, 0x82ead6fe, 0x0f062100, 0x29080084, 0x1c136606, 0x0c0c121c, + 0x131c1c12, 0x01111119, 0x19111101, 0x07000600, 0xf901c7ff, 0x2a00b901, 0x80005500, 0xcc00ab00, 0xc745ed00, 0x44272007, 0x262705c4, 0x06070623, + 0x82171407, 0x16172405, 0x83371617, 0x333221a4, 0x34240583, 0x37373635, 0x09847518, 0x14171623, 0x22208215, 0x83333217, 0x82288405, 0x35362142, + 0x23254682, 0x27260722, 0x82ee8401, 0x1706234b, 0x43531716, 0x37322105, 0x28825186, 0x34272622, 0x27262a83, 0x27262322, 0x43453605, 0x8522200a, + 0x82152080, 0x56072080, 0x1620076c, 0x27278085, 0x34253736, 0x18311737, 0x84131f49, 0x82578259, 0x07062562, 0x07263127, 0x21058047, 0x49183133, + 0x9782071e, 0x15822720, 0xc9172008, 0x0306060d, 0x0d0b0b05, 0x0e0c1c21, 0x0112121b, 0x04091206, 0x0d0d0606, 0x06040c0b, 0x8303030c, 0x16132212, + 0x200e8380, 0x2d168203, 0x12011316, 0x03031b12, 0x0b04070b, 0x3b820d0c, 0x12090423, 0x28128306, 0x201d0c0e, 0x0c04fffe, 0x21148d0b, 0x3991211c, + 0x84ad0121, 0x0b0c2460, 0x870b0704, 0x21858760, 0x85881d20, 0xccfe2108, 0x06050f0f, 0x0a010106, 0x0203073c, 0x011c0b05, 0x141c1011, 0x2112080c, + 0x02215d02, 0x060f0e01, 0x09231c82, 0x8202073d, 0x011c2bbe, 0x1b111001, 0x13080c15, 0x83a47801, 0xe3913d20, 0x250d0841, 0x0a110513, 0x138dd3fe, + 0x24161c41, 0x0b0b0d12, 0x0b1c4105, 0x92060c21, 0x18483d83, 0x03050f11, 0x093d0702, 0x06060601, 0x212d1e0b, 0x080f1a1a, 0x120c1413, 0x27123b27, + 0x05211c8b, 0x201c890c, 0x38008200, 0xfffeff04, 0x014202e0, 0x003400a0, 0x00760041, 0x37000083, 0x31313726, 0x05b57e36, 0x37473320, 0x31232309, + 0x8c183107, 0x33240c83, 0x27263736, 0x27231584, 0x4e252726, 0x332c051a, 0x30313031, 0x07161723, 0x07063131, 0x184d2f89, 0x31332605, 0x33363137, + 0x082f4533, 0x4a232321, 0x158205b3, 0x17161723, 0x20418505, 0x28418323, 0x020a0833, 0x247f0d03, 0xa18c182d, 0x2d252407, 0x564e2d23, 0x4030068e, + 0x01010f10, 0x0e77790f, 0x010a1010, 0xba010176, 0xfe242ba6, 0xf001018a, 0x5d213483, 0x06f3461b, 0x441c2421, 0x012405f4, 0x58010f0f, 0x30214583, + 0x211f8390, 0x1f981a5e, 0x48080021, 0x123108bf, 0x50002500, 0x96006b00, 0xc400b100, 0x0000d700, 0x05894813, 0x24070d46, 0x35262722, 0x11da5207, + 0xab701286, 0x05d64305, 0x5b0bf048, 0x764e0523, 0x7a112005, 0x372419a5, 0x37362734, 0x75832b8b, 0x35225394, 0x60183433, 0x032018b9, 0x834b9e91, + 0x18152005, 0x200b0edc, 0x052441f0, 0x43480585, 0x06ca4809, 0x02160826, 0x011a1a2b, 0x07be7a18, 0x1a1a0127, 0x1602012c, 0x181d8208, 0x2313c07a, + 0x351a0ec0, 0x0e221e86, 0x3b8a0909, 0x26252f25, 0x18e00e14, 0x20139b7a, 0x35b118d0, 0x0cff480c, 0x85060a47, 0x06235913, 0x5020a685, 0x02280682, + 0x02031016, 0x32272713, 0x28071c49, 0x13272732, 0x16100302, 0x21308202, 0x6b93c0fe, 0x22276024, 0x22871733, 0x02214285, 0x25428703, 0x27181701, + 0xd5932722, 0x0df04318, 0x0c98b218, 0x00820020, 0x2000022a, 0x6002c0ff, 0x7500c001, 0x2205f779, 0x18313127, 0x250b5f9c, 0x31153115, 0x44741714, + 0x43212008, 0x37230557, 0x5e353631, 0x05830560, 0x6e503420, 0x83152005, 0xb393182b, 0x06474608, 0x2305014d, 0x31233115, 0x37542985, 0x07062205, + 0x05e15a06, 0x83272721, 0x48132017, 0x33200699, 0x33206c82, 0x33211082, 0x26668431, 0x16070621, 0x41603317, 0x0e290535, 0x02160456, 0x01201602, + 0x22068360, 0x850e5604, 0x45240816, 0x0a100d0b, 0x0101081c, 0x0d0c0b0a, 0x40192f09, 0x0d092f19, 0x010a0b0c, 0x0a1c0801, 0x450b0e0f, 0x80408040, + 0x21052360, 0x4085a0fe, 0x27069941, 0x24013b40, 0x63111616, 0x26070d4f, 0x16161163, 0x543b0124, 0x3126073e, 0x0b070c5c, 0x55822310, 0x82090821, + 0x1d34295d, 0x20203e26, 0x341d263e, 0x09215a82, 0x2a628208, 0x070b1023, 0x40315c0c, 0x842040fe, 0x21478700, 0x9b490000, 0x000c2809, 0x007a0033, + 0x5b0000c1, 0x17260ca2, 0x14172717, 0xfb822207, 0x5b06a144, 0x8a1805ff, 0x16250a0d, 0x27270607, 0x05014325, 0x0a90b118, 0x79553720, 0x28511805, + 0x3117220b, 0x5e018230, 0xfc5105ab, 0x21578305, 0x9d412726, 0x37342405, 0x8b213336, 0x06f84446, 0x27263122, 0x2005d262, 0x213e8437, 0x4d183137, + 0x07210be7, 0x056f4731, 0x8309e441, 0x40012146, 0x0b505218, 0x0b2d4708, 0x16150b0b, 0x04080405, 0x01161605, 0x0f13130b, 0x1e1b100d, 0x1c1e2626, + 0x120f0d0f, 0x11bbfe14, 0x33130c0b, 0x010a110e, 0x200f0901, 0x0d0a0909, 0x0f200a0d, 0x01012019, 0x43140e0d, 0x1b64131a, 0x110b0c01, 0x26823002, + 0x641b012f, 0x14431a13, 0x01010d0e, 0x200f1920, 0x2b29820a, 0x10200909, 0x0a010108, 0x13330e11, 0x01202682, 0x0cb2f618, 0x5959a436, 0x15051659, + 0x01162323, 0x11591605, 0x1012100d, 0x17191917, 0x0d220682, 0x2d826411, 0x2850282a, 0x0c33131b, 0x0b0b0709, 0x4e877a82, 0x2e211923, 0x2663834f, + 0x271c6413, 0x82384066, 0x262a8277, 0x27664038, 0x8313641c, 0x2e4f2493, 0x88101921, 0x0b0928a8, 0x0c09070b, 0x821b1333, 0x232a824c, 0x03000000, + 0x27085b45, 0x0061001a, 0x010000a8, 0x1a528318, 0x298eb841, 0x121d1d23, 0x1d121111, 0x0989231d, 0x41e8fe21, 0x11284da1, 0x221e1e11, 0x111e1e22, + 0x09870082, 0x8d414020, 0x058b4156, 0x9901403c, 0x48002d00, 0x00006500, 0x17271737, 0x37323316, 0x27263137, 0x37363736, 0x5b181732, 0x26250720, + 0x07070607, 0x08744431, 0x31150724, 0x574f1716, 0x36372405, 0x18273435, 0x200f1c81, 0x9c051937, 0x22358208, 0x82262706, 0x07a05f51, 0x17362908, + 0xb4b4b430, 0x0c10100c, 0x02011d02, 0x2b4b3132, 0x21010124, 0x21233421, 0x0c0c1920, 0x23212019, 0x01212134, 0x80012f01, 0x2b13fb56, 0x1f040730, + 0x03030824, 0x08076007, 0x94370a8a, 0x0ba9a9a9, 0x382b020b, 0x0232314b, 0x060a0a13, 0x0a272636, 0x830a0a05, 0x820a2051, 0x26272608, 0x2c410636, + 0x139757d4, 0x0906e12b, 0x06080836, 0x07060548, 0x20088608, 0x08a74200, 0x20071b41, 0x301b415b, 0x18199047, 0x41124a68, 0x02212511, 0x18bf9310, + 0x410ec843, 0x44202509, 0x58135b41, 0x7f451057, 0x07034105, 0x5e005122, 0x48300541, 0x352019dc, 0x14ce6718, 0x42250841, 0xd055151a, 0x2509410f, + 0x76141342, 0xbb4415ce, 0x070f4106, 0x0d415520, 0x19134230, 0xc17a2320, 0x05315d05, 0x42250441, 0x4020150d, 0xa509e455, 0x140942ff, 0x01010f23, + 0x06c06c0f, 0x200d2344, 0x42f3b06a, 0x37221901, 0xca183515, 0x08411ecc, 0x150d4225, 0x83301021, 0x183020c0, 0x410d1471, 0x12422512, 0x30d02214, + 0x844c8e30, 0x0e134260, 0x184c1f41, 0x41206669, 0x32783b1f, 0x3a25411a, 0x081cf277, 0x00050026, 0x01c2ff02, 0x00be01fe, 0x001b000d, 0x00370029, + 0x25000069, 0x26332333, 0x15272627, 0x16171631, 0x33231717, 0x0adf6218, 0x17162123, 0x21168231, 0x20833135, 0x82352321, 0x37362929, 0x31353736, + 0x07060706, 0x200ac255, 0x5fb21815, 0x0d71670a, 0x2f09514b, 0x01353123, 0x414141bd, 0x593c3d0c, 0x0b2a2b3d, 0x412a0a82, 0x3d2b2a0b, 0x0c3d3c59, + 0x159304fe, 0x124dce20, 0xed4f180b, 0xe060210c, 0x3e843583, 0x4b844020, 0x12923e83, 0x5506024b, 0x485f06f2, 0x4a0e8807, 0x003006df, 0x2f00c001, + 0x56003800, 0x00007400, 0x31272625, 0x69062f65, 0x33240853, 0x33163117, 0x2506ca4b, 0x35312731, 0xca183331, 0x312608cd, 0x27172707, 0xf4823137, + 0x86710320, 0xe0013d3a, 0x62424309, 0x20363643, 0x19010120, 0x0f702618, 0x60090781, 0x16020216, 0x20500256, 0x2605794d, 0x4e4e4ea0, 0x71232e20, + 0xe0372870, 0x023f3f60, 0x36202001, 0x26384336, 0x79011918, 0x16160207, 0x41af0102, 0xc1270554, 0x38494949, 0x713a0181, 0x97463554, 0x01413005, + 0x003500a0, 0x005b0048, 0x2500006f, 0x18313716, 0x2709a889, 0x16170607, 0x16173637, 0x2006e24e, 0x06315a27, 0x66353621, 0x8f660593, 0x17142305, + 0x06581301, 0x32152111, 0x68184883, 0x142408b7, 0x25331617, 0x6205a453, 0x212005f0, 0x31084b82, 0x01012736, 0x1e1f1ab8, 0x151a1a18, 0x13191c1c, + 0x19150c08, 0x0c0c0c15, 0x520c1010, 0x0e0e0223, 0x16010317, 0x172b2217, 0x0e14230b, 0x0101010d, 0x4a422837, 0x0bdd4e0b, 0x1564fe25, 0x83021716, + 0x3d013a2d, 0x12090a1b, 0x112e9bfe, 0x1b170302, 0x151b2323, 0x0c0d0404, 0x0b081214, 0x2a578313, 0x18510c0c, 0x13141a2c, 0x670b0b09, 0x212b0505, + 0x0e0d0102, 0xfe060614, 0x8b5201ca, 0x8b802051, 0x1269266a, 0xfe1b0a09, 0x243184c3, 0x01151617, 0x07c76b65, 0xa0014031, 0x2d001900, 0x58004500, + 0x00006b00, 0x82271713, 0x313327e7, 0x31373732, 0x886b2736, 0x06312308, 0xfb932717, 0x26831620, 0x31353523, 0x5b2a8334, 0x1423069b, 0x41011717, + 0x1720114d, 0x2d114d41, 0x1b1b1bfc, 0x09360905, 0x05051b04, 0x0882041b, 0x04210582, 0x0f0641b8, 0x08b40124, 0x02883008, 0x8bc8fe21, 0x064043d5, + 0x0123f585, 0x89303058, 0x08082228, 0x22f28f11, 0x8204c3fe, 0x21708d6a, 0x32415401, 0x58e0200b, 0xf3460ff3, 0x01803905, 0x003b00c1, 0x00690056, + 0x37362500, 0x37363131, 0x31271732, 0x07262326, 0x0b7bd818, 0x205f8718, 0x2e547218, 0x31074127, 0x0d0d4631, 0xa38618d4, 0x180c200a, 0x21126587, + 0x0b4a4001, 0x45602822, 0x02022c2d, 0x180107bb, 0x18079dd8, 0x200e6e87, 0x24054a10, 0x4109874f, 0x5f22050f, 0x11416c00, 0x0514423d, 0x4a14374c, + 0x01201515, 0x20261441, 0x4acf93b0, 0x14410f16, 0x41a0201f, 0x104a1358, 0x0d274215, 0x15417820, 0x7d401858, 0x3c214121, 0x411a0a48, 0x0448342c, + 0x0533411c, 0xc101812f, 0x5c003d00, 0x00007100, 0x15351525, 0x06e46e23, 0x14311528, 0x23230607, 0x01842223, 0x08b54c18, 0x31353528, 0x27263123, + 0xf5183526, 0x1f5e09b0, 0x15062105, 0x0a040a19, 0x32333630, 0x37311717, 0x32373631, 0x16171617, 0x01820607, 0x300f235a, 0x36373233, 0x20200137, + 0x0c09090e, 0x2018110b, 0x25008201, 0x11100202, 0x12830c0b, 0x010a2a08, 0x0c0b0b00, 0x0f138a09, 0x0a102236, 0x2d44c00b, 0x2203022d, 0x09082422, + 0x0b2e0a0c, 0x0a0c0b0a, 0x0110102b, 0x442d2d02, 0x11f75d40, 0x02026228, 0x0e090902, 0x12511840, 0x01702405, 0x82014502, 0x0b0d2f0f, 0x070109df, + 0x310d0179, 0x1b1c1936, 0x3d83a21b, 0x302f3a2e, 0x2e09061a, 0x0901090b, 0x1825252c, 0x70206683, 0x200fc75d, 0x2c008200, 0xfffbff02, 0x018002c0, + 0x001c00c0, 0x1b58184f, 0x31152108, 0x138b4018, 0x17270725, 0x52072627, 0x63630572, 0x64ee8209, 0xc21806b0, 0x1735088b, 0x31333316, 0x31233131, + 0x0ee00111, 0x70400909, 0x0f01010f, 0x2aa98270, 0x8b8b8b40, 0x10e01515, 0x67160807, 0x1c820e6f, 0x01014123, 0x220682c0, 0x18c0fea0, 0x29091940, + 0x7777779f, 0x0ec01010, 0xe75e1415, 0x82602007, 0x83258250, 0x61013206, 0xff030000, 0x02befffe, 0x00c60142, 0x00600027, 0x8bc18299, 0x821620a1, + 0x60362089, 0x33200510, 0x3326a782, 0x31353736, 0x11823133, 0x03272722, 0x371e6d18, 0x27261722, 0x359e6b18, 0x1333012d, 0x0611b013, 0x03101608, + 0x181e1d02, 0x2c07956b, 0x01021c1f, 0x17100101, 0xb0110508, 0x2e6d1825, 0x2a722231, 0xac6b1823, 0xba01322f, 0x0e800c0c, 0x49011516, 0x01140201, + 0x140c0c13, 0x27818214, 0x16150149, 0xd0fe800e, 0x28298b65, 0x02180d0f, 0x0c0c1901, 0xa904838a, 0x0c0e2336, 0x23480218, 0x02be3005, 0x00c60164, + 0x0035001a, 0x0097005c, 0x180000d2, 0x231b1549, 0x31171736, 0x1809be6d, 0x250cd85f, 0x31310714, 0xe7410706, 0x1716230b, 0xe9411716, 0x26312708, + 0x16310707, 0xb5411715, 0x136f1807, 0xb9152031, 0x2001213a, 0x2813eb45, 0x380b0b93, 0x0b380a0a, 0x614b180b, 0x13b3270b, 0x0f122013, 0x6d181411, + 0x042109ab, 0x05174203, 0x50131324, 0xe6411313, 0x3118422f, 0x01232a22, 0x2014cb64, 0x82aa8443, 0x794b18b0, 0x2b433b09, 0x05182425, 0x140c0c0b, + 0x0e010c14, 0x01540203, 0x800e1615, 0x253a0c0c, 0x6d18a62b, 0x43422bc5, 0xab702005, 0x0c0e2632, 0x19010218, 0x083f5300, 0xc101802d, 0x5c004b00, + 0x00008000, 0x45171405, 0x352207d0, 0x4a773431, 0x15152207, 0x29f44531, 0x06070625, 0x82311507, 0x082d6d03, 0x52183320, 0x01262af7, 0x11010980, + 0xf65b0c0b, 0x19fe4506, 0x1422b626, 0x021e0114, 0x08408018, 0x14f15218, 0x0e122022, 0xe14d4183, 0x15f44506, 0x1d0c9f29, 0x1219251c, 0x82f08025, + 0x30302573, 0x2009090e, 0x19e55218, 0x17570320, 0x00c13106, 0x005d0042, 0x25000070, 0x31311714, 0x31211716, 0x0afbe118, 0x6b0b0047, 0xe21806cd, + 0xfd75092b, 0x4f821805, 0x31332407, 0x18333736, 0x201ad04e, 0xf3b21826, 0x3716300a, 0x27363137, 0x14144001, 0x1bf5fe23, 0x47011212, 0xd52a0a0c, + 0x23290d0d, 0x01281923, 0x8218200f, 0x0a820912, 0x08143a43, 0x0b0bd328, 0x0b0b1d3d, 0x0b280a0a, 0x0a0a480b, 0x26252d50, 0x12120118, 0x0901a01b, + 0x0a0e0d09, 0x070109e0, 0x111102bb, 0x9018301e, 0xb7490e7f, 0x0a2b2f13, 0x0a1c3c0a, 0x280b0b0a, 0x0b480a0a, 0x0082000b, 0x23410420, 0x0066220c, + 0x44254173, 0x80583720, 0x156d6a19, 0x4a2d2841, 0x29412494, 0x44902028, 0x886a13b1, 0x0c834314, 0x5d004224, 0x2d417e00, 0x1817205f, 0x20109b53, + 0x061a6607, 0x16311725, 0x42273637, 0x38412e61, 0x18172014, 0x2018fa7b, 0x3d434124, 0x7b189020, 0x252218dd, 0x87490300, 0x0038220a, 0x3f8e1862, + 0x058b5f08, 0x23070625, 0x83311131, 0x05016103, 0x27170729, 0x33311117, 0x6f313131, 0xbc4a0533, 0x37372406, 0x7f173631, 0xd9510547, 0x08cd7905, + 0x4306f748, 0x058505c9, 0x01070626, 0x09090ee0, 0x2a059b49, 0x0e090940, 0x8b8b8bcb, 0x82bffe01, 0x16202813, 0xe0100708, 0x43351515, 0x30240f44, + 0x0f200f01, 0x2905a649, 0x0f800f01, 0x01c0fe01, 0x3082a040, 0x77772825, 0x829ffe77, 0x01c02a43, 0xc00e1514, 0x30a81010, 0x28941830, 0x09d9430b, + 0x00820020, 0x2607b349, 0x006600c0, 0x6abf0086, 0x32200895, 0x2205bb64, 0x64272627, 0x162105d1, 0x21018217, 0x01843233, 0x30313022, 0x083bab18, + 0x93643620, 0x1826200c, 0x200aba76, 0x200b8406, 0x20418322, 0x055c5a35, 0x82371621, 0x26518607, 0x15150637, 0x84153231, 0x36372254, 0x256e8217, + 0x36171617, 0x64502735, 0x49132007, 0x513d37d9, 0x2b212212, 0x0c0d1719, 0x0604050b, 0x24200d06, 0x023c3b58, 0x43252501, 0x02011614, 0x18028201, + 0x3f1df276, 0x10132b23, 0x0111111b, 0x15251919, 0x0c0c0c11, 0x04050606, 0x3d231e0c, 0x010dfc2a, 0x1f1c0202, 0x07b87518, 0x01080829, 0x13600c01, + 0x47336013, 0x012631db, 0x13142137, 0x9e830801, 0x0c0b0d2d, 0x38020b04, 0x35465638, 0x18061235, 0x47151c77, 0x0c2d0597, 0x0401190c, 0x1e161709, + 0x01191925, 0x20958308, 0x3d9d820d, 0x1328010e, 0x0179100a, 0x14140101, 0x0d0f010c, 0x04040205, 0x0a109004, 0x480c0c48, 0x0c4ab6fe, 0x00032f32, + 0x01c0ff00, 0x00c00140, 0x00300016, 0x0163004a, 0x09197207, 0x1805d547, 0x180ca08f, 0x740c8b8f, 0x202319c0, 0x510e0909, 0x068306cc, 0x12012024, + 0xab771b12, 0x4c088408, 0x1d690650, 0x01802106, 0x4c067260, 0x80240566, 0x0112121b, 0xfe213383, 0x084779e0, 0x18402021, 0x6e0dfdc5, 0xbf8805af, + 0x5f004824, 0xc3b28100, 0x7d233321, 0x16270591, 0x36333317, 0x6e373637, 0x2622057d, 0x08851727, 0x88171621, 0x23232518, 0x07070631, 0x31202e89, + 0x2107b66e, 0x38843133, 0x26211f84, 0x39faa127, 0x2a2a2a70, 0x10010105, 0x36161910, 0x01101019, 0x1e2a0501, 0x301e1212, 0x16911e12, 0x2b893020, + 0x0f0f0124, 0x2f8a1601, 0x21223241, 0x2f840501, 0x6f826982, 0x01151524, 0x6c821576, 0x06231287, 0x854a1501, 0x0f202520, 0x200f0101, 0x13829083, + 0x00011530, 0x00010000, 0x02c0ff00, 0x00c00100, 0xe218005b, 0x152808fd, 0x31073115, 0x27263135, 0x075a4118, 0x4d171621, 0x178305d9, 0x21074468, + 0x88183135, 0x475409a5, 0x31352105, 0x83050f45, 0x8835202b, 0x8227203f, 0x27342b09, 0x050f0127, 0x2c050a0a, 0x1b629005, 0x3a902507, 0x600f0106, + 0x6024eb83, 0x3b05010f, 0x05321789, 0x0ab6012c, 0x0d0c670a, 0x1613544d, 0x38160202, 0x06831820, 0x33210828, 0x0f100705, 0xc3834001, 0x0f014028, + 0x33050710, 0x19830821, 0x38201822, 0x13250683, 0x0c0d4d54, 0x07334767, 0x82800121, 0x001724d3, 0x18470031, 0x1808cb89, 0x42108789, 0x15220cf0, + 0x25190631, 0x35210883, 0x06977721, 0x09be7818, 0x06072229, 0x16026015, 0x84021650, 0x84902073, 0x01602a92, 0x80362524, 0x01242536, 0x92cb1801, + 0x54002009, 0x01210b8b, 0x18a184a8, 0x20087940, 0x822c84e8, 0x09244335, 0x4308a67d, 0x00270629, 0xff000008, 0x822002c0, 0x001a2ebf, 0x004d0040, + 0x00760064, 0x009c0092, 0x5cc982aa, 0x1720197f, 0x7b05d379, 0x162107b8, 0x05667217, 0x2509d47b, 0x27263123, 0x56512723, 0x25258205, 0x05373637, + 0x13411716, 0x36312610, 0x15350737, 0x158d1835, 0x22348307, 0x18272726, 0x230c37aa, 0x23060714, 0x20053144, 0x202d8235, 0x054a4317, 0x9f184882, + 0xf0200d6d, 0x0813b865, 0x270b2c21, 0x293d3426, 0x28020228, 0x26343d29, 0x0e480b27, 0x0e146816, 0x0d01010d, 0x1668140e, 0x188c480e, 0x280cd26a, + 0x60021600, 0x16020216, 0x240483f0, 0x70160260, 0x9dd618e0, 0x50f02308, 0x38878050, 0x104c1020, 0x0f012c06, 0x01010f80, 0x9810100f, 0x83b0b0b0, + 0x21048432, 0x0b663001, 0x31202413, 0x83011f1f, 0x238d8385, 0x311f1f01, 0x4a183982, 0x6020086c, 0x0b154118, 0x1602a022, 0x086ec418, 0x02160824, + 0x008270e0, 0x08b37e18, 0x0c838f83, 0x2905ce44, 0x40010f50, 0x010f0f01, 0xf0415020, 0x82002007, 0x00053200, 0x02c0ff1a, 0x00c00167, 0x001f000d, + 0x00400033, 0x4fba184c, 0x7103200f, 0x15280b1d, 0x35312131, 0x21373607, 0x08a24018, 0x26312127, 0x37372627, 0x05a44f03, 0x27270628, 0x25372631, + 0xaf4f1736, 0x18012008, 0x20084bc6, 0x068f4598, 0x4d00ff3a, 0x44011d0e, 0x071c0e1d, 0xfe130809, 0x09081368, 0x0e4f1c07, 0x0b116814, 0x102a0482, + 0x1416020a, 0x68110b0e, 0x04820f13, 0x90a80128, 0x02169090, 0x04841602, 0x85d8fe21, 0x202039cb, 0x01011a5b, 0x0e11371a, 0x0e01010e, 0x0137110e, + 0x480b1111, 0x0a10140e, 0x062f0482, 0x0f13110b, 0x14100a48, 0x0000480e, 0x82fcff02, 0x010426df, 0x002800c0, 0x18d9825d, 0x200aaf59, 0x157e7815, + 0x31353126, 0x07333736, 0x20832882, 0x66053744, 0x0f8905ec, 0x30331626, 0x16311731, 0x31079343, 0x32313737, 0x35353231, 0x50501001, 0x01010f50, + 0x7646500f, 0x43fe2006, 0xc02a0636, 0xd0100f01, 0x28404040, 0x03823040, 0x30010130, 0x17080512, 0x081740fe, 0x01301205, 0x1e820101, 0x6f0f4021, + 0x70240d68, 0xc0e0010f, 0xc42e0084, 0x160e2001, 0x16010116, 0x01200e16, 0xe36400c4, 0x0025240c, 0x7a490042, 0x15210899, 0x05c17531, 0x83171621, + 0x822320af, 0x672120c8, 0x262606a8, 0x21272627, 0xfb5c2305, 0x0b597d05, 0x32823520, 0x27222408, 0x33353526, 0x33153515, 0x1b802731, 0x2d011212, + 0x16010211, 0xc0f32115, 0x01404001, 0xfe1b1212, 0x428001c0, 0xc0240a57, 0x010d0e14, 0x2022d883, 0xba826060, 0xe02a2082, 0x16211102, 0xe0600115, + 0x3f832020, 0x0eca6b18, 0x0909d024, 0x0083600e, 0xff2dbb84, 0x01defffe, 0x00a20180, 0x002c0015, 0x9bc61843, 0x1803200c, 0x2008ad44, 0x06b86e13, + 0x3121118a, 0x20c38236, 0x05787c33, 0x08d8b118, 0x31113529, 0x23262734, 0x6e0504be, 0x80200510, 0x47290888, 0x030a0b0d, 0x07070140, 0x2008880e, + 0x0cf7695b, 0x9b187620, 0xfe21078f, 0x22098780, 0x832a8001, 0x21108330, 0x0983030a, 0x1a820120, 0x82030a21, 0x48fe20be, 0x01200621, 0x575d0783, + 0x001e2d0a, 0x003c002b, 0x17000060, 0x31353736, 0x36200385, 0x0a368c18, 0x2106c54a, 0xd9440337, 0x3d54180b, 0x11d83b34, 0x011e0217, 0x0d291a1a, + 0x52493434, 0x02023636, 0x27271f1e, 0x0e0e0a1b, 0x9644180a, 0x18d0200b, 0x3c1cff53, 0x5f1f1533, 0x2a191225, 0x47071e1f, 0x02022c2d, 0x2d523636, + 0x38373b3b, 0x010c0c21, 0x0b574473, 0x52507020, 0xc3531808, 0xff05391a, 0x02d9fff9, 0x00a00140, 0x005c0055, 0x00710065, 0x0100007a, 0x17160706, + 0x2205d845, 0x65232326, 0x072006d2, 0x03200786, 0x4d08b04d, 0x332107ba, 0x4d098931, 0xa55506c6, 0x30372405, 0x5f313031, 0x262d0599, 0x17172327, + 0x31231727, 0x37070737, 0x22068207, 0x46071731, 0x14250550, 0x23313717, 0x07ea6305, 0x38015708, 0x16020216, 0x36354c10, 0x400f0e0e, 0x0e0d062a, + 0x06162908, 0xf0090d0d, 0x0f13100c, 0x0c282b4f, 0x340e1311, 0x100a1e4b, 0x50300e14, 0x12140d27, 0x220c1909, 0x01011716, 0x38382121, 0x11331045, + 0x1e2f1111, 0x02020258, 0xba112130, 0x01101018, 0x01264e11, 0xad620f97, 0xa0012306, 0x60821602, 0x482e2d2a, 0x020d6105, 0x32370b01, 0x27080582, + 0x13d0fe0a, 0x65100c0f, 0x0e133711, 0x2a46110c, 0x110b0f13, 0x09124446, 0x012c140d, 0x28221716, 0x21383845, 0x28a80121, 0x26200082, 0x292a5882, + 0x10010227, 0x10181810, 0x02633061, 0x010f2405, 0x48020000, 0x1c2708e7, 0x00003600, 0x18070625, 0x210bf171, 0x36470706, 0x7527200b, 0x60180520, + 0x0124122b, 0x7f2701a0, 0x2605c169, 0x5846357e, 0x18023b3b, 0x2607cce7, 0x0e1111af, 0x82761f0e, 0x761637bb, 0x110e0e1f, 0x0e0e4811, 0x3546f048, + 0x0d0d0a7e, 0x7f09090a, 0x29870127, 0x59200783, 0x1f202183, 0x1f20ea83, 0x48203783, 0x1b512e82, 0x01002a08, 0x001c00c0, 0x0038002a, 0x21a79e46, + 0x51181505, 0x26240798, 0x37070627, 0x17200d8c, 0xb7990d8c, 0x4918fe20, 0xb2460856, 0x98088808, 0x400823be, 0xe9834040, 0x60230484, 0x83a0a0a0, + 0x2304840c, 0x60606040, 0x04840c83, 0x0032d282, 0xff020003, 0x018002c0, 0x073b07c0, 0x00820756, 0xef6c0100, 0x51461805, 0x3114260b, 0x31313114, + 0xb7038615, 0x82378509, 0x87498444, 0xad55830d, 0x07f64113, 0x53893583, 0x41bf0940, 0xd7850903, 0x1f410587, 0xcf158b07, 0x31302313, 0x03821530, + 0x72186282, 0x0796071d, 0x1b962584, 0x08597218, 0x27404d87, 0x40ab8b9a, 0x332aa80b, 0x16312331, 0x23373617, 0xb3403331, 0x220342a8, 0x3420cb90, + 0x45951190, 0x20972740, 0x83bf8431, 0x0dc9439d, 0x35200d83, 0x31201291, 0x5d8913dd, 0x67bb0940, 0xc3870799, 0x058b0785, 0x47413120, 0x8913b106, + 0x2509ab31, 0x37363534, 0x98183736, 0x37250891, 0x27263135, 0x05937623, 0x0ed76818, 0x27823420, 0x27333625, 0x18222326, 0x210f02cd, 0xf8491717, + 0x31172208, 0x834c8216, 0x0720082a, 0xf8012731, 0x0b060610, 0x3d2b1627, 0x022d2d44, 0x3b262601, 0x02021618, 0x18181816, 0x02161602, 0x0d840682, + 0x26263b2f, 0x19180101, 0x0e0e0c27, 0x70160201, 0x13444f68, 0x04d13408, 0x1d040b0b, 0x06070b4c, 0x09422805, 0x4e0b0302, 0x090a0105, 0x063b3b08, + 0x14012909, 0x1d3c2113, 0x0e01c001, 0x16270c0e, 0x2d020125, 0x2c3d442d, 0x98010a2b, 0x987d8300, 0x8318861c, 0x9d239f9a, 0x2b0a2f47, 0x25303d2c, + 0x050a2719, 0x16701006, 0xa6508002, 0x6e200813, 0x174a0a0a, 0x09090803, 0x0a072d45, 0x500c020a, 0x0704050b, 0x02063636, 0x272e4533, 0x4a121b26, + 0x3b08d774, 0x000f00a0, 0x005f004d, 0x1300006f, 0x17140706, 0x27263127, 0x31353526, 0x37333736, 0x2408076b, 0x17161716, 0x06046b17, 0x36373422, + 0x11830182, 0x06151624, 0x28821507, 0x0c06c418, 0x27253e83, 0x07060706, 0x06454f05, 0x0b821420, 0x36310724, 0xfa182635, 0x106b0861, 0x1e9f3b07, + 0x191f0601, 0x07010f0f, 0x81811a67, 0x0f101881, 0x19180101, 0x3b234729, 0xd482011f, 0x1b152b08, 0x0d16151b, 0x3a1f010d, 0x19294724, 0x0f010118, + 0x1b811810, 0x28272322, 0x011a2322, 0x67676728, 0x0f0f0107, 0x01062018, 0x6a7ec11e, 0x10012e06, 0x16183944, 0x13130708, 0x01075519, 0x35318330, + 0x20202a55, 0x142f120a, 0x1a291a4d, 0x17161f1f, 0x16170101, 0x0c821f1f, 0x2f144d28, 0x20200a12, 0x7783552a, 0x1b1a2a36, 0x1a1b0101, 0x0701302a, + 0x13131955, 0x18160807, 0xc0904439, 0x08f12519, 0x03000023, 0x2c008200, 0x80018002, 0x21001000, 0x00003b00, 0x0e294f01, 0x21131125, 0x18362121, + 0x22088adf, 0x51113121, 0x75520e13, 0x0001210a, 0x2f565982, 0x20c02707, 0xe0fe2001, 0x49562001, 0x18e02009, 0x210d2a41, 0x9c538001, 0xfe80210a, + 0x01210d84, 0x822e8300, 0x061a6b0b, 0x22064b50, 0x570900c0, 0x1930082b, 0x3c003300, 0x4e004500, 0x60005700, 0x75006900, 0x1bdba618, 0x4b181720, + 0x172618c7, 0x27263736, 0xfe180706, 0xe3820a4c, 0x032011a0, 0x95443183, 0x57002006, 0x40201153, 0x0d617118, 0x20671020, 0x02182207, 0x200a8516, + 0x2411a238, 0x01010f88, 0x064d550f, 0x88098757, 0x80012209, 0xc34b1860, 0x90c0200f, 0xa238205e, 0x68012111, 0x3b09864d, 0x00000600, 0x8002b9ff, + 0x1b00c701, 0x6b003900, 0x7f007500, 0x00009a00, 0x36372601, 0x0931a418, 0x2a066c74, 0x37362726, 0x01273133, 0x18073707, 0x2f0deb81, 0x35263127, + 0x31373734, 0x07161736, 0x33233303, 0x22054a7f, 0x74063133, 0xca5506f9, 0x31232105, 0x82052c6c, 0x061d4507, 0x3631352a, 0x17373637, 0x15233323, + 0x05200984, 0x2305e14e, 0x07353133, 0x3919e370, 0x0e0e1702, 0x07401111, 0x11114007, 0xae170e0e, 0x16020216, 0x52fe17ae, 0x0b871717, 0x09341f8b, + 0x06f2f2f2, 0x160f0e01, 0x10140675, 0x13101515, 0x1b121201, 0x40201191, 0x1b250082, 0x01011212, 0x21058380, 0x5c45e040, 0x97012113, 0x40257083, + 0x070a0a07, 0x27628340, 0x16160217, 0xb0fe1702, 0x09847882, 0x012d1d8d, 0x160d0b39, 0x1b010e0f, 0x130f0f16, 0x895583d6, 0xd714210f, 0x09b8c518, + 0x9083c020, 0x44204021, 0x002013f5, 0x07200082, 0x3208274f, 0x005f0045, 0x00730069, 0x0087007d, 0x01000094, 0x4b161716, 0x5518089f, 0x07270b2c, + 0x22070631, 0x82312727, 0x9f381907, 0x17362208, 0x973b1917, 0x3130280e, 0x17323130, 0x19360131, 0x570af53c, 0x17260c71, 0x33153515, 0x42822631, + 0x9f413720, 0x16272a12, 0x16313117, 0x23313517, 0xdd8f1807, 0xd701210b, 0x0aa38618, 0x0a0c0c31, 0x0c0b5b5b, 0x0109090d, 0x15700a01, 0x18555915, + 0x2109fc86, 0x631829fe, 0x6d18099c, 0x3021095e, 0x200b8330, 0x25008230, 0x010d0e14, 0x05837001, 0x01561386, 0xb701210c, 0x0ce78618, 0x08010824, + 0xcc184e4e, 0x60240755, 0x544c1010, 0x2106f157, 0x4784d9fe, 0x140e0d23, 0x200888a0, 0x205d8670, 0x206b8470, 0x85708470, 0x52502068, 0x00200b53, + 0x0f200082, 0x3f087b41, 0x001c000e, 0x0037002a, 0x00530044, 0x006f0062, 0x0098007e, 0x00ac00a2, 0x00c000b6, 0x130000cd, 0x20050d41, 0x06b55006, + 0x8d0d7757, 0x7417200d, 0x9b74058f, 0x06784605, 0x37203785, 0x3e58448d, 0x059e4608, 0x82162721, 0x83288310, 0x0609520e, 0x85272621, 0x4105201b, + 0xb0264dc4, 0x01161722, 0x05850f01, 0x30307827, 0x02021630, 0x23048416, 0x70707020, 0x04840c83, 0x14860820, 0xf0201982, 0x33832d87, 0x3e8b8020, + 0x16015026, 0x010f2217, 0x80200585, 0x0e830887, 0x198b6020, 0x4200ff21, 0xc0203c0e, 0x10204b8b, 0x1023b718, 0x7c456020, 0x8ba82007, 0x8b102080, + 0x8b902034, 0x8b1020b4, 0x8b1020ce, 0x09464219, 0x20334f42, 0x086b4501, 0x00008c25, 0x5b273605, 0x31260689, 0x31173131, 0x5f4a3716, 0xef5d1805, + 0x2a751807, 0x3135230f, 0x015c2726, 0x07062307, 0x1f853115, 0x18312721, 0x4a08495e, 0x0724055c, 0x17160706, 0x37210182, 0x7e558237, 0x731805df, + 0x3527085a, 0x31373135, 0x82143115, 0x826b821f, 0x8417200d, 0x087b830d, 0x0fd0014c, 0x43052a0d, 0x23241e85, 0x01011a1b, 0x99221616, 0x17080c28, + 0x12100b26, 0x0809300f, 0x16023216, 0x01070701, 0x16320216, 0x0f300908, 0x260b0f13, 0x290c0818, 0x16162299, 0x1b1a0101, 0x851e2423, 0x0c2a0642, + 0x3010120e, 0x7c431806, 0x182d0805, 0x12103006, 0x3112103a, 0x57060937, 0x02011d7a, 0x252a1a19, 0x17061a1a, 0x2a100e29, 0x0c0f1333, 0x0f0d4010, + 0x18263227, 0x01073907, 0x08048201, 0x32261859, 0x400d0f27, 0x130f0c10, 0x0e102a33, 0x1a061828, 0x1a2a251a, 0x1d010219, 0x0906577a, 0x10123137, + 0x07380f0d, 0x3f1f3809, 0x0109090d, 0x0d090901, 0x09381f3f, 0x0d0f3807, 0x06000000, 0xc0ff0000, 0xc4018002, 0xf7008600, 0x09010001, 0x1b011201, + 0x26170000, 0x18313737, 0x200c1dc6, 0x05354327, 0x18313721, 0x2013d7b6, 0x06cf5635, 0x15171623, 0x87038331, 0x05da5925, 0x82059069, 0x06172405, + 0x85272607, 0x07062a03, 0x31153127, 0x15143117, 0x83158216, 0x0714210b, 0x26241983, 0x07313535, 0x14261982, 0x06310707, 0xd85b2527, 0x09a25d05, + 0x23202c83, 0x47471e82, 0x09f65b07, 0x075a6918, 0x097ca618, 0x8247098b, 0x05fe6205, 0x58373621, 0x138705f2, 0x8307fe5d, 0x33172365, 0x25833323, + 0x87151521, 0xe07a1808, 0x15152308, 0x38841535, 0x060da93f, 0x753b051e, 0x1720201b, 0x13010118, 0x31a01f14, 0x1d0e0308, 0x070e0d06, 0x0c020320, + 0x07f3412d, 0x0c2d2308, 0x08200302, 0x1d060d0d, 0x3108030e, 0x041422a0, 0x1a1a0e03, 0x231a0e0e, 0x280a100b, 0x06150120, 0xf3412b05, 0x02202e05, + 0x010d0820, 0x30010f57, 0x010f0f01, 0x05fb5b10, 0x1583058a, 0x1f9d1a84, 0x86301021, 0x83502000, 0x0e560807, 0x2c3d0d08, 0x173c0407, 0x01011966, + 0x1f251616, 0x17051617, 0x2a0a072a, 0x05080e3a, 0x0606400d, 0x18172725, 0x01082b07, 0x072b0801, 0x26261718, 0x0d400606, 0x3a0e0706, 0x2a070a2a, + 0x041a0518, 0x01011505, 0x02011515, 0x230e0520, 0x03032018, 0x06040e1a, 0x4342322b, 0x20322407, 0x82030429, 0x01ce2330, 0xb185100f, 0xe58fa5a6, + 0x30307026, 0x80303050, 0xb784b283, 0x0100002c, 0x20001b00, 0x60012502, 0xab4a1700, 0x32332107, 0x22057a4c, 0x5c070607, 0x90200643, 0x2d34b182, + 0x1726262d, 0x0809096c, 0x133efe13, 0x6c090908, 0x16270d01, 0x27250082, 0x0f0f11bd, 0x228f8201, 0x8200bd11, 0x65072000, 0x3b2c0833, 0x5d004d00, + 0x7f006d00, 0x9c008a00, 0x37496882, 0x31152505, 0x33363117, 0x5b094165, 0x601805ad, 0x23200b23, 0x18080560, 0x2008987a, 0xcd751817, 0x18072010, + 0x460e1176, 0x761806b2, 0x31910821, 0x27172532, 0x07312317, 0x37312731, 0x06272637, 0x06310307, 0x213be682, 0x36373631, 0x50010327, 0x010d0e14, + 0x20050447, 0x0f01010f, 0x11134903, 0x457a0101, 0x182a073e, 0x02161602, 0x0e0d0128, 0x9c186014, 0x58180c58, 0xa0210a79, 0xe59c1801, 0xd0691809, + 0xd0fe3b0b, 0x3d3c3c3c, 0x1d4a1930, 0x0a13130a, 0x0b090abe, 0x137b0114, 0xbe0a090b, 0x5083c001, 0x03775c22, 0x7a243984, 0x01012222, 0x08c49c18, + 0x02164826, 0x90481602, 0x40207f83, 0x149f6a18, 0xa5836020, 0x2020aa84, 0x0a4e7618, 0x6363a32f, 0x7a294063, 0x0101102c, 0x11c6fe10, 0x83c38212, + 0x583a2004, 0x8b2906c7, 0x0c00c001, 0x00002c00, 0x057d6501, 0x06070626, 0x01171617, 0x2106414d, 0xf3182734, 0x1e410a37, 0x16152a05, 0x02171617, + 0x16182d30, 0xe5211916, 0xfe210807, 0xfe450108, 0x1a0b02bb, 0x09011111, 0x0c0c0784, 0x0b7e3007, 0xd80b1414, 0x100f0109, 0x01200118, 0xa3211927, + 0xa0fe2c09, 0x1a111101, 0x0bd80f11, 0x84c94f0b, 0x0ea72693, 0x0f101810, 0x268f8601, 0x00c30142, 0x82620059, 0x8417198f, 0x1717240a, 0x82310731, + 0x20818289, 0x084f6207, 0x0b154119, 0x0da05a18, 0x17310726, 0x37312331, 0x07202982, 0x35220782, 0x0f822531, 0x83055946, 0x012725e3, 0x33370737, + 0x23391282, 0x1c091002, 0x0d0f211c, 0x19030607, 0x1608076c, 0x840e0816, 0x02161602, 0x1a981810, 0x8920080d, 0x421b3e43, 0x29354b1a, 0x031a5101, + 0x0f0d0b0c, 0x08101021, 0x0bbdfe2a, 0x0b700b0b, 0x20830186, 0x04340e82, 0x0d0b0b04, 0x14131d5b, 0x27140101, 0x02162723, 0xf8fe1602, 0x280bbd61, + 0x4b4e10be, 0x589f9813, 0x286d835e, 0x1c1b0a04, 0x7dfe9b21, 0x3f008220, 0x00000a00, 0x8002e0ff, 0x0c00a801, 0x31001200, 0x5e005100, 0x73006600, + 0x82007a00, 0x0000a500, 0x0d750a19, 0x16070625, 0x83373517, 0x05384b05, 0x23073c61, 0x35262726, 0xd782dc82, 0x17171624, 0x0b821535, 0x82055b45, + 0x141722f6, 0x54801807, 0x27518c0d, 0x15351517, 0x27343536, 0x0c280f19, 0x64820320, 0x075a3120, 0x821b8305, 0x82312041, 0x2871990e, 0x01481716, + 0x1b1c1c1b, 0x29058501, 0x01010f08, 0x022e900f, 0x3e4f1f01, 0x111d3806, 0x1f200112, 0x1b252030, 0x02011ff0, 0x20251b2e, 0x01201f30, 0x861d1112, + 0x8b08201f, 0x1078233d, 0x4419ff10, 0x50280ce9, 0x010f0f01, 0x40101090, 0x50873089, 0x01234683, 0x82102068, 0x85202000, 0x119e2b05, 0x54111919, + 0x34422a32, 0xc6411527, 0x0e1b2405, 0x84221b1a, 0xdc132a28, 0x27151515, 0x132a4234, 0x248e8301, 0x0e1a1b22, 0x2123851b, 0x438c4801, 0x54545422, + 0xd6204683, 0x210b635d, 0x5782f0fe, 0x2a191122, 0x2a201b86, 0x2b203d83, 0x2b203d85, 0xe4826188, 0x41050021, 0xa52c06cf, 0x19000c00, 0x3c002f00, + 0x0000ad00, 0x0cc11a19, 0x0c639c18, 0x245f0720, 0x19142005, 0x180dc33d, 0x180ca09c, 0x2770c499, 0x13016801, 0x01131414, 0xd8200585, 0x0ba24618, + 0xf2857020, 0xeb6e0220, 0xc0fd2306, 0x1e8bd001, 0x1bd8fe22, 0x4ca79918, 0x8b780121, 0x8b88205d, 0x43d02096, 0xd0200b5e, 0x9918198b, 0x0031488a, + 0xff000004, 0x014302be, 0x000c00c0, 0x00950088, 0xd56518ad, 0x4607200e, 0x142807be, 0x32331617, 0x16311737, 0x2206186b, 0x44333127, 0x36240674, + 0x03273637, 0x32220b82, 0x2a4b3033, 0x31342a06, 0x31373130, 0x31373736, 0x24338230, 0x17063107, 0x212b8a17, 0x484b3127, 0x4b4b8305, 0x2720065c, + 0x17831183, 0x21059955, 0x0b820706, 0x42232321, 0x07230c22, 0x82073707, 0x85152049, 0x825d8587, 0x18272025, 0x080ca09d, 0x121b1034, 0x09090112, + 0x18090f0e, 0x0d0b0a03, 0x0107070e, 0x031e1015, 0x0d0d0b0b, 0x39030707, 0x0d010174, 0x0504050d, 0x1a090302, 0x01010108, 0x47160811, 0x1d840416, + 0x03062208, 0x32080317, 0x10070914, 0x0c0c0c1b, 0x04040607, 0x0e0f150d, 0x23221b1b, 0x1426081f, 0x35151383, 0xa7c61801, 0x1972240c, 0x5e3c1919, + 0x3d2705dd, 0x280e0407, 0x18010304, 0x2a0cece3, 0x12120120, 0x090e801b, 0x83900b09, 0x218d8385, 0x8483877b, 0x01378c83, 0x06063602, 0x06050403, + 0x0c1a0801, 0x21400104, 0x0d584e1a, 0x83030706, 0x0c5c2b8a, 0x17413609, 0x050e0810, 0x89820404, 0x0a070c2d, 0x13121f25, 0x2211040e, 0x1820093c, + 0x240b659e, 0x3e3e3ef0, 0x05315f3b, 0x09073e26, 0x04042d24, 0x2e053370, 0x02c0ff08, 0x00c20132, 0x004c003f, 0x48930059, 0x26230881, 0x18272627, + 0x200c454b, 0x09b66217, 0x41055564, 0x3628055a, 0x36311135, 0x36313737, 0x07894b18, 0x200ccc43, 0x0b444721, 0x18081c42, 0x180fc7d3, 0x230ba140, + 0x33163117, 0x0d71f818, 0x23272631, 0x1808e801, 0x18202018, 0x04090818, 0x830e0a0b, 0x130922fc, 0x05ef423b, 0x06851020, 0x09133b2c, 0x0d060703, + 0x040a0b0e, 0x9f185809, 0xfe200b9f, 0x0c97c418, 0x93180820, 0x38860946, 0x110a0d23, 0x05c34330, 0x18261e2f, 0x8501212b, 0x0112131f, 0x1f131201, + 0x05634123, 0x230e0a26, 0xcefe1f44, 0x80202285, 0x27074963, 0x23432032, 0x040b0b0d, 0x23217383, 0x0b684125, 0x20270b8b, 0x1b121201, 0x8dbf0160, + 0x14e3223c, 0x3db3860f, 0x00000124, 0xfeff0500, 0x8202c0ff, 0x1b00c401, 0x35002800, 0xb4004200, 0x05010000, 0x75630525, 0x27062605, 0x31053125, + 0x06005206, 0x36312524, 0x8e630717, 0x280c8c0b, 0x36373605, 0x06171617, 0x232e8307, 0x27172707, 0x180da246, 0x2808354d, 0x33333637, 0x37173231, + 0x842f8231, 0x17162109, 0x4a056f4a, 0x272008d3, 0x6806ff4c, 0x3b87088d, 0x19932620, 0x31170723, 0x08738216, 0x01500120, 0x01e0fe20, 0x03040b20, + 0x0d0c0706, 0xfef0fe0c, 0x0c0c0df0, 0x04030607, 0x0f21010b, 0xbb441010, 0x19b0200b, 0x200c5c42, 0x0baf4438, 0x1b1be522, 0x33c39e18, 0x170f9f18, + 0xa0bc0128, 0x0c07a0a0, 0x97830d0c, 0x83979721, 0x249c828d, 0x0808a007, 0x20758b9c, 0x200c8b60, 0x239d8b28, 0x313131c3, 0x2bb19e18, 0x18133121, + 0x1816f79e, 0x240cb34d, 0x00520015, 0x0e3f457c, 0x07156b18, 0x23232322, 0x0a38b818, 0x0a019418, 0x19453520, 0x2326260e, 0x07223123, 0x06da7a06, + 0x3637162a, 0x15313737, 0x15351501, 0x1011a218, 0x35363122, 0x2005de58, 0x39a21807, 0x0d1b430a, 0x40101025, 0x42585858, 0x782205ac, 0x0885c801, + 0x1da8fe39, 0x0c0d0c07, 0x0703030b, 0x16160d3a, 0x151a1e19, 0x073a0d16, 0x820b0303, 0x1d072415, 0x44195801, 0x50200555, 0x0e40a718, 0xe3443d82, + 0xa0fe220d, 0x46008260, 0xbf220ba4, 0x55820c2f, 0x0d0c072b, 0x0d15610c, 0x150d0c0c, 0x200a8261, 0x275a8207, 0x01bf2f0c, 0xf3f3f380, 0x116fa518, + 0x9485f320, 0x5005bb44, 0xc0230527, 0x41000c00, 0x27215a4b, 0x06e25617, 0x4c460620, 0x0faf4408, 0x36373225, 0x41273435, 0xdf22424b, 0x46415050, + 0x06604112, 0x203c4d41, 0x01971847, 0x0645410c, 0x31075f41, 0xff030000, 0x01bcfffd, 0x00c001c0, 0x0056000c, 0xca180063, 0x13230d1d, 0x44073707, + 0x26270553, 0x26312337, 0x18313527, 0x23093946, 0x31171514, 0x26058f44, 0x31272706, 0x82302722, 0x2726251f, 0x37343726, 0x820d5d44, 0x06152323, + 0x62562707, 0x4de0200b, 0xd52e0b33, 0x0e3f3f3f, 0x0d101313, 0x01070304, 0x2642283c, 0x66290805, 0x09060612, 0x1212120a, 0x080201a0, 0x05020705, + 0x1443020a, 0x4c24201f, 0x151f1e23, 0x04020333, 0x01750a01, 0x15161615, 0x18058601, 0x2f0ce6d1, 0x4f4f81fe, 0x0202104f, 0x100f0c0c, 0x252d0a0f, + 0x23053a42, 0x32020130, 0x23085282, 0x06061213, 0x05015009, 0x130a0806, 0x65010212, 0x1011111e, 0x05471c10, 0x110a0a05, 0x0d19330d, 0x190d0c0c, + 0x00200585, 0x032e0082, 0xc0ff0200, 0xc0018202, 0x4a000c00, 0x1d4e8000, 0xcb6e180e, 0x14a4431f, 0x3f473120, 0x48012007, 0x005405c5, 0x5e16200b, + 0x36240e5f, 0x37312727, 0x4a540182, 0x01272209, 0x0be446e0, 0x07be6e18, 0x411caa43, 0xfe210553, 0x17595ee7, 0x0a09082e, 0x19320501, 0x06052838, + 0x1d4c0b07, 0x200e6f42, 0x41008380, 0xdf200542, 0x2019b743, 0x212185df, 0xe65dce01, 0x04073e15, 0x084f0b05, 0x09452629, 0x17030809, 0x0003004a, + 0x01c0ff1e, 0x00c601a0, 0x0047000c, 0x0f174c63, 0x17271722, 0x2109404a, 0xea442726, 0x08454112, 0x250d9348, 0x37361735, 0x5c721716, 0x18262007, + 0x2008817b, 0x22178216, 0x47100135, 0x08310ba3, 0x092f2f2f, 0x0a0b0d0d, 0x4a080101, 0x19242d1d, 0x05de4416, 0x0d0b0c25, 0x481d070c, 0x58220c63, + 0x12190701, 0x10260a7a, 0x1602010f, 0xe8490216, 0x39bb240d, 0x820b3939, 0x27518249, 0x0122590a, 0x61160d0c, 0x07244783, 0x300b0303, 0x48061b41, + 0xf52c0743, 0x0101078d, 0x02167007, 0x18701602, 0x2105af52, 0x0d830818, 0x0000082f, 0xff1e0002, 0x018002c0, 0x000c00c0, 0x1623466c, 0x20097f49, + 0xf1481833, 0x31232108, 0x83050741, 0x31232107, 0xaa70ff83, 0x37362505, 0x27263135, 0x25058e73, 0x31150706, 0x34462323, 0x08494110, 0x410ec744, + 0x38210501, 0x05d84150, 0x18c01021, 0x510a45bc, 0x4d21088a, 0x13354142, 0x6e194042, 0x4023072c, 0x523020c0, 0xe020073f, 0x50200887, 0x21063441, + 0x34410608, 0x0000330a, 0xfeff0400, 0x4002c0ff, 0x0c00c601, 0x60004500, 0x0b507300, 0x1813200e, 0x481a9270, 0x162505ef, 0x06311717, 0x09c14807, + 0x26272227, 0x23313535, 0x2c087c17, 0x3c427020, 0x06a7440b, 0x0c071d25, 0x470c0b0d, 0x2d240c21, 0x02030c18, 0x20073e42, 0x13977a88, 0x420e0e7c, + 0xfe220d47, 0x274280d0, 0x30df2207, 0x0525470b, 0x16610b2d, 0x0d0c0c0d, 0x231b4a16, 0x422f0403, 0x4618074d, 0x1e7c15a6, 0x05634a0e, 0x22093b41, + 0x41760069, 0x2520473d, 0x412f207c, 0x01213340, 0x13047d18, 0x0fbc4618, 0x20374241, 0x139e4180, 0x4214367c, 0x6d200f83, 0x42474541, 0x66181a83, + 0x3c410cda, 0x147d4233, 0x0bef6618, 0x420caa4e, 0x0f203e79, 0x43066e6e, 0x802011af, 0x42472b41, 0x17201a71, 0x1e3ac218, 0x42333e41, 0xc218157b, + 0x49411550, 0x14804236, 0x176bc218, 0x2011cb43, 0x62594195, 0x347e6818, 0x18496e41, 0x41239468, 0xfd434b7c, 0xaf681808, 0x0e9b4626, 0x1864eb42, + 0x180de993, 0x210e4d40, 0x7c413731, 0xb8f51849, 0x4b724119, 0xbc186b20, 0x2521153e, 0x0a7f4b25, 0x0c00c626, 0x90005a00, 0x230e274a, 0x33233303, + 0x210b934d, 0x0d8d3133, 0x36373224, 0x384f2727, 0x31072622, 0x33161706, 0x348f4b03, 0x544a0220, 0x128a230c, 0x3a4a1212, 0x0812260c, 0x26020405, + 0x07494f22, 0x19103539, 0x1e0c1e19, 0x35101919, 0x0c030307, 0x070c0d0b, 0x04022622, 0x4bc70805, 0x37211e9c, 0x069c4b27, 0x200d7941, 0x11d718b0, + 0x0760250e, 0x38730806, 0x27075d4f, 0x0e0f1959, 0x59190f0e, 0x25075d4f, 0x06087338, 0x89690107, 0x0fa24b16, 0xff030032, 0x02defffe, 0x00a00142, + 0x00400033, 0x13000079, 0x09c95018, 0x14311528, 0x07171617, 0xa0181631, 0x6a5508e9, 0x05f65305, 0x085edc18, 0x83352721, 0xa1a8181f, 0x26072108, + 0x3624b618, 0x5341c020, 0x10113105, 0x0b0c151d, 0x14111a21, 0x15131114, 0x69101011, 0x27072a55, 0x263d3f69, 0x80011617, 0x200bff63, 0x7e48180d, + 0x53012031, 0x203106e6, 0x1b232429, 0x02010392, 0x0d0b0b13, 0x04026105, 0x071c5618, 0x140e1828, 0x28201f0c, 0x12598020, 0x0cc6230b, 0xb718190c, + 0x002f2ec4, 0x00020000, 0x01beff3a, 0x00c001e1, 0x1857004a, 0x21083d43, 0xa65a3115, 0x31172105, 0x0f4e7b18, 0x17232324, 0x8f4f1631, 0x31272306, + 0x29841506, 0xcb4a2320, 0x37362105, 0x35260184, 0x37343135, 0x1b543336, 0x20012f0c, 0x1409090e, 0x57392113, 0x072c0e18, 0xd1820201, 0x26090c2f, + 0x075c0160, 0x0b0c0203, 0xa0080c0d, 0x055d4105, 0x1b1a0126, 0x10101c2e, 0xb5180c82, 0xc0200d5d, 0x0a291182, 0x16232329, 0x12015001, 0x9fd6183a, + 0x8f332107, 0x08200982, 0xf8234383, 0x4c4a0f0e, 0x4a290524, 0x13282831, 0x1e17180b, 0x560f820a, 0x4b4f0c85, 0xff002405, 0x827d02be, 0x004924ef, + 0x82950056, 0x0c4f42f1, 0xa05bd983, 0x16172505, 0x36373233, 0x4858cb84, 0x8b33200c, 0x2726280d, 0x31273123, 0x83363131, 0x0cc16629, 0x2009255a, + 0x181d8337, 0x6d0d7d81, 0x302b10d2, 0x33311631, 0x17173231, 0x83310731, 0x0137215f, 0x26066c7e, 0x2e1c1010, 0x41011a1b, 0x052e051b, 0x0d0c08a0, + 0x03020c0b, 0x50015c07, 0x0b820926, 0x01020b2b, 0x180e2c07, 0x14213947, 0xe9b61813, 0x70012f0c, 0x083b3b3b, 0x05010a09, 0x01030a4f, 0xb8434108, + 0x0ddf4306, 0x1f130129, 0x24011217, 0x18270303, 0x28078940, 0x18171e0a, 0x2728130b, 0x074b4132, 0xf80e0f22, 0x77836f83, 0x83338f21, 0x2975836d, + 0x5001123a, 0x29232317, 0x0550300a, 0x36ce2f0b, 0x04073636, 0x0c4f0b05, 0x060a0a03, 0x644f462d, 0x0b894f05, 0x03150128, 0x04043111, 0x00820024, + 0xfeff032e, 0x4201c0ff, 0x0c00c001, 0x5e003200, 0x240ff351, 0x33351535, 0x080f5631, 0x27060722, 0x240f374d, 0x31303130, 0x05af6627, 0x0a821120, + 0x42313021, 0x7e180b88, 0xa0201270, 0x260cb050, 0x16151a07, 0x54063b0d, 0x5e410746, 0x106e2305, 0x334d1918, 0x09304506, 0x030c0b27, 0x01350703, + 0x0b774dc0, 0xe0a0fe24, 0x274ee0e0, 0xaa802713, 0x010e0e19, 0x0f4500ff, 0x06072407, 0x4d397308, 0x5a22073f, 0xf3820600, 0x4002be22, 0x4828f384, + 0x7d005500, 0x96008a00, 0x230e5f4f, 0x37073707, 0x530d3f46, 0xd25a0eef, 0x11915008, 0x0c20b918, 0x86550720, 0x0e9d5505, 0x09fe0719, 0x20079650, + 0x01a51803, 0x06312708, 0x07260707, 0x23821706, 0x27363722, 0x220d5154, 0x501d1d85, 0xb5500d8d, 0xa5012119, 0x260b2b41, 0x100c2910, 0x5a300810, + 0x1c340720, 0x1c1b1337, 0x01011213, 0x1818100f, 0xb0010f10, 0x0f380f01, 0x04830d82, 0x06080d26, 0x070e300d, 0xbb4f0482, 0x30d1220d, 0x10bd5030, + 0x2017e650, 0x0be64141, 0x3b3b682d, 0x020b2a3b, 0x0c600f03, 0x83070c0c, 0x37382782, 0x13120113, 0x7a83661c, 0x01218283, 0x07314c28, 0x06322308, + 0x18070e0d, 0x080d0d06, 0x00050018, 0x02c0ff20, 0x00bf0123, 0x001e000d, 0x00480032, 0x13000059, 0x29410706, 0x31352405, 0x82072726, 0x4631200b, + 0x37260577, 0x31232734, 0x385e1506, 0x31332e0a, 0x31373115, 0x17232326, 0x33073707, 0x0f345731, 0x0f1a7a18, 0xf7233508, 0x17020215, 0x02010f97, + 0x0107980f, 0x22221716, 0x02011617, 0x11a8029c, 0x0b0c0c0b, 0x14a39811, 0xabb26916, 0x36a9abab, 0x0e100f09, 0x0804040f, 0xc21b114d, 0x2d06286e, + 0x04b201c0, 0x01021715, 0x010f1f0f, 0x3983620d, 0x08204183, 0x70200082, 0x41823b82, 0x07a25923, 0x213c8215, 0x38825a2e, 0x40830920, 0x111d8126, + 0x202020cb, 0x20052b45, 0x24eb8220, 0x01c0ff1d, 0x20eb82e3, 0x24eb820e, 0x006e0052, 0x22eb8277, 0x82373736, 0x07a963dd, 0x23331725, 0x19151633, + 0x2009b547, 0x05db5913, 0x31301524, 0xdb503127, 0x21ee8205, 0x385d3637, 0x44072005, 0x162005c1, 0x16200782, 0x2b461182, 0x23072207, 0x06254633, + 0x55310721, 0x372807cd, 0x13373631, 0x27230631, 0x24074a6f, 0x981502a0, 0x27cc820f, 0x12021797, 0x029c9c9c, 0x08080d41, 0x3636e420, 0x1c19ae36, + 0x5f161832, 0x0e08060c, 0x060c0e0e, 0x040b0238, 0x03240703, 0x04094c02, 0x00820f04, 0x50560921, 0x264105b4, 0x4c092707, 0x05b5160e, 0x78181806, + 0x992d08be, 0x010d0415, 0x010f1f0f, 0x08391702, 0x092b4108, 0x5a94fe2d, 0x026e5a5a, 0x080bf902, 0x820d09a4, 0x0808305f, 0x0701600e, 0x400b0d0c, + 0x0e810504, 0x83090f10, 0x09342461, 0x416e0e09, 0x18240945, 0x02fdfe10, 0x3a08376f, 0x00080000, 0x02bcff00, 0x00c00100, 0x001d000d, 0x003b002d, + 0x00620048, 0x429b007e, 0x23250d39, 0x33231707, 0x66811823, 0x27342109, 0x250a0e42, 0x06312733, 0xbe181707, 0x222309f7, 0x5c371707, 0x7c1814c2, + 0x262f0bc1, 0x23272627, 0x34353603, 0x26312727, 0x18070607, 0x2007c840, 0x05805333, 0x37373723, 0x05d14314, 0x31353726, 0x37363133, 0x31222d82, + 0x35823135, 0x31070734, 0x0e471506, 0x6f100101, 0x1002010f, 0x7b7b776f, 0xac18037b, 0x9e200891, 0x8027ee82, 0x14900203, 0x8302be01, 0x06402414, + 0x48a28905, 0x20200bd8, 0x2306cb5c, 0x09090e80, 0x88332084, 0x0c400808, 0x58010d0e, 0x16020216, 0x0e0d0158, 0x9048400c, 0x01082e11, 0x100e02b3, + 0x0e0f0101, 0x09410d10, 0x83438309, 0x0909223c, 0x059342b2, 0x1d126f25, 0x8406052b, 0x6a01225b, 0x0bde488b, 0x27832020, 0x8307b642, 0xfefe3637, + 0x070b0b07, 0x07060a38, 0x1602200f, 0x0f200216, 0x380a0607, 0x21128412, 0x128a1006, 0x000b0739, 0xff060000, 0x02b9fff9, 0x00c70107, 0x0049000c, + 0x00620056, 0x4e7d006f, 0xfd4834b9, 0x0c724609, 0x0cc34318, 0xe8692120, 0x27062505, 0x01373726, 0x31200382, 0x21220f87, 0x13821727, 0x18433620, + 0xd0272105, 0x5a16cd53, 0xa8460eef, 0xf110260f, 0x0e501111, 0x2604840e, 0x1111d001, 0x84500e0e, 0x30fe2104, 0x11250987, 0x50d00111, 0x82238750, + 0x0db04b0d, 0x570ade53, 0x8022204c, 0x55895901, 0x79827486, 0x7e85fe20, 0x69828384, 0x00208488, 0x03390082, 0xc0ff0d00, 0xcb012002, 0x26001900, + 0x00006c00, 0x11173201, 0x35312331, 0x0dfb4331, 0x33333623, 0x0b335e27, 0x34572520, 0x31152205, 0x682a8237, 0x0720093c, 0x4406df6a, 0x1723058e, + 0x5a071631, 0x23210506, 0x05764a31, 0x36373423, 0x05706b33, 0x82272621, 0x09012435, 0x44c02027, 0x13250904, 0x32251f1e, 0x0bf46669, 0x0f20012f, + 0x10010f01, 0x0f100f01, 0x350a0101, 0x25058230, 0x02172c0f, 0x14823c11, 0x21051645, 0x13830f01, 0x00011026, 0xaed4fe14, 0x2309f343, 0x70121120, + 0x280b355a, 0x740f0150, 0x056d1309, 0x242d8338, 0x11040b55, 0x2953841b, 0x0102125c, 0x0909600f, 0x4d82900e, 0x09132023, 0x414e8364, 0x002c0517, + 0x0002c0ff, 0x2500c401, 0x60003200, 0x07735718, 0xdb600720, 0x82112009, 0x311721fa, 0x26220f8b, 0xd3602727, 0x07ed590c, 0x18171621, 0x2107e5ac, + 0x8a182736, 0x07270bfe, 0x16170631, 0x58313737, 0x0125057d, 0xe0101010, 0x063e4a0f, 0xc04cc020, 0x0f012206, 0x0c0b5fe0, 0x02100826, 0x1b021616, + 0x09afbd18, 0x14151829, 0x1309260c, 0x831b0c14, 0xbc012618, 0x0a800808, 0xedbb1812, 0x6e2d2408, 0x41d3fe6e, 0x40240627, 0xcc800a12, 0x220bb95e, + 0x8258e8fe, 0x02162c00, 0x31ae1602, 0x140c0913, 0x180c1547, 0x200953bd, 0x221783ae, 0x63000000, 0x5f5805c7, 0x00562405, 0x49ac006e, 0x34250f03, + 0x32313133, 0x338b6337, 0x1720fe84, 0x2205895e, 0x63373736, 0x05211788, 0x45618416, 0x33250535, 0x36373631, 0x48e91837, 0x6016200f, 0x072305ca, + 0x5e373123, 0x06240abc, 0x17171415, 0x0c11c218, 0x9b635420, 0x160c211f, 0x22079b63, 0x18021333, 0x24076345, 0x081a0903, 0x1196631e, 0xcd5e5b20, + 0x131a2905, 0x022d2d44, 0x442d2d02, 0x20060a4e, 0x2bad1880, 0x5e132007, 0x25490a94, 0x0169260d, 0x1b214001, 0x209b634d, 0x08351722, 0x07b34518, + 0x0c1a0824, 0x99638703, 0x64772010, 0x19200529, 0x86837e83, 0x23051c4b, 0x291b1b01, 0x6f5f8483, 0x12cb410c, 0xcb419820, 0x26252c70, 0x22313123, + 0x14150607, 0x18311717, 0x650b6bd2, 0x35230c81, 0x41272734, 0xc92059b7, 0x2006b741, 0x05174393, 0xa5419320, 0x41b72061, 0x9d4106a5, 0x0d954105, + 0x00000824, 0xbf5bbeff, 0x00562c06, 0x0098006e, 0x00b100a5, 0x41ca00be, 0x27229a9b, 0x305d0706, 0x06485709, 0x36171625, 0x97073537, 0x74cd4118, + 0x4d4a9f20, 0x18182007, 0x8810738e, 0x56974311, 0x201af141, 0x09427599, 0xa0839820, 0x04841020, 0x1602a822, 0x16220885, 0x10837802, 0x04843020, + 0x0000002a, 0xff220004, 0x012302be, 0x22056f61, 0x608d006e, 0x07200e51, 0x19607f45, 0x2009d60b, 0x05b14507, 0x45311721, 0x312308b3, 0x51012736, + 0x61450cfb, 0x13312113, 0x450afd68, 0x3e382a61, 0x3620090d, 0x070c0d0c, 0x03030640, 0x0c0c370c, 0x0240070d, 0x0c062c01, 0x2456b441, 0x370c063e, + 0x2e6a831f, 0x0c0c0c6f, 0x04072007, 0x046f0b03, 0x190d4c04, 0x5f087b09, 0x36240567, 0x64005100, 0x1808fd68, 0x22088d51, 0x88313737, 0x3217330b, + 0x17313733, 0x36333231, 0x26272637, 0x36373435, 0xc84b2737, 0x18272005, 0x221bfe5d, 0x18070716, 0x260788e1, 0x37311717, 0x7d173631, 0xb8210522, + 0x14371908, 0x111d2b0e, 0x23151511, 0x1211014d, 0x115a011c, 0xcc6e1814, 0xc0012e0e, 0x1d1f1f03, 0x09056954, 0x31031242, 0xecfa1847, 0x19083008, + 0x2e292322, 0x2c192526, 0x1f1f1d54, 0x5d90fe03, 0x6e18133b, 0x9b6610ce, 0x0036260a, 0x005a0051, 0x380d4167, 0x1a2aa418, 0x16c26418, 0x121b0024, + 0x10410112, 0x7683181b, 0x10ff5d14, 0x20261041, 0x13ef5d00, 0x14c46418, 0x00000323, 0x091f42ff, 0x11417320, 0xbe641853, 0x351d4122, 0x1ab86418, + 0x41273942, 0x64181428, 0x2f411bc0, 0x003f2409, 0x18740050, 0x2310fbfd, 0x31151506, 0x20076777, 0x830b8216, 0xfbfd180d, 0x06e97715, 0x34c3b118, + 0x01c02a08, 0x1c1b1212, 0x66011112, 0x40041c06, 0x0d01063a, 0x6e6e0202, 0x010d0202, 0x11ac3a06, 0x01b80803, 0x09090e50, 0x0e090940, 0xbe5e1850, + 0x4bfe1814, 0x54210809, 0x1913113a, 0x47132211, 0x1808052b, 0x20010d12, 0x2a0d0120, 0x472b0508, 0x42120331, 0x54690509, 0xbc5e1892, 0x000a3c21, + 0x01e0ff00, 0x00a001fe, 0x00200012, 0x003b002e, 0x005e004b, 0x00810070, 0x7cb60093, 0x2c780871, 0x27262505, 0x37363135, 0x8d0d677c, 0x13757c0d, + 0x37203b88, 0x8805787c, 0x224b820f, 0x52351517, 0x59830637, 0x21823620, 0x17162722, 0x06212083, 0x826c8507, 0x2a22906e, 0x31372607, 0x21333631, + 0x18173231, 0x200bc1ee, 0x06ee4d21, 0x26272623, 0x725a7c27, 0x02fc2108, 0x010c0707, 0x07070cc8, 0x19190601, 0x0e090925, 0x090e00ff, 0x19192509, + 0x01a00105, 0x10221716, 0x8205147c, 0x7c202006, 0xb8201939, 0x32842488, 0x388d1020, 0x1010a022, 0x8706267c, 0x0f012106, 0x1e82108b, 0x9c221f8d, + 0x0082080c, 0x1a260c25, 0x4a02071b, 0x0225057a, 0x261a1b07, 0x4b6c1800, 0x00c02b09, 0x00210010, 0x0068004d, 0xcf180085, 0x152107d3, 0x9b611831, + 0x18332007, 0x420fa4b4, 0x142906f1, 0x15331617, 0x16171631, 0x0b7d5617, 0x74373621, 0xcb6b05d6, 0x01212105, 0x195b4118, 0x1c637618, 0xfe426020, + 0x86c02006, 0x00ff2107, 0x0219ba85, 0x132d09db, 0x23010310, 0x09013823, 0xc0fe0e09, 0x14414601, 0x166c7618, 0x82c00121, 0x5c602033, 0xa0200b8f, + 0x5f821082, 0x2b3b2025, 0x85430c2b, 0x04432a68, 0x3d111008, 0x04112d2e, 0x20108203, 0x556a18fe, 0x7a761814, 0x00052713, 0x02c0ff00, 0x53410140, + 0x417b2009, 0x6c184f53, 0x49412d91, 0x1802202e, 0x47141862, 0x414110d7, 0x47d02030, 0x5b7d25e2, 0x0b3f4106, 0x7e007122, 0x424f4141, 0xfe471a95, + 0x2e444115, 0x48158e42, 0x4541110c, 0x15874230, 0x43141848, 0x752014df, 0x424f4941, 0x77181a8b, 0x40410c13, 0x1585422e, 0x18014021, 0x4309018d, + 0x814231c3, 0x080c6614, 0x1811b743, 0x450939be, 0x1520620b, 0x1f4b7718, 0x422e4041, 0x77181581, 0x0e451454, 0x62771848, 0x41002017, 0x77187e5b, + 0x5b412087, 0x1ccc4a44, 0x4a46e843, 0x00201bd8, 0x09e77118, 0x2800c02b, 0x5c004200, 0x00007600, 0x081c7201, 0x06310723, 0xa3321907, 0x27352210, + 0x05187731, 0x9b5c2720, 0x05ca4706, 0xe9183320, 0x23200abd, 0x05201999, 0x18f84a18, 0x62012108, 0x03181818, 0x18040607, 0x02020734, 0x01092605, + 0x2f070505, 0x0505072f, 0x03052609, 0x62340702, 0x54056547, 0xe02007ba, 0x01210e8d, 0x06ba5ca0, 0x20080686, 0x30308a01, 0x30060630, 0x07060108, + 0x07352505, 0x19030404, 0x04040318, 0x05253407, 0x08010706, 0x886218ca, 0x214b180d, 0xca4a180e, 0x82002010, 0x7b052000, 0xa02806f3, 0x29001c00, + 0x43003600, 0x13d70c19, 0x31353525, 0x74233137, 0x0521068d, 0x10281923, 0x3307240a, 0x84373323, 0x3107291c, 0x37072707, 0x33310707, 0x2d820e82, + 0xea650520, 0x7211200c, 0x07200a88, 0x8206995a, 0x555521eb, 0x012ab182, 0x4a4a4a75, 0x064a5b05, 0x08852a5a, 0xa05b0526, 0x5a060606, 0x4a231082, + 0x84552001, 0x05174123, 0x55220582, 0x5b18a001, 0xb6210a27, 0x254b83aa, 0x0bb50b40, 0x0485c0b5, 0x06840b20, 0x0ecfbd18, 0x47aa3621, 0x803e064f, + 0x1900c001, 0x32002600, 0x73003f00, 0x00007c00, 0x21212101, 0x15161732, 0x07143111, 0x364b2306, 0x22ab8205, 0x18333637, 0x530ca3ad, 0x03200b64, + 0x200b6453, 0x243f8205, 0x31233115, 0x4bf68215, 0xe85a05ab, 0x076f5905, 0x26272624, 0x1b823527, 0x07ff5c18, 0x59833420, 0x23332322, 0x35272f83, + 0x00016001, 0x490100ff, 0xda4906d2, 0x53802007, 0xfe211936, 0x28308540, 0x1b292828, 0x0909011b, 0x25fd830e, 0x291b1b01, 0x20412848, 0x50a82105, + 0x01210082, 0x201982c0, 0x06e67cfe, 0x82c00121, 0x02c82319, 0x55834016, 0xb8200482, 0x11820786, 0x89580121, 0x40382316, 0xbe186040, 0x60210fe8, + 0x050e4a40, 0x40404036, 0x00030000, 0x02c0ff20, 0x00a00180, 0x00640049, 0x13000077, 0x830cdf41, 0x058262e3, 0x22232625, 0x74070607, 0x17280c78, + 0x37323316, 0x17141506, 0x2f057156, 0x31233115, 0x27262726, 0x31133734, 0x33363736, 0x1bafba18, 0x11de6b18, 0x4b4bd523, 0x2b97854b, 0x1010154b, + 0x11112b07, 0x1826252d, 0x2408ac76, 0x01070403, 0x2bf28201, 0x0f0f18c9, 0x07760301, 0x8b141110, 0x6f134450, 0xa0200fd3, 0x28062f41, 0x140b0c40, + 0x14140378, 0x06217f23, 0x01241683, 0x08081918, 0x40236182, 0x820f0f01, 0x4c012569, 0xfe0c0b14, 0x14d66918, 0x11ec6b18, 0x37410420, 0x006d220c, + 0x4b39417a, 0x1a0e2019, 0x1808056c, 0x410c6096, 0x0121313c, 0x13b04a1b, 0x4110c249, 0xc0202f3e, 0x6b139341, 0xc02008ca, 0x0a889618, 0x7b420020, + 0x4185200f, 0x6c186641, 0x4c412006, 0x0b6c1847, 0x4101201a, 0x6c184457, 0x9f421b13, 0x003c2909, 0x00630052, 0x01000087, 0x2205d17a, 0x61310307, + 0x332e057b, 0x34313531, 0x32333637, 0x15151617, 0x0d823331, 0x35373627, 0x36373631, 0x074c5d37, 0x200adc5f, 0x0cdb7317, 0x60183687, 0x012f348a, + 0x4b4b4b20, 0x07101015, 0x0f010376, 0x43c9180f, 0x202b05e3, 0x1c011e02, 0x071f2c1d, 0x44151010, 0xa7440608, 0x201f8506, 0x986018b0, 0xa0012c1c, + 0xfe140b0c, 0x180909b4, 0x43010f0f, 0x802b07f2, 0x2d191225, 0x56041f1f, 0x870c0b14, 0x18c02013, 0x200ff751, 0x083f5210, 0x1aa96018, 0x02000023, + 0x27008200, 0x5e018002, 0x3d002700, 0x27075553, 0x35311717, 0x36373631, 0x16270792, 0x23070607, 0x46033521, 0x85460687, 0x37342909, 0x01403336, + 0x63070b0a, 0x822c048d, 0x1408090a, 0x2040fe44, 0xc0fd4002, 0x09cc4218, 0x2705ff45, 0x030c4b01, 0x8b940a04, 0xc227058f, 0x01101011, 0x18f5feeb, + 0x180d217c, 0x24098f54, 0x0046003d, 0x07574383, 0x87311521, 0x23232401, 0x18362726, 0x210ef14a, 0x13983123, 0x1125c382, 0x11312131, 0x18d28205, + 0x1816674b, 0x20107b4b, 0x368c1823, 0x31353009, 0x17163333, 0x38202018, 0x02162018, 0x77081602, 0x05900563, 0xa0015824, 0x038360fe, 0x99100221, + 0x18202124, 0x012c4483, 0x50581880, 0x02185850, 0x28021616, 0x20200483, 0x0e840488, 0x8280fe21, 0x871a9521, 0x00002438, 0x60000300, 0xc026058b, + 0x3c001000, 0x27415d00, 0x052f4a05, 0x4d4a2320, 0x23172505, 0x07062333, 0x09435b18, 0x83070621, 0x18162001, 0x22079049, 0x83272637, 0x05717b01, + 0x27170729, 0x06071617, 0x7f312727, 0x272407a9, 0x36372631, 0x31067158, 0xc0070716, 0x2f808080, 0x0a040405, 0x04040ac4, 0x0d822f05, 0x06802a08, + 0x292a1e07, 0x01022020, 0x01291b1b, 0x1b1b2940, 0x20200201, 0x021e2a29, 0x1e040403, 0x0e2f2f2f, 0x2f11110e, 0x0e11112f, 0x340b8c0e, 0x09476001, + 0x01010708, 0x47090807, 0x12040420, 0x38372322, 0x071e5f52, 0x3738522a, 0x01122223, 0xd0020302, 0x3b904182, 0x37495385, 0x00c53308, 0x00550043, + 0x007a0067, 0x00a70095, 0x07260100, 0xfc843107, 0x31110722, 0xfd83e785, 0xe7422320, 0x31372805, 0x36313331, 0x18230637, 0x290b5162, 0x37360714, + 0x17161732, 0x3e603135, 0x55272005, 0x4a18052e, 0x308208e2, 0x4b181520, 0xb0181017, 0x8c650a29, 0x1a6a4f07, 0x3a642720, 0x08514107, 0x12520125, + 0x18768812, 0x32082dd2, 0x12014010, 0x06011b12, 0x25181324, 0x01011919, 0x83251919, 0x2c0f2d07, 0x26252d3b, 0x0e0d0118, 0xf2887614, 0x0bf04a18, + 0xe0200b8b, 0x08a54a18, 0x0f011022, 0x15b87e18, 0x0b0b6324, 0xf0180a0a, 0x012409ee, 0x5b0a0abb, 0xfe215583, 0x278283c0, 0x12121b60, 0x0b293a01, + 0x07837687, 0x20151c27, 0x23141401, 0x211f837b, 0x7019bb5b, 0x802009a2, 0xc0230a89, 0x4f200f01, 0x1022059f, 0x5e59010f, 0x0a2b2314, 0xf0180b0a, + 0x00200afc, 0x07270082, 0xc0ff0000, 0x41018002, 0x9e220bb7, 0xb941ab00, 0x316d5a7c, 0x4957bd41, 0xd44814bc, 0x51bd4110, 0x2d5cfe20, 0x17b75214, + 0xc3410620, 0x41b62012, 0x372097c1, 0x431fd644, 0xcc41588a, 0x1b544914, 0x4967d741, 0xdb411b77, 0x01402e05, 0x003d00c0, 0x005a004a, 0x007c006c, + 0x376c188c, 0x3117230d, 0x56583133, 0x07062305, 0xc8180706, 0x35281350, 0x36373631, 0x37313337, 0x2006a149, 0xb4411817, 0x4e25200b, 0xaf1805a7, + 0x05200860, 0x104ac818, 0x218e0520, 0x0f8e2120, 0x7020012b, 0x010f7070, 0x594f0f01, 0x077d6a66, 0x6d18b020, 0x2f1907ec, 0x6625086e, 0x0e09095a, + 0x0b9d6930, 0x4500ff21, 0x20220829, 0x4f187001, 0xfe2109f1, 0x20178a90, 0x2b0b8a80, 0x400f01c0, 0x0140010f, 0xe01b1212, 0x70206883, 0x2007b045, + 0x25128870, 0x090e4040, 0xb16ef009, 0x4510200b, 0x10200921, 0x0bbbb818, 0x4c827082, 0x09841c89, 0x0f450020, 0x00373109, 0x005b0049, 0x007c0068, + 0x00b1008d, 0x17360100, 0x18096841, 0x2e097f40, 0x31230706, 0x07063131, 0x31150706, 0x82303133, 0x31212101, 0x11201d83, 0x18077241, 0x201185ee, + 0x10604115, 0x180c916c, 0x5b0b278c, 0x162105d0, 0x53741817, 0x007c1808, 0x462e202c, 0x203008d3, 0x1f30301f, 0x021e0120, 0x12121b40, 0xf0fe4001, + 0x22073841, 0x41de8876, 0x09890977, 0x1a32f026, 0x321a1818, 0x10210585, 0x08824110, 0xc0010f22, 0x431d675d, 0x80200732, 0x01206e83, 0x192d7682, + 0x12012512, 0x01601b12, 0x01140e0d, 0x21768340, 0x8541cb5b, 0x8b80200b, 0x0248260c, 0x2a2c2c2a, 0x25058502, 0x10101078, 0x7a880f01, 0x975d6020, + 0x00042e21, 0x01c0ff00, 0x00c00180, 0x002b001d, 0x23811939, 0x4233200a, 0x332f06f8, 0x26311131, 0x21272627, 0x06070631, 0x18131107, 0x200cacad, + 0x270d8c17, 0x23332313, 0x00373115, 0xa020bd83, 0x5f187b82, 0xab270a18, 0x0b606060, 0x850a0a0b, 0xa0a02204, 0x840c83a0, 0x80752104, 0x00280082, + 0x0112121b, 0x09090e80, 0x0a675f18, 0x75018022, 0x0a243482, 0x600b0b0a, 0x20200483, 0x07833482, 0x0483a020, 0x80ebfe2b, 0x00040080, 0x01bdff0f, + 0x27bb84f1, 0x0048003f, 0x01000051, 0x8205b678, 0x061523a9, 0x43181617, 0x37230737, 0x82342736, 0x072723c1, 0xdd743736, 0x33162105, 0x37240782, + 0x33363137, 0x0e895319, 0x084d5f18, 0xb4183720, 0x0d220858, 0x57190706, 0x6d301740, 0x05010901, 0x08052803, 0x28050830, 0x010a0503, 0x20079d68, + 0x05534838, 0x600f0122, 0x82058d41, 0x1857190e, 0x09972b1a, 0x06360401, 0x01043606, 0x414a7609, 0x86762107, 0x10203987, 0xef8c4b87, 0x59004524, + 0xef9f6200, 0x33160328, 0x37363736, 0x3d773135, 0x49551805, 0x05424c07, 0x2207062f, 0x26312727, 0x37373435, 0x33233327, 0x0cb97415, 0x17373622, + 0x2b230041, 0x1b08076c, 0x2c011212, 0x40070914, 0x3505515e, 0x030c0130, 0x020b6302, 0x2828010f, 0x0e090930, 0x0109090e, 0x0541800f, 0xe5fe2123, + 0x3405e06f, 0x010e1101, 0x1722200f, 0x0c330116, 0x052a0101, 0x1e04040c, 0x0728727e, 0x010f3022, 0x4e850282, 0x41020021, 0x3a200aff, 0x201f0b41, + 0x05a47507, 0x0b4c3220, 0x16332505, 0x14171617, 0x21079364, 0xe4410127, 0x017d361a, 0x191a1111, 0x13070713, 0x11111a19, 0x0b531201, 0x0111530b, + 0x1acf4101, 0x2784da20, 0x12070722, 0x52263985, 0x13520a0a, 0x3b570019, 0x01e02c05, 0x00a001c0, 0x00360019, 0x62620056, 0x9b190819, 0x235512a5, + 0x0594660a, 0x7f313521, 0x272605d6, 0x17072631, 0xa6183515, 0x4c7108eb, 0x22098709, 0x85330706, 0x17162b2a, 0x00353736, 0x1b121201, 0x62184001, + 0xc02008be, 0x4c290983, 0x0f01010b, 0x0742010f, 0x2008880b, 0x07911894, 0x0f302109, 0x40231d82, 0x41a0010f, 0x602008b7, 0x52853e8d, 0x0c034123, + 0x2a2983a0, 0x020a6e66, 0x0ea00c04, 0x820e0202, 0x0f03250a, 0x60404040, 0x50201783, 0x20203e83, 0x0f204388, 0xa0202c84, 0x4105f34d, 0x26280707, + 0x00004e00, 0x31070613, 0x08e7c918, 0x18312121, 0x180d1fc4, 0x8209cb4d, 0x823120cd, 0x1716221c, 0x06bb6116, 0xe84d2220, 0x06072705, 0x26272627, + 0x06503737, 0x8beb8807, 0x695018f5, 0x2399820c, 0x10181810, 0x1228a482, 0x131b1c13, 0x0c071c37, 0x04280082, 0x07310504, 0x290c1010, 0x1222f882, + 0xb3181b12, 0x70200f21, 0x840cd375, 0x100f2b3d, 0x131c6618, 0x37130112, 0x3d820c38, 0x60274583, 0x0b02030f, 0x41003b2a, 0x5a240eef, 0x76006d00, + 0xd683e99c, 0x3b724f19, 0x18320721, 0x4310958e, 0x114108c3, 0x16a03814, 0x13130102, 0x0e111111, 0x07080f0e, 0x02021617, 0x08071716, 0x820e0e0f, + 0x13132412, 0x82160201, 0x87122011, 0x8308201f, 0x1616220d, 0x201f8708, 0x582d8212, 0x0923096b, 0x84580e09, 0x4125822f, 0x3e20153c, 0x3c8c1e82, + 0x5c857c8b, 0xa2207c9d, 0x200b5f51, 0x074f4c20, 0x46020021, 0x842508bf, 0x00008d00, 0x06e45c13, 0x49171621, 0x144307d7, 0x07232406, 0x6f313331, + 0x8374094b, 0x31072509, 0x31153107, 0x18050764, 0x2507b0d4, 0x33363734, 0x0d833133, 0x2007644f, 0x843b8215, 0x06715e11, 0x3627262f, 0x33373637, + 0x35312733, 0x30313431, 0x2a0d8235, 0x16173233, 0x14311417, 0x76071531, 0xdf210747, 0x07ce4541, 0x0f282829, 0x280f0101, 0x8728041c, 0x05214811, + 0x01032b24, 0x1a820f02, 0x64772720, 0x01242205, 0x2d1f8413, 0x01231616, 0x1c05110f, 0x1023100d, 0x1f821018, 0x18100f2e, 0x01016208, 0x0d0d0908, + 0x9f010809, 0x03831183, 0x05950124, 0x74460505, 0x01502107, 0x90204982, 0x64220d8c, 0x2684012b, 0x0b0c1f23, 0x20618211, 0x291c8320, 0x071a1a24, + 0x90010f5f, 0xfc78021e, 0x0b052d07, 0x080d0101, 0x0d080909, 0x450b0101, 0x4407af43, 0xf76705af, 0x00402905, 0x0060004d, 0x130000c6, 0x0e046a18, + 0x18141521, 0x290da44b, 0x37373233, 0x16311731, 0x697c3637, 0xefbd1805, 0x1523210f, 0x0bb65118, 0xf37c1720, 0xc7491809, 0x34052407, 0x55313137, + 0x0621070f, 0x20168207, 0x244c8217, 0x26353637, 0x0ec11827, 0x2326210b, 0x8f053e4a, 0x094b5521, 0x073a3419, 0x0d425718, 0x35312322, 0xa0360183, + 0x3918050a, 0x0307070a, 0x0a0a3716, 0x07031637, 0x18390a07, 0x15890a05, 0x01010923, 0x76178909, 0x87420c6f, 0x3801210b, 0x172b0d85, 0x100a0b01, + 0x0a100b0b, 0x6717010b, 0x0f24074c, 0x16172211, 0x19890e82, 0xfe212b85, 0x2c571858, 0x0168220d, 0x958294c0, 0x180a2098, 0x550c3864, 0x50850651, + 0x06851020, 0x210c3528, 0x1212120d, 0x04820909, 0x0c210d23, 0x07607835, 0x83071721, 0x8d152099, 0x8515201d, 0xa8082133, 0xa825d58b, 0x03006008, + 0x30008200, 0x80014002, 0x24001d00, 0x00003700, 0x31272601, 0x08054a31, 0x97523120, 0xe3241905, 0x37032708, 0x31233707, 0xa2180115, 0x43821148, + 0x1b121223, 0x098144fe, 0x6a826020, 0x00848020, 0x7f18fe20, 0xac450caa, 0x4aff2009, 0xa022080d, 0x2983c0fe, 0x85560120, 0x7309190c, 0x00c52808, + 0x003c0014, 0x88560043, 0x1836209d, 0x240b03e4, 0x23332707, 0x83a78333, 0x05fc4315, 0x98711520, 0x31152106, 0x260b714c, 0x35153501, 0x63073133, + 0x931805b1, 0x8d4a0cd6, 0x0ba81805, 0x86e02c0d, 0x180a8686, 0x18202018, 0x4a850b18, 0xfe2107b6, 0x5e8018a0, 0x8eb08208, 0x012025d8, 0x13191111, + 0x0c1ba818, 0x121c2028, 0x11010111, 0x2a4b1c12, 0x05126d0c, 0x4182fe20, 0x7f808021, 0x98410779, 0x01002b05, 0xc0ffffff, 0xc6014102, 0xed822700, + 0x17173633, 0x13171631, 0x06071631, 0x26232323, 0x26312727, 0xce5b1823, 0x22233e08, 0x13372627, 0x37373631, 0x13130d01, 0x20020be0, 0x0e0a0901, + 0x09141c50, 0x09060364, 0x08508201, 0x0ed01027, 0x2001090a, 0x01e00b02, 0xa00c0cba, 0xe0fe0f08, 0x010b0a0e, 0x0106c811, 0x090eb609, 0x0f0a0b09, + 0x080e2001, 0xa77a18a0, 0x001a270c, 0x004b0040, 0xc96d1300, 0x0262180d, 0x31372107, 0x96859382, 0x15311722, 0x08cadc18, 0x0a12b418, 0x31353122, + 0x37252482, 0x23331337, 0x39af8633, 0x500f0df2, 0x0f501010, 0x2812100d, 0x02161602, 0x7b101228, 0x0ba81313, 0x96421802, 0xc0fd2105, 0x80290785, + 0xa80b0218, 0x50505013, 0x3bc0833d, 0x10125001, 0x480c0c48, 0x0d0f1210, 0x02167a24, 0x247a1602, 0x0e170f0d, 0x0d07800e, 0x07be4118, 0x27053541, + 0x080ca005, 0x7ac7fe80, 0x7620d682, 0x0236cb82, 0xc0ff0000, 0xc7014002, 0x53002b00, 0x26010000, 0x17170607, 0x9e602131, 0x73072005, 0xbb4405a6, + 0x18212007, 0x2608da6e, 0x27343536, 0x83260727, 0x2d03831f, 0x33331617, 0x36373233, 0x36313535, 0x3f823237, 0x84171621, 0x8227200f, 0x27272bd3, + 0x1012e801, 0xfe220f0d, 0xd483216d, 0x08085022, 0x0d24ab82, 0x9201210f, 0xb5200f88, 0x0225e085, 0x900f090a, 0x38de8210, 0x03060901, 0x3c140944, + 0x090a0e10, 0x0a031801, 0x0dba01a8, 0x1e10120f, 0x25de831e, 0x0b0b0748, 0x0f8f4807, 0xea85a120, 0x0b0b0f22, 0x7629e682, 0x88060109, 0x0b0b0111, + 0x47ec830f, 0xe384050f, 0x4f002727, 0x36130000, 0x20b98427, 0x067c7b15, 0x6b4aa582, 0x09e47205, 0x21272625, 0xa6173731, 0x8d7820df, 0x1f7130d6, + 0x02011414, 0x01021616, 0xfe332222, 0xa0bb218f, 0x8e9620dc, 0x14012fd6, 0x16281f14, 0x28160202, 0x01222233, 0xda9a7d1e, 0x0003002f, 0x02c0ff01, + 0x00c0013f, 0x0035001a, 0x83dd825d, 0x0b174bb5, 0x1717062a, 0x37371631, 0x21273631, 0xcb411a99, 0x42d22027, 0xa7420995, 0x60012107, 0xff201391, + 0x5020f3a0, 0x420ba742, 0x138713bb, 0xfd9b3720, 0x02000024, 0xff82feff, 0xc601812d, 0x41001900, 0x07010000, 0x83160737, 0x230382f0, 0x37323133, + 0x21058079, 0xf9823127, 0x3626cd41, 0xa1a18d01, 0xa80d0ea1, 0x92070414, 0x0109090f, 0xa80b0218, 0xa09a1313, 0x7ab929d0, 0x09037a7a, 0x291a1080, + 0x22067642, 0x9aa00d0d, 0x180320ba, 0x2b08f36e, 0x002c0011, 0x1300003a, 0x21153515, 0x2d06f262, 0x07223121, 0x23171506, 0x31152333, 0x84183111, + 0x09830908, 0x23821120, 0x82072321, 0x059e492c, 0x16373627, 0x40010017, 0x06f26c09, 0x00821820, 0x16160224, 0x0483e002, 0x48281821, 0x012207b7, + 0x401820a0, 0x40230857, 0x5a90fe18, 0x012309ee, 0x51901870, 0x00200b3a, 0x08676718, 0xc001402e, 0x2a001100, 0x49003700, 0x6f006200, 0x3321a182, + 0x06935d23, 0x3726a784, 0x33073336, 0xa1832123, 0x66188a85, 0xa18207c3, 0x200ccc62, 0x2837b637, 0xc0c0c020, 0xff09090e, 0x24dc8200, 0x01181820, + 0x20d38300, 0x200483a0, 0x07eb49c0, 0x22a1a020, 0x83c00121, 0x8220203e, 0x8f602048, 0x0af358f8, 0x24a3e020, 0x3307e758, 0x014002bd, 0x001a00c2, + 0x005b0035, 0x006b0064, 0x008d007c, 0x08172419, 0x9e491520, 0x05097408, 0x2726272d, 0x31070621, 0x16170631, 0x82071415, 0x06bb4905, 0x18823420, + 0x07072625, 0x82263536, 0x07062608, 0x17140706, 0x84248303, 0x1837201e, 0x230d145f, 0x23332317, 0x272c1284, 0x23172717, 0x36273731, 0x06072627, + 0x37206983, 0x35230982, 0x82253734, 0x355f870e, 0x34353637, 0x0c0d3f27, 0x1515050c, 0x0d0c0c05, 0x0505050c, 0x04821010, 0xc2010c22, 0x1f890b89, + 0x180cad21, 0x23075840, 0x0405890c, 0x0c273182, 0xdc15060c, 0x820c0615, 0x05043f3b, 0xa21d8906, 0x860ea2a2, 0x2626510e, 0x7d264c26, 0x0b151307, + 0x150b0f0f, 0x0b0b0713, 0x07852601, 0x01291385, 0x050504be, 0x3a3a320c, 0x2f658232, 0x0c0b0604, 0x2d2d270d, 0x0c0b0d27, 0x0b0c0606, 0x05220b88, + 0x23880605, 0x1510a322, 0x23072148, 0xd2fe1015, 0x06277082, 0x0d040506, 0x820c2d2d, 0x267f8387, 0x20db2e01, 0x8253b320, 0x15832800, 0x2313070b, + 0x82232727, 0x19152577, 0x14191d1d, 0x18870887, 0x3108b742, 0x00c30100, 0x004e0047, 0x00600059, 0x00730067, 0x82471300, 0x07162605, 0x31152306, + 0x23058214, 0x31173123, 0x0c878918, 0x23303125, 0x85223123, 0x05b54105, 0x31333324, 0x54653137, 0x27223207, 0x37363726, 0x17271337, 0x33310727, + 0x07370727, 0x231d8217, 0x07233127, 0x37240a82, 0x17172731, 0x31221982, 0x72182707, 0xf22f0a3f, 0x0ca00e0e, 0x0a050404, 0x0e090913, 0x47452005, + 0x5f2605b3, 0x01fe0101, 0x0c855f01, 0x05204522, 0x24080882, 0x04050a13, 0x49a00c04, 0x3a3b3b3b, 0x05057575, 0x053f3f05, 0x0b0b0e74, 0x6e232e0b, + 0x0b2d2d2d, 0x010f7622, 0x06255001, 0x06bd012a, 0x0c075006, 0x50120c0c, 0x317e3982, 0x05d54706, 0x50210c83, 0x241a8212, 0x43fe5007, 0x33008231, + 0x1c1c1cc0, 0x531c3535, 0x26434343, 0x26261d1d, 0xf01d4326, 0x2009c54c, 0x089f5600, 0x2b00c035, 0x4d003d00, 0x6f005f00, 0xaa008100, 0x36010000, + 0x7f313137, 0x6a1805e0, 0x645011d0, 0x23232107, 0x5b3b0519, 0x4e071421, 0x411807aa, 0x31200cc5, 0x7005784e, 0x162205e7, 0x05191617, 0xe036573a, + 0x01022002, 0x10221716, 0x0e0d090a, 0x23100909, 0x02011616, 0x444e011f, 0x90012107, 0x2107f456, 0x05194890, 0xd024503c, 0x29170709, 0x064c7083, + 0x01a02b06, 0x29231616, 0x29090717, 0x81841b1b, 0x00820020, 0xfcff013d, 0x0002bcff, 0x2d00c001, 0x07250000, 0x31170737, 0x07060716, 0x27063105, + 0x51133726, 0x372006f1, 0x4e05c654, 0x2d080637, 0x31070714, 0x27222306, 0x63635801, 0x040c4263, 0x00ff1005, 0x060d0e13, 0x12110550, 0x0b63410d, + 0x1b165f0b, 0x1414151c, 0x0f0f0b60, 0x2382eb0b, 0x120d4123, 0x2a1d8211, 0x01120e0d, 0x04051100, 0x8363420c, 0x14602919, 0x1b1c1514, 0x0b0b5f16, + 0x734c8682, 0x01002206, 0x09f76ac4, 0xb2631320, 0x073f4205, 0x22057050, 0x55232726, 0x272b0548, 0x27263127, 0x31373736, 0x18171736, 0x180d7c87, + 0x200a6876, 0x082e4605, 0x3125148a, 0x33363734, 0x06b46233, 0x4b051542, 0x35200546, 0xf1251984, 0x1807590f, 0x07974158, 0x07185832, 0x100f0f59, + 0x010111c0, 0x0f10c011, 0x0e09092f, 0x24074e41, 0xff09090e, 0xfc891800, 0x69c0200f, 0x01261316, 0x481209bb, 0x7e5a0216, 0x16022f07, 0x09091248, + 0x130a6007, 0x07600a13, 0xc118fb09, 0x80200dbe, 0x0dfd7618, 0x00220d8d, 0x1b5f0005, 0x00c02a05, 0x004a003f, 0x00640057, 0x0ee5547e, 0x57311521, + 0x15220683, 0x01833115, 0xcc453220, 0x60232005, 0x591805f1, 0x0985099f, 0x112b0583, 0x33233305, 0x31273135, 0x19153123, 0x200cc700, 0x0b935b25, + 0x8306ce4b, 0x17162246, 0x09be4b33, 0x00272722, 0x24094859, 0x4d131a33, 0x20cf8513, 0x07e44220, 0x08878020, 0x0e14102d, 0xa001010d, 0x4d808080, + 0x5300ff33, 0x01200bed, 0x0c465218, 0x11f1fe35, 0x270e0e11, 0x020216a6, 0x0e27a616, 0x5011110e, 0x43500e0e, 0x3020092b, 0x1a226382, 0xb44e2013, + 0x07cd4206, 0x8c850787, 0x4d13d023, 0x76451860, 0xc34c180c, 0x4101210c, 0x27255583, 0x02161602, 0x206b8327, 0x20628250, 0x125b4100, 0x5b417920, + 0x45252066, 0x26210528, 0x05704127, 0x16070625, 0x41171617, 0xc0325056, 0x0114141f, 0x11151402, 0x15110c0c, 0x14010214, 0x54411f14, 0x01902a4b, + 0x161c1312, 0x0d162121, 0x2605830d, 0x0112131c, 0x6d040000, 0x4d2608a3, 0x63005600, 0x79187000, 0x37590c85, 0x17142105, 0x16210783, 0x09d64e17, + 0x2015ab42, 0x064f4722, 0x21783520, 0x37342d06, 0x05353336, 0x27332333, 0x15312331, 0x0c3e4518, 0x310cb942, 0x12120120, 0x1225e01b, 0x35122934, + 0x121b0401, 0xa1420112, 0x0c715517, 0x56600126, 0x2b2b5656, 0x0c025f18, 0x210da842, 0x4c836001, 0x021e0226, 0x02017724, 0x20206483, 0x42054147, + 0x15850f92, 0x60201c83, 0x20227982, 0x9a426080, 0x067b481a, 0x8002e030, 0x4f00a001, 0x65005800, 0x90007200, 0xdb56ae00, 0x8dce1808, 0x230b850b, + 0x33161714, 0x21054141, 0x2d453736, 0x27098507, 0x35363732, 0x23262734, 0x2905da53, 0x35263123, 0x31273530, 0x09822726, 0x0523272b, 0x17332333, + 0x35312331, 0x9c471801, 0x0716260e, 0x27260706, 0x204b8226, 0xd1a61827, 0x4160203a, 0x6e410968, 0x12012f1e, 0x01041b12, 0x34291235, 0x01e02512, + 0x00822b20, 0xf0fe5622, 0x0cee6618, 0x200c1b58, 0x01a718e3, 0x052b5728, 0x41087841, 0xae831c9d, 0x0101012a, 0x1e022477, 0x60606002, 0x600da044, + 0xc9200c23, 0x3532a718, 0x00050033, 0x02beff00, 0x00c00180, 0x0068003e, 0x007d0074, 0x0ad54186, 0x06310729, 0x14311515, 0x18371617, 0x85090d40, + 0x3117280d, 0x31353526, 0x55312726, 0x0582055c, 0x89183020, 0x172508f7, 0x16153515, 0x630e1917, 0xd1961809, 0x8f5f180b, 0x05595e07, 0x3006d37b, + 0x31233117, 0x17161737, 0x27260706, 0x36073736, 0x2c0a8537, 0x100f18c8, 0x06088801, 0x327b0807, 0x31058206, 0x1d025a5b, 0x100f0103, 0x1e025818, + 0x16101602, 0x0584a002, 0x01021e35, 0xff140e0d, 0x0d0e1400, 0x0e065001, 0x10060e98, 0x18c810e0, 0x081026d3, 0x02c0012f, 0x6b1a1d1d, 0x40090551, + 0x02040508, 0x04285225, 0x05082008, 0x1e1e0305, 0x11210807, 0x8e520422, 0x1d1a6101, 0xe0b0021d, 0x0c21e0e0, 0x2140832b, 0x05832828, 0x210c2b22, + 0x08a35f18, 0x010e4f27, 0x31310e01, 0x82431861, 0x00002310, 0x07470800, 0x000c3508, 0x00260019, 0x004f003b, 0x00750068, 0x13000082, 0x31213736, + 0x2124d583, 0x11272631, 0x6f180c8b, 0x92180c83, 0x3220083c, 0x2406cb58, 0x35262722, 0x05855505, 0x4f433620, 0x07142506, 0x27232306, 0x2006d658, + 0x05c34b23, 0x36373423, 0x211f8337, 0x4f191732, 0x91180cf9, 0x00240c98, 0x50021602, 0xfd21ce83, 0x890583b0, 0x1853200b, 0x080bea4c, 0x12013325, + 0x13601b12, 0x13141c0e, 0x090e5608, 0x08ce0109, 0x0e1d1415, 0x121b6012, 0x09090112, 0x3367520e, 0x82010512, 0xe00d2109, 0x05281d82, 0x0d0c3012, + 0x2c0a0b60, 0x7127428b, 0x1515182d, 0x832e2d18, 0x012e2205, 0x836c83a8, 0x30fe2103, 0x01210987, 0x0b5c5748, 0x5984a020, 0x16170c23, 0x255e821e, + 0x17171e20, 0x8383090b, 0x3e245d82, 0x110f300e, 0x2605a743, 0x0e2f0f11, 0x8b820203, 0x18402037, 0x3a0b574b, 0x00000700, 0x8002e0ff, 0x0c00a901, + 0x35002100, 0x5b004e00, 0x7e006800, 0x48130000, 0x072d0b2f, 0x31311714, 0x31333316, 0x37363736, 0x067e4826, 0x23330525, 0x4e373233, 0x232805a8, + 0x16072231, 0x27171617, 0x22221c83, 0x854e0607, 0x82308205, 0x82372020, 0x83272049, 0x82168204, 0x45418223, 0xbe7c0cde, 0x8472180a, 0xd3212109, + 0x200b1941, 0x27e182b3, 0x14140756, 0x60130e1c, 0x0124f583, 0x525252ce, 0xef83e082, 0x0e12602f, 0x0815141d, 0x600b0a67, 0x12300c0d, 0x292a8205, + 0x09090de0, 0x12050101, 0x448bac33, 0x5e41f120, 0xdefe210b, 0x230d5858, 0x6001c0fd, 0x820c5c41, 0x161e241e, 0x46090c17, 0x76830709, 0x170b0929, + 0x023e1e17, 0x412f0e03, 0x3021095e, 0x0c5c410e, 0x5c416020, 0x08a9180b, 0x190a200f, 0x20083b22, 0x08fd730b, 0x6500582b, 0x87007700, 0x00009400, + 0x05635513, 0x36371625, 0x18212727, 0x530df2d6, 0x262605a7, 0x06310707, 0x1d192117, 0x25200a14, 0x0d6a5018, 0x17161529, 0x37363133, 0x83262734, + 0x23232901, 0x22072231, 0x27070607, 0x0721258d, 0xf7c61831, 0x37362508, 0x05232326, 0x27220582, 0xc2412726, 0x8c332007, 0x1129252e, 0x480e0e11, + 0x02280484, 0x4848482e, 0x11110e0e, 0xfd210484, 0x820886b0, 0x5002210d, 0xfe212589, 0x0b4741e9, 0x046c4108, 0x16b01602, 0x01010402, 0x06062610, + 0x01060650, 0x240e2801, 0x0d0d0e1b, 0x0f1b1b0e, 0x1b0f0d0d, 0x0f0f161b, 0x38190201, 0x19111106, 0x01460e0b, 0x01021970, 0x46160f0f, 0x11190b0e, + 0x35380611, 0x200c5a4a, 0x827e88b9, 0x8395858a, 0x0efe2179, 0x0d83a387, 0xf9209787, 0x310bfd41, 0x160d0b50, 0x0d160202, 0x2302020b, 0x01010108, + 0xa64a2509, 0x8320200c, 0x02192973, 0x0a13131a, 0x19025006, 0x06249383, 0x1a13130a, 0x0020248c, 0x2e0cab44, 0x00330019, 0x00510040, 0x00780063, + 0x5e920085, 0x07201baf, 0x2105d44c, 0xe2753121, 0x0c296710, 0xbe410720, 0x0d614305, 0x430d9c41, 0xeb410a5f, 0x195b4309, 0x484b6020, 0x87c02008, + 0x40fe2609, 0x0e090920, 0x062d5801, 0x0e40fe24, 0x58180909, 0x80200c85, 0x28098b41, 0x010f0f16, 0x38386d01, 0x0c924138, 0x06065927, 0x29060650, + 0x06d9410f, 0x8c290f22, 0x190bdd47, 0x250d0601, 0x1b1b01c0, 0x7b88fe29, 0x7f05326e, 0x4e1806e9, 0x4020089c, 0x0c627118, 0x85418520, 0x0f012406, + 0x411b160f, 0x2f240a89, 0x26090101, 0x2207c441, 0x42710926, 0x50200b17, 0x210be941, 0xed180000, 0x14260927, 0x33002100, 0x79494300, 0x00882406, + 0x54b1009d, 0x362105af, 0x05f04237, 0x1a620620, 0x6e5c1807, 0x4306200d, 0x23201f23, 0x09bcda18, 0x75430620, 0x0c666708, 0x0cb86a18, 0x23333723, + 0x07455833, 0x45273421, 0x16250540, 0x15350117, 0x057c6235, 0x1805f549, 0x200a5cbc, 0x05355931, 0x23311d85, 0x58585830, 0x16020216, 0x09090e68, + 0x02161602, 0x2a404380, 0x290f5922, 0x200db041, 0x18394124, 0x66827820, 0x09235e83, 0x83680e09, 0x38fe216e, 0x58220d8b, 0x838bc801, 0x90015822, + 0xb0201d8c, 0x0dc67018, 0x160f0f22, 0x21124e43, 0xc5410926, 0x0c5c430b, 0x36442020, 0x8c90200b, 0x60fe21ee, 0x788cff8e, 0x2c05974c, 0x010002c0, + 0x002200a0, 0x0046002b, 0x919c1859, 0x37c11809, 0x31153a08, 0x17140706, 0x27260706, 0x31112726, 0x35262722, 0x15351517, 0x31353133, 0x2df77723, + 0x09090025, 0x4680400e, 0x1f28053d, 0x331c0f01, 0x011b1b29, 0x60220e82, 0x546d4040, 0x0fe07714, 0x31823a86, 0x392cab25, 0x71272126, 0x2020054b, + 0x20215582, 0x18008260, 0x18160cf0, 0x180e9d67, 0x2a093fdc, 0x003100a0, 0x007d003a, 0x18990090, 0x23084b40, 0x33161714, 0x24050d71, 0x37343736, + 0x061f5334, 0x3037362b, 0x34352635, 0x35373637, 0x074b4c31, 0x9a182320, 0x2329075e, 0x31171617, 0x06071631, 0x61891917, 0x07062127, 0x27210182, + 0xa1891926, 0x5e37200a, 0x172011d0, 0x4d07924a, 0x0125068c, 0x2c291b1b, 0x08a6611c, 0x04101023, 0x05494104, 0x00824020, 0x08167833, 0x0e0e0e07, + 0x12111111, 0x16020212, 0x12020216, 0x820c8212, 0x62072012, 0x1f9705f4, 0x85080f21, 0x7b68201f, 0x0923089d, 0x63280e09, 0x2a4c0963, 0xe0fe2905, + 0x011b1b29, 0x11161f01, 0x08c95a18, 0x16110127, 0x03031117, 0x21208572, 0x008260a0, 0x7487b820, 0x74975487, 0x94960e20, 0x1d605820, 0x6360200b, + 0xeb51087b, 0x00c72e07, 0x007f000b, 0x00a3009a, 0x010000b0, 0x05715c36, 0x37161723, 0x0a7b5c37, 0x19310721, 0x2e3cc13e, 0x34313437, 0x26373635, + 0x17313727, 0x85171631, 0x21698509, 0x3e190726, 0x08710cb9, 0x19f92031, 0x2e39ea3e, 0x18012e24, 0x0c201a18, 0x462b0b09, 0x192e0607, 0x2011e23e, + 0x24e179be, 0x19119721, 0x283c073f, 0x01010722, 0x0d283201, 0x25888203, 0x060b3507, 0x4f832e05, 0x19073c21, 0x210b063f, 0x157a1bfe, 0x151d7113, + 0x2000022c, 0xe001c0ff, 0x4a00c001, 0x25575300, 0x31152310, 0x5b183115, 0x8a7c0783, 0x2413890b, 0x37363736, 0xb3471816, 0x3123210e, 0x3e06314b, + 0x17160706, 0x00013736, 0x291b1b01, 0x191a2626, 0x26270101, 0x27263a3a, 0x110b0c01, 0x540c0b11, 0x158d0783, 0x1b292023, 0x059b451b, 0x16160224, + 0x02480102, 0x1a192505, 0xb8105626, 0x2c833a83, 0x41655020, 0x14a82405, 0x83010d0e, 0x8ea82044, 0x83b82018, 0x42082070, 0xff3109bb, 0x02e0fff9, + 0x00a00187, 0x002b0015, 0x006c004c, 0x0c6b448d, 0x200ab64b, 0x8b7b1811, 0x18272014, 0x6410e840, 0x272005f1, 0x2007567d, 0x05fa4a21, 0x10916618, + 0xb6423120, 0x33272105, 0x5f44409f, 0x0f877806, 0x192c0f89, 0x37370e0e, 0x11110e0e, 0x11113737, 0x01210b8b, 0x890f8d02, 0x98be201b, 0x5fce1832, + 0x22b6180d, 0x91f9200c, 0x93468561, 0x9719837b, 0x00002f2f, 0xffff0200, 0x4101c0ff, 0x0c00c901, 0x914d5300, 0x1803200e, 0x180c14a1, 0x2023bf66, + 0xf2751806, 0x3107270c, 0x33161706, 0x3949e033, 0x1888200b, 0x3e118066, 0x0d081d1f, 0x020b0b0c, 0x253b0701, 0x3a253a3a, 0x0b020108, 0x090d0c0b, + 0x04021f1c, 0x18120805, 0x240d3765, 0x5050b0fe, 0x06df1850, 0x1850200d, 0x821f36df, 0x020023e6, 0xe7820e00, 0xe7847220, 0x18004f21, 0x180ee97d, + 0x2c36547a, 0x06070631, 0x22272223, 0x01272231, 0x23e48b00, 0x13162567, 0x0c26d382, 0x0703020b, 0x84181c14, 0xf98507bc, 0x121d2c25, 0x82020307, + 0x080c29df, 0x191a1112, 0x0111131f, 0x80200082, 0x230b9948, 0x1e200d69, 0x42833a83, 0x15291d24, 0xef85fdfe, 0xd44a6020, 0x02012806, 0x0c1b2b16, + 0x82080c0d, 0x1b0c2647, 0x060e0e1a, 0xf72e1901, 0x55582011, 0x15210a37, 0x05fb4931, 0x82052744, 0xf72e190b, 0xc3d41810, 0x1837201a, 0x70119640, + 0x2e19094f, 0x602014ea, 0x4813d944, 0xa96510a2, 0xe42e1907, 0x17f77712, 0x155bac18, 0xc0014023, 0xeb2f1900, 0xc46a184f, 0x1e00411e, 0x64463020, + 0xae6a1813, 0x41802019, 0x4b411a0a, 0x936a1814, 0x0933541b, 0x2f001628, 0x6b005e00, 0x40187800, 0x66180843, 0xbe7a08c4, 0x21112505, 0x11332333, + 0x08699819, 0x27312330, 0x36233431, 0x35353637, 0x23332313, 0x89513117, 0x0c6c7205, 0x18066668, 0x230bea66, 0x23173133, 0x61542e82, 0x37342305, + 0xd3510317, 0xe0402d0b, 0x1010e0e0, 0x1a1b2e1c, 0x20014001, 0x44300c82, 0x170e4c03, 0x22012947, 0x2e491413, 0xaa2b2e2e, 0x20071e46, 0x08c553fd, + 0x21040122, 0x29073b43, 0x9f284a54, 0x054a4a4a, 0xf84b4a45, 0x8001210b, 0x098e6618, 0xfe400128, 0x115b04c0, 0x8482013f, 0xfe0a2929, 0x0d0140c0, + 0x1801140e, 0x200920f2, 0x245f83a0, 0x03020b32, 0x26538307, 0x0f4a307e, 0x5a01670e, 0x00200c4a, 0x0f13a718, 0x47055a59, 0x0620052f, 0x2305f06a, + 0x36373233, 0x8a1ff26a, 0x096f4723, 0x0b254f18, 0x35313524, 0xe26b2001, 0x022e3707, 0x061f1112, 0x1f060808, 0x2e021211, 0x33222201, 0x01222233, + 0x05831f19, 0x0f201b8e, 0x4405196f, 0x0121053d, 0x077e6c48, 0x36100d2f, 0x1d1e1f16, 0x1e1d0505, 0x1036161f, 0x8339830d, 0x0e162147, 0x1d8f0583, + 0x20213587, 0x054b44c8, 0x8020c825, 0x59020000, 0x3528086b, 0x00003e00, 0x15351525, 0x21052244, 0x3a592123, 0x31212507, 0x31213135, 0x35280d83, + 0x26312731, 0x34352627, 0x3805d76f, 0x05173233, 0x16171631, 0x15350715, 0x15312535, 0x80022131, 0x140e0d01, 0x8c451850, 0xfe802208, 0x3e6b82a0, + 0x0a090f1e, 0x24192408, 0x25292a24, 0x0e194601, 0xc0fec00e, 0x05954001, 0x14800505, 0x85010d0e, 0x823020d5, 0x75300806, 0x0b0b0305, 0x2f0b0e0f, + 0x12121321, 0x17170ca4, 0x1010051b, 0x00493910, 0xff040000, 0x01c0fff9, 0x00c001c7, 0x0069004f, 0x008f007c, 0x07221300, 0x09377e18, 0x88822120, + 0x7e311721, 0x26220567, 0x8c822323, 0x8305dd58, 0x211784cc, 0xc2822307, 0x23312723, 0x82338231, 0x82c6821f, 0x059776c4, 0x33373622, 0x2320e282, + 0x22089c76, 0x54161714, 0x35200551, 0x20054b49, 0x12136d23, 0xd96f1720, 0x573a0811, 0x100d0c13, 0x0d0c1012, 0x12012a1b, 0x0c0d1b2a, 0x0c0f1310, + 0x2871130d, 0x011b1b29, 0x05422302, 0x28080203, 0x8037090d, 0x280d0937, 0x05030208, 0x01022342, 0x28291b1b, 0x90414971, 0x06b24d05, 0x115a8020, + 0x05174106, 0x0c882919, 0x0f900125, 0x820c1010, 0x01202364, 0x5e832001, 0x0f101023, 0x2c438330, 0x421c2fa0, 0x01060606, 0x09373709, 0x23088201, + 0xa02f1c42, 0x30217683, 0xd5d61870, 0x82202009, 0x068e5165, 0x678c6f85, 0x93610020, 0x00a02e09, 0x0034002b, 0x0046003d, 0x0060004f, 0x08454684, + 0x9e792120, 0x3115230c, 0xcc7e3133, 0x6b098505, 0x332006bd, 0x2307ee4e, 0x23332333, 0x35211983, 0x20118707, 0x20088715, 0x5a521825, 0x13f6180f, + 0x1732230c, 0x48181516, 0x343b0d55, 0x35333637, 0x12120100, 0x1b80011b, 0x1d011212, 0x430c1616, 0x18021e38, 0x83c0fe18, 0x58d0240f, 0x8258f058, + 0x21048400, 0xda774001, 0x05d9551d, 0x412a4b82, 0x19111104, 0x25120940, 0x5a844040, 0x00854020, 0x06838020, 0xa3180484, 0xb31809ac, 0x072119ff, + 0x055b5f00, 0x503c3341, 0x33410822, 0x073c4109, 0x41084e41, 0x40244f33, 0x58e85858, 0x90200082, 0x58230382, 0x41585838, 0x80203936, 0x210a3741, + 0x34414040, 0x44012022, 0xc02b0673, 0x00003a00, 0x17070601, 0x63313731, 0x14280955, 0x07070607, 0x23070631, 0x20059d4e, 0x84198b27, 0x45272029, + 0x1527065b, 0x1c027401, 0x1808686a, 0x2b088ea9, 0x1271130d, 0x1228ce28, 0x0e0d1371, 0x08321487, 0x021c6a68, 0x160f0e01, 0x010f0f16, 0x5d0e218c, + 0x96190c15, 0x142008f9, 0xfa292682, 0x24020224, 0x0d0e01fa, 0x07854614, 0x150c0f29, 0x16210e5d, 0x83010e0f, 0x82002036, 0x57032000, 0x2f25084f, + 0x4b003c00, 0x05415700, 0x51710120, 0x218d8206, 0xab842727, 0x091d8418, 0x22312122, 0x26089958, 0x01273107, 0x84271727, 0x161723d4, 0x67183333, + 0x795307d4, 0x27232705, 0x100c0f13, 0x05835002, 0x09109629, 0x16010509, 0x431d0b39, 0x4b18059f, 0x1e300721, 0x1e01b007, 0x20949494, 0x0905010e, + 0x25a5100a, 0x20051944, 0xdc331940, 0x0175280b, 0x030f0e0c, 0x50941f40, 0x502d0b16, 0x74a5fe8b, 0x2b1c7474, 0x0d0e0f03, 0x09766220, 0x2108ab66, + 0xb7420180, 0x437f200b, 0xb5422de9, 0x35152324, 0xd4183315, 0x65180ca8, 0x944e0d97, 0x18232005, 0x43082d4d, 0xb0421ae4, 0x20202110, 0x2006044c, + 0x052e41a0, 0x2007e471, 0x05024130, 0x2005685f, 0x13e84301, 0x200db142, 0xe0461850, 0x20588519, 0x35008200, 0xfffbff02, 0x010502c0, 0x002700c0, + 0x1300002e, 0x17060706, 0xbb703117, 0x6e142007, 0x75550881, 0x6e352005, 0x272e05bf, 0x17271721, 0x07312127, 0x07091520, 0x1972d70e, 0x07c34b06, + 0x0ed74036, 0xfe150907, 0x9393e040, 0x93260193, 0x1301c001, 0xb3d61013, 0x260bc041, 0x1310d6b3, 0x82d30113, 0x48932020, 0xc3270aa3, 0x00003200, + 0x6a151601, 0xa61805fa, 0x322409c7, 0x05313517, 0x230a0950, 0x37363736, 0x352a1383, 0x25373631, 0x01173631, 0x56630df3, 0x23078307, 0x00ff0f11, + 0x012c0f8d, 0x0f400116, 0x0aba010d, 0xf8fe4810, 0x8307f344, 0x92052307, 0x0f8cd04d, 0x17489d37, 0x09046008, 0x00020000, 0x02c0ff00, 0x00c00100, + 0x0037001c, 0x63a71800, 0x7099181c, 0xaca6181a, 0xbe531819, 0xa5a61814, 0x67b71818, 0x41002014, 0xe027063b, 0x99010002, 0x18002500, 0x5e0a2fcf, + 0x262207ee, 0xcf180607, 0x302d1027, 0x0cb4b4b4, 0xb40c1010, 0x2101012f, 0xe8ce1821, 0xa9942910, 0x0b0ba9a9, 0x06412ca9, 0x14b4ce18, 0x142d7384, + 0x2c02bbff, 0x2700c001, 0x26010000, 0x18628327, 0x50148e51, 0x078207a5, 0x01274008, 0x1314093d, 0x1390400a, 0x680e0606, 0x100f0219, 0x11818012, + 0x18031010, 0x07050d68, 0x01409013, 0x010111ae, 0x03168411, 0x670e1312, 0x0b0c1392, 0x09444409, 0x92130c0b, 0x12130e67, 0x82841603, 0x00022577, + 0x01c0ff00, 0x00230182, 0x8230001a, 0x8b5918ed, 0x23f58219, 0x07063131, 0x25098f75, 0x27262726, 0xd118e023, 0x2e341330, 0x0232334b, 0x010d0809, + 0x09080d84, 0x4b333202, 0x1111c05c, 0x07e9d018, 0x30200989, 0x21821a83, 0x30832982, 0x82090021, 0x02e0278b, 0x00a00100, 0x0a190019, 0x99220b4d, + 0x6d44b300, 0x8211200e, 0x07062388, 0x82833121, 0x18131121, 0x20105b40, 0xac411825, 0xc225200e, 0xc8521821, 0x190b4a19, 0x2d0aa144, 0x1b121201, + 0x121b80fe, 0x01300112, 0xe17f200f, 0x87702007, 0x200f2308, 0x17ad90fe, 0x1800ff21, 0x200dff52, 0x0d174a20, 0x7b09d144, 0xfe210b06, 0x82fc18f0, + 0xae702016, 0x40202217, 0x06a14440, 0xa0200686, 0x41124768, 0x083405cb, 0x1a001100, 0x3d002300, 0x15010000, 0x31231535, 0x15333135, 0x27230887, + 0x82233323, 0x1531270f, 0x33233307, 0x1c823115, 0x4b7c1120, 0xc0012218, 0x200082a0, 0x850382e0, 0xec441902, 0x0560410d, 0x80600122, 0xc0200082, + 0x80220382, 0x02838040, 0x84000121, 0x88c02018, 0x8340202c, 0x00002209, 0x0a6b420a, 0xc34a2220, 0x0058240a, 0x5d6a0061, 0x17201b37, 0x3320ba87, + 0x3320b187, 0x05201187, 0x23881190, 0x35990720, 0xa4839084, 0x8405af4a, 0x588024ae, 0x4a385858, 0xfe2006a5, 0x58240c83, 0x405858e8, 0xd0201083, + 0xa87b1889, 0x05604915, 0xba460584, 0x40402106, 0x40220888, 0xbb4b0040, 0x059b4106, 0x8b001921, 0x130021fb, 0x7e05cb4e, 0x5a4a12cd, 0x82212008, + 0x31152500, 0x05353121, 0x9a07a04b, 0x14ff4211, 0x01259a82, 0x0100ff80, 0x23038300, 0x404080fe, 0xc2420d97, 0x0c404a15, 0xd382d886, 0x03820120, + 0xc0012032, 0x1e006001, 0x16010000, 0x14313115, 0x06310107, 0x08022919, 0x62193620, 0x322e0839, 0x09b70117, 0x0a00ff09, 0x800a0d0d, 0x06830909, + 0x83e96921, 0x57012105, 0xff240583, 0x80090900, 0x09250883, 0x09ea6a09, 0x27568209, 0x20000100, 0x60012000, 0x31245b82, 0x36010000, 0x0abd2c19, + 0x26312723, 0x05bd4923, 0x2e191720, 0x1e190cdb, 0x37220bc1, 0x65865701, 0x56866920, 0x0f8f6a20, 0x97290121, 0x47298719, 0x3c200c3b, 0x731f3b47, + 0x71180785, 0x711809a5, 0x40470ccf, 0x02e82a19, 0x40021616, 0x16020216, 0x47098940, 0x58201840, 0x3284288e, 0x4708a777, 0x282005e7, 0x2520ab9e, + 0x990a8870, 0xe8fe2197, 0x90206a83, 0x8e980484, 0x08386918, 0x002d8282, 0xff100002, 0x01f001d0, 0x001500c0, 0x9d79184c, 0x1617270f, 0x36373233, + 0x4a4e3535, 0x06155f05, 0x16150623, 0x076d7a17, 0xaf623620, 0x06072105, 0x21050473, 0x74181617, 0x36220ab5, 0x0c4f0137, 0x1990200c, 0x0807adc1, + 0x17172927, 0x36202001, 0x36434336, 0x01202036, 0x0a281817, 0x08090d0d, 0x1e0a0101, 0x32021111, 0x324b4b31, 0x11110231, 0x2479181d, 0x45e02007, + 0xe02d05b1, 0x0d0d0959, 0x01010b0a, 0x302f2208, 0x853b8538, 0x30382347, 0x3e83222f, 0x46820b20, 0x23231827, 0x32314b29, 0x23478302, 0x18232329, + 0x0526e383, 0xc0ff2000, 0xe3826002, 0x2d00162a, 0x5a004300, 0x00007000, 0x3006c27b, 0x07143111, 0x27222306, 0x31113526, 0x33363734, 0x05085d07, + 0x11221690, 0x288d1111, 0xec823220, 0xd1702c86, 0x1843840b, 0x2014bf52, 0x0cc47c02, 0x22094a5e, 0x180e0909, 0x7c0c51d1, 0x198c0c2c, 0x11945718, + 0xfe201e83, 0x01243086, 0x09090e60, 0x41063044, 0x01210531, 0x20078500, 0x0d2c6f40, 0x93468020, 0x0507420f, 0xc0ff0c34, 0xc001f401, 0x6d006000, + 0x16010000, 0x16310707, 0x86701415, 0x31072606, 0x27060706, 0x84058227, 0x22232209, 0x05da5727, 0x09860d82, 0x70372621, 0x2724059c, 0x36372631, + 0x08a24218, 0x332b0986, 0x17161732, 0x17163117, 0x86363137, 0x18072009, 0x080c7099, 0x0a04f026, 0x2c02022c, 0x0907040a, 0x0a0c0a05, 0x1814380e, + 0x140f040c, 0x0e151616, 0x14180c04, 0x0d0a0e38, 0x07090509, 0x0921258a, 0x2425940d, 0x0709040a, 0x337218f0, 0x012b080b, 0x280a0e19, 0x0c0d0d0c, + 0x120e0a28, 0x0f100811, 0x1012040b, 0x030e3a09, 0x0e030404, 0x1210093a, 0x100f0b04, 0x0f111108, 0x8e0d270a, 0x390a2125, 0x39212585, 0x2125870a, + 0x7f67a912, 0x00012d0c, 0x02c0ff00, 0x00c10141, 0x2500005a, 0x22058f47, 0x18173123, 0x2708a57d, 0x23223123, 0x23232322, 0x18059e4d, 0x3735e9c5, + 0x07163105, 0x09014002, 0x01200d09, 0x110b0c01, 0x02010210, 0x11182102, 0x22bcc518, 0x0c00012c, 0x090dc001, 0x04a00109, 0x355c1004, 0x42182005, + 0x40200683, 0x4d824083, 0x0d99cb18, 0x0e0ae122, 0x230a3f45, 0x002e001a, 0x076fa219, 0x14151623, 0x51a61907, 0x34352308, 0x01823637, 0x2005734f, + 0x06b14f17, 0x2b059d7a, 0x3a460001, 0x2222243a, 0x463a3a24, 0x182f0989, 0x0e13600b, 0x0255120b, 0x01021616, 0x192101c0, 0x3015014a, 0x88888878, + 0x0b40070d, 0x390e1312, 0x0202167b, 0x288b8416, 0x014002e0, 0x003800a0, 0x238b824e, 0x22233323, 0x56188682, 0x94831753, 0x03273425, 0x54272631, + 0xaf4305ac, 0x18352007, 0x21154f56, 0x56180001, 0x5918131a, 0x102008f3, 0x14195618, 0x55180120, 0x591813fb, 0x55180ad2, 0x002018fa, 0x2808637e, + 0x00c00100, 0x004d0029, 0x0e6d4556, 0x1cc39118, 0x5d420320, 0x31152105, 0x090f5418, 0x20074b6e, 0x06bd4707, 0x0a5bb618, 0x20067745, 0x052d4749, + 0xc1478020, 0xe049210a, 0x2008e049, 0x29098780, 0x19142e65, 0x662d131a, 0xac6a7001, 0x06524408, 0x474af321, 0x80200557, 0x2808ea47, 0xc0fef34a, + 0x1b121201, 0x843c8720, 0x132d2408, 0x18382d13, 0x2009a9bb, 0x08334a02, 0x3a002128, 0x22130000, 0x39443107, 0x8d152005, 0x273421bf, 0x272af382, + 0x15212326, 0x17212121, 0x24852331, 0x2908a452, 0x79373123, 0x06111017, 0xf5490239, 0x39022909, 0x17101106, 0x0e01f2fe, 0x30290383, 0x0e091433, + 0x13781409, 0x2a05820a, 0xa0013033, 0xe3160d0e, 0x875c0808, 0x085c2d9c, 0x0d16e308, 0x01c0400e, 0x01111c11, 0xc02e0484, 0x01000000, 0xd9ff1900, + 0xa701f001, 0x55424600, 0x56152008, 0x22220fa0, 0xae820607, 0x08149718, 0x2207e046, 0x19373637, 0x20083bc4, 0x07cd5723, 0x17173227, 0x32328201, + 0x056e4532, 0x2209da45, 0x82392c12, 0x2c2c2600, 0x0f0e0e0f, 0x2b0b852c, 0x0d090a0a, 0x40310a0d, 0x2f2f3140, 0x11200583, 0x860a2447, 0x11332138, + 0x0b85308b, 0x09213483, 0x27328509, 0x00112f2f, 0x10000200, 0x3c25c386, 0x00007f00, 0x20968237, 0x20868233, 0x90731831, 0x3130260b, 0x31313130, + 0x0b921932, 0x26272311, 0xb3470607, 0x84398207, 0x0714220c, 0x19ef8214, 0x2108b63f, 0x3c821731, 0x4505f16b, 0x328605a9, 0x3123f382, 0x53312731, + 0x70820996, 0x23062325, 0x841a0c69, 0x412220cd, 0x70200502, 0x4108cd63, 0x25210602, 0xf46f1910, 0x08422507, 0x01020606, 0x90059051, 0x26458e1c, + 0x02030202, 0x821a22f5, 0x08c051f0, 0x23205986, 0x25062341, 0x0c0d2e25, 0x5b83050b, 0x06035625, 0x82010806, 0x21219830, 0x48881b21, 0x3b6d0120, + 0x01403006, 0x001900a0, 0x003f002c, 0x005e0052, 0x4f76006a, 0x9e581b3f, 0x78d91812, 0x0739410a, 0x18059051, 0x200c5d43, 0x0abb4937, 0x0b961520, + 0x12010025, 0x4d011b12, 0xfe21087e, 0x07bc5c40, 0x4c49f988, 0x0c20730c, 0x02166025, 0x98e01602, 0x151f4c04, 0x480c6a7a, 0xe0200c8d, 0x0e237288, + 0x43f80909, 0x426307d6, 0x20088808, 0x09135100, 0x36000f23, 0xd1a71900, 0x27262b08, 0x07062726, 0x35070706, 0xb25b3515, 0x093a5a09, 0x21079050, + 0x1d833135, 0xa0903334, 0x22171601, 0x01161722, 0x29280240, 0x28293d3d, 0xc0431002, 0x09934f07, 0x30011022, 0x34580083, 0x830c8208, 0x20318329, + 0xd7ad1830, 0x00002211, 0x08af5101, 0x86183520, 0x11200ec3, 0x0c2f8818, 0x36313725, 0x82371617, 0x35372205, 0x79b88231, 0x26200652, 0x35200782, + 0x0c8c4518, 0x3b404033, 0x14224945, 0x0d0e0101, 0x26240911, 0x3b372326, 0x07a04a45, 0xd0fe2022, 0x34067442, 0x1c0f1080, 0x090d1a22, 0x0812f815, + 0x11050709, 0x110e1a11, 0x4e8b8410, 0x42200547, 0xc9459882, 0x33362105, 0x09de4b18, 0x27227782, 0x01833135, 0xb0183620, 0x172009d4, 0x64053578, + 0x32210d6d, 0x262b8317, 0x39510001, 0x770e0b39, 0x0d3605c6, 0x1722140e, 0x22010116, 0x48393a22, 0x223a3948, 0x16010122, 0x79572217, 0x0e102c07, + 0x5139390b, 0x33027001, 0x18064f32, 0x8308f4c1, 0x30102221, 0x2bdb1930, 0x3030220b, 0x82478410, 0x8380204f, 0x4f06243c, 0x82023332, 0x000029ae, + 0x4001dbff, 0x1b00a501, 0x21410c82, 0x05157605, 0x2405cb45, 0x31173133, 0x20b58216, 0x24238211, 0x870f1312, 0x07ba4144, 0x0f874431, 0x01011213, + 0x08091480, 0x1201780d, 0x83401b12, 0x0d782519, 0x01140908, 0x2806235d, 0x01c001db, 0x001c00a5, 0x2259822d, 0x4a111716, 0x23210663, 0x092b1931, + 0x31332d09, 0x17363137, 0x06171617, 0x26270607, 0x1a826682, 0x17363724, 0x59822d01, 0x702c6d90, 0x21020221, 0x0f0c0f13, 0x11010111, 0x13250682, + 0x14099d01, 0x2c8091fe, 0x2f2f1b93, 0x12100c1c, 0x17170e10, 0x2106820e, 0x0082000c, 0xe7820420, 0x8002d42c, 0x1a00ac01, 0x42003100, 0xfb485f00, + 0x867a8208, 0x3536237c, 0x80852734, 0x17160724, 0x14493131, 0x7c978a06, 0x108a05e3, 0xd69b2720, 0x3116022a, 0x01011c1c, 0x13311c1c, 0x2921ad82, + 0x20008218, 0x23088229, 0x13213d13, 0x21280082, 0x100c1012, 0x33020233, 0x12210682, 0x20da8f3c, 0x13004170, 0x289f0135, 0x44443a39, 0x0c29393a, + 0x21101210, 0x39393030, 0x82213030, 0x4b0c310a, 0x2d27261b, 0x1b26272d, 0x0f130f0c, 0x2a46462a, 0x14820682, 0x200e0741, 0x142e4192, 0x6f540020, + 0xc0013505, 0x1900a001, 0x3c002200, 0x5f004500, 0x8e006800, 0xa0009700, 0x220c4578, 0x19151716, 0x6b0aa758, 0xe17309a4, 0x09f24208, 0x5806e441, + 0x132208ee, 0x10432333, 0x0b02420a, 0xf25c1720, 0x37362108, 0x61054344, 0x6c85053f, 0x06212985, 0x015c1807, 0x26172208, 0x05b76a27, 0x08873320, + 0x0d010024, 0xb960140e, 0x20088408, 0x94008240, 0x60f02215, 0x83298d60, 0x82502025, 0x1840202d, 0x20075742, 0xa6421820, 0x87402007, 0x20118208, + 0x19149070, 0x89093359, 0x8310204f, 0x5d551847, 0x21178e08, 0x90944001, 0x5987d020, 0x60200783, 0xa021668c, 0x094418b0, 0x850f2008, 0x78002018, + 0x003508b3, 0x0f00a001, 0x2c001c00, 0x4e003c00, 0x00005c00, 0x11070613, 0x05757031, 0x26311125, 0x85332327, 0x3736210f, 0x0c860d83, 0x85313321, + 0x881c870e, 0x1117230f, 0x3b8a1111, 0x07063123, 0x85118427, 0x0706272e, 0x02021618, 0x04841016, 0x89855820, 0x480f0122, 0x60201389, 0x79180a89, + 0x40200a22, 0xa024bd88, 0x70fe1602, 0x01262383, 0x01021690, 0xe684fe0f, 0x0fa00123, 0x8b178b01, 0xfe18240b, 0x89900170, 0x16022632, 0x0160fe08, + 0x303789a0, 0x00000f01, 0xff000002, 0x01b501ea, 0x001b00a0, 0x059b462e, 0x52171421, 0x3727056e, 0x34353631, 0x6f312727, 0x062205ca, 0xfb6c1707, + 0x13003111, 0x191a13b0, 0x12128614, 0x951b13b0, 0x010d0e14, 0x2809d148, 0x010e0909, 0x96969670, 0x2123821a, 0x26838613, 0x0113b025, 0x47140e0d, + 0x00210c9f, 0x347f8203, 0x010002d9, 0x001900a7, 0x00480035, 0x27170100, 0x14151617, 0x085e6107, 0x37238385, 0x47051736, 0x2e7e0627, 0x53238407, + 0x60480690, 0x59013512, 0x27808080, 0x11117027, 0x19700e0e, 0x0e0e8019, 0xa7fe1111, 0x92828183, 0x8513a821, 0x13a82292, 0xbf4d1890, 0x8199280c, + 0x362a8181, 0x83712a36, 0x1b71252d, 0x811b2323, 0xbf203f83, 0xdd83c782, 0x86a81321, 0x200782ee, 0x08bb4956, 0x00214182, 0x08474704, 0x33002324, + 0x52184000, 0x981811c5, 0x996e088d, 0x31112705, 0x23262734, 0xfe540123, 0x07214b06, 0x5e060f7b, 0x17240581, 0x16332333, 0x086a7b19, 0x1809e772, + 0x8507fc54, 0xfe202280, 0x05fb54e0, 0x2507b25d, 0xc00f0120, 0x0484010f, 0xc0c01022, 0x01220a87, 0xa972010f, 0x20f4850a, 0x21068240, 0x46824001, + 0x4780fe21, 0xf02006c4, 0x09971619, 0x48092c43, 0x80340523, 0x1b00c001, 0x11130000, 0x17161111, 0x31373732, 0x33163117, 0x1805da42, 0x2f07064e, + 0x08160200, 0x069a9a06, 0x01021608, 0xfe140e0d, 0x30055365, 0x0148fe90, 0x1648feb8, 0x6c6c0402, 0x01160204, 0x077347b8, 0x5b074f46, 0x1d2605c3, + 0x55002c00, 0x2b575e00, 0x31152408, 0x82353133, 0x31172103, 0x8a420985, 0x15012606, 0x31151535, 0x201a8221, 0x21038235, 0xa0771721, 0x31352306, + 0x86872726, 0x4e096f68, 0x27360a05, 0x07061716, 0x37362726, 0x12121b80, 0x1de34001, 0x131d1340, 0x3a41e31a, 0x20402305, 0x6b772020, 0x05545906, + 0x0e090929, 0x12120120, 0x8300011b, 0x4d10202d, 0xc02008f0, 0x60251483, 0x43431d60, 0x213e821a, 0x3782a0fe, 0x10404024, 0x2f822010, 0x2008db61, + 0x20498260, 0x07de4740, 0x4d884021, 0x252213ef, 0xe7824000, 0x07370722, 0x18052248, 0x210a26e2, 0xc8841137, 0x7c312321, 0x754305f6, 0x47172007, + 0x23210644, 0x20e58222, 0x05595026, 0x0a953325, 0x4e4b0a0a, 0x4b2b11a7, 0x7a220c0a, 0x1a6b0c22, 0x820d1616, 0x16162200, 0x2109891a, 0x97197f01, + 0x7f201bce, 0x15a5b518, 0x0000022a, 0xc001e0ff, 0x3900a001, 0x2624b784, 0x03070627, 0x200c414d, 0x06ec4d32, 0x37312325, 0x18313331, 0x890dee80, + 0x17032e1b, 0x37233323, 0x09fe1731, 0x88091515, 0xf8db181a, 0x09092709, 0xa012020e, 0x118c0212, 0x1a881a2f, 0x38707070, 0x148b0138, 0xfe140101, + 0x0ba74395, 0x675f3020, 0x28138506, 0x95fb6b01, 0x00000095, 0x20a78403, 0x21a78280, 0x2b61002c, 0x05937605, 0x7b333321, 0x05820511, 0x07061524, + 0x69520706, 0x37342605, 0x31333336, 0x7b018235, 0x17200527, 0x09d34018, 0x15312328, 0x15073331, 0x42471535, 0x27262505, 0x00232726, 0x302e6b82, + 0x24253690, 0x1c1d0101, 0x24011111, 0x68183625, 0x10210730, 0x20b88210, 0x078841e0, 0x9020b482, 0x2108f54f, 0x1a828001, 0x30252b83, 0x1d1d1122, + 0x853e8323, 0xa0a021b3, 0x62190782, 0x802808ae, 0x80808040, 0x1b121201, 0x074b3883, 0x83012005, 0x733220c7, 0x312109e5, 0x17431832, 0x18032008, + 0x220dc147, 0x85352627, 0x311321cb, 0x8020c985, 0x099a6e18, 0x51853b21, 0x7c650669, 0x840f8506, 0x98e01995, 0x02002d18, 0xe0ff0000, 0xa0014502, + 0x6f004100, 0x35248182, 0x31333515, 0x0b48ad18, 0x200bd54e, 0x688c8211, 0x26260b66, 0x23272627, 0x90180623, 0x25240cac, 0x31312326, 0x09b6d119, + 0xa7821520, 0x2305c360, 0x37323316, 0x07dc6518, 0x08dfdb18, 0x4d404021, 0x6d4d06b5, 0x38431806, 0x0d012507, 0x7070140e, 0x2109b567, 0x3c19b701, + 0x2025095a, 0x0e070915, 0x250f8f40, 0x20204001, 0xc14dfe20, 0x4212820c, 0x30200565, 0x08287819, 0x57290f85, 0x10400909, 0xc0011313, 0xe7d21901, + 0x200c850a, 0x24008200, 0xff000002, 0x411c82db, 0x82610c13, 0x0970740c, 0x9f183120, 0xd1430e76, 0x0e134105, 0x15060724, 0x8b183131, 0x15220b02, + 0x614d1631, 0x328b1805, 0x4d35200c, 0x4022056d, 0x1c431080, 0x8010210c, 0x2505be41, 0x140e0d01, 0x1341b0b0, 0x99372009, 0x21f982c5, 0xc76f2020, + 0x4180200c, 0x0a410667, 0x41e9200f, 0x0f850f47, 0x1508082d, 0x08152020, 0x00400e08, 0x44040000, 0x162f0813, 0x44002d00, 0x00005b00, 0x31071401, + 0x7e230631, 0x33270875, 0x17323133, 0x95111516, 0x7a252016, 0x69180b2f, 0x4486098a, 0x09275218, 0x44842120, 0x82200121, 0x07e058ef, 0x8a050941, + 0xe0fe210d, 0xd4421d82, 0x80fe2107, 0x02581f82, 0xe1cb1805, 0x0af3420b, 0xff212c82, 0x00e71800, 0x8d0c8b0c, 0x94ea821a, 0x273423eb, 0x077e3131, + 0x0a125306, 0x6506ac69, 0x212a0982, 0x36373231, 0x17140135, 0xeb193131, 0x31250c7d, 0x15060722, 0x21449525, 0x72186001, 0x0e830d5a, 0xca8bfe20, + 0x9040fe21, 0x8d328eee, 0x0cb550ec, 0x1a8cde8d, 0xc041eb97, 0x45d74115, 0xd741c020, 0x83e8911c, 0x0c0c412f, 0xdd9aea8d, 0xeb971a8d, 0x41059241, + 0x11200fc0, 0x25201695, 0x2015d741, 0x422d9501, 0xfb821193, 0xd841cb8c, 0x37efcb12, 0xff100006, 0x010002f0, 0x000f0090, 0x003b0025, 0x00630051, + 0x13000073, 0x620edd62, 0x5918067f, 0x21210d28, 0x14f57415, 0x27201595, 0x20101f63, 0x22638e17, 0x18021628, 0x20071b86, 0x057c4398, 0x8c440120, + 0x43fe2006, 0x0f9906d7, 0x8618b020, 0x18200955, 0x01214689, 0x20168990, 0x0b2b4810, 0x8c0cc874, 0x1898200c, 0x200bfbbb, 0x203e8988, 0x22008200, + 0x48f4ff05, 0x0b5d06f3, 0x476a2007, 0x9244088b, 0x09b34405, 0x0ccf4b18, 0x09b84b18, 0x23331722, 0x45089a7b, 0x277f0914, 0x2643890c, 0x37372635, + 0x4f173631, 0x062305ad, 0x43002727, 0xc0200fe2, 0x220d1444, 0x18c0c020, 0x820a06d9, 0x1002451b, 0x660c0c2b, 0x01080809, 0x09080801, 0x0d244366, + 0x5d0cf443, 0x535d0c39, 0x0db3310c, 0x04064f0d, 0x0a9e0b04, 0x4f060405, 0x05000000, 0x240cf345, 0x005a0043, 0x5c13416c, 0x37073725, 0x6f270607, + 0x17240627, 0x07163117, 0x22411541, 0x41666680, 0x0c210916, 0x3518410c, 0x414f4f21, 0x0b260518, 0x4f060404, 0x1f480d0d, 0x00002906, 0x80014002, + 0x32001900, 0x201b1d57, 0x09ea5225, 0x35312722, 0x37250184, 0x36313731, 0x05d95617, 0x3a4a0020, 0x84ff2007, 0x2f022d09, 0x10010110, 0x0e601011, + 0x1110600e, 0x0f125b18, 0x3105a14c, 0xff13091c, 0x09091300, 0x110a400a, 0x400a1180, 0x4f190809, 0x0022083b, 0x8f82a001, 0x40003322, 0x0523919b, + 0x68222326, 0x07840580, 0x18170621, 0x1808c158, 0x630c2543, 0x0138147c, 0x0d0c0844, 0x081a5707, 0x40080b0b, 0x0f070508, 0x070ef060, 0xd4780706, + 0x0cd24218, 0x142d6218, 0x0b0b6b30, 0x0909217f, 0x0d0d0c50, 0x0b0d0d01, 0x63730bb0, 0x01002b0b, 0xc1ff0000, 0xc0018001, 0x0b561c00, 0x31312208, + 0x05836006, 0x82262721, 0x7a362001, 0x01210655, 0x36d31880, 0x271b2f09, 0x021e1f27, 0x52363602, 0x02363652, 0xd3180001, 0x21250708, 0x3b3b3738, + 0x8313832d, 0x6200201b, 0x0c220c53, 0xf1182700, 0x11210843, 0x23558331, 0x31373621, 0x33220883, 0x384c1732, 0x21768905, 0x5c87c001, 0x5d40fe21, + 0xc02017a0, 0xfe216783, 0x5d288380, 0xb76a13e5, 0x22db8606, 0x1800002d, 0x210b8fea, 0x35493637, 0x24788805, 0x06272627, 0x05466207, 0x2621f483, + 0x2f5d8427, 0x27212102, 0x0f091527, 0x15090f02, 0x21212727, 0x6028f284, 0x010f0f01, 0x301f2001, 0x0f200582, 0x30052758, 0x2f523636, 0x37373f3f, + 0x190c0c19, 0x3f3f3737, 0x209a832f, 0x231f83b0, 0x01201f30, 0x16232f84, 0x42002217, 0xc02d062f, 0xbb01fb01, 0x23001100, 0x00005d00, 0x07b34b01, + 0x52311721, 0x05200608, 0x2006466e, 0x820f8237, 0x31272203, 0x189a8207, 0x7c0fa763, 0x79180b01, 0x364c0fe6, 0xd8013b0a, 0x12161612, 0x111e621e, + 0xd4fe1211, 0x041e0409, 0x590e0b0a, 0x62a8090c, 0x43184ca8, 0x002008cf, 0x0cba4419, 0xb249ff20, 0x06947206, 0xaa016024, 0x40821111, 0x12274783, + 0x580d09dc, 0x820a0b0e, 0x25418346, 0x1b1b01b2, 0x3d84ff29, 0x30870983, 0x820dec61, 0x22f6820d, 0x6c000100, 0x81200743, 0x0621f38a, 0x05a65a15, + 0x15313724, 0x91182331, 0x31201168, 0x2405ef63, 0x31272734, 0x5e218233, 0x21821c91, 0x89310721, 0x0752534f, 0x09189018, 0x53313521, 0x1984056e, + 0x0a170126, 0x400a0d0d, 0x22054e5e, 0x850a7309, 0x200f8208, 0x05a35e40, 0x09730a22, 0x0f840885, 0x012327a3, 0xb80909b7, 0x308c943c, 0x00000100, + 0x4001fbff, 0x27008501, 0x16250000, 0x06045237, 0x31070722, 0x0b45b118, 0x5d311121, 0x172c0b24, 0x130f0c01, 0x11010111, 0x0cc00f13, 0x2f0b9e47, + 0x0c07c00c, 0x01140908, 0x08091440, 0x910aa00c, 0x1805a541, 0x23073845, 0x00a00a91, 0x02216f85, 0x206f8200, 0x226f8234, 0x6e272706, 0x07840567, + 0x21116c64, 0x48473115, 0x28078507, 0x07063111, 0x0f13ee01, 0x207b83ac, 0x207a8bac, 0x849183ac, 0x11012604, 0x8f0c0803, 0x21828376, 0x8185768f, + 0x384f0120, 0x8f762106, 0x05859e83, 0x14c0fe23, 0x063b4409, 0x8f84fb20, 0x2a001122, 0x200e0141, 0x269b8215, 0x15352717, 0x5b313535, 0x5d180828, + 0x3723076c, 0x41cc0135, 0xac220704, 0x0b41ccac, 0xc00c2105, 0x03411283, 0x2a8f290a, 0x60598f2a, 0x20806060, 0x23051141, 0xa00a0f0f, 0x402c8283, + 0x00000100, 0x8001d9ff, 0x1100a701, 0x33050772, 0x16311107, 0x25371617, 0x26373631, 0x18492527, 0x01011818, 0x202f0483, 0x16010116, 0x9901e0fe, + 0x1c0e0d0e, 0x821ca0fe, 0x0eb02906, 0xb00f1a1b, 0x00020000, 0x01200082, 0x2005a746, 0x0e976a33, 0x210b7079, 0x17193323, 0x2e4e18b2, 0x4f202008, + 0x20210742, 0x880988c0, 0x80012108, 0x230a0254, 0x01140e0d, 0x16542d88, 0x83138806, 0x000027d7, 0x80018001, 0xa7461900, 0x1420471b, 0x84151247, + 0x41ff20e7, 0x372d0aa3, 0x27262706, 0x37363111, 0x31171736, 0x21018215, 0xa3413707, 0x56128506, 0x27230871, 0x42103535, 0x102b05a7, 0x01cbabab, + 0xc0101311, 0x83c00b0b, 0x24a24112, 0x230dab42, 0x37371637, 0xd74f6b82, 0x09245105, 0x6105fb55, 0x07270838, 0x31150706, 0x82263127, 0x31112707, + 0x13121716, 0x7783ab10, 0xaa42ab20, 0x83ab200b, 0x42048481, 0xab432daa, 0x0c05410d, 0x35311728, 0x36373431, 0x7f183233, 0x22280892, 0x35352627, + 0x07310731, 0x21080241, 0x848b0bc0, 0xaa430b20, 0x02003521, 0xe0fff9ff, 0xa001c701, 0x29001200, 0x32130000, 0x16311717, 0x090dc218, 0x33363123, + 0x055d4703, 0xea822120, 0x06171622, 0x27321a87, 0xb00e15e0, 0x1f0d0b14, 0x0e1ea0fe, 0x0eb0140b, 0x4a7be015, 0xa0012413, 0x5c17c010, 0x1823050d, + 0x18fe0fc0, 0x5608bc70, 0x01260852, 0xe0ff0000, 0x7f820001, 0x00001d23, 0x08635137, 0x20067d57, 0x0bcb4527, 0x09090923, 0x054c45c0, 0x45aaaa21, + 0xc0210567, 0x200f83d7, 0x210c85c0, 0x1c85a9a9, 0x0100c024, 0x53824000, 0x53854020, 0x0b6c2520, 0x31072105, 0x25050d69, 0x31373734, 0x81533127, + 0x21eb8205, 0x54a73701, 0x250c8348, 0x003c001a, 0x18410500, 0x063d5d05, 0x07062722, 0x15230182, 0x82161714, 0x35272301, 0x7a183515, 0x3622090c, + 0xe1181637, 0x15250a47, 0x26070631, 0x16516627, 0x230f7b6b, 0x02161602, 0x2218b848, 0x6b4040a8, 0x2a840aa6, 0x57085f66, 0x1a2205a3, 0xa79c2800, + 0xb1580320, 0x2093950c, 0xfcdf1848, 0x208b980b, 0x0a7d6b01, 0xa3470220, 0x001a2208, 0x207f9d3b, 0xda791836, 0x17312209, 0xfa791831, 0x21929511, + 0x79181151, 0x2f2213d1, 0x9e990e0e, 0x79185120, 0x7a180efe, 0xd7410816, 0x9c2e200e, 0x071327af, 0x27060737, 0x7a183127, 0xa2950b93, 0x80807128, + 0x40111180, 0xaa820e0e, 0x11116f22, 0x2f209a9b, 0x1f822a82, 0x2f212483, 0x6730836f, 0x1a240d53, 0x57004400, 0xa143959c, 0x5e332005, 0x06200545, + 0x1aa42019, 0xf94e3720, 0x079a5606, 0x26272223, 0x21be9535, 0x20190656, 0x05211991, 0x92201901, 0x1973410c, 0x0a115b27, 0x1112010a, 0x8120191b, + 0x42032023, 0x38220a33, 0xef9c4b00, 0x23332725, 0x43313533, 0x5b43075f, 0x2726230b, 0x49183736, 0xe39512f2, 0x82182821, 0x06905000, 0x07830820, + 0x04835020, 0xe4192820, 0xd4690d4a, 0x40b02116, 0x1805265a, 0x2008356d, 0x3e7e18d0, 0x8900200d, 0x004225cf, 0x00970084, 0x2507976d, 0x17163115, + 0x69551716, 0x057a5005, 0x4d067a57, 0x35210529, 0x057c5635, 0x58223121, 0x36230825, 0x45373637, 0x032305f9, 0x82311716, 0x0906463e, 0x83311521, + 0x09ab501c, 0x3c843320, 0x830bb66d, 0x416c8a5c, 0xf082141b, 0x31314824, 0xf8850a0c, 0x310c0a24, 0xcc854732, 0x3121158d, 0x24158248, 0x1f200a95, + 0x241d852c, 0x0a201f2c, 0x20338515, 0x20159515, 0xece11895, 0x82c0200c, 0x8a5c9d36, 0xe0fe2188, 0x74895ea1, 0x200cd164, 0x0a7b4100, 0x15000b2a, + 0x00003000, 0x01010125, 0x6307954d, 0x2724056c, 0x25010706, 0x301a364e, 0x01f5fe6f, 0x23f5fe0b, 0x36360201, 0x2e303f52, 0x23088622, 0x63fe0c01, + 0x2017474e, 0x2b1c8223, 0x300c01f4, 0x3636523f, 0x2e220102, 0x23230886, 0x4e6ff5fe, 0x01211557, 0x25008200, 0x8001c001, 0xfb462900, 0x58212014, + 0x212008a2, 0x200e0747, 0x05ea46a0, 0x33016a22, 0x21056241, 0x5372cdfe, 0xd7a02106, 0xa0201983, 0x20051147, 0x05a84169, 0x20067672, 0x06b749a0, + 0x25206f86, 0x4d05c772, 0x45550b0b, 0x0a034d0b, 0x09b70123, 0x21708709, 0x7085cdfe, 0x87330121, 0x9aa92070, 0x00002170, 0x230a1b5b, 0x13000029, + 0x4d08575a, 0x754c08af, 0x4d112009, 0xc69a0b57, 0x9b970121, 0x8d72828e, 0x1f6a1973, 0x09cf4912, 0x8a311121, 0x20c99aff, 0x41728917, 0x6f851172, + 0x01000228, 0x003000a5, 0x6a730100, 0x05704207, 0x7f821620, 0x50373621, 0x3623050a, 0x18373637, 0x61084ea5, 0x510807ac, 0x12330107, 0x314b7001, + 0x15010232, 0x0a181814, 0x02120404, 0x07070901, 0x1b010107, 0x0160291b, 0xa00f1312, 0x0fa00b0b, 0x099d0113, 0x32024014, 0x25384b31, 0x05131425, + 0x0b120202, 0x0d0e0708, 0x1b1b2917, 0x09144001, 0x0a900d08, 0x900a0e0e, 0xff58080d, 0x001d260a, 0x0059003b, 0x194b1877, 0x11aa1808, 0x08e95d0d, + 0x0f0baf18, 0x0cbbc218, 0x56013521, 0x49180949, 0x34240dd3, 0x23232627, 0xa56b3b8c, 0x205d830b, 0x09cf6935, 0x21069e4d, 0x28452060, 0x06e74f08, + 0x71014021, 0x5d420ace, 0x5a602005, 0x338706f6, 0x01211582, 0x873782a0, 0x4e428531, 0x15860773, 0x40212482, 0x06094401, 0x2587388a, 0x20092344, + 0x0d4b5860, 0x18092341, 0x5c09cd70, 0x35211128, 0x1c054103, 0x4c064258, 0x14200523, 0x08134418, 0x26273425, 0x87312323, 0x167d413b, 0x8a06e356, + 0x06f055b3, 0xd887b28a, 0x410a0441, 0x1c55115a, 0x21378a07, 0x2b4100ff, 0x415c8a05, 0x3641076e, 0x4125840a, 0x00200d5c, 0x012d0082, 0xa0001000, + 0xe000b001, 0x00001600, 0x05555a25, 0x2010e85b, 0x736082b0, 0x44180caa, 0x8b450c36, 0x001a240a, 0x473a0027, 0x11201cd7, 0x56054d57, 0x77570540, + 0x21aa4806, 0x47021621, 0xa764058a, 0x1994480c, 0x16028023, 0x82328370, 0x06b95804, 0x2008b87f, 0x08834805, 0x4400112e, 0x64005700, 0x00007100, + 0x17271713, 0x220b8060, 0x18071716, 0x5909ac8b, 0x35200973, 0x20051f64, 0x7a5a1831, 0x55062007, 0x272005a1, 0x20053062, 0x053c4121, 0x37232325, + 0x47373631, 0x0523058f, 0x48153515, 0x3526050a, 0x33052331, 0xe7473323, 0x31232805, 0x2222bf15, 0x72480122, 0x022505d8, 0x0a7f0d18, 0x20a1852a, + 0x06594101, 0x010a2a3c, 0x02251919, 0x18181b33, 0x2502331b, 0x01011919, 0x110b0c50, 0x0c230148, 0x36820218, 0x0190fe36, 0x90140e0d, 0x900001c0, + 0x0e149090, 0x01c0010d, 0x3b3b3b7b, 0x1c822282, 0x13140124, 0xab7b1216, 0x1612210d, 0x02254383, 0x2b292a2a, 0x82598302, 0x143b2225, 0x212e8201, + 0xaa5eb0c8, 0xe0e02105, 0xb0215083, 0x085b45e0, 0x01000225, 0x553f00a0, 0xd28308e7, 0x0617162f, 0x30232307, 0x22313031, 0x30070607, 0x05d54831, + 0x09163819, 0x72056767, 0x262105ca, 0x08238323, 0x2323063b, 0x2d3c1001, 0x3d33122d, 0x01010f58, 0x1948100f, 0x2c212717, 0x0201191a, 0x02021616, + 0x2e2e1034, 0x3643013e, 0x01201f36, 0x05060215, 0x1a1a0f03, 0x60016820, 0x37212201, 0x292e821a, 0x0905010f, 0x2f2e1e16, 0x2c821039, 0x4b101636, + 0x24243a30, 0x27270101, 0x41514142, 0x1b050537, 0x02001010, 0x2906e365, 0x002000c6, 0x1300003b, 0x8f831736, 0x16200583, 0xd3770982, 0x07062105, + 0x22099b45, 0x82373213, 0x262726a0, 0x06310707, 0x82168427, 0x150621ca, 0x51082c82, 0x0e0e9f33, 0x15102529, 0x151a0e0e, 0x09100f16, 0x1e1d0109, + 0x3f3f3233, 0x1d1e3233, 0x2b2b0201, 0x20254347, 0x1207081f, 0x0d190d0a, 0x12120d0c, 0x1a0c0c0e, 0x20010d0c, 0xbb013120, 0x2e260c0b, 0x0c0c1417, + 0x201e1f19, 0x171d1d1f, 0x20353540, 0x1b820120, 0x35352f08, 0x49483c40, 0x1565fe43, 0x24252617, 0x0b1d0c0e, 0x1717100c, 0x200b0c11, 0x34161717, + 0x03001d1c, 0xe0fffeff, 0xa0014302, 0x41002600, 0x6f415e00, 0x70062008, 0x172007e3, 0x8409af78, 0x20b485b8, 0x9d4d1827, 0x0525521b, 0xe4822220, + 0x0afb6b18, 0x06373782, 0x01151617, 0x30303d20, 0x17172324, 0x0b05050b, 0x24231717, 0x863d3030, 0x050c2311, 0x11860c05, 0x14364118, 0x01902c08, + 0x0b1b1212, 0x03020a09, 0x2821210c, 0x09131327, 0x1f191809, 0x01030209, 0x171701a0, 0x23232122, 0x1c0c0c1c, 0x22212323, 0x91011717, 0xfb441911, + 0x1b402914, 0x03011212, 0x0b0a0902, 0x57834f83, 0x13131f27, 0x090a0202, 0x6745180b, 0x001f240c, 0x18510037, 0x21116745, 0x0d413637, 0x05b46f06, + 0x3617272b, 0x16171637, 0x27071417, 0x83198531, 0x230d82f1, 0x26230617, 0x34232982, 0x79312737, 0x278208ed, 0x27373622, 0x0a6d4518, 0x141d6926, + 0x04040b14, 0x2f070241, 0x212a2b33, 0x3928b870, 0x0228293d, 0x080d2711, 0x0724eb86, 0x1c19965a, 0x01301383, 0x050e225e, 0x17170b05, 0x30302324, + 0x4936483d, 0x0b7d4518, 0x201f5224, 0x0c41191f, 0x11102f0a, 0x2591581b, 0x29280201, 0x1e1f263d, 0xe487221e, 0x460c1024, 0x15830af0, 0x4a0a0a24, + 0x3089242e, 0x3a1e0222, 0xfb32ff84, 0x0502e0ff, 0x1200a001, 0x32001f00, 0x16010000, 0xb9511317, 0x3113240a, 0x5d153736, 0x362505c4, 0x26313537, + 0x06ea6027, 0x5705c756, 0x0131050f, 0xd80c1700, 0x170c0a0a, 0x0c1750fe, 0x0cd90a0a, 0x144b4516, 0x01a00125, 0x1890fe13, 0x230739ce, 0x01137001, + 0x571a4345, 0x4024059f, 0x3d00c001, 0x2a0c696e, 0x31073123, 0x31230706, 0x18373726, 0x510a574b, 0x1445078d, 0x31172405, 0x82273133, 0x31332321, + 0x0b821716, 0xe2012b08, 0x031f1f1d, 0x1d1f1f03, 0x13096574, 0x31031238, 0x08052b67, 0x01010d2a, 0x01011f1f, 0x05082a0d, 0x0331672b, 0x09133812, + 0xe67f7465, 0x121c2605, 0x0fb00111, 0x91a21801, 0x010d2b0c, 0x11ac3a06, 0xb00f0103, 0xf3690800, 0x002e2208, 0x064d5f3f, 0x95008525, 0x1a00a700, + 0x18095917, 0x6d0fd08d, 0x212305da, 0x49313531, 0x352905bd, 0x36373431, 0x21210733, 0x83421821, 0x5f17200c, 0x33201041, 0x37201190, 0x180e535f, + 0x8f117484, 0x23559121, 0x09090e80, 0x31061c49, 0x0d0e1430, 0x0140fe01, 0x30140e0d, 0x800e0909, 0x0c82c001, 0x2c19c020, 0xd41809e3, 0x80200a4e, + 0x095a4218, 0x0a668418, 0x94f0fe21, 0x89702016, 0x18012015, 0x82088f70, 0x84202060, 0x20758469, 0x21858220, 0xf26dfec0, 0x10012708, 0x20202050, + 0x3887010f, 0x10200b8a, 0x90204c89, 0x16624218, 0x178b1020, 0x00030032, 0x02dbff00, 0x00a50100, 0x00390022, 0x01000069, 0x0cf7df18, 0x31352724, + 0xfd5c3123, 0x054a4705, 0x36313527, 0x27170737, 0x055d4217, 0x2609354f, 0x05373732, 0x84262706, 0x2726212f, 0x8905146d, 0x1716261d, 0x33163117, + 0x798e1833, 0x15162908, 0x01070714, 0x40101394, 0x2d068f65, 0x2a0a1020, 0x2f1e1f28, 0xf0130120, 0x09832828, 0x20064149, 0x2b188240, 0x13101301, + 0x30200113, 0x100a991d, 0x2f211687, 0x820c821e, 0x2142852d, 0xdd669e01, 0x08082f08, 0x380d2015, 0x01252a35, 0xf9091520, 0x09833535, 0x2b059349, + 0x0ebc380d, 0x20150907, 0x0dcd2501, 0x09831185, 0x3b872582, 0x00820020, 0xfeff012a, 0x0002e0ff, 0x3e00a001, 0x27088b7b, 0x07063131, 0x07062722, + 0x26210583, 0x598d1837, 0x21098509, 0x07823135, 0x71733720, 0x27262105, 0x16210785, 0x82018317, 0x22223646, 0x3848393a, 0x26231330, 0x03050a2c, + 0x03020107, 0x05110807, 0x0c66732f, 0x2f3ad038, 0x011b1c2f, 0x11110e12, 0x070a0a02, 0x04020101, 0x251a0e07, 0x17854534, 0x1c1b0125, 0x823a2f2f, + 0x0300219a, 0x28085f60, 0x00310020, 0x13000042, 0x05d34815, 0x85171621, 0x31352276, 0x62481823, 0x210d820a, 0x77193335, 0x294c0752, 0x21152105, + 0x002c108f, 0x331d1e01, 0x323f3f32, 0x011e1d33, 0x08d96b18, 0x00828020, 0x2106b448, 0x0b8a4001, 0x60602023, 0x852a8560, 0x6d602036, 0x60210874, + 0x07994120, 0x002c0787, 0x20000100, 0xe0016000, 0x1d006001, 0x3626ab82, 0x32313133, 0xee721717, 0x22232405, 0x56312727, 0xe9200a23, 0x21135856, + 0x2c565701, 0x82002011, 0x20578300, 0x20578220, 0x21578320, 0x57831637, 0x835d3720, 0x0ba95f05, 0x14150624, 0x57941717, 0x56922920, 0xfbff022f, + 0x45020000, 0x2d008001, 0x00005b00, 0x42501825, 0x31232109, 0x2405f757, 0x37363133, 0x85b58236, 0x17062163, 0x07150219, 0x997a0782, 0x206f8205, + 0x059d5e16, 0xc1691520, 0x27262617, 0x01232726, 0x055f4a10, 0x66197020, 0x40200781, 0x24093f68, 0x291b1b01, 0x06694c70, 0x07231f8f, 0x85201509, + 0x05bd421f, 0x80200582, 0x240b8c69, 0x1b1b2980, 0x0ab84c01, 0x00341c91, 0x00030000, 0x02baff00, 0x00c0013e, 0x0039002c, 0x13000046, 0x25054d4a, + 0x17163121, 0x957f0716, 0x31212205, 0x830d8217, 0x07062211, 0x28fd8321, 0x26310327, 0x26312323, 0x70671827, 0x8325200c, 0x07062131, 0x2b08d382, + 0x00373637, 0x222e1602, 0x149b0110, 0x29040b0c, 0x19131307, 0x0505e0fe, 0x16200113, 0xfe160202, 0x14131be0, 0x06013405, 0x8002162e, 0x210bc560, + 0x06615001, 0x82a8200c, 0x011e352c, 0x99130f0f, 0x1d0f0e18, 0x16020112, 0x10110216, 0x070f0119, 0x48204382, 0x69182a8b, 0x0f500cbe, 0x00a02508, + 0x17000021, 0x0cb6e618, 0xbe822320, 0x7207296e, 0x162605aa, 0x80014017, 0x451880fe, 0xa02609fc, 0x13130a10, 0x926c8020, 0x08d66e09, 0x19190d23, + 0xcd461801, 0x00003609, 0xfffcff02, 0x014402e0, 0x001d00a0, 0x37000031, 0x11073707, 0x05a64631, 0xe0443220, 0x07be4606, 0x17070623, 0x3bb71936, + 0x3121270a, 0x37262726, 0x00825937, 0x76265083, 0x131a131a, 0x7283751b, 0x24b0fe31, 0x120a1b13, 0x0a129001, 0x0a700808, 0x8470fe12, 0x98e02508, + 0x18019898, 0x29822083, 0x202a3283, 0x0f101f01, 0x100f0101, 0x0686c010, 0xf7820020, 0x07176219, 0xeb513d20, 0x1b795f16, 0x230cff51, 0x0d0d0ab7, + 0x085d7b19, 0x0c832920, 0x0edd6519, 0x66191387, 0x0925081c, 0xdafe2a09, 0x546c192a, 0x26012110, 0x9f831387, 0x40000027, 0x40010002, 0x239f8200, + 0x37073725, 0x530fdc5f, 0x31200c66, 0x09627219, 0x21212785, 0x09145331, 0x60970124, 0x92866060, 0x4920799f, 0xcea62a82, 0xbb510020, 0x00022a05, + 0x2000a001, 0x4d003700, 0x67c51900, 0x21152350, 0x544f2121, 0x09cc4f07, 0x1a67c519, 0x8306754e, 0x19202006, 0x180f67c5, 0x19148c72, 0x181682c6, + 0x550c9c54, 0xd2660cb1, 0x0c0b650c, 0x00152008, 0x004c003f, 0x07371300, 0x15313337, 0x26312331, 0x23070627, 0x33313531, 0x07373231, 0x72111111, + 0x11200930, 0x26211b82, 0x051c4827, 0x0b832183, 0x24053f77, 0x36170706, 0x85861837, 0x32dd2e09, 0x73b13232, 0x212c2c21, 0x0e0f8073, 0x794918dd, + 0x0fb12e0d, 0x0120330d, 0x010f400f, 0x0112121b, 0x9b8b18a8, 0x4701310b, 0x60191919, 0x17010117, 0xfe070740, 0xfe2001e0, 0x5e084270, 0x072105d4, + 0x05114319, 0xb0245183, 0x18181a32, 0x074c8c18, 0x8b4ed282, 0x00022105, 0x2106e744, 0xbc702500, 0x07062b09, 0x17140706, 0x15063107, 0x254f3115, + 0x21de8305, 0xe4853736, 0x16313724, 0xd8441333, 0x5001290b, 0x0232314b, 0x4b313202, 0x08280783, 0x160207a1, 0x28021650, 0x0a240282, 0x1c1a2107, + 0x0cf2d318, 0x26876020, 0x1c240783, 0x0a07a11a, 0x2805e258, 0x07281602, 0x00010821, 0x0fda1801, 0x34a4820a, 0xff000004, 0x017802c0, 0x006100b8, + 0x00ce006e, 0x010000db, 0x41d71836, 0x31072408, 0x82272726, 0x05c35503, 0x82070621, 0x5f0720b1, 0x09830505, 0x17170622, 0xc784c182, 0x82161721, + 0x05435f0b, 0x33280986, 0x37363732, 0x37363137, 0x8305537b, 0x82362009, 0x3536254b, 0x07372734, 0x210b9b41, 0x28861601, 0x32841e84, 0x78852483, + 0x84057870, 0x227c8282, 0x8f222326, 0x2292847e, 0x86141506, 0x86968280, 0x82162009, 0x82162049, 0x18172084, 0x080c446d, 0x0b350128, 0x03040405, + 0x0e0a0505, 0x0614101d, 0x0b0a0e04, 0x040f0a0a, 0x1c101406, 0x05050a0f, 0x05040403, 0x0202160c, 0x25830c16, 0x0a060424, 0x25831c0f, 0x820a0f21, + 0x20259200, 0x0c4846c4, 0x0f0a893a, 0x07060708, 0x09050c07, 0x0f1d080d, 0x03010103, 0x0d081d0f, 0x070c0509, 0x08261682, 0x0a140a0f, 0x04820b0b, + 0x05212582, 0x22259308, 0x88070508, 0x46292025, 0x39200c95, 0x348b5a99, 0x808b2599, 0xfe215a8c, 0x0d1041bb, 0x0c20ea97, 0x41063641, 0x00302a10, + 0xfffeff02, 0x018202c0, 0x002800c0, 0x37000059, 0x600dff42, 0x06260558, 0x23310607, 0x01823031, 0x4a170621, 0x16220542, 0xb0503717, 0x05e85005, + 0x36210585, 0x05e84a27, 0x31313029, 0x22353031, 0x68272631, 0x0583055e, 0xd0151622, 0x0b75f918, 0x27013408, 0x06070906, 0x01010103, 0x0b040308, + 0x0b0e1c22, 0x03f03a2f, 0x135a3e3d, 0x3a493636, 0x1c0e0b2f, 0x03040b22, 0x03010109, 0x06090706, 0x36020127, 0x43015336, 0x3e080c35, 0x0a0f2c3b, + 0x01030509, 0x0a0b0701, 0x060b0101, 0xb0011706, 0x09383856, 0x01242339, 0x06061701, 0x0a01010b, 0x0101070b, 0x0b090503, 0x473b2c0e, 0x08073131, + 0x00000008, 0xff140002, 0x82b101bb, 0x001525ef, 0x01000019, 0x13cf5118, 0x32131127, 0x20012333, 0xc1511813, 0x028e250d, 0xc0010301, 0x0eb65118, + 0xfeb80122, 0x00205383, 0x24060b4c, 0x00570029, 0x12c15900, 0x460b7f57, 0x372009ac, 0x210c3d4a, 0x55190706, 0x01580991, 0x18312008, 0x2209294a, + 0x18f70133, 0x20091645, 0x051a4ad3, 0x474ad321, 0x80220558, 0x1085a9fe, 0x1b294028, 0x1b01011b, 0x5d4b291b, 0x20168607, 0x934518a9, 0x05164a0b, + 0x07ad4518, 0xb818b720, 0xeb670900, 0x08354a05, 0x67000121, 0x022c05dc, 0xc0fffdff, 0xc0018301, 0x3d002e00, 0x2412a96c, 0x31173123, 0x059f6216, + 0x83212321, 0x683720b1, 0x114b05d9, 0x33132305, 0xfa5c3323, 0x8220200a, 0x8258845e, 0x0b1d3307, 0x05011639, 0xfe100a09, 0x090a10c0, 0x39160105, + 0x72821e0c, 0x83198020, 0x486d0987, 0x1f942709, 0x0e0f0340, 0x57180d0d, 0xfe210821, 0x06b946a0, 0xc7456020, 0x0029240d, 0x5900005d, 0x71410c1b, + 0x8b41180a, 0x2734250c, 0x07232326, 0x11d75018, 0x0d7d6518, 0x64312121, 0x332005f1, 0x2008f55b, 0x07d36623, 0x19ca5321, 0x2b0f907c, 0x1722f0a0, + 0x16010116, 0x40012217, 0x4b410983, 0x0f012705, 0x010fc0fe, 0xd47b0f01, 0x01702206, 0x201785c0, 0x054049c9, 0x4153ca21, 0xec8305a5, 0x3b832020, + 0x87c0fe21, 0x83318745, 0x4001233d, 0x3785010f, 0x4618f082, 0x2d2209f3, 0xef825700, 0x2106236f, 0xbc5e3111, 0xba581805, 0xf48d1809, 0x09844209, + 0x635c0720, 0x16a14211, 0x40600122, 0x0e505218, 0x200f6142, 0x19944209, 0x82600121, 0x0a2e72ae, 0x1b1b0125, 0x6a000129, 0xb720098c, 0x20199442, + 0x05a75f00, 0xc0014028, 0x5b004d00, 0xe1826800, 0x23332322, 0x2105c863, 0xc25b3123, 0x16172108, 0x8908cc77, 0x0d3c43f1, 0xf0193420, 0x3625084e, + 0x23272637, 0x05b74631, 0x7f330521, 0xa34405ff, 0x06052205, 0x059e4b07, 0x07366082, 0xe0e09001, 0x0d0e14e0, 0x02166a01, 0x23161501, 0x1f252521, + 0x00820b11, 0x69791020, 0x06784906, 0x82101a21, 0x0b2e0813, 0x25251f11, 0x15162222, 0x6a160201, 0x140e0d01, 0x5454a1fe, 0x0e0e0754, 0x18232611, + 0x01041112, 0x1126239f, 0x54070e0e, 0x19111104, 0x2183c001, 0x0208082f, 0x31324516, 0x12122021, 0x0d0c0508, 0x6646820f, 0x0b310c1c, 0x0c0d0f10, + 0x12120805, 0x32312120, 0x08021645, 0x358c8308, 0x2f2f4370, 0x1721101e, 0x8e312323, 0x2f1e1021, 0x2331432f, 0x535f1723, 0x0028270b, 0x0055004c, + 0x4e180100, 0x3a4f0c0c, 0x3631220a, 0x0c564f33, 0x89180720, 0x466612c5, 0x31352609, 0x37363736, 0x718d1805, 0x18012007, 0x791be249, 0x1e4d0a73, + 0x1d971908, 0xe649180a, 0xf3532309, 0xea42f3f3, 0xe9491805, 0x08817b13, 0x10ef4918, 0xfb7b6820, 0xfeff2b0a, 0xc201deff, 0x3200a201, 0xed824500, + 0x31272627, 0x22272631, 0x18b98207, 0x58096548, 0x1721071e, 0x22c38232, 0x42161736, 0x27210502, 0x20078326, 0x06f04335, 0x0e850620, 0x1e823720, + 0xc0010723, 0x32738201, 0x1211090a, 0x39391113, 0x142b2c38, 0x04040e13, 0x96030603, 0x2aeb3216, 0x050d1f20, 0x0f030e0e, 0x0e322525, 0x010d0305, + 0x82bc8360, 0x04042f30, 0x2b14130e, 0x3939382c, 0x11121311, 0x16960a09, 0x1f0d1f31, 0x030d2a20, 0x25320e05, 0x0e030f25, 0x5500050e, 0x0227059f, + 0x2700c201, 0x84130000, 0x070721d5, 0x2008e842, 0x06dd7936, 0x26312722, 0x4a081582, 0x27262726, 0x27363137, 0x0d06a527, 0x1b580f0e, 0x3c3c0102, + 0x1d7d6565, 0x0603180a, 0x1b600f06, 0x2a352813, 0x15311929, 0xa7012809, 0x0306060f, 0x7d1d0a18, 0x3c3c6565, 0x581b0201, 0x060d0e0f, 0x31150928, + 0x352a2919, 0x451b1328, 0xe028083b, 0xa001c001, 0x39001900, 0x180ecb6a, 0x230e3592, 0x16311717, 0x16218182, 0x867f8217, 0x09a9590b, 0x91183720, + 0x5b31140e, 0x05140710, 0x361a190a, 0x300e0915, 0x040c030e, 0x0619520f, 0x182c0e21, 0x21152955, 0x27820361, 0x36140a35, 0x050a191a, 0x2c100714, + 0x1e01010e, 0x3f32331d, 0x180c040f, 0x200b6747, 0x08e36a37, 0x19055e70, 0x2008d10e, 0x05e35a27, 0x2005e15b, 0xc14c1815, 0x90353512, 0x22171601, + 0x0a131318, 0x0c0d0c06, 0x0605040c, 0x2c222212, 0x0c084818, 0x2b090e6b, 0x223001f0, 0x0d011617, 0x040c150c, 0x0c262982, 0x16250d0c, 0x48180116, + 0x30201607, 0x2a06274e, 0x00a00140, 0x00220011, 0x413d0030, 0x6c7f084f, 0x27262405, 0x19212726, 0x441069d2, 0x0621058e, 0x053b6507, 0x6a511720, + 0x340e8505, 0x12121b40, 0x01400201, 0xfe1b1212, 0xfd000240, 0xfd4002c0, 0xbc4918c0, 0x30fe2109, 0x0e479a18, 0x010f8024, 0x04830f01, 0x2483a020, + 0x83202021, 0x18c0203e, 0x2008e749, 0x329618c0, 0x18102008, 0x2807a140, 0x00030000, 0x01d7ff00, 0x24b382c0, 0x002b001e, 0x08e1474c, 0x6e059d54, + 0x2a450719, 0x27222405, 0x4c113526, 0x13200b1a, 0x2305fc64, 0x17163131, 0x342c2991, 0x00333637, 0x740e0909, 0x38375e5e, 0x2806bc46, 0x4f2f2f01, + 0x090e6250, 0xfdc51809, 0x4150240c, 0x87262741, 0x1d1e2421, 0x443f3233, 0x01210528, 0x25078280, 0x5e373801, 0x1085745e, 0x4f506224, 0x28832f2f, + 0x18a0fe21, 0x270b6b69, 0x26010001, 0x50414127, 0x61422485, 0x05564505, 0x260bbb4f, 0x002f0015, 0x42550042, 0x21200839, 0x162eb582, 0x26311517, + 0x06312127, 0x21173507, 0x99512121, 0x10084505, 0x4609e753, 0x43180768, 0xda73122a, 0x261a250a, 0x1a2680fe, 0x450e4252, 0x377b0a14, 0x3b43180d, + 0x4560200c, 0xb8260708, 0x17010117, 0x4818c0b8, 0x088808cc, 0x540c7d7c, 0xf8850605, 0x2308cf4e, 0x003b00c5, 0x071f6b18, 0xdb820720, 0xbe190620, + 0xae180cc7, 0x33220d2a, 0x904d3231, 0x36372605, 0x36313537, 0x05224737, 0x15073527, 0x31151535, 0x052a6126, 0x24823120, 0x012b1e82, 0x131301e0, + 0x2e252b10, 0x4509332f, 0x015608eb, 0x33092906, 0x2b252e2f, 0x01131310, 0x40348b85, 0x3c37372d, 0x373c0909, 0xa0012d37, 0x0e070915, 0x1314242c, + 0xe084c383, 0x34064b61, 0x24131480, 0x09070e2c, 0x10079415, 0x10151510, 0x4d940611, 0x35008283, 0x60161528, 0x00281516, 0xfffeff01, 0x010202be, + 0x005f00c2, 0x5d181300, 0x072408e2, 0x31171706, 0x0785d784, 0x0f82bf84, 0x37161723, 0x7fec1837, 0x07d54e08, 0x27230784, 0x18373127, 0x180ba9cf, + 0x080d556e, 0x0726272a, 0xd3273107, 0x030e0d0a, 0x0a0e3e10, 0x3f120309, 0x0903040d, 0x03092f2f, 0x123f0d04, 0x0e0a0903, 0x0e03103e, 0x2d2d0a0d, + 0x04212382, 0x21238a0f, 0x23912e2e, 0x91b90121, 0x21379c13, 0x5b87040f, 0x00207f8e, 0x05200082, 0x2b05e04a, 0x0f008001, 0x3c002500, 0x8a005200, + 0x4908b768, 0x352305ee, 0x18073331, 0x68095546, 0x37200a78, 0x2006e060, 0x09635931, 0x0a485618, 0x2c096379, 0x33363734, 0x23332733, 0x14150633, + 0x07664917, 0x07174b18, 0x4305d159, 0xe3430518, 0x31352307, 0x375b2726, 0x17162205, 0x06b06101, 0x4bd0d021, 0xe25706ae, 0x09092308, 0x0c42300e, + 0x20068305, 0xf0841860, 0x0158370d, 0x0b090101, 0x090c0c13, 0x2d2d4409, 0x0c2e0102, 0x1b1b3525, 0x70181212, 0x0f2707b1, 0x1401010f, 0x52011f14, + 0x40200686, 0x0c7f4018, 0x51856286, 0x3f43a020, 0x0e60390b, 0x06101412, 0x12151011, 0x2d2d020e, 0x2f423e44, 0x0101250b, 0x581b1212, 0x2005ba61, + 0x25568238, 0x141f380f, 0x5b410114, 0x0ca75718, 0x18313521, 0x64075568, 0x27200e3f, 0x1805b57c, 0x220c9a50, 0x7b150607, 0x1a8a0af6, 0x33233727, + 0x14151623, 0x05b04a07, 0x096bf118, 0x43097456, 0x32230593, 0x18353637, 0x2307fb91, 0x07060706, 0x4106dd43, 0x0b213f5a, 0x6e5a4126, 0x00000528, + 0x8001c0ff, 0xb342c001, 0x34132f0b, 0x36313137, 0x16173233, 0x23311515, 0xf66c3531, 0x0a214e0a, 0xc9422720, 0xe5581805, 0x292c950f, 0x35153507, + 0x37323316, 0x05831716, 0x090f4c18, 0x26312724, 0x74573527, 0x15162108, 0x1805ea42, 0x21070c51, 0xcf4a3736, 0x51544206, 0x07a44f18, 0x2055b141, + 0x14574100, 0x89421720, 0x053b4205, 0x15312323, 0x290f8b37, 0x23262734, 0x15060722, 0xc3460715, 0x0bdd4e05, 0x16171423, 0x292c9533, 0x15351527, + 0x17323336, 0x05833736, 0x5407fd6c, 0x2b6d055d, 0x05294608, 0xf16d2320, 0x17162109, 0x43585741, 0x63444608, 0x47002015, 0xc0240837, 0x34001a00, + 0x2008c77a, 0x05116526, 0x17160722, 0x2a055f42, 0x37363736, 0x16173625, 0x18310707, 0x180715ac, 0x2308b06c, 0x00023737, 0x3617826c, 0x1111d7fe, + 0xd6470e0e, 0x16020216, 0x0e0e47d6, 0x0e701111, 0x6cc0700e, 0x8120137e, 0x47251d83, 0x02161602, 0x20338347, 0x502a8270, 0x9f840ddf, 0x75493720, + 0x33162205, 0x6a918232, 0xab8606c7, 0x27060525, 0x6f373726, 0x14710886, 0x98b38207, 0x2901219e, 0x02249ebc, 0xc0ff0000, 0x3b41fc82, 0x1a7f7306, + 0x07161322, 0x22077678, 0x18352726, 0x22084cac, 0x70171736, 0x0c41150a, 0x19416812, 0x3b41c494, 0x51012012, 0x905605f1, 0x05cf5405, 0x2405f148, + 0x26032726, 0x208b8237, 0x7c971831, 0x0716230b, 0xb3823107, 0x01209fa8, 0x18705a18, 0x82150442, 0x092f08a0, 0xbfff0000, 0xc1010002, 0x1a000c00, + 0x34002400, 0x4c003e00, 0x63005b00, 0x00006d00, 0x23071425, 0x34352631, 0x16313337, 0x23333715, 0x83151633, 0x2ab18311, 0x23332337, 0x17162726, + 0x82231716, 0x37362109, 0x17210182, 0x890d8236, 0x0706220f, 0x06d34707, 0x17264385, 0x31332726, 0x01820706, 0x27062724, 0x3b822726, 0x06822620, + 0x41213321, 0x36270511, 0x60013337, 0x8203ba03, 0x1d230802, 0x087b7b7b, 0x03037b08, 0x74747470, 0x2d3c2810, 0xb095172c, 0x1209b0b0, 0x0b111110, + 0x1011110b, 0x82d10912, 0x2c172619, 0x10283c2d, 0x212c827f, 0x2f820303, 0x0912bb22, 0x3c20228a, 0x74223785, 0x26826601, 0x10273b28, 0x1f21c075, + 0x0383211f, 0x06854020, 0x201f213b, 0x27113662, 0x28373828, 0x010f1023, 0x23100f01, 0x28383728, 0x62361127, 0x22218720, 0x893728ff, 0x855f201d, + 0x4322852e, 0x34230bb3, 0x59003d00, 0x342007bb, 0x2625d182, 0x06310707, 0x19f38223, 0x19071354, 0x21083b1d, 0x19821714, 0x16152c08, 0x32171617, + 0x16313737, 0x17160533, 0x27260706, 0x60013736, 0x022d2d44, 0x07080306, 0x07054d06, 0x05010f39, 0x0201054d, 0x83171508, 0xb60a2d16, 0x13130114, + 0xb6141c1d, 0xf0fe1d19, 0x37078d65, 0x2d2d0280, 0x08151744, 0x4c060102, 0x390f0105, 0x064d0507, 0x06030807, 0x1d2b1683, 0x1c14b51a, 0x0113131d, + 0x7209b514, 0x003b088c, 0xff060000, 0x02f0fff9, 0x00a70100, 0x00290014, 0x00570040, 0x007b006e, 0x84161300, 0x742220b1, 0x15200cc3, 0x37201493, + 0x72054347, 0x31250a3c, 0x35262722, 0x18169515, 0x59162543, 0x98300c6f, 0x07480d0f, 0x28070b0a, 0x11110e0e, 0x12103716, 0x48200f8f, 0x1b5b4618, + 0x1c824020, 0x0c634418, 0x15597020, 0x109a2f0c, 0x07085012, 0x0e111128, 0x0f3d160e, 0x0e8da00d, 0xbf496620, 0x09fe5405, 0x5508c849, 0x128209f8, + 0x2b0dc65f, 0xfaff0100, 0x0602dbff, 0x1a00a001, 0x08f58718, 0x07071622, 0x0808cd7c, 0x35352630, 0x26312731, 0x190b0437, 0x0b19b001, 0x01b70f0a, + 0x40101111, 0x0a0fb70d, 0x01168901, 0x13171601, 0x0a137fe0, 0x0a300b08, 0x13e04f10, 0xdb5c0017, 0x00c0260a, 0x002f000d, 0x20578250, 0x65801933, + 0x3515220c, 0x07505015, 0x47213321, 0x1647070e, 0x07062409, 0x18332305, 0x62081a94, 0x23200508, 0x2005b27a, 0x05425117, 0xb8352508, 0x07909090, + 0x0701a001, 0x121b4038, 0x01c00112, 0x12120140, 0x0f01401b, 0x18901810, 0x01010f10, 0xc0c0c080, 0x20064a4d, 0x0afd5cc0, 0x0701902a, 0x01072828, + 0x28282808, 0x60211583, 0x203d8360, 0x82318428, 0x47e8203a, 0x98600617, 0x7f802009, 0x61200a8b, 0x620b8b7f, 0x845d0689, 0xbd9a1805, 0x3537220c, + 0x05c65d31, 0x154d4c18, 0x17514b18, 0x4f4d3320, 0x066b7f05, 0x09070e25, 0x62602015, 0x60200b68, 0x980a3365, 0xb701211d, 0x8206da65, 0x0808222d, + 0x06e3620e, 0x00354ba7, 0xff000006, 0x018002c0, 0x000c00c0, 0x00300019, 0x00610046, 0x6ddc1874, 0x5d21200e, 0xe15a0ca7, 0x31333305, 0x15061732, + 0x31301716, 0x31233130, 0x30052726, 0x0a823131, 0x34373623, 0x048a1827, 0x07062307, 0xe9182723, 0x032019bc, 0x5c824787, 0x07061723, 0x20438221, + 0x08621890, 0x4ad4180c, 0x00fe3e0c, 0x2e1e1e01, 0x0215182a, 0x13d62902, 0x29950102, 0x18150202, 0x1e1e2e2a, 0xd6130201, 0x2f5018b5, 0x01603113, + 0x76382626, 0x01262638, 0xb6fe1902, 0xc0010219, 0x0b0c6218, 0xfe210b8b, 0x2c4783d5, 0x3b0b0b0a, 0x15130225, 0x0b0b3b25, 0x226d830a, 0x18600213, + 0x2113ba50, 0x5383fbfe, 0x19245c83, 0x00190202, 0x022c0082, 0xd1ff1200, 0xaf016e02, 0x7b003d00, 0x2408bf5a, 0x07262726, 0x077b6b07, 0x31373723, + 0x066c5736, 0x23221382, 0x1d822722, 0x0b97f518, 0x49063121, 0x37250621, 0x31150625, 0x05c36c31, 0x86056f4f, 0x21318347, 0x33833435, 0x83323321, + 0x617c182b, 0x8336200c, 0x2339081d, 0x02070722, 0x272a2a44, 0x022c3334, 0x0802020b, 0x0b0d0c08, 0x1d1c1902, 0x71171716, 0x19202019, 0x11020215, + 0x02020701, 0x0d0c0b0b, 0x041f0108, 0x392d2604, 0xfd702d3a, 0x213384f8, 0x3382012d, 0x88090721, 0x70182133, 0x25083398, 0x2db4712c, 0x252d393a, + 0x011f0405, 0x0c0c0d08, 0x0803020a, 0x02021101, 0x21201915, 0x17177118, 0x191c1d16, 0x64820b02, 0x6c820820, 0x342c0228, 0x2a2a2733, 0x32a21870, + 0x080c0d22, 0x002f328b, 0x00010000, 0x02e0ff00, 0x00a00180, 0x49000028, 0x104406b5, 0x82262005, 0x059570f3, 0x18072221, 0x2008bf99, 0x05a16f15, + 0x02004408, 0x013d2928, 0x24253670, 0x1d1c0101, 0x1b01062c, 0x171e291b, 0x2d242416, 0x022d2d44, 0x011a1a2b, 0x28293d70, 0x25240102, 0x23222f36, + 0x29121109, 0x10011b1b, 0x01151624, 0x442d2d02, 0x24100404, 0x6f003024, 0xc0240867, 0x40002e00, 0x0d796018, 0x14311527, 0x06310707, 0x09a76115, + 0x27273425, 0x18352631, 0x2d12ee83, 0x31171714, 0x31373123, 0x20013536, 0x97458080, 0x6d092f06, 0x1413010a, 0x1d36011d, 0x0a011314, 0xc1450a6c, + 0x60202705, 0xab231340, 0xdf5a1322, 0x12852507, 0x1411b00f, 0x2c832283, 0xb0111425, 0x4585120f, 0xc52105e1, 0x25008285, 0x38381f24, 0x9f53241f, + 0x01c03205, 0x00c001fe, 0x003d0030, 0x0057004a, 0x17270100, 0x051c4127, 0x59070621, 0x322705ed, 0x07311737, 0x87232631, 0x3736370f, 0x27343736, + 0x27363101, 0x07222326, 0x27171707, 0x32331617, 0xc6823637, 0x54270721, 0x17200ba0, 0x2c0cfd43, 0x27272700, 0x1f200107, 0x201f3030, 0x25078301, + 0x27271316, 0x0d871613, 0x072d0783, 0x0b0b1a01, 0x161d1d16, 0x7676178d, 0x24088376, 0x409c0b0b, 0x0b4760d7, 0xe3463020, 0x8e53830c, 0x28272242, + 0x28648c08, 0x0d1b0112, 0x8d15150d, 0x26518297, 0x0d0d1515, 0x8be7409c, 0xf4901842, 0x0ab7410c, 0x3d001b22, 0x25058946, 0x31171732, 0xde4e1516, + 0x05925c09, 0x0737362d, 0x15332333, 0x11312331, 0x45313331, 0x062605c4, 0x23070607, 0x41182631, 0x372c07a6, 0x7c7c7cd0, 0x0e440e14, 0x140e0d01, + 0x085e4218, 0x5050a024, 0xef184050, 0x01210e6b, 0x252582c0, 0x0e14dc14, 0x2b83010d, 0x83200121, 0x40802309, 0xef1800ff, 0x13850945, 0x00010034, + 0x01c4ff04, 0x00b701bc, 0x0100004e, 0x31310726, 0x45180722, 0x33200c9b, 0x5a05c864, 0x16200f7c, 0x0857b019, 0x09442620, 0x18138509, 0x0808b151, + 0x136c0129, 0xb8131919, 0x2b212020, 0x0998212b, 0x08090b0b, 0x41339808, 0x30303341, 0x2f2f25b8, 0xb0232325, 0x171d1d17, 0x85901515, 0x0a90271b, + 0xb00c0c0a, 0x37821313, 0xb8120122, 0x20243483, 0x08089820, 0x98221c83, 0x38833030, 0x2323b822, 0xb0223883, 0x38831515, 0x1b859020, 0x0c0c9025, + 0x83b00a0a, 0xef54186a, 0x01c02808, 0x001b00a0, 0x57420035, 0x112008b1, 0x260c3b58, 0x31272734, 0x49232326, 0xa3500c68, 0x056f5305, 0x68423520, + 0x0e0a590c, 0x134d1324, 0x4c18f31a, 0xbe560d79, 0x68a0200d, 0x09830940, 0x821af321, 0x0e2f5331, 0x3057a020, 0x44b6820b, 0x0120055b, 0x1805b759, + 0x181a236e, 0x1814a8ac, 0x2215a461, 0x84030000, 0x01c02858, 0x00160080, 0x5844002d, 0x4d18080b, 0x06410fab, 0x20168f06, 0x158d7605, 0x106f4c18, + 0x0f954d18, 0x11d34f18, 0x0d4ea619, 0x8c0c0e4a, 0x0000330c, 0x0a000600, 0x0002f0ff, 0x0c009001, 0x38002200, 0x315e4e00, 0x18132005, 0x260bf269, + 0x31072237, 0x18150631, 0x183a8c4f, 0x180c416a, 0x200c468d, 0x0bca4340, 0x4b06d756, 0x224b0c12, 0x200f8c0f, 0x18b06a80, 0xf74a0120, 0x1850200c, + 0x20258c4f, 0x0ba74450, 0x0c43d718, 0x00050024, 0xb36eff01, 0x001c2905, 0x00570041, 0x0083006d, 0x1907d76b, 0x20095808, 0x3ebd1826, 0x2613310a, + 0x06310707, 0x37372627, 0x36373631, 0x14071617, 0x200af950, 0x21178526, 0xb9681327, 0x15cf6814, 0x18261595, 0x16201602, 0xeb7f1002, 0x08103508, + 0x0d3f0216, 0x130f0b0b, 0x130c0b11, 0x10161d1d, 0x21231001, 0x58281e83, 0x0905070f, 0x89070848, 0x2114e168, 0xc418ff00, 0x27941099, 0x4a838820, + 0x64187820, 0xfe250a69, 0x100c0be3, 0x296f8211, 0x01011910, 0x18171317, 0x1d832612, 0x0f0d0128, 0x0b0a4e0b, 0x7a411501, 0x82002025, 0x00022e00, + 0x02d8ff00, 0x00a80100, 0x00790040, 0x06086d00, 0x835e1620, 0x26272105, 0x2708be76, 0x15143130, 0x17161706, 0x7e097761, 0x23230955, 0x45313131, + 0x262705c2, 0x07161737, 0x84060706, 0x06516536, 0x38820f83, 0x03823220, 0x85313021, 0x205e8201, 0x21098317, 0x045d3131, 0x23210805, 0xa1171631, + 0x38211d05, 0x0a14140a, 0x040b0b0d, 0x0d070603, 0x0b15160c, 0x0e3a3745, 0x0a070e04, 0x0db9785d, 0x01d22708, 0x050d1f37, 0x05bc0105, 0x211e0403, + 0x14140e38, 0x02030113, 0x0b0d0506, 0x0504040c, 0x03020d06, 0x19130404, 0x3e831318, 0x4c080532, 0x3001040a, 0x080e0d1a, 0x03030402, 0x0d070603, + 0x042c6184, 0x170c0105, 0x01014017, 0x0a0e1d23, 0x290b2f41, 0x0a0a120f, 0x09c11308, 0x32831b15, 0x0123bd82, 0x83010201, 0x205d8255, 0x2e0a8205, + 0x03080707, 0x4018160c, 0x09081b1f, 0x70020000, 0x462208bb, 0x59185d00, 0x152014b5, 0xb551dc82, 0x31352105, 0x0f235718, 0x4705e555, 0x26200526, + 0x24066572, 0x35262722, 0x24571803, 0x7b102015, 0x102009b6, 0x07457918, 0x0e1f5818, 0x2d2d0227, 0x2d2d4444, 0x83168302, 0x1d57182e, 0x4e80200d, + 0x546f08bf, 0x1b1b2205, 0x0c9b5b29, 0x3a838020, 0x15834283, 0x2d89fe20, 0xc8187782, 0x002608c7, 0x0800a001, 0x75181100, 0x3729078b, 0x33351535, + 0x23311531, 0x06da4715, 0x87173521, 0x23372511, 0x31352333, 0x25201c82, 0x2111b364, 0xef833111, 0xa0402122, 0x75180084, 0x705c078c, 0x08ad5b0a, + 0xc080fe23, 0x20008260, 0x83038240, 0x60a02302, 0x7b46e060, 0x05fb5e0d, 0x0c7f4518, 0x2200192d, 0x26170000, 0x34313135, 0x62310137, 0x2b080948, + 0x23063101, 0x01272722, 0x27370737, 0x17310731, 0x010e0e0e, 0x13130f7d, 0x0e0e230f, 0x130f83fe, 0x01230e14, 0x6969694e, 0x0f186918, 0x0e35cc19, + 0x1a820e20, 0x1a851320, 0x00216a82, 0x08c74d04, 0x4a003f26, 0x64005700, 0x180e8547, 0x231fe79a, 0x31353135, 0x8206a147, 0x27262b09, 0x05212726, + 0x17332333, 0x9a181531, 0x4b181de9, 0x00420884, 0x08dc7208, 0x3306594f, 0x1a134d13, 0x0e0d0133, 0x01c0fe14, 0x33333370, 0xd0fe804d, 0x500c536a, + 0xc0200df0, 0x14232a85, 0x18010d0e, 0x23150e9c, 0x1a132040, 0x78845382, 0x134da022, 0x1b709a18, 0x00000023, 0x30038206, 0x01400200, 0x00190080, + 0x002d0023, 0x00410037, 0x0e1b415c, 0x2d0ca361, 0x23332313, 0x17163135, 0x35271716, 0xed533515, 0x06915505, 0x2331152c, 0x31272637, 0x33272631, + 0x65591531, 0x0f5f1805, 0x09bb4814, 0x21083760, 0x008340fe, 0x12121b25, 0x50404001, 0x0583059b, 0x29844020, 0x15194020, 0x80201505, 0xff212183, + 0x07cc5e00, 0x09840120, 0x84c0fe21, 0x82c0203e, 0x8418834d, 0xc040215f, 0x20204b84, 0x2813044f, 0xfbff0100, 0x45014000, 0x21f28201, 0xc3730000, + 0xa3601809, 0x17173f07, 0x0d0d0a89, 0x070e800a, 0x00ff1509, 0x0e070915, 0x09094980, 0x13131080, 0x13130101, 0x3f848010, 0x3f828020, 0x13004022, + 0x236d4282, 0x31072205, 0xe5c21806, 0x27272107, 0x83058466, 0x8501203f, 0x3701213f, 0x0023408c, 0x82010000, 0x001b2403, 0x836501c0, 0x43372043, + 0x0f4f0505, 0x31112705, 0x27060706, 0x318b0927, 0x8a056a69, 0x243f8290, 0x011b0040, 0x673f8600, 0x0720087b, 0x2206ef69, 0x9df73737, 0x1803203f, + 0x490e1379, 0x172e1aeb, 0x33111111, 0x23311131, 0x23332321, 0x0a823111, 0x4305fd49, 0x1b290afd, 0x40011212, 0x8001a0a0, 0x4a0082a0, 0x40201506, + 0x07067818, 0x002a0783, 0xfbff0200, 0x4501e0ff, 0xff82a001, 0xa1752720, 0x744c180b, 0x37372707, 0x27172711, 0xca723726, 0x2223220a, 0x10994127, + 0x80808022, 0x250a6741, 0x090d0d0a, 0xf98b9701, 0x8252fe21, 0x08ba4121, 0x00090922, 0x01200082, 0x00207b85, 0x00247b83, 0x31230617, 0x8905a873, + 0x10bf416a, 0xbe411720, 0x203f820c, 0x18bb8700, 0x410ae744, 0x938c1bff, 0x00218282, 0x25048502, 0x15008001, 0x7b432c00, 0x17162708, 0x37163117, + 0x7d593137, 0x07212205, 0x05637715, 0x21058c43, 0xfc4c3135, 0x30272b05, 0x010d0e14, 0x13da1201, 0x6419da13, 0x302007b3, 0x3309dc53, 0x151511da, + 0x8001da11, 0x140e0d01, 0x0ca40e18, 0x180ea40c, 0x70233083, 0x43d0d0d0, 0xd0300738, 0xa30d0da3, 0x10000100, 0xe701d9ff, 0x4600a701, 0x2007114e, + 0x06d45c16, 0x18056d54, 0x2007824e, 0x05e66015, 0xf74ee082, 0x063d4805, 0x1f863520, 0x083e6518, 0x07072223, 0x4270187e, 0x0200226d, 0x07275a00, + 0x5b003922, 0x250b9954, 0x17171415, 0x9a821631, 0x17313722, 0x8706cc73, 0x05e2730f, 0x82232621, 0x273121ae, 0x3524da83, 0x03272734, 0x8a08c743, + 0x20298539, 0x2c258237, 0x01273107, 0x0d0d0a3f, 0x0909780a, 0x22078310, 0x86046a04, 0x20118d09, 0x231c8398, 0x30090970, 0x02290786, 0x013b2d3b, + 0x0909b701, 0x22108378, 0x82090910, 0x8f098638, 0xe0fe2411, 0x83700909, 0x8630201b, 0x82012007, 0x2ae0823b, 0xff1b0001, 0x01a501b9, 0x821b00c7, + 0x273628e1, 0x31050726, 0x18161706, 0x210838a5, 0x13823125, 0x31232731, 0x095d0137, 0xff131513, 0x09071000, 0x834d7015, 0x8201200b, 0x16082f0b, + 0x93014c6f, 0x0f0d1017, 0x14140fe0, 0x0989b301, 0x4e820020, 0xff000029, 0x014002e0, 0x188d00a0, 0x4b16076b, 0x162105c5, 0x50078917, 0x3520090e, + 0x2008297d, 0x9d7f8226, 0x31232321, 0x219d0706, 0x20052f6b, 0x06a74a35, 0x01d03527, 0x40140e0d, 0x063b5014, 0x18980826, 0x08010f10, 0x17890e87, + 0x98070122, 0x98211592, 0x222b9407, 0x8618100f, 0x9e50182d, 0x21498408, 0x19820128, 0x708c2020, 0x20231784, 0x91280107, 0x01282215, 0x832b9307, + 0x2e2d85a0, 0x00020000, 0x02c0ff02, 0x00c0013e, 0x635f003e, 0x674a0859, 0x4b142005, 0x2321057c, 0x8f761806, 0x8b272009, 0x06796a0b, 0x4c183520, + 0x1122090d, 0x804a1732, 0x19222005, 0x08086cc1, 0x16173629, 0x16311717, 0x35373633, 0x01333631, 0x09090e20, 0x0e464565, 0x0b090a09, 0x1e131212, + 0x04061515, 0x06040e0e, 0x8b1e1515, 0x1213230b, 0x22820b12, 0x45460e35, 0x0e090965, 0x17010d13, 0x13182217, 0x06020b13, 0x820c0404, 0x02072600, + 0x01100b05, 0x056d530d, 0x400c1237, 0x040c6040, 0x080c0805, 0x12110107, 0x01010f1c, 0x11121c0f, 0x200b8b01, 0x271c8207, 0x600c0504, 0x120c4040, + 0xfe2b8282, 0x22730cd0, 0x0c011717, 0x8305150c, 0x8205204e, 0x0a042656, 0x0c730f02, 0x0b576c00, 0x40002228, 0x00004900, 0x67180613, 0x33220c64, + 0x4f421131, 0x2726260a, 0x27263123, 0x07964a17, 0x20053a41, 0x49208433, 0x68180896, 0xa0230838, 0x42391225, 0x902c071a, 0x22171601, 0x0e0d0130, + 0x25123914, 0x2008e641, 0x251e83c0, 0x140e440e, 0x6818a04c, 0x02210931, 0x0959491e, 0x22100126, 0x10011617, 0x1e222683, 0x17848002, 0x7018f020, + 0xdc21089e, 0x5b3a8214, 0x032f0b73, 0xc0ff1000, 0xc0017001, 0x34002300, 0x5c004500, 0x34220529, 0x01823031, 0x4c183620, 0x66540877, 0x84142005, + 0x17162615, 0x37360733, 0x7dc08231, 0x1624052a, 0x03171617, 0x2205275c, 0x82163736, 0x07062ce7, 0x10010706, 0x08082011, 0x7502011e, 0x012706f3, + 0x2008081e, 0x8350a011, 0x83a0209a, 0x015021d7, 0x0f485a18, 0x01272e27, 0x392b0b0b, 0x0629764b, 0x0b2b3927, 0x2f27010a, 0x202c8380, 0x21d28410, + 0x5a185001, 0x02201254, 0x081f4118, 0x53002922, 0x08e97e18, 0x200bb379, 0xab881821, 0x0b0c7908, 0x7c013721, 0x194505f3, 0xb54c1805, 0x06312516, + 0x17171415, 0x180cae79, 0x79084b4c, 0xfe2807a2, 0x0d0d0ab2, 0x2a09090a, 0x09644b18, 0x09241a87, 0x29016009, 0x60201d83, 0x14d2ab19, 0x94a0fe21, + 0x20308416, 0x57d78300, 0x2522051b, 0x5b184100, 0x342b0cbf, 0x36373635, 0x16171637, 0x83333617, 0x07142105, 0x06270583, 0x21070607, 0x54271737, + 0x2720052c, 0x1189b418, 0x3d902808, 0x01022829, 0x022b1a1a, 0x2d442d2d, 0x17162424, 0x1b1b291e, 0x1d2c0601, 0x2401011c, 0x90fe3625, 0x5050504f, + 0x18501111, 0x080d05aa, 0x28022022, 0x24303d29, 0x04041024, 0x022d2d44, 0x24161501, 0x1b1b0110, 0x09111229, 0x362f2223, 0xa7012425, 0x0e213682, + 0x2939820e, 0x86270e0e, 0x16020216, 0x42832786, 0x26088771, 0x00a00180, 0xa83f0025, 0x840620c3, 0xe59d18c2, 0x079f6807, 0xc1a2d082, 0x9382bb8d, + 0xbfa15020, 0x1111d922, 0x5020b98d, 0x6371cd82, 0xc0012905, 0x1a00c001, 0x7d007400, 0x31658618, 0x16311523, 0x05955617, 0x64050264, 0x16210b5a, + 0x05875617, 0x372a1382, 0x31353736, 0x31232326, 0x31850722, 0x6e070621, 0x34200534, 0x17281983, 0x27263736, 0x17160706, 0x14b28618, 0x2339603a, + 0x08090123, 0x0d84010d, 0x23010908, 0x0d153923, 0x100f010e, 0x0f01010f, 0x83056450, 0x2a0e8209, 0x09150d0e, 0x09095c09, 0x820b0b12, 0x1818211e, + 0x0b221282, 0x6c18120b, 0xc0210870, 0xe7861811, 0x12372412, 0x823e2d2e, 0x295e8256, 0x122e2d3e, 0x11100633, 0x4f832817, 0x18010f22, 0x2205d84f, + 0x830f0118, 0x17282c0f, 0x39061011, 0x06410101, 0x83130f0e, 0x2562835a, 0x060e0f13, 0x9970893b, 0x00003809, 0xff200002, 0x013002c0, 0x005e00c2, + 0x13000071, 0x31310716, 0x5e070706, 0x21460606, 0x31272405, 0x82262726, 0x793620f6, 0xd257058b, 0x17162106, 0x8207d150, 0x08fb421d, 0x7b071421, + 0x15820728, 0x03832720, 0x4c054c41, 0x0520057b, 0x0811926c, 0x05048e39, 0x011a0d06, 0x29291b1b, 0x1a011b1b, 0x0405060d, 0x0d0b0c04, 0x0c0c141a, + 0x37242301, 0x2c1f1f05, 0x01201f30, 0x010d0d16, 0x22221716, 0x0d011617, 0x3202160d, 0x82474b31, 0x23392da8, 0x0c0c0124, 0x0b0d1a14, 0x5201040c, + 0x2408d850, 0x010e0909, 0x211383aa, 0xcf4e7909, 0x09792107, 0x5d835583, 0x11070836, 0x3b791510, 0x2b0d2a2b, 0x01011c1b, 0x47301f20, 0x19131409, + 0x0b50fe19, 0x314b4732, 0x2d020232, 0x2b0c462e, 0x15793b2b, 0x08071110, 0xca20a583, 0x0e975318, 0x00000430, 0x0002e0ff, 0x0d00c001, 0x38002600, + 0x77184a00, 0x23210bdf, 0xdd771831, 0x05085009, 0x15311526, 0x21311131, 0x35250382, 0x33233323, 0x06874811, 0x36311126, 0x01373637, 0x2406fb4c, + 0x17161716, 0x293a8211, 0xa0b00706, 0x07900701, 0x6c5f3001, 0x00ff2308, 0x00822040, 0x20089c4e, 0x210d8c80, 0x00822888, 0x01010723, 0x5f068207, + 0x28260869, 0x01a0fe20, 0x26192060, 0xe54e0e87, 0x0200270a, 0xc0fffbff, 0xc382c501, 0x37002c22, 0x7256bf82, 0x050c4805, 0x774e0583, 0x2631220c, + 0x053e6027, 0x08053443, 0x35361331, 0x17142323, 0x37323316, 0x09090ee0, 0x01242338, 0x0d082f01, 0x01140908, 0x08091480, 0x0130070d, 0x38232401, + 0x2d0e0909, 0x13404013, 0x471a1a13, 0x133905f7, 0x3b2b2b0c, 0x09374813, 0x0112130f, 0x0f131201, 0x13493609, 0x0c2b2b3b, 0x20458213, 0x212784fe, + 0xdf601313, 0x01802808, 0x001d00a0, 0x5342002c, 0x21210859, 0xbcc11833, 0x0a2b4a09, 0x23330523, 0x35f11833, 0x05152109, 0x2014e255, 0x248d8260, + 0x36404001, 0x2eab8225, 0x20362524, 0x291b1b01, 0x1b1b29c0, 0x41800101, 0x20270a5b, 0x000240fe, 0x6e0200fe, 0xfe2006f1, 0x6d180786, 0x3e8308d1, + 0x3d823484, 0x01a0e02a, 0x1b1b1212, 0x80011212, 0x200ced6b, 0x0a1f5200, 0x45001f26, 0x93006b00, 0x210e014b, 0xd7603111, 0x08fd7106, 0x42071121, + 0x35230a18, 0x75313331, 0x098b05ff, 0x2120e183, 0x18054967, 0x760b56f7, 0x33200560, 0x28054f62, 0x11312307, 0x06253331, 0x7e218507, 0x117e050b, + 0x2726210f, 0x232b7d85, 0x0e0d01c0, 0x0e14a014, 0x1850010d, 0x2207bd90, 0x82709050, 0x25128400, 0x0f01010f, 0x05845050, 0x02211d83, 0x26159320, + 0xe8fe7070, 0x8318010f, 0x01182325, 0x0a8a100f, 0x09b4af18, 0x5030fe22, 0x44833a83, 0xd0015025, 0x8360fe30, 0x01902509, 0x40010f0f, 0xd4520483, + 0x88302008, 0x84902012, 0x20a0232f, 0x548e0f01, 0x00205f84, 0x2405576a, 0xc0018002, 0x077f5300, 0x25718e20, 0x30741810, 0x31152107, 0x4c5fb218, + 0x41065a63, 0x31231e59, 0x83000706, 0x400121e5, 0xb218c983, 0xa02b456f, 0x01010f30, 0x0f01300f, 0x8a010f20, 0x0967410a, 0x4271b218, 0x30305022, + 0x6b846090, 0x44057341, 0x272607f3, 0x49003800, 0x77647100, 0x08e94413, 0x6406d854, 0x07200587, 0x20050f79, 0x05a45c07, 0x11313323, 0x06b24301, + 0x23050956, 0x03113123, 0x26e3d819, 0x21099864, 0x20450001, 0x0b0f4508, 0x40012022, 0x200bcf43, 0x0f2f41c0, 0x3021ce84, 0x0aa86401, 0x45052a45, + 0x0a54093a, 0xc82b190a, 0x4110200f, 0x30211482, 0x087f5600, 0xc0018026, 0x64005800, 0x2508a95a, 0x31230706, 0xa5193117, 0xe96709ef, 0x09906b05, + 0x8509bf5a, 0x051e5119, 0x0943b218, 0x36373423, 0x283d8533, 0x31353133, 0x27263123, 0x07166e07, 0x2327263a, 0x701602a0, 0x16020216, 0x0c746810, + 0x010e660b, 0x0b660e01, 0x1068740c, 0x18841383, 0x37200828, 0x0e130d09, 0x02820909, 0x0e290484, 0x37090d13, 0x02160820, 0x20c98350, 0x21048440, + 0xb74ca801, 0x04902905, 0x0f0f0726, 0x90042607, 0x22072748, 0x82093790, 0x46402035, 0x402005fd, 0x37204383, 0xd8201b82, 0x35056748, 0x0500010f, + 0xe0ff2000, 0xa0010002, 0x36002900, 0x4e004200, 0xab455a00, 0x6f312009, 0x02470539, 0x82142007, 0x440720b8, 0x262b08a5, 0x11272627, 0x37073705, + 0x82353536, 0x312322d4, 0x18108215, 0x1808694e, 0x8b0bb9ca, 0x5c20200b, 0x3328078b, 0x01151621, 0x52150d0c, 0x08bed018, 0x38600129, 0x01083838, + 0x87e0330c, 0x9040209d, 0xcb041908, 0x15012a08, 0x17662116, 0x250a1213, 0x08544722, 0x19f86030, 0x08041919, 0x98010c66, 0x01010fa8, 0x0498e00f, + 0x210bf759, 0x33770019, 0xd0751809, 0x05212a11, 0x15153515, 0x26070631, 0x059a4d27, 0x5f180985, 0x352107ca, 0x5f098331, 0xde580e7c, 0x10012605, + 0x02161602, 0x07884180, 0x80780884, 0x68782115, 0x16250082, 0x50160202, 0x20058350, 0x8d0a89d0, 0x573b20a7, 0x35201c87, 0x1f6a6018, 0x8820a594, + 0x13696018, 0xfe21a695, 0x676018c8, 0x00202918, 0x01c00100, 0x001d0080, 0x6118a382, 0x25241dbd, 0x06073707, 0x4e084653, 0x3720052a, 0x2405257d, + 0x29072223, 0x625a1809, 0x8a8a2107, 0x2505c94d, 0xa06001a0, 0x1690a0a0, 0x0b185a18, 0x4e898921, 0x2782052e, 0x18a0a021, 0x870a865a, 0x82002017, + 0x00022200, 0x20a38240, 0x18a387e0, 0x21123341, 0x67183107, 0xd54208ed, 0x05de5905, 0x11d68d18, 0x90d70121, 0xfea0218d, 0x16907b83, 0x0b495a18, + 0x0222a4a2, 0xa3822000, 0xa001a022, 0x18054741, 0x5412255b, 0x362105a5, 0x209a8235, 0xade51813, 0x18b68808, 0x200a385b, 0x120641f7, 0x20171e41, + 0x485b1801, 0x08744109, 0x0029cf95, 0x00020000, 0x01e0ff20, 0x074741a0, 0x55092157, 0x172306f0, 0x73313731, 0x14260571, 0x07130707, 0x8f180737, + 0x1623157a, 0xab071415, 0x785b18a3, 0x1e174209, 0x00820020, 0x20000126, 0x00010000, 0x6418a384, 0x6f421e4b, 0x14594212, 0x40204e82, 0x20205382, + 0x25205385, 0x1d4b6418, 0x5495ac92, 0x52820020, 0x00200027, 0x01a00160, 0x8b4e1840, 0x41c92021, 0x012113d3, 0x10754237, 0x5682a020, 0x82010021, + 0x82402057, 0x18202057, 0x94218b4e, 0x92492057, 0x00022256, 0x065b6800, 0x29001922, 0x200a8b44, 0x061a4d33, 0x0861d418, 0xdb520320, 0x31212105, + 0x0805d24b, 0x1b802120, 0x40011212, 0x01408001, 0xfe1b1212, 0x02116d80, 0x21151601, 0x1621e601, 0x11020115, 0x6f44a6fd, 0x07045a05, 0xfe232c83, + 0x831102a0, 0x1501241d, 0x82112116, 0x0aa36677, 0x13591920, 0x12af450a, 0x97781320, 0x07834709, 0x6314f844, 0x01210cd4, 0x469985c0, 0xb184084a, + 0x4e70fe21, 0x02200d34, 0x9108d753, 0x18332083, 0x200aedd0, 0x20839223, 0x185a8750, 0x20082c4a, 0x727f18e0, 0x2681a40d, 0x00020000, 0x82200000, + 0x006024ae, 0x185f002f, 0x18083f47, 0x18114762, 0x610b8e86, 0x352105db, 0x20018231, 0x05655421, 0x00252fa8, 0x33222201, 0x057a4808, 0x10180823, + 0x05ab5f0f, 0x2008187c, 0x241f9e01, 0x222233e8, 0x05444101, 0x100f0124, 0x38890818, 0x1b121225, 0x9e482020, 0x8eeb821e, 0x858e18ef, 0x095f7a08, + 0x36373623, 0x05574937, 0x25098177, 0x17161716, 0x01823115, 0x61066972, 0x2f9c0bb7, 0x9dc00121, 0x9eff20f0, 0x9e9820f0, 0x381e9ed1, 0xff070000, + 0x02bafffa, 0x00c60100, 0x0019000c, 0x00330026, 0x004d0040, 0x79a8185a, 0x2611260e, 0x06072627, 0x82e68207, 0x68b518fc, 0x90bc180c, 0x3605220c, + 0x20288427, 0x20288317, 0x210c8b11, 0x38821613, 0x44821082, 0x65170621, 0x6b600df7, 0x9cba180b, 0x6001200d, 0xfe2e0c87, 0x0807138f, 0x13141a1a, + 0x1a1b0707, 0x05821414, 0x0b861b20, 0x1a14e22d, 0x1307071b, 0x081a1a14, 0x19011307, 0x200d2a04, 0x0b7d6660, 0x0cdcb318, 0x200ce36a, 0x853c85b5, + 0x26012748, 0x081b1b14, 0x13851406, 0x85dafe21, 0x207d8571, 0x21008200, 0x0f760001, 0x8d691809, 0x1553751b, 0x5018e075, 0x002b0603, 0x1a00c001, + 0x48003500, 0x9b005b00, 0x4f27205d, 0x167505d8, 0x07162105, 0x084e9018, 0x17363724, 0x877a3627, 0x06cf7c08, 0x65182720, 0x20820d81, 0x95333621, + 0x0e5c3d9e, 0x21211716, 0x0b0e1617, 0x11090a0c, 0x29291d1d, 0x09111d1d, 0x140b0b0b, 0x0d090901, 0x22059943, 0x1809090d, 0x8307145e, 0x9818830a, + 0x10ba35d5, 0x01010c0d, 0x0b100d0c, 0x140c0b09, 0x01011010, 0x0c141010, 0x76200c82, 0x1c1b7a19, 0x63410420, 0x0033240a, 0x41590046, 0x06201d0b, + 0x22057454, 0x82171637, 0x05d25a01, 0x07062724, 0x09410706, 0x05612b3b, 0x0d030d0f, 0x2e2e2222, 0x08822222, 0x0a050f2a, 0x23231a1a, 0x0f0a1a1a, + 0x31350941, 0x06030d7b, 0x1919280e, 0x19190101, 0x03050f28, 0xc5611e0d, 0xb51e2105, 0x411a0941, 0x2d240b07, 0x4e004000, 0x201c0741, 0x0c8c4603, + 0x3622fc82, 0x0b421733, 0x33072111, 0x0b2f8418, 0x20150642, 0x09e94150, 0x8020ed83, 0x9021f28d, 0x2f8418c0, 0x18fa410a, 0xd2690120, 0xc741180c, + 0xa643180c, 0x82002008, 0x2de38200, 0x80020000, 0x15008001, 0x2f002200, 0xeb474f00, 0x09be6f08, 0x6e05f164, 0x07200bea, 0x820b046f, 0xeb6c18ea, + 0x05a54511, 0x3337362f, 0x52c03531, 0x02023636, 0x01523636, 0x29098700, 0x300100ff, 0x0a0a0c17, 0x0585170c, 0x50186820, 0xe0230b95, 0x1a161602, + 0x270ab934, 0x02021620, 0x80012016, 0x3f874183, 0x338c0783, 0x4d8c8820, 0x458e3184, 0x00000023, 0x2403820e, 0x01400200, 0x6b9e1880, 0x00912c0e, + 0x00b300a1, 0x00d500c3, 0x4df700e5, 0x17251b77, 0x16332333, 0x9f891817, 0x36312308, 0x07510737, 0x06905807, 0x37202191, 0x438f21a0, 0x65a03720, + 0xa99121c3, 0x20093a49, 0xb38e18c0, 0x18402008, 0x180ca95b, 0x8c0ad95b, 0x18502017, 0x8c09f15b, 0x4f2f8217, 0x9e180797, 0x2f972f6c, 0x01205f8c, + 0x180a2157, 0x18090986, 0x180a045d, 0x8a0a6b9f, 0x18b020a3, 0x8a09b65c, 0x202b8a15, 0x8acf89d0, 0xaa702015, 0x20578a15, 0x055b4600, 0x01c0012c, + 0x003800c0, 0x00850079, 0x5e180090, 0x3723097b, 0x62173631, 0x0782059d, 0x31111723, 0x05146d06, 0x40180582, 0x35310ba3, 0x35311131, 0x36373431, + 0x07371733, 0x07311537, 0x058a6331, 0x83313521, 0x3135243f, 0x82171716, 0x31272411, 0x82152726, 0x3135220b, 0x22058417, 0x53272726, 0x152206d6, + 0x51822631, 0x37833520, 0x37160523, 0x2c158237, 0x27063107, 0x15353715, 0x15230635, 0x36128231, 0x09090e20, 0x23373b45, 0x09242626, 0x010e0d11, + 0x49221401, 0x52403b45, 0x0924064c, 0x40200e09, 0x2b080082, 0x27080731, 0x13150d0c, 0x0b0b2a18, 0x14171f21, 0x290b0c15, 0x0d0d1214, 0x40191314, + 0x181a0001, 0x1c1c080e, 0x15211f40, 0xc0011615, 0x10343382, 0x121a0e11, 0x09080412, 0xe8fe1208, 0x1a0d0915, 0x100f1c22, 0x23067970, 0x0e014250, + 0xbb3b7483, 0x420e0e0e, 0x020c410e, 0x03094001, 0x06014001, 0x030c4306, 0x0c034701, 0x82060746, 0x0420080e, 0x0a053e0c, 0x01480206, 0x104b0505, + 0x09029549, 0x06024805, 0x46964e02, 0x45094646, 0x00050502, 0x2908275d, 0x00a00140, 0x0033001d, 0x45671300, 0x18362005, 0x7208924c, 0x516e0b2b, + 0x50092016, 0xb4820580, 0x086e7218, 0x2001f724, 0x6a6fe0fe, 0x50692010, 0x2584057e, 0x08847218, 0x4cb7fe21, 0x03370c3c, 0xbeff0000, 0xc2018002, + 0x35001600, 0x00005400, 0x31072601, 0x18070631, 0x26093fcf, 0x27363113, 0x76172726, 0x966405ce, 0x06064207, 0x8b503520, 0x64212007, 0x42511189, + 0x89012a0b, 0x040b0c0d, 0x06060380, 0x2408880d, 0x5a090950, 0x20ca855a, 0x063b6470, 0x64cefe21, 0x70200680, 0x1f83b985, 0x83bf0121, 0x40fe2135, + 0x09833783, 0x83c00121, 0x83782009, 0x59592120, 0x2d842685, 0x45864382, 0x1d890982, 0x2d057341, 0x02e0ff13, 0x00a70140, 0x00440014, 0xf3791300, + 0x2727230c, 0xe1823731, 0x18261721, 0x250a4cb8, 0x37363716, 0xdb183135, 0x062409cf, 0x32171607, 0x08b25e18, 0x23272635, 0x10d13531, 0x0f0f8e11, + 0x0e10118e, 0x0e8e8e0e, 0x18018f0e, 0x0808076b, 0x2001122e, 0x011b1b29, 0x07070701, 0x12020109, 0x180a0404, 0x01151418, 0x4b313202, 0x0f980130, + 0x140f860e, 0x0e860f14, 0x8710120e, 0x18111087, 0x0b196b18, 0x4014093a, 0x291b1b01, 0x070e0d17, 0x02120b08, 0x14130502, 0x4b382525, 0x40023231, + 0x012ac783, 0xedff0d00, 0x9501b501, 0x53651300, 0x152a080e, 0x16171631, 0xae011337, 0x13100e07, 0x0417a0fe, 0x02b01906, 0x900b1918, 0x10136401, + 0x0b90070e, 0xb0021819, 0x17040619, 0x974a6001, 0x8254200c, 0x07372147, 0x08599718, 0x23310724, 0xf7821531, 0x18310721, 0x1809826c, 0x4e0d6a6a, + 0x305605d8, 0x19372005, 0x200ac00d, 0x99961835, 0x0111250c, 0x373737c0, 0x2305db41, 0xd3b3f336, 0x47057142, 0x202506d8, 0x1b121201, 0x231490e0, + 0x36363653, 0x2205ce41, 0x61d34037, 0x2020075f, 0x3d6b3985, 0xd3402205, 0x069161fe, 0x01221686, 0xaf440013, 0x0008290a, 0x00620059, 0x1300006b, + 0x2a07485f, 0x31071437, 0x15070631, 0x18333631, 0x18096846, 0x5e0b82ab, 0x4d180756, 0x9f180a22, 0x35200c48, 0x5e059244, 0x33200888, 0x2205a05f, + 0x87013736, 0x56502062, 0x022b05df, 0x0d0d5016, 0x60231d16, 0x5e12121b, 0x01230e56, 0x92362524, 0x0a7b5e16, 0x8a55e820, 0xc8fe2107, 0x6308e563, + 0x182b08b6, 0x09141319, 0x12011158, 0x5e071b12, 0x07240f52, 0x01242536, 0xc7201995, 0x55872b8b, 0x8788fe21, 0x00002269, 0x07ac1804, 0x00372608, + 0x004b0041, 0xa166186e, 0x06fa540e, 0x1818fb7a, 0x2a07a566, 0x17270726, 0x31311736, 0x82161716, 0x17272409, 0x82170627, 0x5537200a, 0x3719074d, + 0xfe7a0900, 0xbe66180f, 0x5b8e210b, 0x0815ed7a, 0x12206021, 0x29200808, 0x932c3535, 0x191917c8, 0x73081e14, 0xbababaa8, 0x261e2d03, 0xdefe2626, + 0x7a393939, 0x3d2115f1, 0xd0661832, 0x5a6f210b, 0x0819b17a, 0x29196020, 0x27212c2b, 0x73210303, 0x03040b9d, 0x5a2a2113, 0x929292fe, 0x091d303e, + 0x38e40b09, 0x3a993838, 0x59283e21, 0x0027089b, 0x00a601c0, 0x7239000c, 0x6c6a08e7, 0x18072005, 0x200b8b40, 0x648b1815, 0x07bc7116, 0x200ce374, + 0x06ff7e30, 0x20063243, 0x05644b80, 0x0e832020, 0x4e700121, 0x90200ba9, 0xe0201985, 0x200bd345, 0x210c82c0, 0x9c850200, 0x00c40129, 0x006b0021, + 0x41340100, 0x332009c9, 0x0a35cb18, 0x2108066b, 0x18760535, 0x31332409, 0x18073117, 0x200e8f8d, 0x19138237, 0x200f3332, 0x0cf44337, 0x07072234, + 0x26312731, 0xe0012323, 0x20100f0f, 0x0504040c, 0xb88a130a, 0xfe219582, 0x230f8540, 0x0f5a5a0f, 0x20260985, 0x56560a10, 0xe786100a, 0x012b1791, + 0x090912a0, 0x0c071007, 0x4c120c0c, 0x80200c25, 0x21060344, 0xfa858080, 0x7a7a0e22, 0x0e205182, 0x118b0382, 0x091b4318, 0x49008024, 0x8b606b00, + 0x17142108, 0xe5bdcb83, 0x98205141, 0x170441d4, 0x41c00121, 0x01201738, 0xed9de586, 0x4100ff21, 0x0031172c, 0x27000200, 0x2002e0ff, 0x23009901, + 0x00002e00, 0x0aed5801, 0x04423320, 0x05de7c08, 0x3607d347, 0x23332313, 0x31373127, 0x01073117, 0xeaeaea23, 0x13501212, 0x85e0691b, 0x837c32bd, + 0x138a1212, 0x0614191a, 0x50720909, 0x01448a7c, 0x83228287, 0x13502110, 0x20059141, 0x290c8383, 0xfe12128a, 0x8a7d5099, 0x77460043, 0x0070240c, + 0x18261300, 0x7c0a7383, 0x704705cc, 0x050d6605, 0x61373621, 0x2783078f, 0x2109a845, 0xa9682726, 0x05cd4c0f, 0x64056353, 0x3385073f, 0x2b07125b, + 0x31333736, 0x01c03736, 0x0101120c, 0x29065661, 0x010c1201, 0x14391502, 0x06820d0e, 0x0e090e23, 0x60098314, 0x092305a9, 0x8302150e, 0x82392009, + 0x20319006, 0x20319b79, 0x20318279, 0x904ccb57, 0x22b0867e, 0x55000000, 0x162209f3, 0x074e4800, 0x0b137608, 0x26272624, 0x4e180727, 0xd861099c, + 0x61332008, 0x705407ff, 0x52218505, 0x35200715, 0x6505b762, 0x01200639, 0x802f0782, 0x02161602, 0x422a2b01, 0x02021630, 0x83484816, 0x42302405, + 0x84012b2a, 0x25242817, 0x24253636, 0x83c00101, 0x29a0242a, 0x88011b1b, 0x83d82008, 0x44282529, 0x220a3030, 0x03832a83, 0x300a2225, 0x84284430, + 0x82358417, 0x8328203d, 0x088b46cb, 0x4f002722, 0x230e8746, 0x31353736, 0x1421a285, 0x07214c07, 0x1529ac83, 0x36012731, 0x06312737, 0x050f6623, + 0x15200982, 0xe890fd85, 0x0a276d18, 0x84179f21, 0x120e21b6, 0xad83a583, 0x3101b927, 0x122b1a1f, 0x218e8314, 0xe68f012f, 0x220b4546, 0x8531287c, + 0x1b2023b9, 0xe887cd0e, 0xfe913628, 0x220e0457, 0xc9820106, 0x03250923, 0x82ee8e03, 0x00012edb, 0x01bdff0f, 0x00c001f1, 0x0100001e, 0x06ed6632, + 0x21058653, 0xbb832706, 0x37263708, 0x37363734, 0x33363137, 0x06070001, 0x0b0a11bd, 0x2f121201, 0x1a1a562e, 0x122f2e56, 0x0a0b0112, 0x0706bd11, + 0x5003c001, 0x140f0f07, 0x41454533, 0x0c0c2b42, 0x421a422b, 0x032008f7, 0x21088746, 0x6782c001, 0x3e002d25, 0x18130000, 0x200aa745, 0x082f6121, + 0x200b9768, 0xa0341923, 0x2105230a, 0xb2582121, 0x3060250c, 0x010d0e14, 0x0d234e82, 0x4330140e, 0x814405ce, 0x60012506, 0xc00140fe, 0x19820382, + 0x84600121, 0x20a02325, 0x6b182020, 0x31820d7b, 0xfd442020, 0x18a02006, 0x820b866b, 0xff033aa8, 0x02c0fffb, 0x00c20100, 0x00510040, 0x0100005a, + 0x31151516, 0x27060714, 0x05ac5f27, 0x84064a69, 0x3637259e, 0x06313537, 0x26201b82, 0x0b830982, 0x0b2dfc19, 0x36313328, 0x36313737, 0xea820317, + 0x220ab165, 0x49033331, 0x013a079c, 0x0c0c0cf4, 0x0514a00e, 0x12111d41, 0x1d1112e0, 0x140c1a38, 0x21120813, 0xa1832a20, 0x09090e29, 0xa0140541, + 0x18d40c0e, 0x21088c53, 0xf66870e0, 0x01240805, 0x0ab9010f, 0x0a0f600f, 0x04200309, 0x1a0e2313, 0x9090221b, 0x0e1a1b22, 0x1235121d, 0x26140c07, + 0x1c0a1a1a, 0x27050845, 0x20041318, 0x67fe0903, 0x640b1962, 0x012b057d, 0x00010f0f, 0xfffdff02, 0x820202bd, 0x003526ef, 0x37000042, 0x051f7427, + 0x5e182320, 0x994a081e, 0x05a35205, 0x20061642, 0x06246707, 0x35262722, 0x1357fe85, 0x82272005, 0x173008e5, 0x1f9d1716, 0x050d1f1f, 0x0e6a0705, + 0x35060607, 0x04522915, 0x32322a03, 0x12253131, 0x04030705, 0x053c1a1a, 0x59220106, 0x150c0c0c, 0xe30d120f, 0x200b6b52, 0x2339823f, 0x140e120e, + 0x22081b82, 0x06012259, 0x1a1a3c05, 0x05070304, 0x31312512, 0x032a3232, 0x15295204, 0x07060635, 0x05076b0e, 0x18d90d05, 0x720d7c63, 0x1a2209b3, + 0x4e182c00, 0x27251c17, 0x07161736, 0x2d7f1807, 0x18262008, 0x2e1b0f4e, 0x0e1111f1, 0x0e57570e, 0x6811110e, 0x18680e0e, 0x2014084e, 0x211d8379, + 0x29835757, 0x26826820, 0x4e180020, 0x8b820da3, 0x1a034e18, 0x27061722, 0x31207f82, 0x23fb4d18, 0x4f188ab5, 0x8b820c2f, 0x81180520, 0x37201973, + 0x0d3d8018, 0x18eb4d18, 0x3555ef8e, 0x41b08e18, 0x4d181117, 0x07211adf, 0xb4fa1826, 0xd74d180b, 0x188b8e19, 0x9019d34d, 0xff022c8c, 0x02c0fff9, + 0x00c00147, 0x187c0012, 0x5b08cb93, 0x3224071d, 0x17151617, 0x47053076, 0xfe7d05fa, 0x31332309, 0x185c3115, 0x0a106e07, 0x2a6e3120, 0x17162909, + 0x37363333, 0x31353736, 0xeb181f93, 0x32200997, 0x26252382, 0x23232627, 0xcd671801, 0x2915220c, 0x07fd4502, 0x2225eb19, 0x2d2d4431, 0x11110702, + 0x11380e0e, 0x0e0e3811, 0x83071111, 0x2030213c, 0x2007cf58, 0x9f41180b, 0x1c50210d, 0x2a14eb19, 0x442d2d24, 0x53830706, 0x5e825882, 0x070e0e28, + 0x1b1b2906, 0x7045d001, 0x06e74205, 0x8b530120, 0x474e2005, 0x435d0ae3, 0x1821200b, 0x220cb5a1, 0x70363135, 0x2e7f062f, 0x23262209, 0x09216d13, + 0x250a6741, 0x161722e0, 0x3d55f001, 0x08475508, 0x28021034, 0x222c3d29, 0x05061222, 0x0c0d0c04, 0x130a060c, 0xcd451813, 0x06bf4b06, 0x80014022, + 0x2205af72, 0x881b1212, 0x28088437, 0x28293d30, 0x16160102, 0x27388325, 0x0c040405, 0xfe0d0c15, 0x690ec26a, 0x00200663, 0x2606bf5a, 0x005d0042, + 0x19000070, 0x181a079d, 0x181a3f8d, 0x210caedb, 0x884e3235, 0x14152505, 0x06070607, 0x0cda9a18, 0x18068a4d, 0x2a0cad79, 0x2d191ac0, 0x2d33332d, + 0x891a192d, 0x868d1809, 0x00012119, 0x0bd64a18, 0x21212729, 0x14131314, 0x89272121, 0x06924c09, 0x2405be41, 0x2c2c34c0, 0x2200821a, 0x89342c2c, + 0xe8521809, 0x18502013, 0x200bc24a, 0x6bc418e0, 0x06e44d13, 0x2b056f46, 0x03000000, 0x80000800, 0x0001c001, 0x21068b5d, 0xe2583700, 0x8b33200b, + 0x5937200c, 0x44190b09, 0xa0210cf0, 0x3b451901, 0x20d8220a, 0x20008210, 0x20058520, 0x8b0c8bc0, 0x8b38200b, 0x22878432, 0x82e8ff00, 0x88a02089, + 0x05a14687, 0x27238082, 0x8b352726, 0x2744180c, 0x2060a40d, 0x8c6d8b58, 0x7a4519ad, 0x3087820c, 0xff000004, 0x01c001e0, 0x001900a0, 0x003d002c, + 0x1c175950, 0x2105594c, 0x7a711716, 0x82262005, 0x851520a9, 0x4f108a12, 0x2d4205b8, 0x0970580b, 0xfe320988, 0x160220c0, 0x21383845, 0x16020121, + 0x39020216, 0x05825538, 0x2a411624, 0x0f83022b, 0x1e1d0125, 0x4202162c, 0x0585050c, 0x2815be66, 0x01021668, 0x38382121, 0x223c8345, 0x82393855, + 0x8260203c, 0x2a2b220a, 0x23058241, 0x1d1e2c16, 0x78205d82, 0x8505fb41, 0x0c734605, 0x6b612d20, 0x33362108, 0x115e9018, 0x15063725, 0x18143115, + 0x200c069a, 0x9b551800, 0x0cbc2a17, 0x900c0d0c, 0x0c900b0b, 0x1487470d, 0x0e076d31, 0x06070eb0, 0x0d075807, 0x0658080d, 0x4a000006, 0x40280578, + 0x2d008001, 0x59003f00, 0x4b0e854c, 0x995b05a5, 0x31352209, 0x06f14d26, 0x212a0985, 0x15351517, 0x31211716, 0x10833736, 0x06312124, 0x42182707, + 0xe0180b9e, 0x402d0c99, 0x0112121b, 0x021e0e02, 0x020e1e02, 0xb2a91801, 0x2c118b08, 0x014040fe, 0x0f20010f, 0xfe0f0101, 0x220882e0, 0x180e0909, + 0x24079f66, 0x090ec0fe, 0x05805909, 0x050e4028, 0x0b22220b, 0xc6410e05, 0x23118d08, 0xa0a0a070, 0x04844283, 0x70411020, 0x823d8305, 0x57c0204d, + 0x6b4208bf, 0x42272006, 0x3c5d1c67, 0x143e420c, 0x88185820, 0x1c420bb9, 0x53c82015, 0x002e09b1, 0x00000100, 0x6001c0ff, 0x3500c001, 0x47180000, + 0x424a0ac8, 0x9f701805, 0x47ec190c, 0x31112610, 0x23060714, 0x06c74523, 0x1b296024, 0x6818011b, 0x661807f8, 0x60210e7d, 0x06ad4200, 0x291b1b24, + 0xae183301, 0xfe241189, 0x09090ecd, 0x13268b8d, 0x31312722, 0x9d4b3526, 0x056d7205, 0x210a6d67, 0xb6180631, 0x5c560ee5, 0x508ba405, 0x012007f8, + 0xfe218c82, 0x218c91cd, 0x8c833301, 0x41075759, 0x2d200697, 0x221b9741, 0x18370705, 0x41102289, 0x0121149d, 0x22891811, 0x15a2410f, 0x2682b120, + 0x0d1e8918, 0x09777618, 0x2b001924, 0x8d9c3f00, 0x17271729, 0x07141516, 0x68273107, 0x9e8206a0, 0x31173723, 0x075c5b07, 0x31373723, 0x4f641836, + 0x06013d15, 0x0c0e0e0e, 0x1547150c, 0x0d100f0d, 0x696969ce, 0x09066947, 0x0606093c, 0x06020f02, 0x6c20ab95, 0x10223283, 0x34820d10, 0x950c0c22, + 0x2d833285, 0x00213784, 0x0a474502, 0x7b183320, 0x3974081d, 0x05674805, 0x8c821120, 0x19373621, 0x82074fd2, 0x0cbf77a4, 0x23272624, 0x50488001, + 0x40012d11, 0x020216e0, 0x0e875e16, 0x8711110e, 0x2005d042, 0x209f9598, 0x261d8370, 0x0e111187, 0x8366870e, 0x16a02133, 0x2a086367, 0xc0013002, + 0x68003600, 0x6f250000, 0x205206f1, 0x31232205, 0x05464f22, 0x7b182720, 0x32230b00, 0x41311717, 0x9e180557, 0x35250740, 0x11070625, 0x076f4431, + 0x09254018, 0x8e180620, 0x74180831, 0x3983099b, 0x31083782, 0x2e2e6001, 0x1717232e, 0x0c100301, 0x02100201, 0x170b0304, 0x01151518, 0x3d292802, + 0x0f0a0a50, 0x0c8a0a0d, 0x0c098b0c, 0x09090e04, 0x010ff0fe, 0x6a180f01, 0x0123099a, 0x18221716, 0x1809be6a, 0x0807fc5f, 0x1701e02b, 0x08202317, + 0x01110d07, 0x10100401, 0x3d2f1e1e, 0x3d022829, 0x090a0a0f, 0x10100b7c, 0x09087d0b, 0x80400e09, 0xc0fe0f01, 0x874e820f, 0x4b6b1836, 0x00002113, + 0x0cbb8218, 0x43003022, 0x231cf161, 0x07370737, 0x4f050c4d, 0x16290535, 0x06310707, 0x27342707, 0x22ba1831, 0x33162408, 0x18363732, 0x23166f8b, + 0x91919133, 0x0423a582, 0x870d0538, 0x06e65307, 0x4c052c44, 0xbb2a18a5, 0x04383838, 0x910f0a0a, 0x0787050d, 0xcc464520, 0x0ebb430c, 0x1809434d, + 0x2512a8cb, 0x27272227, 0xa5602631, 0x42c18406, 0xa0311670, 0x0a68080a, 0xd00f0706, 0x0a06070f, 0x200a0868, 0xa3fa1801, 0x08802d12, 0x0d0f0b70, + 0x0f0d0101, 0x0008700b, 0x13228791, 0x96180706, 0x93860f8d, 0xdf191720, 0x262709a7, 0x37372627, 0x44333631, 0x868f1442, 0x9f15f442, 0x18012087, + 0x291319f5, 0x37363736, 0x07140711, 0x9a183107, 0x15210cd1, 0x05af6901, 0x0e4fbe18, 0x0121628c, 0x13a34360, 0x003aab8f, 0x00010000, 0x01e0ff00, + 0x00a00140, 0x37000067, 0x31311514, 0x31153130, 0x444c1514, 0x1631240a, 0x18171617, 0x240ade61, 0x26272631, 0x250f8b27, 0x31353534, 0x118b3534, + 0x2005a643, 0x335f1832, 0x05b04d08, 0x08b66c18, 0x74473020, 0x181c2506, 0x18483636, 0x25052a42, 0x23232c18, 0x0b857e14, 0x0d4b9020, 0x147e2406, + 0x872c2323, 0x3648231f, 0x8f511836, 0xd0102606, 0x04100404, 0x06964204, 0x69282721, 0x152207e6, 0x13852416, 0x24221e8a, 0x1e871516, 0x4e272821, + 0xf7830624, 0x82fcff21, 0x824220f7, 0x755120f7, 0x322308fb, 0x68311717, 0x2724069b, 0x23263127, 0x4e05dd48, 0x14270db6, 0x06310707, 0x7e171617, + 0x23250961, 0x36313531, 0x0d1c5d35, 0x01703536, 0x0b1b1212, 0x0b0d510a, 0x0503050c, 0x14510d06, 0x25243615, 0x07e57a18, 0x1d0e1026, 0x120a0809, + 0x071a7018, 0x6b17c721, 0x7029068e, 0x121b2001, 0x1b030112, 0x82328204, 0x1b04263a, 0x24250107, 0x25b58636, 0x32171a2d, 0x6f181010, 0x01230717, + 0x852d2c26, 0x824020ec, 0x030027ce, 0xdbff0000, 0xcf82c301, 0x3a002b24, 0x4773a100, 0x09e05e08, 0x0720db82, 0x2721d182, 0x21db8226, 0xcd613123, + 0x7917200c, 0x06220e01, 0xe2821417, 0x5c4c3a85, 0x27062405, 0x82303131, 0x82262001, 0x2326213e, 0x23200984, 0x964c0b84, 0x20118306, 0x82338230, + 0x8311832d, 0x8b668225, 0x18198221, 0x240adf4d, 0x15060726, 0x24be8200, 0x28293d50, 0xb81d1a02, 0x012e0822, 0x0a040101, 0x0f0d011c, 0x080f0d0f, + 0x24080408, 0x0f0f2722, 0x01010708, 0x02020102, 0x0405050c, 0x0d0c0c05, 0x07010503, 0x17060d07, 0x1582070a, 0x0a030126, 0x1c1a031b, 0x2e082d82, + 0x23230803, 0x0c0b0627, 0x06060c07, 0x0b0b0503, 0x0909050d, 0x090b1605, 0x090e8001, 0x29280209, 0x22232d3d, 0x0c0d8012, 0x0504060b, 0x5b8c0c05, + 0xa0220688, 0x1d1ac0e0, 0x103708eb, 0x03020109, 0x07040908, 0x150c0a07, 0x122b1814, 0x0504070f, 0x82010303, 0x0c052700, 0x050d0d0b, 0x88830505, + 0x29087f82, 0x0a030603, 0x04020309, 0x07010908, 0x14140b13, 0x11102b17, 0x02030107, 0x0c0b0403, 0x05060d0d, 0x02030103, 0x05070301, 0x00820007, + 0xfeff0138, 0x4201e0ff, 0x5900a201, 0x26130000, 0x26313127, 0x06070607, 0x975b1717, 0x0d9c5f0c, 0x0b396518, 0x420b7143, 0x37210d7f, 0x06706b31, + 0x3107072e, 0x0d083b27, 0x020b0c0c, 0x345f0703, 0x0e84d418, 0x20053f42, 0x2d158d50, 0x03075f34, 0x0c0c0b02, 0x6565080d, 0xd0189201, 0x8e200786, + 0x09dfe718, 0x23502e82, 0x20148c07, 0x8333838e, 0x9898223b, 0x06674800, 0xa0018026, 0x57004700, 0x8f08935b, 0x0e5b43cb, 0x9e461720, 0x83cb8d05, + 0x070f5a0d, 0x23172324, 0xb5612333, 0x8260200b, 0x06ef4a8c, 0x08073419, 0x636f9485, 0x70a02c06, 0x0228293d, 0x3d292802, 0x82709090, 0x08664700, + 0x2682a020, 0x4f06b450, 0x478706d3, 0x20203f85, 0x3b833383, 0x42a0e021, 0x00200707, 0x04300082, 0xe0fffeff, 0xa2010202, 0x56004f00, 0x64005d00, + 0x291ab941, 0x33163117, 0x31373736, 0x09823133, 0x84321721, 0x09134509, 0x3a0ba341, 0x31273123, 0x07062726, 0x31233107, 0x23331727, 0x27310733, + 0x37073737, 0x86233117, 0x043e2a0d, 0x0d0d0b0c, 0x32040506, 0x05ae4114, 0x0839292e, 0x2a071717, 0x17072a2e, 0x29390817, 0x14211485, 0x07394432, + 0x2a403931, 0x07181807, 0x4e39402a, 0x0b1b1b1b, 0x82076d10, 0x600e2100, 0x10230b82, 0x838a010b, 0x20508348, 0x25eb8596, 0x160216aa, 0x0482a8a8, + 0x0f85aa20, 0x51189620, 0xaa2c070c, 0x010117a8, 0xeaaaa817, 0x1c402e2e, 0x40230082, 0x55002e2e, 0x0127069b, 0x00c00180, 0x4524001d, 0x8d18083d, + 0x33210797, 0x0c4d4a31, 0x33230526, 0x17313523, 0x13cf0519, 0x83800121, 0x054e4a00, 0xc0828020, 0x9f70fe20, 0x80012408, 0x52808040, 0x67880543, + 0xaf183220, 0x31371321, 0x37363736, 0x31233111, 0x35262722, 0x33233135, 0x33153515, 0x4d032731, 0x15200c98, 0xd3470d9a, 0x1b002409, 0x83011212, + 0xc0a02486, 0x4e908080, 0x0b970b22, 0x4b068747, 0x0124080e, 0x0e090920, 0xff21d384, 0x103d7800, 0x35084f78, 0x00040000, 0x02e0ff27, 0x00a00112, + 0x004e0027, 0x00780071, 0x3f4d1700, 0x064e4506, 0x11311723, 0x07be4a31, 0x4a181120, 0x072109e4, 0x11611807, 0x17162108, 0x08fa9819, 0x07141526, + 0x31232306, 0x4105a548, 0x13230509, 0x57171716, 0x0721059d, 0x06f04506, 0x64590720, 0x26272305, 0x50843737, 0x23330734, 0x07312733, 0x0e0e0ab8, + 0x0109580a, 0x0c0b0901, 0x09430a0d, 0x0d0a2307, 0x13830b0c, 0x83885821, 0x091525d1, 0x334a0e07, 0x20056142, 0x280c8880, 0x400a1360, 0x04040510, + 0x2300820c, 0x07580707, 0x07fe0219, 0x0a40102d, 0x28281413, 0x16141428, 0x83600a0a, 0x22498355, 0x852e0124, 0xd2fe2240, 0x250f8324, 0x0b0d0c0a, + 0x12829660, 0x13130124, 0x76424910, 0x290a8705, 0x11012001, 0x0c0c2080, 0x5e83070c, 0x0c0e0e25, 0x83050404, 0x8020265d, 0x28900111, 0x133f4128, + 0x23261323, 0x655d1822, 0x3111210c, 0x09d54919, 0x0afad518, 0x17141328, 0x33163131, 0xc5473133, 0x0b414505, 0x44058f43, 0x13210591, 0x854c8206, + 0x37162122, 0x4809c243, 0x2725051c, 0x26312731, 0x05c34d27, 0x3f412320, 0x4a332522, 0x1509070e, 0x89065646, 0x1c3f410c, 0x00821420, 0x96012822, + 0x210b4041, 0x4041d2fe, 0x2e012105, 0x21094041, 0x1382eafe, 0x13104923, 0x06e24813, 0x41410a87, 0x2828351e, 0x07000500, 0x4002e0ff, 0x2700a001, + 0x53003d00, 0x7f006900, 0x20298542, 0x0b0b5017, 0x21074153, 0x15c03523, 0x8c429820, 0x19a8201d, 0x5b09e5aa, 0x7f1906db, 0xc3180d84, 0x63180d8a, + 0x88420ac8, 0xc4551820, 0x06055d0c, 0x920c125d, 0x4100200c, 0x89421543, 0x23332128, 0x4b0a9361, 0x3520071a, 0x434115c0, 0xd7fa181f, 0x06ee4608, + 0x0fdcf318, 0x47a0a021, 0x6d410739, 0xe0e02105, 0x86060d62, 0x22944206, 0x10554a20, 0x284d410b, 0x2c051745, 0x010802de, 0x002a00a3, 0x00660053, + 0x55361982, 0x17062108, 0x48056466, 0x3e410c3f, 0x3135250a, 0x32012734, 0x0ca46118, 0x29058052, 0x15060722, 0x31273111, 0x5a492726, 0x33162207, + 0x07cb6625, 0x06070623, 0x25188227, 0x07373637, 0xfa183707, 0x3721086a, 0x8c5f1831, 0xc301240d, 0x47300f0e, 0x06210730, 0x05154110, 0xb64f3020, + 0x0d102306, 0x3f45ddfe, 0x0e0a231b, 0x26590201, 0x3e078807, 0x08070707, 0x0b0b0202, 0x31090c0d, 0x19190115, 0x19192525, 0x11100101, 0x099a011b, + 0x47041005, 0x022106e8, 0x0b464134, 0x0a106024, 0x4e4546fe, 0x0c0d251a, 0xad0a600b, 0x2307ce59, 0x0c040405, 0x71236e83, 0x83090909, 0x226e8366, + 0x84241d42, 0x246f8267, 0x0917161e, 0x156f4100, 0x66151621, 0xc1180cc4, 0x33200886, 0x4106a36d, 0x3726052f, 0x25173631, 0x524c1732, 0x057c540b, + 0x26272225, 0x46311135, 0x36250b6b, 0x37360133, 0x088f4a31, 0x2405c941, 0x31272607, 0x0ba56931, 0x0122318a, 0x64410dc3, 0x4806200f, 0x3022078f, + 0x6f410e0f, 0x0c1e2620, 0x06050404, 0x86ff820c, 0x1b292307, 0x65411111, 0x31152e07, 0x0b0d0c09, 0x0802020b, 0x0a9a0107, 0xf5831810, 0x1934200c, + 0x2308d136, 0x06090510, 0x450a6b41, 0x0d260f79, 0x0a600b0c, 0x6385b3fe, 0x85060521, 0x05042607, 0x16170937, 0x0762411e, 0x421d2422, 0x6d836583, + 0x77500920, 0x00023008, 0x3c00a301, 0x00005600, 0x31171601, 0x83071631, 0x05664df6, 0x16070625, 0x82071417, 0x85152005, 0x07062b03, 0x27223123, + 0x27263127, 0x01833135, 0x088b781a, 0x17363722, 0x19f1f718, 0x39012f08, 0x040b0b14, 0x90150802, 0x010d0e14, 0x01111901, 0x07110b0b, 0x01011f02, + 0x61140e0d, 0x2a26181e, 0x07230101, 0x04020b29, 0xfe141010, 0x7c1840e7, 0x01210eef, 0x2217839f, 0x8323280c, 0x0e1d2d2e, 0x0d12170e, 0x0e0b030d, + 0x05050c22, 0x102c4f83, 0x26331d1a, 0x1d2e1930, 0x0b332106, 0x9f206883, 0x0d2c6918, 0xdd24e787, 0xa0010002, 0x2b5fe785, 0x56c78405, 0x262505c1, + 0x34373627, 0x20058227, 0x21038535, 0xe7822726, 0x31070726, 0x31150706, 0x16230183, 0x85311717, 0x37162203, 0xa7b71825, 0x20318208, 0x05994723, + 0xbe05ff4c, 0xad1f20e7, 0x8e5f20e6, 0x000122e6, 0x06a35720, 0x00002922, 0x2edb9918, 0x316d8020, 0xc3541a05, 0x1837200e, 0x2109587e, 0x61447301, + 0x8dfe2105, 0x20070957, 0x7f6f8c00, 0xeb481299, 0x0617450e, 0x57d72721, 0x57820ef4, 0x21070e58, 0x7089b701, 0x858dfe21, 0x73012170, 0x00237088, + 0x82010000, 0x02202503, 0x00600100, 0x2f179c18, 0x76838020, 0x4a090922, 0x909ac891, 0x41186f8d, 0x4f181221, 0x821817f5, 0xc8910a27, 0x1a098218, + 0x0030de82, 0xfffeff02, 0x014201c0, 0x000c00c0, 0x13000059, 0x280b475d, 0x23332303, 0x37262722, 0x0dcc4437, 0x33363722, 0x11cb4519, 0x16311724, + 0xc3190607, 0x35211aef, 0x0bce6ba0, 0x12124834, 0x04050812, 0x07222602, 0x0c0b0d0c, 0x35070303, 0x4a191910, 0x0b320ac3, 0x070c0d0c, 0x04022622, + 0x09120805, 0x090e0e09, 0x06851009, 0x7bc00121, 0xfe230b1e, 0x19060780, 0x270b9145, 0x0f0f0e19, 0x0b5a190e, 0x07283c82, 0x390b0303, 0x07060873, + 0x0b3b2e19, 0x60204382, 0xf387f482, 0xf382c620, 0xcb6c4920, 0x1813200e, 0x470f4e7f, 0x3721061f, 0xdd5c1931, 0x84eb820b, 0x52272017, 0x23200c43, + 0x0cb4ec18, 0xb1852820, 0xe1871d20, 0x160d3a29, 0x1a1e1916, 0x190d1615, 0x7b10ff3f, 0xd0220ea3, 0x294b8080, 0x30df2206, 0xad53190b, 0x8761200d, + 0x414519db, 0x20cf8208, 0x33791803, 0x00402708, 0x0076005b, 0xfa4c0100, 0x09a06406, 0x8205ca4b, 0x312721b3, 0x4b054955, 0x346405c0, 0x06104d08, + 0x17173623, 0x20e98231, 0xb9961817, 0xfeac191a, 0x6a013a1a, 0x6c140207, 0x05030408, 0x03053e3e, 0x146c0804, 0x08080702, 0x07085a5a, 0x82178f08, + 0x21178212, 0x5c18ca08, 0xe0201303, 0x13bb4f18, 0x8abf0121, 0xa308204f, 0x18ff2067, 0x29130c6b, 0x121d1d23, 0x1d121111, 0x0989231d, 0x0001002b, + 0x01e0ff00, 0x00a00183, 0x08c35a26, 0x06313125, 0x6b171607, 0x27290667, 0x23060726, 0x27262726, 0x07d85334, 0xe0232408, 0x1e33323f, 0x1e01011d, + 0x3f32331d, 0x05083e5d, 0x100e0c05, 0x0231324a, 0x0a281918, 0x090c0302, 0x18a0010a, 0x320b4291, 0x0a093d02, 0x0203010a, 0x324b3132, 0x06172828, + 0x82020a0c, 0x00002276, 0xeb5b1803, 0x002a220a, 0x247f8237, 0x32212121, 0x062c6817, 0x4f212321, 0x788206d4, 0x18153321, 0x1910ec94, 0x240bea47, + 0xfec00120, 0x07857c40, 0x8507806e, 0x12012113, 0x07841119, 0x0f018022, 0x2008f55d, 0x093f4ca0, 0x090e2024, 0x7c728009, 0x242b8305, 0x0f500001, + 0x05bc4f01, 0x0f670020, 0x00182309, 0xb347008b, 0x18172006, 0x250c0767, 0x36373631, 0x91180737, 0x172208c6, 0x20441530, 0xfc6b1805, 0x14152608, + 0x06310707, 0x6ea31807, 0x8214200d, 0x05bb5a0f, 0x22230624, 0x1f822727, 0x6b313521, 0x26210500, 0x48681827, 0x2637220c, 0x3e401835, 0x8226200d, + 0x2623082d, 0x01373435, 0x1b1b2900, 0x0c080801, 0x08080d87, 0x291b1b01, 0x0d0d0ad7, 0x0101400a, 0x1a701a15, 0x45400116, 0x0f820583, 0x53020921, + 0x0f2307ab, 0x46400303, 0x3f22057c, 0xe1833525, 0x3f253522, 0x03222686, 0x25870f03, 0x01090223, 0x6b268201, 0x042205ec, 0x0082080c, 0x83040c21, + 0x0969226b, 0x234e8209, 0x020c0c01, 0x6d861f83, 0x43151221, 0x252305e8, 0x86020220, 0x213f2b73, 0x010fef06, 0x06ef0f01, 0x6e853f21, 0x02024024, + 0x27852520, 0x82121521, 0x5c3b835d, 0xdf670c87, 0x31212109, 0x2005cf51, 0xf35e1826, 0x11072507, 0x37373437, 0x0be4b418, 0x35263122, 0x14e46718, + 0x200cfe58, 0x07fd5820, 0x09334218, 0x58c0fe21, 0xdf4110fd, 0x001a2209, 0x1c595b35, 0x75641120, 0x15327d19, 0x5b137f43, 0x0121183f, 0x130a4460, + 0x2a051f43, 0x010202c0, 0x000c00c0, 0x456e002d, 0x272105ad, 0x06236a26, 0x4c360721, 0xf31905d3, 0x0f8608c0, 0x61262321, 0x37220682, 0x09821727, + 0x56232621, 0xc4590552, 0x33332406, 0x51173231, 0x37230510, 0x56373631, 0x07200526, 0x2105214d, 0x07822323, 0x190a1251, 0x080cbf5a, 0x0513473c, + 0x1c2f150a, 0x2d02011c, 0x252e442d, 0x13091525, 0x1a0f0c14, 0x1f302119, 0x13010120, 0x028b2114, 0x0d040202, 0x0e17120c, 0x0517030d, 0x05171112, + 0x0a5e0101, 0x0b052405, 0x3f4d0d0b, 0x19132808, 0x1914140a, 0x483f0945, 0x4c200573, 0x0daa3c19, 0x09973508, 0x12061416, 0x44342828, 0x01022d2d, + 0x14271716, 0x1b13090c, 0x20011010, 0x1c24301f, 0x0a470d1c, 0x0a110a0a, 0x1110010b, 0x0e167417, 0x610a010e, 0x0405060c, 0x2508314d, 0x0e184406, + 0x6942300e, 0x82002005, 0x59012000, 0x692008e3, 0x562ce359, 0x06200b95, 0x2015ef59, 0x0a264137, 0xaf563120, 0x1efb590e, 0x2206dc4c, 0x5a09030e, + 0x12220d04, 0x14417104, 0x5a702005, 0xa3531d0d, 0x21e78507, 0x135a0e10, 0x221d210b, 0x080c9157, 0x00002025, 0xff000004, 0x018502e0, 0x000900a0, + 0x00510014, 0x17000063, 0x31373732, 0x31153123, 0x17271333, 0x84232627, 0x3521250a, 0x31233515, 0x2505f15a, 0x07223133, 0x8f4b1506, 0x17142305, + 0x20833316, 0x83053e42, 0x373624e9, 0x46323121, 0x2125080b, 0x23272631, 0x07384805, 0x31353524, 0x2a823734, 0x82154b08, 0xe06b353e, 0x6b6bde02, + 0x023e356b, 0x1000ffe0, 0x010d0e14, 0x0c0b1108, 0x08110b0c, 0x140e0d01, 0x17290810, 0x2e352001, 0x0a0a222e, 0x352e2e22, 0x2917e0fe, 0x0aa00108, + 0x0404100a, 0x200a0b0f, 0x01604020, 0x40404060, 0x00826020, 0x30203083, 0x10223982, 0x42821090, 0x4b833020, 0x1f01603c, 0x0e2c1313, 0x13132c0e, + 0x1974011f, 0x0a0f1919, 0x0457040a, 0x0a0a0101, 0x0082000f, 0xe7600320, 0x0029220a, 0x1b9f6141, 0x17271723, 0x2bd48327, 0x31071716, 0x27262306, + 0x37073717, 0x250c9864, 0x16311731, 0xa1613233, 0x829a2015, 0x1b052700, 0x051b0001, 0x0082039a, 0x89891d30, 0x0e090989, 0x090e00ff, 0x0d0a8909, + 0x0e5e0a0d, 0x64f03015, 0x021a6464, 0x02641a02, 0x591b0101, 0x417e5959, 0x7e2305f9, 0x83060659, 0xfcff2dbb, 0x0402c0ff, 0x1900c301, 0x5f004c00, + 0x9e50bb82, 0x60152006, 0x362c08db, 0x27273637, 0x07072631, 0x15233323, 0xce54b582, 0x31212105, 0x22281785, 0x35352231, 0x15312331, 0x07900382, + 0x0dfd4318, 0x34353308, 0xf3333637, 0x16e0e0e0, 0x02190604, 0x16900116, 0x04061902, 0x0d0de016, 0x40404073, 0x12300101, 0x01170805, 0x050817c0, + 0x01013012, 0x30402840, 0x67182840, 0x013b0cdb, 0x606060bd, 0x0218180b, 0x02021608, 0x18020816, 0x06600b18, 0x01c4dd06, 0x19160e20, 0x2008ad8c, + 0x180084c0, 0x4a0cba80, 0xdf34068b, 0xa0018002, 0x56004000, 0x22010000, 0x06310507, 0x17171607, 0x15200582, 0x5c680382, 0x09935d05, 0x2305f96a, + 0x17363137, 0x4105394f, 0x25200596, 0x2626f482, 0x26312527, 0x45180323, 0x27200905, 0x07936218, 0x07312d08, 0x0c0c4001, 0x010fe8fe, 0x193a0f01, + 0x0a130301, 0x0303050d, 0x06074008, 0x0c0a0205, 0x1b010905, 0x0e9d1e13, 0x9d0d0407, 0x0c9f0d13, 0x01210082, 0x232a8318, 0x0c0ce8fe, 0x08b6b718, + 0x8e0f3308, 0x10121211, 0xa0010f8f, 0x10076504, 0x27150710, 0x252c1c31, 0x08071213, 0x01100308, 0x42070403, 0x1914162a, 0x0c17242e, 0x0e0d043e, + 0x0e083d07, 0x2985043a, 0xfe046531, 0x16151c88, 0x15160101, 0x0633911c, 0x82913306, 0x050021f6, 0x022d0483, 0x00800180, 0x00220019, 0x003f0038, + 0x089f4480, 0x65213321, 0x0634055b, 0x21070607, 0x26272621, 0x11211127, 0x31211111, 0x07213111, 0x2305225a, 0x37161706, 0x3606545a, 0x27273637, + 0x17271707, 0x25373123, 0x31151716, 0x17163333, 0x83230706, 0x160722fc, 0xae7d1817, 0x06272708, 0x06310707, 0x36822627, 0x27373626, 0x36372631, + 0x152c1b82, 0x23373631, 0x36272623, 0x35313337, 0x00250b82, 0x1b121201, 0x093047c0, 0x4900ff21, 0x40210615, 0x08098201, 0x0d058e20, 0x0640050d, + 0x09091110, 0x1109094a, 0x12400610, 0x26131313, 0x12200113, 0x12102c02, 0x02820202, 0x011a0d3f, 0x080f1202, 0x0713100b, 0x04121006, 0x10060911, + 0x0c090904, 0x0e0e0c0c, 0x230b130f, 0x23228248, 0x12023412, 0xa747628b, 0x83628208, 0x00012766, 0x01010b30, 0x3b83900b, 0x10141428, 0x90110906, + 0x00822b39, 0x1202452a, 0x12120204, 0x1d240502, 0x0b211e82, 0x24658210, 0x080c0504, 0x22908301, 0x82060402, 0x22658261, 0x83191401, 0x12043b23, + 0x07000002, 0xc0ff0000, 0xc0010002, 0x37001d00, 0x60004d00, 0x86007300, 0x59189900, 0x33210969, 0x24c81831, 0x0631290e, 0x07070607, 0x14111111, + 0x083aa718, 0x46054354, 0x0523050e, 0x4f212121, 0x21250568, 0x36373231, 0x181b8535, 0x6e0a8984, 0x811807f7, 0x14230abb, 0x83230607, 0x05cb1816, + 0x12ac6c12, 0xc340802e, 0x1d13401d, 0x1bc31a13, 0x80011212, 0x270da24a, 0xa0fee001, 0xa0fe6001, 0x180af168, 0x520c3aa6, 0x45180cc9, 0x75430c5e, + 0x8001220c, 0x23008260, 0x1a43431d, 0x01296882, 0x601b1212, 0x4001c0fe, 0x06fd68fe, 0x20074b69, 0x50bf1820, 0x0e002308, 0x596f0909, 0x995a8c0c, + 0x057f4174, 0x0cd7e119, 0x7b006b24, 0x87458d00, 0x0579420e, 0x21059a6b, 0x4c183115, 0x21200bc7, 0x0f617519, 0x18333721, 0x8f0feb44, 0xa0272021, + 0x18439121, 0x20083d58, 0x05187860, 0xef180d20, 0xe0200a87, 0x173dd919, 0x43185020, 0xb0230978, 0x18202020, 0x8a08bd43, 0x2e441817, 0x0563750c, + 0x1460fe25, 0x18010d0e, 0x240acb58, 0x01140e0d, 0x201383a0, 0x204188f0, 0x20728a20, 0x20158910, 0x8a708990, 0x202b8a15, 0x08cb5000, 0x0c00c924, + 0xd74f4700, 0x1732212c, 0x4f062944, 0x602013d5, 0x0b877318, 0x3a065a49, 0x0c0d0715, 0x03030b0c, 0x1e132807, 0x1e24241e, 0x0728131e, 0x0c0b0303, + 0x4c080c0c, 0x2020060e, 0x0efff418, 0x6458c020, 0x21c02108, 0x08203883, 0x3f222b82, 0x0082111e, 0x0c3f1e25, 0x83070d0c, 0x4221203e, 0x60240683, + 0xff050000, 0x2a05635f, 0x001200a5, 0x00500025, 0x82760063, 0x071622d1, 0x08c25c31, 0x36373622, 0x0720b582, 0x36231292, 0x84313137, 0x83172003, + 0x4e162021, 0x2220084c, 0x20052e47, 0x05904331, 0x34313529, 0x27262537, 0x5d263131, 0x16220670, 0xfe820607, 0x12912720, 0x090ae328, 0x1819180a, + 0x07870c18, 0x020e7f2b, 0x16131303, 0x030e0f16, 0x08078402, 0x241b1f29, 0x16212223, 0x23222116, 0x0e051b24, 0x1111140d, 0x58171758, 0x0d141111, + 0x6101050e, 0x0e020313, 0x1316160f, 0x84030213, 0x18702607, 0x0b0b090a, 0x82538218, 0x820c2051, 0x63012907, 0x091c1b21, 0x21111007, 0x112b0784, + 0x196a2110, 0x0a0c1718, 0x8719090a, 0x46ca2c07, 0x100f2627, 0x0f100101, 0x82462726, 0x25598208, 0x06061604, 0x6d820416, 0x76281482, 0x1918170c, + 0x0a0a0919, 0x5d280787, 0x211b1c09, 0x07111021, 0x11360784, 0x00000710, 0xff000003, 0x010002be, 0x001f00c2, 0x00310028, 0x5f181300, 0x14200995, + 0x0721fc82, 0x059d7731, 0x35262608, 0x37343135, 0x17373736, 0x17073707, 0x27313731, 0x37073713, 0x31073135, 0x1615eb15, 0x0c0b13c0, 0xc0130b0c, + 0x23098616, 0xae15c014, 0x20210084, 0x2a0082a0, 0x0808ba01, 0x10100844, 0x8214f315, 0x8244207b, 0x11072b0c, 0x15f21510, 0x44081010, 0x00843e3c, + 0x398ffe28, 0x39bc3939, 0x928200bc, 0x02bbff39, 0x00c40140, 0x003d000b, 0x00520046, 0x0065005b, 0x01000071, 0x6b172717, 0x17260629, 0x15351507, + 0x1c560722, 0x17162705, 0x37163117, 0x05853137, 0x92823620, 0x27272629, 0x30232631, 0x84313531, 0x20278409, 0x20b58205, 0x21b58235, 0x468a0715, + 0x15351729, 0x15313735, 0x83370731, 0x835c84f3, 0x082784dd, 0x07143123, 0x4e4e2301, 0x4e51514e, 0x029b0303, 0x02226002, 0x16602101, 0x16727117, + 0x01206017, 0x02602202, 0x21048202, 0x18831414, 0x82520021, 0x87ed2000, 0x5213252d, 0x0303f752, 0x2a083983, 0x4d4d4d66, 0x8f010552, 0x201d1d1d, + 0x01011d20, 0x7070702c, 0x260f2401, 0x2a102377, 0x31310a0a, 0x0f2a0a0a, 0x0f267724, 0x82700124, 0x08082104, 0x76391a82, 0x591f1f1f, 0x1e285a20, + 0x1f1f1e1e, 0xcc01011e, 0x20646464, 0x01cc2460, 0x3e0f8301, 0x222222aa, 0x055b2064, 0x00030002, 0x02c4ff00, 0x00c00100, 0x005a0029, 0x13000089, + 0x52163736, 0x162006a9, 0x2721f283, 0x06f95f27, 0x06200783, 0x07201183, 0x2105d55a, 0xe75a1737, 0x31172305, 0x7f671516, 0x31152105, 0x2f830782, + 0x4c08514f, 0x3b8207c5, 0x37363724, 0xb8782725, 0x31372205, 0x083b4836, 0x07995618, 0x0bb55118, 0x27262208, 0x37342726, 0x341daf37, 0x1b271d34, + 0x030b0d0e, 0x57160817, 0x0d01030f, 0x110a261d, 0x08110a11, 0x3100820c, 0x12070303, 0x0d0c0bff, 0x010e1907, 0x60291b1b, 0x811a0e01, 0x0e3c0afd, + 0x18050909, 0x0c030307, 0x1d1d93fe, 0x03010d1d, 0x0816570f, 0x0c0c0317, 0x05331b0e, 0x080af946, 0x1b1b292a, 0x01320f01, 0x01012c93, 0x07103e2c, + 0x580f0a09, 0x04180314, 0x10090f10, 0x01010e3c, 0x030b1c0e, 0x0c080603, 0xcf1c0c0d, 0x0b234d82, 0x831b1728, 0x10202d31, 0x400b0606, 0x0a401111, + 0x200f0705, 0x09234e82, 0x820c2708, 0x111f3389, 0x10081111, 0x0417050f, 0x0b0f5715, 0x520f0809, 0xa86a0908, 0x23a48308, 0x0050171c, 0x2a07334d, + 0x00a00100, 0x0047000d, 0x4b6d005a, 0x21210581, 0x05be7a31, 0x07070625, 0x55370737, 0x17240c12, 0x31151516, 0x200d1852, 0x430f8e21, 0xa9180556, + 0x62181201, 0x873c12db, 0x011a1a1a, 0x16081a26, 0x5f0816b6, 0x0a232323, 0xb61f1819, 0x0a19181f, 0x0b0b1223, 0x21061d41, 0x0886c0fe, 0x120b0b23, + 0x0c817258, 0x210ca247, 0x00834b01, 0x01011433, 0x65655014, 0x12111d65, 0x651d1112, 0x14101007, 0x06c15c90, 0x2607c95c, 0x10149030, 0x415b0710, + 0x5282080e, 0x410ceb74, 0x53490617, 0x00492605, 0x006a0057, 0x0ad7657d, 0x3e493120, 0x41058305, 0x4449050a, 0x31352308, 0x8f183121, 0x35240d83, + 0x26273431, 0x2205b742, 0x84313127, 0x2323280d, 0x33233307, 0x82171716, 0x3137232c, 0x57493736, 0x73052012, 0xc02011b0, 0x1d22ad82, 0x16411717, + 0x4001210b, 0x34091641, 0x17170a23, 0x0e09091d, 0xb6b61b80, 0x1a0816b6, 0x081adafe, 0x0c996c16, 0xe28c0120, 0x82c00121, 0x0220242c, 0x411c1111, + 0x65251a21, 0x0211111c, 0x26788220, 0x4b140180, 0x4901144b, 0x7a410c5e, 0x7100200c, 0xc03205cb, 0x4100c001, 0x07130000, 0x15060737, 0x31331716, + 0x078d3107, 0x270dd267, 0x27343736, 0x31333127, 0x2635078d, 0xd3072223, 0x06959595, 0x49191502, 0x21150207, 0x1602054b, 0x05f641a8, 0x0215a93c, + 0x15214b05, 0x19490702, 0x95060215, 0x05080805, 0xa3a3ba01, 0x150907a3, 0x04834902, 0x82065a21, 0x259a8609, 0x09150220, 0x04825a06, 0x83490721, + 0x73a32004, 0xff2006e3, 0xa782a582, 0x2a001527, 0x00003e00, 0x066e7d01, 0x092cda18, 0x16171628, 0x37360717, 0x40183115, 0x31200844, 0x20051f56, + 0x8c068505, 0xc001291a, 0x5f3f4002, 0x02403f5f, 0x37220787, 0x0a871720, 0x46201727, 0xfe466363, 0x89078577, 0x70012117, 0x0ba9471a, 0x2307a667, + 0x66120b87, 0x66270b87, 0x01180b12, 0x85831801, 0x120b2206, 0x21188756, 0xef4b0056, 0xf0012106, 0x212cc382, 0x42002800, 0x62004c00, 0x8c006e00, + 0x21129d66, 0xe7503115, 0x31232107, 0x1121e083, 0x05a16605, 0x21058042, 0x2b451716, 0x057b5d09, 0x1737362b, 0x27263736, 0x31153123, 0x05404a33, + 0x18171621, 0x21099c7e, 0x1f843135, 0xd87e3520, 0x6e332006, 0x062106b8, 0x202f8407, 0x058e4d31, 0x4c842e83, 0x25090567, 0x12121bd0, 0x04833001, + 0x2c050567, 0x202020d0, 0x010f1018, 0x18100f01, 0x057f5610, 0x02162027, 0x10101602, 0x27198260, 0x010d0e14, 0x140e0d01, 0x26096b4a, 0x01501010, + 0x820f300f, 0x06804a2f, 0x80203384, 0x80285083, 0x9009090e, 0x1b121201, 0x01250484, 0x80804080, 0x276818e0, 0x2a408407, 0x010f5030, 0x16160250, + 0x18503002, 0x2b09436e, 0x010f800f, 0x400f0180, 0x7060010f, 0x20050157, 0x84528320, 0x40402162, 0x82058770, 0x05f36720, 0xc74b4a20, 0x6721200e, + 0x17231787, 0x82371727, 0x0cb1461b, 0x27220729, 0x31073127, 0x82260706, 0x37262307, 0x83671736, 0x1b913516, 0x071f1b1b, 0x1f061110, 0x1416081b, + 0x10063004, 0x21210711, 0x30241083, 0x08161404, 0x25197d67, 0x5959fffe, 0xc4835a59, 0x14595a2b, 0xa0160804, 0x5f100110, 0x250f825f, 0x0816a010, + 0xcb8e1404, 0xcba64620, 0xcb850720, 0x820cf87e, 0x0a7c7ec5, 0x6421c796, 0x2b008224, 0x0a10130f, 0x110b2f2f, 0x24240f13, 0xc3990b89, 0x8234fa21, + 0x0b112b00, 0x4242130f, 0x110b0f13, 0x0b893434, 0x00040025, 0x41c0ff00, 0x3e22088b, 0xc1a74e00, 0x18233321, 0x420a0167, 0x31230894, 0x7c173736, + 0x15210b3d, 0x0ae97031, 0x2c0c1569, 0x44444478, 0x01151620, 0x20161501, 0x05e4732c, 0x22584420, 0x2c2c2105, 0xf020ca99, 0x36832e83, 0x0216202c, + 0x68381602, 0x08680216, 0x37820c08, 0x53463820, 0x22cb8807, 0xa6520037, 0x460320cb, 0xb171110d, 0x23232607, 0x26272223, 0x059d7637, 0x71311721, + 0xcf8c0db9, 0x4506ff6b, 0x982a0546, 0x05580508, 0x580a0404, 0x06820988, 0x09053027, 0x300d0509, 0x1a664205, 0x4700ff21, 0x072d0c2c, 0x09080880, + 0x50080808, 0x46150808, 0x4fda8207, 0x1d2c0a03, 0x31002400, 0x4b003e00, 0x6d006100, 0x0723e1a6, 0x44333736, 0x2622063f, 0x0c981527, 0xe5492686, + 0x069b4907, 0x63181720, 0x96420ae6, 0x4ea02016, 0x09930954, 0x18070632, 0x1807180e, 0x12120102, 0x12121b1b, 0x17170201, 0x4109904e, 0x302019ec, + 0x0c47dd18, 0x40200c83, 0x48271187, 0x17010117, 0x83080858, 0x2355834d, 0x58580808, 0x0a0b6418, 0x240bd342, 0x0058003f, 0x26274169, 0x17161722, + 0x0d2fe018, 0x34353622, 0x2205d665, 0x18160717, 0x2e087744, 0x27263123, 0x37363135, 0x31373133, 0x18171736, 0x72088aa7, 0xdb5505a2, 0x0c20420a, + 0x111c0222, 0x1c350082, 0x0b06090d, 0x0d0d0c16, 0x060c150c, 0x0a5c0d09, 0x24070a0a, 0x26d68321, 0x0a072421, 0x830b0c33, 0x0c0b270a, 0x0808090a, + 0x1a410a09, 0x11e22119, 0x2b057a5d, 0x0d0c0611, 0x16150d09, 0x15161a1a, 0x23080882, 0x051f060c, 0x050a800a, 0x01230703, 0x010f300f, 0x23030723, + 0x19120a09, 0x090a1219, 0x0d080c0b, 0x0b0c090c, 0x4305934a, 0x50200bf3, 0x43261d41, 0xbe4b0627, 0x0ca14a05, 0x17271729, 0x37313527, 0x46333631, + 0x222105cf, 0x16284227, 0x6569c020, 0x2ded210d, 0x03270082, 0x01010b04, 0x9903040b, 0x074252ed, 0x2c078360, 0x1e1e1e6e, 0x01021e40, 0x010b680b, + 0x22cf8f02, 0xa74c0038, 0x370722cf, 0x08d75407, 0x2105c74c, 0xca823707, 0x5f050b4d, 0x534608d3, 0x1f672117, 0x0e2e0082, 0x3011110e, 0x11300e0e, + 0x700e0e11, 0x0a873030, 0x831f1f21, 0x20d19a18, 0x203b82df, 0x8234831f, 0x22348239, 0x82221111, 0x224a843c, 0x841f1111, 0x002c0818, 0x00000600, + 0x0002c0ff, 0x0b00c001, 0x3a002c00, 0x56004800, 0x00006300, 0x26070625, 0x16313727, 0x17373233, 0x26373633, 0x26273627, 0x15821182, 0x17060739, + 0x17160706, 0x37161706, 0x37361716, 0x27363716, 0x27172727, 0x83343536, 0x201b822f, 0x25f18203, 0x07222326, 0x1d823127, 0x83071721, 0x3627280d, + 0x06311737, 0x50171415, 0xc86806bd, 0x6f013c05, 0x303f3f30, 0x1d1d183a, 0x345b3a18, 0x0d340202, 0x42161410, 0x16425b5b, 0x830d1014, 0x110e210f, + 0x2e2a0f89, 0x0e3a3a3a, 0x01233a0e, 0x0a832201, 0x3e833484, 0x1782d120, 0x23201482, 0x32201c82, 0x210b6e62, 0x29822223, 0x0d0d3a23, 0x8750973a, + 0x214d8c60, 0x66880b01, 0x59832320, 0x3520a088, 0x200b1163, 0x20008200, 0x06374101, 0x3600b922, 0x2009eb51, 0x9d101a07, 0x0d4c740b, 0x0b977618, + 0x06413620, 0x03df2806, 0x3c0d0606, 0x18012626, 0x24079a59, 0x3d252601, 0x06f4730d, 0x32325139, 0x22220102, 0x4848393a, 0x22223a39, 0x32320201, + 0x0c0b0d51, 0x83a00104, 0x31132705, 0x36524232, 0x39830236, 0x31324223, 0x05846913, 0x19040625, 0x85594142, 0x243b852f, 0x19424159, 0x20658204, + 0x2daf8300, 0x010202bb, 0x002600c5, 0x07160100, 0x5b4f3103, 0x77072005, 0x342006ab, 0x08058c6a, 0x3107074d, 0x27263127, 0x31013734, 0xf2011736, + 0x03400210, 0x780e0e0d, 0x13141044, 0x08a80401, 0xcb0c0a09, 0x10011158, 0x1012c001, 0x140bba01, 0x080f60fe, 0x4a310607, 0x1509070f, 0xb7040654, + 0x08090b0b, 0x13092cb5, 0x00010a13, 0x18000b09, 0x2e0cff45, 0x004c0039, 0x17271300, 0x06072627, 0x61311507, 0x3621050f, 0x05264227, 0x6a05c64a, + 0xa34b07f5, 0x37362107, 0x27231182, 0x82222726, 0x83172031, 0xd1291934, 0x82352009, 0x224b31a5, 0x0e0c2222, 0x1602010e, 0x0605116e, 0x52361f0b, + 0x2b071241, 0x0d0b303e, 0x0208080c, 0x533f0b03, 0x310b0e41, 0x232e2f35, 0x070216b5, 0x0e111148, 0x1602410e, 0x42827501, 0x05060b2b, 0x02166e11, + 0x0c0e0e01, 0x0551411f, 0x01214683, 0x253e8321, 0x080d0c0b, 0x8741012d, 0x1414330b, 0x16023523, 0x48070a68, 0x11110e0e, 0x02165e41, 0xbb5b0100, + 0x766e2008, 0xd51809c7, 0x15230a16, 0x18313331, 0x8c0c0f83, 0x19bf6a1b, 0x6e05924b, 0xdb6a08af, 0x234f870c, 0x0e090900, 0x2008dc6b, 0x0f886ae0, + 0x20940f8f, 0x1f5b0120, 0x18702009, 0x210cc563, 0xa74fb090, 0x1890200b, 0x200c45e2, 0x2d0d83b0, 0x01000000, 0xe0ff2000, 0xa001c001, 0xfb823100, + 0x8a233321, 0x0b616bda, 0x89312321, 0x5fba830d, 0xc02207f3, 0x16584040, 0x06d94e06, 0x44270687, 0x02022d2d, 0x1a442d2d, 0x1811e4b7, 0x200738bf, + 0x831e8360, 0x06003826, 0xd0ff0000, 0xb0010002, 0x3d002a00, 0x7b005000, 0xb8008e00, 0x71370000, 0x1626073b, 0x32331617, 0x035f3637, 0x2480820c, + 0x06072223, 0x052c5907, 0x9d493320, 0x92372011, 0x07222312, 0x32873131, 0x97057559, 0x7027205a, 0xbf41095b, 0x26372107, 0x8607d77c, 0x2d419874, + 0x0e090900, 0x13140937, 0x14131919, 0xb449f709, 0x87f72005, 0x8237200f, 0x0ca36e0f, 0x200c144a, 0x87329720, 0x062c6f52, 0x49205485, 0x57205487, + 0x57200f85, 0xd7200f87, 0xd7210f85, 0x21078220, 0x00820d16, 0x09421620, 0x180b8b05, 0x22150e94, 0x920d0d50, 0x5737822b, 0x3585068c, 0x54974020, + 0x220a4b43, 0x1800003a, 0x2112f1af, 0x8e182726, 0x17230964, 0x44150631, 0x2621072a, 0x21198327, 0x87463127, 0x60012107, 0x0ce18318, 0x281b5e22, + 0x28270f87, 0x01015e1b, 0x8c291b1b, 0x201f820f, 0x23148be0, 0x1a2f0606, 0x1a232589, 0x8c06062f, 0x8410834e, 0x0c176422, 0x8317e348, 0x0521219b, + 0x2605b97d, 0x31072722, 0x4c363117, 0x1b8308d7, 0x27353423, 0x65001931, 0x17162309, 0x79183137, 0xc37d0963, 0x40012b14, 0x1b121201, 0x55551118, + 0x9d4a1811, 0x22078307, 0x871c1351, 0x131c220e, 0x57521851, 0x66a02008, 0x09830954, 0x2005cf5c, 0x23298380, 0x0f2f2e0e, 0x52822688, 0x2d030423, + 0x8f521813, 0x2d132309, 0x4f870403, 0xdb7f0020, 0x00202a0c, 0x005a0040, 0x17270100, 0x05c87427, 0x20057655, 0x22da8217, 0x68361716, 0x262906a0, + 0x26072727, 0x22313123, 0x1b901807, 0x31372411, 0x82343536, 0x0514411f, 0x7d07da4d, 0x2e080586, 0x07061716, 0x10cb0123, 0x07041010, 0x2e110307, + 0x112e0707, 0x03080703, 0x01062e10, 0x842e0601, 0x0a0d0d0a, 0x58252202, 0x02023b3b, 0x83583b3b, 0x030c2807, 0x7f500909, 0x671d1e2c, 0x2724050a, + 0x0f083a26, 0x082b0a82, 0x2d2d8c01, 0x2d07072d, 0x82080311, 0x072d2349, 0x0b830101, 0x11254b82, 0x03090935, 0x833e870c, 0x21252207, 0x25588303, + 0x1d015750, 0x3d852c1e, 0x27263a22, 0xfb8d4f84, 0x50003527, 0x00006400, 0x20fb8225, 0x05885822, 0x54222321, 0x2320051c, 0x2720e782, 0x3720d982, + 0x2905d546, 0x33163117, 0x31373732, 0xed601716, 0x31172405, 0x18070706, 0x22198b4d, 0x83072613, 0x23358227, 0x36313317, 0x45823782, 0xa1012e08, + 0x08474747, 0x12020607, 0x171a1a17, 0x07060212, 0x041b4708, 0x0302073d, 0x30201b03, 0x08080637, 0x20303706, 0x0203031b, 0x1b043d07, 0xca4918a1, + 0x0e0e3113, 0x040d300e, 0x3c100613, 0x04130610, 0x0558300d, 0x043a0082, 0x06064608, 0x05040846, 0x26352905, 0x08070804, 0x2e132742, 0x132e0505, + 0x0c824227, 0x34270424, 0x47189829, 0x012a1792, 0x23090946, 0x1038100b, 0x04820101, 0x230b2008, 0x09000000, 0xe0ff0100, 0x9001ff01, 0x33002300, + 0x55004300, 0x77006500, 0x99008700, 0x1800a900, 0x23085d50, 0x17163736, 0x59050478, 0x352205b8, 0x50182631, 0x134e0853, 0x31152806, 0x31230706, + 0x4e352726, 0x0f88063d, 0x8805c652, 0x3631220e, 0x0f4b5d37, 0x611821a1, 0x052011af, 0x0e596218, 0x1717263d, 0x1f130e17, 0x54543c3d, 0x131f3d3c, + 0x180e170e, 0x4d011551, 0x5115014d, 0x4e060e18, 0x355d1373, 0x174d5d0c, 0x6118178a, 0xfe210c7c, 0x757118d0, 0x28cf3f09, 0x171b2828, 0x02212024, + 0x24202102, 0x15281b17, 0x16081b06, 0x371b1b37, 0x061b0816, 0xc94e5f15, 0x89602009, 0x5d70200a, 0x7b5d1f65, 0x89848b0a, 0x18002041, 0x2a09e774, + 0x001100a0, 0x0042002a, 0x475d0054, 0x8f6309c7, 0x37342705, 0x11173336, 0xb6791111, 0x05b87a05, 0x37271382, 0x37363137, 0x18163333, 0x89082c7b, + 0x3111231f, 0x5a182733, 0x23260d67, 0x15073531, 0x06821535, 0x8033312d, 0x0e202020, 0x09600909, 0x82400e09, 0x82802003, 0x151b2d0b, 0x1a050805, + 0x061ae464, 0x1b150507, 0x64211486, 0x061a5764, 0x40206025, 0x18a00140, 0x6007c053, 0x3b2f0c01, 0x28232d35, 0x02021a3c, 0x23283c1a, 0x463b352d, + 0x012005b7, 0x23072772, 0xa0402020, 0xbb440082, 0x80012907, 0x1000c001, 0x4d002100, 0x200a0958, 0x06d15733, 0x2f8f5d19, 0x18373621, 0x21099095, + 0x77606021, 0x86c02006, 0x076b5107, 0x09575d19, 0x24233823, 0x239d8501, 0xc001c0fe, 0x0619cc82, 0x078407a6, 0x1d82dd83, 0x0c295d19, 0x2b2b0c23, + 0x060e493b, 0x1805a74d, 0x28077b74, 0x0048003b, 0x00620055, 0x082d566f, 0x127d0019, 0x280a8f7b, 0x37361716, 0x35151711, 0x05734b15, 0x2205fb55, + 0x6c370706, 0x1b860b92, 0x2327262f, 0x07070631, 0x31211716, 0x27263736, 0x820c8221, 0x250c8919, 0x12120160, 0xae6a011b, 0x90fe2408, 0x18161722, + 0x2208b46c, 0x1840010f, 0x210928c8, 0xee5501d0, 0x0f302205, 0x82098901, 0x00012114, 0xff201083, 0x0b8a0584, 0x0fff4318, 0x22171622, 0x077d4218, + 0x83f0fe21, 0x30012931, 0x50505018, 0x16020216, 0x08200484, 0x2007a551, 0x45089960, 0xd73507b7, 0xa0018002, 0x3f002200, 0x00004c00, 0x31373637, + 0x32333631, 0x06ba4917, 0x18057c51, 0x230989d4, 0x05373233, 0x26821a82, 0x34273623, 0x07264a27, 0x2005da65, 0x20158216, 0x05a44c17, 0x34352286, 0x4e4e4444, 0x0a344444, 0x090a0c0d, 0x4f4f3d0a, 0x4f4f5b5b, 0x080a823d, 0x0a0d0c20, 0x3d570a01, 0x090d0c0b, 0x270a0109, 0x37373130, 0x0a263031, - 0x09090101, 0x3d0b0c0d, 0xec5e4057, 0xf520080f, 0x1d1d1c32, 0x0a09321c, 0x090d0d0a, 0x0120213b, 0x3b212001, 0x0a0d0d09, 0x0235090a, 0x01010936, - 0x22211884, 0x20008213, 0x82168422, 0x0236214a, 0x108c8c18, 0x00820020, 0x1f510a20, 0x00153208, 0x003c002a, 0x0062004e, 0x00860074, 0x00aa0098, - 0x178f48bc, 0x65721720, 0x34072113, 0x10064e18, 0x52173221, 0x0b75055a, 0x4a238408, 0x22240ac1, 0x37352627, 0x85622595, 0x2023a708, 0x51479017, - 0x01270ea9, 0xff1b1212, 0x43c02000, 0x06860542, 0x620cd15a, 0x19830c1f, 0x650ad177, 0x358c0ce5, 0x4f8c1999, 0x23104f51, 0x12121b80, 0x4408b15a, - 0x094b0692, 0x0cb4750c, 0x795a658c, 0x55198c0c, 0x198c0c75, 0xbf444d8c, 0x80022905, 0x2300c001, 0x39002e00, 0x0d595518, 0x18263521, 0x2a0d0478, - 0x1d060722, 0x27070601, 0x820f0617, 0x17162506, 0x17152721, 0x07157818, 0x18353621, 0x250a5155, 0x1d010158, 0x78181f02, 0x0e390711, 0x24420909, - 0x1f017993, 0x02011e01, 0xf6210113, 0x134040e0, 0x131a1a13, 0x4a551813, 0x0245280b, 0x011f2b03, 0x18232d20, 0x31071d78, 0x130e0909, 0xee74370f, - 0x1e02202d, 0xc202132b, 0x3182cd15, 0x00263782, 0xff000002, 0x018201c0, 0x001a0023, 0x18b18227, 0x6408415a, 0x342e05c5, 0x012b2627, 0x23272627, - 0x21050706, 0x685c1613, 0x13372206, 0x071a7187, 0x37078b4e, 0x14090760, 0x01091478, 0x1580fe19, 0x130e0d02, 0x0d0e13f6, 0xae011502, 0x0e20af82, - 0x82051c42, 0x110e2905, 0x6e110101, 0x0d13adfe, 0x13220082, 0x4b505301, 0x001a220c, 0x1ca36c3c, 0x33162728, 0x36373231, 0x154e1617, 0x45352005, - 0x0721064c, 0x5c6a1806, 0xf2f01809, 0x19393618, 0x11192020, 0x270e0e10, 0x25283333, 0x33332825, 0x110e0e27, 0x21158310, 0xc06c1717, 0x17c72218, - 0x20258217, 0x212f8511, 0x3f832626, 0x83171721, 0x25b78c33, 0x0036001d, 0x6b530100, 0x08c3730a, 0x08127218, 0x1d060134, 0x17060701, 0x33013f16, - 0x27013f32, 0x012b0607, 0x08833435, 0x66560123, 0x052f5309, 0x0685a020, 0x1d660a3a, 0x28281f1d, 0x17e1fe1e, 0x13100c1b, 0x212a2816, 0x792d7818, - 0x05240704, 0x01230682, 0x530a66a3, 0xa020056a, 0x093a0685, 0x28281e66, 0xfe1d1d1f, 0x2a2118da, 0x10131628, 0x79171b0c, 0x2405782d, 0x06820407, - 0x0034a682, 0xff400002, 0x016002c0, 0x000f00c0, 0x2500002d, 0x36013f36, 0x2d05c752, 0x0706010f, 0x06270717, 0x14070607, 0x05821617, 0x08092d6c, - 0x36373624, 0x34353437, 0x2b730135, 0x020aa119, 0x110e0c03, 0x25ed0f10, 0x74137301, 0x011e1f2e, 0x08080101, 0xd541050d, 0x90230805, 0x01201f30, - 0xfa240751, 0x0c11110f, 0x0b01010c, 0x682f1db1, 0x1f03691a, 0x06062e20, 0x010b0b0d, 0x820e0909, 0x20012929, 0x0202301f, 0x05000102, 0x2f086f42, - 0x00290014, 0x00c7003e, 0x130000ef, 0x011d0607, 0x2308bc5d, 0x26012f34, 0x33208b82, 0x17201493, 0x0f212891, 0x07075002, 0xd1821d20, 0x15070624, - 0xbf831716, 0x332ec182, 0x33303530, 0x31300239, 0x33363130, 0x09831732, 0x16313222, 0x220a8e52, 0x83013932, 0x941f8218, 0x03392717, 0x33143130, - 0x32871530, 0x27343524, 0x04832726, 0x67829d82, 0x08ee5718, 0x23011d24, 0x1a720535, 0xd74f1805, 0x3c078b07, 0x14152722, 0x21331617, 0x3d363732, - 0x06185601, 0x11110b0c, 0x18060c0b, 0x04060604, 0x200e8d80, 0x211c8c68, 0x3c41be18, 0x121b3c05, 0x100d0112, 0x05081115, 0x01010102, 0x05060804, - 0x04020101, 0x15141008, 0x8204080f, 0x07052212, 0x28119507, 0x15110805, 0x12130c11, 0x2347821b, 0x0109090d, 0x3106ae44, 0x0d400140, 0x06152310, - 0x14050504, 0x05142323, 0x07860404, 0x16060524, 0x28821022, 0x80010e23, 0x242e820e, 0x0b0a2aba, 0x82aa8203, 0x0b0325b0, 0x06062a0a, 0x1c450fa0, - 0x01302b06, 0x471b1212, 0x0c010108, 0xb1820406, 0x06050122, 0x0621af82, 0x220f840c, 0x8d060102, 0x82ba820d, 0x211d83d4, 0xe9834708, 0x2a0f3161, - 0x0305db30, 0x03030410, 0x8f031004, 0x55052107, 0x20058442, 0x0b0f7955, 0x3b001b25, 0x52130000, 0x9358081b, 0x08114a05, 0x11272623, 0x05894113, - 0x012f342a, 0x0f222726, 0x22270601, 0x23200982, 0x84420983, 0x06254105, 0x17160125, 0x85900122, 0x70fe2660, 0x0160010f, 0x310c8220, 0x0e0a4108, - 0x08150a0d, 0x27070b0a, 0x0b0e0e0a, 0x9318084f, 0xb0200b97, 0x230b8949, 0xe0fe5001, 0x44311c82, 0x0a4d090c, 0x08150901, 0x0c2f0801, 0x0c095b0b, - 0x33468254, 0x20000300, 0x3e02c0ff, 0x0c00c001, 0x29002000, 0x35250000, 0x09505118, 0x3605232c, 0x37363137, 0x17151732, 0x51180716, 0x0521074e, - 0x05296416, 0x01332d08, 0x3f0f0130, 0x1e1d3332, 0xdf0f0201, 0x3a02f0fe, 0x020f5a39, 0x3c0c0a9d, 0x3636434f, 0x02012020, 0x3d0d100e, 0xee9f0a0b, - 0x020fdfd0, 0x3b057d74, 0x5d20010f, 0x100e4241, 0x0b0c9dee, 0x2001012b, 0x43363620, 0x560f0210, 0x9f090938, 0x182c3b41, 0x2008f56f, 0x0573500f, - 0xb8490120, 0x013f2106, 0x41053579, 0x0121163b, 0x05af4497, 0x0a396926, 0x700a0d0d, 0x59200c85, 0x80210c84, 0x06344201, 0x3c41fe20, 0x4557200e, - 0x6a240511, 0x7009093a, 0x5a200a85, 0x80200a82, 0x0c2b5118, 0x27001326, 0x00003900, 0x1805a174, 0x2408d47e, 0x37363736, 0x052c4a33, 0x97522320, - 0x83332007, 0x26551814, 0x80012a11, 0x01242536, 0x36252401, 0x250888c0, 0x363602c0, 0x8156c052, 0x21088407, 0x6b5280fe, 0x1b1b240c, 0x76400129, - 0x80200f93, 0x07873187, 0xff726020, 0x00022113, 0x02260082, 0x00800140, 0x4b180013, 0x861808ab, 0x262508d5, 0x23272627, 0xba551813, 0x848c8d10, - 0x355e189e, 0x7e6c1810, 0x53fe2011, 0xc0830c3e, 0x39082b4e, 0x00a00180, 0x00500039, 0x006c0067, 0x01000070, 0x17160706, 0x27231733, 0x0a862b26, - 0x0e209a18, 0x3f323322, 0x4505b35d, 0xa683055b, 0x84072221, 0x053b6eab, 0x250d4253, 0x33053736, 0x10450706, 0x37362c05, 0x33323736, 0x06073130, - 0x82171617, 0x012b3144, 0x27073337, 0x02163801, 0x221a1602, 0x0c081b95, 0x2c240a84, 0x100f1b16, 0x2a078141, 0x07232332, 0x55080d31, 0x41022d15, - 0x14360b64, 0x13096213, 0x0c209323, 0x20091314, 0x141f0605, 0x14010114, 0x07841f14, 0xbafe1227, 0x13130641, 0x820c841a, 0x02033814, 0x08070618, - 0x4933220f, 0x6c5b7b01, 0xa0013c31, 0x02161602, 0x830a2640, 0x351f2206, 0x27578804, 0x0c30201f, 0x3e25288f, 0x07837b87, 0x10b5062b, 0x3bf0fe01, - 0x140c0913, 0x8262893c, 0x141c2555, 0x100f1940, 0x312a7487, 0x010c0c0e, 0x80656530, 0x074e5353, 0x02c02805, 0x00c00100, 0x6e4f0042, 0x8b210637, - 0x06994200, 0x32011d23, 0x05f85d17, 0x14152324, 0xa0180607, 0x994f0d9e, 0x27222409, 0x84013d26, 0x37343a04, 0x35313336, 0x37363531, 0x15073736, - 0x3b161714, 0x22233501, 0x17150607, 0x09b37d33, 0x18071521, 0x2010e65c, 0x2f119021, 0x23272603, 0x17160706, 0x01373633, 0x3d3c6600, 0x2206ec4e, - 0x4b0e0909, 0xc020061d, 0x7d180786, 0x01240868, 0xa0663c3d, 0x70211482, 0x20128270, 0x830483b0, 0x0c444b0c, 0x220df866, 0x780f0130, 0xc0260863, - 0x22171601, 0x31822010, 0x3d824020, 0x49183483, 0x5d831236, 0x20271e83, 0x16172210, 0x8360a001, 0x20318229, 0x84038280, 0x1294560b, 0x20050847, - 0x08b85f01, 0x0003002f, 0x02e0ff00, 0x00a00140, 0x00360015, 0x17714f58, 0x17161726, 0x27363716, 0x760b9f56, 0xe155054d, 0x36172507, 0x37363137, - 0x0020259b, 0x09395518, 0xfe2e0983, 0x12121b40, 0x0e16c801, 0x0d0f1210, 0x17442c1c, 0x1c2c2707, 0x10120f0d, 0x6518160e, 0x012308df, 0x9c140e0d, - 0x6d602024, 0x0987092a, 0x70400129, 0x0d0f0f01, 0x561f1210, 0x1f2409e8, 0x0f0d1012, 0x83059e64, 0x05bb6e5b, 0x5018249a, 0x23220c0f, 0x45514700, - 0x7e152006, 0x332009cf, 0x290d3151, 0x27262726, 0x37360123, 0x6e7f3631, 0x0706230a, 0xdf480706, 0x203b8408, 0x0af4413b, 0xb0838020, 0x28069241, - 0xa0362524, 0x25362001, 0x07e94924, 0x1b121222, 0x2209304d, 0x18a001a0, 0x220adf95, 0x82016001, 0x064a421d, 0x3383a020, 0x0140fe22, 0x5a874082, - 0x83e0fe21, 0x06c07058, 0x0e00ff24, 0xb35f0909, 0x3d022905, 0x1c00c001, 0x40002e00, 0x18067961, 0x823d59c3, 0x353322ec, 0x0c721836, 0x16182112, - 0x4172c318, 0x02fcfe2b, 0x12022c12, 0x122c0212, 0x22098902, 0x1802c001, 0x213888c3, 0x4c8e3001, 0x00205684, 0x3b055f51, 0x013d02c0, 0x002d00c0, - 0x0051003f, 0x37361300, 0x011f1633, 0x26271533, 0x011f0607, 0x08dd8a18, 0x1716332c, 0x06010f16, 0x21172107, 0x06821716, 0x03272625, 0x18272623, - 0x18107fb3, 0x2b12275b, 0x48160200, 0xbe020513, 0x0e111117, 0x09170e1a, 0x0910b635, 0x08360309, 0x09c3fe17, 0x02163401, 0xb8fe1602, 0x823c0513, - 0x5fe02009, 0xf0200fbf, 0x2d0f665f, 0x0216a801, 0x660c1301, 0x110e0e17, 0x53844011, 0x170e0e2d, 0x0c0c0166, 0x0116c010, 0x82160230, 0x0112221e, - 0x2052823d, 0x203a8f48, 0x205c8f30, 0x0ab35f00, 0x1500c025, 0x18010000, 0x1808c341, 0x270b20f3, 0x100c1c01, 0x0cd80c10, 0x07860282, 0x8ab40121, - 0x2f1c840c, 0x00000300, 0x3f02c0ff, 0x3000c001, 0x6d003800, 0x089b5018, 0x0a078218, 0x22054c57, 0x4e222306, 0x07370570, 0x26012f22, 0x013f3637, - 0x36373635, 0x07353337, 0x011f3637, 0x82152135, 0x37362226, 0xde921831, 0x2627210a, 0x4c06515a, 0xd0700514, 0x3637250a, 0x17163117, 0x17213e82, - 0x064755c0, 0xf4833020, 0x04122c37, 0x1a650d03, 0x111d1e19, 0x1a111414, 0x65191a21, 0x1204030d, 0x08ff832c, 0x6c20303b, 0xff6c1414, 0x2a239300, - 0x1315232a, 0x070d1c16, 0x0b030307, 0x14260d0b, 0x1f31322d, 0x09070709, 0x2c32311f, 0x0b0d2615, 0x0703030b, 0x161c0d07, 0x2a231513, 0x1312232b, - 0x06784301, 0x47832020, 0x070f8034, 0x5c0e1110, 0x0c0c140f, 0x5c0f0113, 0x0710110e, 0x7c83800f, 0x24bb2028, 0x5b240707, 0x7119cb5b, 0x0c222f35, - 0x0082000c, 0xdf4d0420, 0x00452d08, 0x0063005e, 0x13000068, 0x31222726, 0x82058145, 0x16152cfb, 0x14150617, 0x07062317, 0x83011f14, 0x208c180f, - 0x27342f08, 0x36372726, 0x23272635, 0x27343536, 0x0f833736, 0x2505415c, 0x07063130, 0x0b822317, 0x07222324, 0x5a640706, 0x33162205, 0x05177932, - 0x17077d08, 0x37172707, 0x013f2707, 0x010609e0, 0x10171907, 0x15240a11, 0x013e0315, 0x010c3c09, 0x13212701, 0x0d080914, 0x080d8401, 0x21131409, - 0x0c010127, 0x3e01093c, 0x24151503, 0x1710110a, 0x09070719, 0x0a1b0c38, 0x02050502, 0x110d1a0a, 0x352b0c0b, 0x0b0c2b35, 0x20105811, 0x30804030, - 0x01401020, 0x080501b0, 0x1a1b0102, 0x0a0a0723, 0x060e160c, 0x01161a06, 0x6102030c, 0x2c252519, 0x5d825582, 0x252c2108, 0x02611925, 0x16010c03, - 0x0e06061a, 0x0a0a0c16, 0x1b1a2307, 0x05080201, 0x1901d001, 0x01190505, 0x38825182, 0x5f820e20, 0x80206028, 0xc02020c0, 0xdf7a2080, 0x0042260e, - 0x007d0059, 0x088d498f, 0x26270724, 0xef82012b, 0x33011d30, 0x17161716, 0x26330714, 0x36373435, 0x051a1737, 0x26240b24, 0x27072227, 0x220a1348, - 0x49010f22, 0x32200a96, 0x240dd95c, 0x07060537, 0x0a964931, 0x33205582, 0x0bde2819, 0x5d823620, 0x54482320, 0x18013b11, 0x16020216, 0x2d62103a, - 0x0e651b13, 0x44600909, 0x03022d2d, 0x11110346, 0xa1490f1e, 0x3e37210f, 0x2e05304d, 0x2f090c14, 0x3f170c0e, 0x140c1cb7, 0x5c1c0913, 0x1b2a09bc, - 0x0f011212, 0x1007ecfe, 0xf5461410, 0x10142807, 0x0a430710, 0x49302222, 0x30240783, 0x430a2222, 0x85062258, 0x05be494e, 0x2d521e34, 0x0e090913, - 0x2d2d0220, 0x0f0f1144, 0x21212811, 0xba491d16, 0x4866200e, 0x072c06ce, 0x01141a28, 0x1334e9fe, 0x35140c09, 0x250beb55, 0x12411118, 0x11870b0b, - 0x120b0b26, 0x011d1d2d, 0x23080e4a, 0x082d1d1d, 0x0c227318, 0x29051744, 0x00c00100, 0x002f0011, 0x7d180068, 0x0720123f, 0x2b054a5d, 0x3b161714, - 0x17161701, 0x013f3633, 0x24059141, 0x27262726, 0x08cd7e23, 0x2005b641, 0x50218216, 0x3620059e, 0x22060d63, 0x82060726, 0x64178213, 0x3720094e, - 0x01202183, 0x2010a256, 0x06764760, 0x050b022b, 0x051b261b, 0x090e020b, 0x08c88309, 0x155c4039, 0x32160601, 0x0d0c1020, 0x09080101, 0x4522170b, - 0x22456565, 0x09080b17, 0x0c0d0101, 0x16322010, 0x2d160206, 0x06030418, 0x3d1e0d06, 0x1e3e6060, 0x0405050d, 0x752d1804, 0x602011b7, 0x30205083, - 0x64295882, 0x1a02021a, 0x0e090964, 0x08758330, 0x1606ea39, 0x10090215, 0x140d0b08, 0x070b0b10, 0x0113090e, 0x0e091301, 0x100b0b07, 0x080b0d14, - 0x15020910, 0x0c090616, 0x05050202, 0x01110809, 0x09081101, 0x02020505, 0x4800090c, 0x0231078f, 0x00950100, 0x00450018, 0x26271700, 0x3f363327, - 0x20f58201, 0x28058432, 0x010f0633, 0x27222306, 0x05db5d25, 0x27220d82, 0x05822326, 0x012b0629, 0x3d260722, 0x82373601, 0x16172301, 0x7a65011f, - 0x15350808, 0xb4e40714, 0x24570507, 0x07310b0f, 0x2a080e0f, 0x68221002, 0x0cb40705, 0x010c1010, 0x02058414, 0x0f0e0718, 0x07332907, 0x2006100f, - 0x046b0502, 0x21010903, 0x03c61921, 0x0832080e, 0x0705a915, 0x6e1a2002, 0x550d010d, 0x07011e03, 0x0b0ba806, 0x0c2f04e5, 0x530c0101, 0x0e010e72, - 0x1801054c, 0x2636061a, 0x0a050a27, 0x0c0c190a, 0x08820a19, 0x36262727, 0x00181906, 0xef931802, 0x00112408, 0x18000043, 0x1811b161, 0x2011fba2, - 0x09605315, 0x55181520, 0x01211344, 0xe2a61830, 0x1f30270b, 0x3f500120, 0x94182828, 0x28220905, 0x54183f28, 0x1c430e3d, 0x01202205, 0x72a71810, - 0x3144830b, 0x2f300cad, 0x32314b42, 0x31320202, 0x302f424b, 0xd442230c, 0x213f8d05, 0x57180023, 0x20240b93, 0x36002400, 0x2c5ec982, 0x2f062307, - 0x62180701, 0x162a0da8, 0x26273717, 0x02391737, 0x8b193603, 0x012d0f87, 0x70100622, 0x0e010216, 0x35210c0e, 0x83b3881e, 0x2c38277e, 0x060b2134, - 0xa38fe06e, 0x0e91012e, 0x70160201, 0x0b060610, 0x382c3421, 0x0783ad87, 0x351e0128, 0x210e0c21, 0x1041b0fe, 0x4100200f, 0x3d280a77, 0x00004f00, - 0x31173613, 0x20085243, 0x05444317, 0x15240582, 0x07060706, 0x230b6c70, 0x27262335, 0x3528d882, 0x27262726, 0x37363734, 0x05820782, 0x7f473082, - 0x200f8305, 0x39338327, 0x0c0d0b48, 0x2f2f1c09, 0x0d0c091c, 0x01020a0b, 0x230e0c08, 0x2b011515, 0x7b18422a, 0x422c0fee, 0x15012b2a, 0x0c0f2415, - 0x0a020108, 0x0c9ca818, 0xb920e884, 0x23231683, 0x83230101, 0x344c8344, 0x26180b0f, 0x30442e26, 0x021a0a30, 0x10021616, 0x16020216, 0x2a098310, - 0x30300a1a, 0x26262e44, 0x830f0b18, 0x41d9207c, 0x00320f27, 0x60000400, 0xf001c0ff, 0xdc02c001, 0xe702e002, 0xa541f902, 0x53a41914, 0x16332844, - 0x23070617, 0x19150239, 0x263650a4, 0x05391503, 0x9f083915, 0x2b362902, 0x35363901, 0x39350639, 0x5a4da419, 0x2605f241, 0x02393531, 0x86013935, - 0x4da41902, 0x0a0e6435, 0x25060043, 0x26070633, 0xa9513327, 0x09fa6405, 0x01373623, 0x08074352, 0x1819272d, 0x26260101, 0x0216183b, 0x82181602, - 0x35078400, 0x0126263b, 0x442d2d02, 0x27162b3d, 0xc06e060b, 0x16160218, 0x2a521802, 0xb1012110, 0x28081c43, 0x30251927, 0x0a2b2c3d, 0x83009801, - 0xa61c9842, 0x30439d18, 0x3d2c2b0a, 0x022d2d44, 0x27162501, 0xfe210e0c, 0x21cb8348, 0x14530801, 0x1800200f, 0x2b0b7346, 0x00640052, 0x17321300, - 0x17010f16, 0x22050e79, 0x44373617, 0x62440542, 0x07142105, 0x43096244, 0x362317ab, 0x6d072737, 0x06830573, 0x82352721, 0x11744139, 0x0a702508, - 0x1f070305, 0x11110714, 0x0f070e0e, 0x29363629, 0x03071f45, 0x0f600a05, 0x070a0a01, 0x011e451f, 0x3b262601, 0x85097143, 0x263b2609, 0x1e010126, - 0x2835850f, 0x0a071f14, 0x0f010109, 0x58af1960, 0xc0012110, 0x14274383, 0x110e0e07, 0x820f0711, 0x821e204a, 0x212b855c, 0x7682040b, 0x3629452a, - 0x0a2b2c3d, 0x16160212, 0x07a14218, 0x12270982, 0x3d2c2b0a, 0x850f2936, 0x855d8236, 0x00ff218e, 0x2f123241, 0x10000300, 0x7002c0ff, 0x1100c001, - 0x80004300, 0x134b9718, 0x63483720, 0x08566a05, 0x18150121, 0x6a07205d, 0x34240555, 0x013b3637, 0x08196618, 0x16171626, 0x37360717, 0x2309ac53, - 0x27260706, 0x6a09976b, 0x4697099d, 0x8444c020, 0x01b0210f, 0x46187d46, 0x18240ba3, 0x271d0e16, 0x27293b87, 0x2d160e1d, 0x32314b3b, 0x223c9902, - 0x45a02028, 0x70200fe3, 0x4619af46, 0x8e240bd5, 0x01161e17, 0x16243b88, 0x0121181d, 0x221dec46, 0x7a001708, 0x80230857, 0x4600a001, 0x652205ef, - 0xa9190000, 0x3628109d, 0x26373637, 0x16173727, 0x35260782, 0x17232726, 0x4c180239, 0x1f2010e8, 0x8b053151, 0x07062f26, 0x01391506, 0x07011f14, - 0x30070615, 0x3d473023, 0x27222706, 0x33160706, 0xe8463801, 0x010e2619, 0x58701602, 0x0f084170, 0x0a475020, 0x2a218409, 0x07020610, 0x21022821, - 0x84240101, 0x080827f8, 0x221e1d13, 0x7447a001, 0x10062519, 0x30021670, 0x20107947, 0x099647b0, 0x01362184, 0x0a05040e, 0x15292107, 0x20011024, - 0x201f3033, 0x161f0101, 0x134f000c, 0x42802006, 0x70200697, 0x25529742, 0x27260722, 0x14443336, 0x05c26e0b, 0x20077748, 0x368742b0, 0x171d5024, - 0x3b872d1f, 0x070a0b2b, 0x38171611, 0x0b21142c, 0x089d4506, 0x48152121, 0x4e2105a5, 0x37804232, 0x1710b924, 0xb341011d, 0x20022907, 0x1e01061c, - 0x0e0c2115, 0x2108b745, 0xd4481421, 0x00352106, 0x032e0082, 0xe0ff2000, 0xc0010002, 0x32002e00, 0x75424400, 0x05a95108, 0xa0540720, 0x077c420c, - 0x42012f21, 0x03230c83, 0x5a310706, 0x3621050c, 0x05cc4337, 0x1078012e, 0x210b0606, 0x11111916, 0x1d1a0e0e, 0x200f4449, 0x2117841d, 0x95871619, - 0x42905821, 0x01250f62, 0x0e0e01c0, 0x2540820c, 0x11110e0e, 0xb8491d19, 0x191c210f, 0x16201784, 0x22073841, 0x4100ff30, 0xda820f90, 0x00020027, - 0x01c0ff00, 0x2ddb8240, 0x00460034, 0x1f361300, 0x06071601, 0xd4452307, 0x15142107, 0x07e16118, 0x23074847, 0x31343134, 0x25079249, 0x26272223, - 0xd545013f, 0x0b952811, 0x0307400b, 0x49280a05, 0x38470579, 0x2d442707, 0x2601022d, 0x15853b26, 0x050a2826, 0x6b400703, 0x280f6959, 0x0a0abb01, - 0x090a0740, 0x055e4701, 0x46010121, 0x022107c0, 0x60ab192d, 0x25198507, 0x40070a0a, 0x9445a5fe, 0x00022c12, 0x02100020, 0x00700170, 0x42410011, - 0x194819f9, 0x17162109, 0x25075354, 0x36373635, 0x2c74011f, 0x35272105, 0x2205257b, 0x41d02335, 0xae240f39, 0x4430300a, 0x1807f54a, 0x3308b477, - 0x0e0e0120, 0x0e0e500c, 0x0e0e0c50, 0x16022001, 0x50220216, 0x230fb541, 0x2b2a4258, 0x3708624b, 0x422a2b01, 0x02021638, 0x10383816, 0x500b0606, - 0x0a501111, 0x38100605, 0x2f4b1385, 0x0011220a, 0x26a74c2d, 0x4c089c4c, 0x574c2291, 0x22814c05, 0xac4c8320, 0x00832905, 0x00020000, 0x01100010, - 0x23055b41, 0x37000023, 0x2010ef5a, 0x105f4c15, 0x41109046, 0x07870738, 0x20102441, 0x8bd41840, 0x6725830b, 0x152c0bab, 0x27001e00, 0x46003d00, - 0x00004f00, 0x18050755, 0x2a0ecbc9, 0x27260521, 0x17163736, 0x47370706, 0x0522073c, 0x6d180706, 0x6d180791, 0x27920988, 0xce574020, 0x87802008, - 0x80fe2109, 0x26054451, 0x16020216, 0x83160260, 0x02162306, 0x289d88fe, 0x28876820, 0x01a00125, 0x881b1212, 0x20088456, 0x201c8778, 0x214c8518, - 0x24a41602, 0x220cd345, 0x423e0025, 0xd9461311, 0x52332005, 0x06270574, 0x27222123, 0x43253526, 0x365707ad, 0x6001210f, 0x350f075d, 0x3202a0fe, - 0x4b5c4b33, 0x09023233, 0x7cfe0d08, 0x0109080d, 0xa58340f8, 0xb3834020, 0x01210989, 0x83531840, 0x9efe210f, 0x3e833583, 0x3c823482, 0x318eaa20, - 0x97463b84, 0x21c3aa0d, 0xf0183601, 0xc3a41740, 0x1111d726, 0x11112f2f, 0x111ff018, 0x0121c7a1, 0x85359153, 0x0200224d, 0xdf4e1800, 0x002c3607, - 0x1300003e, 0x16311732, 0x35331115, 0x3b363734, 0x16171601, 0x09e84917, 0x21012b22, 0x35210c87, 0x4c1f8211, 0x0c46067e, 0x07062c07, 0x0e200706, - 0x09e00909, 0x18e00e09, 0x2209e9f8, 0x19ff20e0, 0x200918bb, 0xc8ba1890, 0x225e820b, 0x82a00122, 0x00ff222d, 0x233782a0, 0x291b1b01, 0x20067a59, - 0x82478320, 0x80012118, 0xff211782, 0xa3731800, 0x8200200f, 0x55032000, 0x272108e7, 0x05894f00, 0x31070625, 0x83110706, 0x060721b2, 0x3328b782, - 0x33013f32, 0x013b1617, 0x2f209f82, 0x37260483, 0x26272611, 0xbe182127, 0x1d2209fb, 0x70181401, 0xf35e08aa, 0x83602011, 0x277982c2, 0x03052e23, - 0x0d280802, 0x0ae02319, 0x17232e24, 0xae830116, 0x2000ff22, 0x0020a583, 0x20055a44, 0x180783ff, 0x21102f58, 0x2985c001, 0x1a1a2528, 0x06062e06, - 0x23190106, 0x2e2607cb, 0x251a1a06, 0x66830001, 0x0d646018, 0x58fe6021, 0x002010c6, 0x830ab764, 0x005224ef, 0x69760064, 0xf3a10cc9, 0x045e3b20, - 0x5d2b2008, 0x372005e4, 0x7e13f169, 0x4c181220, 0x1a411043, 0x41502029, 0x06830519, 0x0b8ad020, 0x0e090923, 0x0be55490, 0x0c324c18, 0x20233041, - 0x9c611880, 0x0ed6690d, 0x550e677e, 0x002b0f4f, 0x01400220, 0x001f0060, 0x5d31002c, 0x15210cb7, 0x08255f32, 0x08ba6e18, 0x0637353c, 0x17161507, - 0x35373621, 0x05212726, 0x21352115, 0x17160100, 0x22800122, 0xcc5e1617, 0x200f8306, 0x260f84fe, 0x01010f50, 0x8380010f, 0x80fe2905, 0xa0fe7001, - 0x10016001, 0x2007f342, 0x20888210, 0x88b88240, 0x10a02110, 0x2609b95e, 0x00808020, 0xe8000003, 0xff10249b, 0xe8000100, 0x1517249b, 0x41333523, - 0xd0222737, 0x98aac0c0, 0x41000021, 0x9bac3e37, 0x41607021, 0x9b822bd0, 0xd3410220, 0x11eb470c, 0x21074e61, 0x9d443523, 0x37362c05, 0x15171621, - 0x26210706, 0x42503527, 0x6c420739, 0x42102011, 0x0f280966, 0x01600101, 0xa0221716, 0x20146742, 0x17681850, 0x01002c09, 0xe1ff0000, 0xa0014001, - 0x19001a00, 0x2109cf0d, 0xc7741617, 0x36333205, 0x25273437, 0x07062326, 0x0a140200, 0x073a5207, 0x3100820c, 0x38060404, 0x07021476, 0x0907eefe, - 0x89010215, 0x0c828dfe, 0x0c745f25, 0x83050404, 0x8372201f, 0x06f3232a, 0xe6821502, 0xc0265f84, 0xc0010001, 0x5f825900, 0x31170624, 0x42461f16, - 0x0a785605, 0x06070623, 0x20628207, 0x3fc01806, 0x83228307, 0x2627247f, 0x82262327, 0x0a561804, 0x3736220b, 0xfc871836, 0x2607240b, 0x8226012f, - 0x0100293e, 0x080d0809, 0x0110101a, 0x24062646, 0x10100120, 0x2f12821a, 0x09020109, 0x34080e0a, 0x08342121, 0x02090a0e, 0xa32027a8, 0x02242d84, - 0x60191212, 0x24052c44, 0x12121960, 0x294c8303, 0x0108090d, 0x26260501, 0x4c830105, 0x03202683, 0x0220258d, 0x0d227384, 0x268a0908, 0x3107e74f, - 0x014002c0, 0x002400c0, 0x00470031, 0x1300005e, 0x2b472726, 0x4d212005, 0x0622053d, 0x674e1107, 0x4d212007, 0x11210757, 0x820a8225, 0x23228216, - 0x05272611, 0x0a4e6318, 0x2109a663, 0x46833317, 0xbd453520, 0x1e20320f, 0x12120102, 0x0112251b, 0x1b251252, 0x02011212, 0x2111871e, 0x1187aefe, - 0xfea90129, 0x0f0f08ae, 0x83520108, 0xb7fe2105, 0x8606f65d, 0x20802106, 0x13733783, 0x0e802506, 0x49010909, 0xee204a90, 0x0126118f, 0x080f1712, - 0x5584eefe, 0x18081221, 0x4607e45a, 0xa02007d2, 0x9f459383, 0x6020200a, 0x80200837, 0x20061b41, 0x0a19415c, 0xaa4dd982, 0x41152005, 0x23200719, - 0x45071941, 0x21820688, 0x27263524, 0x16881323, 0xc5723320, 0x27262209, 0x41409235, 0xd2200817, 0x1088b98f, 0xbc835720, 0x0484d220, 0x2487c020, - 0x080f4022, 0x2e221184, 0x04411209, 0x41d22010, 0x72201117, 0x72245c8f, 0x72080f17, 0x04825283, 0x4180fe21, 0x29210789, 0x22128629, 0x87181117, - 0x203a8813, 0x0c3b6300, 0x21001622, 0x360ce147, 0x013f3233, 0x26013d36, 0x21272627, 0x23152115, 0x1d060722, 0x4b112301, 0xe32a0896, 0x135d131a, - 0x1b121201, 0xd774c0fe, 0x4be02005, 0xfe2505b7, 0x12121bc0, 0x211b8201, 0x0883e31a, 0x09e04027, 0x01400e09, 0x0c2b5540, 0x2c001729, 0x16370000, - 0x42163117, 0x8b43065c, 0x06232605, 0x15070607, 0x056f4237, 0x10857883, 0x16171624, 0x69830017, 0x5083e020, 0x1b298024, 0x8584011b, 0x0f84e020, - 0x0c6ec018, 0x624c0020, 0x01402507, 0x80291b1b, 0x60201b84, 0x3384218c, 0xdf480020, 0x80022f05, 0x3200c001, 0x51003a00, 0x70005900, 0x8a180000, - 0x06220afc, 0xd37e1107, 0x26112112, 0x0c9cf818, 0x05171630, 0x26273307, 0x37072223, 0x16011f16, 0xd25c1415, 0x34352909, 0x3736013f, 0x010f2205, - 0x27212083, 0x21209436, 0x58488001, 0x09722306, 0x6248a025, 0xc0c02105, 0xa0230785, 0x85720925, 0x17802a09, 0xfe172929, 0x4b9a4bfe, 0x36008201, - 0x4e0f1e02, 0x0f050505, 0x1d4a4a1d, 0x0605050f, 0x011e0f4d, 0x84010180, 0x0f2d221d, 0x211d8f1e, 0x6044a001, 0x11282305, 0x4d18d9fe, 0x27220cca, - 0x0f852811, 0x011f2108, 0x8f911f01, 0x3101018f, 0x08951a01, 0x0f0f0a0f, 0x0202200f, 0x0f0f101f, 0x95090e0a, 0x0130011a, 0x15221c82, 0x1d93011a, - 0x08975318, 0xc0018025, 0x19003700, 0x2e08d571, 0x33161714, 0x011f1615, 0x15070607, 0x67060722, 0x212005d0, 0x23087e7e, 0x012f2635, 0x270ab676, - 0x2321012b, 0x35231501, 0x4505225d, 0x01240663, 0x2e44442e, 0x2206ef48, 0x93000120, 0x00ff2115, 0xc0281882, 0x44441b01, 0xc001011b, 0x0b26cd85, - 0x44442f42, 0xff18422f, 0x138c0dda, 0x0b4bfe29, 0x441c280b, 0x77271d44, 0x37240a7f, 0x48004000, 0xb1073966, 0x351729bd, 0x07141533, 0x13352623, - 0x2320c385, 0xc498ae93, 0x10c0402c, 0x051010a0, 0x07444407, 0xc8a9a005, 0x1d26c782, 0xfe1d1818, 0x398308cb, 0x8b410820, 0x25cd8349, 0x27010f06, - 0xc6ae2726, 0x412f8a41, 0x1c210689, 0x085f4d28, 0x20074742, 0x088f644b, 0xc3752120, 0x82152008, 0x16172d93, 0x17321517, 0x07141516, 0x21012b06, - 0x22081276, 0x833f3635, 0x22353cae, 0x17352627, 0x011f1615, 0x35373637, 0x35331123, 0x07012f26, 0x00150706, 0x420e0909, 0x66431944, 0x08704205, - 0xc6856020, 0x5942c020, 0x06984307, 0x5c422582, 0x4220201e, 0x0b220657, 0x098780fe, 0x0100002c, 0xc0ff2000, 0xc001b001, 0x5d453c00, 0x021d2607, - 0x27260706, 0x82988335, 0x051c43aa, 0x36373222, 0x2105f75f, 0x6c6c023d, 0x21058205, 0x26822223, 0x05862620, 0x0e14902e, 0x0f01010d, 0x1609010f, - 0x322d0101, 0x9783d082, 0x1516242d, 0x0e0d0101, 0x020d1314, 0x8b130e0d, 0xc0012105, 0x30231783, 0x820f331d, 0x081b2735, 0x3b261e13, 0x24472a27, - 0x0f692706, 0x50291f20, 0x52831010, 0x0c130c23, 0x4903870d, 0xe0200953, 0x4822af82, 0xf8180000, 0xb2840a21, 0x83273421, 0x1506248e, 0x86151411, - 0x7e142009, 0x3720055b, 0x0bddb018, 0x1d212a8b, 0x210d8401, 0x9e432001, 0x33c08405, 0x090e0e09, 0x100d3c09, 0x0c0b0c10, 0x135d4371, 0x0232314b, - 0x28831e8f, 0x79410120, 0x83d02006, 0x41b020c2, 0xfe2605a5, 0x3a0302f0, 0x3c830c0b, 0x013f6b27, 0x4b313202, 0x201885d0, 0x20248a70, 0x200b83b0, - 0x83be82d0, 0x000225d0, 0x36008001, 0x0c2b7f18, 0x1415062e, 0x06171617, 0x16171615, 0x36013b17, 0x2f05f558, 0x06232726, 0x07161707, 0x31012f06, - 0x06072627, 0x32055c7f, 0x0b112823, 0x110b0c0c, 0x0c0d0cb4, 0x0d010c13, 0x5120140e, 0x2b3705c5, 0x222e3224, 0x030d4b0c, 0xcc430f05, 0x050f0e10, - 0x10080705, 0x72f0e6d2, 0x270805ec, 0x0e13130d, 0x130d020d, 0x010d0e14, 0x36252401, 0x232c3f71, 0x181f0201, 0x030d0e06, 0x08054015, 0x0f101007, - 0x0042050e, 0x132ea38e, 0x36313736, 0x16023b37, 0x1d16011f, 0xaa181403, 0x2722085c, 0x7855022b, 0x83af8507, 0x012b210d, 0x00200583, 0x70319383, - 0x23392f50, 0x09091471, 0x090e600e, 0x50224e09, 0x82788430, 0x84ad18ad, 0x8470200a, 0x84502013, 0xa42f2505, 0x100c231d, 0x21067972, 0x6868320e, - 0x840f830f, 0xff202b9b, 0x012002c0, 0x004f00c0, 0x77181300, 0x16210927, 0x533a1907, 0x0607230c, 0x1742012f, 0x82142005, 0x3b1725b7, 0x30313001, - 0x3622c682, 0x6e181337, 0x062208e0, 0x87752623, 0x06072406, 0x8306010f, 0x04f72f3f, 0x0d0d0b0b, 0x35030607, 0x040a1002, 0x0d83052b, 0x03060628, - 0x0505023f, 0x1c423705, 0x0b240808, 0x22212d08, 0x0603520d, 0x0b0d0d06, 0x0325040c, 0x24010e09, 0x0d070703, 0x030b0a0e, 0x13150526, 0xa8013906, - 0x4d834583, 0x0210c626, 0x0d8f0901, 0x4d834582, 0x0306cf25, 0x42350403, 0x0325082b, 0x012b1b1b, 0x11f11913, 0x09802407, 0x83aa0d02, 0x264b8343, - 0x010114b2, 0x1800d512, 0x260a8795, 0x00420037, 0x4458004d, 0xf94a0685, 0x05c87b05, 0x16230587, 0x75171617, 0x2b2b057f, 0x22233101, 0x26272627, - 0x1826012f, 0x2908af74, 0x06272613, 0x17161507, 0x474a3736, 0x22088206, 0x89172726, 0x42802015, 0x2e420d28, 0x4010350d, 0x2a070805, 0x481a2424, - 0x0d03020a, 0x0b0f100e, 0x0f017038, 0x1805707c, 0x2008d44d, 0x7b1d1950, 0x42982008, 0x942005a3, 0x4208c943, 0x04240aa7, 0x60221415, 0x49834183, - 0x43014b24, 0x4683f8fe, 0x2005257d, 0x09237d10, 0x15891020, 0x05000027, 0xc0ff2000, 0x2a018201, 0x20000c00, 0x40003400, 0x53007100, 0x1d2b05a9, - 0x34352301, 0x17333637, 0x18311732, 0x2323c3d8, 0x27231725, 0x20081441, 0x76461835, 0x07f9490c, 0x18331621, 0x2017e4d8, 0x06c47ee0, 0x4306b544, - 0x817a05e7, 0xddfe270c, 0x05474653, 0xf8820504, 0x1b050c24, 0xda181a46, 0x0e240fe5, 0x06101412, 0x0f0edb18, 0x18100f29, 0x0909c001, 0x6fd0d00e, - 0x7f4c0687, 0x18068306, 0x270db66e, 0xa3bdad40, 0x050c0c0d, 0xde216183, 0x05b04101, 0x0f0f0128, 0x14140101, 0xdb18011f, 0x0b290cbe, 0x191b3526, - 0x00031112, 0x057f4f00, 0x6001802d, 0x43002400, 0x26010000, 0x18070607, 0x74095a98, 0x0d650534, 0x11352e07, 0x0f262726, 0x14052701, 0x3b163117, - 0x13246501, 0x06072228, 0x0f5a0115, 0x6d6e1515, 0x0a562506, 0x560a1010, 0x26062d45, 0x760f1515, 0x82a6fe76, 0x0615410d, 0xc020be86, 0x0125d882, - 0x08061153, 0x07995216, 0x0d73a024, 0x4e45730d, 0x00012806, 0x11060816, 0x82139e9e, 0x06085325, 0x49090a7c, 0x022a0513, 0x00c00100, 0x0032001a, - 0xa318003e, 0x03231bd7, 0x4d333736, 0x3745053e, 0x15232705, 0x27260706, 0x7e18013d, 0x15200a7c, 0x19576718, 0x16026035, 0x16172258, 0x22220201, - 0x0b151307, 0x16023d25, 0x18300216, 0x18083ddd, 0x36182e44, 0x01021668, 0x2c221716, 0x0b154b17, 0x48521307, 0x16020216, 0x41587060, 0x40210513, - 0x0cef4d00, 0xc5820420, 0x00002d28, 0x11211113, 0x40182321, 0x132114a2, 0x45141921, 0x37342e0c, 0x02403336, 0x4000fe00, 0x1b121201, 0x084e4c02, - 0x0984fe20, 0x4b09bb75, 0x012306b7, 0x18e0fe80, 0x200a9840, 0x08e058e0, 0x7dfe2021, 0x00200c44, 0x29055741, 0xc001c001, 0x2f002200, 0x93824800, - 0x2e559118, 0xa1180720, 0x362115cb, 0x6e911837, 0x16e02227, 0x05235b02, 0x89160221, 0x18012009, 0x22278391, 0x82160238, 0x57428e02, 0x23240c17, - 0x3b003000, 0x21082744, 0xaf7c3533, 0x06ce6b06, 0x18211521, 0x231701f9, 0x26373605, 0x2006b373, 0x6c611880, 0x18302009, 0x751abef8, 0xb026054d, - 0x16020216, 0xf81801b0, 0xb8202787, 0x0383f683, 0x830b8b41, 0xb44920b3, 0x262723b3, 0xcb5e010f, 0x17062b06, 0x17013f16, 0x2f363716, 0xc1a73701, - 0x190e3121, 0x20158176, 0x20cfa82f, 0x139a5971, 0x2f111123, 0x20df8f2f, 0x82dfbe3f, 0x20d5a7dc, 0x21d58349, 0x3b712f5f, 0xad702006, 0x2f5f21cb, - 0x21062271, 0x00820070, 0x0000012a, 0x0002e0ff, 0x2400a001, 0x2106974d, 0x8918031d, 0x3d270855, 0x26272601, 0x8535010f, 0x27342905, 0x20012b26, - 0x0109090e, 0x08726218, 0x0b0b0124, 0x04849d0c, 0x0e090925, 0x82a00140, 0x49f02005, 0x8027090a, 0x07060e98, 0x843f5406, 0x82972005, 0x226f8238, - 0x5f200003, 0x112406d3, 0x31002200, 0x2213275c, 0x60373627, 0x362107b6, 0x21018337, 0x946f3503, 0x27222308, 0x2a193526, 0x022f099a, 0x3d3d2928, - 0x90022829, 0x0f01010f, 0x821b1b29, 0x24098205, 0x201b1212, 0x82008210, 0x2173828c, 0x8e183001, 0x40220f51, 0x25820f01, 0x291b1b22, 0x0f2a0582, - 0x0112121b, 0x03a370fe, 0xf746a303, 0x23a28205, 0x06000300, 0xf92ba382, 0x1c00c001, 0x41003500, 0x51130000, 0x142d0594, 0x21331617, 0x36013f32, - 0x2b26012f, 0x07a44b01, 0x27340523, 0x290e8231, 0x23152335, 0x06010f22, 0x2483011f, 0x3d363724, 0x12820701, 0x2106f25e, 0x1446e035, 0x07792907, - 0x09093005, 0x99070530, 0x00209e86, 0xa0220782, 0x16879940, 0x82790121, 0x46c02087, 0x01200667, 0x2407d176, 0x0b0b3005, 0x06197f30, 0x2082e020, - 0x85202021, 0x213b8211, 0x4618e040, 0xb7820759, 0xe4ff003c, 0x9c014002, 0x0f000400, 0x00001a00, 0x17112705, 0x37113711, 0x17161736, 0xee820611, - 0x07113739, 0x27262706, 0x01373611, 0x20c0c080, 0x0a090d7f, 0x910e0101, 0x86916ffe, 0x371c3a0a, 0xfe378101, 0x8301017f, 0x07070532, 0x0fb1fe0d, - 0x7c013a07, 0x337dfe3a, 0x230e8204, 0x070f4f01, 0x26063342, 0x010002c1, 0x521c00c0, 0x15200dc9, 0x3f20ee82, 0x0a95b618, 0xc4522120, 0x09602508, - 0x8b7b0809, 0x240ab65e, 0x121201c0, 0x0597751b, 0x040a5025, 0x835d0504, 0x05e2450f, 0x220c1b47, 0x4740002d, 0xc75c1d1b, 0x06084509, 0xef181520, - 0x12870a68, 0x18191d47, 0x510d1d44, 0x41180bba, 0x012118be, 0x06954640, 0x7f530694, 0x001a220c, 0x55bd9d2f, 0xb0830fec, 0x788eac99, 0x6020a199, - 0x730dff55, 0x0c280c3f, 0x35002c00, 0x00003e00, 0x2705054d, 0x17161716, 0x07352315, 0x60090254, 0xbc580984, 0x07062505, 0x17150706, 0x2010b660, - 0x07eb70a0, 0x40308026, 0x010d0e14, 0x09fcee18, 0x0e0d0124, 0x5c624014, 0x60182007, 0xc8200747, 0x18087660, 0x2208f58d, 0x83303030, 0x29d0232b, - 0x3e841b1b, 0x4783d020, 0xd0623020, 0x08d16008, 0x3b4c4388, 0x40022406, 0x1800bf01, 0x240959b7, 0x0f262736, 0x078b5801, 0xcf823320, 0x21058143, - 0x9d7f013f, 0x462b2006, 0x232c0641, 0x06150337, 0x35272607, 0x17163736, 0x0c870282, 0x15891720, 0x1309fd26, 0x565d0c14, 0x2b050b44, 0x10110634, - 0x171c0117, 0x34061110, 0x562a1185, 0x13140c5d, 0x51e85109, 0x264c013d, 0x4c602006, 0x0122052d, 0x264c800f, 0x149d2508, 0xb313090c, 0x27054a42, - 0x0e0d15d0, 0xd0150d0e, 0xb3280d85, 0x140c0913, 0xf3fe9d9d, 0x04843584, 0x890b1b4c, 0x43002015, 0x45260c03, 0x00005700, 0x93180625, 0x252018a5, - 0x3c059577, 0x0f141517, 0x16170601, 0x3336013f, 0x16011f32, 0x012f3637, 0x36013d26, 0x2736013f, 0x23198226, 0x012f2223, 0x11c19818, 0x1a729018, - 0x15a22708, 0x0c14070b, 0x1d021c19, 0x09151505, 0x07060318, 0x16091802, 0x021d0514, 0x130c1a1c, 0x0c150a07, 0x282b2b28, 0x0e4c5f0c, 0x18058505, - 0x08189b90, 0x14075627, 0x0b050a15, 0x06063305, 0x05091656, 0x06064915, 0x09051549, 0x06065616, 0x050b0632, 0x0714150a, 0x05111105, 0xed98180a, - 0x0000320c, 0xff200004, 0x01df01c0, 0x001100c0, 0x004c0040, 0xd9711857, 0x07222314, 0xfb840631, 0xf5821720, 0x15013f24, 0xe54b1f14, 0x2f34230a, - 0x81183501, 0x262209a6, 0x298a2327, 0x82052721, 0x012f2b30, 0x07060706, 0x0e14b017, 0xa24f010d, 0x1c08290b, 0x2f0c1717, 0x0c040405, 0x07230082, - 0x414d1323, 0x260805c5, 0x0946320e, 0x0b0b0d0c, 0x4d070102, 0x28182f1e, 0x0607031f, 0x0a0b0e0d, 0x01351604, 0x0b0d0943, 0x06047607, 0x18760808, - 0x2411b371, 0x190e0e20, 0x834a835d, 0x2b462552, 0x534d131a, 0x25055642, 0x320e1459, 0x50835e5e, 0x67245883, 0x7ddb0125, 0x04205f82, 0x58305783, - 0x070b9e35, 0x06ab0d09, 0xab020604, 0x05000000, 0x250a9f7c, 0x002b0027, 0x5218003b, 0x1f341889, 0x06071601, 0x0723012f, 0x3f262706, 0x32373601, - 0x07270717, 0x084b6118, 0x2326f283, 0x17352726, 0x976a3315, 0x27262205, 0x08ae4523, 0x0bc3ce18, 0x07489639, 0x0a0b1512, 0x150c0952, 0x07480812, - 0x01070f0e, 0x5b2a1515, 0x43381602, 0x382407b6, 0x20300216, 0x20073c41, 0x13701820, 0x908d3515, 0x12070c15, 0x08131313, 0x0c90150c, 0x2a6b0d01, - 0x0216602a, 0x23075f67, 0x18901602, 0x08346b18, 0x31051f50, 0xbf010002, 0x34001a00, 0x5f004e00, 0x16130000, 0xcb82010f, 0x67170621, 0x26210a02, - 0x21b88237, 0xde58011f, 0x19ce8305, 0x191fde2f, 0x820cf82f, 0x83272030, 0x83262041, 0xbd172105, 0x0d8c4f18, 0x14394a08, 0x14153f12, 0x123f1415, - 0x31da3815, 0x01011b1c, 0x12311c1b, 0x28100d0f, 0x17181817, 0x0f0d1028, 0x13224012, 0x22131414, 0x100c0f13, 0x0f0f0e1a, 0x0c101a0e, 0x2942130f, - 0x14280202, 0x14110a0e, 0x11140101, 0x01140e0a, 0x86501899, 0x0b23210d, 0x07865018, 0x05220c36, 0x44393928, 0x28393944, 0x1012100d, 0x38303021, - 0x21303038, 0x2e080a82, 0x271b470d, 0x272e2e27, 0x100c1b27, 0x1d140f13, 0x1d23231d, 0x130f141d, 0x1c470c10, 0x0a1c3434, 0x0e0e1311, 0x0e0e1a1a, - 0x000a1113, 0x63001400, 0x260807e7, 0x001a0011, 0x0035002c, 0x00500047, 0x00740062, 0x00980086, 0x00b300a1, 0x00ce00bc, 0x00e900d7, 0x010401f2, - 0x181f010d, 0x2112d36b, 0x7149011f, 0x17162105, 0x10dd9718, 0x18010f21, 0x1807cfa6, 0x2110fd96, 0x1a993317, 0x7a672720, 0x118c6710, 0x6805d044, - 0x50990ce8, 0xa1980720, 0x99170721, 0x06494a35, 0x359bd792, 0xd8468020, 0x45078707, 0x551808e3, 0x1c830b88, 0x2c529020, 0x52328f08, 0x198f0946, - 0x8708bb4e, 0xea4d184c, 0x00012110, 0x4d99338f, 0x08b84018, 0x10209a8f, 0xe0209a98, 0xa907b146, 0xc34f1832, 0x20338709, 0x415e98b0, 0x7697182c, - 0xed8f6020, 0x87085848, 0x08964418, 0x4a977d87, 0xc24195b2, 0x18c89819, 0x2f08335f, 0x003500bf, 0x007d006b, 0x00a3008f, 0x010000bd, 0x0801081a, - 0x18323121, 0x4c08bdf7, 0x26210700, 0x33018627, 0x34313023, 0x01392231, 0x36013923, 0x37070607, 0x31373605, 0x23094271, 0x06150706, 0xcc5b1582, - 0x36332506, 0x35373637, 0x20065776, 0xb2501827, 0x1803200b, 0x18109043, 0x2111b55a, 0x771a0607, 0x362208bf, 0x3b563435, 0x18372005, 0x2208f84f, - 0x76361716, 0x0b83089d, 0x468e0121, 0x01270799, 0x0c060301, 0x180c0f10, 0x0808634b, 0x15111123, 0x05081116, 0x01010202, 0x0a030201, 0x05f3fe0e, - 0x302c1f1f, 0x0101201f, 0x0a0a0d1d, 0x0e0d0101, 0x05c84614, 0x11331383, 0x3202022d, 0x31454b31, 0x08010930, 0x0a0e0d08, 0x1861020a, 0x2208a94d, - 0x180e0909, 0x270ccb71, 0x40090997, 0x0a0d0d0a, 0xa7200686, 0x2b056147, 0x02161602, 0x22171601, 0x01161722, 0xbd210b84, 0x06844705, 0x04020128, - 0x19101107, 0x51852219, 0x24243127, 0x050b1617, 0x36998203, 0x1d140504, 0x1c1c2be1, 0x1f200101, 0x0e1f2d30, 0x06191413, 0x180d0e14, 0x2c0a274c, - 0x30140f06, 0x32314b47, 0x2c2b0202, 0x20b78244, 0x219e8302, 0x7285e4fe, 0x835a0585, 0x200f8209, 0x21988309, 0x06870940, 0x72857920, 0x02021623, - 0x07916316, 0xef4b0b83, 0x01803508, 0x004900c0, 0x13000093, 0x26312736, 0x06072627, 0x1d06010f, 0x1626c682, 0x31013b17, 0xa4573736, 0x06072206, - 0x6d861807, 0x48162007, 0x27220795, 0x2b632726, 0x0f262206, 0x23098a01, 0x31170601, 0x37212482, 0x08216036, 0x31012b25, 0x87060706, 0x53372037, - 0x6e820753, 0x20074b59, 0x05525917, 0x3f161723, 0x20098a01, 0x0740419d, 0x010e552d, 0x48362524, 0x071b3708, 0x820c0304, 0x0c072200, 0x05b94917, - 0x070c1722, 0x0c3c0e82, 0x14070403, 0x070c5126, 0x0b040306, 0x52650d0b, 0x0801010a, 0x0a0d0d09, 0x46011766, 0x56214487, 0x2244a30d, 0x92060e50, - 0x42922044, 0xab2c0766, 0x36091f1b, 0x07012425, 0x0d0c0c2d, 0x03226e82, 0xfb55130c, 0x0c132b07, 0x07060303, 0x220c0c0d, 0x8583160d, 0x1c211e83, - 0x20858344, 0x238d820b, 0x5cfe2e55, 0x0b2044bb, 0x5522d283, 0x6748002e, 0x00c02b08, 0x00250012, 0x0075005b, 0x7e180100, 0x115d0a3d, 0x75129206, - 0x41180535, 0x9e550b70, 0x58062005, 0xdf4105a9, 0x37362407, 0x50353736, 0x262c05c2, 0x15272627, 0x06310722, 0x26070615, 0x21062e64, 0x0b831716, - 0x26273426, 0x28f70123, 0x86050443, 0xc0fe2206, 0x860f8580, 0x2c393a06, 0x02051f1f, 0x0d0e0a0a, 0x09010808, 0x4b453130, 0x02023231, 0x2001112d, - 0x065b5a1f, 0x0d0e1429, 0x0a0a0101, 0x86011d0d, 0x0f424313, 0x0e090925, 0x42288901, 0x068605cc, 0x0f856582, 0x06858020, 0x1c01f724, 0x61832b1c, - 0x0d306982, 0x022b2c44, 0x4b313202, 0x0f143047, 0x201f3006, 0x27074743, 0x06140e0d, 0x0e131419, 0x20050673, 0x43568250, 0xe7510f10, 0xff003407, - 0x010002c0, 0x000a00bb, 0x00750039, 0x1f141300, 0x53333601, 0x163105ca, 0x17163117, 0x15141514, 0x3d363736, 0x06272601, 0x59441807, 0x06072307, - 0xcd4c012f, 0x26098705, 0x17160102, 0x82023b32, 0x34372829, 0x34313435, 0x66272635, 0x1f2b052f, 0x07062301, 0x16331716, 0x96070617, 0x9b200809, - 0x1a121201, 0x11140d14, 0x2036ae07, 0x111e0120, 0x16160211, 0x140d7402, 0x03400912, 0x50040606, 0x50250983, 0x04070603, 0x38098340, 0xf7fe5a2c, - 0x01011402, 0x223307c9, 0x1d010122, 0x1554311e, 0x36150509, 0x25e283cf, 0x01010780, 0x0983a007, 0xc91aa020, 0x1e2f117d, 0x131f0101, 0x0c091224, - 0x2c122f13, 0x82013a2c, 0x1e142400, 0x837c241f, 0xc952212e, 0x152b1782, 0x0304076e, 0x09128a06, 0x838a140d, 0x836e2009, 0x1c4c2b13, 0x0414e9fe, - 0x33222201, 0x31820202, 0x29283428, 0x15051b10, 0xa5840915, 0x07070122, 0x8c05fb44, 0x06b34207, 0xc001802a, 0x34001d00, 0x4c003b00, 0x0d0d5418, - 0x21073c44, 0x01822627, 0x19070621, 0x2b1a2911, 0x01070601, 0x16253736, 0x17163117, 0x32280183, 0x25313033, 0x13271706, 0x30281119, 0x1095fe37, - 0x1c53010c, 0x0b65fe18, 0x23241717, 0x043d3030, 0x03d8fe05, 0x29111905, 0x01200836, 0xfe15151e, 0xb40d08f7, 0x2123231c, 0x01171722, 0x000a0ae8, - 0x00000100, 0xc001e0ff, 0x4600a001, 0x11200c82, 0x0621da83, 0x20e48523, 0x053e4735, 0x35373222, 0x22201185, 0x0622f682, 0x25191107, 0x36211195, - 0x20018237, 0x83ec8433, 0x01372c09, 0x1f0c0fc0, 0x2d161413, 0x822d1e1e, 0x25048274, 0x1b1c2d1e, 0x0f831c1b, 0x11121725, 0x46161310, 0x16250b1b, - 0x12111013, 0x371b8317, 0x20131416, 0x90010f0b, 0x0505b0fe, 0x0205060b, 0x01020e0e, 0x01074007, 0x09220883, 0x068309d0, 0x06050526, 0xcdfe0508, - 0x20053246, 0x06285201, 0x08050d24, 0x2e840506, 0x0b060527, 0x06000505, 0x31008200, 0x80018002, 0x41001800, 0x57004e00, 0x6d006400, 0xb7450000, - 0x1736270a, 0x17010f16, 0xbc472335, 0x07172305, 0xf2822706, 0x3f36372a, 0x22232601, 0x3315010f, 0x7505e369, 0x362205cd, 0xfd411637, 0x022f2205, - 0x0aec6023, 0xb8510720, 0x8a252007, 0x17232114, 0x08058644, 0x01171633, 0x020d6043, 0x100a0901, 0x0d630e0f, 0x150b080a, 0x4804018b, 0x1b211c18, - 0x1d183417, 0x0411131c, 0x12541603, 0x48181d13, 0x130f5c1c, 0x03090e13, 0x30068311, 0x110f0307, 0x010e0c12, 0xfa860f01, 0x0e090960, 0x5de88220, - 0x01210830, 0x201186f0, 0x7d921860, 0x01260808, 0x0f0a4f6b, 0x020d0d0f, 0x084e0a03, 0x100b0c0b, 0x2f02bd80, 0x287d150f, 0x18040412, 0x131b1b18, - 0x30100843, 0x508353e0, 0x0f0b0922, 0x07250683, 0x02020a09, 0x216b830e, 0x3d5b527b, 0x01e02107, 0x20067451, 0x201187e0, 0x07094ad0, 0x00020022, - 0x38056f44, 0x000a00c0, 0x3f000020, 0x07151701, 0x2f222306, 0x22373501, 0x0706010f, 0x08d45615, 0x2f263529, 0x40232601, 0x839ec0c0, 0x9f24085d, - 0xc50e13c0, 0x12010119, 0x80011b12, 0x0112121b, 0x0fc41901, 0x8e8ef013, 0x0b0b7530, 0x0bd03075, 0xf0201392, 0x21821784, 0x1320f037, 0x00000b92, - 0xff200006, 0x010002c0, 0x001500c0, 0x00360024, 0x06975041, 0xa9700620, 0x36212308, 0x97703637, 0x33132106, 0x22051b46, 0x82272623, 0x183f2014, - 0x2011d041, 0x09ac5e37, 0x96190720, 0x602014d0, 0x015b7e87, 0x40702e0b, 0x01161722, 0x0fc00f01, 0x17160101, 0x10444b22, 0x2b41d020, 0x41102007, - 0x114c0722, 0xdc581808, 0xe0fe2115, 0xd5184783, 0x738807f8, 0x70207b87, 0x40201983, 0x70220484, 0x08850f01, 0x90010f22, 0x5c181589, 0x402208b3, - 0x1741a001, 0x31951845, 0x18152014, 0x2013e2a1, 0x085856c0, 0x41504021, 0x80211e17, 0x98b28380, 0x15bc5004, 0x4105aa72, 0x2020181b, 0x1a769518, - 0x97420320, 0x00123808, 0x003f002d, 0x27262500, 0x012b2631, 0x07060722, 0x33161716, 0x42363732, 0x83790613, 0x27262306, 0x01833736, 0x17221c82, - 0x52181716, 0x8f321259, 0x241d1d11, 0x1d1d2440, 0x25241b11, 0x24252b2b, 0xc35d711b, 0x00ff2117, 0x0ccc5018, 0x1f14142b, 0x12111d40, 0x1e1d1112, - 0x21008211, 0x6218801e, 0x50181778, 0x0120088a, 0x42833282, 0x21062b49, 0xf3428001, 0x5d7d180a, 0x2bef420b, 0xc1412720, 0x18002013, 0x2009e27f, - 0x1ec14160, 0x26557020, 0x16c94209, 0xc942c020, 0x41a0201c, 0x260807ad, 0x00000700, 0x4002e0ff, 0x0a00a001, 0x27001700, 0x44003900, 0x5a004f00, - 0x21130000, 0x27262726, 0x06070621, 0x44111507, 0x11250838, 0x37361321, 0x088b5f31, 0x27262322, 0x2011d450, 0x211e8437, 0x1c820706, 0x15b57018, - 0x6f820020, 0x1b121223, 0x0e6a53fe, 0x40c0fd22, 0x162a9682, 0x0f0f1676, 0xca0a0101, 0xbe1a010a, 0xb02210bb, 0xb5420f01, 0x43188318, 0x202008b1, - 0x20055559, 0x23658201, 0xebfe2001, 0x0f235184, 0x820a160f, 0x4f552057, 0xaf180f6a, 0x7018085f, 0x003111b9, 0x00030000, 0x01c0ff10, 0x00c00130, - 0x003f001b, 0x08d17853, 0x65070621, 0x362005d3, 0x3425ed82, 0x35272627, 0x20048226, 0x08c74e07, 0x31301524, 0xf4443130, 0x07cd6d05, 0x83373621, - 0x13352113, 0x270a697c, 0x16373635, 0x17161517, 0x21055875, 0xef4d110e, 0x0d112707, 0x0e0d0102, 0x3f587014, 0x01012307, 0xe75b011d, 0x210a8207, - 0x1d83a001, 0x0d0e142d, 0x011e0201, 0x1e010f0f, 0x83800102, 0x1aa52811, 0x221c1510, 0x83011617, 0x151c2447, 0x58a51a10, 0xa5240c4b, 0x33250201, - 0x2507085c, 0x01022533, 0xc618ffa5, 0x2129080f, 0x010fd30c, 0x0cd30f01, 0xebf34021, 0xf383ab20, 0xf340ab20, 0x837b20ed, 0x407b20f3, 0x3320edf3, - 0x3320f383, 0x5120f392, 0x210c015c, 0x75181716, 0x37230a48, 0x4e353736, 0x152505e3, 0x31303130, 0x05ab4606, 0x27581720, 0x21138307, 0x475e2635, - 0x52312005, 0x16220b45, 0x9d437017, 0x430d2008, 0xd35b0bd1, 0x0ec94305, 0x1f200123, 0x0f725930, 0x82180120, 0xd04308d8, 0x83702011, 0x11c84330, - 0x201f3024, 0x3c58fe01, 0x207f8708, 0x23008200, 0xff000008, 0x2205db60, 0x573e002c, 0xaa200a15, 0x26086f68, 0x1706011f, 0x5b071716, 0x27230534, - 0x82010f26, 0x4d0720d5, 0x4d660639, 0x11352207, 0x106c5317, 0x10fe7d18, 0xc5013d21, 0x5b352023, 0x403011a0, 0x0f0f0a0b, 0x0210110a, 0x0e011503, - 0xa011110e, 0x012a0483, 0x1e21201c, 0x2b291e10, 0x994f1c1c, 0x06cf7006, 0x5312bd67, 0xd6670b7c, 0x1818980c, 0x2f0d0b63, 0x0b0a0f3c, 0x201e100b, - 0x11011c21, 0xa00e0e11, 0x012d0483, 0x10020315, 0x01011c11, 0xfe2b1c1c, 0x224885c4, 0x5fdc3c01, 0x5e8b0c3f, 0x660ca565, 0x1f85067b, 0x9a5f1999, - 0x8200200c, 0x49022000, 0x312e084b, 0x00004e00, 0x32373613, 0x1506011f, 0xbf411716, 0x26072607, 0x27072227, 0x05ca5e26, 0x18074355, 0x21091395, - 0x2b820335, 0x2009fd67, 0x3e0a8921, 0x21353736, 0x060c0160, 0x01060f04, 0x110c0812, 0x0e0e6811, 0x1e160f0e, 0x170f0d10, 0x7a152120, 0x64410810, - 0x80fe2406, 0x851f0140, 0x000121eb, 0x1f2e0785, 0x0140fe01, 0x04010c73, 0x1e100d0f, 0x3e820f16, 0x1111682d, 0x0112080c, 0x01170f06, 0x5e211516, - 0x2c85060f, 0xedfeb326, 0x281c2c10, 0x21050041, 0x07851010, 0x2c1c2823, 0x06df5e10, 0x01c00134, 0x002b00c0, 0x0066004c, 0x25000078, 0x36313736, - 0x96422635, 0x17142206, 0x20018216, 0x07375915, 0x7505fb4e, 0x35220555, 0x24823736, 0x43272621, 0x06210b92, 0x0d705207, 0x19362721, 0x52080c4b, - 0x318605ea, 0x18333621, 0x0812ab8f, 0x16253f2b, 0x31320216, 0x32314b4b, 0x25161602, 0x253d0502, 0x1e010125, 0x3f32331d, 0x1d33323f, 0x2501011e, - 0x02053d25, 0x09050202, 0x5a58180d, 0x090d250b, 0x02310205, 0x0871b118, 0x5d312008, 0x0113121a, 0x07070601, 0x0f0c0c04, 0x040c0c0f, 0x01060707, - 0x1a121301, 0x010f1018, 0x18100f01, 0x2408967d, 0x2726184c, 0x836d832f, 0x272f2a75, 0x1e1b1826, 0x37361b01, 0x846d8646, 0x37462c79, 0x1e011b36, - 0x0709261b, 0x181b080f, 0x26092759, 0x070f081b, 0x47442a09, 0x443807e3, 0x0a01162a, 0x291b1a09, 0x050e1829, 0x0e050404, 0x1b292918, 0x2009091a, - 0x7e836e8b, 0x0a475018, 0x1500a024, 0xd1622800, 0x0ad74a0c, 0xc0681720, 0x67411812, 0x18202013, 0x2007db88, 0x062c42fe, 0x4315524c, 0x83820c88, - 0x0000012a, 0x0002e0ff, 0x13002000, 0x200a436f, 0x09bc4233, 0x25422020, 0x86012005, 0x40fe2155, 0x4c0d1e43, 0x1c2e0967, 0x46003200, 0x23010000, - 0x23150706, 0x914a3635, 0x17162e05, 0x06070615, 0x33352307, 0x26353736, 0x05564c27, 0x0ac28b18, 0x26272625, 0x19171127, 0x2a127506, 0x0fe0b001, - 0x16014001, 0x49e02217, 0x102c075d, 0x01010f10, 0x0150fe0f, 0x011b1212, 0x230ab84b, 0x0112121b, 0x6718d683, 0x01240ab4, 0x100f0180, 0x8408177d, - 0x01402241, 0x4f51820f, 0x4082056a, 0x4088ff20, 0x44000121, 0x33770c76, 0x0015210c, 0x18cbd718, 0x41181720, 0x614b177d, 0x22098809, 0x184fc0fe, - 0x20186c41, 0x417118a0, 0x188f2013, 0x41185f41, 0x6026096f, 0x7a007500, 0x896e0000, 0x7b062005, 0x16220506, 0xde183317, 0xbe180d2f, 0x352608fd, - 0x17161533, 0x06873736, 0x36373623, 0x71de1837, 0x200d850d, 0x05564b26, 0x15070626, 0x27263523, 0x07200684, 0x33132b64, 0x33152317, 0x1602b035, - 0x121b0216, 0x16280112, 0x28160202, 0xd483058b, 0x536a1d83, 0x2027a705, 0x0ac24110, 0x0e090927, 0x01c0c0c0, 0xb55a84a8, 0x2076944e, 0xdeb11868, - 0x090e250a, 0xc0c02009, 0x0a878318, 0x4b699120, 0x36372808, 0x010f1617, 0x84013f15, 0x250d8307, 0x06071617, 0x096d010f, 0x17072105, 0x17211f85, - 0x220f8316, 0x852f0607, 0x15022117, 0x1b661e85, 0x06072809, 0x013f2627, 0x84010f35, 0x09475307, 0x37262725, 0x18011f36, 0x20080c4e, 0x830f8326, - 0x21178411, 0x06843502, 0x34350126, 0xe0333637, 0x2a08a482, 0x0e11110f, 0x123d310e, 0x04151508, 0x0c0c1805, 0x0306080c, 0x16190c03, 0x16080314, - 0x443c3c44, 0x15040716, 0x030c1915, 0x82080603, 0x0518211c, 0x08280d82, 0x0e313d12, 0x0f11110e, 0x8f05f945, 0x070d2141, 0x43224189, 0x419f3d3e, - 0x82c00121, 0x0f1e2146, 0x31235083, 0x83432346, 0x0e132177, 0x6e824183, 0x060e0823, 0x29898208, 0x13242312, 0x08161403, 0x83830e06, 0x0e298b83, - 0x03081613, 0x46234314, 0x21be8331, 0x48441e0f, 0x21458705, 0x458b4224, 0x87070d21, 0x12232145, 0x5b1845a0, 0x1e250d27, 0x26370000, 0x09bc5035, - 0x83070621, 0x18222001, 0x340a8f97, 0x1b0116f6, 0x312b2c1c, 0x011b1b29, 0x24171701, 0x1b222924, 0x05e858ec, 0x1ce3ed37, 0x24242921, 0x01011717, - 0x31291b1b, 0x1b1c2c2b, 0x09ed1601, 0x201d8309, 0x206783ec, 0x17441803, 0x001e2508, 0x0054004f, 0x21066d5d, 0xd9530631, 0x47332005, 0x032a08cb, - 0x23262734, 0x22272605, 0xa54e010f, 0x20198805, 0x249b8301, 0x26012f34, 0x20348223, 0x055b7306, 0x25820620, 0x27260730, 0x01391735, 0xa0011535, - 0x1b1f1e0a, 0xda7c021c, 0x05284107, 0x01a0fe2b, 0x1e040e0d, 0x17160102, 0x05c44122, 0x16172231, 0x041e0201, 0x01010d0e, 0x0c020809, 0x820e0e02, - 0x09082f04, 0xc0013001, 0x260e0f01, 0x1b704727, 0xf4551212, 0x70802207, 0x2a4782d0, 0x0d030d10, 0x230a0988, 0x54041918, 0x042607bb, 0x0a231819, - 0x18828809, 0x0109862b, 0x0e880801, 0x880e0101, 0x24528208, 0x01019886, 0xefee1800, 0x00352409, 0x82233700, 0x20bd82a2, 0x20c2831f, 0x64ac1817, - 0x05c64208, 0x37343523, 0x670e1a36, 0x6a352007, 0x17390594, 0x07060716, 0x16093123, 0x0e0e0102, 0x392c2a0c, 0x2c393839, 0x0e0e0f2c, 0xd958190f, - 0x403f3313, 0x060b2931, 0xe0771006, 0x10801602, 0x2a0b0606, 0x2a890e2c, 0x58193685, 0x2e250cd3, 0x0e0e0c29, 0xbb441801, 0x001a300b, 0x00320027, - 0x0048003d, 0x37361300, 0x7b1f1633, 0x232108e1, 0x060d5b21, 0x37013b23, 0x699a1807, 0x09eb540c, 0x0a943320, 0x14098726, 0x07091478, 0x20069572, - 0x064357fe, 0x67076025, 0x46018001, 0xa45f0838, 0x25089108, 0x0111ae01, 0x6c181101, 0x6e210d27, 0x082a54fe, 0x46400121, 0x73180589, 0x0f230a91, - 0x89010fe0, 0x00002e0e, 0xff100002, 0x01f001e0, 0x002a00a0, 0x2dd98353, 0x17323133, 0x16170607, 0x31303317, 0x4a473130, 0x06344c05, 0x2a0b9c5f, - 0x15073736, 0x17161531, 0x82013f16, 0x36372104, 0x22059657, 0x84072627, 0x22232e24, 0x27363727, 0x31232726, 0x8f070623, 0x077d4131, 0x41087821, - 0x252c0cad, 0x06050410, 0x0b0c0d0c, 0x7f1a0c05, 0x230ac541, 0x06051025, 0x0b211785, 0x213b8d1b, 0x97412f31, 0x0dc44105, 0x832e2521, 0x244b8343, - 0x08a91b21, 0x0ade4178, 0x22211989, 0x843a881a, 0x01c028f3, 0x00c001b0, 0x7b3c0031, 0x3b220aa9, 0x064e1501, 0x1180180d, 0xdc41180b, 0x69022009, - 0x4a780a4b, 0x4c102306, 0x77183131, 0x012208dc, 0xd4431820, 0x2b152205, 0x06f74a39, 0x48303022, 0x7c08196a, 0x2227065d, 0x5038380e, 0x843b3b58, - 0x01d01a36, 0x80c02312, 0xe6820216, 0x00200483, 0x220cbf49, 0x82430027, 0x078a4db3, 0x18012b21, 0x7d0826b3, 0x2b2c0713, 0x26272201, 0x37341135, - 0x05013b36, 0x0a2b4c19, 0x06072227, 0x1714011d, 0x24e68216, 0x3f161716, 0x06086001, 0x0f0b1a19, 0x0895bd18, 0x07075926, 0x0e0e0c90, 0x2608e443, - 0x0c0e0e01, 0x18600190, 0x2409d5b7, 0x1b2900ff, 0x069a4d1b, 0x012f1582, 0x09090e00, 0x0a0a07b1, 0x050a8807, 0x82480f07, 0x254b8312, 0x05070f48, - 0xc38d880a, 0x42002624, 0x3f430000, 0x78112005, 0x1a19059a, 0x34281cdf, 0x0726012f, 0x23150706, 0x0120c28f, 0x1ed71a19, 0xc2980720, 0x0a674718, - 0x8509d46b, 0x22c298da, 0x43200001, 0x3523062b, 0x43250000, 0xad5a151a, 0x06a34405, 0x557c0620, 0x07534308, 0x43d00121, 0xb0440d02, 0x44782020, - 0x04202eb0, 0x2e063f4e, 0x003d00bf, 0x0061004f, 0x01000073, 0x50060726, 0x232006f9, 0x8605df42, 0x220c8506, 0x50211716, 0x544d07f4, 0x87232005, - 0x26352506, 0x03272627, 0x10424918, 0x10869518, 0x14011d22, 0x0aac4018, 0x37362008, 0x01171633, 0x0506090d, 0x16010403, 0x1b102217, 0x01011212, - 0x141f0e15, 0x1b010114, 0x7610111a, 0x702005f3, 0x10230f84, 0x841b1a11, 0x150e2d0f, 0x12120101, 0x0105051b, 0x4d241717, 0x39184b63, 0x17180602, - 0x18172929, 0x0b010206, 0x01010ba8, 0x070701bf, 0x220e0c08, 0x3e841617, 0x01121e2b, 0x241f1414, 0x14130515, 0x825f841b, 0x141b250d, 0x24150513, - 0x12210d83, 0x278a831e, 0x1a25110f, 0xc1fe061a, 0x4b0bc74f, 0x6c2c0c95, 0x100a0304, 0x11020211, 0x04030a10, 0x0b206382, 0x09fb5418, 0xa001402a, - 0x2d001500, 0x54003f00, 0x17fb4e18, 0x16011f28, 0x032b0607, 0x88182726, 0x32250a91, 0x07142717, 0x0b0d4231, 0x27151623, 0x05d57926, 0x21171627, - 0x27263736, 0x21308221, 0x27673527, 0x098d6608, 0xeca0fe3a, 0x07060760, 0x5030900e, 0x0906070f, 0x0b0b0840, 0x07381108, 0x8c070d0d, 0xd034c18b, - 0x02161602, 0x3a262701, 0x02164001, 0xc0fe1602, 0x01191925, 0x6705964d, 0x0884088d, 0x0c906b30, 0x0d010d0c, 0x09500c0d, 0x0b541609, 0x6b410b0b, - 0x8308200b, 0x3ae0233b, 0x965f2726, 0x19192305, 0x9775e025, 0x01ff2d08, 0x001300bf, 0x00330020, 0x020f2500, 0x0877ba18, 0x033f4608, 0x0705021f, - 0x37071506, 0x23013f32, 0x01352726, 0x14151617, 0x022f030f, 0x3336023f, 0xa6011732, 0x0acd160c, 0x0a0e800e, 0x04260309, 0x0c16cd0a, 0xfe223e22, - 0x1a0209ba, 0x09020256, 0x01010f2e, 0x12122865, 0x2716840f, 0x130f160c, 0xe414191a, 0x04203183, 0x36842c82, 0x862d3185, 0x56020209, 0x0109021a, - 0x4f012e0f, 0x88258328, 0x12122132, 0x08af4018, 0x0c27a383, 0x00001a00, 0x18170701, 0x8508ffcb, 0x16172eac, 0x3f36013f, 0x6b012701, 0x12318231, - 0x2f428412, 0x0710e947, 0x0a0a0423, 0x1015780e, 0xad0182ea, 0x59831982, 0x472d8f82, 0x78160fea, 0x040a0a0e, 0xea0f0723, 0x245f8a82, 0x001100c0, - 0x845f8231, 0x310126e4, 0x022f3127, 0x20e68337, 0x9c001907, 0x32332508, 0x010f051f, 0x82091f41, 0x82c52072, 0x01342551, 0x34116010, 0x21085e83, - 0x661111d4, 0x0e0e1111, 0x1d1d1666, 0x60110d16, 0xab110110, 0x0d19664a, 0x05020909, 0x0d9b4915, 0x9c84ad01, 0x13213086, 0x21298260, 0x33820e0e, - 0x85151521, 0x49ac292c, 0x09020515, 0x66190d09, 0x9f4a2c82, 0x3f012908, 0x1b00c001, 0x16250000, 0x2406066f, 0x37363726, 0x05054633, 0xad823220, - 0x16331125, 0x183e0117, 0x24077aba, 0x0f07050a, 0x06c25e58, 0x070f5826, 0x900c0e71, 0x20062a45, 0x060b4301, 0x01e0fe23, 0x205c820e, 0x24038201, - 0x01000220, 0x205b8360, 0x24e48313, 0x011f1415, 0x395b8216, 0x37322135, 0x34013d36, 0x21232627, 0xb2272635, 0x08900b0f, 0x0f0b9008, 0x428a010d, - 0x5e010d25, 0x46880b06, 0x728a0813, 0x5f205b8a, 0x3f21b785, 0x09ac4601, 0xe9452120, 0x21332207, 0x20b78215, 0x189f894f, 0x2407a588, 0x0e012001, - 0x85ce9622, 0xc0ff215b, 0x33071341, 0x012f3601, 0x0f222326, 0x16170601, 0x14113317, 0x013b1617, 0x3524bc82, 0x37363311, 0x21181341, 0xd1890e01, - 0x0d20748a, 0x2c06bf52, 0xc0014002, 0x1d001900, 0x38002a00, 0x06677200, 0x7e603320, 0x07152205, 0x2b6a8306, 0x26272623, 0x23051127, 0x16021f35, - 0x17b4bd18, 0x01003108, 0xa01b1212, 0x800e0909, 0x12060f57, 0x1bc30504, 0x01011212, 0xa6808080, 0x1d0c0c0e, 0x0f0d1d47, 0x81ee0d10, 0x09068147, - 0x0606093c, 0x06030f01, 0x2a05c15f, 0x09090e80, 0x160f577e, 0x830d0e4b, 0x80012a41, 0x6c808040, 0x10100c0e, 0x2234820d, 0x83b50c0c, 0xbbbd1832, - 0x095b620c, 0xad824020, 0x07062322, 0x2105bb49, 0x86180717, 0x37200d80, 0x2206fb49, 0x82353736, 0x010f21bd, 0x0ac95918, 0x06070625, 0x4907011f, - 0xa82105d7, 0x05c84990, 0x4f4f282e, 0x0e0e0c28, 0x90160201, 0x0b060610, 0x0b230e83, 0x9d100606, 0xa001211d, 0x4c8e2eac, 0x24088f44, 0x00c00180, - 0x06277a1e, 0x31070624, 0x58190706, 0x946614c1, 0x31272205, 0x07424c26, 0x07141525, 0x5d072306, 0xc025099f, 0x0a181820, 0xd7c11836, 0x08e36f08, - 0x1a0b3521, 0x200e7b43, 0xa86d1850, 0x010f2b08, 0x121101c0, 0x0e0d011c, 0xda5bfe14, 0x21098205, 0x43836001, 0x11121c23, 0x0ded5501, 0x2208895d, - 0x82010000, 0x023f29bb, 0x00400100, 0x25000022, 0x1909ec42, 0x2c12d90e, 0x3f161716, 0x08f80101, 0x0f0b7008, 0x236e820d, 0x700b0f0d, 0xae300c8c, - 0x080a0a08, 0x07060a68, 0x0f38380f, 0x680a0607, 0x03430f8f, 0x01002208, 0x206f83c0, 0x09004313, 0x06231524, 0x69180607, 0x272b07e5, 0x35232726, - 0x36373633, 0x8f92012f, 0x210f8f43, 0x838cb801, 0xbb560c8c, 0x001a240c, 0x62000034, 0x31200506, 0x0a05a818, 0x59483720, 0x27262405, 0x82262703, - 0x35332c0b, 0x3b363734, 0x16173201, 0x8233011d, 0x010f2205, 0xb4451906, 0x700b261a, 0x0a050307, 0x06b44440, 0x050a4027, 0x0b700703, 0x25ca180b, - 0x75fe2619, 0x090a0770, 0x065b4d01, 0x0a0a6026, 0x0a0a7007, 0x840a4363, 0x262523a3, 0x02843127, 0x49070621, 0x1622070d, 0x9b823617, 0x25373628, - 0x16173637, 0x91521517, 0x1415270a, 0x012f0607, 0x4e743726, 0x7473931a, 0xd195182e, 0x0b076018, 0xfc71a384, 0x87312005, 0x66262097, 0x062408f7, - 0x06070507, 0x35210d82, 0xf8701823, 0x013b2907, 0x36373435, 0x0716011f, 0x187ecc18, 0x418b0121, 0xa2b01216, 0x550f4741, 0x3120056c, 0x4107df41, - 0x13200b4d, 0x1805a94f, 0x20095c98, 0x23ae8301, 0x1736013f, 0x41190478, 0x0b781519, 0x41d39319, 0xe0280547, 0xa001c001, 0x46001a00, 0x08355c18, - 0x2c510620, 0x013f2a05, 0x36371617, 0x27343537, 0x26281926, 0x0915352f, 0x8a2a0e07, 0x0d0a0909, 0x29890a0d, 0x01131310, 0x800e0909, 0x26232819, - 0x13130125, 0x52892910, 0x8a320511, 0x09070e2a, 0x090e8015, 0x16012009, 0x00ff2217, 0xdc5f1722, 0x49502005, 0x50270594, 0x0f01010f, 0x4d0f0001, - 0x4d180663, 0x15220d63, 0xd3822f00, 0x18171621, 0x241383c3, 0x1f060722, 0xf2af1801, 0x21ea830a, 0xc318013d, 0x0a341988, 0x28070305, 0x24060647, - 0x06080806, 0x09082847, 0x900f010a, 0x2215d457, 0x830a0a80, 0x2127822a, 0x2a820624, 0x04030724, 0xa382900b, 0xb75a0220, 0x001a2b08, 0x13000036, - 0x37363521, 0x37191f36, 0x23510a59, 0x01332207, 0x08b28232, 0x07141525, 0x15212306, 0x2f060706, 0x34352601, 0x1736013f, 0x21151716, 0x01400120, - 0x60101313, 0x10600909, 0x58011313, 0xab55085e, 0xc0fe2106, 0x2b821d8b, 0x1540602f, 0x600e0709, 0x0a0d0d0a, 0x08080e60, 0x06715815, 0xb05aff20, - 0x221d8806, 0x830f6009, 0x0000231d, 0xa7820200, 0x0002c12c, 0x2300bf01, 0x00004700, 0x8c821437, 0x37323323, 0x20ae8336, 0x82421937, 0x0706230d, - 0xa0822315, 0x18050721, 0x83080f79, 0x11ac450d, 0x3720e882, 0x01247086, 0xa0291b1b, 0x8882a383, 0xc1834020, 0x2d44a025, 0x9c02022d, 0x062b531d, - 0x1b1b2924, 0xcd832001, 0xcd834020, 0xcd834020, 0x2d022024, 0x8e4f442d, 0x201e9706, 0x2c008200, 0x00000002, 0x01800220, 0x00110060, 0x618a1837, - 0x1716220f, 0x86901816, 0x07904e0a, 0x65013b21, 0x4e18077f, 0x01210899, 0x05946401, 0x20069370, 0x28078201, 0x2b2b0c9d, 0x2b2b3b3b, 0x805c180c, - 0x200f8f07, 0xde581870, 0x3830240f, 0x18012423, 0x890d2184, 0x5b52180d, 0xc0013708, 0x0800c001, 0x4d004400, 0x00005600, 0x36272613, 0x06171637, - 0x045c1707, 0x63152010, 0x16221086, 0xd1823317, 0xb14e3320, 0x07222907, 0x26230706, 0x03272627, 0x25204487, 0x22050b5c, 0x7b501716, 0x20220794, - 0xf9180d16, 0x0d8d0ba3, 0x57372922, 0x0b23dc18, 0x14131929, 0x1b265709, 0x8720051a, 0x3801213d, 0x2008b951, 0x20098758, 0x20328f31, 0x22108fce, - 0x8d011f57, 0x18012567, 0xd1fe2618, 0xb8204087, 0x00205d87, 0x26053743, 0x00c00140, 0x5b30002b, 0x33200c97, 0x144e8018, 0x1120f984, 0x2124f183, - 0x35211505, 0x22097d7e, 0x44450bb0, 0x01210534, 0x22078500, 0x68b00b45, 0x01220932, 0x6382fec0, 0x917e0120, 0x0c5a5b0a, 0x997e2020, 0xe0402209, - 0x096744e0, 0xa801ff26, 0x2e001100, 0x36239782, 0x8232013b, 0x030737d3, 0x27222306, 0x013f2603, 0x011f0617, 0x16070607, 0x3132011f, 0xa9193330, - 0x073f0d11, 0xf00c0775, 0x0a70070c, 0x0b07e80b, 0x0be8070b, 0x0526700a, 0x06943a03, 0xc0060101, 0x83c00101, 0x39933407, 0x05060503, 0x06055a5a, - 0x0a0a9e01, 0xff0e1098, 0x82080800, 0x98102cbb, 0x60060428, 0x0707010c, 0x83101001, 0x600c2905, 0x05040406, 0x04056161, 0x2909eb4c, 0x00c00160, - 0x17000027, 0x42482627, 0x26352205, 0x0a034727, 0xb7471620, 0x14152307, 0xaf83010f, 0x088ab228, 0x540c0808, 0x0c480f01, 0x1f302507, 0x0c540120, - 0x8a281482, 0x06080806, 0x0c088a3a, 0xd0220c82, 0x5c48010f, 0x20012406, 0x82d0301f, 0x080c2831, 0x0006068a, 0x18000100, 0x820727cb, 0x52132073, - 0x152207a9, 0x8f520706, 0x3736240a, 0x18353736, 0x820880a0, 0x21739e18, 0x749dba01, 0x02217384, 0x20e78240, 0x66808232, 0x6b750977, 0x013d2106, - 0x44072b5f, 0xfa6b05a3, 0x2627260b, 0x01352327, 0x079a4360, 0x18052550, 0x42082cc1, 0xa8180713, 0x2021090f, 0xfe9c1801, 0x06697108, 0x293d3024, - 0x29190228, 0x0226194d, 0xc1ff0000, 0x9b828001, 0x2c001a25, 0x84170000, 0x0e24639d, 0x7905f769, 0xd8221123, 0x5819271b, 0x02260b00, 0x27271f1e, - 0x121a0a1b, 0x332613fc, 0x3b373821, 0x7c182d3b, 0x2d280711, 0x38373b3b, 0xf30c0c21, 0x180fdf67, 0x260bd76c, 0x00510025, 0x82151300, 0x2794827c, - 0x26233736, 0x33373627, 0x077e5f18, 0x37410d85, 0x052c5e07, 0x8309835c, 0x05cf5c33, 0xda183b20, 0x6020106f, 0x2307c37b, 0x01010f50, 0x07d2fa18, - 0x19870b85, 0x5f18e020, 0xda1807ca, 0x60251c80, 0x1b1b29a0, 0x24338301, 0x010f0f01, 0x87048820, 0x18902015, 0x5c08c77b, 0x621805e0, 0x558308da, - 0xda182220, 0x1821088f, 0x06b76800, 0xc0017028, 0x27001500, 0x814e2c00, 0x21c68308, 0x15450611, 0x18112007, 0x4209cb7f, 0x35260638, 0x33112313, - 0x54181011, 0xd02011c6, 0x220b4d52, 0x4ee0e050, 0x27830567, 0xc85efe20, 0x80012208, 0xc28518fe, 0x230f820c, 0x004001c0, 0x09cf6f18, 0x20001522, - 0x6e0dc344, 0x23210823, 0x09724d13, 0x081b4118, 0x8c42e020, 0x50e02407, 0x6d010f40, 0xf06a0672, 0x4d502016, 0x03250948, 0xc0ff1000, 0x22fb8501, - 0x98250020, 0x008a18fb, 0x20f49709, 0x82738680, 0x99a0207d, 0x075d6ef2, 0x0022ee86, 0x00820007, 0x01400224, 0x0d190080, 0x5b200b63, 0x2120f98c, - 0x2121f988, 0x650d1913, 0x9966181d, 0x16272210, 0x0d884217, 0x23272624, 0xe05f0706, 0x0bb77e08, 0x0d194020, 0x6918177b, 0x94291010, 0x12040f01, - 0x18120202, 0x25058318, 0x10120204, 0x645a0212, 0x09e8600b, 0x188f0d19, 0x65184020, 0x30250f85, 0x02300410, 0x224f8312, 0x83440212, 0x08034e06, - 0xc001802d, 0x2f001c00, 0x36010000, 0x5e071617, 0x26250590, 0x36352627, 0x2710833f, 0x0f16011f, 0x09171601, 0x37210382, 0x200c8236, 0x2e0e8217, - 0x27220706, 0x02372726, 0x0c0f1359, 0x83b0fd10, 0x9c260805, 0x021b1a30, 0x0e0e581c, 0x0928060d, 0x1b123115, 0xedfe5c01, 0x13281714, 0x070e601b, - 0x0a180306, 0x46474f1d, 0x82735c3a, 0x7a26080b, 0x5148483a, 0x03180a1d, 0x600f0606, 0x2728131b, 0xfe110120, 0x310b0dad, 0x06280915, 0x580f0e0d, - 0x191a021b, 0x4350482d, 0x0015240c, 0x823b0027, 0x272624a9, 0x19272631, 0x240a0bae, 0x37363736, 0xbb6a1811, 0x6c172010, 0x33240503, 0x17161716, - 0x8205b958, 0x154841d6, 0x3010637d, 0x131301b0, 0x131d571e, 0x08080113, 0x080baa0b, 0x15634308, 0x43086e43, 0xa521071d, 0x8332821e, 0x8232823b, - 0x01002139, 0x29054763, 0x2a00a001, 0x16130000, 0x8d841517, 0x2205734d, 0x6f262306, 0x2623065c, 0x18272627, 0x4b0720a7, 0xcd2b0561, 0x4b700112, - 0x01023231, 0x19181415, 0x232f524d, 0x29170e0d, 0x12524d19, 0x0c63b619, 0x00002622, 0x1c45de18, 0x36111523, 0x22018237, 0x18312735, 0x261b4fde, - 0x10262744, 0x1801b00f, 0x291a55de, 0x2386fe43, 0x3a393636, 0x4a184a2e, 0x07450b9f, 0x0ff6630c, 0x087d5418, 0x2705fc4d, 0x13353637, 0x11211121, - 0x1430b618, 0xae4b0120, 0x05104506, 0xc0fe8024, 0xa8414001, 0x140c4515, 0x49000021, 0x012405d3, 0x00c001c0, 0x700f0f45, 0x06260e43, 0x27262307, - 0xc5633736, 0x21027014, 0x230a1145, 0x00010000, 0x20079344, 0x17621827, 0x07d6500d, 0x62181520, 0x3c4b0916, 0x85352007, 0x1bc024fe, 0x18011212, - 0x8c0dd8d4, 0x249e8811, 0x0e0d0150, 0x45288314, 0x118908c0, 0x00207e84, 0x22079f74, 0x4c250011, 0x4d431387, 0xb47a1805, 0x27262608, 0x01232726, - 0xbb4a1800, 0x445f320f, 0x09022d2e, 0xc2010d09, 0x0209090d, 0xbe442e2d, 0xd8d818a0, 0x8320200f, 0x821d8216, 0x5d2c8325, 0x47650c1f, 0x087c433d, - 0x6f80fe22, 0x20474765, 0x08174102, 0x2b001528, 0x26010000, 0x7555010f, 0x2f36230e, 0x94530101, 0x06072405, 0x5016011f, 0x2627079b, 0x11d90127, - 0x55275711, 0x272b0a62, 0x200e0e57, 0x1090fffe, 0x840b0606, 0x2b1f830b, 0x010e0f0b, 0xb9011602, 0x27570e0e, 0x2a0a7f55, 0x11115727, 0x01f7fe20, - 0x840c0e0e, 0x2d1e830a, 0x1006050a, 0x00021690, 0xff100002, 0xdf7502d0, 0x20938305, 0x053d6733, 0x07012f27, 0x26012f06, 0x23a0823f, 0x03373637, - 0x21089361, 0x96823637, 0x22059164, 0x55580107, 0x54880692, 0xa0207383, 0x6983148f, 0x55c00121, 0xaa8806ea, 0xfe21ca83, 0x83158f10, 0x06cb43c0, - 0xf7790220, 0x002f2605, 0x01000043, 0x05485922, 0x16010f22, 0x17247e82, 0x013f3637, 0x37250283, 0x26022f34, 0x48771827, 0x18252011, 0x210a5656, - 0xbf821617, 0x2f362108, 0x10260201, 0x1215f00e, 0x1e100e66, 0x03300202, 0x14111b02, 0xec171987, 0x140a0114, 0x361a0f13, 0x0fd36718, 0x184afe21, - 0x2007f646, 0x3f088830, 0xaf0ac001, 0x0f6b120f, 0x0302150c, 0x14030340, 0x0b40090c, 0x1a10ab11, 0x181b0d11, 0x00fe0114, 0x200f034f, 0xe4461873, - 0x88402007, 0x30db8708, 0x00c00100, 0x005d0050, 0x3700006a, 0x27222306, 0x31a48236, 0x07141516, 0x37321716, 0x27343536, 0x33323332, 0x01831716, - 0x26151437, 0x06072223, 0x36331615, 0x06173233, 0x26070607, 0x26373435, 0x05f16b27, 0x22232223, 0x05075423, 0x16353423, 0x233b8333, 0x06372726, - 0x2721f385, 0x202c8226, 0x87048305, 0x073f3410, 0x0e161708, 0x06553a3a, 0x0f0e0101, 0x02060102, 0x75010201, 0x172a0517, 0x0f080919, 0x07080e03, - 0x209c1518, 0x040c3a2e, 0x21450e08, 0x070e0d05, 0x16013b1c, 0x0c330b89, 0x0601e105, 0x0e3a3a55, 0x08071716, 0x080f030e, 0x75171909, 0x032605aa, - 0x02010603, 0x1d9c0f0f, 0x0f010e2f, 0x050d0e07, 0x080e4521, 0x1c3b0c04, 0x240a894b, 0x00000e07, 0x08374308, 0x00072108, 0x001a000f, 0x00300025, - 0x00400038, 0x1300004b, 0x15163736, 0x07270706, 0x22070617, 0x013f3627, 0x27347e82, 0x27343736, 0x36073336, 0x26071737, 0x16373427, 0x23260533, - 0x37232382, 0x82141716, 0x82072086, 0x1732211f, 0x35083083, 0x37363526, 0x14070627, 0x26230617, 0x57173727, 0x01064231, 0x55175523, 0x14163b2a, - 0x63c02c0e, 0x2c3da946, 0x0b0b0601, 0x3d3448d0, 0x01023ea9, 0xcf011817, 0x0c861817, 0x2c0e0522, 0xa6212884, 0x20368455, 0x83298417, 0x80012732, - 0x16140e2c, 0x48822a3b, 0x0601233a, 0x02573142, 0x343da93e, 0x01171848, 0x3d2c01f0, 0x0b6346a9, 0x0626060b, 0x45270a83, 0x200b0b64, 0x82553142, - 0x55352126, 0x17203485, 0x31832884, 0x7c000021, 0x002206ff, 0xf382c001, 0x3e002c24, 0x4d185000, 0xa05f1d5f, 0x5e172010, 0x2320106c, 0x7b552390, - 0x18102019, 0x180ce8a6, 0x8b0cc7c8, 0x198c5519, 0x216f7020, 0xcd681818, 0x41d4820c, 0x3b2a08df, 0x6d005400, 0xa6009a00, 0x636a0000, 0x06232305, - 0x5f6a1607, 0x050b6e05, 0x062e0f85, 0x33070607, 0x27262726, 0x26373633, 0x4d482327, 0x19088205, 0x2007c908, 0x5b1f8203, 0x262408dc, 0x3526012f, - 0x06241c82, 0x05071407, 0xf45b0482, 0x30178a07, 0x1435010f, 0x1516011f, 0x26273307, 0x3d36013f, 0x252e8401, 0x23070615, 0x3a852726, 0x17200b8c, - 0x36231582, 0x83171637, 0x01903d14, 0x10010f0f, 0x0f01010f, 0x02113510, 0x0a0a0502, 0x02160308, 0x02081602, 0x82050505, 0x02220382, 0x0e821608, - 0x0a080328, 0x0202050a, 0x2a853511, 0x0f097736, 0x0d080901, 0x09080dc4, 0x07090f01, 0x16901602, 0x17010702, 0xa4201484, 0x70201488, 0x09321482, - 0x02081308, 0x0901037e, 0x07010913, 0x01010718, 0x04830807, 0x09883020, 0x58201382, 0x85820c82, 0x10070124, 0x8984b001, 0x20349383, 0x04051102, - 0x1a18180a, 0x02161602, 0x18222224, 0x24222218, 0x1a280b83, 0x040a1818, 0x20021105, 0xfe24b984, 0x1208054d, 0x8d827182, 0x05081225, 0x82170703, - 0x030821ac, 0x17311390, 0xc4050307, 0x0a15090c, 0x0d3b3b0d, 0x0d09150a, 0x2173823b, 0x04921007, 0x824c3c21, 0x828583a7, 0x08034998, 0xc0014022, - 0x27055d4b, 0x31072213, 0x17161506, 0x21088d48, 0x85483533, 0x06072f05, 0x013f2627, 0x37362726, 0x2b262734, 0x27840301, 0x82082148, 0x23240813, - 0x090e8021, 0x24190209, 0x01032626, 0xc0141112, 0x01121114, 0x0b641801, 0x6a0a0a0b, 0x02192426, 0x400e0909, 0x5206d751, 0xff2307fa, 0x82c00100, - 0x061a3b16, 0x4a3b3a21, 0x09151423, 0x15092b2b, 0x30382314, 0x0b0a0a63, 0x213a6a0b, 0x53821a06, 0x9f6efe20, 0x0006230f, 0x2f58ff00, 0x00152b05, - 0x003f003a, 0x00490044, 0x037a004e, 0x15172416, 0x84333533, 0x15232303, 0x03841533, 0xbb183520, 0x332307be, 0x84352335, 0x82172003, 0x011d2105, - 0x3b211782, 0x21218201, 0x0e823135, 0xed491520, 0x9b402014, 0x15885700, 0x80203192, 0x834a1388, 0x01bf2606, 0x002e00c0, 0x08696c46, 0x2009ec55, - 0x05705b15, 0x26272125, 0x823b3637, 0x08c168a1, 0x37343528, 0x34033336, 0x16823137, 0x08306118, 0x83032b21, 0x0ee0231f, 0x1d440909, 0xa0102c06, - 0x05090a10, 0x47d2fe47, 0x820a0905, 0x0519440c, 0x09091024, 0x0382c00e, 0x18011423, 0x22118514, 0x8240c040, 0x83012008, 0x821c8314, 0x0d30290b, - 0xd6d60f0e, 0x300d0e0f, 0x20050d44, 0x20138210, 0x0c7f63fe, 0x00030032, 0x01c0ff00, 0x00a00180, 0x002c0023, 0x3700003f, 0x072fea18, 0x1407062c, - 0x0607011f, 0x1f16011d, 0x0c481601, 0x013f2505, 0x010f0615, 0x0a6a7218, 0xc7180120, 0x544709a5, 0x26210805, 0x40012023, 0x52363602, 0x01010c93, - 0x0109070f, 0x0d0d2f13, 0x08040d06, 0x01130d04, 0x01223a22, 0x07c44e28, 0x58180121, 0x76570871, 0x38220806, 0x3652c018, 0x0c010236, 0x071d0303, - 0x15850d09, 0x06051309, 0x1c0e0604, 0x280a060e, 0x131c1327, 0xff4ef427, 0x12022305, 0xde44d4fe, 0x0683410e, 0xc7824020, 0x0125c584, 0x06310714, - 0x07824107, 0x17162329, 0x16233716, 0x41373637, 0x2622087a, 0xb9182627, 0x032108c1, 0xf7461821, 0x09385907, 0x0d0d0824, 0x57410917, 0x0a022405, - 0x83b0010b, 0x2c0e8504, 0x0d0d1709, 0x2c1e1d01, 0x011d1e2c, 0x7c2219e8, 0x1c382310, 0x236a1717, 0x1d472706, 0x1d01011d, 0xaa85471d, 0x17170e23, - 0x8332831c, 0xc8fe213a, 0x0320be8c, 0x200ccb4b, 0xbb831853, 0x14032413, 0x71163117, 0x22240abd, 0x03150607, 0x2005745a, 0x067c6321, 0x27060722, - 0x2723d482, 0x82070623, 0x82232001, 0x850e82e8, 0x2208820c, 0x18010726, 0x201079e3, 0x728482f8, 0x1e2f0c5c, 0x66020919, 0x02663001, 0x0c0e1909, - 0x821a1b15, 0x14103a5f, 0x0a0a040a, 0x0a0a1212, 0x10150904, 0x1a070615, 0x0a0c0d0d, 0x88010e0c, 0x05654518, 0x21086a73, 0xb14658fe, 0x0129080b, - 0x0b061137, 0xcccc0405, 0x060b0504, 0x160b0811, 0x16180c06, 0x0a140302, 0x07080807, 0x0203140a, 0x040c1816, 0x0b0a0505, 0x0a1f5008, 0x3400a02e, - 0x57004400, 0x35370000, 0x16333736, 0x07779c18, 0x062c0b91, 0x0706010f, 0x17161716, 0x36213130, 0x25050e57, 0x33172726, 0x0b683736, 0x011d2407, - 0x41071716, 0x002d11d5, 0x0f380f01, 0x20070101, 0x0f010107, 0x83098850, 0x1c112913, 0x07020111, 0xe0fe0106, 0x02215a82, 0x220e8301, 0x190f20b0, - 0x2008b703, 0x0c284190, 0x0e090924, 0x3e829cf4, 0x82280f21, 0x28072148, 0x9c2d098d, 0x090e0914, 0x25264014, 0x26250101, 0x220c8440, 0x550f0174, - 0x0f2007ed, 0x210db260, 0xff820300, 0x8002002a, 0x2c008001, 0x5d005800, 0x0ccf8918, 0x62180320, 0x71570949, 0x06bd4205, 0x88573320, 0x15212706, - 0x16173233, 0xbd42011d, 0x05f65d07, 0x2009fc5d, 0x07f25f03, 0x15071526, 0x70333523, 0x1020b682, 0x8305a441, 0x85918306, 0x2217820d, 0x8da00130, - 0x222b8d0f, 0x5fc0c070, 0x802207dc, 0x35858040, 0x5e182020, 0x20200dbf, 0x25850f8f, 0x80232e88, 0x82004040, 0x00063400, 0x01ceff0e, 0x00b101f1, - 0x0016000e, 0x0029001e, 0x823f0034, 0x070621f5, 0x17220183, 0x01833736, 0x3617273c, 0x26272627, 0x27011707, 0x17161706, 0x36133716, 0x0716011f, - 0x26012f06, 0x0a940737, 0x1215f828, 0x0c1b2d62, 0x068414ee, 0x08f7ed2e, 0x5715060f, 0xdffebd44, 0x051008bd, 0x37250982, 0x0a400b0b, 0x2004840a, - 0x280a9430, 0x0705a701, 0x322d4e27, 0x2a0686ee, 0x154557b4, 0xbd060e04, 0x83bdddfe, 0x070f2809, 0x0a0a4b01, 0x840b0b40, 0x94302004, 0x1800200a, - 0x29097faf, 0x00240012, 0x00470035, 0x9961006b, 0x77232006, 0xcd82075f, 0x4a071721, 0x65600633, 0x27262605, 0x22271516, 0x05964c27, 0x14240c83, - 0x37230607, 0x704c2288, 0x15162205, 0xe7a91807, 0x1906200e, 0x080c7c63, 0x27222327, 0x80013526, 0x27171701, 0x171727d4, 0x36360201, 0x36365252, - 0x090a8e02, 0x0906080e, 0x09090f15, 0x03130101, 0x230b8234, 0x0a090e16, 0x18820a82, 0x1c857120, 0xcf241086, 0x400e0909, 0x20068a45, 0x09f94210, - 0x820e1021, 0x3300283a, 0x1a1a2a29, 0x5833292a, 0x41200721, 0x032b4482, 0x09010113, 0x09150f09, 0x82320806, 0x204c820b, 0x820a8216, 0x85112018, - 0x2010861c, 0x081744e2, 0x420f0121, 0x5e84077e, 0x00020022, 0x022a0082, 0x00800100, 0x00240011, 0x51182500, 0x172210e4, 0xb6183736, 0x01290f90, - 0x48486d00, 0x48480303, 0x2207876d, 0x871a26c0, 0x261a260e, 0x4f71714f, 0x657b18c0, 0x0e02230f, 0xf5578216, 0x16822607, 0x01011d0e, 0x05f7461d, - 0x80022708, 0x1c00c001, 0x5e004c00, 0x16010000, 0x0f063107, 0x07161703, 0x27072306, 0x36373637, 0x023f011f, 0x17161736, 0x19820601, 0x22312726, - 0x26272627, 0x34261782, 0x013f3637, 0x83682736, 0x200f8205, 0x25038336, 0x30173233, 0x9a6b1731, 0x90172005, 0x022808c7, 0x02010879, 0x0948900a, - 0x0404061c, 0x0d4f300a, 0x060a0903, 0x9048081f, 0x080d0d0b, 0x341e94fe, 0x15303134, 0x01050508, 0x043c0082, 0x05054912, 0x05270705, 0x0b010403, - 0x1e110e0e, 0x1f1f2829, 0x07074f02, 0xe31d1111, 0x210f424f, 0x4183b401, 0x07387031, 0x09090824, 0x092e6501, 0x28070103, 0x83703807, 0x30fe266e, - 0x01070715, 0x35bd8202, 0x02040407, 0x52131903, 0x03060606, 0x04030215, 0x191a1e05, 0x1c82160e, 0x1e026527, 0x1826251e, 0x0f554f24, 0x00000023, - 0x08934601, 0x00000422, 0x2905bf53, 0x00fe0002, 0x00fec001, 0x00820002, 0x1f880320, 0x3900142f, 0x00004b00, 0x31072225, 0x33270706, 0x215d1937, - 0x26073608, 0x06172527, 0x22171415, 0x2f26012b, 0x06232601, 0x0706010f, 0x26098222, 0x013f3635, 0x82343736, 0x35272309, 0xea183734, 0x012a11f5, - 0x1e1e26a0, 0x3c01e811, 0x0082392c, 0x332c2808, 0x211b0c0b, 0xf191fe2c, 0x04051102, 0x0a253503, 0x0a0d0d0b, 0x0e0e093a, 0x0109200a, 0x010a430a, - 0x01240a0a, 0x416f0111, 0x078707e3, 0x1314a025, 0x6d3ce920, 0x332e05f6, 0x193f4343, 0x0bf18801, 0x011d230c, 0x33820a24, 0x09323782, 0x0e0e0a20, - 0x0d0a3a09, 0x26090b0d, 0x1e220335, 0x3b4298fe, 0x05b3440f, 0xc0ff0032, 0xc0010002, 0x19000c00, 0x36002900, 0x50004300, 0x0625f182, 0x26273607, - 0x05415027, 0x07060723, 0x210c8206, 0x0e823736, 0x8a5b3720, 0x05605006, 0xfb820720, 0x50171621, 0x36240555, 0x17373637, 0x27200c86, 0x13210c83, - 0x83068226, 0x081f8232, 0x000223b3, 0x1b062928, 0x3351361c, 0x09040232, 0x53524b19, 0x3d3a2448, 0xec3e4140, 0x2e1b1b02, 0x04042e28, 0x07252445, - 0x1f863d42, 0x2f2f4917, 0x25010712, 0x1d463e26, 0x26263a03, 0x06182410, 0x30502e2e, 0x13093d4d, 0x484b4b41, 0x342d2d23, 0x50020eb5, 0x19344647, - 0x06594242, 0x29302305, 0x32060524, 0x06202437, 0x45371207, 0x0f2d3b3b, 0x574a4b2e, 0x1bda2003, 0x3b3b2323, 0x4b201d49, 0x5a213b3c, 0x3524453b, - 0x2b1f3e35, 0x26444553, 0x270177fe, 0x0c2d2529, 0x1321150b, 0x00070013, 0x01c0ff00, 0x00c001e0, 0x00510048, 0x0063005a, 0x0075006c, 0x6b6a187e, - 0x6003204a, 0x1f21064c, 0x1a5c1801, 0x734a1810, 0x86272008, 0x19172023, 0x18084d1f, 0x1834a16a, 0x1808ba48, 0x91119467, 0x0f502211, 0x050e5b01, - 0x1807c471, 0x2036d76a, 0x833784fe, 0x1830204c, 0x20101368, 0x5d491870, 0x00002319, 0x03820700, 0x2f057362, 0x0011000c, 0x0028001f, 0x003a0031, - 0x25000043, 0x0a717118, 0x21031123, 0x18018211, 0x2109fb7d, 0x4b181133, 0x52410895, 0x059d7608, 0x16373622, 0x07311188, 0x1b60e001, 0x01011212, - 0x601b1212, 0x0100ff20, 0x09825c00, 0xe8606024, 0x3d611602, 0x85482005, 0x16022106, 0x88085b73, 0x83202011, 0x83c0203a, 0xc0fe2343, 0x03834001, - 0x01221088, 0x37877040, 0x49901820, 0x00211188, 0x080b4e03, 0x0d000637, 0x00001a00, 0x35330713, 0x17070623, 0x27262733, 0x21171523, 0x33471815, - 0x33352f08, 0x1d72d033, 0x33d0bd0e, 0xd0721d0e, 0x6a8340fe, 0x2a065d5f, 0x01806585, 0x1a65651a, 0x5c208001, 0x5b8409eb, 0x4002c028, 0x1d00c001, - 0x5b183a00, 0x332009ed, 0x33245282, 0x33353736, 0x15205983, 0x2108c35d, 0x18970735, 0x36373624, 0x1c9b2137, 0x0d01a02a, 0x0130140e, 0x010f200f, - 0x08854218, 0x0e14a025, 0x9370010d, 0x212c8314, 0x19984001, 0x38839020, 0x010f5025, 0x83500f01, 0x58802029, 0x80210731, 0x971493f0, 0x4517832c, - 0xe02d07ab, 0xc0010002, 0x29000800, 0x00004600, 0x9b3a1913, 0x9348180e, 0x2726240a, 0x19232726, 0x2009a23a, 0x057c4b17, 0x19192f83, 0x17820d43, - 0x3a193520, 0x4c180ca6, 0x12230af1, 0x19401b12, 0x20081718, 0x00181960, 0x097c771f, 0x2009175d, 0x075d4c28, 0x2f439820, 0x19202006, 0x690d4318, - 0x012106b7, 0x27d38280, 0x00310018, 0x26272500, 0x2207766e, 0x60061507, 0x34220894, 0x44180727, 0x3f220a86, 0x5e183601, 0x1f3a07cb, 0x01750101, - 0x06036f34, 0x03060808, 0x020c346f, 0x51513637, 0x0b023736, 0x0146065b, 0x02062407, 0x82092918, 0x052a081f, 0x02182a09, 0x678f02bf, 0x03060603, - 0x1f028f67, 0x36365022, 0x36360202, 0x311f2250, 0x1c28100e, 0x1b01011b, 0x0e10281c, 0x2f823604, 0x29090638, 0x00000436, 0x00000400, 0x3f02e0ff, - 0x0c00a001, 0x3f003200, 0x45184800, 0x23220c1d, 0xa3882335, 0x1f163524, 0x4e561601, 0x24c28205, 0x06072627, 0x9c411807, 0x26052708, 0x37363137, - 0x22821736, 0x1727072b, 0x30312306, 0x07223731, 0x071b5a40, 0x61186020, 0x2c080815, 0x1d801103, 0x27272c2c, 0x811a0807, 0x282c2c1c, 0x2001052a, - 0x1f30301f, 0x29010120, 0x1104030c, 0x0d121310, 0xc2415043, 0x01040101, 0x09a04201, 0xe0707022, 0x2b822384, 0x191db22b, 0x080827bc, 0x2d2d1d1b, - 0x22088428, 0x87183221, 0x12402f1b, 0x0b0d1414, 0x62110303, 0x01c85f38, 0xdf820102, 0xdf820320, 0x6e01c021, 0x49200717, 0x176edd82, 0x0717212f, - 0x0d68ee18, 0x4f363721, 0xc02506ae, 0x0a181820, 0x083b6326, 0x09870020, 0x256e2520, 0x8074280f, 0x090b0b09, 0x83080840, 0x6c2c2106, 0x08210583, - 0x062f6e08, 0x1b121222, 0x830b9b79, 0x102f6e43, 0x08809424, 0x35854008, 0x856c2c21, 0x06002145, 0x3b26d78c, 0x4f004400, 0xbb415800, 0x6133200b, - 0x212a08f5, 0x27262726, 0x36373611, 0x45183337, 0x352110bf, 0x08106103, 0x36010f2a, 0x06272637, 0x37171607, 0x66241392, 0x2018180a, 0x0b21f082, - 0xb14c1825, 0x21098709, 0xdd557a26, 0xb04b180c, 0x45402009, 0x40200755, 0x01211392, 0x23e88380, 0x1c121101, 0x13814018, 0x210cfd51, 0xdb46f0fe, - 0x088c4507, 0x11907820, 0xfb470020, 0x40023405, 0x1100c001, 0x53004800, 0x65005c00, 0x77006e00, 0x18010000, 0x5f10ff84, 0x152405b1, 0x17163533, - 0x2006d342, 0x05046427, 0x342e0583, 0x06272637, 0x30153007, 0x06070615, 0x0b822207, 0x27840782, 0x16200e82, 0x20069b75, 0x10064837, 0x06264182, - 0x36171607, 0x48410537, 0x20012907, 0x01191925, 0x25191901, 0x35080787, 0x19190bd1, 0x1924e024, 0x13100b19, 0x020d0e13, 0x23120f02, 0x0e141c0e, - 0x3b02010d, 0x01455b47, 0x12140e0d, 0x0f0c140d, 0x0e0c0102, 0x37101313, 0x16020216, 0x05831002, 0xf8f0fd22, 0x20079a46, 0x07564138, 0x8e47e820, - 0x70012107, 0x21070e41, 0x6e8b1001, 0xc52e7683, 0x0c0e0e0a, 0x0e0c6d6d, 0x010c0a0e, 0x77830f02, 0x17131023, 0x276a8301, 0x01130606, 0x01011c02, - 0x0b227f83, 0x71830a0c, 0x5b207983, 0x20109268, 0x20118768, 0x55511890, 0x63651810, 0x0051280c, 0x005f0058, 0x6b000065, 0x062105d0, 0x25018207, - 0x0706010f, 0x09830239, 0x2005a957, 0x08666a3f, 0x14171623, 0x05007707, 0x08872120, 0x09355818, 0x34272622, 0x20066943, 0x08088321, 0x06230336, - 0x27262107, 0x37363303, 0x011f1621, 0x37361716, 0x0ea00123, 0x13010909, 0x362c1e13, 0x01121202, 0x07060203, 0x0e761b20, 0x02030710, 0x26151403, - 0x13131e20, 0x21061851, 0xa142c0fe, 0x212c8505, 0x19892c36, 0x82400121, 0xe64d2819, 0x18010a0f, 0x82e60f0a, 0xe8fe2607, 0x1c380f0a, 0x2048821f, - 0x3d348301, 0x1e24242d, 0x0c022429, 0x0201010c, 0x15140504, 0x02050b0b, 0x0e0e0102, 0x241e1e1b, 0x324e2d24, 0x85448208, 0x29242129, 0xfe22178c, - 0x00821080, 0x82000121, 0x30102204, 0x20008215, 0x2c008200, 0xff200002, 0x015f02c0, 0x002700c0, 0x0b495141, 0x16131723, 0xea411817, 0x07062109, - 0x07464e18, 0x2223032f, 0x17352627, 0x36313726, 0x3717013f, 0x05694527, 0x0607162a, 0x2706010f, 0x20012f26, 0x493d7e82, 0x07111015, 0xca1c2e5c, - 0x040c0b0d, 0x0d060504, 0x1b1b02ca, 0x1b1b2928, 0x5c230201, 0x2aa88249, 0x050604f5, 0x3d142e0d, 0x820d2e14, 0x833120c4, 0x0e98210d, 0x01210983, - 0x271d82a0, 0xfe140c0c, 0x432302ec, 0x41833983, 0x1a284422, 0x23059466, 0x14011c30, 0x67205e82, 0x0f242a83, 0x0f3d133d, 0x99203883, 0xdf634289, - 0x003d220c, 0x0c3b7d5f, 0x11171627, 0x17161716, 0x0be94633, 0xa6180c8d, 0x26250b48, 0x23272627, 0x0fb66817, 0x07141526, 0x07012f06, 0x3d27e882, - 0x07062301, 0x41200706, 0x10280575, 0x1601010f, 0x03132217, 0x21076546, 0x0a89c603, 0x23854320, 0x8530fe21, 0xa0102124, 0x4805c848, 0x6029079f, - 0x27080908, 0x09080827, 0x42118460, 0x0f28071d, 0x1722e0fe, 0x08080116, 0x0d231584, 0x8208140e, 0x420b8900, 0x0f220643, 0x25832001, 0x87c05021, - 0x26088419, 0x04050990, 0x821a1a05, 0x90092104, 0x7b466c83, 0x0017240c, 0x5838001b, 0x23231235, 0x82262722, 0x153324d5, 0x48072733, 0x1f581bc1, - 0x18002009, 0x23076241, 0x8080c0a0, 0x6b17b348, 0xb66005d2, 0x20012108, 0x8023b982, 0x48f08080, 0x022016a4, 0x22084b46, 0x87360032, 0x331526a5, - 0x37011f32, 0x28058336, 0x06171633, 0x2f222307, 0x05094701, 0x0a014419, 0xc08a1120, 0x702aa384, 0x3212040a, 0x040a0a04, 0x6c83461c, 0x0e885020, - 0x34496620, 0x0e802309, 0xbd830909, 0xa6840120, 0x2309e02a, 0x37090963, 0x010f0f01, 0xb6900985, 0x2a06a348, 0x00a00140, 0x0012000d, 0x413d0020, - 0x33270c49, 0x11332311, 0x45211121, 0x112705e4, 0x27262726, 0x82331123, 0x20b6820d, 0x15104a15, 0x26084e41, 0x01402020, 0x63c0fe40, 0x202309ca, - 0x4a00ff20, 0xa0201608, 0x230aa646, 0x0140fec0, 0x12220383, 0xd54b1b12, 0x200f8205, 0x165d4130, 0x7310bb73, 0x1d201b17, 0x17382019, 0x22199b5d, - 0x19160270, 0x5d0f3c20, 0x68261987, 0x02166868, 0x20191602, 0x04231140, 0x4cff0000, 0x1429057f, 0x44003500, 0x00005600, 0x78471801, 0x33072613, - 0x16171615, 0x05d04d17, 0x20136348, 0x571c8413, 0x372008e1, 0x21107a47, 0x75180001, 0xc0290d05, 0x0e0d0180, 0x0e146014, 0x0986410d, 0x09265418, - 0x0a01702d, 0x01010aca, 0x76160f0f, 0x180f0f16, 0x24111e54, 0x0909c001, 0x20508a0e, 0x08d44c40, 0x56483020, 0x8bfe2113, 0x0a204c82, 0x52834983, - 0x376c5520, 0x052f4a11, 0xa001e02d, 0x32001500, 0x00004700, 0x82361137, 0x832120c3, 0x141526f4, 0x2b06010f, 0x22db8301, 0x19070637, 0x2319ff26, - 0x06171613, 0x23058170, 0x16373635, 0x2105d044, 0x00436033, 0x3a132909, 0x1bc61a13, 0xb0011212, 0x420d2d4c, 0x18250740, 0x16020216, 0x0b717da0, - 0x1860a021, 0x2109704a, 0x3f821ac6, 0xe0224c83, 0x984d0f01, 0x0c794206, 0x02b0fe23, 0x05f67d16, 0x4783e020, 0x1925e025, 0x4e000119, 0x8028065f, - 0x2f008000, 0x39003400, 0x555dd782, 0x013b2107, 0x09489b18, 0x8e450420, 0x012b2106, 0x09da4218, 0x33170425, 0x83352315, 0x18352025, 0x220e7ba6, - 0x41e0e040, 0x20200679, 0x11831986, 0xa0a06026, 0x80a0a0e0, 0x5d052c45, 0x0c860c4e, 0x00834020, 0x260d3f7f, 0x0020000c, 0x44450033, 0x5518097b, - 0x06200f5a, 0x32060b47, 0x23060535, 0x012f0631, 0x37343726, 0x17163736, 0x50061716, 0x2632052b, 0x36373627, 0x011f3633, 0x07140716, 0x0d0e1470, - 0x55186001, 0x664c0d4e, 0x2b023206, 0x080a0a06, 0x0a0108bb, 0x2d442c23, 0x1401022d, 0x8308873c, 0x07bc2318, 0x39860a01, 0x6d184484, 0x7f4c0894, - 0xffe03208, 0xbc07010a, 0x060a0a08, 0x2d020114, 0x232c442d, 0x2108873c, 0x5882010a, 0xdb831882, 0x53450220, 0x00152208, 0x06e34737, 0x32213332, - 0x011d1617, 0x23060714, 0x26272221, 0x2117013d, 0x6009966d, 0x4b1807af, 0x00200d15, 0x220ffb5a, 0x50400120, 0x702508b6, 0x0f01010f, 0x18058b70, - 0x460892a2, 0x202105fe, 0x095b4c60, 0x0f012023, 0x883b820f, 0x0c9f4604, 0x22001524, 0xa5a33f00, 0x42171121, 0x062119f6, 0x20ad9c07, 0x15204580, - 0x0121b29a, 0x07935040, 0x210ce042, 0xbb870f01, 0xd74d0220, 0x00512605, 0x01000063, 0x0aa64617, 0x2f220728, 0x27262301, 0xc4463736, 0x36372a05, - 0x17330717, 0x3f363716, 0x18248201, 0x2b1c038e, 0x15161732, 0x34353311, 0x07333637, 0x32101f57, 0x5c29e301, 0x16020216, 0x18070c68, 0x0e0d072f, - 0x837b2908, 0x0d88310e, 0x062e1807, 0xa3080d0e, 0x2013140d, 0x520b0f20, 0x09034518, 0x0c2e8e18, 0x09090e27, 0x0e0909e0, 0x101e5790, 0x0236b62c, - 0x0a021616, 0x020c6420, 0x0a833d0b, 0x61240b2f, 0x0b01020c, 0x011a1f96, 0x01181d03, 0x4a8e181b, 0x6b8e1815, 0x57a02008, 0x04301019, 0xc0ff0000, - 0xc0018002, 0x5a005400, 0x7e006c00, 0x25085b43, 0x16070623, 0x30823b17, 0x2b070623, 0x4f0b9501, 0x332009f4, 0x18073671, 0x21085c83, 0x3d19023d, - 0x15250c2f, 0x17333523, 0x10294105, 0x11e46a18, 0x25054e43, 0x0f01010f, 0x0583d030, 0x975dd020, 0x83b02005, 0x42b0200b, 0x9020051a, 0x90200b83, - 0x2007d750, 0x44088780, 0x1330065b, 0x331a134d, 0x140e0d01, 0xb00100ff, 0xfe4d3380, 0x49086d52, 0x01200787, 0x08855518, 0x2107124a, 0xed52c001, - 0x91598306, 0x85ae1803, 0x06b44410, 0x19132021, 0x2408633d, 0x4d6013ed, 0xbf7e18e3, 0xbe55180f, 0x4f002010, 0x0220058f, 0x2f058f42, 0x0053003d, - 0x006c0058, 0x01000080, 0x011f1615, 0x580b7042, 0x362c074c, 0x16173233, 0x26351715, 0x2726012f, 0x09cb7818, 0x2d8b1420, 0x29483520, 0x0a354405, - 0x82272621, 0x1533252c, 0x25233533, 0x11217d18, 0x91013b21, 0x01332513, 0x152901c0, 0x07c56418, 0x3c150e22, 0x2006104d, 0x25159480, 0x1201c0fd, - 0x415d1b12, 0xa0fe2807, 0x0112121b, 0x18a0a0e0, 0x1807bb41, 0x850ca48e, 0xa001280c, 0x152b3b0b, 0x850b2e21, 0x140b250e, 0x563d150e, 0xe0200c86, - 0x59841a99, 0x0e090923, 0x83368260, 0x20202372, 0x0e864020, 0x43490694, 0x0041230d, 0x675d0100, 0x17072d06, 0x2f060716, 0x36372602, 0x2737011f, - 0x17360682, 0x31323707, 0x031f1530, 0x06071532, 0x0607012b, 0x013f2627, 0x3d6b3435, 0x012f3305, 0x37161737, 0x01012f36, 0x0e2020b9, 0x0f11110e, - 0x06833726, 0x83484821, 0x26372205, 0x3a06830f, 0x10013de7, 0x01103838, 0x591710bf, 0x0e111139, 0x2b11390e, 0x0a0b0b39, 0x852a390a, 0x833c8306, - 0x833c8217, 0x48482106, 0x3c820583, 0x95200683, 0x39203c88, 0x39294b83, 0x2c101759, 0x0b0a0a39, 0x843c820b, 0x05f74606, 0x9b430320, 0x000d2506, - 0x0029001b, 0x50059f79, 0x0620057f, 0x3721d882, 0x20a28207, 0x7c581826, 0x21052308, 0x86431706, 0x27362407, 0x86273635, 0x06073329, 0x66022117, - 0x2d020119, 0x2631442d, 0x0dc80a0c, 0x05842f0a, 0xfe321287, 0x11e5fef7, 0x2a2b0c02, 0x2b2a3b3b, 0x1010010d, 0x0b850d01, 0x11020c33, 0x26c91b01, - 0x2d2d4431, 0x0a190102, 0x0c0ac80d, 0x8705842f, 0x024a3012, 0x23233710, 0x23230101, 0x20021037, 0x85380f02, 0x0f38230c, 0x735b0002, 0x002b230c, - 0x5c413700, 0x06634110, 0x410a9f47, 0x60220787, 0x49411c10, 0x0650410c, 0x2b1e2e35, 0x011d1d2c, 0x10e01d01, 0x11595917, 0x590e0e11, 0x82175942, - 0x0b38412b, 0x46412a20, 0x832e2005, 0x2c1d2b27, 0x10e01e2b, 0x110e0e59, 0x8f825911, 0x0000023c, 0x0002c0ff, 0x2200c001, 0x00002700, 0x31232601, - 0x15060722, 0x01011f14, 0xae4a0706, 0x17012107, 0x2905146b, 0x07032f34, 0x23071737, 0x6f7d5701, 0xfe0a2e05, 0x01011be9, 0x06291b1b, 0x17011c27, - 0x29148509, 0x8a206020, 0x66603393, 0xd17db701, 0xfe092505, 0x05281ce9, 0x2205af5b, 0x850a1701, 0x20248214, 0x202482f7, 0x069f4c00, 0xa001002a, - 0x23001e00, 0x47004200, 0x08059a19, 0x2007f160, 0x07bf4811, 0x27221130, 0x23173526, 0x37353315, 0x36313734, 0x219a033b, 0x09090026, 0x3830380e, - 0x45055943, 0x0d8207e0, 0x30308823, 0x201a9998, 0x098d7501, 0x7e7efe20, 0x82302009, 0xa0202230, 0x064a45a0, 0x1b914482, 0xc024c785, 0xbd018002, - 0x2c34c582, 0x36003100, 0x11170000, 0x37363734, 0x05173625, 0x15161716, 0x232bc682, 0x34112726, 0x21232627, 0x86060722, 0x2105290f, 0x21352726, - 0x25070615, 0x21370582, 0x1521013d, 0x0b0b0021, 0x0c0c0112, 0x120c010c, 0x16020b0b, 0x82021630, 0x83fe207f, 0x2f0c8499, 0xb0fee801, 0x80010216, - 0x98fe1602, 0x80fe8001, 0x28360383, 0x10143d01, 0x056b080f, 0x0f086b05, 0xc3fe1410, 0x16020216, 0xaa820801, 0xf8203a83, 0x182c0d83, 0x38381602, - 0x40700216, 0x50506040, 0x28080348, 0x00c00100, 0x00300011, 0x537b1845, 0x26372513, 0x23263127, 0x4418ab82, 0x07231509, 0x5f372734, 0xcd820522, - 0x25070d77, 0x24018001, 0x97183625, 0x08290b4b, 0x29232319, 0x19232329, 0x08ed5538, 0x2808a54e, 0x220b6038, 0x070e0d04, 0x0d761821, 0x77012008, - 0x438708b0, 0x111e7022, 0x1e200082, 0x2c13904c, 0x4f0b10a0, 0x0d04070e, 0x0b0b014e, 0x42428511, 0x25260a4f, 0x70006700, 0x99497900, 0x1415250b, - 0x11230607, 0x25100866, 0x26272211, 0x954c0535, 0x85551805, 0x23152c10, 0x1f060722, 0x013b1601, 0x82013f32, 0x192720ef, 0x4a08e733, 0x327d0d6d, - 0x07de540a, 0x09001725, 0x18010e09, 0x200c645b, 0x06f44bfe, 0x09090e2d, 0x010f0001, 0x01010f60, 0x8380600f, 0x85802005, 0x0e58290b, 0x20070607, - 0x0d900d07, 0x06230582, 0x91580e07, 0x0f012122, 0x5c08c05c, 0xb9420853, 0x0691510b, 0x21058f47, 0x07824001, 0x0f012023, 0x0d207910, 0x0c0d202a, - 0x0b0b300c, 0x0c0c0c30, 0x820a3679, 0x010f2527, 0xfe010f10, 0x08356718, 0x27550c82, 0x82002005, 0x00023c00, 0x02e2ff0e, 0x009f0172, 0x00340018, - 0x33361300, 0x1f323717, 0x06071601, 0x7006010f, 0x272c06e9, 0x05013f26, 0x16171617, 0x1415013f, 0x26241886, 0x013d2627, 0x0806424a, 0x0b053b42, - 0x050bf5f5, 0x0506062a, 0x0e17a30f, 0x170e5353, 0x06050fa3, 0x06012a06, 0x14130c37, 0x0a0a7f16, 0x100fcd10, 0x0a0a10cc, 0x13141580, 0x0102370c, - 0x1f1f0996, 0x0d0e5409, 0x052e050d, 0x138b8b13, 0x0d310682, 0x56540e0d, 0x0808135b, 0x10a72406, 0x33040d0d, 0x29028204, 0xa7100d0d, 0x08080624, - 0x9b595b13, 0x01002d08, 0x002f00a0, 0x00530041, 0x25000065, 0x158ac718, 0x83070621, 0x23143001, 0x04391530, 0x33161706, 0x37363736, 0x6d273316, - 0x332010e1, 0x37201190, 0x5010176e, 0x2f311469, 0x07081105, 0x07010203, 0x2c0a0503, 0x30132326, 0x09664438, 0x0e090922, 0x70180c8c, 0x00290ce8, - 0x2f1c1b01, 0x2f3a3a2f, 0x057f5a2f, 0x45320b82, 0x0e1a2534, 0x01020407, 0x0a0a0701, 0x0f101102, 0xe741b012, 0x58059105, 0x00200c05, 0x3305e745, - 0x00c00180, 0x00360015, 0x07261300, 0x16011706, 0x012f3637, 0x09634418, 0x60172721, 0x062105b6, 0x0f0d4107, 0x0137322b, 0x13271506, 0x02100c0f, - 0x22058350, 0x70023d76, 0x68240594, 0x01196a47, 0x3823e091, 0x18abfe30, 0x220c04c0, 0x8550395c, 0x360223c6, 0xc491eb53, 0x0d011224, 0xa3842a25, - 0x8002e028, 0x1700a001, 0x75754400, 0x06b46a11, 0x36053524, 0x8a4c3637, 0x012b2608, 0x35262722, 0x09456721, 0x37211c82, 0x3fc88232, 0x2133011d, - 0x40013d33, 0x36252401, 0x25360001, 0x121c0124, 0x80fe0111, 0x1c121101, 0x1e02e001, 0x2805a854, 0x200e0909, 0xfe09090e, 0x2d088640, 0x140e0d01, - 0x021e0808, 0x20800120, 0x83442001, 0x06222f07, 0x301e1515, 0x15151e30, 0x21702206, 0x2583030c, 0xbf56b020, 0x14b02b0b, 0x03010d0e, 0x2030210c, - 0x9b723020, 0x001c2f0b, 0x00900070, 0x23062500, 0x31302722, 0x21663134, 0x07062b0b, 0x07221506, 0x06030706, 0x0b821507, 0x82060721, 0x1f1627b4, - 0x16171601, 0x10831615, 0x27262726, 0x27220239, 0x1a85de82, 0x16151726, 0x35373617, 0x08195418, 0x23205082, 0x37234f82, 0x56343522, 0x332305f7, - 0x82363716, 0x26352e34, 0x16330327, 0x3b152317, 0x36233501, 0x09fd5e37, 0x2d822120, 0x3f842720, 0x22470128, 0x2e222525, 0x53183821, 0x022c0863, - 0x01010138, 0x12472c20, 0x18070902, 0x47089283, 0x0213130b, 0x01030915, 0x130a0701, 0x01020f0b, 0x07120202, 0x02021104, 0x1202100e, 0x07080212, - 0x0603061a, 0x14140b06, 0x04091501, 0x0a090101, 0x07070412, 0x04061204, 0x020c0912, 0x1e10d012, 0xc0c0482a, 0x101d2b48, 0x21075f4c, 0x098760fe, - 0x0c0c2c27, 0x3a221101, 0xab531856, 0x562e0807, 0x0101013a, 0x38011021, 0x02061202, 0x0f1c0a03, 0x0c060d0e, 0x06060104, 0x05010202, 0x03050306, - 0x01010602, 0x07121104, 0x04050101, 0x88821206, 0x26820520, 0x0e0f1d26, 0x050c070e, 0x012a2582, 0x05050305, 0x02010102, 0x40831103, 0xfe2c2182, - 0x201927fc, 0x01271920, 0x40140e0d, 0x08847687, 0x30099b41, 0x000d00bc, 0x004c0043, 0x17161300, 0x26351716, 0x25018227, 0x17070607, 0x01823115, - 0x11820d84, 0x11822220, 0x83070621, 0x18162020, 0x2b082273, 0x013f3217, 0x36373633, 0x36373537, 0x8205d370, 0x26440835, 0x16373627, 0xa1070617, - 0x25291c15, 0x11020423, 0x1a16090c, 0x2d2c209f, 0x06122828, 0x09060d12, 0x01010808, 0x1b1c1515, 0x03088a14, 0x290e0503, 0x04063e28, 0x2d444a4c, - 0x021e022d, 0x22640b01, 0x50011617, 0x0807634d, 0x195f013e, 0x1f081711, 0x0612412e, 0x40180803, 0x20011f2f, 0x220f1002, 0x01123822, 0x2222110b, - 0x292a3a30, 0x260b1a19, 0x07080802, 0x02181814, 0x2d023d03, 0x2da0442d, 0x010b0403, 0x22171601, 0x2008f862, 0x05f34300, 0x80004027, 0x3c002e00, - 0x05ff4400, 0x2621d582, 0x05df4f0f, 0x32013b22, 0x3425c282, 0x032b2627, 0x18128222, 0x20080b54, 0x2ae18202, 0x01393025, 0x31303330, 0x82223130, - 0x30022603, 0x0a02030d, 0x9c3d1b0a, 0x0a382426, 0x830e1010, 0x01582430, 0x44010f0f, 0x1c210598, 0x066a5424, 0x085e1a22, 0x29058f6e, 0xc0014002, - 0x46001700, 0xe9434d00, 0x05335707, 0x16171630, 0x010f1417, 0x26012f06, 0x07160135, 0x0b820631, 0x18022b21, 0x20099049, 0x09f84937, 0x06022b28, - 0x33171607, 0x32823637, 0x23310522, 0x2008ad82, 0x15019433, 0x171f2116, 0x1f170909, 0x01151621, 0x0e0e6816, 0xa4011668, 0x0d03020a, 0xa02d247f, - 0x05b443a0, 0x232d2525, 0x47104e2d, 0x4031068a, 0x01010f10, 0x0e77790f, 0xfe0a1010, 0x0101018a, 0x22398473, 0x85160a0a, 0x0c67274b, 0x1f17670c, - 0x1f83fdfe, 0x861a5e21, 0x1c2421c6, 0x09158f18, 0x5d835820, 0x53493020, 0x82402008, 0x005428d7, 0x008a0083, 0x82150100, 0x06072ccd, 0x22232627, - 0x22150607, 0x82311415, 0x143122a3, 0x21b48217, 0x6c451631, 0x06152a06, 0x35272607, 0x23222726, 0x83018326, 0x833320cc, 0x3732381b, 0x35363536, - 0x26273631, 0x2726012f, 0x37362726, 0x36353736, 0x41171637, 0x013f3114, 0x15080a38, 0x11160704, 0x03080c0d, 0x13090301, 0x18131201, 0x0a190203, - 0x1616020b, 0x820a0e02, 0x020127f3, 0x09051402, 0x00820215, 0x0c0f1331, 0x01010307, 0x02130805, 0x03171312, 0x84091903, 0x00012126, 0x082c4441, - 0x010ba82d, 0x15160703, 0x02050504, 0x01010201, 0x04060402, 0x22200d0b, 0x0b02060f, 0x16020216, 0x0104040b, 0x14160901, 0x01010105, 0x82040107, - 0x01032d21, 0x01050504, 0x200c0a04, 0x03050d23, 0xfe212484, 0x2b7341c8, 0x4300142f, 0x00004a00, 0x32333601, 0x1d16011f, 0x08f65401, 0x013f3422, - 0x32323341, 0x08080414, 0x01114205, 0x29291b1b, 0x11011b1b, 0x41240143, 0xb9262c00, 0x19600707, 0xf74c021e, 0x291b2705, 0x60191e02, 0xcfa1b7fe, - 0x2805b343, 0x00800180, 0x00660033, 0x6f421800, 0x031d2208, 0x2cd58216, 0x3736013b, 0x26353736, 0x2f31012f, 0x05554201, 0x021f1424, 0xeb820716, - 0x3d2f0f82, 0x021d2103, 0x06010f14, 0x26272627, 0x6f36023f, 0x0f220529, 0x1f823102, 0x2605ca4d, 0x36013f32, 0x4234033d, 0x072b0590, 0x110b0c50, - 0x010c0b11, 0x1a13641b, 0x2b1af27a, 0x3313e001, 0x010a110e, 0x20100801, 0x2c06bc4d, 0x0120190f, 0x140e0d01, 0x64131a43, 0x2344841c, 0x5801010b, - 0x2605814b, 0x27664038, 0x8313641c, 0x2e4f231e, 0x33891921, 0x0b0b092b, 0x330c0907, 0x50281b13, 0x2a028228, 0x0c33131b, 0x0b0b0709, 0x4e200f09, - 0x10280637, 0x4f2e2119, 0x010d0e14, 0x27235482, 0x85384066, 0x0000374f, 0x0a000200, 0x7602caff, 0x2b00b801, 0x00006000, 0x31353025, 0xe2823534, - 0x022b2723, 0x05125631, 0x2627222c, 0x3631013d, 0x33373637, 0x785b1732, 0x15162505, 0x25010f14, 0x25098163, 0x1716013b, 0xfd181716, 0x0626075f, - 0x15162307, 0x06820706, 0x62232221, 0x3f2208a3, 0x42833501, 0x01200228, 0x28251919, 0xd9841060, 0x14040c32, 0x04701c14, 0x16122804, 0x104e1216, - 0xa0fe4610, 0x07e16e18, 0x18285029, 0x0d010f10, 0x830d140c, 0x030321ed, 0xa0230583, 0x87250201, 0x1b012d29, 0x01c5291b, 0x19250101, 0x48100119, - 0x782ace85, 0x0112111c, 0x10102901, 0x4f82114f, 0x787b4526, 0x0114141f, 0x382d5083, 0x18100f01, 0x040f0f15, 0x0e14140d, 0x06475d0d, 0x10102623, - 0x264d834e, 0x1b292345, 0x8200011b, 0x84022000, 0x01802804, 0x00230080, 0x18000055, 0x6810f773, 0x2b21092d, 0x01741802, 0x19232015, 0x1808c213, - 0x20160a74, 0xdf731801, 0x2ab12110, 0x21074547, 0x7318044c, 0x691816ea, 0x6c200883, 0x16f37318, 0x10ce7318, 0xf566a320, 0xd6731808, 0x181a8811, - 0x8216de73, 0x030029f8, 0xfc01c0ff, 0x4500c001, 0x0e420c82, 0x2ed88305, 0x15331714, 0x27072223, 0x34352633, 0x49373637, 0x33240558, 0x011d0617, - 0x23097a5b, 0x33372734, 0x82050952, 0x15270813, 0x07331514, 0x35012b26, 0x02800133, 0x32322626, 0x01022626, 0x090b206f, 0x0f011d78, 0x23441a10, - 0x11020a24, 0x5b058c06, 0x31080868, 0x11068c05, 0x23240a02, 0x0f101a44, 0x0b09781c, 0x00017020, 0x324e0808, 0x2f01012f, 0x08084e32, 0x08840480, - 0x29293008, 0x2d2d1a1d, 0x9a021029, 0xfa480c0a, 0x0c603308, 0x10029a0a, 0x1a2d2d29, 0x3029291d, 0x04840808, 0x00820080, 0x00000526, 0x7f02c0ff, - 0x112acb82, 0x70006400, 0x8e008200, 0xbd180000, 0x17271011, 0x16171507, 0x6c16011f, 0x2f250585, 0x013d2602, 0x22e18236, 0x72021f16, 0x3225052a, - 0x011d1617, 0x8213823f, 0x151724d4, 0x82020f14, 0x262723fb, 0x12822627, 0x35013f26, 0x010f0607, 0x2b281082, 0x22232201, 0x012f2627, 0x07220282, - 0x4b851737, 0x6d262721, 0x6989129f, 0xb0370122, 0x370fc455, 0x020b3320, 0x07070110, 0x0a0b0d0e, 0x134f0e03, 0x19111001, 0x0a2f1626, 0x0806ce4c, - 0x15300a20, 0x10111926, 0x0e4f1301, 0x0d0b0a03, 0x0207070e, 0x330b020f, 0x3c0b0713, 0x03040404, 0x0082027f, 0x3b040433, 0x8e13070c, 0x06253130, - 0x0c0d0c0b, 0x01040505, 0x076542fe, 0x4e240787, 0x05050430, 0x0b251c82, 0x01312506, 0x251d8f90, 0x0b3341c2, 0x81835b0f, 0x56248983, 0x581a134f, - 0x01247483, 0x4c05471f, 0x2405e747, 0x1f47054c, 0x249b8301, 0x4f131a58, 0x20868256, 0x2a8e8301, 0x330b0f5b, 0x060b1c41, 0x8201021d, 0x1e022800, - 0xe21c0b05, 0x835e3177, 0x82062082, 0x7401218a, 0xfd25ed8f, 0x0b0c0d77, 0x228a8306, 0x4700315e, 0x12300ce7, 0x67005e00, 0x15010000, 0x22012b26, - 0x34353407, 0x29086f76, 0x16333207, 0x33373617, 0xcf181607, 0xd0710b4c, 0x242b8205, 0x013d2627, 0x09c57323, 0x27260122, 0x82083d72, 0x07062337, - 0x38830623, 0x82373621, 0x013b2201, 0x055a6617, 0x01373628, 0x80080890, 0x93461719, 0x05102b07, 0x1c060705, 0x1813202d, 0xf0850d0e, 0x120e2022, - 0x2006c84c, 0x3d078680, 0x1d1d0936, 0x01011313, 0x041d1313, 0x16020216, 0x02021204, 0x1f0a1f12, 0x15132d1f, 0x4d184080, 0x6026088a, 0x01060101, - 0xae460102, 0x01202708, 0x4b012101, 0x45821e17, 0x5a826020, 0x265e1220, 0x08ac5c07, 0x83472921, 0x845a8352, 0x12122843, 0x21212d02, 0x1888050c, - 0x4408884d, 0xff3905ab, 0x01bf01c0, 0x002d00c0, 0x13000038, 0x16311732, 0x37170717, 0x34013d36, 0x2ff2822f, 0x07222326, 0x06010f06, 0x1f14011d, - 0x013f1603, 0x2f21ec82, 0x28048203, 0x07270333, 0x1f161706, 0x08138201, 0x141ee067, 0x4f3c0b15, 0x220c1724, 0x25152612, 0x12261525, 0x3a170c22, - 0x0f0b6e4f, 0x03030c48, 0x524f8b08, 0x1e14150b, 0x08754f16, 0x480c0403, 0x01590b0e, 0x08070760, 0x19285742, 0x15171b22, 0x04071f3b, 0x3b1f0704, - 0x221b1715, 0x79584019, 0x0518040b, 0x99090d0c, 0x07085a57, 0x58c9fe07, 0x0c0c0a81, 0x0b041805, 0x21ae8261, 0x0b550400, 0x003e2608, 0x00700050, - 0x0e335082, 0x56560620, 0xc8c71806, 0x064a5209, 0x83012b21, 0x05a6761a, 0x9e182720, 0x08190b86, 0xa57808a1, 0x114e6708, 0x3017162a, 0x34333037, - 0x30373631, 0x77500382, 0xa0012311, 0x00821702, 0xf5410220, 0x0c012407, 0x482a110c, 0x60200756, 0x2605f741, 0x11090ae3, 0x8e14010d, 0x851c8615, - 0xf6fe2522, 0x010c0c11, 0x52854487, 0x05010926, 0x36110f07, 0x260bc94e, 0x1a1a01c0, 0x87212525, 0x1a162149, 0x4a096e42, 0x0f2305f1, 0x870f160c, - 0x18118545, 0x250c9f57, 0x1917c0fe, 0x3e87161a, 0x2525212b, 0x0a011a1a, 0x11080501, 0x0cce5e17, 0x0a0b0519, 0x2e001028, 0x06010000, 0x14683107, - 0x37362705, 0x16173233, 0x0c190515, 0x17220841, 0xe4471716, 0x059a4d0a, 0x0200022c, 0x0c543636, 0x33331e36, 0xbe822040, 0x8200fe21, 0x3f20258a, - 0x1e1d3332, 0x8506704c, 0x80012a0b, 0x0d3d3d57, 0x1f343a51, 0x2017831f, 0x262a8240, 0x331d1e01, 0x41203f32, 0x6020061b, 0x23590e85, 0x1829200b, - 0x2008fbaa, 0x524e191d, 0x87de180a, 0x11352107, 0x09f25118, 0x37343525, 0x5a173336, 0x22240a62, 0x013d2627, 0x5d831483, 0x41090a5a, 0xa7830526, - 0x20200982, 0x60200382, 0x2010527a, 0x821986c0, 0x4cfe20a0, 0x621806a4, 0x37830719, 0x1e82a020, 0x06831686, 0x42000021, 0x1a270aab, 0x46003400, - 0x18005700, 0x201b0d96, 0x83391927, 0x2706222b, 0x22d78226, 0x4c161732, 0xd45206b9, 0x22223014, 0x5c48393a, 0x2117160e, 0x0e161721, 0x190a0c0b, - 0x291b8239, 0x0a0d0a5d, 0x24241907, 0x08820719, 0x15150e23, 0x1864630e, 0x1910ba21, 0x26238439, 0x0a080b1a, 0x821e1e0d, 0x120a2454, 0x18000012, - 0x20097fc7, 0x05096121, 0x09fd6e18, 0x806a2620, 0x06c34f05, 0xf04e2120, 0x18012007, 0x2011484f, 0xd0d51837, 0x7d012410, 0x4212121f, 0x4d42051f, - 0x1d1e2606, 0x013f3233, 0x052f4340, 0x749da321, 0x40200f8b, 0x240f1263, 0x29291f20, 0x423b8b2f, 0x40200ba1, 0x4c08d043, 0x60200662, 0x87072057, - 0x82002007, 0x00033100, 0x02c0ff07, 0x00c00180, 0x002b0019, 0x01000049, 0x20080f59, 0x22471a05, 0x36112608, 0x33373637, 0x20c19003, 0x06f56825, - 0x013f1625, 0x68012f36, 0x55820ff9, 0x301f2031, 0x02201f2f, 0x0b0d90fe, 0x0603040b, 0x84010d07, 0x6ee020c3, 0x0a47087d, 0xd7fd2107, 0x2e291d83, - 0x1f0e0515, 0x2e15020e, 0x202e820e, 0x20118329, 0x2e09829a, 0xc0012a03, 0x1f3070fe, 0x1f010120, 0x83642e1f, 0x224e8316, 0x83220157, 0x70fe21c8, - 0x200fb747, 0x283383c0, 0x020e4d0d, 0x4d0e0509, 0x2445840d, 0x030c0b0d, 0x8209842a, 0x050024f2, 0x54ff0000, 0x38290507, 0x51003f00, 0x75006300, - 0x060f4900, 0x16021d27, 0x36171617, 0x05567937, 0x3b273423, 0x0c1e6901, 0x36373228, 0x2f34033d, 0xdf702601, 0x05212706, 0x32333523, 0xf018011f, - 0x2391236f, 0x2e05ea66, 0x29221716, 0x22291717, 0x02011617, 0x18022282, 0x36086386, 0x09090e02, 0x1a113b09, 0x12120131, 0x02a0fe1b, 0x04316909, - 0x45393202, 0xfe200b4c, 0x09bc9918, 0xc0431682, 0x21208506, 0x3683a001, 0x1050d022, 0x01235783, 0x83011f1f, 0x82082057, 0x820f8400, 0x08083573, - 0x400e0909, 0x0b0f0a10, 0x30011447, 0x0112121b, 0x3d0340e0, 0x550ced55, 0x54180ce1, 0xcf440c7f, 0x01802707, 0x002100c0, 0xef55002d, 0x16172e0b, - 0x11373637, 0x0f262726, 0x27021d02, 0x2d088235, 0x07272327, 0x16171611, 0x37362117, 0xe7551401, 0x0e57260b, 0x01101110, 0x22048201, 0x83200e60, - 0x4bee22b0, 0x25068307, 0x12250001, 0x4e1889fe, 0x44320b29, 0x0908090a, 0x13000113, 0x400a0909, 0x0680110a, 0xb383ad19, 0xff7b3b23, 0x26078300, - 0x27011d02, 0x83000303, 0xff112497, 0x822e01c0, 0x002a2297, 0x1897822f, 0x6509858f, 0x02210949, 0x06975232, 0x36350126, 0x012f3637, 0x2b31a282, - 0x33371701, 0x0d402317, 0x0e010909, 0x341e1f03, 0x05464130, 0x85505021, 0x34303a07, 0x0e031f1e, 0x0d090901, 0x860518c0, 0xc0019005, 0xa90c0908, - 0x0c2a2937, 0x0b195764, 0x2a0c642b, 0x0ca93729, 0x40800809, 0x0b234140, 0x23001722, 0x820c2341, 0x5e372076, 0x27220729, 0x584c2313, 0x33162305, - 0x03572721, 0x25f9330a, 0x02011616, 0x353d2928, 0x8c0b2627, 0x2e443bf5, 0x7f82022d, 0xf4b10122, 0x330b1741, 0x222212c3, 0x28293d2c, 0x20200102, - 0xc5fe6e32, 0x442e2d02, 0xc021c482, 0x25008200, 0xff000006, 0x018201c0, 0x38297d82, 0x74005100, 0x85007c00, 0xd5c31800, 0x2477820a, 0x1714011d, - 0x09c25e16, 0x3d363727, 0x26273401, 0x05325627, 0xd1552320, 0x83332008, 0x27072123, 0x0a7ae118, 0x3f323333, 0x34353602, 0x0607012f, 0x07063107, - 0x3b161714, 0x0a284c01, 0x737c3320, 0x27262b05, 0x27260706, 0x15070617, 0x07823533, 0x25087c6f, 0x27271373, 0xee823232, 0x09080c25, 0x880c0809, - 0x08092e0d, 0x230c0908, 0x291b1b01, 0x1b1b2920, 0x08a74d01, 0x01069323, 0x23028206, 0x15060615, 0x162c0985, 0x4c160505, 0x011f1e33, 0x620d0809, - 0x3106164c, 0x09080d62, 0x331e1f01, 0x303f3f30, 0x20010f3f, 0x6b180f01, 0x01320881, 0x1a1a2b60, 0x1a1a0101, 0x0909012b, 0x090d400d, 0x10900109, - 0x84103021, 0x567b8272, 0x13200855, 0x7a85708d, 0x2c149a24, 0x6a82392c, 0x2006a745, 0x2c818240, 0x142c2c39, 0x22010122, 0x300f0183, 0x55798430, - 0x002e056c, 0x00000300, 0x7802c0ff, 0x1100c001, 0x5f182500, 0xa8570965, 0x83b4180b, 0x19012013, 0x180db920, 0x212479b4, 0x20197102, 0x40200ec9, - 0x87075f58, 0x73b41807, 0x31012f0f, 0x400e0e80, 0x0e0e1111, 0x0e0e6f2f, 0xf7471111, 0x84802008, 0x002424af, 0x18450036, 0x3312b3b6, 0x3233010f, - 0x14150617, 0x21171617, 0x35262722, 0x37363736, 0x11088c19, 0x07062722, 0x45052077, 0xe020052c, 0x2e398c8f, 0x091c1f5c, 0xfe231414, 0x09080d93, - 0x4b333202, 0x2802ce01, 0x293d3d29, 0xa5751828, 0x0f902208, 0x068c5c01, 0x0f012022, 0x10b35419, 0x1a0a302f, 0x26252d1c, 0x0d080918, 0x0232334b, - 0x83398b40, 0x01502349, 0x8641400f, 0x0f302205, 0x48da8201, 0x6f2006d3, 0x2f24db84, 0x8e007c00, 0x1721db98, 0x06135906, 0x16171623, 0x88e88237, - 0x822520e6, 0x21fc82eb, 0xda821716, 0x17363722, 0x172a1e82, 0x16010f16, 0x17071415, 0x34820716, 0x2f060723, 0x056f5901, 0x59222321, 0x0721052b, - 0x2b078206, 0x3f262726, 0x34352601, 0x37262737, 0x37264182, 0x36011f36, 0xf1733537, 0x8217200c, 0x41352017, 0x11321224, 0x0d170111, 0x06050606, - 0x0c0e0b0a, 0x080e0f10, 0x2f4182fe, 0x01023b07, 0x1111100a, 0x0c010a10, 0x090a190a, 0x0508090b, 0x01190a03, 0x030a1901, 0x0e820805, 0x0c201482, - 0x042e2198, 0x080b0909, 0x0c0b180b, 0x140e0e5c, 0x00820e14, 0x63410583, 0x1e033111, 0x0e0f080f, 0x12121410, 0x02010d0f, 0x0c0e0107, 0x34066e41, - 0x03040b56, 0x1f0b0403, 0x050f0805, 0x0f0f0c08, 0x0f060b10, 0x38008206, 0x100b070e, 0x080c0f0f, 0x05080e06, 0x04030c1e, 0x1e0c0304, 0x050e0805, - 0x27238407, 0x06060e07, 0x060e0607, 0x052b2385, 0x1f05080f, 0x0e0d1586, 0x47150d0e, 0x834207c5, 0x0025240e, 0x18410033, 0x441393ba, 0x33210876, - 0x05825021, 0x2327262c, 0x31232625, 0x17010f22, 0x98443637, 0x010f2b05, 0x3f161706, 0x013f3601, 0x5a410727, 0x334b3f11, 0x08090232, 0x0525010d, - 0x0c050f03, 0x5c4a3128, 0x0f0db401, 0x471d0d10, 0x0e0c0c1d, 0x651806ee, 0x8122088f, 0x18418147, 0x32023111, 0x080d4b33, 0x3c0f0d09, 0x30280d11, - 0x0c0c4402, 0x0d2a3782, 0x0e0c1010, 0x3c0906b5, 0x3e840609, 0xcf903982, 0x4c003b22, 0x44130d61, 0x05211305, 0x068e4523, 0x32313022, 0x26085f54, - 0x27260323, 0x82343736, 0x07e25703, 0x28251d44, 0x13098a61, 0x03042112, 0x0648463e, 0x1f30b12f, 0x1c12011e, 0x201f3026, 0x1f200101, 0xdab71830, - 0x0e1e2721, 0x272e0812, 0x63461c27, 0x00012806, 0x36292001, 0x84152129, 0x4f46833e, 0xc0320893, 0x2500bf01, 0x00003b00, 0x011f3613, 0x0f061716, - 0x2e571501, 0x15272d08, 0x06071617, 0x2722012b, 0x35013f26, 0x3f25cb82, 0x16170301, 0x2226823f, 0x6b141716, 0x352e067e, 0x37363736, 0xc80505db, - 0x12010112, 0xf261014d, 0x10302c06, 0x08040501, 0x05050720, 0x820f1001, 0xc8200818, 0x0c0c535a, 0x24243853, 0x0d090901, 0x090d7efe, 0x24240109, - 0x01bf0138, 0x13042801, 0x390f0513, 0x25077244, 0x4f410a39, 0x00820607, 0x474f0731, 0x04131106, 0x59befe28, 0x0d590a0a, 0x823b2b2b, 0x243c8234, - 0x0d2b2b3b, 0x061f4400, 0x2207fb44, 0x424f0031, 0x3d221f77, 0xc0823401, 0x2507ef67, 0x37343523, 0x191a3336, 0x85421d40, 0x096b2d19, 0x015c4230, - 0x09090e5e, 0x0e090940, 0x49067648, 0x134a06d2, 0x18854207, 0x80120e26, 0x01290303, 0x30213983, 0x21428230, 0x9b183020, 0x5c180d6c, 0x8f460830, - 0x22e38506, 0x42300025, 0x01202789, 0x090d5a18, 0x23246d42, 0x1690d801, 0x08d62819, 0x22218746, 0x5116021a, 0x9f8505d8, 0x01c0012b, 0x002d00c0, - 0x004f0044, 0x09374d00, 0x46070621, 0x3620056a, 0x26241282, 0x34272627, 0x16259382, 0x36171617, 0x05ae5f37, 0x06070623, 0x0545430f, 0x20104e42, - 0x06ee5213, 0x23272634, 0x21202ce0, 0x0d01020d, 0x0e0b0f0f, 0x0b050501, 0x02820b09, 0x0105052d, 0x0f0f0b0e, 0x1104070d, 0x42261e1d, 0xe0350736, - 0x3f272801, 0x440d0d44, 0x0128273f, 0xfe0d0809, 0x09080d7c, 0xab8718a0, 0x01c02709, 0x02271918, 0x3d820b02, 0x0c0d012a, 0x080d0e0f, 0x0c090505, - 0x08245887, 0x13131f08, 0x2607ba42, 0x302f42e2, 0x820d5b0d, 0x2f302202, 0x82458242, 0x8201214d, 0x4605f962, 0x97410b9b, 0x823c2007, 0x710020fb, - 0xf344119e, 0x3332230a, 0x01822726, 0x25012b22, 0x06201482, 0x46058846, 0x272c055a, 0x26012f26, 0x07061707, 0x35070631, 0x11415c19, 0xf6442e20, - 0x84270807, 0x16390303, 0x1a180217, 0x7835015c, 0x0c01010e, 0x361e1d0b, 0x1e360909, 0x010c0b1d, 0x09780e01, 0x15026809, 0x425f3216, 0x22081874, - 0x2e38372c, 0x06304e07, 0x29292110, 0x04172626, 0x26261704, 0x10212929, 0x04043006, 0x2a292856, 0x4b26bc1b, 0x25200d03, 0x210a034b, 0x034b2527, - 0x27ae840d, 0x33161714, 0x25373221, 0x3c0a054b, 0x1a2aeafe, 0x2401011a, 0x24363625, 0xe1990224, 0x022f2f48, 0x010d0809, 0xfe050684, 0x0b084bfb, - 0x210cd924, 0xb9412d22, 0x35232d05, 0x06d5fe78, 0x0d493132, 0xce020908, 0x2107d743, 0x83490179, 0x003c2205, 0x1ed74345, 0x27373635, 0x26013d26, - 0x2237012b, 0x1d063107, 0x011f1401, 0x18323316, 0x2107ee6c, 0x8c18012b, 0xcd4308a8, 0x10843819, 0x18176409, 0x0ece5c1a, 0x6b130909, 0x0f13130f, - 0x6b0e0e49, 0x18531a13, 0x4108fb40, 0x01311856, 0x2117640b, 0x09500721, 0x1a530e09, 0x0e0e6b13, 0x223e8349, 0x1850136b, 0x210d8362, 0xcf84c001, - 0x00003523, 0x532f1913, 0x03372f0f, 0x36372627, 0x16013b37, 0x010f1617, 0x985a3717, 0x032b2106, 0x2107ac49, 0xb9903717, 0x05120f28, 0x14090504, - 0x06820914, 0x28211235, 0x0126263b, 0x980d0909, 0x090d9852, 0x26260109, 0x8221283b, 0x0e7a6770, 0x1f99fe31, 0x01070808, 0x08080701, 0x0aa17c1f, - 0x453d2c2c, 0x3d28054d, 0xa10a2c2c, 0x0800007c, 0x2e08e76e, 0x00230011, 0x004b0036, 0x009b0073, 0x18fe00ec, 0x21132f9d, 0xcd183621, 0x05340f67, - 0x30331716, 0x26313031, 0x26373427, 0x0706012b, 0x36050706, 0x0382d782, 0xd1183520, 0x1f240aca, 0x23272601, 0x22053a55, 0x823d2621, 0x0671490c, - 0x27313524, 0x27822331, 0x3f363737, 0x34353401, 0x23372735, 0x15160722, 0x1f160714, 0x35373601, 0x29498334, 0x16173233, 0x011d1617, 0xcc491716, - 0x252f8206, 0x27361727, 0x47822f26, 0x820f2621, 0x82698304, 0x07062537, 0x27070615, 0x19979519, 0x82151721, 0x32332147, 0x2105435f, 0x73831617, - 0x3637362a, 0x3536012f, 0x07372734, 0x7010c765, 0x70201165, 0x370f7770, 0x130200fe, 0x020229d6, 0x2e2a1815, 0x01011e1e, 0x031a2540, 0x10050405, - 0x370bd551, 0x68041041, 0x01262638, 0x2c011902, 0x03020203, 0x0b0f0f0d, 0x01020607, 0x062c2782, 0x03030c06, 0x15182a94, 0x03040a02, 0x09231b82, - 0x820c110a, 0x0a112200, 0x82278609, 0x1d1e2315, 0x1d825c2d, 0x0502042b, 0x120b0806, 0x0b01110d, 0x3100820a, 0x0d11010b, 0x05090a13, 0x03040205, - 0x02130a04, 0x23851302, 0x0a090523, 0x27239213, 0x120a0304, 0x49120101, 0x8505cc5c, 0x20012105, 0x9707b146, 0x138b2207, 0x4e7a1902, 0x01152808, - 0x05050616, 0x521e1803, 0x3c3e0bef, 0x26011309, 0x02193826, 0x01030808, 0x02070202, 0x09080d02, 0x0a0a0401, 0x080e0e10, 0x00820102, 0x0abc0226, - 0x171a0b0b, 0x012f1c82, 0x0c100301, 0x0202030c, 0x100c0c03, 0x84010103, 0x0504352d, 0x011d1d2c, 0x080b07a4, 0x06080408, 0x0c0a0609, 0x020c1506, - 0x0c240082, 0x0a0c0615, 0x16821082, 0x070b082a, 0x0909090a, 0x0c060b08, 0x07212582, 0x82258607, 0x83032042, 0x050b2325, 0x258b0708, 0x466a1c20, - 0x5be68208, 0x802d0857, 0x3100c001, 0x50003900, 0x6f005800, 0x05cf7e00, 0x54050563, 0x1420051c, 0x2508da63, 0x1716013f, 0x54181411, 0x343407d7, - 0x012b2627, 0x013f3611, 0x32333605, 0x3f23011f, 0x010f0601, 0x2305554d, 0x37361716, 0x35260182, 0x26012f34, 0x1c832527, 0x33363723, 0x05066b27, - 0x4a05f046, 0x608305e1, 0x0d0a0232, 0x04040506, 0x710d0b0c, 0x17222e17, 0x7b010116, 0x88251087, 0x09090806, 0x061f6a0e, 0x0b21a026, 0x0174fe7e, - 0x4b270082, 0x1e024b9a, 0x18064d0f, 0x210949b6, 0xb6184e05, 0x198f0b49, 0x010f1e23, 0x835f8382, 0x25252256, 0x23c48202, 0x29050422, 0x2d241187, - 0xb9fe0305, 0x2c089452, 0x220f2701, 0x0101d32a, 0x01318f8f, 0x52b6181a, 0x82502013, 0x1501211a, 0x01211993, 0x079b531a, 0x41058f54, 0x13290a53, - 0x26312726, 0x36373637, 0x067e5c1f, 0x17151423, 0x05704d16, 0x06012f24, 0x9d671107, 0x057f5007, 0x2f26112f, 0x23260501, 0x33010f22, 0x1f16012f, - 0x9bb71801, 0x83252012, 0x2627241c, 0x92173723, 0x1716221c, 0x0e524176, 0x51417a20, 0x8c012118, 0x18095141, 0x290f9bb7, 0x010180fe, 0x014b9a4b, - 0x198f2d01, 0x266a5141, 0xff000008, 0x53f601c0, 0x442a060f, 0x81005600, 0x9b008600, 0x8345ad00, 0x013b2707, 0x16171621, 0x115c010f, 0x06185c05, - 0x21210687, 0x05025227, 0x23271725, 0x79073315, 0x06230568, 0x67070607, 0x881809ea, 0x01251187, 0x36313736, 0x3556d037, 0x12120100, 0x0120401b, - 0x090a1036, 0x0f9f0604, 0x960f0101, 0x06838412, 0x6a127c22, 0x62300683, 0x0900ff12, 0x12121b57, 0x460c9201, 0x20010252, 0x20081a68, 0x200987e0, - 0x0d3c5590, 0x237b51cf, 0x0c0c2306, 0xd077180f, 0x8360200e, 0x8280206a, 0x01c02400, 0x88140e0d, 0x19088499, 0x200d4706, 0x20c083a0, 0x3942bb01, - 0x00020000, 0x02e8ff00, 0x00a00140, 0x003f001f, 0x37161700, 0x11353631, 0x34472734, 0x15062307, 0x14821411, 0x374b3620, 0x36332106, 0x37231f82, - 0x83161732, 0x3b279213, 0x070708fa, 0x20200f05, 0x24242b2c, 0x07080914, 0x21201909, 0x1d1e1a1e, 0x1d154c15, 0x31080782, 0x09192021, 0x14090807, - 0x2c2b2424, 0x050f2020, 0x18080707, 0x09040502, 0x04077901, 0x010b0b0d, 0x09090901, 0x84fe0a04, 0x02050509, 0x01070709, 0x00820807, 0x07290682, - 0x05050209, 0x0a7c0109, 0x2b208204, 0x0b0b0101, 0xfe07040d, 0x05040987, 0x0022be82, 0xc3820500, 0xc382c020, 0x1800c030, 0x48003100, 0x7a006100, - 0x06130000, 0xf6431415, 0x47cb8305, 0xb68305c2, 0x43250721, 0x168306c6, 0x2005db55, 0x82dd8237, 0x1807201a, 0x660b7497, 0x162005e4, 0x27201682, - 0x502e48b0, 0x05051010, 0x0c0d0c05, 0x1515050c, 0x08820c05, 0x01210e82, 0x890b89db, 0x02cb221f, 0x0513561e, 0x59021e21, 0xb52207b0, 0x3d840b0b, - 0x060c0b26, 0x0c061010, 0x0e820082, 0x89250121, 0x261f890b, 0x2d279401, 0x820d272d, 0x05053029, 0x3a320c06, 0x050c323a, 0x0b060405, 0x8b180d0c, - 0x24248b0c, 0xfe12256c, 0x05da42d7, 0x12290127, 0x12121b25, 0x25788301, 0x1c1c1733, 0xb0820d17, 0x05040528, 0x2929240c, 0x08820c24, 0x1a20ba83, - 0x248b0c8b, 0x3b420020, 0x02c22105, 0x07d35018, 0x200acd46, 0x05fd4803, 0x32371730, 0x012f3637, 0x1601023f, 0x37163133, 0x90493631, 0x31302406, - 0x6a232627, 0x062105cf, 0x05755107, 0x0f161726, 0x14070601, 0x0f820182, 0x02174908, 0x01020a74, 0x0d0d0808, 0x0848900b, 0x090a061f, 0x304f0d03, - 0x0604040a, 0x9048091c, 0x31149dfd, 0x1e343431, 0x0810111d, 0x1f024f07, 0x1e29281f, 0x0b0e0e11, 0x05030401, 0x04050727, 0x05114a04, 0x05010101, - 0x87010805, 0x4a834283, 0x0738703f, 0x03010728, 0x01652e09, 0x24080909, 0xfe703807, 0x0701023d, 0x26181507, 0x021e1e25, 0x380a8265, 0x1a190e16, - 0x0403051e, 0x06031403, 0x14520606, 0x02040319, 0x06070703, 0x2ae78501, 0x014002e0, 0x001100a0, 0x63000030, 0x1120050d, 0x0a5b5b19, 0x2f581320, - 0x32571808, 0x012b2708, 0x26273435, 0xe682012b, 0x1b601522, 0x0c6b5b19, 0x65478020, 0x00022106, 0x21058741, 0x786f0980, 0x05865905, 0x01e0fe23, - 0x83038320, 0xa0fe2133, 0x200c4959, 0x4f2f8520, 0x25240a97, 0x46003700, 0x280c9d6e, 0x06070611, 0x27262307, 0x0b5f5733, 0x15211126, 0x11352326, - 0x200fdd79, 0x05457b0f, 0x21070622, 0x2405ed42, 0x121201a0, 0x9d7c181b, 0x12ef2309, 0x9a826423, 0x75824020, 0xa0fe4024, 0x625c231d, 0x361b210f, - 0x27054f4a, 0x0219f6fe, 0x38262601, 0x200af67f, 0x21bd83e0, 0xb0861927, 0x20012027, 0xff201131, 0x0f645c00, 0xb5492020, 0x19022105, 0xcb624783, - 0x01802d08, 0x002800c0, 0x003f0033, 0x27260100, 0x82090973, 0x331121d7, 0x2508d362, 0x26113315, 0x6c7d012f, 0x081f7607, 0x05073525, 0x68313736, - 0x15240596, 0x02580133, 0x08905419, 0x01167123, 0x10a51860, 0x16013e08, 0x02162071, 0xfe201602, 0x010118c1, 0x50140e0d, 0x14370267, 0x01010d0e, - 0x01506718, 0x201a83a8, 0x263a8318, 0x1b0e442e, 0x1860fbfe, 0x2508b04e, 0x0e1b0501, 0x19832e44, 0xcefe1825, 0x835c1b0f, 0x38ee2232, 0x244183b6, - 0x380f1b5c, 0xefe618ee, 0x00152c0b, 0x00500040, 0x007f0071, 0x6a000092, 0x22220801, 0x5a442707, 0x36052109, 0x2105544c, 0xdc821417, 0x84313021, - 0x02392201, 0x24088206, 0x23060706, 0x85298226, 0x3736222b, 0x20088517, 0x24178215, 0x34313007, 0x222f8235, 0x82220706, 0x84222005, 0x78352024, - 0x372a0857, 0x33343736, 0x3d33021d, 0x0a823601, 0x58831520, 0x0b842d82, 0x83085553, 0x00022d2c, 0x4d2e2501, 0x573d0605, 0x25020c0c, 0x08bf5518, - 0xa1fe3208, 0x272f100f, 0x01261b28, 0x011b0802, 0x3027281b, 0x0303385c, 0x23010125, 0x11103923, 0x2b1602ff, 0x01131921, 0x201e162b, 0x02022501, - 0x5c380101, 0x082d8230, 0x13012523, 0x57573d19, 0x090b0c3d, 0x01020108, 0x19171d20, 0x371a0f13, 0x193d57e0, 0x36360213, 0x36365252, 0x08218302, - 0x1b700127, 0x03061915, 0x01011902, 0x221b1501, 0x01011617, 0x51221716, 0x0e080901, 0x06061c15, 0x0f010f14, 0x1c010908, 0x361c8202, 0x0814141b, - 0x214f0103, 0x0a0e0714, 0x151e230f, 0x0302070b, 0x82151b60, 0x821c2038, 0x150f252e, 0x0a0f231b, 0x19244682, 0x06050605, 0x03261482, 0x1a201a06, - 0x2a820a06, 0x190f1028, 0x7003020d, 0x0b821901, 0x2b846187, 0x260da760, 0x003e002c, 0x18000053, 0x211b95ac, 0xf4181732, 0xb9600f51, 0x088f5b08, - 0x2105d244, 0xcd442726, 0x16152306, 0x78183617, 0xff201a42, 0x4306f143, 0x602005c7, 0x300f0f43, 0x2c2b0240, 0x01010f37, 0x1f20220f, 0x0f0f1918, - 0x23028201, 0x3a3948c0, 0x14ade219, 0x430d1944, 0x10240f9b, 0x022b2c37, 0x0f263f83, 0x1f18190f, 0x55832220, 0x00020036, 0x02c1ff00, 0x00c0017c, - 0x003b0032, 0x07060100, 0x15070631, 0x06310682, 0x16171617, 0x1733013f, 0x2f363716, 0x33323301, 0x830a8630, 0x013d23de, 0x3e523637, 0x27262405, - 0x70272615, 0x0128055c, 0x191925c8, 0x0b9dfe01, 0x2b06a745, 0x0a2f854a, 0x27071415, 0x01010129, 0x2a2e0984, 0x0127263e, 0x06020d51, 0x32171011, - 0x73182a1a, 0xc0270871, 0x25191901, 0x45eefe1d, 0x39260799, 0x0a071471, 0x05845f15, 0x3212662f, 0x08404332, 0x160e0514, 0x011f0e0d, 0x08e85370, - 0xac820020, 0x8345bb82, 0x82472005, 0x3736210c, 0x2006376c, 0x050c7115, 0x22053c4f, 0x4c222326, 0x332505f7, 0x31323130, 0x27d38217, 0x37322133, - 0x30013f36, 0xeb471083, 0x29228605, 0x26270607, 0x3501012f, 0x854e0112, 0x39122706, 0x0d0e0e08, 0x9a4e0859, 0x2d012d08, 0x17121105, 0x12171601, - 0x012d0511, 0x2a08cd4d, 0x0e0d5908, 0x0139080e, 0x85160c56, 0x0b172913, 0x03040d73, 0x0e0a470a, 0xfb272388, 0x0f0f0e18, 0x88fb180e, 0x820e204b, - 0x0403241e, 0x5000730d, 0x15310be7, 0x27001e00, 0x39003000, 0x59004200, 0x00006200, 0xa5e51813, 0x64072014, 0xe782058a, 0x82077b41, 0x201384d8, - 0xb854183f, 0x16272108, 0x51066652, 0x776b05de, 0x16232709, 0x010f0607, 0x3a873715, 0x100cfc26, 0x0cb80c10, 0x07860282, 0x63410420, 0x41982007, - 0x802007a1, 0x60240899, 0x140e0d01, 0x2608204b, 0x03040a77, 0x41a08b11, 0xb42008d9, 0x6684568a, 0x5318d420, 0x5020108b, 0x08886d87, 0xd118b020, - 0x782408f4, 0x010d0e14, 0x15256088, 0x8b111716, 0x94751832, 0x05574508, 0xc001e030, 0x1500a001, 0x39002700, 0x5d004b00, 0x8b476f00, 0x17162508, - 0x36211716, 0x22064b60, 0x77172127, 0x6518101e, 0x1d191136, 0x42771186, 0x17866111, 0x48181220, 0x0120072e, 0xfe210982, 0x06dc5dc0, 0x4305d543, - 0x198c0c97, 0x470c9b66, 0x8061061a, 0x3f50180b, 0x0c7f770f, 0x660cb061, 0xb3770cbe, 0x0ce4610c, 0x00820020, 0x54180520, 0x374108eb, 0x13002709, - 0x36313736, 0x50182137, 0x625c0e59, 0x3233240c, 0x18353637, 0x2011f3e4, 0x2f791837, 0x17142208, 0x18239616, 0x8c14786d, 0x8cfc8ccc, 0x48198cb2, - 0x1a41098a, 0x0c53410b, 0xe0203c8c, 0x8c0bb24d, 0xfb021919, 0x4227200d, 0x13201737, 0x18103742, 0x4114d063, 0xb5490c8b, 0x48c02006, 0x01200723, - 0xff203284, 0x0c676e18, 0x00000023, 0x12874107, 0x81006f22, 0x2511bb49, 0x26272621, 0x8b411127, 0x23239123, 0x31373237, 0x45066971, 0x23910608, - 0x4111d341, 0xe0422eaf, 0x0c0a410c, 0xc941198c, 0x0c1d432f, 0x420ce341, 0x198c0c3a, 0xdf47338c, 0x0d234405, 0x4407ab4b, 0x4344321f, 0x140b4211, - 0x198c8f99, 0xa8152542, 0x065768d9, 0x430aff44, 0x711816c3, 0x2720110b, 0x41101342, 0xe16914ef, 0x058d4e07, 0x430c4943, 0xcb481586, 0x20c98c0d, - 0x2e008200, 0xff100003, 0x01b001f0, 0x00110090, 0x18370023, 0x4c136364, 0x8d57058f, 0x17162605, 0x3f363736, 0x20ab8801, 0x07c94721, 0x10012122, - 0x8f0f026f, 0x0600450f, 0x2009ab6a, 0x08e47001, 0x2008d651, 0x870987c0, 0x0e3a4207, 0x50020021, 0x21220843, 0x95433300, 0x6d33200d, 0xc8180859, - 0x3b230849, 0x41051101, 0x60201057, 0x09194c18, 0x2306fb41, 0x70e0fe70, 0x20059344, 0x7b451840, 0x0a2a4d0d, 0x0121888c, 0x0eb64480, 0x2b05e35c, - 0xbf014002, 0x2a001800, 0x00004000, 0x08f55619, 0x48111521, 0x162406cb, 0x1135033b, 0x23113758, 0x15113337, 0x30095679, 0x27261101, 0x15232726, - 0x0d0c4001, 0x0a10b40f, 0x069f430a, 0x20c04028, 0x0a070740, 0x0082070a, 0x60220583, 0xbc862060, 0xce832020, 0xa001602d, 0x03090910, 0x0d0d042d, - 0x429dfe11, 0x2022051c, 0x1f42c001, 0x4e80200c, 0xfb4408a6, 0x82a48205, 0x100030a6, 0x0002c0ff, 0x3500c001, 0x05250000, 0x7a161706, 0x848205aa, - 0x34272625, 0x8236013f, 0x200b8202, 0x080c8523, 0x35363730, 0x26012f26, 0x010f0627, 0x1d060706, 0x17363701, 0x17010716, 0x0e0e00ff, 0x44391111, - 0x03083f4c, 0x01080a03, 0x03045106, 0x04040717, 0x0b82200b, 0x07702b08, 0x2c011003, 0x40402d06, 0x1324682d, 0x0b0bbe14, 0xffe80608, 0x0e0e1111, - 0x06280139, 0x01010808, 0x18020708, 0x08170202, 0x0b840909, 0x05022236, 0x2d402520, 0x01012c06, 0x2f24682c, 0xbd37332f, 0x0b090909, 0x2d061b46, - 0xa0014002, 0x59005000, 0x16010000, 0xfc7c3117, 0x208f8206, 0x09fe4117, 0x012f2223, 0x22b38236, 0x82222326, 0x21d083a6, 0x39520139, 0x82162005, - 0x872a82ad, 0x21232229, 0x4c268226, 0x0583051a, 0xca661520, 0x20702d08, 0x55041616, 0x010c0b14, 0x335c901e, 0x3e061a42, 0x096e0a0d, 0x21150607, - 0x4a202929, 0x0c0b090a, 0x1606054a, 0x12131919, 0x040e0203, 0x855a2505, 0xe0fe2f25, 0x0112121b, 0x41262601, 0x16065241, 0x76491e15, 0x01a02d08, - 0x1a201414, 0x150f1006, 0x5c531222, 0x3a05a141, 0x1c1b6f09, 0x1e1f161c, 0x0a0c0b46, 0x04054709, 0x1203020e, 0x16191913, 0x85250506, 0x12012a20, - 0x45541b12, 0x082c2c45, 0x1855821d, 0x18081556, 0x220c8345, 0x18550048, 0x210c7d79, 0xe6823315, 0x8206f87d, 0x013d2adf, 0x36372627, 0x1d16011f, - 0x08584e04, 0x26273425, 0x1815012b, 0x8311d342, 0x36332935, 0x27263537, 0x20070623, 0xa0207c83, 0x0832cd83, 0x01191925, 0x02161602, 0x200e0d15, - 0x10100d0d, 0xcc82134d, 0x141f1f28, 0x0b0c0114, 0xf8870811, 0x58180785, 0x3d430a7a, 0x01c03b09, 0x20251919, 0x16020216, 0x1110069a, 0x10204017, - 0x4d0d0d10, 0x180d1b13, 0xcc769820, 0x11202407, 0x69900c0b, 0x01230b78, 0x18601080, 0x4408c6c6, 0x002c05ab, 0x4002e0ff, 0x7e00a001, 0xaa009400, - 0x0621f582, 0x063c580f, 0x312ff282, 0x31163130, 0x30033933, 0x31070607, 0x82171637, 0x31172ac8, 0x39262726, 0x37303304, 0x21038230, 0x01833736, - 0x27171638, 0x0f222726, 0x26270601, 0x3336013f, 0x1f161732, 0x14171601, 0x9051031d, 0x2f262306, 0x41822301, 0x23070622, 0x27253b82, 0x3734023d, - 0x20278234, 0x82298237, 0x06072727, 0x2326012f, 0x6e821507, 0x32331726, 0x013f3637, 0x2405614e, 0x07063130, 0x08c05c05, 0x17233022, 0x39083876, - 0x26051377, 0x21322f20, 0x02040910, 0x01010201, 0x09060401, 0x09052805, 0x0b820406, 0x56080282, 0x11090402, 0x202f3220, 0x04130526, 0x0a151f05, - 0x0d1f1407, 0x13141a0e, 0x01032c06, 0x301f2001, 0x201f2e2c, 0x01260103, 0x2e1f2003, 0x201f302c, 0x2c030101, 0x1a141306, 0x141f0d0e, 0x1f150a07, - 0x01370405, 0x2c140e0d, 0x010e0d14, 0x1b040403, 0x041b2524, 0x82c00104, 0x24252909, 0x0103041b, 0x0d0e0103, 0x0e2c1d82, 0x7001010d, 0x0ba11201, - 0x050c0201, 0x022a7a84, 0x050d0902, 0x0d050808, 0x96830209, 0x05040128, 0x0a02020c, 0x208212a1, 0x15140730, 0x10050d0a, 0x0bbc190f, 0x0703030b, - 0x77841029, 0x2e1d1e27, 0x1d2e1616, 0x3596841e, 0x03072910, 0xbc0b0b03, 0x05100f19, 0x13150a0d, 0xf5020c06, 0x6582142b, 0x130d0d26, 0x0a01012e, - 0x02220283, 0x09862b2a, 0x132e0125, 0x83010c0d, 0x02002ba7, 0xe0ff0000, 0x9f01c001, 0x636c1900, 0x06055a05, 0x16051726, 0x05070617, 0x0878ac18, - 0x4f012721, 0x6b1808d6, 0x2121087c, 0x07365534, 0x13400129, 0xfe130101, 0x750c0dc0, 0xf6230563, 0x426c01f6, 0xfe20057e, 0x27066546, 0x62018001, - 0x0d0c0b06, 0x80283183, 0x09151509, 0x05050480, 0x0b250e82, 0xfe626206, 0x0b6642be, 0x03000025, 0x5aff0400, 0x3024059f, 0x53003900, 0x0ffd4518, - 0x43012b21, 0x14370652, 0x022b0607, 0x26022f22, 0x3726012f, 0x011f3233, 0x22233533, 0x82352627, 0x05b44507, 0x15161728, 0x010f1431, 0xb2890706, - 0x64423220, 0x82802005, 0x86012071, 0x20a0259a, 0x022d2d44, 0xa0301082, 0x560a1050, 0x17040f91, 0x101b1202, 0xa0d0260a, 0x012fc282, 0x1b018000, - 0xf720291b, 0x26040909, 0x85e8fe35, 0x180128d5, 0x0a03131b, 0x180a0d0d, 0x8207bd4f, 0x18402016, 0x2a079984, 0x063a730d, 0x02125c10, 0x8240330d, - 0xe0fe2854, 0x1b1b2920, 0x83698001, 0x2404212e, 0x2306da72, 0x09090413, 0x002de782, 0x80022000, 0x1f006001, 0x3f002f00, 0x068d6200, 0x011f162e, - 0x16373637, 0x15171617, 0x07060706, 0x5118dd82, 0x272008fc, 0x2005ee5c, 0x251c8315, 0x33013f36, 0xb34e1617, 0x0f223109, 0x29020001, 0x2b3c3e28, - 0x3c2b4848, 0x0229283e, 0x01300d8d, 0x22184813, 0x01171722, 0x22171701, 0x5a481822, 0xcf200e8d, 0x01253183, 0x2a48482a, 0x20378301, 0x230e841e, - 0x29494929, 0x0f210e85, 0x20388548, 0x2241851e, 0x83184848, 0x220d8446, 0x46004818, 0x33200b0b, 0x08a74018, 0x32333722, 0x0870e418, 0x18061c77, - 0x820997e4, 0x373623c3, 0x22821635, 0xce820985, 0x08082451, 0x19182327, 0x07381b19, 0x0b075507, 0x2401010a, 0x1b383625, 0x2c181919, 0x36365237, - 0x1a190102, 0x1616022c, 0x08191702, 0x22078308, 0x459d1013, 0x3c2107d3, 0x382e830e, 0x0403097a, 0x2536f00b, 0x0a010124, 0x011b0e0b, 0x52363602, - 0x192c2b36, 0x23268342, 0x2901062e, 0x33230783, 0x518c0a07, 0x03430826, 0x3601330e, 0x27363137, 0x07262726, 0x16070605, 0x37160517, 0x0f823736, - 0x37012f23, 0x89711801, 0x8c012112, 0x27070443, 0x0113c0fe, 0x40011301, 0x21090443, 0xb01894fe, 0xfe200d08, 0x21290443, 0x00820005, 0x0140022d, - 0x001f0080, 0x005b0048, 0x1881006e, 0x250c5d93, 0x07060706, 0x4f192115, 0x012e0ebb, 0x17141521, 0x35013b16, 0x17163736, 0x06943315, 0x36373229, - 0x1525013d, 0x18060714, 0x23081d84, 0x16173233, 0x133dc318, 0x25913320, 0x2605cb4b, 0x01011509, 0x82010915, 0x3209869e, 0x1b121201, 0x000240fe, - 0x0909c0fd, 0x0f01300e, 0x8d60010f, 0x0e302404, 0x49fe0909, 0x0c990cb2, 0x83800121, 0x0b072a4e, 0x1a1a0e06, 0x470b060e, 0x27098747, 0x12121b07, - 0x40e0fe01, 0x20254b82, 0x0f01010f, 0x82059120, 0x5040207e, 0x57180757, 0x16830a15, 0x8d058a41, 0x00002114, 0x09534718, 0x55003422, 0x330a3b65, - 0x3736012f, 0x06272635, 0x14011d07, 0x23352707, 0x013b3627, 0x15348318, 0x01271523, 0x05745627, 0x06273528, 0x1716011d, 0x80181716, 0x36210daa, - 0x0a6b6537, 0x01179f2e, 0x02161602, 0x2339120e, 0x50500705, 0x0586c683, 0x1b1b0132, 0x1b1b2929, 0x6a01b901, 0x3614122b, 0x2f012425, 0x10de5c19, - 0x651a1f21, 0x5c190b8e, 0x182807e0, 0x0e1b2010, 0x20051b2d, 0x103b8318, 0xfe913626, 0x01062269, 0x15eb5c19, 0x000e0428, 0x00060000, 0xc347ff00, - 0x001e2e05, 0x00380030, 0x00470040, 0x1300004e, 0x21c78211, 0xe15b3637, 0x25058205, 0x26272611, 0x01830607, 0x52180784, 0x233211f0, 0x16311716, - 0x37352317, 0x06310706, 0x05333507, 0x3d832315, 0x15332722, 0x272d3982, 0x411a0100, 0x3c414142, 0x123b3c3c, 0x21f3820f, 0x0e82411a, 0x13210d83, - 0x200d820e, 0x0f976320, 0x121be02d, 0x40400112, 0x1b121201, 0x85800140, 0x05794207, 0xcbfe4f32, 0x08160c1e, 0x09111208, 0x0a040f08, 0x35011309, - 0x08270f86, 0x09040f09, 0x56ef130a, 0x44840f1c, 0x5084d020, 0x4384a020, 0x4f84d020, 0x5b50fa82, 0x40022d05, 0x1e00a001, 0x2c002500, 0x3c003400, - 0x6420fb82, 0x8218fda0, 0x134145bc, 0x1880201c, 0x2017c482, 0x20df8f80, 0xc4821884, 0x20264113, 0x40d1fe27, 0x1b121201, 0x266684c0, 0x12121b80, - 0x83c04001, 0x60402210, 0x06aa6c30, 0x82180788, 0x042111d0, 0x079b4400, 0x20001524, 0x5d182b00, 0x262514d9, 0x21272627, 0x09d16a17, 0x3736072b, - 0x06171621, 0x27262107, 0x26158225, 0x23070615, 0x18352726, 0x520be77f, 0xfe270809, 0x0fa03040, 0x840f0101, 0x01102404, 0x8360010f, 0x83fe200d, - 0x5018250e, 0x16020216, 0x25440484, 0x05997405, 0x2009404e, 0x07ef69a0, 0x95707020, 0x0f012105, 0x0a42e319, 0x0020b582, 0x8220bb8f, 0x8d17d352, - 0x20c886bb, 0x0d46182f, 0x82222007, 0x072624de, 0x18141506, 0x2108f4ae, 0x23823033, 0x395f1620, 0x82072005, 0x20dd82de, 0x052a5f26, 0x17161724, - 0xfa5f0139, 0x34372306, 0x46183427, 0x2622070d, 0x01823637, 0x37363525, 0x53401716, 0x05410805, 0xe0d0210a, 0x0484c383, 0x0f011022, 0x04820784, - 0x0c5c3308, 0x06031109, 0x07070412, 0x09091304, 0x15090301, 0x13140101, 0x0306060b, 0x08071a06, 0x02121202, 0x01030e10, 0x12070411, 0x01010403, - 0x0a130a0e, 0x25830107, 0x13130229, 0x0306070b, 0x84081807, 0x153e4124, 0x08ccc618, 0x2d083e41, 0x02030690, 0x03111206, 0x02010102, 0x52830505, - 0x06060233, 0x0e070c05, 0x0a1d0f0e, 0x12050203, 0x06120202, 0x22698205, 0x82111207, 0x05013405, 0x03050302, 0x02010506, 0x01060602, 0x0d060c04, - 0x821c0f0e, 0x12062127, 0x00202782, 0x012b0082, 0xe1ff1000, 0x9f01b001, 0x4e003f00, 0x0f210531, 0x09294e01, 0x08097618, 0x44012b21, 0x2723056b, - 0x7b013f26, 0x372009ac, 0x362b0a8a, 0x01173637, 0x03020b72, 0x453f2a07, 0x692205da, 0x0885a940, 0x0841d425, 0x8b0c0c0d, 0x406a221a, 0x211a8baa, - 0x20839b01, 0x754a3e20, 0x061b6205, 0x2f836220, 0x87661696, 0x01003708, 0x002e00c0, 0x00520040, 0x00760064, 0x39142500, 0x06151401, 0x39690607, - 0x17142305, 0x03841716, 0x2220bb82, 0x200c865c, 0x22198216, 0x56051716, 0x3d200f04, 0x5109b851, 0x285607b7, 0x11fd6311, 0x01000235, 0x621c1415, - 0x010d0e14, 0x01070301, 0x0e0f020a, 0x5a050618, 0x704711f0, 0x0500410d, 0x76520585, 0x0c627e0c, 0x0101c035, 0x11111b01, 0x140e0d01, 0x0e0e0505, - 0x16140101, 0x19121218, 0x250c661e, 0x3a222201, 0xa7544839, 0x0c5f630c, 0x198c4f8c, 0x8f530020, 0x0021220d, 0x197d433b, 0x22083f78, 0x48231715, - 0x022d0887, 0x3b363734, 0x16171601, 0x06070617, 0x14585407, 0x55788020, 0x30302206, 0x05df4130, 0x110b0c23, 0x07e65b48, 0x52154e54, 0x4021063b, - 0x24d38640, 0x0b117840, 0x0767450c, 0x0120b382, 0x20082347, 0x0ed94f3f, 0x0f66a918, 0x26272624, 0xae823527, 0x18171521, 0x2009b24d, 0x22148423, - 0x85273534, 0x01002a08, 0x60140e0d, 0x010d0e14, 0x880988c0, 0x50c02108, 0x84088253, 0x7b0e8608, 0x1020087e, 0x88083577, 0x10102427, 0x8d6b0203, - 0x44108749, 0xff2d06ef, 0x018001c0, 0x002600c0, 0x003c0031, 0x23c18347, 0x3637011f, 0x17280387, 0x06111716, 0x012f0607, 0xc4820389, 0x37361123, - 0x09cf6f17, 0x69180720, 0x07210810, 0x26158937, 0x280c0e0e, 0x85101028, 0x820c2003, 0x908582d0, 0x0f522511, 0xc00f0101, 0x10200484, 0x0f220887, - 0x15891001, 0x06be0127, 0x0c22220a, 0x2703850c, 0x0f070509, 0x070f30fe, 0x0a28138b, 0x010f0706, 0x8e070fd0, 0x2007db45, 0x07db45d0, 0x083a5318, - 0x360b1f5c, 0x002b0020, 0x00410036, 0x00650053, 0x00800072, 0x17320100, 0x611d1631, 0x151905b3, 0x362a0a3c, 0x33373637, 0x36373435, 0xd3890333, - 0x0a943320, 0xb8432720, 0x4335200f, 0x25221194, 0xe0411533, 0x82362005, 0x16212157, 0xbe4d7282, 0x35232805, 0x0e400133, 0x45800909, 0x935907e2, - 0x09802409, 0x83700e09, 0x05c74acb, 0x0a946020, 0x0d5d8820, 0x0b112308, 0x2b5d980c, 0x21158208, 0x0e4290fe, 0x20022209, 0x05804114, 0x10101424, - 0x5782c001, 0x12014024, 0xfc521b12, 0x21098206, 0x7e832001, 0xfe208783, 0x4108e345, 0x0787074e, 0x5c8b8020, 0x768b2820, 0xaa424820, 0x00003613, - 0xff040001, 0x01fc01c4, 0x003100bc, 0x23061700, 0x012f2231, 0x0e591826, 0x05245f18, 0x3306b851, 0x01071415, 0x13130fb2, 0x0e0e5c0f, 0x0b0b3033, - 0x2a300909, 0x0a210682, 0x20068e0a, 0x25238633, 0x0e2ec4fe, 0x0c835c0e, 0x0a303325, 0x820b0b0a, 0x20069226, 0x21238633, 0x9b82c4fe, 0xc0ff0028, - 0xc0010002, 0x9b824900, 0x3117162b, 0x21013b16, 0x37363736, 0x051a5035, 0x0b9f8419, 0xae472320, 0x198f1805, 0x616f1813, 0x15112d09, 0x31301514, - 0x0d0e0200, 0x40016013, 0x08ffdb18, 0x60180120, 0xcf4b0c55, 0x430b850b, 0x15230899, 0x880c0d12, 0x8c27920c, 0x605d1847, 0xc0fe2508, 0x00020360, - 0x01200082, 0x40290382, 0x40018002, 0x00003800, 0x5dcf8337, 0xce9a05b8, 0x0686d586, 0x06070625, 0x83001507, 0x092b4281, 0xbd8d4020, 0xdf830e8a, - 0x20087544, 0xb87018a0, 0x89b89109, 0x86a020e6, 0xc0ff26a7, 0xc0010001, 0x8beb1800, 0x050a4508, 0x4d05fb6a, 0x33200519, 0xea53068e, 0x11272107, - 0x6f9ca084, 0x2084c183, 0x094c4818, 0xc6923020, 0x21084141, 0x2371a001, 0x0019340a, 0x00330026, 0x004d0040, 0x006c005a, 0x0100007b, 0x82020f26, - 0x7f15207d, 0x362b073a, 0x27341137, 0x03022f26, 0x51313736, 0x23220683, 0xb04a2735, 0x1905200b, 0x200bfc1c, 0x23199805, 0x31070627, 0x0d5cf518, - 0x280eab7b, 0x12125201, 0x0a117d8b, 0x0992410b, 0x110a0b25, 0x65528b7d, 0x8021076c, 0x051644a0, 0x01010f27, 0x0190010f, 0x210d870f, 0x179570fe, - 0x6c185820, 0x58200ff8, 0x20084f44, 0x2a418210, 0x5d0a0abb, 0x0d0d041c, 0x42ddfe11, 0x012907bc, 0x0d0d1123, 0xfe5d1c04, 0x08a86565, 0x18e06021, - 0x2009fd8f, 0x183f8310, 0x8a10fabd, 0x18a02015, 0x200fdd6d, 0x21a58630, 0x2582010f, 0x5b4f0020, 0x00200806, 0x1300c001, 0x00002700, 0x010f2601, - 0x07011d06, 0x17161716, 0x3f323337, 0x012f3601, 0x15060701, 0x080afa73, 0x2326273e, 0xd1010722, 0x0968110f, 0x09090a56, 0x0c365606, 0x0d0b5007, - 0x70a8fe28, 0x0a400909, 0x700a0d0d, 0x1f181616, 0xb901181f, 0x07500b0d, 0x0656360c, 0x560b0809, 0x0f116809, 0x70eefe28, 0x40232083, 0x83700909, - 0x16162121, 0x260a6b78, 0x002a001d, 0x82550048, 0x07062283, 0x20028431, 0x05924915, 0x32331623, 0x07247537, 0x05232633, 0x16311716, 0x23353317, - 0x07060706, 0x31373213, 0x072f7336, 0x12842620, 0x23201682, 0x25203886, 0x42082a8b, 0x2521a001, 0x011a1a25, 0x14181923, 0x23181914, 0x1f29291e, - 0x2401021f, 0x31343323, 0x1201e0fe, 0x20201b12, 0x0112121b, 0x333431a0, 0x02012423, 0x29291f1f, 0x1918231e, 0x19181414, 0x1a1a0123, 0x8b212525, - 0xc0013a26, 0x08080701, 0x01800107, 0x0d0c0a09, 0x08070a09, 0x28281415, 0x0f101c1d, 0x20458360, 0x29508380, 0x100f60fe, 0x28281d1c, 0x28821514, - 0x80202685, 0x23893585, 0x6f490020, 0x05074506, 0x48003627, 0x00005a00, 0x20d38925, 0x82cf8227, 0x171627e8, 0x31301716, 0xd9843114, 0x280e3452, - 0x37363736, 0x30353035, 0x10cf4231, 0x69011f21, 0x07260f16, 0x1a2ca001, 0x1e4a0119, 0x068d4a05, 0x2c1a1926, 0x140e0d01, 0x2009a143, 0x05f94830, - 0x1b121222, 0x84077342, 0x830c8bd2, 0x1f3134de, 0x3f362d2d, 0x1e1d3332, 0x1d1e0101, 0x353f3233, 0x451f2d2e, 0x30250576, 0x0f01010f, 0x83058530, - 0x0140225b, 0x183d8f8f, 0x6810c445, 0x0b2f0b5f, 0x22001000, 0x54003d00, 0x00005d00, 0x43021f13, 0x172507a5, 0x23153327, 0x066e5917, 0xfc432720, - 0x07062305, 0x5a180727, 0x16261571, 0x13171617, 0x06830706, 0x04833320, 0x27053079, 0x26272623, 0x23270727, 0x3105967f, 0x5c604f64, 0x36523f30, - 0x23010236, 0x335320e9, 0xba832320, 0x867c8321, 0x30222213, 0x11b34b6d, 0x20053d41, 0x23288210, 0x20140e0d, 0x8706e848, 0x602a220a, 0x38118316, - 0x4f2f0176, 0x01225d60, 0x52363602, 0x208f303f, 0x0f012020, 0x7c010f40, 0x21118623, 0x8341c02f, 0x2222240c, 0x8648393a, 0xbc861b69, 0x830f2007, - 0x0e142447, 0x8201010d, 0x60e02109, 0x00383f84, 0xff0f0002, 0x013002c0, 0x001f00c0, 0x0100003e, 0x21232627, 0x06010f22, 0x1623ea82, 0x18373633, - 0x3007b345, 0x37321716, 0x27363736, 0x23063107, 0x21152722, 0x22068335, 0x52272631, 0x212005fb, 0x3905fb66, 0x24020706, 0xfe10083a, 0x3a08109c, - 0x2a100f15, 0x19290606, 0x19282918, 0x03822819, 0x06062935, 0x150f102a, 0x12090830, 0x11c0fe11, 0x06080813, 0x64120106, 0x0b82071c, 0x0d5b582c, - 0x25255b0d, 0x01010825, 0x03891c1c, 0x12820820, 0x05019729, 0x01058585, 0x4b830101, 0x402308fe, 0x42010183, 0x802009eb, 0x1428bf82, 0x33002700, - 0x21130000, 0xe173a982, 0x06212105, 0x2106f873, 0x50181733, 0x3d280a46, 0x23152301, 0x11212335, 0x35079563, 0x02252311, 0x0b0a1036, 0x1a0e4c06, - 0x0e1a74fe, 0x0a0b064c, 0x5e651b10, 0xc0402d08, 0x09c00140, 0x090e0e09, 0x00014009, 0x0b241a82, 0x01147209, 0x092f2f1b, 0x49145021, 0x50240685, - 0xffa0a0a0, 0x8706b568, 0x0000279b, 0x80010002, 0x9b821300, 0xd3583b20, 0x21232c0f, 0x35262722, 0x31373417, 0x5c213336, 0x05200c08, 0x23cba919, - 0xce584020, 0x80fe210a, 0x01219d82, 0x84118280, 0x18198709, 0x4e07ca4a, 0x0d4e0600, 0x370c8b0c, 0x06000000, 0xd0ff1000, 0xb001f001, 0xa3001a00, - 0xad00a800, 0xb700b200, 0x1c9b4a18, 0x37170329, 0x0f161736, 0x5c371701, 0x0d8605dc, 0x06071624, 0x3419012f, 0x29870e00, 0x06271b85, 0x013f2627, - 0x99170727, 0xa8b3180d, 0x3637220e, 0xb6b3181f, 0x8a0d840a, 0x82172079, 0x0727216c, 0x0f252183, 0x2f371702, 0x2d0e8202, 0x36430001, 0x01202036, - 0x36202001, 0x0b8b4336, 0x15151530, 0x0a0a0b0b, 0x10212d14, 0x0b0b0a0a, 0x0d830911, 0x0b850820, 0x852d2121, 0x8314201b, 0x2d152319, 0x1b831121, - 0x83081021, 0x8509200d, 0x2d21210b, 0x43c21b85, 0x822d1821, 0x82442000, 0x172d2103, 0x30200488, 0xbb86af91, 0xe414a321, 0x211c4194, 0xb6926f20, - 0x0003003b, 0x02e0ff00, 0x00a00100, 0x00390008, 0x1300005c, 0x26353315, 0x0f062327, 0x0a2c4f01, 0x1f323328, 0x011d1601, 0x8e6a3523, 0x270a8f06, - 0x3b36013f, 0x33350301, 0x09c3b318, 0x1e750a8c, 0x8e971908, 0x141c2410, 0x580e340e, 0x0687065a, 0x14221182, 0x148e801c, 0x12120124, 0x934dfe1b, - 0x19682005, 0x8310a897, 0x104c2131, 0x20051543, 0x20078710, 0x225a834c, 0x8f50e0fe, 0x46502017, 0x0024077d, 0xff000001, 0x2005b75c, 0x18f78233, - 0x840bf147, 0x05ab71ef, 0x012f0623, 0x08ef4a15, 0x4f6b3520, 0x37262205, 0x3af18436, 0x09050cd4, 0x21211819, 0x040a1918, 0x1b220d0c, 0x01010a7f, - 0x0c093809, 0x83340a0d, 0x83c020af, 0x0b332369, 0x13820d0c, 0x0b01012b, 0x0d221b7e, 0x0c01c001, 0x058b721e, 0x010c1e29, 0x0e096916, 0x82400a0d, - 0x2b082235, 0x249687fa, 0x01082bfa, 0x26148201, 0x69090e0d, 0x83030016, 0x3f0129a3, 0x1100c001, 0x5f004d00, 0x139b4018, 0x23060726, 0x07152231, - 0x18055362, 0x5f087d54, 0x0220059a, 0x2506e154, 0x2f26012f, 0x54180701, 0x3f260dcb, 0x16370701, 0x3884011f, 0x2305a853, 0x0001013f, 0x080f7564, - 0x01018149, 0x091a0801, 0x0b0c0403, 0x05060d0d, 0x33130204, 0x22231f08, 0x0f0e1b1b, 0x04040c15, 0x0c0c0705, 0x07101b0c, 0x08321409, 0x07031703, - 0x0b0e0d06, 0x4716040a, 0x39100816, 0x28040319, 0x3d07040e, 0x0a0d0d0a, 0x4c3c0909, 0x75450900, 0x01972a07, 0x1a0c0301, 0x06050d08, 0x295e8304, - 0x03183508, 0x1f13120e, 0x54830a25, 0x0e285c83, 0x41171008, 0x5c0c0936, 0x0866d918, 0x211a4e2e, 0x043ec740, 0x09242d04, 0x09093e07, 0x3b205a83, - 0x0d97b118, 0x35002322, 0x2911a552, 0x26272635, 0x27262127, 0x62463736, 0x26272405, 0x69012123, 0xfd4f1a05, 0x0f902609, 0x010f0101, 0x055c4270, - 0x4580fe21, 0x9f520d96, 0x1be0230f, 0x2e821212, 0x355e0f20, 0x18fe2006, 0x4a0c909c, 0x002a06df, 0x1a00c001, 0x49003000, 0x976f6100, 0x0605291c, - 0x37163117, 0x17323336, 0x8e630582, 0x06072205, 0x06fa6807, 0x9d4f3520, 0x07263905, 0x06011f06, 0x16171607, 0x27343733, 0x26273637, 0x1706010f, - 0x14013f16, 0x6f078943, 0xfe361aa5, 0x070703a1, 0x2828220a, 0x07070a22, 0x19190d03, 0x19192020, 0xe9820f0d, 0x060e0b2c, 0x0e600e04, 0x1f0d0306, - 0xcb820109, 0x09c00d34, 0x06040e1e, 0x030d600e, 0x090c0e06, 0x090d0e09, 0xb16f0109, 0x0a7e2c18, 0x0f030505, 0x0505030f, 0x82111c0a, 0x6e1c2100, - 0x023a3182, 0x0e040302, 0x0320060e, 0x0a060e0d, 0x090e0e09, 0x090e2009, 0x0d0e060a, 0x04832003, 0x03020422, 0x41056141, 0x13250dcb, 0x00003600, - 0x12c55d13, 0x13871120, 0x73023b21, 0x0566092a, 0x11232308, 0x1b541121, 0x74012006, 0xfe200684, 0x2007485c, 0x07285440, 0x11864020, 0x0140fe22, - 0x550c5e55, 0x6d180785, 0x8944086c, 0x20012b06, 0x0000e0fe, 0xff000009, 0x018201c0, 0x00200031, 0x003b002d, 0x00470041, 0x005f0059, 0x82730065, - 0x37362fa9, 0x21373631, 0x16173233, 0x07141115, 0x23642306, 0x012b3807, 0x26272621, 0x14131127, 0x33163117, 0x22213521, 0x37150607, 0x82062706, - 0x27262914, 0x06070633, 0x37363707, 0x35290782, 0x26231716, 0x27261727, 0x09795f31, 0x1a823620, 0x16330722, 0x37231482, 0x83373623, 0x36172329, - 0x01821617, 0x36220d82, 0xcf830037, 0x56180120, 0x44410723, 0x2ba98205, 0x011b1b29, 0x0e090940, 0x00ff0001, 0xb73a1482, 0x05020205, 0x020a0606, - 0x060a033f, 0x030b2a05, 0x2424091f, 0x0b031f09, 0x4018014e, 0xdf200ec0, 0x19821482, 0x0b221f82, 0x35893903, 0x06060924, 0x54836001, 0xfe215382, - 0x6d5182c0, 0x7d84069b, 0x11884020, 0x01058437, 0x0d060501, 0x16232316, 0x1c0a060d, 0xa4172b26, 0x1c262b17, 0xe84a1852, 0x26102a0f, 0x202b171c, - 0x261c172b, 0x72318b4c, 0x012b06bb, 0x00bf0180, 0x005a0048, 0x548a0072, 0x162605ff, 0x1f323733, 0x02821601, 0x14071522, 0x0f250582, 0x17150601, - 0x82058214, 0x27232202, 0x25058222, 0x2326012f, 0x05822207, 0x35220282, 0x05823437, 0x36013f23, 0x07826735, 0x32173324, 0x5641013f, 0x37052811, - 0x16171532, 0x82303733, 0x07172105, 0x29065655, 0x17372627, 0x013f3627, 0x34833134, 0x48333421, 0x220807ec, 0xae272623, 0x09121212, 0x0a16150b, - 0x1409050a, 0x0c060212, 0x060c0b0b, 0x09131302, 0x150a0a05, 0x82090b16, 0x241f881e, 0x06021313, 0x8700820b, 0x1516211f, 0x62201f82, 0x080ffc7f, - 0x2bf1fe2c, 0x29150901, 0x08081216, 0x090a0425, 0x09382105, 0xf8030506, 0x12080825, 0x09152916, 0x05032b01, 0x21380906, 0x040a0905, 0x4d8fba01, - 0xba208daf, 0x080fb85d, 0x0167fa22, 0x01022413, 0x5903050b, 0x08010109, 0x07010831, 0x593c0808, 0x010b0503, 0x01132402, 0x07080867, 0x07251582, - 0x02000901, 0x29008200, 0x80014002, 0x2f001600, 0x4c4e0000, 0x22212305, 0x0f50010f, 0x36212606, 0x11373637, 0xe4bf1805, 0x35398217, 0xfe1b1212, - 0x97131acd, 0x13970909, 0x1b33011a, 0xfe011212, 0x011911cf, 0x1f831853, 0x0a961328, 0x960a0d0d, 0x3b820113, 0x2f000122, 0x18e4bf18, 0x37420020, - 0x02e03305, 0x00a00180, 0x006c0004, 0x00760071, 0x33350100, 0x074f2315, 0x23152105, 0x250b4e43, 0x06070633, 0x5d182307, 0xba830992, 0x27263525, - 0x83232726, 0x17162209, 0x054c4e33, 0x26832194, 0x17163322, 0x82078350, 0x20398547, 0x216b8203, 0x71830535, 0x3028012b, 0x0e140830, 0x1276010d, - 0x83c48328, 0x122827bc, 0x1b1c2d43, 0x16830504, 0x0e0d0122, 0x09216518, 0x1d05032e, 0x1a0e2d1c, 0x2d0e1a40, 0x03051d1c, 0x04251f90, 0x2c1c1b05, - 0x20488b42, 0x243f8476, 0x013030c8, 0x230382a0, 0x68303038, 0x04211083, 0x08577b22, 0x1e220225, 0x8c392e2f, 0x83402065, 0x27332b57, 0x01141427, - 0x27141401, 0x1d913327, 0x2f2e3923, 0x20438b1e, 0x22328304, 0x8330a8fe, 0x82002000, 0x00022f00, 0x01c0ff20, 0x00c001e0, 0x0045000c, 0x96183700, - 0x352708c6, 0x15371523, 0x4c161714, 0x0220064a, 0x2105194c, 0x20821716, 0x22012b27, 0x36272627, 0x20018237, 0x210a833d, 0x64183435, 0x23380a48, - 0x1a2302c0, 0x1a10de10, 0x80400223, 0x270e1108, 0x110e0e07, 0x0e181811, 0x07310582, 0x01011a2b, 0xe81c101f, 0x011f101c, 0x28181701, 0x05d74408, - 0x08a49318, 0x162def2f, 0x111b1b11, 0x91902e16, 0x06089191, 0x253d820a, 0x0e0e1111, 0x05831818, 0x2c2b0730, 0x152f3c37, 0x333c2f15, 0x061a2a2a, - 0xad669108, 0x4900200d, 0x80200653, 0x122bcb82, 0x33002a00, 0x27130000, 0x41270723, 0xa26305ee, 0x0f232205, 0x055d5101, 0x09cb6018, 0x82363321, - 0x213521c7, 0x085fe518, 0x8220c021, 0x05de5900, 0x0d018026, 0x2070140e, 0x5405905f, 0x4029070e, 0x0112121b, 0x0fc080fe, 0x05af5701, 0x40800124, - 0x28834040, 0x14d0d028, 0x40010d0e, 0x208320e0, 0x8309134f, 0xb0202137, 0x0f232b85, 0x46040001, 0x2c210867, 0x051b5900, 0x16130026, 0x17163117, - 0x18065846, 0x20097c69, 0xd25c1823, 0x2722250a, 0x35113526, 0x0735a983, 0x16171415, 0x37322133, 0x34013d36, 0x21232627, 0x15060722, 0x10cb6d13, - 0x49712082, 0x60e0270e, 0x09023f3f, 0x20190e09, 0x0224111e, 0xa0603f3f, 0x59181682, 0x5d4b0c48, 0x059f4106, 0x270efc6d, 0x171601c0, 0xc0fe1022, - 0x2005ec47, 0x463a8209, 0x202007a6, 0x01270b82, 0x17221040, 0x67800116, 0x068606d5, 0x41f0fe21, 0xb9410bad, 0x0001300d, 0x01c0ff0f, 0x00c001f0, - 0x01000056, 0x83161732, 0x83072001, 0x5f0382ed, 0x062106c9, 0x26158207, 0x06071415, 0x45270607, 0x4f5705b8, 0x2a0e8205, 0x06013f26, 0x26272627, - 0x51373435, 0x0b8205fd, 0x49473720, 0x17162205, 0x08138226, 0x36373662, 0x08000133, 0x0e0d0d05, 0x11010b0a, 0x1d1e1f13, 0x06060816, 0x0b0b0401, - 0x2b120e11, 0x19080818, 0x08221f2d, 0x0a080702, 0x1616023a, 0x080a3a02, 0x22080207, 0x08192d1f, 0x122b1808, 0x0b0b110e, 0x06060104, 0x1e1d1608, - 0x0111131f, 0x0d0e0a0b, 0x0108050d, 0x1c1207c0, 0x2c28221d, 0x0a120a0d, 0x37082082, 0x15080705, 0x18201d1e, 0x050e0b16, 0x0f040a09, 0x2103080b, - 0x0506070a, 0x0216471d, 0x1d471602, 0x0a060604, 0x0b080321, 0x0909050f, 0x160b0e05, 0x1e1d2018, 0x05070815, 0x40828682, 0x282c0d27, 0x121c1d22, - 0x07934307, 0xe001e035, 0x1900a001, 0x00003300, 0x31353601, 0x23262734, 0x83010f22, 0x0aa95505, 0x19961720, 0x01013723, 0x05434b77, 0x4b398921, - 0x502005a4, 0xa0210683, 0x21148560, 0x148569e9, 0x06838020, 0x01000122, 0x8a210e86, 0x231e853a, 0xa0090950, 0x09231a84, 0x186aea09, 0x2208a1da, - 0x70000001, 0x1f220963, 0xc1543900, 0x0722230b, 0x63450706, 0x17162206, 0x2f0c8206, 0x16372726, 0x37362533, 0x16171621, 0x3315010f, 0x2b2c1583, - 0x36272601, 0x27353337, 0xb0013726, 0x2707085e, 0x0d15161b, 0x24241035, 0x08d5a918, 0x23212a36, 0x52fe1612, 0x70011006, 0x0b060610, 0x021640b1, - 0x58581602, 0x40240583, 0xd0060bb1, 0x3d07e549, 0x2b160d0d, 0x02011a1a, 0x3d3d2928, 0x01022829, 0x61092414, 0x0e01010e, 0x76b10c0e, 0x2e831602, - 0x76021626, 0x000e0cb1, 0x02200082, 0x012e0485, 0x00170080, 0x13000022, 0x17160706, 0xbc4e1533, 0x05847d08, 0x03012b22, 0x21261783, 0x27263736, - 0x4083d821, 0x3856102b, 0xc0010238, 0x56383802, 0x220f8310, 0x83c02828, 0xd0012106, 0xfe230583, 0x83800130, 0x0b212967, 0x59593d3e, 0x210b3e3d, - 0xfe200d83, 0x20080f78, 0x30008200, 0xff100004, 0x01ef01d0, 0x001e00b0, 0x00420030, 0x207b8254, 0x05db4826, 0x8205f348, 0x013f2205, 0x48028236, - 0x2f2005de, 0x125b5918, 0x49181520, 0x6f18104f, 0xf72f113b, 0x1e4a1e22, 0x060f2410, 0x3c19060e, 0x8e532219, 0x5227200e, 0x79430b56, 0x0cfc740b, - 0x05af0130, 0x1f102810, 0x52221f4c, 0x173b1822, 0x0e860c05, 0x22532128, 0x05183a18, 0x9d18bf0c, 0xcc43186d, 0x2bf3890c, 0x00370025, 0x005b0049, - 0x27260100, 0x2720f595, 0x03881882, 0xa311ab78, 0x020123fa, 0xee8e0902, 0x022c0e87, 0x1c1c2708, 0x2a0c030a, 0x31071d1d, 0x22250241, 0x410209a4, - 0x092c1604, 0x1a1b0602, 0x07030c26, 0xb4291d1d, 0x20250941, 0x062f4300, 0xc0010026, 0x3b001d00, 0x0b7f6818, 0xf9720120, 0x11013408, 0x17161716, - 0x11233533, 0x31171401, 0x37323316, 0x83013d36, 0x34352e05, 0x012b2627, 0x26272611, 0x33152327, 0x06ab4c11, 0x2806fc4c, 0x12120120, 0x01e0e01b, - 0x8e898500, 0x06d64115, 0x2806cd76, 0x121b00ff, 0x01400112, 0x07294d60, 0x01201786, 0xfe251785, 0x090000a0, 0x35008200, 0x80018002, 0x2a001500, - 0x40003500, 0x52004900, 0x64005b00, 0x714f6d00, 0x20928411, 0x88631821, 0x1822200b, 0x6607a95f, 0x21210a5b, 0x3d461936, 0x18252008, 0x210f9e90, - 0x1199011f, 0x20083747, 0x839e8402, 0x00fe22e7, 0x06ae7320, 0x20290686, 0x00010f01, 0x0f01010f, 0x200583ff, 0x06a06640, 0x010fa023, 0x089060fe, - 0x90185020, 0x11911031, 0x20157965, 0x0da26a40, 0xe647f020, 0x20078707, 0x79901830, 0x87102019, 0x47102023, 0xb37f08ed, 0x0045220f, 0x1cbf555e, - 0x1103ce18, 0x794b0320, 0x97332017, 0x00012118, 0x5917cd58, 0x9b2c0f9e, 0x25250b0b, 0x0a0a0b0b, 0x0a0a2424, 0xc0200b8b, 0x60181897, 0x6020186b, - 0x0fae5f18, 0x911b0121, 0x85559756, 0x06bf4917, 0x01000236, 0x004000c0, 0x0061004f, 0x07140100, 0x27070617, 0x16070139, 0x21061f5c, 0xf8521736, - 0x22073106, 0x0f060727, 0x26270601, 0x3f34013d, 0x26272601, 0x08489518, 0x50263721, 0x1325083a, 0x16173736, 0x2646821d, 0x26012f06, 0x4903012f, - 0x32081027, 0x35096001, 0x44343424, 0x2d362420, 0x0c091f2d, 0x020a0b0d, 0x3a280801, 0x3035453a, 0x380c0838, 0x07080708, 0x0810143c, 0x0b0a0201, - 0x09090c0d, 0x46094609, 0x15240781, 0x062c2831, 0x38241f82, 0x7528080c, 0x2c0b5f44, 0x12166001, 0x590f275b, 0x16170a76, 0x834e8327, 0x1d323256, - 0x6212011c, 0x041b070c, 0x37090504, 0x11680b0d, 0x84508314, 0x78092258, 0xe5631812, 0xd6fe3108, 0x0b4c2114, 0x0509370d, 0x071b0404, 0x0a01460c, - 0x3e0c5e45, 0x20000200, 0x2002e0ff, 0x2a009f01, 0x00004b00, 0x26273601, 0x2326010f, 0x07060722, 0x82171615, 0x171621f8, 0x36210788, 0x820f8537, - 0x27262207, 0x06415237, 0x19055c49, 0x3c0b3c9c, 0x37363726, 0x17323336, 0x0a111502, 0x3469130e, 0x48486d3e, 0x02450303, 0x32021616, 0x2105833e, - 0x0583323e, 0x03034526, 0x40c2444c, 0x31082383, 0x1c12166f, 0x01010908, 0x3d1f0808, 0x1f3d6565, 0x01010808, 0x3c1c0809, 0x01181b68, 0x11130e74, - 0x1a09450a, 0x30a03b1b, 0x0216671f, 0x0e771602, 0x07836803, 0x0e036823, 0x28078377, 0xa0301f67, 0x462d1a3d, 0x3329832a, 0x0b070549, 0x01080b0b, - 0x1b0f0a0a, 0x0f1b0101, 0x08010a0a, 0x17211082, 0x07fb7d02, 0x0140022b, 0x001300a0, 0x00350027, 0x08dd7648, 0x0615172a, 0x22230607, 0x35272627, - 0x3725bb82, 0x31273617, 0x490c8226, 0x1183051a, 0x07273623, 0x29138226, 0x06072223, 0x32331607, 0x2f822737, 0x17060724, 0xfe831706, 0x35363727, - 0x37012f34, 0x08044c06, 0x26273422, 0x01292982, 0x51527a20, 0x52510303, 0x0807877a, 0x0b01f020, 0x261c220b, 0x0a120b1c, 0x0b22202d, 0x06b3010b, - 0x16161011, 0x1d061110, 0xb41d2020, 0x13831c26, 0x20262383, 0x0b120a2d, 0x3f19381c, 0x340809d7, 0x1e21211e, 0x2101a001, 0x3dc03c22, 0x21222221, - 0x223cc03d, 0x08800121, 0x0c0f0e0d, 0x15122b07, 0x080b141b, 0x0d0e0f0d, 0x0c144d08, 0x140c0d0d, 0x07920303, 0x200f830c, 0x2a218208, 0x140b080d, - 0x2b12151b, 0x43070608, 0x072507b2, 0x00030306, 0x08937801, 0x78003f21, 0x8e180793, 0x23200935, 0x25078a78, 0x26273637, 0x0d89012b, 0x336e0f83, - 0x23058305, 0x013f1617, 0x380b9d78, 0x220d0b4b, 0x09343030, 0x100b0403, 0x62060108, 0x06070305, 0x09040404, 0x260c8227, 0x16030751, 0x82030b0b, - 0x2b102de1, 0x3f3e3e3d, 0x0b0a3a2f, 0xa50c060d, 0x3609aa78, 0x0a04074b, 0x07210405, 0x01010908, 0x1d020708, 0x0a0a0402, 0x83080708, 0x0318370b, - 0x35343807, 0x0b0b1026, 0x0e0e0301, 0x3d2e1b1c, 0x0d2a3c3d, 0xb378a409, 0x19052005, 0x230c6b4a, 0x00310026, 0x13a3b018, 0x25051a71, 0x33153323, - 0xc36c0727, 0x054f4a09, 0x3624ef82, 0x07061737, 0x33210784, 0x25d58236, 0x011f1637, 0x04823336, 0x222c2a85, 0x2326012f, 0x06010f22, 0x012f2623, - 0x200aa468, 0xba8a1800, 0x40b0210b, 0x88095d61, 0x0b362309, 0x0c830823, 0x040c082e, 0x1313070e, 0x0f0c0b07, 0x36040d19, 0x0a2c1f84, 0x06030904, - 0x05090306, 0x11030b0a, 0x18894b19, 0xde184020, 0xfe221092, 0x13840220, 0x12320a2a, 0x27120101, 0x0916010a, 0x09290f83, 0x11060611, 0x380a0109, - 0x06ff4421, 0x01800127, 0x001700c0, 0xa949181b, 0x09fd7d0a, 0x200b0f41, 0x05dc5b15, 0xe5820620, 0x1f363722, 0x47056b72, 0xdd47083e, 0x0e803d05, - 0xc0a00909, 0x1f288080, 0x0e0e1111, 0x48111148, 0x11110e0e, 0x1616021f, 0x01c00102, 0x82097959, 0x20012a09, 0x800e0909, 0x66e88080, 0x8223831f, - 0x282e8228, 0x661f0e0e, 0x16020216, 0x249b8300, 0x02c0ff20, 0x209b8260, 0x2099821e, 0x087f6934, 0x17141525, 0x64013b16, 0x534b0747, 0x01112508, - 0x26273335, 0x16219783, 0x0552780f, 0x23352325, 0x83201735, 0x83a02074, 0x83a82069, 0x18a82057, 0x220acb94, 0x83276e80, 0x0e502378, 0xac83500e, - 0x806e2725, 0x41800180, 0x802007a9, 0x7020b283, 0x24089c6d, 0x30f0fe80, 0x82258327, 0x2530822a, 0xd0271111, 0x3f418080, 0x00022506, 0x2800c001, - 0x7268a392, 0x33352509, 0x16170607, 0x2705764b, 0x011f0607, 0x011d3523, 0x20054542, 0x20a38225, 0x89a38880, 0x8dae209d, 0x44ae209b, 0x012105cf, - 0x20a38b80, 0x052458fe, 0x1b121223, 0x229b8d70, 0x8330e0e0, 0x83a020be, 0x070021a2, 0x2410f742, 0x004b0046, 0x12674956, 0x2121fb42, 0xdc463233, - 0x012b2106, 0x24088349, 0x3533011d, 0x0a336f23, 0x42161142, 0x102014f6, 0x87065357, 0x90c02106, 0x1af9b418, 0x42062f42, 0x602011e8, 0x220d4149, - 0x70404020, 0xbf6d080c, 0x08e34207, 0x31002622, 0x65094f75, 0xfb8b0afb, 0x2009494a, 0x240a8915, 0x15171617, 0x55691816, 0x15062808, 0x17161706, - 0x18300239, 0x25100976, 0x26272631, 0x1c823637, 0x0339302f, 0x17161532, 0x35363732, 0x2f262734, 0x21188301, 0xf76f3627, 0x16234105, 0x8265c020, - 0x08098909, 0x010f8038, 0x030e0b0d, 0x0f110e05, 0x01080a0e, 0x12130b08, 0x01021512, 0x010d0c16, 0x11010f0f, 0x0e03030e, 0x040e0604, 0x10130103, - 0x0808090f, 0x1201130a, 0x02031411, 0x1f820b16, 0x20177343, 0x07384a50, 0x08874020, 0x0f014827, 0x05030211, 0x2f68820f, 0x05080406, 0x05050605, - 0x1d1b0b0a, 0x1102070d, 0x12312283, 0x01010603, 0x030d0e06, 0x07010101, 0x09050501, 0x22218207, 0x82090401, 0x840b2022, 0x06774a22, 0x22086741, - 0x424f0047, 0x16242161, 0x06071417, 0x600e2560, 0x26230517, 0x69313027, 0x3d29059c, 0x17373601, 0x27263736, 0x86531923, 0x48983718, 0x01111119, - 0x2b110a0b, 0x0b0e0e22, 0x0c20200c, 0x220f0e0b, 0x0b820f22, 0x0141212b, 0x12021401, 0x12020212, 0x21048348, 0x12413434, 0x01c43617, 0x13191111, - 0x28070f0f, 0x0f0c0b1f, 0x0e1d1d0e, 0x200b0c0f, 0x240b8320, 0x01023c1e, 0x243d832c, 0x02125040, 0x204d8350, 0x77601828, 0x01402a08, 0x004a00c0, - 0x005c004e, 0x28ef916a, 0x010f0635, 0x2b220706, 0x0d184601, 0x26154146, 0x36013f26, 0x4235013f, 0x05200a88, 0x1a706118, 0x270e4142, 0x053c0404, - 0x40010204, 0x460d2b46, 0x09261454, 0x050f0305, 0x90185f0c, 0x2620088b, 0x17956118, 0x250f2941, 0x0f010113, 0x3e460101, 0x115e4609, 0x3c0f0d26, - 0x2c5e0d11, 0x2005d745, 0xb361188c, 0x4403201a, 0x50180c93, 0x77460921, 0x06032514, 0x35272607, 0x20057653, 0x06fa7d36, 0xff8e1520, 0x23087746, - 0x02161602, 0x8f0d7b46, 0x077746c6, 0x1668fe25, 0x46160202, 0x00310f7c, 0x22000200, 0x0f02c2ff, 0x2000c001, 0x00003600, 0x53851813, 0x0db16809, - 0x2006eb47, 0x21918227, 0xe0493233, 0x269e8306, 0x3621010f, 0x5277013f, 0x523405f0, 0x751d1d5c, 0x1e26261e, 0x971515be, 0x161d1d16, 0x31515135, - 0x322e1a85, 0x97060635, 0xfe2a0505, 0x5c0602c1, 0xf652b701, 0x5c512105, 0x75232c83, 0x83be1d1d, 0x1597262c, 0xac523515, 0x321a8532, 0x05053531, - 0x2a060697, 0x005c0708, 0xff020003, 0x864002c0, 0x004c2ca3, 0x33361300, 0x011f3231, 0x82333637, 0x15162605, 0x06010f14, 0x07936d23, 0x3526272c, - 0x27173734, 0x21070607, 0xb5823637, 0x17010f22, 0x07202182, 0x27202082, 0x20057c59, 0x068e4b36, 0x20075d71, 0x21a08329, 0x81863551, 0x9186be20, - 0x09525c2b, 0x5c31b009, 0x3f010206, 0x2089842a, 0x21988635, 0x26472701, 0x0f112d05, 0x05080805, 0x0112110f, 0x1b121201, 0x5221d183, 0x20f58635, - 0x060541be, 0x83515c21, 0x32de255a, 0x2a08075c, 0x3520fd84, 0x21060c41, 0x3383e7fe, 0x20201529, 0x18070718, 0x83152020, 0x00002951, 0x00000800, - 0x0002c1ff, 0x1d2fe782, 0x5f002c00, 0xeb008d00, 0x14010c01, 0x7d002101, 0x32210631, 0x23b48217, 0x26273637, 0x2f061f7d, 0x16150706, 0x35373617, - 0x06072625, 0x011d1617, 0x34240c84, 0x33362527, 0x173b2782, 0x07060714, 0x07011d06, 0x17140239, 0x16273732, 0x39233217, 0x30013d03, 0x18353635, - 0x2007f65c, 0x20378322, 0x6a2d1937, 0x0706260a, 0x39143114, 0x834d8203, 0x23162b30, 0x35033930, 0x34373431, 0x01823637, 0x17373425, 0x54311716, - 0x06240581, 0x15310615, 0x33212887, 0x25598216, 0x30353037, 0x5c853435, 0x08906a18, 0x07238182, 0x84141506, 0x88012055, 0x02392355, 0x84843135, - 0x07855482, 0x27261722, 0x0f227a82, 0x238a3101, 0x32013d23, 0x2a788535, 0x30073736, 0x31300139, 0x84310737, 0x14072250, 0x317d8231, 0x3b023037, - 0x2c34583b, 0x130e1d2c, 0x36230c11, 0x984f4135, 0x16022a05, 0xcb010216, 0x03151607, 0x2a0a8304, 0x10e3fe05, 0x26253812, 0x82010401, 0x16152500, - 0x04111805, 0x023f0a82, 0x33020401, 0x16184d32, 0x16070415, 0x13110b4a, 0x01011f0f, 0x01020307, 0x16140401, 0x84101708, 0x03022f23, 0x6c180108, - 0x010f1018, 0x01030401, 0x4f820101, 0x0e170524, 0x25820605, 0x0502022a, 0x1d1e0101, 0x1d1e2c2c, 0x1121378b, 0x22668403, 0x82050303, 0x100f2323, - 0x32821818, 0x18060228, 0x0b151307, 0x1b861016, 0x0f060529, 0x1e1e3602, 0x83060504, 0xc0182f24, 0x023b3b58, 0x11281717, 0x31130e0c, 0x586a1c1c, - 0x16082c06, 0x08160202, 0x06031535, 0x85161516, 0x1a1b320c, 0x2601044b, 0x25313825, 0x02060a12, 0x05160102, 0x2caf8315, 0x04030102, 0x3327130b, - 0x0233324d, 0x2cf68206, 0x0e133404, 0x3a2d110b, 0x0910212f, 0x24858204, 0x14040816, 0x82ac8207, 0x050329bf, 0x3424120a, 0x0114212b, 0x48239a82, - 0x840b142a, 0x01062246, 0x28dd8415, 0x02020101, 0x2c160c04, 0x26d3844a, 0x462c1e1d, 0x820a1326, 0x89388267, 0x03022d43, 0x1d140b05, 0x1815132f, - 0x38010f10, 0x4429a483, 0x0b156b2f, 0x070a1307, 0x826c8201, 0x0421082b, 0x3b1e0f07, 0x8b8b737a, 0x0d1b1721, 0x01010306, 0x00006c01, 0x00000002, - 0x01400210, 0x002b0070, 0xbf9c183d, 0x052f4f0b, 0x6a05d641, 0x262105a2, 0x05fd4427, 0x37262727, 0x36011f36, 0x104e7637, 0x1db5352b, 0x30302727, - 0x1d1e2727, 0x25798214, 0x14150b07, 0x11851e1d, 0x12191d23, 0x72011b5a, 0x125a2309, 0x11190119, 0x01330cc2, 0x11121a32, 0x12110101, 0x1a1b191a, - 0x150f0f15, 0x86191b1a, 0x15192911, 0x0f0a3517, 0x50501512, 0x35233f83, 0x50721417, 0x00230b73, 0x71000006, 0x1a210667, 0x05795500, 0x5b005222, - 0x741d8762, 0x2720094c, 0x18088b6c, 0x1907cd48, 0x201117ae, 0x21fc8323, 0x34823736, 0xca180887, 0xb0251a6a, 0x0f800f01, 0x21048401, 0x9d5c1f10, - 0x871f2005, 0x08012407, 0x88141401, 0x2115830d, 0xb05702f0, 0x88c02006, 0x17c25208, 0x59835584, 0x448f5820, 0x678f4820, 0x87050358, 0x16022151, - 0x2b061349, 0xc0010002, 0x2c001a00, 0x54003e00, 0x251c8b53, 0x31272203, 0x1a512726, 0x05a14505, 0x8b573720, 0x21158807, 0x23820607, 0x1809af45, - 0x2220e473, 0x63090d50, 0xbb410578, 0x19c02005, 0x200d5eab, 0x0baf63ba, 0x63070321, 0x725305c3, 0x10012118, 0x780b1952, 0xaf200c06, 0x6309a363, - 0x002105b3, 0x05bb5900, 0x212bfb83, 0x00002600, 0x06070613, 0x5615011f, 0x70180887, 0x37300a26, 0x27262736, 0x21271721, 0x15202307, 0xd70e0709, - 0x19064f63, 0x3207e604, 0x070ed740, 0x40fe1509, 0x2601408d, 0xc001a640, 0x1a131301, 0x2314ad42, 0x00404080, 0x4e22778b, 0x77826900, 0x1d16172e, - 0x16171401, 0x1f36013f, 0x32331601, 0x17210785, 0x06e86106, 0x07822220, 0x16011d2b, 0x33171617, 0x14151716, 0x22218517, 0x8234013d, 0x34372127, - 0x2106e94e, 0x3b823716, 0xa4822620, 0x05072224, 0x46700706, 0x220e8305, 0x18362726, 0x080ab9ed, 0x040ab245, 0x0e0a0c04, 0x050f0c08, 0x04070a06, - 0x0c1d0605, 0x24100101, 0x05200b0b, 0x27090b05, 0x0e0d0110, 0x010f2014, 0x100e0909, 0x060d190a, 0x08011306, 0x09060621, 0x0b140f0c, 0x131b0d06, - 0x2a493636, 0x6d4e0124, 0x812d18c0, 0x29090712, 0x0b0a0406, 0x07050911, 0x085f8203, 0x060f0336, 0x0905110e, 0x020a0403, 0x140c1e06, 0x0d0e141c, - 0x300f0101, 0x0d09090e, 0x0c151122, 0x06010207, 0x21080b14, 0x03080707, 0x0b120505, 0x2a430502, 0xc10f012a, 0x2017e842, 0x20008200, 0x08d34303, - 0x49003b30, 0x00006400, 0x1f161737, 0x15171601, 0x1d411716, 0x36372305, 0x0283013f, 0x34353725, 0x4a26012f, 0x272105d8, 0x05534126, 0x82363721, - 0x2a0a8212, 0x2322012f, 0x07060706, 0x82272605, 0x82062005, 0x011f243f, 0x41333536, 0x2f081938, 0x190d093a, 0x01021b3a, 0x09010f0f, 0x08190c09, - 0x08180702, 0x040e0117, 0x112b140e, 0x0207220f, 0x0a060f05, 0x080e170b, 0x0f0e0807, 0x0a0e100f, 0x4732ce82, 0x01153535, 0x1a190196, 0x0405050c, - 0x1d110610, 0x38413002, 0x10ff3a17, 0x09110717, 0x0812281d, 0x0c271208, 0x09020607, 0x0d1b0b19, 0x081c0e05, 0x08628214, 0x04140826, 0x03091007, - 0x04070405, 0x100b0c0b, 0x11131415, 0x28010414, 0x383f4028, 0x0b050a2d, 0x11320d0b, 0x0e0e0804, 0x201a3441, 0x08334106, 0x4c002b2e, 0x72006700, - 0x88007d00, 0x17370000, 0x8205f652, 0x36172afe, 0x012f3637, 0x3b363726, 0x067a5b01, 0x72064641, 0x1426055b, 0x07260517, 0x90422231, 0x210a820a, - 0x38830607, 0x1805b542, 0x831d2ff0, 0x225f8428, 0x84063707, 0x26272473, 0x6737010f, 0x4e0807be, 0x1f342736, 0x0910090d, 0x09060c0b, 0x070b1208, + 0x09090101, 0x3d0b0c0d, 0xa8604057, 0xf520080b, 0x1d1d1c32, 0x0a09321c, 0x090d0d0a, 0x0120213b, 0x3b212001, 0x0a0d0d09, 0x0235090a, 0x01010936, + 0x22211884, 0x20008213, 0x82168422, 0x02362846, 0x121324a0, 0x85241312, 0x3ceb8305, 0xff00000a, 0x018001c0, 0x001900c0, 0x00460033, 0x00700059, + 0x00960083, 0x00bc00a9, 0x16af50cf, 0x2722cd82, 0xb74b1721, 0x0c6f5106, 0x37343128, 0x14173336, 0xd6183107, 0x36260805, 0x16173233, 0xda4a0715, + 0x545e1811, 0x0906440c, 0x29913720, 0x25a54f92, 0xfe517592, 0x1201250e, 0x00ff1b12, 0x1033e218, 0x5a0c315b, 0x19830cef, 0x2207ed51, 0x4d09090e, + 0x4a5c0905, 0x4340200f, 0x0f1905b7, 0x4f8c12d4, 0x23108951, 0x12121b80, 0x4408df5b, 0x7f4b06cb, 0x0cc74b0c, 0xa55b658c, 0x64198c0c, 0x198c0cdd, + 0x00204d8c, 0x03200082, 0x08c35a18, 0x3a002b24, 0x5a184500, 0x30260ec5, 0x36313431, 0x7e182727, 0x222c0eeb, 0x15150607, 0x27070631, 0x27172701, + 0x0a187f18, 0x18360721, 0x1808037f, 0x210abb5a, 0x7e18085a, 0x0e2a0afc, 0x24420909, 0xf66f0193, 0x7f18f6f6, 0x1621071e, 0x107f1829, 0x0cbb2608, + 0xfe0f1310, 0x21058330, 0x7f180147, 0x093d0d0a, 0x0f130e09, 0x65fe7437, 0x05c2c2c2, 0x0f083749, 0x4d011213, 0x131a1a13, 0x02001313, 0x6b091900, + 0x00212207, 0x22c18232, 0x6c073707, 0x461809ee, 0xeb5e0bd4, 0x21053307, 0x31132121, 0x33161716, 0x37323133, 0x87133736, 0x58740707, 0x41012007, + 0x603d06e3, 0x78140907, 0x19010914, 0x800180fe, 0x021580fe, 0xf6130e0d, 0x020d0e13, 0x0eae0115, 0x83c7820e, 0x05a94c03, 0x01110e29, 0xfe6e1101, + 0x820d13ad, 0x01132200, 0x0dd35053, 0x3d001a22, 0x231c876f, 0x31331627, 0x17218583, 0x06596716, 0x36373424, 0x0d833233, 0x23262722, 0x6f05437d, + 0x3936158f, 0x19202019, 0x0e0e1011, 0x28333327, 0x33282525, 0x0e0e2733, 0x15831011, 0x6f171721, 0xc7221898, 0x25821717, 0x2f851120, 0x83262621, + 0x1717213f, 0x00343383, 0xf9ff0200, 0x0002b9ff, 0x2300c001, 0x00004700, 0x07370701, 0x0f58c018, 0x34353625, 0x18312727, 0x2d095f78, 0x15150601, + 0x06310731, 0x37371617, 0xc6823331, 0x27313722, 0x23250f83, 0x31353123, 0x82138234, 0x5601250d, 0x09666666, 0x20059671, 0x3a0685a0, 0x1d1d660a, + 0x1e28281f, 0x1b17e1fe, 0x1613100c, 0x18212a28, 0x04792d78, 0x82052407, 0xa3012106, 0x0a213082, 0x20328409, 0x3a0685a0, 0x281e6609, 0x1d1d1f28, + 0x2118dafe, 0x1316282a, 0x171b0c10, 0x05782d79, 0x82040724, 0x82002006, 0x20002ebb, 0x4202c0ff, 0x1100c101, 0x00003300, 0x051c4b25, 0x82272621, + 0x82072001, 0x17072c9f, 0x27172707, 0x07060706, 0x4f161714, 0x5d4f08d2, 0x36260805, 0x34373637, 0x01353435, 0xa1192b53, 0x0c03020a, 0x0f10110e, + 0x730125ed, 0x74747413, 0x011e1f2e, 0x08080101, 0xda43050d, 0x90210805, 0x01201f30, 0xfa240751, 0x0c11110f, 0x0b01010c, 0x682f1db1, 0x6969691a, + 0x2e201f03, 0x0b0d0606, 0x07ea460b, 0x301f2026, 0x01020202, 0x5e063f49, 0x1920058b, 0x4b249b82, 0x1901ef00, 0x2105a542, 0x275f1506, 0xbf60180b, + 0x07332307, 0x19950737, 0x16951720, 0x18070721, 0x21090e4d, 0xef6e3115, 0x17162105, 0xd882d683, 0x35303327, 0x31313330, 0x23018630, 0x17323336, + 0x15830b87, 0x75313221, 0x37240815, 0x31323736, 0x9905f746, 0x833b8519, 0x3314231f, 0x3b871530, 0x34313524, 0x8f192627, 0x072009f9, 0x4206144a, + 0x0d8505c0, 0x23060522, 0x09dd6018, 0x8705a14f, 0x2722210f, 0x43050641, 0x353205aa, 0x18181856, 0x110b0c06, 0x060c0b11, 0x06060418, 0x108f8004, + 0x1e8c6820, 0x43be1821, 0x1b3c0586, 0x0d011212, 0x08111510, 0x01010205, 0x06080401, 0x02010105, 0x14100804, 0x04080f15, 0x05221282, 0x11950707, + 0x11080528, 0x130c1115, 0x47821b12, 0x09090d24, 0x07874001, 0x0d400130, 0x06152310, 0x14050504, 0x05142323, 0x07860404, 0x16060524, 0x29821022, + 0x80010e23, 0x262f820e, 0x2a2a2aba, 0x82030b0a, 0x25b582af, 0x2a0a0b03, 0x11920606, 0x6744218f, 0x01302b06, 0x471b1212, 0x0c010108, 0xb6820406, + 0x06050122, 0x0621b482, 0x220f840c, 0x8d060102, 0x82bf820d, 0x211d83d9, 0xee834708, 0x2a0fef62, 0x0305db30, 0x03030410, 0x8f031004, 0x55052107, + 0x2205c042, 0x18000055, 0x22097bba, 0x1847001f, 0x220cedfc, 0x18163111, 0x310c074c, 0x27263121, 0x21211311, 0x36373221, 0x34313535, 0x10822727, + 0x07072226, 0x22270631, 0x23200b83, 0xc5420b84, 0x06754606, 0x17160125, 0x85900122, 0x70fe246c, 0x1860010f, 0x3308e36b, 0x0e0a4108, 0x08150a0d, + 0x27070b0a, 0x0b0e0e0a, 0x0909084f, 0x82054241, 0xb0fe2107, 0x230b264a, 0xe0fe5001, 0x44311482, 0x0a4d090c, 0x08150901, 0x0c2f0801, 0x0c095b0b, + 0x35578254, 0x20000300, 0x3e02c0ff, 0x0e00c001, 0x2f002500, 0x35250000, 0x57183515, 0x232f091e, 0x31373605, 0x32373631, 0x17311517, 0x51071631, + 0x26240536, 0x15160527, 0x0805cf56, 0x3001332f, 0x323f0f01, 0x011e1d33, 0xfedf0f02, 0x393a02f0, 0x9d020f5a, 0x4f3c0c0a, 0x20363643, 0x0e020120, + 0x0b3d0d10, 0xd0ee9f0a, 0x0fdfdfdf, 0x05f77702, 0x20010f3b, 0x0e42415d, 0x0c9dee10, 0x01012b0b, 0x36362020, 0x0f021043, 0x09093856, 0x0d53419f, + 0x53414520, 0x36052121, 0x10ed0a19, 0x0a2f7d18, 0x3323b683, 0x41373732, 0x01211651, 0x05144597, 0x0a396926, 0x700a0d0d, 0x59200c85, 0x80210c84, + 0x06564201, 0x200f4e41, 0x05784557, 0x093a6a24, 0x0a857009, 0x0a825a20, 0x57188020, 0x15240a0b, 0x47002c00, 0x18081178, 0x29099960, 0x37363736, + 0x27261733, 0xf84b3131, 0x05bf5805, 0x83313321, 0x05e76517, 0x148ed419, 0x3680012a, 0x01012425, 0xc0362524, 0xc0250888, 0x52363602, 0x078057c0, + 0xfe210884, 0x13567680, 0x83400121, 0x83378738, 0x87802007, 0x76078735, 0x0221165f, 0x27008200, 0x80014002, 0x30001500, 0x0c677318, 0x2621b185, + 0x6ec58227, 0x971805bb, 0x9d8d143b, 0xc020af84, 0x7318a194, 0x9095102b, 0x00000535, 0x8002e0ff, 0x4500a001, 0x79005f00, 0x87008000, 0x5e010000, + 0x172905c9, 0x27312331, 0x23232631, 0x530f8731, 0x33260f04, 0x37373231, 0x1f841731, 0x8305d145, 0x072221bf, 0x27263582, 0x27171323, 0x47521617, + 0x0c2a5405, 0x05373626, 0x06332333, 0x3106e27a, 0x37363736, 0x31303332, 0x17063107, 0x37371716, 0x76823707, 0x20822720, 0x2731072e, 0x02163801, + 0x221a1602, 0x0c081b95, 0x2c240a84, 0x100f1b16, 0x2a077641, 0x07232332, 0x55080d31, 0x41022d15, 0x14380b8d, 0x13096213, 0x20209323, 0x13140c20, + 0x06052009, 0x0114141f, 0x1f141401, 0x12290784, 0x4141bafe, 0x13130641, 0x820e841a, 0x02033b16, 0x08070618, 0x3333220f, 0x20014933, 0x316c6c6c, + 0x02a0013c, 0x40021616, 0x06830a26, 0x04351f22, 0x1f275e88, 0x8f0c3020, 0x413e2528, 0x062d0bf9, 0xfe0110b5, 0x3b3b3bf0, 0x140c0913, 0x8269893c, + 0x141c255a, 0x100f1940, 0x31267b87, 0x010c0c0e, 0x00826530, 0x53538023, 0x34008200, 0xff200006, 0x012002c0, 0x005800c0, 0x007b006a, 0x00a1008e, + 0x08e142ae, 0x15311524, 0x4b6d3231, 0x31152408, 0x18060714, 0x4c1200aa, 0x361909a9, 0xdc5007bd, 0x30332508, 0x35313031, 0x05830382, 0x36373627, + 0x35150737, 0x05524815, 0x4a313521, 0x17200580, 0x0eed4118, 0x18071521, 0x2011f48b, 0x20129121, 0x05694303, 0x24057b4f, 0x3c662001, 0x0616503d, + 0x0e090922, 0x2006234c, 0x830786c0, 0x8209200f, 0x010e2500, 0xa0663c3d, 0x70211482, 0x21128270, 0x068470b0, 0x4c4c0e83, 0x4c01200c, 0x30200c8c, + 0x260a3d7c, 0x171601c0, 0x82201022, 0x82402031, 0x1834833f, 0x8312824e, 0x261e835f, 0x17221020, 0x6fa00116, 0x14830501, 0x37828020, 0x37836020, + 0x690c1b5a, 0x32610cc1, 0x00003008, 0xff000003, 0x014002e0, 0x001900a0, 0x505d003a, 0x17261ba1, 0x37161716, 0xd1572736, 0x450d820b, 0x362406d2, + 0x17373637, 0x9b05eb45, 0x18002026, 0x8309775b, 0x40fe2e09, 0x0112121b, 0x100e16c8, 0x1c0d0f12, 0x07b3572c, 0x0d1c2c27, 0x0e10120f, 0xd9921816, + 0x0e0d2209, 0x50249c14, 0x122c0f8e, 0x40011b12, 0x0f0f0170, 0x1f12100d, 0x26091858, 0x0d10121f, 0x71010f0f, 0x9d71078b, 0x18249a05, 0x220ba384, + 0x52530029, 0x11200885, 0x0afd4b18, 0x82313321, 0x4a1720f0, 0x26250b3c, 0x23272627, 0x050c4101, 0x2505c673, 0x15060722, 0xc7453111, 0x31352205, + 0x058b4934, 0x14241182, 0x33331617, 0x23090742, 0x12121b80, 0x2507b24a, 0xa0362524, 0xf9182001, 0x0120099c, 0x314ed282, 0x01a02609, 0x0e0909a0, + 0x066046fe, 0x83600121, 0x065d421d, 0x3383a020, 0x0140fe22, 0x62424082, 0xe0fe2107, 0xb85b5883, 0x00ff2706, 0x0009090e, 0xce180004, 0x67200d93, + 0x5f55db82, 0x95ce1805, 0x1803203f, 0x2107a4cf, 0xce793736, 0x27262305, 0x7f7e3123, 0x31232407, 0x18000706, 0x2a41b6ce, 0x2c1202d4, 0x02121202, + 0x8902122c, 0xa8012109, 0x35cbce18, 0x8e000121, 0x20528448, 0x051b4300, 0x3e02ba2d, 0x4300c001, 0x5d005000, 0x46130000, 0x3221051b, 0x05b04e17, + 0x73532120, 0x27262706, 0x31213127, 0xe74c3732, 0x31232307, 0x45783115, 0x85b01808, 0x05465d08, 0x7d132321, 0xa0520514, 0xd17e1805, 0x8218200c, + 0x2e162abe, 0x05340106, 0x011b1314, 0x080d8320, 0x13e0fe23, 0x20010505, 0x07131319, 0x0c0b0429, 0x1117ab14, 0x400e0e11, 0x0e401111, 0x1711110e, + 0x2e230fc0, 0x0be96098, 0xa4180120, 0x012b0cb1, 0x161602c0, 0xf1fe0702, 0x83101119, 0x12012c09, 0x180e0f1d, 0x0f0f1399, 0x83176601, 0x82458240, + 0x0e0e274b, 0x021e6617, 0x8e6100fe, 0xb07e180b, 0x6100200c, 0xc0220a3f, 0x9a181900, 0x362c166d, 0x27273435, 0x100c1c01, 0x0cd80c10, 0x07860282, + 0x8ab40121, 0x2f1c840c, 0xfeff0300, 0x4202beff, 0x3b00c001, 0x81004800, 0x1809835f, 0x210e9389, 0x80583117, 0x22232106, 0x21053143, 0x4d412207, + 0x37373205, 0x36313531, 0x33373637, 0x37073531, 0x17363707, 0x29108217, 0x17153121, 0x37361716, 0x9a733130, 0x06072606, 0x26270607, 0x12271a27, + 0x56c02023, 0x2c0806c3, 0x0d0e1430, 0x04122c01, 0x1a650d03, 0x111d1e19, 0x1a111414, 0x65191a21, 0x1204030d, 0x0e0d012c, 0x6c203014, 0x14146c6c, + 0x9300ff6c, 0x1d271a23, 0x06a24331, 0x49832020, 0x070f8034, 0x5c0e1110, 0x0c0c140f, 0x5c0f0113, 0x0710110e, 0x7e83800f, 0x24bb202a, 0x07072424, + 0xcb5b5b24, 0x2fa48e19, 0x000c0c22, 0x3108f368, 0x00c001c0, 0x006a004c, 0x007c0073, 0x27261300, 0xb9453122, 0x07063005, 0x17161506, 0x17141506, + 0x07063123, 0x82171714, 0x180d8305, 0x270a0bfa, 0x36313727, 0x23272635, 0x34260582, 0x34373627, 0x01842627, 0x30070624, 0x2d822231, 0x33231723, + 0x0a8f5f23, 0x35262727, 0x33163135, 0x06d47c32, 0x08071973, 0x07371784, 0x31270737, 0xe0373137, 0x07010609, 0x11101719, 0x1515240a, 0x09013e03, + 0x01010c3c, 0x14132127, 0x010d0809, 0x09080d84, 0x27211314, 0x3c0c0101, 0x033e0109, 0x0a241515, 0x19171011, 0x09060107, 0x0c0c0c38, 0x05020a1b, + 0x1a0a0205, 0x0c0b110d, 0x2b35352b, 0x58110b0c, 0x20101010, 0x30804030, 0x10203030, 0x01b00140, 0x01020805, 0x07231a1b, 0x160c0a0a, 0x1a06060e, + 0x030c0116, 0x25196102, 0x5c822c25, 0x21086482, 0x1925252c, 0x0c030261, 0x061a1601, 0x0c160e06, 0x23070a0a, 0x02011b1a, 0xd0010508, 0x05051901, + 0x55820119, 0x0e203882, 0x602f6382, 0x80202020, 0xc02020c0, 0x2080c0c0, 0x4a040020, 0x51260833, 0x91006b00, 0x314aa400, 0x4a07200a, 0x83530631, + 0x05074605, 0x33071429, 0x34352631, 0x4a373637, 0x33211329, 0x07bc4d31, 0x23232624, 0xbd632231, 0x0a3d4a06, 0x3d4a3220, 0x3734210c, 0x2005855e, + 0x077e6123, 0x16173223, 0x475f8217, 0x37210d83, 0x12c94823, 0x1618013b, 0x3a160202, 0x132d6210, 0x090e651b, 0x2d446009, 0x4603022d, 0x1e111103, + 0x0f434a0f, 0x823e3721, 0x09093320, 0x090c140e, 0x170c0e2f, 0x1c1cb73f, 0x13140c1c, 0x4e5e1c09, 0x121b2a09, 0xfe0f0112, 0x101007ec, 0x07615e14, + 0x10101428, 0x220a4307, 0x204a3022, 0x22302407, 0x59430a22, 0x508506d1, 0x23055b4a, 0x132d521e, 0x202d5d82, 0x442d2d02, 0x110f0f11, 0x16212128, + 0x0e574a1d, 0x42496620, 0x28072e06, 0xfe01141a, 0x343434e9, 0x140c0913, 0x0beb5e35, 0x41111825, 0x870b0b12, 0x0b0b2611, 0x1d1d2d12, 0x08ad4a01, + 0x2d1d1d23, 0x947a1808, 0x06bf450c, 0x0002c02a, 0x0c00c901, 0x6b003200, 0x0e678418, 0xcb5e0720, 0x17142507, 0x31333316, 0x4109c75d, 0x262407a4, + 0x23272627, 0x08054318, 0x64056a4d, 0xeb6409e9, 0x07262307, 0x5a181706, 0x0720087b, 0x26223383, 0x01823637, 0x31580120, 0x4760200c, 0x022b06d9, + 0x261b050b, 0x020b051b, 0x8309090e, 0x403908ca, 0x0601155c, 0x10203216, 0x01010d0c, 0x170b0908, 0x65654522, 0x0b172245, 0x01010908, 0x20100c0d, + 0x02061632, 0x04182d16, 0x0d060603, 0x60603d1e, 0x050d1e3e, 0x18040405, 0x0d02792d, 0x4c836020, 0x54823020, 0x2305f67f, 0x300e0909, 0x38087183, + 0x151606ea, 0x08100902, 0x10140d0b, 0x0e070b0b, 0x01011309, 0x070e0913, 0x14100b0b, 0x10080b0d, 0x16150209, 0x020c0906, 0x09050502, 0x01011108, + 0x05090811, 0x0c020205, 0x08975009, 0x21009932, 0x00005900, 0x27172717, 0x31332726, 0x31373736, 0x076c5818, 0x2a053141, 0x31070706, 0x27222306, + 0x5f332325, 0x11830657, 0x26312723, 0x25198523, 0x07223123, 0xae453526, 0x17362405, 0x18171716, 0x08096e56, 0x31151778, 0xb4e40714, 0x0507b4b4, + 0x0b0f2457, 0x0e0f0731, 0x10022a08, 0x07056822, 0x10100cb4, 0x8414010c, 0x02058484, 0x0f0e0718, 0x07332907, 0x2006100f, 0x046b0502, 0x21010903, + 0x21233421, 0x0c0c1920, 0x23212019, 0x01212134, 0xa9a91508, 0x020705a9, 0x0d6e1a20, 0x03550d01, 0x0607011e, 0xe50b0ba8, 0x010c2f04, 0x72530c01, + 0x4c0e010e, 0x1a180105, 0x27263606, 0xef19050a, 0x19210d50, 0x0b731818, 0x001a220c, 0x07914654, 0x4e05fc55, 0xe54a0e9b, 0xb3571a06, 0x74701a09, + 0x1a561811, 0xb8431807, 0x0f50290e, 0x1e1a1a0f, 0x0f1a1a1e, 0x09870082, 0x283f9024, 0x9c180128, 0x282208f6, 0x5a183f28, 0x49430e26, 0x01202205, + 0x84378e10, 0x0cad284b, 0x4b422f30, 0x83023231, 0x2f422440, 0x43230c30, 0x438d0503, 0x0b432320, 0x01e02d06, 0x00a001c0, 0x00350026, 0x01000050, + 0x2005ed49, 0x08576815, 0x2f08d267, 0x36373627, 0x37171637, 0x26312731, 0x31301737, 0x2209b054, 0x19033130, 0x2d193b21, 0x10062201, 0x01021670, + 0x210c0e0e, 0xd2881e35, 0x38279983, 0x0b21342c, 0x93e06e06, 0x91012ec2, 0x1602010e, 0x06061070, 0x2c34210b, 0x83cc8738, 0x1e012807, 0x0e0c2135, + 0x41b0fe21, 0xb3411337, 0x00c1270a, 0x00610046, 0x8f781300, 0x059b4f05, 0x16173627, 0x06071617, 0x20058207, 0x05855515, 0x6207ec6e, 0x232207bc, + 0xe9822631, 0x35313322, 0x26220782, 0xf3823427, 0x26272622, 0x17240582, 0x31311714, 0x08a2be18, 0x21056e5c, 0x4a822223, 0x4815063c, 0x090c0d0b, + 0x1c2f2f1c, 0x0b0d0c09, 0x0801020a, 0x15230e0c, 0x2a2b0115, 0x83182042, 0x422d0e82, 0x15012b2a, 0x0c0f2415, 0x0a020108, 0x21bf9308, 0x1a83b901, + 0x01012323, 0x83488323, 0x0b0f2f50, 0x2e262618, 0x0a303044, 0x1616021a, 0x52831002, 0x09831020, 0x300a1a2a, 0x262e4430, 0x0f0b1826, 0xd9208083, + 0x20134641, 0x2e008200, 0xff600003, 0x01f001c0, 0x004200c0, 0x416c0051, 0x152118e3, 0x1d0b4131, 0x561aff41, 0x8d4905dd, 0x15062206, 0xcbbf1814, + 0x01352209, 0x08ff4152, 0x18192728, 0x26260101, 0xc283183b, 0xc2831820, 0x3b2e0985, 0x02012626, 0x3d442d2d, 0x0b27162b, 0xa5516e06, 0xb1012114, + 0x26080f42, 0x30251927, 0x412b2c3d, 0x6141050e, 0x0a1a3009, 0x443d2c2b, 0x01022d2d, 0x0c271625, 0x52b0210e, 0xf7591313, 0x006b260d, 0x13000086, + 0x065b7332, 0x36313722, 0xe7420986, 0x070d4309, 0x06071427, 0x07312727, 0x050d4331, 0x83212941, 0x2706232b, 0x6b593726, 0x70272006, 0x13240605, + 0x31312734, 0x41072349, 0x25080d27, 0x03050a70, 0x07141f07, 0x0e0e1111, 0x36290f07, 0x1f452936, 0x0a050307, 0x0a010f60, 0x451f070a, 0x2601011e, + 0xfd413b26, 0x26098509, 0x0126263b, 0x850f1e01, 0x1f143035, 0x01090a07, 0xf0600f01, 0x17160d0d, 0x67171919, 0x0986059e, 0x83c00121, 0x07142747, + 0x11110e0e, 0x4e820f07, 0x60821e20, 0x0b212f85, 0x2a7a8204, 0x3d362945, 0x120a2b2c, 0x18161602, 0x82075445, 0x0a122709, 0x363d2c2b, 0x36850f29, + 0x92856182, 0x4100ff21, 0x0331155d, 0xc0ff1000, 0xc0017002, 0x55001a00, 0x00009a00, 0x19194437, 0x07063726, 0x07063131, 0x200c386b, 0x20621831, + 0x834c180b, 0x058e430b, 0x24058242, 0x36071716, 0x096b5337, 0x26070623, 0xd3791827, 0x204ea909, 0x133043c0, 0x4501b021, 0x9145186b, 0x1618360b, + 0x30271d0e, 0x0101201f, 0x27301f20, 0x2d160e1d, 0x32314b3b, 0x223c9902, 0x43a02028, 0x702013ee, 0x45199d45, 0x8e230bc3, 0x84161e17, 0x2472846a, + 0x21181d16, 0x1dda4501, 0x00170822, 0x300aa34a, 0x00340025, 0x0088004f, 0x07060100, 0x31171706, 0x06f34b07, 0x2307b648, 0x31372726, 0x09a96119, + 0xdc452320, 0x3405250e, 0x36313137, 0x2014f446, 0x05cd5005, 0x31203f8e, 0x15216582, 0x20008231, 0x206b8414, 0x230f8215, 0x07302330, 0x27053b43, + 0x07062722, 0x38013316, 0x2519d945, 0x1602010e, 0xde455870, 0x30012115, 0x84090146, 0x06103727, 0x28210702, 0x01012102, 0x20010124, 0x0808301f, + 0x221e1d13, 0x6f46a001, 0x10062519, 0x30021670, 0x20147446, 0x099546b0, 0x01362584, 0x0a05040e, 0x15292107, 0x20011024, 0x201f3033, 0x161f0101, + 0x434a000c, 0x42802008, 0x882006e7, 0x2564e742, 0x27260722, 0x81473336, 0x17a74707, 0xd542b020, 0x1d50243a, 0x842d1f17, 0x1f202ee6, 0x070a0b30, + 0x38171611, 0x0b21142c, 0x08c24506, 0x47152121, 0x4e2105c2, 0x3bce4232, 0x1710b924, 0xb918011d, 0x022707bc, 0x01061c20, 0x7021151e, 0xf1470502, + 0x47142005, 0x352006f1, 0x2c056b41, 0x02e0ff20, 0x00c00100, 0x00480039, 0x0ac54263, 0x26312722, 0x221dcf42, 0x42312727, 0x01201bd9, 0x2e19d942, + 0x06107801, 0x16210b06, 0x0e111119, 0x481d1a0e, 0x1d200f81, 0x19211784, 0x22b58716, 0x4390fe58, 0x012513de, 0x0e0e01c0, 0x2545820c, 0x11110e0e, + 0xfe481d19, 0x191c210f, 0x16201784, 0x22076141, 0x4100ff30, 0x621813bd, 0x402a08fb, 0x3f00c501, 0x00005a00, 0x491a3613, 0xb5470acd, 0x15142309, + 0xaf491716, 0x3134230d, 0x61523134, 0x37362105, 0x2108bd70, 0x87463737, 0x0b95281a, 0x0307400b, 0x47280a05, 0x9b470559, 0x2d442707, 0x2601022d, + 0x15853b26, 0x050a2826, 0x6b400703, 0x27146646, 0x400a0abb, 0x01090a07, 0x2105e047, 0x96470101, 0x2d022807, 0x2c3d442d, 0x86010a2b, 0x0a0a2519, + 0xa5fe4007, 0x2d154646, 0x20000200, 0x77021000, 0x1a007001, 0x5d435600, 0x070a4f23, 0x16171623, 0x18e88317, 0x410bad9a, 0x0724052c, 0x26270631, + 0x0cd19a18, 0x41d02321, 0xae24136d, 0x4430300a, 0x18076f4a, 0x3208637e, 0x0e0e0120, 0x0e0e500c, 0x0e0e0c50, 0x16022001, 0x4b220216, 0x582314b7, + 0x4a2b2a42, 0x013708e4, 0x38422a2b, 0x16020216, 0x06103838, 0x11500b06, 0x050a5011, 0x85381006, 0x058b4813, 0xc0ff1023, 0x052f4701, 0x5f4c3820, + 0x08514c31, 0x434c8b94, 0x05054c10, 0x2026334c, 0x05624c83, 0x02008326, 0x10001000, 0x7024a382, 0x35001a00, 0x5218a382, 0x11201994, 0x4719ec47, + 0x3023146c, 0x82182828, 0x28282200, 0x21098930, 0x48433001, 0xe0fe2b13, 0x2a291718, 0x292a2e2e, 0x09891817, 0x06000022, 0x0eb7b118, 0x4e004524, + 0x74185700, 0x21250e2d, 0x36373631, 0x05404837, 0x16052123, 0x052f4817, 0x37361722, 0x4b510a85, 0x15072205, 0x4f741831, 0x202b920f, 0x384c1840, + 0x7d651808, 0x80fe2108, 0x1a055351, 0x210c137c, 0x289db8fe, 0x16023822, 0x16272f83, 0x01a00102, 0x881b1212, 0x20088456, 0x201c8748, 0x21238518, + 0x24a41602, 0x00030026, 0x02c0ff00, 0x22059346, 0x42530031, 0xc3181c4d, 0x142b0c5a, 0x21230607, 0x26272231, 0x18352535, 0x201f519d, 0x29581860, + 0x02603413, 0x5c4b3332, 0x0232334b, 0xfe0d0809, 0x09080d7c, 0x8340f801, 0x834020bc, 0x210989ca, 0x58184001, 0x09890902, 0x839efe21, 0x53428339, + 0xaa220596, 0x378e4040, 0xdf864184, 0xc0018728, 0x31001a00, 0xdfb35200, 0x18360121, 0x210ac346, 0x7d183117, 0x27230d36, 0xa7372631, 0x11d721de, + 0x1686fd18, 0x0121e2a5, 0x93fd1853, 0x02e0281e, 0x00a00180, 0x43410034, 0x1530076f, 0x31333111, 0x37343135, 0x31333336, 0x17161716, 0x200c284b, + 0x200d8921, 0x4e238411, 0x263206e6, 0x36372627, 0x090e2037, 0x0909e009, 0x1b29e00e, 0x0344011b, 0xfee02105, 0xe1431083, 0x2d902305, 0xc0191618, + 0x012108fa, 0x222082a0, 0x82a000ff, 0x1b01231a, 0x1c5a291b, 0x83202006, 0x07096242, 0x27196020, 0x00200c31, 0x29059741, 0xc001c001, 0x4b003100, + 0x7d435800, 0x84112008, 0x05d45ea7, 0x2405255f, 0x31173133, 0x20bf8216, 0x05125f36, 0x11219a82, 0x21a28231, 0xc9182127, 0x53180c43, 0xc88c0c04, + 0xc0836020, 0x17160128, 0x03052e23, 0x3a190802, 0x2e240c24, 0x01161723, 0xff22b183, 0xde182000, 0xff210afe, 0x18c88200, 0x820c075d, 0x28d782a8, + 0x1a2500ff, 0x062e061a, 0x0b3a1906, 0x062e2609, 0x01251a1a, 0x6a628300, 0x4b820a4e, 0x59c06021, 0x00250b02, 0x00000500, 0x052b66ff, 0x6524ef83, + 0x8b007800, 0x227df3ba, 0x33372212, 0x0b361923, 0x7e401816, 0x32252612, 0x16313117, 0xf34f1815, 0x37342307, 0x26413336, 0x836d1829, 0x090e2507, + 0x5050d009, 0xf6820d8a, 0x1b5ed020, 0x0c955e0c, 0x20234341, 0x055c4280, 0x6b074a41, 0xff210ea5, 0x188c6b00, 0x0003003a, 0x02200000, 0x00600140, + 0x0035000f, 0x0100003e, 0x31151716, 0x31210706, 0x2105454f, 0x384e2521, 0x0bb14507, 0x45094157, 0x212f07e9, 0x31152121, 0x01353121, 0x01010fd0, + 0x8380fe0f, 0x80012705, 0x172280fe, 0x52820116, 0x84012221, 0x14371909, 0x80fe2709, 0xa0fe7001, 0x03836001, 0x5f200121, 0x40200978, 0xa0202c83, + 0x10243587, 0x400e0909, 0x10203482, 0x60231083, 0xfb008080, 0xff1024af, 0x83000100, 0x26aff203, 0x23332317, 0x41333115, 0xd0212b5f, 0xab0082c0, + 0x475b41aa, 0x7021abb2, 0xac008260, 0x420220ab, 0x00250cb7, 0x15070613, 0x847c1831, 0x3607270a, 0x36313137, 0x13822137, 0x62171621, 0x06200dd7, + 0x08287818, 0x42503521, 0xb14205a5, 0x42502005, 0x222315a6, 0x8b011617, 0x42102099, 0x3b83149b, 0x9282a020, 0x0001002c, 0x01deff00, 0x00a00140, + 0x1d190021, 0x17220d13, 0x8a453716, 0x82332005, 0x27343098, 0x23263125, 0x02000706, 0x52070a14, 0x820c073a, 0x04043500, 0x14763806, 0xeefe0702, + 0x02150907, 0x8dfe8901, 0x8dfe7301, 0x5f251082, 0x04040c74, 0x20238305, 0x2f2e8372, 0x150206f3, 0xffff0100, 0x0101bfff, 0x6a00c101, 0x06226782, + 0xe9823117, 0xed861720, 0x18312321, 0x22088575, 0x60311531, 0xeb5e05f1, 0x37162205, 0x217c8237, 0x29821716, 0x26278c84, 0x26312327, 0x57272627, + 0x23820e24, 0x29843620, 0x073a5c18, 0x26070627, 0x26312727, 0x28b08207, 0x0d080901, 0x10101a08, 0x06921801, 0x10102208, 0x2f12821a, 0x09020109, + 0x34080e0a, 0x08342121, 0x02090a0e, 0xa32027a8, 0x02242d84, 0x60191212, 0x24050445, 0x12121960, 0x294c8303, 0x0108090d, 0x26260501, 0x4c830105, + 0x03202683, 0x0220258d, 0x0d227384, 0x268a0908, 0x2f077b5d, 0xc0014002, 0x39002700, 0x70005300, 0x26130000, 0x20065157, 0x25ff8421, 0x07061716, + 0xbd4d3111, 0x7a212007, 0x11240849, 0x21212125, 0x28831a85, 0x26311123, 0x05905127, 0x39463320, 0x33172312, 0xec4a3323, 0x321c9205, 0x01021e20, + 0x251b1212, 0x12520112, 0x12121b25, 0x871e0201, 0xaffe2211, 0x2d118613, 0xaefea901, 0xaefe5201, 0x080f0f08, 0x05835201, 0x5fb7fe21, 0x06860604, + 0x20208023, 0x703d8320, 0x802506b4, 0x0109090e, 0x20509049, 0x26118fee, 0x0f171201, 0x84eefe08, 0x08122157, 0x07f85f18, 0x20071e46, 0x469983a0, + 0x20200a23, 0x240c6351, 0x00370027, 0x0a31416b, 0x31413320, 0x41152008, 0x23200831, 0x21083141, 0x79433735, 0x25258305, 0x27263135, 0xea5f1323, + 0x05786205, 0x07b24018, 0x1d821984, 0x4f058c62, 0x4d8a0537, 0x20082c41, 0x20c88fd2, 0x072a41d1, 0xcb835720, 0x0484d220, 0x2487c020, 0x080f4022, + 0x2e221184, 0x13411209, 0x41d22010, 0x72201126, 0x72245c8f, 0x72080f17, 0x04825283, 0x4180fe21, 0x2921079e, 0x25128329, 0x170f0971, 0x13861910, + 0x87711321, 0x0abb7c3a, 0x2c001d22, 0x4f0e8948, 0x3621050a, 0x07cf5837, 0x2301212b, 0x07062333, 0x31153115, 0x4c018337, 0xe0350879, 0x140e0d01, + 0x12120170, 0x01c0fe1b, 0x702d2d80, 0x4020010f, 0x059e4c20, 0x1bc0fe2b, 0x70011212, 0x010d0e14, 0x820983e0, 0x430f2221, 0x201e822d, 0x2b7b8400, + 0x010002c0, 0x002000c0, 0x2500003a, 0x35215d82, 0x05685031, 0x4f055e59, 0xfd18058f, 0x272008e0, 0x2308a042, 0x27262726, 0x0a1c9518, 0x20011726, + 0x40e0e0e0, 0x68838f89, 0x82404021, 0x07494d13, 0xa0837a84, 0x40e00022, 0x0940ab18, 0x4022b082, 0x0f8c6040, 0x00292884, 0xff050000, 0x02c0fffe, + 0x2b9b8281, 0x0042003b, 0x00600059, 0x01000075, 0x23065b49, 0x23060714, 0x11207e83, 0x0b3b9318, 0x59182320, 0x3323074c, 0x83311131, 0x240f899e, + 0x17163736, 0x223b8213, 0x6b073127, 0x26250668, 0x36313737, 0xc4561833, 0x25072808, 0x33073707, 0x8f072731, 0x21e88317, 0x00828001, 0x23056948, + 0xa0250972, 0xc0210985, 0x230785c0, 0x720925a0, 0x25080985, 0x29291780, 0x91913817, 0x48484991, 0x09222330, 0x085f0a03, 0x5f081010, 0x2209030a, + 0x7ffe3023, 0x91494949, 0x158a7e48, 0x30222322, 0x01212783, 0x05a644a0, 0xfe112823, 0x0cb549d9, 0x28112722, 0x1f3b0f85, 0xfe1f0101, 0x607c7ce0, + 0x22161601, 0x0ea30f11, 0x0fa30d01, 0x16162211, 0x827cdc01, 0x8c8d2000, 0x52238312, 0x80240873, 0x3d00c001, 0x250a6979, 0x33161714, 0xf6833115, + 0x06310724, 0xd7451507, 0x32212109, 0x2805646c, 0x26313523, 0x37312727, 0x0b597931, 0x7a032321, 0x295e0636, 0x06aa4507, 0x442e0124, 0x39692e44, + 0x45202006, 0x148c07bf, 0x01c02029, 0x1b44441b, 0x85c00101, 0x420b26c9, 0x2f44442f, 0xed0d1942, 0x22138c0d, 0x820b4bfe, 0x1c282500, 0x271d4444, + 0x9f4cc682, 0x22c78506, 0x6755004b, 0xc9b608ad, 0x1535072e, 0x15313335, 0x23071431, 0x13352631, 0x2320d087, 0xe02cd1a8, 0x10a010c0, 0x44070510, + 0xa0050744, 0xd584d6a9, 0x18181d26, 0x08cbfe1d, 0x08203b83, 0x2008cb5a, 0x46a34101, 0x0620d987, 0xaa068062, 0x2fa341d1, 0x2108a241, 0x9f41281c, + 0x003e310a, 0x005c004d, 0x37341300, 0x33363131, 0x17322133, 0x2105d84c, 0x92833115, 0x49311721, 0x14250737, 0x23230607, 0x079c4321, 0x36313525, + 0x77313737, 0x13830501, 0x6005227b, 0x35260550, 0x33112331, 0x92423323, 0x82072005, 0x00152446, 0x420e0909, 0xfe201569, 0x4206ec4e, 0x6020087e, + 0xc020d585, 0x09850082, 0xa96b0120, 0x1e864209, 0x81422020, 0xfe0b2308, 0x8b420b80, 0x000b2d05, 0x00010000, 0x01c0ff20, 0x00c001b0, 0x09cb5018, + 0x83311521, 0x07062501, 0x31352726, 0x09745818, 0x0dbb5418, 0x20054045, 0x06955e35, 0x2b822220, 0x8b232621, 0x14902e05, 0x01010d0e, 0x09010f0f, + 0x2d010116, 0x83e38232, 0x16242daa, 0x0d010115, 0x0d13140e, 0x130e0d02, 0x0121058b, 0x231783c0, 0x0f331d30, 0x1b273582, 0x261e1308, 0x472a273b, + 0x6927068c, 0x291f200f, 0x83101050, 0x130c2352, 0x03870d0c, 0xbf82be82, 0xbf820020, 0xbf82e020, 0x00005323, 0x0dd37401, 0x230a5d74, 0x14311115, + 0x0dc1c619, 0x31331722, 0xe56ac385, 0x076f5f07, 0x01210f8e, 0x05e64320, 0x0933cb84, 0x09090e0e, 0x10100d3c, 0x710c0b0c, 0x4b135d43, 0x8f023231, + 0x4128831e, 0xd0200797, 0xb020cd83, 0x26054b45, 0x0302f0fe, 0x830c0b3a, 0x3f6b273c, 0x31320201, 0x1885d04b, 0x248a7020, 0x0b83b020, 0xd882d020, + 0x4c430120, 0x83012505, 0x00004100, 0x0cff8618, 0x1415062c, 0x06171617, 0x16171615, 0x5c493317, 0x07bb4606, 0x23074152, 0x31303130, 0x20058b4a, + 0x23258206, 0x28233117, 0x08056874, 0x0d0cb428, 0x010c130c, 0x20140e0d, 0x24253640, 0x242b0101, 0x0c222e32, 0x05030d4b, 0x10cc430f, 0x05050f0e, + 0xd2100807, 0x4a75f0e6, 0x0d260805, 0x0d0e1313, 0x14130d02, 0x01010d0e, 0x71362524, 0x01232c3f, 0x06181f02, 0x15030d0e, 0x07080540, 0x0e0f1010, + 0xaa834205, 0x8022af87, 0xb7183c00, 0x8c4609a5, 0x42152005, 0x1421054f, 0x9e841807, 0x209b8208, 0x082b6623, 0xc184c385, 0x00201384, 0x702f9e83, + 0x7123397f, 0x0e090914, 0x09090e60, 0x1980224e, 0x18087024, 0x2009375e, 0x85138470, 0xa42f250f, 0x100c231d, 0x2106d974, 0x5419320e, 0xe88208f8, + 0x07822584, 0x0128a482, 0xc0ff2000, 0xc2012202, 0x10677e18, 0xbb4b1620, 0x1c751805, 0x06072209, 0x0cc67827, 0x3333172c, 0x31303130, 0x37363736, + 0xf14b3113, 0x05366405, 0x18372621, 0x200bbf7c, 0x2f478306, 0x0b0b04f7, 0x06070d0d, 0x10023503, 0x052b040a, 0x06280d83, 0x023f0306, 0x37050505, + 0x08083b42, 0x2d080b24, 0x520d2221, 0x0d060603, 0x040c0b0d, 0x0e090325, 0x07032401, 0x0a0e0d07, 0x0526030b, 0x39061315, 0x4583a801, 0xc6264d83, + 0x09010210, 0x45820d8f, 0xcf254d83, 0x04030306, 0x084a4235, 0x1b1b0329, 0x0d13012b, 0x83050b0b, 0x0980244c, 0x83aa0d02, 0x254b8343, 0x010114b2, + 0xfa82d512, 0xff040023, 0x062352fe, 0x4b003f26, 0x64005800, 0x7008d544, 0x362505cf, 0x36171633, 0x200b8237, 0x21098317, 0xb3411716, 0x07062c05, + 0x23230706, 0x31233131, 0x18262722, 0x230edac2, 0x27261311, 0x2105d74a, 0xe14a3736, 0x05d55607, 0x188a1720, 0x49428020, 0x0c212307, 0x4d42150e, + 0x4010370d, 0x2a070805, 0x481a2424, 0x0d03020a, 0x0b0f100e, 0x0f017038, 0x5518010f, 0x0a83086e, 0x11875020, 0x42980121, 0x942505c2, 0x0e1d020c, + 0x07c64201, 0x67103021, 0x042405d6, 0x60221415, 0x4a834283, 0x43014b24, 0x2e19f8fe, 0x602408cc, 0x600f0110, 0x10200d86, 0x00251589, 0x00050000, + 0x0613411e, 0x27001028, 0x4d003d00, 0xdd548700, 0x82152008, 0x05dd54f3, 0x2005f873, 0x09d05415, 0x13461686, 0x053d4105, 0x2707ec52, 0x27172535, + 0x27312317, 0x084f5f18, 0x15351724, 0x4a183335, 0x06210abb, 0x05a07107, 0x6a373621, 0xbf63058a, 0x4e152005, 0x26210680, 0x05344627, 0x36373628, + 0x090ee037, 0x00434009, 0x08424906, 0x8506dc75, 0xddfe310f, 0x46535353, 0x05040547, 0x0c0c0d0c, 0x1a461b05, 0x08052141, 0x020e3823, 0x1f380e02, + 0x0e011414, 0x07101412, 0x12151010, 0x2d2d020e, 0x30413e44, 0x0101250b, 0x0118100f, 0x214182c0, 0x6182d0d0, 0x52079d71, 0x424d0643, 0x24068706, + 0xbdbdbdad, 0x835b83a3, 0x01de2363, 0xcc410101, 0x0f012705, 0x1401010f, 0xe7181f14, 0x0b290dc9, 0x191b3526, 0x00031112, 0x05775000, 0x6401802d, + 0x50002b00, 0x26010000, 0x70070607, 0x35290989, 0x16311731, 0x37373233, 0x05514631, 0x36373230, 0x26311135, 0x07072627, 0x14052731, 0x1d823117, + 0x1b8a3320, 0x280d774f, 0x15060722, 0x150f5a01, 0x06375615, 0x100a5625, 0x41560a10, 0x01270510, 0x760f1515, 0x82a6fe76, 0x0628410d, 0xc020c886, + 0x0125e982, 0x08061153, 0x07e65316, 0x0d73a025, 0x45a0730d, 0x0128057f, 0x06081600, 0x139e9e11, 0x71470e82, 0x098b5606, 0x2908af49, 0xc0010002, + 0x38001a00, 0x997d4700, 0x5f03201c, 0x16220506, 0x51180617, 0x2320089e, 0x4c47cc82, 0x17352105, 0x0cd67a18, 0xa37d1520, 0x02603515, 0x17225816, + 0x22020116, 0x15130722, 0x023d250b, 0x30021616, 0x09a37618, 0x3718a67d, 0x02166801, 0x22171601, 0x154b172c, 0x5213070b, 0x02021648, 0x58706016, + 0x20051d41, 0x05d74840, 0x82800221, 0x000822c7, 0x2ac98222, 0x11111300, 0x11312111, 0x52232131, 0x00720b0a, 0x31212305, 0xc8792726, 0x06f54807, + 0x48312121, 0x402b07e1, 0x00fe0002, 0x12120140, 0x4d00021b, 0xfe20070e, 0x80230984, 0x78fe8001, 0x73550950, 0x20138206, 0x05d179e0, 0xe0202c88, + 0x17820987, 0x106b8020, 0x5603200e, 0x2d2408cf, 0x5f003e00, 0x40e19918, 0x17160722, 0x211b2065, 0x9a183736, 0xe0222b02, 0x2d5d0216, 0x16022105, + 0x01200989, 0x29179a18, 0x16023822, 0x448e0282, 0x240bb358, 0x003f002e, 0x0a87444b, 0x19313321, 0x590b6414, 0x2120076b, 0x36201582, 0x19055970, + 0x22150507, 0x4e373605, 0x162205cf, 0x06193317, 0xde772aa9, 0x16b02505, 0xb0160202, 0x28720619, 0x1602b822, 0x8f05195c, 0xc35f20c7, 0x051944c7, + 0x22085961, 0x6b161706, 0x372505dc, 0x31272736, 0x22dbab37, 0x5b0e0e31, 0xe9a81526, 0x11117122, 0x4415285b, 0x01290827, 0x00c001c0, 0x003f002e, + 0x82fbd051, 0x20edabf7, 0x21ed8349, 0x89732f5f, 0xad702006, 0x2f5f21e3, 0x2d067873, 0x01000070, 0xe0ff2000, 0xa0012002, 0xab4e2f00, 0x051f4808, + 0x200bef58, 0x06c34535, 0x34370789, 0x23232627, 0x09090e40, 0x140e0d01, 0x0e14a001, 0x0b01010d, 0x849d0c0b, 0x09092504, 0xa001400e, 0xf0200582, + 0x09d7c018, 0x0e988027, 0x54060706, 0x2005843f, 0x30388297, 0x00030000, 0x01c0ff10, 0x00c00130, 0x002b001a, 0x1c635d3d, 0x37363722, 0x67053a72, + 0x3625058a, 0x15350337, 0x09f07135, 0x2627222d, 0x13131035, 0x26262222, 0x82132222, 0x27098700, 0x01010f90, 0x1b1b290f, 0x09820582, 0x1b121224, + 0x00821020, 0x81829a82, 0x18300121, 0x2213fd96, 0x820f0140, 0x1b1b2229, 0x2c058229, 0x12121b0f, 0xa370fe01, 0x0303a3a3, 0x055146a3, 0xb7830020, + 0xb7820220, 0xb782fe20, 0x45002324, 0xb7825500, 0x23332322, 0x21058071, 0xc2721714, 0x31372305, 0xca7b2736, 0x07724c05, 0xbf4c0520, 0x31232605, + 0x31233135, 0x20038215, 0xba4d1822, 0x21332807, 0x36373231, 0x82073535, 0x611a83d1, 0xe0200767, 0x08a68018, 0x0779012a, 0x09093005, 0x99070530, + 0x0020b986, 0xa0220782, 0x16879940, 0x82790121, 0x47c0209c, 0x01200618, 0x2507f847, 0x0b0b3005, 0xb6850530, 0x0682e020, 0x85202021, 0x223b8211, + 0x8260e040, 0x3e1a8500, 0x00000300, 0x4002e1ff, 0x08009f01, 0x27001700, 0x27050000, 0x31112717, 0x37113117, 0x82111111, 0x16172dca, 0x06311117, + 0x37010707, 0x31113707, 0x2605db62, 0x37363111, 0x82c08001, 0x7f202d00, 0x010a090d, 0xfe910e01, 0x9191916f, 0x22080c86, 0x3737371c, 0xfe378101, + 0x8301017f, 0x83017dfe, 0x07070532, 0x0fb1fe0d, 0x7c013a07, 0xfe3a3a3a, 0x8204337d, 0x4f012610, 0x0000070f, 0x267f8201, 0x010002be, 0x542300c0, + 0x15271051, 0x16171431, 0x18313737, 0x530c376b, 0x602508b8, 0x7b080909, 0x0878468b, 0xc0018026, 0x1b121201, 0x25056a78, 0x04040a50, 0x4a185d05, + 0x9018097b, 0x46200f67, 0x181deb47, 0x200c277a, 0x05906834, 0x94331521, 0x15ea4715, 0x0c444818, 0x470c0647, 0x402019e4, 0x4708b953, 0x0f8f065d, + 0x220a0355, 0x9d34001a, 0x18d85dc1, 0x7b90af95, 0x6020a699, 0x750da457, 0x0f260def, 0x3f003600, 0x294e4800, 0x053f6008, 0x35312328, 0x23332307, + 0x564c0706, 0x05aa5a05, 0x7905524c, 0xdf43079b, 0x17152105, 0x32103463, 0x121201a0, 0x12121b1b, 0x40308001, 0x0e144040, 0x1801010d, 0x2b0879fc, + 0x140e0d01, 0x1f200140, 0x201f3030, 0x20091b63, 0x07b44698, 0x42500121, 0x3022071c, 0x2b833030, 0x1b29d023, 0x203e841b, 0x844783d0, 0x1a3d8435, + 0x6308619f, 0x00320807, 0x00000400, 0x4002c0ff, 0x3300c601, 0x4e004100, 0xd3835c00, 0x07262724, 0x615a3107, 0x31172109, 0xc143df82, 0x37372205, + 0x07955431, 0xa14f2320, 0x17172105, 0x37242982, 0x15351503, 0x09d5c018, 0x5f5e3720, 0x27262605, 0x37363135, 0x261a8c17, 0x141309fd, 0x43565d0c, + 0x342b0595, 0x17101106, 0x10171c01, 0x85340611, 0x5d562a11, 0x0913140c, 0x3d51e851, 0x06494d01, 0x08c74c18, 0x494d8020, 0x149d2508, 0xb313090c, + 0x26052544, 0x0e0d15d0, 0x5f150d0e, 0xb32a065b, 0x140c0913, 0xf3fe9d9d, 0x37846060, 0x3f4d0484, 0x53178b0b, 0x02200527, 0x2505174b, 0x005b004e, + 0x464a3700, 0x9d991805, 0x05186914, 0x15171627, 0x07071431, 0x05c44731, 0x17272883, 0x36371631, 0x73312727, 0x3724057b, 0x26273631, 0x2006a973, + 0x0aa21827, 0x1800200c, 0x08173852, 0x0b15a228, 0x190c1407, 0x051d021c, 0x18091515, 0x02070603, 0x14160918, 0x1c021d05, 0x07130c1a, 0x280c150a, + 0x0c282b2b, 0xb418175f, 0x99180ad7, 0x563b14f4, 0x0a151407, 0x33050b05, 0x16560606, 0x49150509, 0x15490606, 0x56160905, 0x82330606, 0x150a2e16, + 0x11050714, 0x010a0511, 0x13141413, 0x2f058501, 0x1e000400, 0xe401bcff, 0x0c00c001, 0x55004600, 0x8205df71, 0x182620d0, 0x24079d78, 0x31310722, + 0x92891806, 0x3115240c, 0x4c171714, 0x34200ce0, 0x3524ff82, 0x16311731, 0x2208ff5c, 0x18232726, 0x210d8b85, 0x26410527, 0x07062505, 0xb0170706, + 0x0cf8c419, 0x17171c28, 0x04052f0c, 0x00820c04, 0x13230723, 0x05d8414d, 0x320e2808, 0x0d0c0946, 0x01020b0b, 0x2f1e4d07, 0x1f1f2818, 0x0607031f, + 0x0a0b0e0d, 0x01351604, 0x0b0d0943, 0x06047607, 0x18760808, 0x240d7a78, 0x190e0e20, 0x8348835d, 0x2b462550, 0x534d131a, 0x25055942, 0x320e1459, + 0x4e835e5e, 0x67265683, 0x7ddb0125, 0x5f827d7d, 0x55830420, 0x9e35582e, 0x0d09070b, 0x060406ab, 0x0500ab02, 0x240aab7f, 0x00380031, 0x2f9b184a, + 0x7aa5180a, 0x3123080c, 0x27262726, 0x27171721, 0x06071617, 0x23312727, 0x06310731, 0x37372627, 0x32373631, 0x17270717, 0x18310727, 0x5c074966, + 0x23200588, 0x35213282, 0x5d381917, 0x08e9450d, 0x45c00121, 0x403608e5, 0x48484896, 0x0b151207, 0x0c09520a, 0x48081215, 0x070f0e07, 0x00821501, + 0x025b2a24, 0xe0433816, 0x16382407, 0x18203002, 0x18085466, 0x3315a376, 0x9090908d, 0x12070c15, 0x08131313, 0x0c90150c, 0x2a6b0d01, 0x60210082, + 0x5aa11816, 0x90162409, 0x18606018, 0x44083971, 0x022a0613, 0x1600c201, 0x3a002900, 0x42186200, 0x3121083f, 0x8b9d1831, 0x3736210b, 0x12107318, + 0x21083970, 0x01852726, 0x6c182720, 0x072108be, 0x253e8207, 0x31371716, 0x727c1736, 0x05c97708, 0x37303482, 0x34411801, 0x011f1f34, 0x02161602, + 0x4e343402, 0x16210582, 0x05bb4108, 0x20250585, 0x263a1602, 0x2b1f8427, 0x25191901, 0x0e8a0216, 0x28060d0e, 0x0a18fe18, 0x06070e24, 0xfe181803, + 0x1c290838, 0x01c00158, 0x34341f1f, 0x234a8341, 0x0234344e, 0xf5585a83, 0x05644206, 0x02164826, 0x3a262701, 0x25221f83, 0x5a821919, 0x18037721, + 0x270e8dfe, 0x0f0e0d06, 0x01021b58, 0x07adfe18, 0x00820020, 0xff143108, 0x02d7fff7, 0x00a90189, 0x0015000c, 0x002b0022, 0x00410038, 0x005b004e, + 0x00750068, 0x008b007e, 0x00a10094, 0x00b700aa, 0x00cd00c0, 0x00e300d6, 0x0753e118, 0x2005287d, 0x05e74917, 0x35171622, 0x0ba98218, 0x27260725, + 0x82160706, 0x3623221b, 0xd6621837, 0x18272008, 0x8c08c6b0, 0x8b272015, 0x37a01838, 0x9f3f820c, 0x207e953c, 0x207e9417, 0x95aa9427, 0x0100262b, + 0x1f20201f, 0x20058501, 0x050753e0, 0x180f0121, 0x200b8c51, 0x07c24590, 0x2a8b5020, 0x1594f020, 0x388b6020, 0x0cd25118, 0x3ca18020, 0x08784318, + 0x1020448b, 0xa8936795, 0x75192a95, 0xb0200d42, 0xf7944e94, 0xe0206293, 0xa020c58b, 0x40200c8b, 0x3a93b48b, 0x714179aa, 0x6ba49415, 0xc03705fb, + 0xc2010002, 0x76003d00, 0x9c008900, 0xce00b300, 0x26010000, 0x62313107, 0x3124055b, 0x16173231, 0xc24b0186, 0x05e54307, 0x232b0582, 0x31343130, + 0x31313122, 0x82323123, 0x3130270b, 0x31073130, 0x53470537, 0x050f6005, 0x83051a49, 0x07bd6205, 0x2206c358, 0x79373637, 0x062007e8, 0x0f825f83, + 0x20050279, 0x075b4c35, 0x16171423, 0xbefe1833, 0x19072012, 0x2311e629, 0x07222326, 0x0aa55e18, 0xa6181620, 0x36230cbc, 0x468e0137, 0x0127071e, + 0x0c060301, 0x180c0f10, 0x2908be4e, 0x16151111, 0x02050811, 0x00820102, 0xfe0e0e35, 0x1f1f05f3, 0x201f302c, 0x0d1d0101, 0x01010a0a, 0x44140e0d, + 0x1383058a, 0x022d1133, 0x4b313202, 0x09303145, 0x0d080801, 0x020a0a0e, 0x1af21861, 0x0b15520c, 0x09099727, 0x0d0d0a40, 0x2006860a, 0x211b85a7, + 0xf0521602, 0x17222205, 0x05d64416, 0x4705bd21, 0x01280606, 0x11070402, 0x22191910, 0x313b5185, 0x16172424, 0x0203050b, 0xe11d1c01, 0x011c1c2b, + 0x301f2001, 0x130e1f2d, 0x19061914, 0x8309003c, 0x0f062c14, 0x4b473014, 0x02023231, 0x82442c2b, 0x830220b4, 0xe4fe219b, 0x735b8b8b, 0x20158209, + 0x21958309, 0x06870940, 0x6f857920, 0x02021623, 0x07036516, 0x00220b83, 0xb8180200, 0x5135087b, 0x0000a300, 0x31273613, 0x26272631, 0x07070607, + 0x15150631, 0x05cd5931, 0x36313125, 0x85273637, 0x07062117, 0x83076d53, 0x0518651b, 0x37272622, 0x07212188, 0x200b8c31, 0x05df6401, 0x17822783, + 0x83353521, 0x2327225d, 0x07794223, 0x37203f84, 0x15244982, 0x23060714, 0x7b846182, 0x16170623, 0x207f8217, 0x05334207, 0x8c313721, 0x419d200b, + 0x552d074c, 0x2524010e, 0x37084836, 0x0304071b, 0x2200820c, 0x56170c07, 0x1722056a, 0x0e82070c, 0x04030c3c, 0x51261407, 0x0306070c, 0x0d0b0b04, + 0x010a5265, 0x0d090801, 0x17660a0d, 0x44874601, 0xa30d5621, 0x0e502244, 0x20449206, 0x07714292, 0x1f1bab2c, 0x24253609, 0x0c2d0701, 0x6e820d0c, + 0x130c0322, 0x2b079356, 0x03030c13, 0x0c0d0706, 0x160d220c, 0x1e838583, 0x83441c21, 0x820b2085, 0x2e55238d, 0x448c5cfe, 0x8c252421, 0x0b012344, + 0xd282110b, 0x0b130123, 0x21458b04, 0x8e820d0e, 0x08441b25, 0x830b0d0d, 0x2e5521d3, 0x2f06db47, 0x00c00100, 0x002b0015, 0x007f0064, 0x37070100, + 0x08855318, 0x36313722, 0x9506ed57, 0x06627815, 0x2205c746, 0x82363726, 0x17162301, 0x0f821716, 0xdc181520, 0x35220840, 0x44823734, 0x35221982, + 0xf9183631, 0x152608e9, 0x31310722, 0xda181506, 0x4848098f, 0x27342805, 0xf7012326, 0x43282828, 0x0686051c, 0x80c0fe24, 0x11858080, 0x393a0686, + 0x051f1f2c, 0x0e0a0a02, 0x0108080d, 0x45313009, 0x0232314b, 0x01112d02, 0x355b1f20, 0x0e142906, 0x0a01010d, 0x011d0d0a, 0x5c431386, 0x0909240f, + 0x8289010e, 0x05eb4269, 0x06852820, 0x0a856984, 0x06858020, 0x1c01f724, 0x65832b1c, 0x0d306d82, 0x022b2c44, 0x4b313202, 0x0f143047, 0x201f3006, + 0x2706b457, 0x06140e0e, 0x0e141319, 0x2005db75, 0x43598250, 0x0e380f30, 0x00000909, 0xff200004, 0x012002c0, 0x003700c1, 0x005b0047, 0x010000aa, + 0x22055c4f, 0x18353407, 0x25093c73, 0x37263127, 0x474c1736, 0x240b8408, 0x31303130, 0x0a385517, 0x27172528, 0x06070617, 0x9b593007, 0x07172105, + 0x16230f82, 0x83232317, 0x86232027, 0x05307f13, 0x0ca3d718, 0x55077b7d, 0x2625054b, 0x33373627, 0x830b9731, 0x2003834a, 0x384e8333, 0x02372627, + 0x1e111120, 0x3c2e1a1a, 0x092e0e0d, 0x4e0c1412, 0x05090a07, 0x2209823e, 0x442b440d, 0xfe29054e, 0x191919d4, 0x01020d16, 0x2915831d, 0x1a1a1a2e, + 0x0d050401, 0x0d831720, 0x0d073f37, 0x273c0c0c, 0x2b021616, 0x16b0412a, 0x5c160202, 0x0b01010b, 0x2009837c, 0x2009837c, 0x2009839c, 0x3813889c, + 0x0b2e5d88, 0x01070303, 0x49494920, 0x19222327, 0x37080303, 0x251e2e2e, 0x38061b08, 0x0202321e, 0x0a0c1432, 0x2f2f4012, 0x2808092f, 0x12090d14, + 0x28478317, 0x27281925, 0x2a41082e, 0x2478822b, 0x0b010216, 0x055f450b, 0x1d20078e, 0x0032a483, 0xf9ff0400, 0x8702b9ff, 0x1f00c701, 0x43003900, + 0x58185600, 0x36200e11, 0x080a9d18, 0x2007a346, 0x066b4127, 0x16171624, 0x4f5d2707, 0x06273605, 0x14151617, 0x01132707, 0x07060101, 0x37363101, + 0x31171625, 0x2a218231, 0x32171617, 0x25313033, 0x18170631, 0x250a2258, 0x14141d69, 0x2019040b, 0x30080e06, 0x2b313126, 0x190c0c2e, 0x09080d27, + 0x091f1918, 0x5a070302, 0x0195fedf, 0x1095fe6b, 0x1c53010c, 0x0b65fe18, 0x23241717, 0x043d3030, 0x03d8fe05, 0xf5b21805, 0x1f52210b, 0x120c2019, + 0x03042229, 0x3434211d, 0x191e1e32, 0x2e0b0c20, 0x1e01d6fe, 0x1e01e2fe, 0xf7fe1515, 0x19b40d08, 0x23074c21, 0x000a0ae8, 0x012d0082, 0xc0ff0c00, + 0xc001f001, 0x00002500, 0x09994713, 0x1517162c, 0x15311131, 0x35313331, 0xe0822131, 0x95643420, 0x35210805, 0x5c212726, 0x0e010117, 0x0f16160f, + 0x1301010e, 0x18760140, 0x3e3e0202, 0xfe180202, 0x0f600186, 0x8216841d, 0x1a28081e, 0xa0fe030f, 0x18024040, 0x8b8b0506, 0x02180605, 0x00060000, + 0x02ffff00, 0x00800180, 0x00520021, 0x006d0064, 0x00890080, 0x45059344, 0x467e08d6, 0x31352407, 0x82273123, 0x23263101, 0x07170722, 0x27060737, + 0x37262726, 0x31373736, 0x07201183, 0x17219a84, 0x052a4631, 0xa0180787, 0x25220808, 0x02620706, 0x5123200d, 0x25210885, 0xc44e1815, 0x37322807, + 0x31353536, 0x74232726, 0x350808cd, 0x60604301, 0x01020d60, 0x0f100a09, 0x0a0d630e, 0x8b150b08, 0x18480401, 0x171b211c, 0x18343434, 0x11131c1d, + 0x54160304, 0x181d1312, 0x0f5c1c48, 0x090e1313, 0x06831103, 0x0f030737, 0x0e0c1211, 0x860f0101, 0x010fb6fe, 0x200e0909, 0x5009090e, 0x07d24920, + 0x86f00121, 0x0f012412, 0x50012050, 0x2a0806ee, 0x4f4f6b01, 0x0f0f0a4f, 0x03020d0d, 0x0b084e0a, 0x80100b0c, 0x0f2f02bd, 0x28287d15, 0x04041228, + 0x1b1b1818, 0x10084313, 0x8353e030, 0x0b092259, 0x2506830f, 0x020a0907, 0x74830e02, 0x01527b23, 0x0697610f, 0x87c0e021, 0xe0c02254, 0x06185ce0, + 0x6f0fd021, 0x838305bc, 0x2b0a6753, 0x002b0010, 0x07373700, 0x15311737, 0x08718318, 0x22373525, 0x52310707, 0x272511cb, 0x40232631, 0x200082c0, + 0x2b70839e, 0x0e13c09f, 0x010119c5, 0x011b1212, 0x2505c375, 0x130fc419, 0x00828ef0, 0x0b75302b, 0xd030750b, 0x2013920b, 0x07d94ef0, 0x1320f032, + 0x00000b92, 0x20000600, 0x0002c0ff, 0x1900c001, 0x38267b82, 0x51004400, 0x19555d00, 0x31212d0e, 0x37363736, 0x27263111, 0x13212726, 0x08f47218, + 0x2205d444, 0x4d273736, 0x25200b27, 0x530ab35f, 0x3622067f, 0x3a823537, 0x200bcc5f, 0x09b45b60, 0x3208694f, 0x404070e0, 0x16172240, 0xc00f0101, + 0x1601010f, 0x4b202217, 0x01200b8c, 0x2008c05f, 0x07b74110, 0x18081c4c, 0x2115d85c, 0x4483e0fe, 0x55832c83, 0x200cc64c, 0x47711870, 0x70402408, + 0x86400f01, 0x8990200d, 0x00002215, 0x0a7b5006, 0x38002b28, 0x54004600, 0x17416200, 0x1833203b, 0x180b17c8, 0x5025419d, 0x50200a86, 0x231d1c41, + 0x80808000, 0x0485bd83, 0x96500b96, 0x00ff2115, 0x43182641, 0xa658080c, 0x0f0f2205, 0x53088801, 0x14330ab3, 0x3c002f00, 0x26250000, 0x26313127, + 0x22312323, 0x60070607, 0x3621058e, 0x8e2f1937, 0x85b0181a, 0x8f01340c, 0x241d1d11, 0x1d1d2440, 0x25241b11, 0x24252b2b, 0x5371fe1b, 0x012717a8, + 0x14152900, 0x85291514, 0x1d402805, 0x11121211, 0x82111e1d, 0x801e2200, 0xd25b1946, 0x01102612, 0x23242423, 0x20058501, 0x26008200, 0xff000004, + 0x428001c0, 0x462008f3, 0x203ad741, 0x0cd74137, 0x5e094252, 0xff2208ce, 0xbb416000, 0x5510201c, 0xc9420b0a, 0x41c02016, 0xa02018a2, 0x18075a44, + 0x32071f75, 0x014002e0, 0x000d00a0, 0x0031001e, 0x004b003e, 0x82650058, 0x212122dd, 0x028e1821, 0x11152309, 0x705b1111, 0x31112309, 0x1a4e1321, + 0x31332105, 0x2305424a, 0x27263123, 0x180fcb50, 0x24233975, 0xfd400200, 0x5a9c19c0, 0x1bc02710, 0xfd011212, 0xa88240c0, 0x1676162b, 0x01010f0f, + 0x010aca0a, 0x0b5b4f70, 0x0f01b022, 0x420abd42, 0x098709c7, 0x21082e44, 0x1b19fe20, 0x20220da2, 0x5184ebfe, 0x160f0f23, 0x2057820a, 0x0b3044d5, + 0x50082644, 0x08880883, 0x00820020, 0x0f5c0320, 0x001e2408, 0x425b0044, 0x15230801, 0x18070631, 0x2309b56b, 0x27262734, 0x7205014d, 0x162806e4, + 0x15171617, 0x30153031, 0x18062b41, 0x2809166b, 0x31303130, 0x07061335, 0x09ae6f31, 0xab7d3120, 0x17162105, 0x3205b25c, 0x1601110e, 0x17222217, + 0x0d110116, 0x0e0d0102, 0x58017014, 0x012b064b, 0x02011d01, 0x3d3d2928, 0x82022829, 0xa001210a, 0x142d1d83, 0x02010d0e, 0x0f0f011e, 0x01021e01, + 0x24118380, 0x15101aa5, 0x833f831c, 0x151c2447, 0x58a51a10, 0xa4250c57, 0x25020101, 0x9ea31833, 0x25332607, 0xffa50102, 0x83218300, 0x0c21293b, + 0x01010fd3, 0x210cd30f, 0x400b0b5d, 0xb320e7fb, 0xb320fb83, 0x20f5fb40, 0x20fb8373, 0xf5fb4073, 0xfb833320, 0xfb8d3320, 0x44001d24, 0x315c5100, + 0x1716240e, 0x18061516, 0x4f0b58e6, 0xea43065f, 0xd16f1805, 0x05834b09, 0x30313023, 0x05154431, 0x54181120, 0x70200bdc, 0x2008b543, 0x0be9430d, + 0x4305f75b, 0x01220ee1, 0x54181f20, 0x01200c72, 0x43088f6a, 0x702011e4, 0xdc432c83, 0x1f302512, 0x60fe0120, 0x210dc27b, 0x40180800, 0x332e0837, + 0x59004600, 0x7f006c00, 0xa5009200, 0xa769b800, 0x3117220a, 0x05af5106, 0x18161721, 0x27085575, 0x07262726, 0x27263127, 0x6367eb83, 0x18112009, + 0x540ac87c, 0x17200729, 0x18091c6d, 0x2408a541, 0x31313732, 0x0c225436, 0x372025b8, 0x40304b91, 0x0f0f0a0b, 0x0210110a, 0x0e011503, 0xa011110e, + 0x012a0483, 0x1e21201c, 0x2b291e10, 0x0d501c1c, 0x06757206, 0x60053953, 0x0922069f, 0x0f820e09, 0xa50b0e54, 0x8b202018, 0x3c013032, 0x0b0b0a0f, + 0x21201e10, 0x1111011c, 0x83a00e0e, 0x15012d04, 0x11100203, 0x1c01011c, 0xc4fe2b1c, 0x01222e85, 0xe053dc3c, 0x8b40200b, 0x0d955f44, 0xd65f19a5, + 0x0b93740c, 0x5c003730, 0x36130000, 0x17173237, 0x16150631, 0xc9410617, 0x27262408, 0x18270722, 0x41086bad, 0x661807b3, 0x21250988, 0x15033531, + 0x69328235, 0x84180934, 0x754d0950, 0x37362105, 0x603b1182, 0x04060c01, 0x1201060f, 0x11110c08, 0x0e0e0e68, 0x101e160f, 0x20170f0d, 0x72161521, + 0x981806d6, 0x80230820, 0x621f0140, 0xdb820a2b, 0xfe011f2e, 0x0c730140, 0x0d0f0401, 0x0f161e10, 0x682d3e82, 0x080c1111, 0x0f060112, 0x15160117, + 0x06345e21, 0xb3283485, 0x1010edfe, 0x281c2c10, 0x21051441, 0x07851010, 0x2c1c2823, 0x06175f10, 0x01c00134, 0x002e00c0, 0x006a004f, 0x25000077, + 0x31313736, 0x03503536, 0x17142107, 0x1a059447, 0x4f09bd5c, 0x062805eb, 0x35070607, 0x27373631, 0x09492019, 0x4305c843, 0x325305e8, 0x06185b09, + 0x03821683, 0xa16c2320, 0x27262105, 0x33202082, 0x080c185a, 0x253f012c, 0x32021616, 0x314b4b31, 0x16160232, 0x3d050225, 0x01012525, 0x32331d1e, + 0x33323f3f, 0x01011e1d, 0x053d2525, 0x05020202, 0x5b180d09, 0x0d250b84, 0x31020509, 0x07e04702, 0x5d31023c, 0x0113121a, 0x07070601, 0x0f0c0c04, + 0x040c0c0f, 0x01060707, 0x1a121301, 0x00821020, 0x05852020, 0x26184c24, 0x69832f27, 0x2f2a7183, 0x1b182627, 0x361b011e, 0x69864637, 0x462c7584, + 0x011b3637, 0x09261b1e, 0x1b080f07, 0x094d5c18, 0x0f081b26, 0x442a0907, 0x3e070948, 0x01162a44, 0x1b1a090a, 0x0e182929, 0x05040405, 0x2929180e, + 0x09091a1b, 0x1c1b0190, 0x85011b1c, 0x82002005, 0x44022000, 0x1922083b, 0x134b2f00, 0x1817201b, 0x1814d2e7, 0x24144344, 0xfe400120, 0x078f18c0, + 0x178f1807, 0x18a02008, 0x4313f173, 0x00200c99, 0x01200082, 0x00238f85, 0x70150020, 0xcd420cbb, 0x4220200a, 0x8a42052b, 0x43402008, 0xa74c0e32, + 0x00272c0a, 0x00580041, 0x33230100, 0x6d070623, 0xf8680596, 0x053e4205, 0x0903bf18, 0x5905af4e, 0x6e18062f, 0x172012b9, 0x20075b6c, 0x06177632, + 0x22312332, 0x01150607, 0xe0e0e0b0, 0x0140010f, 0xe0221716, 0x2707a549, 0x010f1010, 0x50fe0f01, 0x0120ef83, 0x230a134c, 0x0112121b, 0xb344ef83, + 0x25068306, 0x0f018001, 0x38871010, 0x40224184, 0x51820f01, 0x2205cd4f, 0x181b1212, 0x440b559b, 0xbb410ca0, 0xc0012707, 0x1900a001, 0xbb413a00, + 0x2944181c, 0x09c6411f, 0xfe220988, 0xef684fc0, 0x0e0e2115, 0x2015544e, 0x15dc688f, 0x41111121, 0x7f240a8f, 0xa2009900, 0x2623a982, 0x7d070627, + 0x16270939, 0x15313317, 0x6e312331, 0x098905e0, 0x2105a441, 0xeb7a1716, 0x41098d09, 0x535505ca, 0x865d1805, 0x0967550b, 0x4105c94b, 0x758507fa, + 0x35312323, 0x18ba6407, 0x2e085b7f, 0x161602b0, 0x12121b02, 0x02162801, 0x8b281602, 0x12012305, 0x1d831b12, 0x04883820, 0x102127a3, 0x072279c0, + 0x8207ff41, 0x01c02210, 0xb55e84a8, 0x23a29452, 0x0e090968, 0x370a6142, 0x00c0c020, 0xfffeff01, 0x01c201c0, 0x00c200c0, 0x17321300, 0x15163131, + 0x09bd5d18, 0x37270983, 0x16173631, 0x84310707, 0x20098207, 0x180b8206, 0x20095146, 0x85178517, 0x231d8413, 0x31272706, 0x27221f87, 0x0b881531, + 0x200be870, 0x068e6107, 0x07313522, 0x84089a61, 0x06365413, 0x18077a57, 0x76085552, 0x262606f7, 0x36373637, 0x58571717, 0x205b8207, 0x080b8835, + 0x34313534, 0xe0333637, 0x0f09090e, 0x0e0e1111, 0x08123d31, 0x05041515, 0x0c0c0c18, 0x03030608, 0x1416190c, 0x44160803, 0x16443c3c, 0x15150407, + 0x03030c19, 0x1c820806, 0x82051821, 0x1208280d, 0x0e0e313d, 0x460f1111, 0x418f0582, 0x89070d21, 0x3e432241, 0x21419f3d, 0x4682c001, 0x830f1e21, + 0x46312350, 0x77834323, 0x830e1321, 0x236e8241, 0x08060e08, 0x12298982, 0x03132423, 0x06081614, 0x8383830e, 0x130e298b, 0x14030816, 0x31462343, + 0x0f21be83, 0x05c9441e, 0x24214587, 0x21458b42, 0x4587070d, 0xa0122321, 0x01003145, 0xc0ff0000, 0xc0010002, 0x00001f00, 0x36352637, 0x280b1f5a, + 0x22070607, 0x06310727, 0x05155c23, 0x16f63735, 0x2c1c1b01, 0x1b29312b, 0x1701011b, 0x29242417, 0x59ec1b22, 0xed3705f3, 0x29211ce3, 0x17172424, + 0x1b1b0101, 0x2c2b3129, 0x16011b1c, 0x830909ed, 0x00ec211d, 0x2609a36d, 0x002600c1, 0x5e67005e, 0x312008a1, 0x7108ac54, 0x352c0d7f, 0x34313531, + 0x05232627, 0x07222726, 0x15208282, 0x4a05d443, 0x31200845, 0x3421a883, 0x05be4827, 0x4a054677, 0x2b820592, 0x27260725, 0x83311735, 0x31352a00, + 0x0aa00115, 0x1c1b1f1e, 0x075b7f02, 0x2b053a41, 0x0d01a0fe, 0x021e040e, 0x22171601, 0x3105d641, 0x01161722, 0x0e041e02, 0x0901010d, 0x020c0208, + 0x04820e0e, 0x0109082f, 0x01c00130, 0x27260e0f, 0x121b7047, 0xb5681812, 0x70802207, 0x2a4782d0, 0x0d030d10, 0x230a0988, 0x55041918, 0xe02706aa, + 0x23181904, 0x8288090a, 0x09862b18, 0x88080101, 0x0e01010e, 0x52820888, 0x01988624, 0x00820001, 0x18000121, 0x26075ffb, 0x3700003a, 0x82233323, + 0x21cb83ab, 0x05841717, 0x092d5b18, 0x26270624, 0x965b2627, 0x16172205, 0x073e4633, 0xe1712220, 0x23073305, 0x09090931, 0x0e010216, 0x2c2a0c0e, + 0x39383939, 0x6b192c2c, 0x3f37178c, 0x0b293140, 0x77100606, 0x801602e0, 0x0b060610, 0x0e0e2c2a, 0x822c0f0e, 0x87392036, 0x0d093136, 0x09090a0d, + 0x40312f2f, 0x2e2f3140, 0x0e0e0c29, 0x4718ac83, 0x1f3009e3, 0x3d003000, 0x57004a00, 0x36130000, 0x16313337, 0x3322ae82, 0xa3713231, 0x31332210, + 0x1a371937, 0x058d5611, 0x20052947, 0x260c9833, 0x78140987, 0x79070914, 0xfe20067e, 0x2906676a, 0x01670760, 0x0180fe80, 0xd3460180, 0x18602008, + 0x26192475, 0x0111ae01, 0x4b0e1101, 0x0e210b57, 0x05b87f6e, 0x01213f83, 0x05244740, 0x09ab7818, 0x002f098e, 0x00020000, 0x01d9ff10, 0x00a701f0, + 0x825e002e, 0x070621ed, 0x210b375d, 0x0a651736, 0x052b6905, 0x5b312321, 0x262205ca, 0xce582627, 0x37363207, 0x31313133, 0x17163133, 0x31070716, + 0x37323316, 0x82018336, 0x92cc1836, 0x05cc4409, 0x27823520, 0x8f352608, 0x0b050c1a, 0x060c0d0c, 0x25100405, 0x3938392c, 0x0c2a2c39, 0x02010e0e, + 0x10780816, 0x290b0606, 0x313f4031, 0x870d8c7f, 0x05062131, 0x0123318c, 0x83211b31, 0x2d4e8346, 0x0f2c252e, 0x2c0e0e0e, 0x06060b2a, 0x25428010, + 0x2e292305, 0x0988a92f, 0x78222a96, 0xff840008, 0xb001c028, 0x3700c001, 0x257e4500, 0x3133210c, 0x18057947, 0x4d0b2f55, 0x072107c7, 0xab441831, + 0x0d406a0e, 0x23068d7a, 0x31314c10, 0x08e67c18, 0x18200122, 0x22051d44, 0x4b392b15, 0x302106c5, 0x081e6b18, 0x2706f165, 0x38380e22, 0x3b3b5850, + 0x40223584, 0x6b441831, 0x23162205, 0x06b4430a, 0x8080c022, 0x0221df82, 0x18048416, 0x2d08975d, 0x002700a0, 0x01000055, 0x16172717, 0xd9691415, + 0x35262406, 0x18233135, 0x720ad5a4, 0x272009e2, 0x4e06256f, 0xd64205ca, 0xdd0c1909, 0x2c15890b, 0x7b7b7a01, 0x7b0b0b7b, 0x0a0e0e0a, 0x06a5420a, + 0x830a8021, 0x75da200d, 0x2b19092e, 0x01211524, 0x213a8356, 0x3c821010, 0x3e203082, 0x2006ff76, 0x2147823e, 0x0c820a0a, 0x4a18ff20, 0x476c090e, + 0x82178209, 0x8f00204c, 0xa61320db, 0x331323db, 0xec763323, 0x27342305, 0x58182326, 0x9c180b4b, 0x158909ea, 0xda97da20, 0xdaba8620, 0x82cafe21, + 0x8d0120c3, 0x00ff22db, 0x854d1829, 0x00002108, 0x09b77019, 0x00003a23, 0x44b18225, 0x2622052b, 0xae620707, 0x05c86406, 0x3721b182, 0x4bd91836, + 0x07944608, 0x3233362f, 0x06310717, 0x33171617, 0x0808d001, 0x2d144508, 0x14457820, 0x4704202f, 0x422b082f, 0x68005500, 0x00007b00, 0x82072601, + 0x4c15207e, 0x364e0514, 0x31232105, 0x57093e4e, 0x5c4e093e, 0x31232309, 0x0d833736, 0x35200782, 0x93180783, 0x9c181272, 0x142113ca, 0x058f4e07, + 0x35203282, 0x08058645, 0x090d0122, 0x04030506, 0x22171601, 0x12121b10, 0x0e150101, 0x0114141f, 0x111a1b01, 0x14010110, 0x70011f14, 0x10230f84, + 0x841b1a11, 0x150e2d0f, 0x12120101, 0x0105051b, 0x4d241717, 0x180b5a50, 0x3a0c509c, 0x18060240, 0x17292917, 0x01020618, 0x010ba80b, 0x0701bf01, + 0x0e0c0807, 0x84161722, 0x121e213f, 0x24255c83, 0x14130515, 0x8260841b, 0x141b256a, 0x24150513, 0x12210d83, 0x268b831e, 0x1a25110f, 0x45ff051b, + 0x894c0b8d, 0x046c2c0c, 0x11100a03, 0x10110202, 0x8204030a, 0xa7a71962, 0x05975808, 0x35001928, 0x60004800, 0x28570000, 0x9b521806, 0x06c56b12, + 0x23232322, 0x25058245, 0x17323336, 0x0f633117, 0x7b272005, 0x297b092b, 0x26272107, 0x084a2219, 0x68182120, 0x2623089e, 0x5ca03527, 0x3d580862, + 0xa0fe3b08, 0x606060ec, 0x0e070607, 0x070f8090, 0x08400906, 0x11080b0b, 0x0d0d0738, 0x8618cc07, 0x02210c48, 0x058e6a16, 0x1640012b, 0xfe160202, + 0x191925c0, 0x05e74c01, 0x84086d78, 0x906b3208, 0x0c0c9090, 0x0d0d010d, 0x0909500c, 0x0b0b5416, 0x0b7c410b, 0x3d830820, 0x2a6be020, 0x00e03b0b, + 0xfdff0400, 0xff01beff, 0x1e00c001, 0x4f003100, 0x00005d00, 0x37073725, 0x01833127, 0x1e4b0720, 0x09d76e05, 0x31373726, 0x37070737, 0x0722b382, + 0xde823731, 0x15313727, 0x33171631, 0x83128213, 0x3117212b, 0x23820183, 0x35201c83, 0x21053949, 0x30840722, 0x82262721, 0x362d083b, 0x01071617, + 0x0c0c0c9a, 0x0c223e22, 0x0710c716, 0x0a0a0423, 0x1016780e, 0x09fa16c7, 0x07060909, 0x0403174f, 0x200f0117, 0x0f0f0fcb, 0x2a258316, 0x120f170b, + 0x1a132812, 0x82301419, 0x0b0b24dc, 0x83900a0a, 0x82d92004, 0x084382da, 0xc7170b23, 0x0d791510, 0x24030a0a, 0x17c71006, 0x171717a8, 0x4e170205, + 0x20090607, 0x7d01020e, 0x170e0e0e, 0x2126840b, 0x4182140e, 0x13132723, 0x2a4482a8, 0x0b0c0909, 0x0b090990, 0x8202000c, 0x82bd20fb, 0x00bf24fb, + 0x60240011, 0x1720055b, 0xfd8cb991, 0x6b012727, 0x82313131, 0x23948631, 0xe9e9e947, 0x1525c587, 0x0182ea10, 0x831d84ad, 0x122833af, 0xeaea4712, + 0x78160fea, 0x040a0a0e, 0xea0f0723, 0x00820082, 0xfeff0222, 0x22066f41, 0x464b001f, 0x30240b3f, 0x27313031, 0x05830382, 0x09822720, 0x21056142, + 0x7e832607, 0x22053c41, 0x41173233, 0x05830560, 0x07310722, 0x0c5ec618, 0x27313726, 0x2828c501, 0x34257582, 0x11601001, 0x08828334, 0x1111d421, + 0x0e111166, 0x1d16660e, 0x110d161d, 0x11011060, 0x19664aab, 0x0209090d, 0x9b491505, 0x82ad010d, 0x86288330, 0x60132132, 0x0e212b82, 0x2135820e, + 0x2e851515, 0x1549ac29, 0x09090205, 0x8266190d, 0x01002f2e, 0xc0fffcff, 0xc0014401, 0x00002200, 0x8d820637, 0x32331622, 0x2405b155, 0x11312327, + 0x06fe4531, 0x15060725, 0x82233111, 0x06022d9d, 0x0a07880b, 0x0b88070a, 0x480f0706, 0x2d068a46, 0x71070f48, 0x07900c0e, 0x0e0c9007, 0x6d18010e, + 0x012b0921, 0x0001000e, 0x021d0000, 0x85630100, 0x2727255f, 0x34352631, 0x17255f83, 0x31151716, 0xa1701821, 0x3121220a, 0x295f8215, 0x900b0fb2, + 0x0b900808, 0x478b0d0f, 0x05220d23, 0x2176850a, 0x768c050a, 0x25215f8d, 0x42598316, 0x072205a4, 0x5f830706, 0x250bc676, 0x17163115, 0xa8894f01, + 0x7d4bfe20, 0x20012306, 0x60980e01, 0x0126bf82, 0xc0fffdff, 0x23414301, 0x36012105, 0x2321c383, 0x05424222, 0x31331722, 0x2a08fe47, 0x11353637, + 0x36313331, 0x963e0137, 0x0e0121ad, 0x7c8add89, 0x2f5e0d20, 0x02bf2206, 0x26638240, 0x00280021, 0x584e003a, 0xdf4c083d, 0x42078307, 0x1720061f, + 0x0d059718, 0xd4471720, 0x18272008, 0x181aacc8, 0x2c09c796, 0x12060f57, 0x1bc30504, 0x01011212, 0x3c008380, 0x0e0e0ea6, 0x471d0c0c, 0x100f0d1d, + 0x8181ee0d, 0x06814781, 0x06093c09, 0x030f0106, 0x05e96106, 0x090e8033, 0x0f577e09, 0x0d0e4b16, 0x1b121201, 0x80408001, 0xb5c81880, 0x22388207, + 0x85b50c0c, 0x0f022336, 0x3b840602, 0x012ad382, 0xe0ff2000, 0xa001e001, 0x53785900, 0x05c44b05, 0x37371626, 0x07311731, 0x18055274, 0x850c058d, + 0x17062517, 0x31331716, 0x8309cb47, 0x605f18d4, 0x0631240a, 0x85170607, 0x3137293f, 0x27262736, 0x909090c8, 0x2305bd47, 0x284f4f28, 0x2405064b, + 0x06061090, 0x230e830b, 0x1006060b, 0x01231d9d, 0xaa1602a0, 0x824c8e2e, 0x056f52e6, 0x01800125, 0x4a2400c0, 0xa25d06fd, 0x05cd4705, 0x41114572, + 0x152005bd, 0x117b5418, 0x0dd8e918, 0x1820c025, 0x46260a18, 0xd9530863, 0x0b252308, 0x10471818, 0xa050270c, 0x010fa0a0, 0x04840f01, 0x01c00125, + 0x541c1211, 0x1c2313fb, 0x54011112, 0x65750cff, 0x20c48208, 0x2a038201, 0x0100023c, 0x002b0044, 0x43362500, 0x23230a43, 0x18313531, 0x2e1384e3, + 0x17163115, 0x01373716, 0x700808f8, 0x820d0f0b, 0x0f0d2377, 0x0c8c700b, 0x0a08ae30, 0x0a68080a, 0x380f0706, 0x06070f38, 0x0f8f680a, 0x7f440020, + 0x01042206, 0x187783c0, 0x530a87bb, 0x914407a1, 0x3135290f, 0x37363133, 0x92272736, 0x0f8f4b8f, 0x8cb80121, 0x580c8c8b, 0x1a220be7, 0x86823c00, + 0x2105b141, 0xe9571506, 0x24618205, 0x34353637, 0x25f78227, 0x17270327, 0xbd7e2627, 0x05d24b0a, 0x87821520, 0x16173226, 0x06310707, 0x16935719, + 0x70700b28, 0x05030770, 0xf965400a, 0x0a402806, 0x70070305, 0x19010b0b, 0x20198023, 0x22328375, 0x4e01090a, 0x602606cc, 0x70070a0a, 0x23790a0a, + 0x0805630c, 0x25192720, 0x372614fb, 0x17363707, 0x9d861716, 0x31151524, 0xb4180714, 0x272508e5, 0x37263127, 0x189b7602, 0x7d95fe20, 0x97147e76, + 0x105741db, 0x26193720, 0x63191a07, 0x5e4d08f5, 0x17172412, 0x98071631, 0x8b0121aa, 0xae142841, 0x0f5741aa, 0x41068d57, 0x062107f7, 0x42018207, + 0x1320060f, 0x2105f675, 0xa0182307, 0xb9840e20, 0x31373723, 0x1f261936, 0x17274116, 0x95198a7a, 0x0b5741d9, 0x53001f24, 0x64180000, 0x0620088b, + 0x3321a183, 0x45838232, 0x34250722, 0x23232627, 0x05cf4205, 0x210b7b44, 0x4a183135, 0x38190b2d, 0x60381335, 0x0e070915, 0x0909aa2a, 0x0a0d0d0a, + 0x131029a9, 0x09090113, 0xf0fe800e, 0x08f45718, 0x1c333819, 0x13130125, 0x4fa92910, 0xaa30056a, 0x09070e2a, 0x090e8015, 0x16012009, 0xc0fe2217, + 0x70204287, 0x2005bd4a, 0x95cd1870, 0x20df850d, 0x065b58e0, 0x83763920, 0xde431808, 0x3631270c, 0x21373637, 0xfe452207, 0x18f98306, 0x84079d45, + 0x353525fb, 0x23272631, 0x4405ae46, 0xe0350fff, 0x0703050a, 0x06064728, 0x08080624, 0x08284706, 0x0f010a09, 0x15585890, 0x0a0a8022, 0x27822a83, + 0x82062421, 0x0307272a, 0x0e900b04, 0xa3850002, 0x0002bb28, 0x2100c501, 0xf1644300, 0x83352005, 0xd3ce1894, 0x26272409, 0x18313527, 0x20097a44, + 0x09e24501, 0x2005dd48, 0x0fff4806, 0xba5a2020, 0x13012b05, 0x09601013, 0x13106009, 0xc05a0113, 0x06555708, 0x8bc0fe21, 0x4001321d, 0x15406001, + 0x600e0709, 0x0a0d0d0a, 0x08080e60, 0x06d34515, 0x4c00ff21, 0x1d880560, 0x0f600922, 0xb78b1d83, 0x55002a22, 0x08139218, 0x36373223, 0x05d15835, + 0xc9451520, 0x45312005, 0x06230df5, 0x7f070607, 0x222206e4, 0xa64e0607, 0x150a4606, 0xd2184683, 0xa0200a9d, 0x9582b083, 0xce834020, 0x2d44a025, + 0x9c02022d, 0x0686491d, 0x1b1b2924, 0x6f192001, 0xbc820adf, 0x2d022025, 0x4240442d, 0x1e970532, 0x09c34718, 0x0c006027, 0x00003600, 0x0b306125, + 0x4f066461, 0x52180534, 0x36250b91, 0x16171637, 0x099f5117, 0x40012323, 0xca5d182d, 0x0c9d290a, 0x3b3b2b2b, 0x830c2b2b, 0x83207d85, 0x70200f8f, + 0x0bc85d18, 0x23383024, 0x8a180124, 0x0d890de7, 0x0c0be918, 0x52004927, 0x00005b00, 0x0a147e13, 0x660f685e, 0xa983131e, 0x3320af82, 0x3720da82, + 0x2223cb83, 0x48070607, 0x07200546, 0xf6824987, 0x50220a85, 0x0f530216, 0x19202005, 0x8d0d4807, 0x3729220d, 0x8be81857, 0x1319290b, 0x26570914, + 0x20051a1b, 0x01213d87, 0x08555308, 0x09878820, 0x328f6120, 0x108fce20, 0x011f5722, 0x162a6787, 0x0e0d0117, 0x18180115, 0x3f87ff26, 0x5c878820, + 0x26067b45, 0x00c00140, 0x4f3e0035, 0xaf4408ab, 0x31332105, 0x180b917e, 0x200de086, 0x0b276c33, 0x35150528, 0x35312115, 0x455c2131, 0x0bb02208, + 0x05af4145, 0x22073852, 0x6bb00b45, 0x6d8208fe, 0x0382fe20, 0x41180120, 0xca5d0a54, 0x0120220c, 0xd88b1812, 0xe0402107, 0x00200082, 0x022c0082, + 0xe0fffbff, 0xa8010502, 0x3a001500, 0x3635a782, 0x32313333, 0x16311717, 0x06310307, 0x03272223, 0x37372631, 0x05904a17, 0x16070622, 0x32231982, + 0x1a333031, 0x3f12f184, 0x0c077507, 0x70070cf0, 0x07e80b0a, 0xe8070b0b, 0x26700a0b, 0x943a0305, 0x06010106, 0xc00101c0, 0x93340783, 0x06050339, + 0x055a5a05, 0x0a9e0106, 0x0e10980a, 0x080800ff, 0x102cc982, 0x06042898, 0x07010c60, 0x10100107, 0x0c290583, 0x04040660, 0x05616105, 0x2fa28204, + 0x00000100, 0x6301c0ff, 0x2e00c001, 0x16250000, 0x2006b854, 0x23998227, 0x31333736, 0x4705f745, 0x14590d63, 0x31332505, 0x5e011716, 0x240bab4c, + 0x0e090958, 0x05404150, 0x25365025, 0x4d580124, 0x90440cd8, 0x82202006, 0x24012720, 0x01c03625, 0x7b8d000e, 0x48101b4d, 0x854d077f, 0x05bf4109, + 0xa005c549, 0x0b2f4d7b, 0x0d207c90, 0x02217b85, 0x20f78240, 0x7888823b, 0x7c18097b, 0x89780f37, 0x2f571805, 0xd564180b, 0x3123250b, 0x01600135, + 0x45063569, 0x46610542, 0xa8451907, 0x1201260e, 0x01201b12, 0x07ca4630, 0x24068c74, 0x28293d30, 0x6f391902, 0x00022118, 0x09df6a19, 0x00002922, + 0x22054b72, 0x71313137, 0x16210b69, 0x05cb6c17, 0xe97b0320, 0x19d8200b, 0x200de36a, 0x323e1a02, 0x21332615, 0x3b3b3738, 0x3482182d, 0x3b2d2107, + 0x13103e1a, 0x0d2b6718, 0x64002f23, 0x714d1900, 0x37362308, 0x71183736, 0x099109b4, 0x57070063, 0x896a0597, 0x777c1805, 0x05444207, 0x2006465f, + 0x07165f33, 0x0abde618, 0x1b01602c, 0x1b29291b, 0x0f50011b, 0x08190101, 0x0b850758, 0xe0271987, 0x36252401, 0x73242536, 0x2b2205b2, 0xe618422a, + 0x602314cd, 0x83a0a0a0, 0x24358347, 0x010f0f01, 0x87048820, 0x10902315, 0x46831010, 0x3b5f4e83, 0x7c681805, 0x16022808, 0x0a220216, 0x84443030, + 0x6b182017, 0x70280897, 0x1900c001, 0x35002c00, 0x560a694f, 0xfa830bdc, 0x66131121, 0x13291188, 0x11233323, 0x11313331, 0x38591810, 0xf6611811, + 0xe050210c, 0x8e480082, 0x0863610a, 0xfe800122, 0x0c688d18, 0xc02a0f82, 0x00004001, 0xff100002, 0x978501c0, 0x13452720, 0x091f7110, 0x6e132321, + 0x50200c10, 0x4207e044, 0xe02408ae, 0x40404050, 0x6d086970, 0xec7016f0, 0x6c002008, 0x778505a7, 0x2f002622, 0x4f1c0f41, 0x2625059a, 0x06312327, + 0x1b094107, 0xf3708020, 0x41a02009, 0x945b1b07, 0x07034107, 0x82000721, 0x40022200, 0x4f1c1901, 0x4177200d, 0x2d720e0d, 0x3323270d, 0x16313523, + 0x1c191617, 0x6f181e51, 0x37221a8a, 0x06621716, 0x08c94208, 0x5a46e485, 0xb1411808, 0x8240200b, 0x121b2900, 0x40400112, 0x1b121201, 0x2005655c, + 0x20298440, 0x7a6f1840, 0x014c2915, 0x0212040f, 0x18181202, 0x04250583, 0x12101202, 0x79f61802, 0x811c1915, 0x1840201a, 0x2513716b, 0x30041030, + 0x55831202, 0x44021222, 0x00220683, 0xe3760200, 0x00233008, 0x1300003b, 0x31312726, 0x31070726, 0x69140706, 0x012a0893, 0x26273631, 0x26310107, + 0x09823727, 0x07132724, 0x5f480737, 0x05535105, 0x30842720, 0xe5272633, 0x0e0e0d06, 0x1b021c58, 0x109c301a, 0x02130f0c, 0x32058350, 0x121ba4fe, + 0x28091531, 0x5c5c5c61, 0x4f47463a, 0x18180a1d, 0x35074b41, 0xa7011417, 0x0306060f, 0x511d0a18, 0x7a3a4848, 0x0c10130f, 0x0583d001, 0x20effe2f, + 0x1b132827, 0x48c1fe60, 0x192d4848, 0xec3f191a, 0x0d0b210a, 0x270a4351, 0x00260019, 0x0100003d, 0x2721b584, 0x21b58221, 0xc74c0706, 0x0511210b, + 0x200b0b74, 0x05f64507, 0x82313321, 0x4e1720bd, 0x222305ec, 0x41352627, 0xff21155b, 0x0bbd6f00, 0x13013030, 0x1d571e13, 0x08011313, 0x0ca90b08, + 0xab430808, 0x24802115, 0x0a629218, 0x821ea521, 0x2137832e, 0x0082080b, 0xff460b20, 0x02e02905, 0x00a50100, 0x13000030, 0x8305794f, 0x0706218a, + 0x23220184, 0x177b2726, 0x19232009, 0x550a0130, 0xcd240503, 0x4b700112, 0x36c25f19, 0x190e0d21, 0x2112c25f, 0xea180200, 0x2e220ad7, 0xea180000, + 0x15231ed9, 0x84111111, 0x5635209f, 0xea1805a6, 0x442b1be9, 0x0f102627, 0x03c001b0, 0x180f0750, 0x2d15efea, 0x0186fe43, 0x2386fe7a, 0x3a393636, + 0xbb614a2e, 0x0f674509, 0x1a12ef66, 0x28121f60, 0x21212113, 0x31213111, 0x3ac01811, 0x26cd1914, 0xfe80220d, 0x06484dc0, 0x20086445, 0x206e45fe, + 0x2205834a, 0x8301c001, 0x0f6f459f, 0x450d6144, 0xbc660c6f, 0x73702014, 0x71452262, 0x00002309, 0xe7440001, 0x452d2007, 0x1741086f, 0x092d5f05, + 0x21210985, 0xd2ad1831, 0x41098409, 0xc020050f, 0x0f79e118, 0x9784fe20, 0x1e0e0227, 0x0e1e0202, 0xb0b91802, 0x47e11809, 0x1201230d, 0x11891b12, + 0x270daf51, 0x25000030, 0x31313732, 0x52062c5d, 0x15270761, 0x17161714, 0x50073316, 0x4e180552, 0x1c6b0711, 0x01232205, 0x734e1800, 0x445f3213, + 0x09022d2e, 0xc2010d09, 0x0209090d, 0xbe442e2d, 0xcc4e18a0, 0x83202013, 0x8221821a, 0x20308329, 0x0e1f6a00, 0x42476368, 0xfe220809, 0x63686f80, + 0x05634547, 0xc7010730, 0x39001b00, 0x36010000, 0x16311717, 0x99660707, 0x23072205, 0x099e6331, 0x33013726, 0x17163323, 0x09147c18, 0x27270623, + 0xf4a61831, 0x01372b08, 0x201111b7, 0x27570e0e, 0xa956050a, 0x57272308, 0xd45691fe, 0x57272108, 0x0b302086, 0x01100606, 0x200e0eb9, 0x27571111, + 0x010e0f0b, 0x8206b756, 0x88f7202d, 0x231e860a, 0x010e0e0c, 0x2905df42, 0xc0010002, 0x3b001d00, 0x879d0000, 0x53640320, 0x3137210c, 0x0121d08d, + 0x208f9558, 0x831691b0, 0xc00121c7, 0xfe219093, 0x83158f00, 0x000026c5, 0xff010003, 0x29a784b5, 0x002d0020, 0x0100003a, 0xe9580722, 0x21078206, + 0x955c3117, 0x59362005, 0x232009db, 0x0cd0bb19, 0x7f062521, 0x07390950, 0x0e13a801, 0x490c109d, 0x33250f0b, 0x74110e26, 0x0e9d1013, 0x130e290e, + 0x0bae4f58, 0x0e0ffe26, 0x1111400e, 0x01210484, 0x222f82c0, 0x82117413, 0x0f25242f, 0x820c490b, 0x1313212f, 0xfe213182, 0x0b0e5050, 0x11112125, + 0x840e0e40, 0x66af8304, 0x503507fb, 0x6a005d00, 0x06370000, 0x36272223, 0x16373637, 0x16071415, 0x05746517, 0x32333225, 0x83171633, 0x15143701, + 0x07222326, 0x33161506, 0x17323336, 0x07060706, 0x37343526, 0x396f2726, 0x23222505, 0x27262322, 0x34230183, 0x83331635, 0x2726243b, 0x7c170637, + 0x2c8206cb, 0x82260521, 0x08108704, 0x08073f25, 0x3a0e1617, 0x0106553a, 0x020f0e01, 0x01020601, 0x39480102, 0x0122223a, 0x08091917, 0x080e030f, + 0x9c151807, 0x0c3a2e20, 0x450e0804, 0x0e0d0521, 0x013b1c07, 0x080b8916, 0xe1050c20, 0x3a550601, 0x17160e3a, 0x030e0807, 0x1909080f, 0x22220117, + 0x0348393a, 0x02010603, 0x1d9c0f0f, 0x0f010e2f, 0x050d0e07, 0x080e4521, 0x1c3b0c04, 0x240a894b, 0x00000e07, 0x08ff6008, 0x1100093a, 0x2b001e00, + 0x41003800, 0x57004900, 0x17130000, 0x37361727, 0x07062734, 0x2108e782, 0x37363316, 0x07223727, 0x07061516, 0x31373117, 0x22072726, 0x16150627, + 0x27313717, 0x05070631, 0x11823536, 0x31173129, 0x17323736, 0x83232607, 0x37362124, 0x14203782, 0x35084282, 0x17272727, 0x16310727, 0x26373217, + 0x57373635, 0x23555555, 0x31420601, 0x140e2c17, 0x552a3b16, 0x060b0bc0, 0xa93d2c01, 0x18d06346, 0x3e020117, 0x48343da9, 0x0886cf01, 0x05171822, + 0x2c222484, 0x3484a60e, 0x3d175527, 0x45a93d3d, 0x21338464, 0x4b828001, 0x3b2a2108, 0x2c0e1416, 0x06423117, 0x57552301, 0x48181701, 0x3ea93d34, + 0x0b06f002, 0xa946630b, 0x26012c3d, 0x06210887, 0x22228320, 0x85354231, 0x214a8532, 0x3284023e, 0x00000022, 0x26090b62, 0x002d001a, 0x18530040, + 0x5a1df750, 0xa3601227, 0x18259112, 0x65151651, 0xe44f0633, 0x0cfe5005, 0x85066753, 0x19a15619, 0xd418b020, 0x2d850c29, 0x5c5a0585, 0x20e7820c, + 0x08f34105, 0x5200412b, 0x95006300, 0x00009f00, 0xa41c1a13, 0x3123270f, 0x17140706, 0x484e3117, 0x07312506, 0x27313331, 0x504e0382, 0x31372705, + 0x27263536, 0x6f6d3123, 0x0703250a, 0x15060737, 0x2505884c, 0x31272734, 0x108f2123, 0x35152723, 0x85528315, 0x6246184a, 0x20608307, 0x21668215, + 0xd94b3135, 0x200b8b05, 0x05467917, 0x90396782, 0x010f0f01, 0x01010f10, 0x1234100f, 0x02210102, 0x16020216, 0x10881004, 0x25088304, 0x02012102, + 0x1e853412, 0x2b2b602e, 0x1602052b, 0x050216d0, 0x2001a02b, 0xb0200d85, 0x80280d83, 0x021b0820, 0x081d047e, 0x0f224482, 0x058a1801, 0xb94e5020, + 0x84b02005, 0x2a0b845f, 0x04041202, 0x16160254, 0x83808002, 0x04542505, 0x20021204, 0xfe268384, 0x3a3a3a70, 0x76830806, 0x82060821, 0x2c0b890a, + 0x343434d0, 0x481f090c, 0x0c091f48, 0x854a8434, 0x20058491, 0x23108360, 0x00002020, 0x2705ff45, 0xc0014001, 0x3e002d00, 0x21089367, 0x63641716, + 0x05ab4a05, 0x54313521, 0x07300552, 0x26270631, 0x26313737, 0x34373627, 0x23232627, 0x18076541, 0x0807fc41, 0x0e802333, 0x19020909, 0x03262624, + 0x14111201, 0x121114c0, 0x64180101, 0x0a0a0b0b, 0x1924266a, 0x0e090902, 0x29295040, 0x15020729, 0x02151201, 0x01e02907, 0x3b1382c0, 0x3a21061a, + 0x14234a3b, 0x1b1b0915, 0x23141509, 0x0a633038, 0x6a0b0b0a, 0x1a06213a, 0xfe205082, 0x09283284, 0x15020215, 0x00290709, 0x2f06137f, 0xa001c001, + 0x62001900, 0x74006b00, 0x86007d00, 0x2a1bfd4d, 0x15351517, 0x31353133, 0x82153133, 0x20078503, 0x210b8423, 0x07893115, 0x0b843520, 0x56182320, + 0x278308ac, 0x078a1383, 0x23331723, 0x82268433, 0x84352050, 0x20108239, 0x86548623, 0x14fa491a, 0x00a14020, 0x94156858, 0x8a802037, 0x67a51915, + 0x0040230c, 0x4d6f0052, 0x0ab85609, 0x536bec84, 0x31072305, 0x61613121, 0x33362205, 0x6fab1833, 0x390d820d, 0x33363734, 0x37073703, 0x31173121, + 0x07061516, 0x27263121, 0x0ee03734, 0x14440909, 0x98102e06, 0x030c0b11, 0x4de0fe4d, 0x110b0c03, 0x33158798, 0xb90e0909, 0x01292929, 0x02072920, + 0x15aefe15, 0xc0010702, 0x10201382, 0x20050844, 0x252a8230, 0xb9b90708, 0x3c820807, 0x13853020, 0xfe213983, 0x21338227, 0xdb410729, 0x50ca8206, + 0xb0280667, 0x3000c001, 0x49003900, 0x0728cd82, 0x15060737, 0x17143115, 0x37209082, 0x2006e647, 0x219a8317, 0x9e833107, 0x4307b943, 0x258205af, + 0x78181720, 0x03240777, 0x17161506, 0x08079a42, 0x07312125, 0x0d0d0d60, 0x170b0e13, 0x03040319, 0x080b0b32, 0x19800801, 0x1d400101, 0x36360203, + 0x02128c52, 0x4f18150b, 0x61200724, 0x0121c482, 0x25c48272, 0x29c0fe29, 0x38839001, 0x841b2108, 0x0e070a11, 0x0302020b, 0x07070725, 0x57060909, + 0x119f2012, 0x36520f11, 0x12020236, 0x440a060c, 0x23055f4f, 0x9bfe1202, 0x2922d087, 0xaf510029, 0x01302905, 0x002700a0, 0x37000037, 0x73113376, + 0x162105b5, 0x05884417, 0x44065943, 0x20080dbc, 0x16d80731, 0x1d010d0d, 0x1e2c2c1e, 0x0d0d011d, 0x090e0917, 0x0d1b0209, 0x021a0ca0, 0x080e0909, + 0x20ae82c1, 0x26ad83f2, 0x0ee029c0, 0x831c1717, 0x222d8325, 0x8217171c, 0x1b0e2628, 0x05707005, 0x2009821b, 0x46988af9, 0x0c200c63, 0x46229b82, + 0x7b1a5700, 0x07200e1f, 0x2005ff58, 0x21b48236, 0x7e541716, 0x83362005, 0x07072407, 0x18212331, 0x21081362, 0x1f823233, 0x0ed18018, 0x21210723, + 0x0b3f4221, 0x00013722, 0x85054d76, 0x067a2705, 0x14081418, 0x04822c2c, 0x06061836, 0x10171110, 0x0a0e0d0e, 0x6b050203, 0x6bf0fe10, 0x0a030205, + 0x102a0f82, 0x06101117, 0x2001907a, 0x5542e0fe, 0x0129230a, 0x2e7601c0, 0x1690380a, 0x25100102, 0x10250202, 0x15160201, 0x07070e0d, 0x0a0b0608, + 0x82b0b00b, 0x08062804, 0x0d0e0707, 0x42d05015, 0x29210860, 0x085f4200, 0x3900a033, 0x5f004d00, 0x35130000, 0x37363515, 0x17163133, 0x62038215, + 0x0f970553, 0xf9821420, 0x21311725, 0x82313731, 0x173526fd, 0x36332333, 0x0b325d37, 0x07171622, 0x20103a43, 0x05e45220, 0x07200723, 0x2c098e01, + 0xfe10330d, 0x0d3310e0, 0x202020b0, 0x1ca4180f, 0x29b93408, 0x40012929, 0x15020729, 0x02158efe, 0x90000107, 0x820f9090, 0x8228203a, 0x2807213f, + 0x902b098d, 0x90260a10, 0x100a2690, 0x560f0160, 0x0f210769, 0x43418301, 0x002c0e53, 0x8002e0ff, 0x3700a001, 0x78006f00, 0x4408817b, 0x6618051f, + 0x075811cd, 0x070a5b07, 0x3729e282, 0x31333336, 0x35152135, 0x44348715, 0x9618054c, 0xa318092e, 0x35200d13, 0x85064a44, 0xd2a6182d, 0x60602008, + 0x068606e7, 0x137b2020, 0x21108308, 0x0f8dc001, 0x80222b8d, 0x2171c0c0, 0x40a02207, 0x094c48a0, 0x0a196318, 0x00824020, 0x0d2b6318, 0x8806ae48, + 0x82a02030, 0x00403b21, 0xff090006, 0x01f701c9, 0x000f00b6, 0x00210017, 0x003b002e, 0x13000048, 0x01830706, 0x36311723, 0x32018337, 0x27361727, + 0x07262726, 0x17270117, 0x16170627, 0x18371617, 0x25071580, 0x26312727, 0xfd4c0737, 0x05a94d05, 0xf8280c8c, 0x2d621215, 0x14ee0c1b, 0xed300684, + 0x060f08f7, 0xbd445715, 0xbdbddffe, 0x051008bd, 0x37250b82, 0x0a400b0b, 0x2004840a, 0x280a9430, 0x0705a701, 0x322d4e27, 0x290686ee, 0x154557b4, + 0xbd060e04, 0x4382ddfe, 0x0f280b83, 0x0a4b0107, 0x0b0b400a, 0x30200484, 0x00200a94, 0x2d075f49, 0xc0018001, 0x27001400, 0x4b003800, 0xc9627400, + 0x051c5c08, 0x2607de43, 0x31071407, 0x82230631, 0x323325e9, 0x34373637, 0xf683fa82, 0x35200c83, 0x14240c83, 0x37230607, 0x1684238c, 0x674a0720, + 0x14661805, 0x0b73750d, 0x42272621, 0x3008054f, 0x17018001, 0x27d42717, 0x02011717, 0x52523636, 0x8e023636, 0x0a0e090a, 0x0f0d0904, 0x09010909, + 0x09340206, 0x0e0d0a03, 0x07080a09, 0x0e090a02, 0x89038271, 0x09cf2410, 0x41400e09, 0x102006ce, 0x21092d43, 0x3a820e10, 0x29330028, 0x2a1a1a2a, + 0x53833329, 0x41205b83, 0x022a4482, 0x090a0807, 0x03090d0f, 0x0a843209, 0x0a0d0e28, 0x0a0e0903, 0x1b871109, 0xe2201084, 0x21089b4a, 0xca460f01, + 0x205d8407, 0x20008200, 0x28048502, 0x12008001, 0x00002700, 0x056d5425, 0x25072f41, 0x07060706, 0xbf183617, 0x0129123a, 0x48486d00, 0x48480303, + 0x2207876d, 0x871a26c0, 0x261a260e, 0x4f71714f, 0x07db58c0, 0x02230787, 0x5882160e, 0x822607a7, 0x011d0e16, 0x1b531d01, 0x40023006, 0x2000c001, + 0x4b003e00, 0x16010000, 0x44313115, 0x162b0584, 0x23070615, 0x35312731, 0x6c373631, 0x05200998, 0x22088362, 0x7f342726, 0x06220853, 0x0b833627, + 0x7b181720, 0x2f080cea, 0x09093702, 0x020722c0, 0x026c1d15, 0x22070915, 0x0d0d0ac0, 0x76a8fe0a, 0x2f057676, 0x14ae3c2b, 0x037f0702, 0x33040203, + 0x2201020b, 0xf1433108, 0x210be94e, 0x2c83b701, 0x09263d82, 0x1d6c0215, 0x3d820215, 0xe2090922, 0x43353a82, 0x02012a31, 0x71070a14, 0x02030403, + 0x310c0419, 0x052f0823, 0x0b564f75, 0x00820020, 0xf34b0120, 0x00082208, 0x09c25300, 0xfe000223, 0x21038300, 0x0783c001, 0x03202782, 0x08362784, + 0x1800c701, 0x61004600, 0x22250000, 0x06313107, 0x33312707, 0xf7823731, 0xd0833620, 0x07161725, 0x82252726, 0x150630f7, 0x23221714, 0x27263123, + 0x23263127, 0x82070706, 0x83222029, 0x8435200b, 0x343721fd, 0x272a0b83, 0x37343135, 0x31173205, 0x8e181631, 0x342e0e5e, 0x36373637, 0x26a00133, + 0xe8111e1e, 0xc1743c01, 0x33290805, 0x211b0c0b, 0xf191fe2c, 0x1102f1f1, 0x35030405, 0x0d0b0926, 0x093a0a0d, 0x200a0e0e, 0x430a0109, 0x0a0a010a, + 0x01110124, 0x6683186f, 0x14a03213, 0x3ce92013, 0x0e0e0f2c, 0x43332c0f, 0x01193f43, 0x26488288, 0x1d230c0b, 0x820a2401, 0x313d8239, 0x0e0a2009, + 0x0a3a090e, 0x090b0d0d, 0x22033526, 0x8318a81e, 0x002013f2, 0x098b5518, 0x0c00c035, 0x2a001900, 0x44003700, 0x00005100, 0x36070625, 0x50272627, + 0x07230541, 0x82060706, 0x3736210c, 0x37200e82, 0x31240882, 0x36272631, 0x22056150, 0x82272607, 0x05565024, 0x3723e782, 0x7e171617, 0x1320097e, + 0x33842682, 0x9b081282, 0x28000223, 0x1c1b0629, 0x32335136, 0x19090402, 0x4853524b, 0x403d3a24, 0x02ec3e41, 0x282e1b1b, 0x4504042e, 0x42072524, + 0x171f863d, 0x122f2f49, 0x26250107, 0x031d463e, 0x1026263a, 0x2e061824, 0x4d30502e, 0x4113093d, 0x23484b4b, 0xb5342d2d, 0x4750020e, 0x42193446, + 0x05065942, 0x24293023, 0x37320605, 0x07062024, 0x3b453712, 0x2e0f2d3b, 0x03574a4b, 0x231bda20, 0x493b3b23, 0x3c4b201d, 0x3b5a213b, 0x35352445, + 0x532b1f3e, 0xfe264445, 0x29270177, 0x0b0c2d25, 0x13132115, 0x075b4818, 0xe001c033, 0x5300c001, 0x65005c00, 0x77006e00, 0x89008000, 0x2b6f1800, + 0x4a032054, 0x1720074a, 0x22053561, 0x87373736, 0x08526111, 0x11870720, 0x23872720, 0x34616f18, 0x0f013022, 0x2005e65a, 0x21068550, 0x11880f01, + 0x11871020, 0x6c187020, 0x6f18104d, 0xfe213e97, 0xc34c18d0, 0x186c8810, 0x8811e74c, 0x06874190, 0x02200034, 0x00600180, 0x00190010, 0x0034002b, + 0x0046003d, 0x6373004f, 0xe5601806, 0x03112109, 0x2007a357, 0x051c5621, 0x63311521, 0x11210554, 0x544f1831, 0x41372009, 0x4d41073b, 0x23118808, + 0x6060e001, 0x25083a71, 0x00ff2060, 0x03830001, 0x2109ba57, 0x67186060, 0x782008ae, 0x20073a62, 0x074c6278, 0x20291188, 0x1b121201, 0x12121bc0, + 0x08065801, 0x01221087, 0x37877040, 0x88082476, 0x18118837, 0x2a0ccb91, 0x0016000b, 0x13000027, 0x4d073707, 0x062d0542, 0x23331707, 0x26312733, + 0x15312327, 0x85f18217, 0x312127e5, 0x37363736, 0x00823335, 0x1d72d030, 0xd0d0bd0e, 0x1d0e33d0, 0x40fed072, 0x0382c001, 0x83578182, 0x65852c06, + 0x01806565, 0x1a65651a, 0x5d208001, 0x034609a3, 0x0024240b, 0x8270004a, 0x51621873, 0x072a610c, 0x2205bb64, 0x56063115, 0x03200556, 0x840d6a41, + 0x849b8284, 0x2223879d, 0x18012331, 0x880e2b78, 0x2331353e, 0x16072231, 0x14311515, 0xf8331607, 0x14282828, 0x01010d0e, 0x2557ad82, 0x0e0d2c05, + 0x0f012814, 0xb8010f30, 0x8412121b, 0x08e57217, 0x28241785, 0xa0a02001, 0x1728138f, 0x11080811, 0x01c00117, 0x70203e82, 0x70203887, 0x50275983, + 0x0f01010f, 0x8900ff50, 0x906a8761, 0x27108519, 0xa012100e, 0x000e1012, 0x08132a19, 0xc0010028, 0x37000d00, 0x26195f00, 0x626d137b, 0x41352019, + 0xca470613, 0x05044c06, 0x06230585, 0x41312307, 0xab570b0f, 0x31332105, 0x0f024b19, 0x0ae75018, 0x4020b482, 0x087b2619, 0x26196020, 0x767a2160, + 0x95411809, 0x18282409, 0x83010f10, 0x83982044, 0x90302006, 0x06af5144, 0xef828020, 0x39001d28, 0x27250000, 0xf0462717, 0x050e5705, 0x152bb282, + 0x17161716, 0x37363736, 0x18072734, 0x4f0b4d48, 0x2208063a, 0x17173233, 0x17171631, 0x01017501, 0x036f3401, 0x06080806, 0x0c346f03, 0x51363702, + 0x02373651, 0x48065b0b, 0x06240794, 0x09291802, 0x2c081f82, 0x182a0905, 0x0202bf02, 0x03678f02, 0x67030606, 0x221f028f, 0x02363650, 0x50363602, + 0x0e311f22, 0x1b1c2810, 0x1c1b0101, 0x040e1028, 0x24318236, 0x36290906, 0x065f4e04, 0x4602d92c, 0x0f00a001, 0x4b003b00, 0x48185600, 0x23250eed, + 0x15233531, 0x20af8835, 0x82968335, 0x05d55603, 0x26312727, 0x06072627, 0x05a34107, 0x09820620, 0x5a260521, 0x17200577, 0x312fbd82, 0x17273107, + 0x31312306, 0x31373130, 0x18400722, 0x1808e5d1, 0x31081765, 0x1d801103, 0x27272c2c, 0x811a0807, 0x282c2c1c, 0x4c18052a, 0x293708e5, 0x1104030c, + 0x0d121310, 0xc2415043, 0x01040101, 0x14300101, 0x83010d0e, 0x70702844, 0x30e0e0e0, 0x8301201f, 0x1db22b2d, 0x0827bc19, 0x2d1d1b08, 0x0884282d, + 0x18322122, 0x402f1b87, 0x0d141412, 0x1103030b, 0xc85f3862, 0x7e010201, 0x80260887, 0x2400c001, 0xef823700, 0x6f130021, 0x172336e3, 0x4c073707, + 0x43180557, 0xe96f0924, 0x18712028, 0x6f10fafa, 0xd12029ed, 0xfb183b82, 0x06240d0f, 0xc0ff0000, 0x2608b770, 0x004e0040, 0x53640057, 0x5a43086b, + 0x27262319, 0xbd702726, 0x072d4713, 0x2e5d3720, 0x08f6450c, 0x7a4f3320, 0x05c64405, 0xee45f2a8, 0x18682008, 0x200b7f52, 0x07044668, 0x4f185820, + 0x0b410ad7, 0x46d02029, 0x10200714, 0x46077647, 0x35470826, 0x00002f07, 0xffff0700, 0x4202c0ff, 0x0c00c001, 0x93484700, 0x0100210a, 0x600b616a, + 0x28540681, 0x17162105, 0x58180182, 0x06340842, 0x26272607, 0x26373427, 0x30070627, 0x06153015, 0x22070607, 0x07820b82, 0x0e822784, 0x2205c552, + 0x48212726, 0x8f48087d, 0x273a8208, 0x17160706, 0x36053736, 0x16264184, 0x32200117, 0x6c19181a, 0x2f08081e, 0x19190bd1, 0x1924e024, 0x13100b19, + 0x020d0e13, 0x23120f02, 0x0e141c0e, 0x3b02010d, 0x01455b47, 0x12140e0d, 0x0f0c140d, 0x0e0c0102, 0x37101313, 0x0221f383, 0x22058310, 0x41c8f0fd, + 0x6820073f, 0x20070941, 0x955618e8, 0x6b091908, 0x02102609, 0x2a2c2c2a, 0x2e058502, 0x0e0e0ac5, 0x0c6d6d0c, 0x0c0a0e0e, 0x830f0201, 0x13102473, + 0x82010117, 0x06062766, 0x1c020113, 0x7b830101, 0x0a0c0b22, 0x75836d83, 0x64875b20, 0x6487b820, 0x11873820, 0x41088c7f, 0x53440880, 0x01c02106, + 0x002e0182, 0x006c0062, 0x007c0076, 0x17320100, 0xe9443131, 0x05f54b05, 0x07b95a18, 0x07210783, 0x05d54f31, 0x26313324, 0x354c3727, 0x16372205, + 0x21018317, 0xe67b0714, 0x31212105, 0x85610987, 0x27262b09, 0x33363734, 0x15161732, 0x09833121, 0x33230326, 0x21070623, 0x03294382, 0x36332333, + 0x16312137, 0x08448217, 0x23373623, 0x090ea001, 0x13130109, 0x02362c1e, 0x03011212, 0x20070602, 0x100f761b, 0x03030307, 0x1f261514, 0x05206f1f, + 0xfe212482, 0x05f754c0, 0x36222c85, 0x19881e2c, 0x0940012e, 0xe64d0e09, 0x0a0fe6e6, 0x0f0a1801, 0x09820882, 0x0ae8fe26, 0x1f1c380f, 0x01204c82, + 0x2d3d3883, 0x291e2424, 0x0c0c0224, 0x04020101, 0x0b151405, 0x0202050b, 0x1b0e0e01, 0x24241e1e, 0x08c54e2d, 0x29854882, 0x8c292421, 0x80fe2217, + 0x21008210, 0x04820001, 0x15301022, 0x00200082, 0x02220082, 0xbb420000, 0x002e2206, 0x0d155250, 0x82131721, 0x794518e1, 0x052d4c0b, 0x36272624, + 0xea7e0337, 0x45172006, 0x3724058e, 0x37311731, 0x3005b778, 0x17171617, 0x06071631, 0x06310707, 0x27272627, 0x3d8d8200, 0x11101549, 0x1c2e5c07, + 0x0c0b0dca, 0x06050404, 0x1b02ca0d, 0x1b29281b, 0x2302011b, 0xb782495c, 0x0604f52a, 0x142e0d05, 0x0d2e143d, 0x3120d382, 0x98210d83, 0x2109830e, + 0x1d82a001, 0x140c0c27, 0x2302ecfe, 0x83398343, 0x28442c41, 0x01011b1a, 0x30291b1b, 0x8214011c, 0x8367205e, 0x3d0f242a, 0x830f3d13, 0x89992038, + 0x26df8942, 0x00c00180, 0x58710045, 0x142408db, 0x33331617, 0x1120dd82, 0x16230382, 0x18313317, 0x8a0b6553, 0x3435210d, 0x0a0bfb18, 0x20050971, + 0x21d48226, 0xb1461723, 0x0d1e6a06, 0x14311523, 0x5a041a07, 0x35352208, 0x05184531, 0x97412020, 0x0f102805, 0x17160101, 0x46031322, 0x032107a5, + 0x220a86c6, 0x8543030e, 0x30fe2122, 0x10212385, 0x222383a0, 0x46144001, 0x6029068e, 0x27080908, 0x09080827, 0x42118460, 0x0f280742, 0x1722e0fe, + 0x08080116, 0x08ad3c19, 0x0b8b0820, 0x22066842, 0x8320010f, 0xc0502325, 0x2787c0c0, 0x90260884, 0x05040509, 0x04821a1a, 0x83900921, 0x0747496e, + 0x2405e745, 0x0024001d, 0x164d594c, 0x8205c951, 0x153327de, 0x31331535, 0x2f190727, 0x5618269e, 0x80200e8f, 0xa023f482, 0x498080c0, 0x7c6d1724, + 0x056c4a05, 0x1b121224, 0xd0822001, 0x00838020, 0x1549f020, 0x00002e16, 0xff200002, 0x01a001c0, 0x004300c0, 0x74bd884a, 0x172105e3, 0x05547b31, + 0x33311727, 0x06171631, 0x20c58307, 0xd65a1827, 0x31232108, 0x200bab4b, 0xc8411811, 0x73f61808, 0x1b602f07, 0x70011212, 0x3212040a, 0x040a0a04, + 0x8283461c, 0x0e885020, 0xbb496620, 0x69d58709, 0xe02a054b, 0x09632309, 0x0f013709, 0x0985010f, 0xcf44ce92, 0x02e02c06, 0x00a00140, 0x001a0011, + 0x4154002c, 0x33210e79, 0x24918231, 0x11111133, 0x28088221, 0x37360121, 0x37363131, 0x06b74a11, 0x33311122, 0x084e9e18, 0x411eb64a, 0x20260881, + 0x40014020, 0xc766c0fe, 0x20202309, 0x674a00ff, 0x05674110, 0xdc83a020, 0x1bc0fe27, 0x01011212, 0x06b34cc0, 0x820cb74c, 0x41302013, 0x3b751892, + 0x5e3e200c, 0x13221cbf, 0x2f193515, 0xaa5e2010, 0x02702215, 0x102f1916, 0x19965e0f, 0x00836820, 0x02021625, 0x83505016, 0x89d02005, 0x066f5f0a, + 0xc001402d, 0x43001900, 0x61005400, 0x18010000, 0x2018914b, 0x42198207, 0xaa6e0534, 0x09166c09, 0x26058c65, 0x37363111, 0x5e133736, 0x26210782, + 0x05124427, 0x0c036e18, 0x18000121, 0x2b0ffb42, 0x808080c0, 0x140e0d01, 0x0d0e1460, 0x2009a241, 0x08bd41fe, 0x0a01702c, 0x10010aca, 0x1775160f, + 0x58180f0f, 0x01240dbd, 0x0e0909c0, 0x0af07a18, 0xd34a4020, 0x74302008, 0x1b2a0fe9, 0xfe011212, 0x01010a8b, 0x7550160a, 0x55162105, 0x440bf468, + 0xe02c090f, 0x1b00a001, 0x5b004300, 0x11370000, 0x20050668, 0x1c911821, 0x31072b08, 0x31232306, 0x27262726, 0x36190637, 0x13202559, 0x83057d43, + 0x18352032, 0x23089458, 0x60331716, 0x24094443, 0x1a133a13, 0x209f83c6, 0xce3419b0, 0x0865420c, 0x02161826, 0x3aa01602, 0x0af76b18, 0x5060a021, + 0x34830511, 0xc6214783, 0x8343821a, 0x01e02208, 0x11404d0f, 0xfe010f23, 0x574118b0, 0x83e02007, 0x25e0254b, 0x00011919, 0x27055b6a, 0x80008002, + 0x3a003100, 0x0020f182, 0x0ca38018, 0x18311521, 0x2209fd70, 0x18322133, 0x18086f4f, 0x230ccb7b, 0x33233305, 0x35212883, 0x45088733, 0x202006ff, + 0x40220786, 0x19190002, 0x40230d53, 0x82a060fe, 0x82e02000, 0x80a02103, 0x5805b445, 0x0c8c06ce, 0x00834020, 0x260c2b44, 0x00260010, 0x444e003b, + 0x5a180ce7, 0xb447121f, 0x05352507, 0x31312306, 0x2305514c, 0x37363734, 0x18057c6a, 0x2e0941ae, 0x17173633, 0x14071631, 0x0e147007, 0x1860010d, + 0x390d135a, 0x30301f20, 0x0201201f, 0x0a0a062b, 0x0108bb08, 0x442c230a, 0x01022d2d, 0x08873c14, 0xbc231883, 0x860a0107, 0x18448439, 0x4d086572, + 0xe032084c, 0x07010aff, 0x0a0a08bc, 0x02011406, 0x2c442d2d, 0x08873c23, 0x82010a21, 0x5e188258, 0x802608cb, 0x1900c001, 0x93484800, 0x03401808, + 0x2722280d, 0x17353526, 0x77212121, 0x834205fa, 0x0afc6105, 0x8a081862, 0x09002313, 0x51180e09, 0x55770cfe, 0x07055207, 0x010f7025, 0x8b700f01, + 0x5a012005, 0xbd410665, 0x60202106, 0x09ed4918, 0x0f012025, 0x8940010f, 0x063f4204, 0xb7850120, 0x54002a22, 0x1124b9ab, 0x15351517, 0x23057862, + 0x31331716, 0x2109865c, 0x46533133, 0x31232305, 0x3f443135, 0x20c5a005, 0x158e4580, 0x0124ca9a, 0x30307040, 0x21132743, 0x07440f01, 0x80022e08, + 0x2900c101, 0x74006700, 0x17010000, 0x47a48227, 0x07230c46, 0x19272722, 0x5808ab61, 0x372f068c, 0x33071736, 0x31173323, 0x37363716, 0x18333137, + 0x22225295, 0x18161732, 0x200a8495, 0x0be87223, 0x29e30134, 0x165c2929, 0x68160202, 0x2f18070c, 0x080e0d07, 0x0e837b29, 0x070d8833, 0x0e062e18, + 0x0da3080d, 0x13140d0d, 0x0b0f2020, 0x84951852, 0x090e2715, 0x0909e009, 0xc758900e, 0x36b62e0c, 0x16023636, 0x200a0216, 0x0b020c64, 0x2f0a833d, + 0x0c61240b, 0x960b0102, 0x03011a1f, 0x1b01181d, 0x15a29518, 0xff224982, 0x5382a000, 0x2e0fdb58, 0xff000004, 0x018002c0, 0x006100c0, 0x6279006c, + 0x3c700a97, 0x17162b09, 0x23230706, 0x17160706, 0x0b903333, 0x31153122, 0x4107c051, 0x7f790534, 0x07734405, 0x83313521, 0x27342501, 0x23263127, + 0x26051742, 0x05212726, 0x64153515, 0x172105fe, 0x0b364105, 0x430c056f, 0x0f250596, 0x300f0101, 0x200583d0, 0x056952d0, 0x0b83b020, 0x3642b020, + 0x83902005, 0x5190200b, 0x802007fe, 0x4e190887, 0xff280f44, 0x80b00100, 0x80fe4d33, 0x0bb67318, 0x18100121, 0x250b015a, 0x0d01c001, 0x3156140e, + 0x08374e08, 0x21056e46, 0xeb5a8001, 0x44078707, 0x202006ef, 0x09564e19, 0x1313ed26, 0x834d6013, 0x5a18548b, 0x13590ca9, 0x01803808, 0x002500c0, + 0x0065004b, 0x0085006e, 0x0100009c, 0x16153515, 0x18311717, 0x590dc297, 0xd84d09fe, 0x35172405, 0x5a263515, 0x13850812, 0x18066562, 0x180afa97, + 0x21087d55, 0x0f551732, 0x23062105, 0x2005de47, 0xb5c41935, 0x4e252008, 0xf25c057e, 0x3734240b, 0x95333336, 0xc0012516, 0x20152901, 0x2206ed5f, + 0x863c150e, 0x94802009, 0xc0fd2515, 0x1b121201, 0x2907ea7f, 0x121ba0fe, 0xa0e00112, 0x904101a0, 0x00961806, 0x2a0c850c, 0x0b0ba001, 0x152b3b0b, + 0x850b2e21, 0x140b2510, 0x563d150e, 0xe0200c86, 0x5d841c9b, 0x0e090923, 0x83388260, 0x83202076, 0x86402000, 0x20069410, 0xff1b1900, 0x01072c08, + 0x002500c7, 0x0100005c, 0x18172717, 0x240ba453, 0x27060716, 0x2a531827, 0x86372008, 0x37072909, 0x31323707, 0x31171530, 0x32210185, 0x054b4815, + 0x27270582, 0x31373726, 0x18343135, 0x820b127f, 0x37162625, 0x01272736, 0x269283b9, 0x11110e0e, 0x8337260f, 0x48482106, 0x37220583, 0x06830f26, + 0x3d3de73c, 0x3810013d, 0xbf011038, 0x39591710, 0x0e0e1111, 0x392b1139, 0x0a0a0b0b, 0x06852a39, 0x19834085, 0x06834082, 0x83484821, 0x83408205, + 0x8a952006, 0x83392040, 0x59392951, 0x392c1017, 0x0b0b0a0a, 0x06844082, 0x04000024, 0xdf430200, 0x000e2906, 0x002b001d, 0x2500003b, 0x47055847, + 0x17271156, 0x07163117, 0x47071605, 0x26280786, 0x21352137, 0x37262121, 0x30085163, 0x0a660207, 0x0c0ac80d, 0x2d443126, 0x1901022d, 0x8408872f, + 0xf7fe3115, 0x2b0d0110, 0x2a3b3b2a, 0x11020c2b, 0xe5fe1b01, 0x11220383, 0x13850c02, 0x10010d31, 0xc80a0cc9, 0x01190a0d, 0x442d2d02, 0x872f2631, + 0x30158408, 0x3710024a, 0x01012323, 0x10372323, 0x0f022002, 0x230c8538, 0x00020f38, 0x01300082, 0xb9fff9ff, 0xc0010002, 0x00003a00, 0x35153537, + 0x21147141, 0x7b413731, 0x88098207, 0x063123e0, 0x55182323, 0x6022073e, 0x62411c10, 0x0669410c, 0x2b1e2e37, 0x011d1d2c, 0x10e01d01, 0x11595917, + 0x590e0e11, 0x59595942, 0x412d8217, 0x2a200b4f, 0x20055d41, 0x2c29832e, 0x1e2b2c1d, 0x0e5910e0, 0x5911110e, 0x0a3b4c00, 0x34002b2b, 0x26010000, + 0x22313123, 0x05cf7f07, 0x53180120, 0x36220ad7, 0xa2830137, 0x2106a560, 0x01823127, 0x07370724, 0x9f821737, 0x5701232b, 0x0a0d0d0a, 0xfe0a0909, + 0x053450e9, 0x1c270625, 0x85091701, 0x60202b14, 0x93938a20, 0x66603393, 0x2282b701, 0xfe242883, 0x05281ce9, 0x21059144, 0x37831701, 0x26821482, + 0x2684f720, 0x29087f49, 0x00a00100, 0x00290020, 0x9e18004a, 0x33200801, 0x4809fd60, 0x26290592, 0x11272627, 0x26272231, 0xbc571835, 0x61372008, + 0x29980f27, 0x09090025, 0x4368380e, 0x737a05be, 0x210d8207, 0x00823088, 0x1b9a9820, 0x30780120, 0xd0fe2109, 0x088e4118, 0x31823020, 0xa0a02022, + 0x91093244, 0x21da821b, 0xb7460400, 0x002d3a08, 0x0044003b, 0x1700004d, 0x34111111, 0x25373637, 0x05173631, 0x16171631, 0x21b28315, 0xda833123, + 0x26273428, 0x22312123, 0x13880607, 0x21210531, 0x35272621, 0x15312131, 0x25070631, 0x83351535, 0x35212109, 0x00310887, 0x01120b0b, 0x010c0c0c, + 0x0b0b120c, 0x16301602, 0x20988202, 0x84b283fe, 0xe801330c, 0x5001b0fe, 0x0216b0fe, 0x16028001, 0x800198fe, 0x038380fe, 0x3d01283a, 0x3d01c3fe, + 0x080f1014, 0x6b05056b, 0x14100f08, 0x0216c3fe, 0x08011602, 0x21052141, 0x0d83f8fe, 0x16021828, 0x02163838, 0x00824070, 0x82506021, 0x09bb4800, + 0xc0010028, 0x3e001a00, 0x81185500, 0x25261c6b, 0x31312726, 0x337f2326, 0x07062105, 0x820e4e76, 0x272625f3, 0x27340723, 0x08cf7b18, 0x5618f982, + 0x8020072f, 0x13b19f18, 0x1908012a, 0x29292323, 0x38192323, 0x11a9a018, 0x0b60382e, 0x0e0d0422, 0x0b112107, 0x110b0c0c, 0x01260582, 0x1d1d2310, + 0xf7181112, 0x70220ec5, 0x0082111e, 0xbe4d1e20, 0x10a02a13, 0x070e4f0b, 0x014e0d04, 0x8240840b, 0x04003146, 0xe0ff0000, 0xa0010002, 0x7d002a00, + 0x8f008600, 0x260e854a, 0x23060714, 0x18323111, 0x42105955, 0x052005a9, 0x1807c44d, 0x480ffa5a, 0x7c43056a, 0x05d04e07, 0x3631372c, 0x26273435, + 0x22312323, 0x786d0707, 0x0a7b4b0b, 0x03272622, 0x0ac14018, 0x00240a85, 0x010e0909, 0x0c206118, 0x526efe20, 0x00012209, 0x06067c0f, 0x3605864b, + 0x02080833, 0x090d0c12, 0x78191012, 0x09121019, 0x02120c0d, 0x85330808, 0x05095c1c, 0x300f0124, 0x5d48010f, 0x08b05e05, 0x530b0743, 0x5e480630, + 0x40012105, 0x20220782, 0x02820f01, 0x30010f22, 0x47223583, 0x54820314, 0x170b0f29, 0x13010113, 0x820f0b17, 0x1403226d, 0x84198347, 0x0f20241e, + 0x8500ff01, 0x010f215d, 0x3708195f, 0x0b000200, 0x7502e0ff, 0x1f009f01, 0x00004400, 0x17333613, 0x32313731, 0x220afc54, 0x4d073127, 0x272f056e, + 0x05373726, 0x16172717, 0x37371617, 0x18311531, 0x4b0f92e9, 0x4408081f, 0xf50b053b, 0x2a050bf5, 0x0f050606, 0x530e17a3, 0xa3170e53, 0x0606050f, + 0x3706012a, 0x130c3737, 0x0a7f1614, 0x0fcd100a, 0x0a10cc10, 0x1415800a, 0x02370c13, 0x1f099601, 0x0e54091f, 0x2e050d0d, 0x8b8b1305, 0x33068213, + 0x540e0d0d, 0x5b5b5b56, 0x06080813, 0x0d10a724, 0x0433040d, 0x0d2f0282, 0x24a7100d, 0x13080806, 0x0000005b, 0x42feff04, 0x3e240627, 0x64005100, + 0x09cb6018, 0x737e3720, 0x58262007, 0x07200580, 0x27052562, 0x23140706, 0x31311530, 0x830b5757, 0x17062a0b, 0x37363316, 0x33163736, 0x11597027, + 0x12913320, 0x12765218, 0x72000121, 0x42720597, 0x310b8605, 0x0811052f, 0x01020307, 0x0a050307, 0x1323262c, 0x0a7d3830, 0x180c8c0c, 0x290c5952, + 0x1c1b0100, 0x3a3a2f2f, 0x905c2f2f, 0x320b8205, 0x1a253445, 0x0204070e, 0x0a070101, 0x1011020a, 0x42f0120f, 0x0591050c, 0x480c5549, 0x872609db, + 0x1700c701, 0x72184700, 0x8f731003, 0x07062305, 0x00820127, 0x41150621, 0x3221272a, 0xf4711837, 0x3d76220a, 0x2cf98502, 0x016a4768, 0x01abfe81, + 0x13abfe55, 0x21ff9101, 0x71183038, 0x5c220bd8, 0xe2855039, 0x5336022c, 0x0d0157fe, 0x0d01f3fe, 0xe9912a25, 0x2b771220, 0x01802408, 0x181d00a0, + 0x780a6d66, 0x15250b45, 0x35312131, 0x23cd8331, 0x37360535, 0x072d8f18, 0x5909267b, 0xf955051f, 0x08218207, 0x17323726, 0x31151716, 0x21333115, + 0x40353135, 0x36252401, 0x25360001, 0x121c0124, 0x80fe0111, 0x1c121101, 0x1e02e001, 0x69059056, 0xfe2106c4, 0x2c088640, 0x140e0d01, 0x021e0808, + 0x01a00120, 0x83348320, 0x06222f3e, 0x301e1515, 0x15151e30, 0x21702206, 0x2483030c, 0xd358b020, 0x14b02b0b, 0x03010d0e, 0x2030210c, 0x84183020, + 0x7d290dd3, 0x0000a700, 0x22230625, 0x67c38527, 0x15250a9d, 0x07060722, 0xd45f1803, 0x82062007, 0x05154cb4, 0x16151623, 0x05296515, 0x250bd042, + 0x27222722, 0x25850726, 0x16311527, 0x35373617, 0x224c8331, 0x82262736, 0x31302301, 0x07823123, 0x35303525, 0x83363734, 0x16332249, 0x83198337, + 0x33032c74, 0x17163323, 0x31153123, 0x82353333, 0x05135727, 0x2006cd77, 0x0b9a7907, 0x22470129, 0x2e222525, 0x18023821, 0x2b0851d5, 0x01010138, + 0x12472c20, 0x18070902, 0x4708ac83, 0x0213130b, 0x01030915, 0x130a0701, 0x01020f0b, 0x07120202, 0x03011104, 0x1202100e, 0x07080212, 0x0603061a, + 0x14140b06, 0x04091501, 0x04130909, 0x12040707, 0x09110306, 0xd012020c, 0x1e101010, 0xc0c0482a, 0x101d2b48, 0x0896d21a, 0x09876020, 0x0c0c2c27, + 0x3a221101, 0xf2581856, 0x562e0807, 0x0101013a, 0x38011021, 0x02061202, 0x0f1c0a03, 0x0c060d0e, 0x06060104, 0x05010202, 0x03050306, 0x01010602, + 0x07121104, 0x04050101, 0x88821206, 0x26820520, 0x26821d20, 0x050c0822, 0x012a2582, 0x05050305, 0x02010102, 0x40831204, 0xfe2b2182, 0x201927fc, + 0x01271920, 0x58140e0d, 0x088408c1, 0x03000037, 0xc0fffeff, 0xbf010002, 0x54000e00, 0x00005d00, 0x16171613, 0x05b34117, 0x0607262c, 0x35151707, + 0x30313015, 0x03821531, 0x5d430583, 0x27262205, 0x211b8222, 0xb15b0706, 0xcd791805, 0x32172d08, 0x33313737, 0x36373631, 0x37313537, 0x2006fd73, + 0x64298206, 0x3a080835, 0x291c15a1, 0x02042325, 0x16090c11, 0x2c209f1a, 0x1228282d, 0x060d1206, 0x01080809, 0x1c151501, 0x088a141b, 0x0e050303, + 0x063e2829, 0x444a4c04, 0x1e022d2d, 0x640b0102, 0x46161722, 0x44080582, 0x0f01010f, 0x11195f01, 0x2e1f0817, 0x03061241, 0x2f401808, 0x011f1f1f, + 0x0f100220, 0x12382222, 0x22110b01, 0x2a3a3022, 0x0b1a1929, 0x08080226, 0x18181407, 0x023d0302, 0xa0442d2d, 0x0b04032d, 0x17160101, 0x0ab85c22, + 0x00000235, 0x4202c0ff, 0x33008200, 0x00004200, 0x31373625, 0x82273631, 0x070729e5, 0x26312331, 0x33373627, 0x08885d18, 0x22232322, 0x45181584, + 0x1b820a11, 0x3025372c, 0x30313131, 0x30313033, 0x03822231, 0x0d30022b, 0x0a0a0203, 0x770e1010, 0x20ad8379, 0x06484710, 0x2d5e4025, 0x43252d23, + 0xa02d053d, 0x7f242ca1, 0x010191fe, 0x10100a38, 0x242f830e, 0x0f0f0158, 0x05fb4401, 0x56241c21, 0x1a220630, 0xff54085e, 0x01422906, 0x001d00b9, + 0x005f0052, 0x0ddd3419, 0x18053f59, 0x2109f05a, 0xaf1a0527, 0xa42840bd, 0x1e171616, 0x1212171e, 0x162e0583, 0x0d0a6516, 0x0166090d, 0x03020a94, + 0xaf1a7f0d, 0xfe2d21d3, 0x0101018a, 0x1f1e1837, 0x12161617, 0x2d4a8212, 0x67181e1f, 0xc7670a0a, 0x0a10100e, 0xd8861a5e, 0x851c2421, 0x20f383e9, + 0x20598358, 0x20e78830, 0x23e382c0, 0x00a10094, 0x2e062d50, 0x27060716, 0x07222326, 0x15221506, 0x82303114, 0x17142401, 0x84331716, 0x052d5509, + 0x28054744, 0x31352726, 0x23222726, 0x24018326, 0x16173637, 0x251d8333, 0x35363732, 0xd0413536, 0x82272005, 0x2726211f, 0x24059a42, 0x17163736, + 0x40294101, 0x38012008, 0x0415080a, 0x0d111607, 0x0103080c, 0x01130903, 0x03181312, 0x0b0a1902, 0x02161602, 0x82010a0e, 0x02022600, 0x15090514, + 0x31008202, 0x070c0f13, 0x05010103, 0x12021308, 0x03031713, 0x26840919, 0x41000121, 0x2f082b59, 0x0b0b0ba8, 0x16070301, 0x05050415, 0x01020102, + 0x06040201, 0x200d0b04, 0x02060f22, 0x0202160b, 0x04040b16, 0x16090101, 0x01010514, 0x04010701, 0x032d2182, 0x05050401, 0x0c0a0401, 0x050d2320, + 0x21248403, 0x8d41c8fe, 0x4100201f, 0x17290a8f, 0x59004c00, 0x36010000, 0x286a1933, 0x2726280b, 0x31352726, 0x41373734, 0x14264247, 0x05080804, + 0xd6521142, 0x43112307, 0x14412401, 0x07b9262b, 0x1e196007, 0x05204e02, 0x02291b27, 0xfe60191e, 0x43e19fb7, 0x802905f7, 0x45008001, 0x00008b00, + 0x2b461813, 0x05777109, 0x17171625, 0x67331631, 0x581809c6, 0x8e42090a, 0x82142005, 0x2a21821f, 0x06070607, 0x26312727, 0x82313535, 0x15212301, + 0x3e831535, 0x695f1420, 0x37262306, 0x914b3137, 0x82222007, 0x31072113, 0x5407fa60, 0x3322054c, 0x21823231, 0x3c853620, 0x4f183120, 0x502607e2, + 0x11110b0c, 0xad1a0c0b, 0x012b1ef7, 0x0e3313e0, 0x01010a11, 0x4f201008, 0x202d0527, 0x0120190f, 0x140e0d01, 0x64131a43, 0x2044861c, 0x05ca4c58, + 0x66403826, 0x13641c27, 0x4f231d83, 0x8919212e, 0x0b092b32, 0x0c09070b, 0x281b1333, 0x00822850, 0x1b28502c, 0x090c3313, 0x090b0b07, 0x904f200f, + 0x19102806, 0x144f2e21, 0x82010d0e, 0x66272355, 0x51853840, 0x00000032, 0xff0a0002, 0x017602ca, 0x003a00b8, 0x2500007f, 0xed85fd82, 0x26312723, + 0x21ef8323, 0x5c5b2326, 0x31312305, 0x63183115, 0x302709c5, 0x35313031, 0x83333331, 0x054a5507, 0x82271521, 0x0814593a, 0x09833120, 0x07310723, + 0x05555031, 0x32331630, 0x32313737, 0x33333033, 0x36373231, 0xff5f3437, 0x25078205, 0x35363736, 0x06483131, 0x31303405, 0x46200223, 0x124e1010, + 0x28121616, 0x1c700404, 0x41041414, 0x10350503, 0x17220888, 0x01d00116, 0x1f1f1414, 0x1b011414, 0x10081415, 0x242a864a, 0x01010125, 0x21dc83a0, + 0x05830303, 0x0d130d2d, 0x100f010d, 0x03c87818, 0x83450303, 0x104e294b, 0x01012910, 0x781c1112, 0x4827f785, 0x17160110, 0x82380822, 0x834c8300, + 0x05772654, 0x391c1212, 0x252d8649, 0x140e0e26, 0x04820808, 0x040d143e, 0x18150f0f, 0x00010f10, 0x00020000, 0x02ffff00, 0x00800180, 0x0066002b, + 0x37070100, 0x2105187e, 0xdc821617, 0x16173626, 0x17310707, 0x83083a47, 0x232321d2, 0x1b417b18, 0x0b104b18, 0x0b523320, 0x36372205, 0x4b7b1837, + 0x147b1810, 0x2ab12112, 0x21077848, 0x7b18054c, 0x7018171e, 0x6c20086c, 0x16277b18, 0x12fd7a18, 0x0d01a325, 0x8380140e, 0x057b185b, 0x201c8813, + 0x0d7b1853, 0x01003015, 0xc0ff0200, 0xc001fe01, 0x00005500, 0x18353401, 0x2109bd6d, 0xe55b3133, 0x31272605, 0x35263133, 0x21e68234, 0x01820706, + 0xf6831720, 0x08d18218, 0x22067348, 0x82372734, 0x27362125, 0x16283d83, 0x14151617, 0x07313315, 0x3e069157, 0x02800133, 0x32322626, 0x01022626, + 0x090b206f, 0x0f011d78, 0x23441a10, 0x11020a24, 0x5d058c06, 0x310808dd, 0x11068c05, 0x23240a02, 0x0f101a44, 0x0b09781c, 0x00017020, 0x324e0808, + 0x2f01012f, 0x08084e32, 0x08840480, 0x29293008, 0x2d2d1a1d, 0x9a021029, 0xca490c0a, 0x0c603308, 0x10029a0a, 0x1a2d2d29, 0x3029291d, 0x04840808, + 0x00820080, 0xfeff0533, 0x8202beff, 0x0c00c601, 0x87007700, 0xa3009400, 0x69881800, 0x3515230e, 0x66691715, 0x82db8305, 0x312721bf, 0x20055544, + 0x22ef8236, 0x18171716, 0x21086480, 0xf1563133, 0x53372005, 0x152408f8, 0x07071431, 0x0e350b19, 0x35313722, 0x072a1184, 0x06070631, 0x22312323, + 0x53842223, 0x27272622, 0x4b078553, 0x26220569, 0x98580137, 0x2b55180b, 0x84062007, 0x1837202d, 0x080c3dc7, 0x0b33403f, 0x07011002, 0x0b0d0e07, + 0x4f0e030a, 0x11100113, 0x2f162619, 0x0e09090a, 0x09090e80, 0x2615300a, 0x01101119, 0x030e4f13, 0x0e0d0b0a, 0x0f020707, 0x13330b02, 0x043c0b07, + 0x7f030404, 0x35008202, 0x0c3b0404, 0x308e1307, 0x25313030, 0x0d0c0b06, 0x0405050c, 0xad58fe01, 0x824e200b, 0x0504221b, 0x251a8205, 0x3125060b, + 0x1b8b9001, 0x4141c227, 0x0f0b3341, 0x837f835b, 0x4f562487, 0x83581a13, 0x1f012472, 0x494c0547, 0x4c240558, 0x011f4705, 0x58249983, 0x564f131a, + 0x01208482, 0x5b2a8c83, 0x41330b0f, 0x1e050b1c, 0x00820102, 0x051e022a, 0x77e21c0b, 0x5e317777, 0x88838083, 0x19d40121, 0x200cea0b, 0x231c82a3, + 0x060b0c0d, 0x5e218983, 0x060b4731, 0xc0014028, 0x73001500, 0x9b487c00, 0x05635105, 0x34353423, 0x08a87535, 0x1633322d, 0x33373617, 0x07071631, + 0x41171631, 0xb14d07a9, 0x07062105, 0x180d8877, 0x220f8d56, 0x48232726, 0x418208a0, 0x07061725, 0x18063123, 0x2508c49b, 0x17333336, 0x0f832726, + 0x01373628, 0x80080890, 0x2d471719, 0x05102d07, 0x1c060705, 0x02110c2d, 0x0d0e180e, 0x22050541, 0x4d120e20, 0x802006d6, 0x363d0786, 0x131d1d09, + 0x13010113, 0x16041d13, 0x04160202, 0x12020212, 0x1f1f0a1f, 0x8015132d, 0x07d96740, 0x01600122, 0x06230082, 0x47010201, 0x2029084d, 0x01210101, + 0x17371202, 0x2049821e, 0x205e8260, 0x07cb6012, 0x21083d5f, 0x56834729, 0x47845e83, 0x02121227, 0x0c21212d, 0x2f521805, 0xff112c0b, 0x01af01c2, + 0x004700c0, 0x4b000056, 0x3120052f, 0x41075147, 0x3122083e, 0x347c3117, 0x05125a05, 0x0723ff83, 0x59150631, 0x302205fc, 0x1f823031, 0x16210383, + 0x27258237, 0x27273637, 0x27172707, 0x17212082, 0x05817c16, 0x4d014608, 0x15063586, 0x141f1f14, 0x55380615, 0x2810191c, 0x284c2a19, 0x18122619, + 0x115c5338, 0x020e3617, 0x80580a02, 0x5f535353, 0x0e02020a, 0x4c111637, 0x053a927d, 0x01010809, 0x3d050908, 0x251c1d5d, 0x3c181d1e, 0x08ef8223, + 0x1f193526, 0x401b2415, 0x0b126960, 0x0e0f081f, 0x6058600c, 0x0c686060, 0x1f080f0e, 0x0052110b, 0x00000400, 0x0002c0ff, 0x4829cf82, 0x79006600, + 0x00008c00, 0x05516c01, 0x06313125, 0x60270607, 0x31200a93, 0x6607a44a, 0x33200596, 0x0a959118, 0x4a272621, 0x3320058e, 0x8308f741, 0x2148822b, + 0x46823107, 0x20871c82, 0x09924a18, 0x89180720, 0x25201258, 0x110f7518, 0x0100022a, 0x1413100f, 0x5d08060e, 0x20050f42, 0x071b4960, 0x0decfe26, + 0xe30a0911, 0x2824158e, 0x010b0c10, 0x2b074f42, 0x040675fe, 0x0d0a0a02, 0x0f101414, 0x01261488, 0x11110d0c, 0xa618010e, 0xed5a0c7b, 0x6001290d, + 0x1b1e1e1a, 0x0207101a, 0x2206da4b, 0x83291b1b, 0x160f2375, 0x118d0f0c, 0x19191823, 0x2b8f8816, 0x02040777, 0x190e0907, 0x1a1d1d19, 0x17271487, + 0x1618191a, 0x85890110, 0x200585a5, 0x0b1652e0, 0x00820020, 0x83410220, 0x00122208, 0x087f4135, 0x24075141, 0x15161732, 0x06d85705, 0xa44e3120, + 0x05974905, 0x4e055a6a, 0x272d06de, 0x36020002, 0x360c5436, 0x4033331e, 0x21688220, 0x668200fe, 0x323f2025, 0x4d1e1d33, 0x0b85068b, 0x57a0012a, + 0x510d3d3d, 0x1f1f343a, 0x40201783, 0x01272a82, 0x32331d1e, 0x85a0203f, 0x85a0209e, 0x22978c0e, 0x7f4c0032, 0x29610af3, 0x07142605, 0x31212306, + 0x08d96a11, 0x2707d566, 0x33363734, 0x31353133, 0x17230783, 0x45212121, 0xb61805e3, 0x1985099e, 0x6c826020, 0x4109745c, 0x1c530511, 0x82202006, + 0x0160230d, 0x7019ff00, 0xc02011a3, 0x1d831982, 0xfe203b82, 0x8619ad86, 0x3b8307f5, 0x1e82a020, 0x06831686, 0x270adb42, 0x0035001a, 0x00590048, + 0x49074b19, 0x27061723, 0x82e88226, 0x06d54ddc, 0x19153a66, 0x2927054b, 0x0a0d0a9d, 0x24241907, 0x08820719, 0x15150e22, 0x1909b419, 0x0d10ba26, + 0x0c01010c, 0x1e074b19, 0x080b1a26, 0x1e1e0d0a, 0x0a235482, 0x72001212, 0x402408c3, 0x2300a001, 0x1805e779, 0x550a5976, 0xd8180989, 0x23210d95, + 0x19c47803, 0x0c7ae118, 0x1f7d0124, 0x76181212, 0x1e250c1c, 0x3f32331d, 0x062d5001, 0x789da321, 0x402013b9, 0x240b0e66, 0x29291f20, 0x06a0422f, + 0xb8423b84, 0x0001210b, 0x2013b078, 0x0f4f1860, 0x0300240b, 0x61ff0600, 0x1e2a0513, 0x51002b00, 0x11010000, 0x864b1111, 0x31052e07, 0x27262706, + 0x37363726, 0x31113125, 0x21078236, 0xe2180333, 0x25200b3a, 0x2709666c, 0x31373716, 0x31272736, 0x6a6c0582, 0x80023b0f, 0x301f2001, 0x02201f2f, + 0x0b0d90fe, 0x0603040b, 0x40010d07, 0x1b121201, 0x724740e0, 0xd7fd210b, 0x2e291983, 0x1f0e0515, 0x2e15020e, 0x202a820e, 0x20118329, 0x3209829a, + 0xc0012a03, 0x900170fe, 0x1f3070fe, 0x1f010120, 0x83642e1f, 0x274e831a, 0x1b220157, 0xfe011212, 0x0cbf3f19, 0x3383c020, 0x0e4d0d28, 0x0e050902, + 0x45840d4d, 0x0c0b0d24, 0x09842a03, 0x7b7d0020, 0x05777f06, 0x4e004329, 0x74006100, 0x72008700, 0xfd4d0713, 0x17162307, 0xae733736, 0x33332107, + 0x210d8b6c, 0xb24d3732, 0x31272309, 0xef612726, 0x33232909, 0x33313523, 0x17173231, 0x12dd6918, 0x59069044, 0x222307e7, 0x57352627, 0x5268129f, + 0x17162f05, 0x17172922, 0x16172229, 0x22820201, 0x0f820102, 0x02380b84, 0x0909090e, 0x311a113b, 0x1b121201, 0x0902a0fe, 0x31696969, 0x39320204, + 0x210b2c45, 0x2d45a0fe, 0x8b60200b, 0xa001211a, 0xd0223883, 0x4d831050, 0x1f1f0123, 0x20598301, 0x84008208, 0x2165820f, 0x3b820808, 0x0a104030, + 0x14470b0f, 0x121b3001, 0x40e00112, 0xd5183d03, 0x8f570c3a, 0x8548180c, 0x0877600c, 0xc7018726, 0x3d002d00, 0x230e9b57, 0x37163117, 0x2406246b, + 0x07310707, 0x056b4131, 0xe5562720, 0x31232306, 0x00820127, 0x6e151421, 0x21220500, 0x91573631, 0x0e57260b, 0x01101110, 0x22048201, 0x83200e60, + 0x4bee27c3, 0x89fe7001, 0x03827701, 0x1b121226, 0x12250001, 0x320b8a57, 0x08090a44, 0x00011309, 0x0a090913, 0x80110a40, 0x83ad1906, 0xfe3b2ccb, + 0xfe270164, 0x032701d9, 0x8300ff03, 0x1d022110, 0x002bb383, 0x01c0ff0f, 0x00c00131, 0x823a0031, 0x373624b3, 0x19363131, 0x180c7716, 0x180c5bc5, + 0x3f0a2caf, 0x27263135, 0x17373726, 0x27332333, 0x07312331, 0x09090120, 0x090dc00d, 0x030e0109, 0x30341e1f, 0x21057a41, 0x07855050, 0x1e34303a, + 0x380e031f, 0x05909090, 0xa3010586, 0x0808090c, 0x37a90c09, 0x640c2a29, 0x280bb041, 0x292a0c64, 0x4063a937, 0x0deb5840, 0x2a001922, 0x200e4f41, + 0x8d911836, 0x0127240a, 0x83233323, 0x07062883, 0x17140706, 0x58213316, 0xf9340ace, 0x01161625, 0x3d292802, 0x0b262735, 0x12fb018c, 0x3bf41212, + 0x08e64f18, 0x340b3741, 0x222212c3, 0x28293d2c, 0x20200102, 0x05fe6e32, 0x2e2d02c0, 0x24cf8244, 0x00000600, 0x05df71ff, 0x4000262b, 0x8a006100, + 0x9e009500, 0xe9531800, 0x82748307, 0x15152203, 0x207a8231, 0x07276517, 0x35279f82, 0x27343135, 0x4f072726, 0xe34a06df, 0x44352005, 0x3120054e, + 0x07232783, 0x50271727, 0x0720052c, 0x1806ef4f, 0x50071760, 0x5018064a, 0x21470aba, 0xc5631807, 0x3637210a, 0x2406294e, 0x06172726, 0x05c77307, + 0x74730a82, 0x13732e08, 0x32322727, 0x0c132727, 0x08090908, 0x2e0d880c, 0x09080809, 0x1b01230c, 0x2920291b, 0x4e011b1b, 0x9324089e, 0x01060606, + 0x15230283, 0x85150606, 0x05162c09, 0x334c1605, 0x09011f1e, 0x4c620d08, 0x623106ec, 0x0109080d, 0x30331e1f, 0x3f303f3f, 0x0120010f, 0x0814730f, + 0x2b600132, 0x01011a1a, 0x012b1a1a, 0x400d0909, 0x0109090d, 0x30231090, 0x84101010, 0x587f8276, 0x13220811, 0x748d1515, 0x9a247e85, 0x392c2c14, + 0x17466e82, 0x82402006, 0x2c392c85, 0x0122142c, 0x01832201, 0x8430300f, 0x056b5d7d, 0x2a07b346, 0x017f02c0, 0x001a00c0, 0x5f450031, 0xbf181c5b, + 0x0120160b, 0x2012e576, 0x134b5f60, 0x11fdbe18, 0xe4760220, 0xf9be1811, 0x31012124, 0x8210e076, 0x600420cc, 0x1a2608fb, 0x4b003000, 0xc1185e00, + 0x03351c83, 0x32332333, 0x14150617, 0x21171617, 0x26272231, 0x36373635, 0x05db5c37, 0x5f057548, 0x38190560, 0x372108c5, 0xc0681806, 0x07c34508, + 0xed5fe020, 0x5c2e3313, 0x1c1f5c5c, 0x23141409, 0x080d93fe, 0x33320209, 0x5318ae4b, 0x90221311, 0xf65e010f, 0x01202406, 0x41c0010f, 0xfe301331, + 0x1c1a0ad0, 0x1826252d, 0x4b0d0809, 0x40023233, 0x13805318, 0x0f015023, 0x9daa1840, 0x41002008, 0x722a0807, 0x1a00c001, 0x94003c00, 0x0741a100, + 0x18172023, 0x25084071, 0x15371617, 0x13411431, 0x3625210a, 0x20060f41, 0x094c7415, 0x07161728, 0x15163107, 0xd4540714, 0x06072406, 0x57312727, + 0x0623055b, 0x57272223, 0x0720055f, 0x2c051348, 0x37372627, 0x34352631, 0x26312737, 0x2b4b8237, 0x17173637, 0x35373631, 0x26273417, 0x22057f61, + 0x41353637, 0x1132184a, 0x0d170111, 0x06050606, 0x0c0e0b0a, 0x080e0f10, 0x554182fe, 0x02013c06, 0x11100a01, 0x010a1011, 0x0a190a0c, 0x08090b09, + 0x190a0305, 0x0a190101, 0x82080503, 0x2014820e, 0x2d21980c, 0x0b090904, 0x0b180b08, 0x19175c0c, 0x03831719, 0x31178241, 0x080f1e03, 0x14100e0f, + 0x0d0f1212, 0x01070201, 0x8d410c0e, 0x0b563406, 0x04030304, 0x08051f0b, 0x0c08050f, 0x0b100f0f, 0x82060f06, 0x070e3700, 0x0f0f100b, 0x0e06080c, + 0x0c1e0508, 0x03040403, 0x08051e0c, 0x2385060e, 0x820e0721, 0x85048222, 0x05220823, 0x1f05080f, 0x0d101c86, 0x1c1c100d, 0x0f0e0e0f, 0x0400001c, + 0xbfff0000, 0xc0018002, 0x32001a00, 0xc5184400, 0x55181ed7, 0x26210cab, 0x051e7c37, 0x23272623, 0x056a6525, 0x264f0720, 0x27342206, 0x05d17527, + 0x82054154, 0x31272227, 0x15744107, 0x32334b3f, 0x0d080902, 0x03052501, 0x290c050f, 0x015c4a32, 0x100f0db4, 0x1d471d0d, 0xee0e0c0c, 0xf76b1806, + 0x47812208, 0x14b64281, 0x32023032, 0x080d4b33, 0x3c0f0d09, 0x30280d11, 0x0c0c4402, 0x0d2a3b82, 0x0e0c1010, 0x3c0906b5, 0x42840609, 0xeb853d82, + 0x2605534a, 0x0031001a, 0x445c004b, 0x05243381, 0x36233323, 0x23063a46, 0x33323330, 0x29052556, 0x23060714, 0x36272603, 0x9c183437, 0x062108bb, + 0x27984407, 0x8989612b, 0x12130889, 0x03030121, 0x06f9463e, 0x1f30b128, 0x1c12011e, 0x557c3026, 0x44012006, 0x1e2724aa, 0x2e08120e, 0x471c2727, + 0x01290618, 0x29200100, 0x15212936, 0x07c67c01, 0x02000024, 0x2b47ffff, 0x002f2206, 0xf90b194c, 0x07062508, 0x31153107, 0x1809e556, 0x2a080b7d, + 0x22312323, 0x37372627, 0x83313531, 0x033726dd, 0x31171736, 0x200f8216, 0x080f7936, 0x3d09cf44, 0xc80505db, 0x12010112, 0x2524014d, 0x24253636, + 0x01103001, 0x20080405, 0x01050507, 0x18820f10, 0x116bc825, 0x820c470c, 0x32113b02, 0x09011f1e, 0x7efe0d09, 0x0109090d, 0x01321e1f, 0x280101bf, + 0x05131304, 0x3883390f, 0x39254083, 0x074f410a, 0x35008206, 0x06474f07, 0x28041311, 0x0d05b9fe, 0x4c0a0a4c, 0x2910050d, 0x38823729, 0x37244082, + 0x00102929, 0x270d8b45, 0x00650041, 0x37323700, 0x246f5818, 0x35352628, 0x26353431, 0x916b2327, 0x4e232008, 0x072306ea, 0x5d153515, 0x31200a4c, + 0x2305584b, 0x23262734, 0x42095d7e, 0x6b2a1dd2, 0x5c423009, 0x090e5e01, 0x62184009, 0xcf4e09fe, 0x07344b06, 0x261cd242, 0x0380120e, 0x83012903, + 0x3030213d, 0x20234682, 0x47303030, 0x068606e4, 0x08336218, 0x46030021, 0x31220a8f, 0xd9423f00, 0x7d012033, 0xbc420c5e, 0xd8012126, 0x0cd43a19, + 0x2124a642, 0xab181a01, 0x4d29152b, 0x00005900, 0x31272637, 0x07c14e31, 0x20052747, 0x25138236, 0x27262726, 0x2e513334, 0x37362105, 0x23057162, + 0x07060706, 0x4206257d, 0x13201796, 0x3407a754, 0xe0232726, 0x0d21202c, 0x0f0d0102, 0x010e0b0f, 0x090b0505, 0x2d02820b, 0x0e010505, 0x0d0f0f0b, + 0x1d110407, 0x7b42261e, 0x01e03907, 0x093b2425, 0x0d0d3e07, 0x3b09073e, 0x09012524, 0x7cfe0d08, 0xa009080d, 0x09e18d18, 0x1801c027, 0x02022719, + 0x2a41820b, 0x0f0c0d01, 0x05080d0e, 0x870c0905, 0x0808245c, 0x4313131f, 0xe2300707, 0x102f2e3f, 0x0d530802, 0x0208530d, 0x3f2e2f10, 0x51824982, + 0x18820121, 0x3009018f, 0xff000004, 0x018102be, 0x001a00c0, 0x004a0030, 0x29c34254, 0x26333223, 0x22018227, 0x59252323, 0x172109b8, 0x05fc4616, + 0x27241882, 0x17072631, 0x22050254, 0x42173135, 0x29081db2, 0x39030384, 0x19011716, 0x35015c1a, 0x0e787878, 0x0b0c0101, 0x09361e1d, 0x1d1e3609, + 0x01010c0b, 0x0909780e, 0x16150268, 0xb8425f32, 0x2c25081c, 0x072e3837, 0x3030304e, 0x29211006, 0x17262629, 0x26170404, 0x21292926, 0x04300610, + 0x29285604, 0x26bc1b2a, 0x4f601800, 0x0019220a, 0x0c3f4c29, 0x4c312521, 0x13200c3f, 0x1428be85, 0x21331617, 0x25373231, 0x3c0a3e4c, 0x1a2aeafe, + 0x2401011a, 0x24363625, 0xe1990224, 0x022f2f48, 0x010d0809, 0xfe050684, 0x0b3d4cfb, 0x210cd924, 0xdf412d22, 0x35232d05, 0x06d5fe78, 0x0d493132, + 0xce020908, 0x21071746, 0x03470179, 0x004e2205, 0x297b4157, 0x2737362a, 0x35352631, 0x23232631, 0x5606fc75, 0x185c0512, 0x35362305, 0x1f822734, + 0x17232322, 0x07c24018, 0x371e7e41, 0x17640910, 0xce5c1a18, 0x1309090e, 0x13130f6b, 0x0e0e490f, 0x531a136b, 0x08514618, 0x311c7641, 0x17640b01, + 0x50072121, 0x530e0909, 0x0e6b131a, 0x4283490e, 0x50136b24, 0x70430216, 0xf7531805, 0x001a250c, 0x13000054, 0x1940d718, 0x27171725, 0x82310717, + 0x4d0720be, 0x332e07b6, 0x30313031, 0x22333333, 0x33313033, 0xdf4c3231, 0x07262106, 0x37272583, 0x26273631, 0x82232327, 0x4417202b, 0x2b08143a, + 0x1212125f, 0x0d052421, 0x01222136, 0x830d0909, 0x01760501, 0x090d8301, 0x21220109, 0x24050d36, 0x04041321, 0x14140905, 0x05040509, 0x2b15ed46, + 0x1f1f1fc8, 0x020d937c, 0x392b2a0e, 0x3105fd45, 0x0e2a2b39, 0x7c930d02, 0x0708081f, 0x08070101, 0x191a0008, 0x2e2a0e27, 0x75004300, 0x0b01a300, + 0xeb821801, 0xa6183620, 0x21200a93, 0x05220c8b, 0xdb841716, 0x27263124, 0x185e3734, 0x82052007, 0x82372021, 0x08ee5b03, 0x16171624, 0x53751717, + 0x07062405, 0x41211716, 0x272005f8, 0x2407784a, 0x31313135, 0x20038227, 0x20458231, 0x2f388226, 0x35343137, 0x37273534, 0x22233323, 0x14151607, + 0x17263282, 0x35373631, 0x1c823431, 0x32333622, 0x16214d82, 0x0be54a15, 0x26272625, 0x43361727, 0x272105b1, 0x06a65f26, 0x4d833520, 0xee4a4082, + 0x41272006, 0x7382058f, 0x18060721, 0x82091e6e, 0xc61f194a, 0x210b8208, 0xd05e3115, 0x216c8206, 0x1a453736, 0x37362105, 0x82069958, 0x373423b5, + 0x17830737, 0x06171624, 0x6f820607, 0x200ddf74, 0x0bed7470, 0x0200fe26, 0x0229d613, 0x07b38f19, 0x25400128, 0x0405031a, 0x4e181005, 0x28080b8b, + 0x68041041, 0x01262638, 0x2c011902, 0x03020203, 0x0b0f0f0d, 0x06020607, 0x06060603, 0x9302020d, 0x182a2a2a, 0x040a0215, 0x231c8203, 0x0c110a09, + 0x11260082, 0x02020a09, 0x28820e02, 0x1e231582, 0x825c2c1e, 0x02042d1d, 0x0b080605, 0x0f0f0f02, 0x0a0b0101, 0x0b220082, 0x0c820101, 0x090a032c, + 0x04020505, 0x030a0304, 0x04820e0e, 0x02050327, 0x0b080505, 0x211a8203, 0x26880c01, 0x0b030e26, 0x03040608, 0x26840182, 0x13019923, 0x9fa81814, + 0x20012108, 0x8b0b7075, 0x138b340b, 0x0b3b2502, 0x1e010a0b, 0x01152e1e, 0x05050616, 0x741e1803, 0x3c3c0b66, 0x26011309, 0x02193826, 0x01030808, + 0x02070202, 0x09080d02, 0x0a0a0401, 0x080e0e10, 0x2505b05b, 0x0b0b0abc, 0x1c82171a, 0x0301012f, 0x030c0c10, 0x0c030202, 0x0103100c, 0x362d8401, + 0x1d2c0504, 0x07a4011d, 0x0408080b, 0x06090608, 0x09090801, 0x820c0410, 0x0c0227fc, 0x09091004, 0x14820108, 0x08281a82, 0x0902070b, 0x02091111, + 0x07212984, 0x22298407, 0x85031108, 0x1103224f, 0x26298408, 0x08040707, 0x83060c08, 0x010a2329, 0xfe82171c, 0x85170c21, 0x05003605, 0xc0ff0000, + 0xc2018102, 0x40003900, 0x5e005700, 0x00007500, 0x0b316601, 0x20055347, 0xeba01814, 0x1716260c, 0x17143111, 0x05bd6016, 0x24069c6d, 0x37363111, + 0x05895d37, 0x84172321, 0x36372840, 0x26312727, 0x5a070623, 0x162d05d1, 0x27172517, 0x37312317, 0x31171607, 0x05885431, 0x0232218b, 0x05060d0a, + 0x0b0c0404, 0x2e17710d, 0x01161722, 0x10877b01, 0x82068821, 0xc00e21ff, 0x25057252, 0x7e0b21a0, 0x00824852, 0x18489021, 0x2a1257c1, 0x49494981, + 0x097e4891, 0x84302223, 0x60092a1d, 0x08101008, 0x01030a5f, 0x835a8382, 0x25252951, 0x17160102, 0x29050422, 0x2d241187, 0xb9fe0305, 0x05825d85, + 0x0f270126, 0x7ce22a22, 0x60210082, 0x61c11801, 0x1523240b, 0x825c0116, 0x8d7c2315, 0x9d821622, 0x00271a8b, 0xffffff05, 0x418002c0, 0x13210d47, + 0x1e181926, 0x31172108, 0x2205d272, 0x82171514, 0x071621fa, 0x21056363, 0x37590706, 0xba801805, 0x31332709, 0x27263111, 0x01821727, 0x33310723, + 0x20408407, 0x85c21827, 0x0725260f, 0x31330737, 0x069d4727, 0x82272621, 0x37372601, 0x16333631, 0x215c8217, 0x46417607, 0x417a200e, 0x91211d45, + 0x11454149, 0x417f0121, 0xc2180e45, 0x454108bb, 0x16222141, 0x47194541, 0x012b0653, 0x00c001f9, 0x00400037, 0x186d005a, 0x2708c749, 0x17162133, + 0x31070716, 0x9507435e, 0x31212109, 0x2e051e7a, 0x17352726, 0x23271727, 0x33311531, 0x83212107, 0x1817203b, 0x1811bf64, 0x3412ea91, 0x12120100, + 0x5601401b, 0x04090a10, 0x010f9f06, 0x12960f01, 0x22068384, 0x836a127c, 0x12623406, 0x570900ff, 0x0112121b, 0x0c0c0c92, 0x01025246, 0x19e0fe20, + 0x201364d2, 0x0ca35690, 0x31838020, 0x0c0c0124, 0xce7b180f, 0x8360200e, 0x8480206f, 0x01c02900, 0x20140e0d, 0x010d0e14, 0x726e0888, 0x0687470d, + 0x4002e635, 0x2200a001, 0x00004500, 0x31371617, 0x11353631, 0x18273431, 0x24078671, 0x31110706, 0x05c74914, 0x17163325, 0x43331716, 0x3220058b, + 0x16210a82, 0x832a8337, 0x23262328, 0x01820706, 0x2a851520, 0x0708fa3c, 0x200f0507, 0x21262c20, 0x01111621, 0x19090708, 0x1a1e2120, 0x4c151d1e, + 0x07821d15, 0x20212108, 0x08070919, 0x21161101, 0x202c2621, 0x07050f20, 0x02180807, 0x01090405, 0x0d040779, 0x08010b0b, 0x142b0082, 0x05098efe, + 0x07090205, 0x82070107, 0x8208200e, 0x09072806, 0x09050502, 0x83147201, 0x0b012c0f, 0x07040d0b, 0x040987fe, 0x44000205, 0x40330677, 0x1800c301, + 0x4a003100, 0x7c006300, 0x06130000, 0x43171415, 0xa482051b, 0x18343521, 0x23087286, 0x14151625, 0xe483af83, 0xec82c382, 0x14821a86, 0x25054143, + 0x35262722, 0x2b5d3111, 0x82162005, 0xb02720ea, 0x10502e4a, 0x05050510, 0x0c0c0d0c, 0x05151505, 0x8208820c, 0xdb01210e, 0x1f890b89, 0x1e02cb22, + 0x2c05dc56, 0x1201021e, 0x121b1b12, 0x0bb50112, 0x263d840b, 0x10060c0b, 0x820c0610, 0x210e8200, 0x0b892501, 0x01261f89, 0x2d2d2794, 0x29820d27, + 0x0b982d1a, 0x0c0b0625, 0x1a32180d, 0x8312c92d, 0x256c2424, 0x42d7fe12, 0x0123054f, 0x83251229, 0x25788370, 0x1c1c1733, 0xb0820d17, 0x05040528, + 0x2929240c, 0x08820c24, 0x1a20ba83, 0x248b0c8b, 0x0002002e, 0x02c0ff00, 0x00c00140, 0x003d001f, 0x1105fe19, 0x15070622, 0x2706b465, 0x31272734, + 0x17270337, 0x20055248, 0x09d36507, 0x07eb6018, 0x02273623, 0x05a56737, 0x0c9d5518, 0x7676e23a, 0x08314376, 0x0b020122, 0x03020433, 0x02077f03, + 0x2b3dad14, 0x8901052f, 0x18057c67, 0x210c0956, 0x2e82d6fe, 0x082f0535, 0x040c3123, 0x04030219, 0x0a077103, 0x2a010214, 0x84004331, 0x82e020ab, + 0x00a024ab, 0x5a3f0019, 0x112608cd, 0x11313331, 0x03822131, 0x28052b45, 0x13212726, 0x23153515, 0x05357431, 0x7405ea4b, 0x72180731, 0x0724086c, + 0x1b601506, 0x0cc56d19, 0x4e468020, 0x00022106, 0x20055841, 0x061b4f80, 0x21054e5a, 0xd743e0fe, 0x23338305, 0x2020a0fe, 0x200c135a, 0x56318520, + 0x8028099b, 0x3100c001, 0x5e004c00, 0x2508ad44, 0x17163121, 0x40181716, 0xe7570934, 0x25c38311, 0x23263115, 0x5d5d1535, 0x18072019, 0x200878a0, + 0x06db4221, 0xa57ba020, 0x07014205, 0x2312ef23, 0x20b78264, 0x24908240, 0x1da0fe40, 0x13605d23, 0x36361b23, 0x05674936, 0x19f6fe27, 0x26260102, + 0xed431838, 0x83e0200a, 0x19272149, 0x2026d186, 0x11312001, 0x665d4020, 0x48e02013, 0x022105d0, 0x184a8319, 0x8208c342, 0x003727f7, 0x00550045, + 0x63180100, 0x07250f47, 0x11070631, 0x21f78331, 0xfb463736, 0x82152005, 0x8211200d, 0x752720c7, 0x01280bc4, 0x31150706, 0x17161716, 0x07212983, + 0x05ac4405, 0x25843520, 0x012f2f82, 0x16160258, 0x02162002, 0x71201602, 0x43600116, 0x6023076e, 0x85711601, 0xc1fe3515, 0x0d010118, 0x6750140e, + 0x0e143702, 0x1801010d, 0xa8015067, 0x18203083, 0x2e263a83, 0xfe1b0e44, 0x2f4160fb, 0x01602607, 0x440e1b05, 0x2519832e, 0x0fcefe18, 0x32835c1b, + 0xb638ee22, 0x5c254183, 0xee380f1b, 0x08eb7d00, 0xdb820020, 0x4700162a, 0x7c005800, 0xa3008e00, 0xe752e182, 0x07222207, 0x0a694427, 0x934b0520, + 0x14172406, 0x71070607, 0x0b830be5, 0x30310623, 0x22368231, 0x62272623, 0x362207f9, 0xa5441737, 0x058d4605, 0x34313023, 0x22378235, 0x82220706, + 0x84222005, 0x7f352025, 0x36270894, 0x34373637, 0x82311533, 0x35332501, 0x31353515, 0x15211083, 0x82688331, 0x190c8535, 0x2d0d4c19, 0x25010002, + 0x06054d2e, 0x0c0c573d, 0x5a182502, 0x320808fc, 0x100fa1fe, 0x1b28272f, 0x08020126, 0x281b011b, 0x385c3027, 0x01250303, 0x39232301, 0x02ff1110, + 0x19212b16, 0x162b0113, 0x2501201e, 0x01010202, 0x82305c38, 0x2523082d, 0x3d191301, 0x0c3d5757, 0x0108090b, 0x1d200102, 0x0f131917, 0x57e0371a, + 0x0213193d, 0x52523636, 0x83023636, 0x01270821, 0x19151b70, 0x19020306, 0x15010101, 0x1617221b, 0x17160101, 0x09015122, 0x1c150e08, 0x0f140606, + 0x09080f01, 0x82021c01, 0x141b361c, 0x01030814, 0x0714214f, 0x230f0a0e, 0x070b151e, 0x1b600302, 0x20388215, 0x252e821c, 0x231b150f, 0x46820a0f, + 0x06051924, 0x14820605, 0x1a060328, 0x1a202020, 0x2c820a06, 0x190f1028, 0x7003020d, 0x0b821901, 0x2d846387, 0x250cdf61, 0x0048002d, 0xb518005d, + 0x05201b4d, 0x11010119, 0xcd4e2720, 0x2e6f1819, 0x051c7208, 0x16150632, 0x00373617, 0x3c222101, 0x3d43433d, 0x0121223c, 0x4b440b8c, 0x051f4406, + 0x47436020, 0x02403013, 0x0f372c2b, 0x220f0101, 0x19181f20, 0x82010f0f, 0x18c02002, 0x4413c2a1, 0xd8430d71, 0x37102413, 0x83022b2c, 0x0f0f263f, + 0x201f1819, 0x20558322, 0x2c008200, 0xffffff02, 0x017e02bb, 0x004000c0, 0x08476449, 0x01311523, 0x063f5931, 0x31373722, 0x2106606b, 0x09822727, + 0x30333228, 0x16311733, 0x0d823637, 0x36373627, 0x35313537, 0x05974f31, 0x23232625, 0x82272631, 0x062108f3, 0x36272607, 0x25c80137, 0xfe011919, + 0x01020b9d, 0x0d0d0808, 0x2f854a0b, 0x0714150a, 0x01012927, 0x2e098401, 0x27263e2a, 0x020d5101, 0x17101106, 0x502a1a32, 0x0128073f, 0x191901c0, + 0xeefe1d25, 0x0a203483, 0x39263c82, 0x0a071471, 0x05845f15, 0x3212662e, 0x08404332, 0x160e0514, 0x011f0e0d, 0x8208b867, 0x8fa418b8, 0x824d2008, + 0x3736210c, 0x20074c6e, 0x058b4c16, 0x3520ad83, 0x14271387, 0x30331617, 0x82313231, 0x06ed51c7, 0xe5823620, 0x13833020, 0x20053048, 0x051e4623, + 0x2405754f, 0x12350127, 0x05496d01, 0x39120128, 0x0d0e0e08, 0x0e850859, 0x012d0582, 0x1211052d, 0x17160117, 0x2d051112, 0x08367b01, 0x0d59082a, + 0x39080e0e, 0x160c5601, 0x17291385, 0x040d730b, 0x0a470a03, 0x2723880e, 0x0f0e18fb, 0xfb180e0f, 0x0e204b88, 0x033d1e82, 0x00730d04, 0xff0d0008, + 0x018002c0, 0x001900b3, 0x002b0022, 0x003d0034, 0x00620046, 0x59d9826b, 0x1b6e0704, 0x8236200b, 0x182720d9, 0x2211ef59, 0x52272617, 0x7d740512, + 0x87272008, 0x16132411, 0x7b313117, 0x36240531, 0x26313537, 0x23281882, 0x06071631, 0x15310707, 0x01292d88, 0x1d1d1613, 0x15158b16, 0x2007878b, + 0x7951184b, 0x41802010, 0x089107b6, 0x58186020, 0x088308d9, 0x06087226, 0xa0741606, 0x2008e541, 0x84568a9e, 0x87be205e, 0x0887521a, 0x6d87b020, + 0x50200888, 0xdd181187, 0xc02b0966, 0x0112121b, 0x161c1c1c, 0x87782274, 0x0797451d, 0xc001e030, 0x1900a001, 0x3f002c00, 0x65005200, 0x4c187800, + 0x71180ec3, 0x17200c27, 0x2311177a, 0x31373407, 0x0867ae18, 0x22230625, 0x19352627, 0x7f12cc2c, 0xd6620640, 0x184b920b, 0x4b157d67, 0xc3430bf6, + 0x0c4b7a0c, 0x0c7b4918, 0x85067d47, 0x9b671839, 0x0c084c15, 0x638be020, 0x19649d18, 0x200c3263, 0x05734b00, 0x270f3f41, 0x37361300, 0x37363131, + 0x12037318, 0x3f721720, 0x17142809, 0x37323316, 0x69073536, 0xbe691198, 0x18259212, 0x8c143373, 0x0c03419f, 0x8c0c1a69, 0x47012019, 0x931808ca, + 0x57690c0f, 0x0c2a4118, 0x5f4a568c, 0x084f4206, 0x2d560020, 0xdb751806, 0x2631250c, 0x21272627, 0x1827fb41, 0x410cddb2, 0x247e15c7, 0x0000260c, + 0x00000700, 0x0f9341ff, 0x8b007822, 0x2014474a, 0x208d8421, 0x25974111, 0xa0182592, 0x25921266, 0x4241bd41, 0x13410cf5, 0x41198c0c, 0xe8422fd7, + 0x09e37f26, 0x0e090922, 0x0020338c, 0x04200082, 0x41106f41, 0x7b612df7, 0x44332005, 0xff434019, 0x0c19440c, 0x43153742, 0x2f8c0cff, 0x0021498c, + 0x43df8e03, 0x76181adf, 0x272012e3, 0x4311df43, 0x6d6b14b9, 0x05054f07, 0x430c6343, 0xff2015a0, 0x430c1849, 0x00200cf8, 0x102fb382, 0xb001eaff, + 0x0c009601, 0x2f001900, 0x69010000, 0x11200b94, 0xc2420c8b, 0x4d21200a, 0x4a1809f0, 0x17240e0f, 0x01171818, 0x41058969, 0x256c0629, 0x249e8209, + 0x0f0c0c0f, 0x0584711b, 0x71c0fe21, 0x2c420b8c, 0x092b4f0f, 0x38002522, 0x18109143, 0x180af16c, 0x2308bdd2, 0x05113133, 0x18114241, 0x420a7250, + 0x7022069c, 0xb14470fe, 0x6e402005, 0x26520e71, 0x12122305, 0x8c8cfe1b, 0x44800121, 0xbf710eba, 0x00c22908, 0x002e001b, 0x0100004d, 0x08676819, + 0x18111521, 0x250b4150, 0x11313533, 0x0c191407, 0x37231031, 0x55332333, 0x364813c3, 0x01152905, 0x0f0d0c40, 0x0a0a10b4, 0x2706a443, 0x0740e040, + 0x070a0a07, 0x05830082, 0x00826020, 0x8206764e, 0x01202106, 0x602db082, 0x0910a001, 0x042d0309, 0xfe110d0d, 0x0518429d, 0xc0012022, 0x200c1b42, + 0x07874180, 0x0127fc82, 0x12121b40, 0x82004001, 0x00013500, 0x02b9ff09, 0x00c00100, 0x25000041, 0x06052505, 0x37371617, 0x20053976, 0x20908327, + 0x200d8234, 0x82038336, 0x3123230d, 0x0f852726, 0x26353623, 0x2b9b1827, 0x15062209, 0x05ac6b15, 0x01072008, 0x0100ff17, 0x0e00ff00, 0x3911110e, + 0x083f4c44, 0x080a0303, 0x04510601, 0x04071703, 0x82200b04, 0x702d080b, 0x01100307, 0x402d062c, 0x24682d40, 0x0bbe1413, 0xe806080b, 0x11ffffff, + 0x390e0e11, 0x08062801, 0x08010108, 0x02180207, 0x09081702, 0x360b8409, 0x20050222, 0x062d4025, 0x2c01012c, 0x2f2f2468, 0x09bd3733, 0x820b0909, + 0x0aa750be, 0x67005e25, 0x49010000, 0x17260588, 0x16171631, 0x04770615, 0x07304406, 0x22312322, 0x3620b482, 0x2168c882, 0x20ea8505, 0x20008231, + 0x05ec7f36, 0xb2491720, 0x095d4205, 0x8205f545, 0x8537201d, 0x68152003, 0x702d0808, 0x04161620, 0x0c0b1455, 0x5c901e01, 0x06504233, 0x6e0a0d3e, + 0x15060709, 0x20292921, 0x0b090a4a, 0x06054a0c, 0x13191916, 0x0e020312, 0x5a250504, 0xfe2f2585, 0x12121be0, 0x26260101, 0x06524141, 0x491e1516, + 0xa02d08c2, 0x20141401, 0x0f10061a, 0x53122215, 0x05c5415c, 0x1b6f093a, 0x1f161c1c, 0x0c0b461e, 0x0547090a, 0x03020e04, 0x19191312, 0x25050616, + 0x012a2085, 0x541b1212, 0x2c2c4545, 0x55821d08, 0x080a5d18, 0xcf700020, 0x00592209, 0x083f436b, 0x16313324, 0x95191617, 0x16210a71, 0x06ae4a17, + 0x18353521, 0x2308bc4b, 0x31151516, 0xde4e0185, 0x27342409, 0x82232726, 0x07494115, 0x18312121, 0x2407336c, 0x35151711, 0xa38f1815, 0x31232409, + 0x83200706, 0x83a02093, 0x250832e4, 0x02011919, 0x15021616, 0x0d200e0d, 0x4d10100d, 0x07347913, 0x110b0c23, 0x070f4108, 0x40200785, 0x0abd5d18, + 0x3b088a43, 0x191901c0, 0x02162025, 0x069a1602, 0x40171110, 0x0d101020, 0x1b134d0d, 0x9820180d, 0x25072e79, 0x0b0b1120, 0xf16a9001, 0x8001220b, + 0x827b1810, 0x6f00200b, 0xac2b0c7b, 0xe000c600, 0x06130000, 0x51310707, 0x1629051b, 0x30311617, 0x33311631, 0xfb441831, 0x055c7b0b, 0xd64b3720, + 0x82172006, 0x31302421, 0x84262726, 0x076a5007, 0x33823120, 0x30373024, 0x1f423033, 0x17162206, 0x20238227, 0x05075c22, 0x4d7f3720, 0x17172106, + 0x14204382, 0x20065541, 0xac871806, 0x31272508, 0x31073123, 0x35210f89, 0x21018331, 0x60433734, 0x051d7d06, 0x27060722, 0x23245182, 0x15351507, + 0x2005a751, 0x20698232, 0x24638237, 0x07062726, 0x223d8230, 0x5c153505, 0x302108ec, 0x41698323, 0x363a058c, 0x05137737, 0x322f2026, 0x04091021, + 0x01020102, 0x05090606, 0x06090528, 0x00840104, 0x04025608, 0x32201109, 0x0526202f, 0x1f050413, 0x14070a15, 0x1a0e0d1f, 0x2c061314, 0x20010103, + 0x2e2c301f, 0x01041f1f, 0x20030126, 0x302c2e1f, 0x0101201f, 0x13062c03, 0x0d0e1a14, 0x0a07141f, 0x04051f15, 0x0e0d0137, 0x0d142c14, 0x0403010e, + 0x25241b04, 0x0104041b, 0x290982c0, 0x041b2425, 0x01030103, 0x1d820d0e, 0x010d0e2c, 0x12017001, 0x02010ba1, 0x7a84050c, 0x050d0d2a, 0x0d050808, + 0x01020209, 0x04270082, 0x01020b06, 0x8212a10b, 0x1407301e, 0x050d0a15, 0xbc190f10, 0x03030b0b, 0x84102907, 0x1d1e2775, 0x2e16162e, 0x94841e1d, + 0x07291037, 0x0b0b0303, 0x100f19bc, 0x150a0d05, 0x020c0613, 0x2b2b2bf5, 0x26658214, 0x2e130d0d, 0x830a0101, 0x2a022102, 0x0b861382, 0x132e0125, + 0x83010c0d, 0x4a0020a9, 0xa2260973, 0x33001d00, 0x215a0000, 0x3105250a, 0x07061716, 0x2309a270, 0x01273137, 0x4209bf4c, 0x212109ed, 0x08e17734, + 0x01134028, 0xc0fe1301, 0xd6770c0d, 0xf6f62305, 0xc7426c01, 0x34021905, 0x01802308, 0x94780662, 0x09802a06, 0x80091515, 0x0c050504, 0x232f820d, + 0xbefe6262, 0x230f7f74, 0xff030003, 0x2405e766, 0x004d0040, 0x070b646c, 0x18213321, 0x2208c749, 0x18153123, 0x210c5e53, 0x82452323, 0x31272105, + 0x37210784, 0x20298233, 0x21218217, 0xd15a3135, 0x33012305, 0x8a4e3323, 0x17152b07, 0x31311516, 0x31070714, 0xcd8a0706, 0x42323121, 0x802006a3, + 0x0a9c0a19, 0x4420a025, 0x82022d2d, 0x40a03210, 0x05481320, 0x040f8908, 0x1b120217, 0xd0260a10, 0x31e182a0, 0x80800001, 0x1b1b0180, 0x09f72029, + 0x35260409, 0xf685e8fe, 0x1b180128, 0x0d0a0313, 0x54180a0d, 0x16820783, 0x8b184020, 0x012d07b2, 0x03075f19, 0x5c100637, 0x330d0212, 0x285b8240, + 0x2920e0fe, 0x80011b1b, 0x21318369, 0x1d752404, 0x04132706, 0x00000909, 0x03820300, 0x8002202a, 0x25006001, 0x4b003800, 0x22085152, 0x7a171716, + 0x9d440aa5, 0x31272105, 0x2627d383, 0x35272627, 0x82172705, 0x54168306, 0x362705d4, 0x17333737, 0x18161727, 0x310a6bd8, 0x00070706, 0x3e282902, + 0x48482b3c, 0x283e3c2b, 0x0d8d0229, 0x48130132, 0x22184848, 0x01171722, 0x22171701, 0x5a481822, 0xcf20108f, 0x01253583, 0x2a48482a, 0x203b8301, + 0x230e841e, 0x29494929, 0x0f200e85, 0x3c852f82, 0x45851e20, 0x48210f82, 0x874c8318, 0x0000300f, 0xff000002, 0x014002de, 0x003c00a0, 0x74000045, + 0x37280505, 0x37323133, 0x37163117, 0x54094050, 0xd08305b8, 0x4505b545, 0x162305ad, 0x18373233, 0x5009b846, 0x2708095d, 0x19191823, 0x0707381b, + 0x0a0b0755, 0x25240101, 0x191b3836, 0x372c1819, 0x02363652, 0x2c1a1901, 0x02161602, 0x08081917, 0x13220783, 0x76469d10, 0x0e3c2107, 0x7a382e83, + 0x0b040309, 0x242536f0, 0x0b0a0101, 0x02011b0e, 0x36523636, 0x42192c2b, 0x2e232683, 0x83290106, 0x07332307, 0x1350bc0a, 0x23c7830b, 0x01c001e0, + 0x5e064f43, 0x05260ab9, 0x16070631, 0xcd840517, 0x27051d61, 0x07220137, 0x15063131, 0x09328018, 0x26273426, 0x8c012123, 0x27075043, 0x0113c0fe, + 0x40011301, 0x21095043, 0x594294fe, 0x07484a06, 0x212b5043, 0x00820005, 0x0140022d, 0x00250080, 0x0074005e, 0x50a0008a, 0x1e4208ad, 0x05284205, + 0x07134918, 0x77413620, 0x01212608, 0x15212121, 0x18a88331, 0x470ffff0, 0x3521053a, 0x13f11831, 0x2913850b, 0x35363732, 0x35152535, 0x0e6e1415, + 0x35352205, 0x57cd1831, 0x9433201d, 0x1b402c2b, 0x01011212, 0x01011509, 0x82010915, 0x360986bd, 0x1b121201, 0x000240fe, 0x4002c0fd, 0x0909c0fd, + 0x0f01300e, 0x8d60010f, 0x0e302304, 0xb94a0909, 0x0cc64a0d, 0x01210c8c, 0x2a528380, 0x0e060b07, 0x060e1a1a, 0x8747470b, 0x83072009, 0xe0fe2280, + 0x254b8240, 0x01010f20, 0x0591200f, 0x40217e82, 0xcf5c18c0, 0x660f9f0f, 0x45220a37, 0x37666f00, 0x3127210c, 0x2105f142, 0x52790706, 0x31272505, + 0x31233135, 0x33211582, 0x71f31833, 0x2726260e, 0x31333736, 0x08e44326, 0x27012726, 0x23062717, 0x35201083, 0x06213082, 0x05d84115, 0x09805718, + 0x6f373621, 0xf9730588, 0x179f2e0c, 0x16160201, 0x39120e02, 0x50070523, 0x86e58350, 0x07206305, 0x6a01b926, 0x122b2b2b, 0x16707019, 0x011a1f23, + 0xbb1519bb, 0x72701909, 0x10182807, 0x2d0e1b20, 0x1820051b, 0x2e108e8a, 0x69fe9136, 0x06222222, 0x36252401, 0x19032509, 0x3e0f7f70, 0x06000e04, + 0xdaff0000, 0xa6014002, 0x34002100, 0x48003e00, 0x5c005200, 0x11130000, 0x5e161111, 0x3721054c, 0x20078436, 0x21fc8311, 0x8d5d0607, 0x20058205, + 0xa9721805, 0x4b232011, 0x23230500, 0x67373531, 0x35310580, 0x15053331, 0x31231535, 0x37363736, 0x33233327, 0x2f448315, 0x1a010027, 0x41414241, + 0x3b3c3c3c, 0x010f0f12, 0x0e820d82, 0x13210d83, 0x200d820e, 0x07e45720, 0xe02d0787, 0x0112121b, 0x12014040, 0x01401b12, 0x21078580, 0xae424040, + 0xfe4f3605, 0xfe3501cb, 0x160c1ecb, 0x11120808, 0x040f0809, 0x0113090a, 0x270f8635, 0x040f0908, 0xef130a09, 0x230b7d64, 0x011b1b29, 0xd0204a84, + 0xa0205684, 0xd0204986, 0x97515784, 0x070f4105, 0x35002b2a, 0x49003f00, 0x77005c00, 0x20231141, 0xff891813, 0x41072026, 0x2625051c, 0x36272627, + 0x05054a37, 0x89182720, 0x2c4119f7, 0x8680201c, 0x051d41bd, 0x41055943, 0x40210519, 0x20f48f80, 0xfa891884, 0x243f4113, 0x19d1fe21, 0x2d0c8ca6, + 0x12121b80, 0x01c04001, 0x401b1212, 0x706e3060, 0x20078806, 0x068a1810, 0x04002110, 0x26080f45, 0x00270019, 0x45460034, 0x7353080d, 0x0c556c13, + 0xa1540720, 0x07062605, 0x27263121, 0x181a8425, 0x2009316d, 0x7a2d1936, 0x83c0200a, 0x05ab4494, 0x18a03021, 0x2a0a869a, 0x010f0110, 0x01010f60, + 0x82a0fe0f, 0x50182705, 0x02165050, 0x04841602, 0x77052e41, 0x3983053b, 0x83000121, 0x18a02043, 0x72088969, 0x012505b7, 0x1602b00f, 0x82348330, + 0x90002004, 0xac8c20cb, 0x313326cb, 0x07061716, 0x20cb8223, 0x05554b27, 0x2706072f, 0x07222726, 0x17061706, 0x31311716, 0x08637f32, 0xa872e583, + 0x07ef4b05, 0x26272623, 0x0c4a1837, 0x2239820c, 0x7f303127, 0x1a460871, 0x05164305, 0x1b121222, 0x0b268c18, 0xe0e0d023, 0x84cd83e0, 0x18102004, + 0x080934a8, 0x0a0b5c26, 0x12060311, 0x090d0e11, 0x06010107, 0x12011409, 0x02031612, 0x020c0b17, 0x10021212, 0x1103030c, 0x02120704, 0x132b0082, + 0x06080d10, 0x13090701, 0x82111202, 0x0a182121, 0x41412184, 0xce9b1815, 0x41702008, 0x29080741, 0x0e0e0e98, 0x12060302, 0x01040311, 0x03050405, + 0x05060504, 0x201e0b0a, 0x0e02070d, 0x12020212, 0x0105040e, 0x11120701, 0x06820104, 0x03050130, 0x06040407, 0x0a040105, 0x0c201e0a, 0x22840306, + 0x00820020, 0x1000012b, 0xb001deff, 0x4e00a201, 0x066d4f00, 0x18070721, 0x200bfae7, 0x680d8f31, 0x262205af, 0x974a3737, 0x059b7e06, 0x362b0d8f, + 0x01173637, 0x03020b72, 0x473f2a07, 0x692205f6, 0x0885a940, 0x0841d425, 0x8b0c0c0d, 0x406a221a, 0x211a8baa, 0x20839b01, 0x524b3e20, 0x06ac5305, + 0x2f836220, 0xc6821696, 0x0005003c, 0x02c0ff00, 0x00c00100, 0x00430030, 0x00690056, 0x2500007c, 0x31313114, 0xb1821514, 0x31232322, 0x2906416b, + 0x16171417, 0x06071417, 0x485e2207, 0x8216200c, 0x17162215, 0x11a65705, 0x83523520, 0x12a65711, 0x8212fc64, 0x1415328c, 0x0e14621c, 0x0301010d, + 0x020a0107, 0x06180e0f, 0x36531805, 0x0de34711, 0x530b7c57, 0xa67b0cda, 0x01c03c0c, 0x111b0101, 0x0e0d0111, 0x0e050514, 0x1401010e, 0x12121816, + 0x22220102, 0x8b48393a, 0x0c175662, 0x8c0cf754, 0x54198c4f, 0x28220cf7, 0x8d434800, 0x5c32201f, 0x23270614, 0x23171531, 0x18152333, 0x4e08bd40, + 0x362105ff, 0x05a55033, 0x06070623, 0x14e55907, 0x30308023, 0x82f68530, 0x30302108, 0x2605f641, 0x48110b0c, 0x821b1b29, 0x291b21e6, 0x5315c555, + 0x402106c5, 0x24e38640, 0x0b117840, 0x07a0450c, 0x5c010021, 0xb91808ef, 0x2d5109ab, 0x31352509, 0x37363736, 0xb34f0f87, 0x23c4820b, 0x17151431, + 0x8b08994d, 0x3534211b, 0x20080f67, 0x0e481800, 0x88c02008, 0x21088809, 0x471850c0, 0x142309f1, 0x86010d0e, 0x8370200e, 0x2024830b, 0x08d37910, + 0x10242788, 0x6b020310, 0x1087498d, 0x04000022, 0xba2ccb82, 0xc6018001, 0x40003400, 0x59004d00, 0x22063374, 0x4d363137, 0x05860541, 0x25062363, + 0x07312727, 0x058c0631, 0x11272622, 0x1722f182, 0x91180706, 0x098908e2, 0x07063123, 0x26188a37, 0x280c0e0e, 0x85101028, 0x820c2003, 0x909582bd, + 0x0f522511, 0xc00f0101, 0x10200484, 0x0f220887, 0x15891001, 0x06be0127, 0x0c22220a, 0x2703850c, 0x0f070509, 0x070f30fe, 0x0a28138b, 0x010f0706, + 0x8e070fd0, 0x20071b46, 0x2e7718d0, 0x82002010, 0x73082000, 0x28200853, 0x4c20fd84, 0x6626fd82, 0x8a007800, 0xd14f0000, 0x07454f06, 0x114f9c18, + 0x20072764, 0x20de8a03, 0x200b9633, 0x0b195727, 0x10191720, 0x33240c73, 0x31153323, 0x200b997c, 0x05934921, 0x2a057462, 0x31353123, 0x0e400133, + 0x52780909, 0xfe2107c0, 0x240987d0, 0x0e090978, 0x4bd78370, 0x60200576, 0x88200a94, 0x200b286d, 0x0b516c98, 0x1090fe22, 0x36420082, 0x68022007, + 0x102308ce, 0x82c00110, 0x01402659, 0xfe1f1414, 0x216c87f0, 0x09831001, 0xfe208983, 0x41082e46, 0x0787075c, 0x5e8b8020, 0x788b2820, 0xc8424820, + 0x00003613, 0xff040001, 0x01fc01c4, 0x004100bc, 0x23061700, 0x27223131, 0x05bf6e27, 0x60173121, 0x372006e7, 0x3620099e, 0x3305fb52, 0x01071415, + 0x13130fb2, 0x0e0e5c0f, 0x0b0b3033, 0x2a300909, 0x0a210682, 0x20068e0a, 0x25238633, 0x0e2ec4fe, 0x0c835c0e, 0x0a303325, 0x820b0b0a, 0x20069226, + 0x21238633, 0xab82c4fe, 0x20070346, 0x27ab8260, 0x31311716, 0x21333316, 0x2109094e, 0x01483123, 0x23099507, 0x37362726, 0x5115a34c, 0x06240777, + 0x11070607, 0x142b4582, 0x00313015, 0x130d0e02, 0x41400160, 0x3021079e, 0x5b661801, 0x0b884c0c, 0xde430b85, 0x12152308, 0x0c880c0d, 0x478c2792, + 0x080d6a18, 0x60c0fe24, 0xe3830203, 0x0240002a, 0x00400180, 0x3700004b, 0x1720e384, 0x0fd26e18, 0x26070625, 0x95313527, 0x130141e3, 0x1521d583, + 0x42918300, 0x67180962, 0xd78d0a24, 0xca44ef84, 0x83a02008, 0x4dc291fd, 0x0d230c85, 0x41a0140e, 0x0121059b, 0x05975800, 0x275f1320, 0x077f4505, + 0x4d07856c, 0x312008e8, 0x8b450995, 0x84112009, 0x837c9cad, 0x192084ce, 0x8e0a519f, 0x410e83c9, 0x0123085e, 0x440700a0, 0xc532066b, 0x3f002d00, + 0x61004f00, 0x7e007100, 0x00009100, 0x2b6d2601, 0x07062106, 0x67055d4b, 0x97180f89, 0x31210abf, 0x05686827, 0x200b524b, 0x892b1905, 0x4b05200e, + 0x218f1074, 0x1b722520, 0x12887e0b, 0x12520125, 0x42768812, 0xd020077a, 0x2007ca67, 0x231187d0, 0x20f28876, 0x2706eb4f, 0x0f01010f, 0x0f019001, + 0x23058244, 0x70fe010f, 0xf8201998, 0x0b137418, 0xac445820, 0x82102008, 0x0abb2940, 0x0d015b0a, 0xc0fe140e, 0x38606283, 0x83602008, 0x05034313, + 0x7ebb5b21, 0x40200697, 0x82060946, 0x20118207, 0x21159470, 0x741832a0, 0x30200aec, 0x37849c86, 0x08234918, 0xc6010626, 0x31001900, 0x38067d41, + 0x31151506, 0x17163107, 0x31371716, 0x37323133, 0x27363137, 0x37070127, 0x0fe86307, 0x23263e08, 0xd1010722, 0x0968110f, 0x09090a56, 0x0c365606, + 0x0d0b5007, 0x70a8fe28, 0x09097070, 0x0d0d0a40, 0x1616700a, 0x181f1f18, 0x0b0db901, 0x360c0750, 0x08090656, 0x6809560b, 0xfe280f11, 0x832582ee, + 0x09402322, 0x23837009, 0x82161621, 0x09db7a8f, 0x8f822020, 0x63005222, 0x20080766, 0xd1621831, 0x23998208, 0x36373233, 0x26210182, 0x21018227, + 0x9a430523, 0x054e4405, 0x06070628, 0x37321307, 0xf7423131, 0x0a346e05, 0x23060722, 0x2205e450, 0x8f251716, 0x01420831, 0x252521a0, 0x23011a1a, + 0x14141819, 0x1e231819, 0x1f1f2929, 0x23240102, 0xfe313433, 0x121201e0, 0x1b20201b, 0xa0011212, 0x23333431, 0x1f020124, 0x1e29291f, 0x14191823, + 0x23191814, 0x251a1a01, 0x268b2125, 0x01c0013a, 0x07080807, 0x09018001, 0x090d0c0a, 0x1508070a, 0x1d282814, 0x600f101c, 0x80204583, 0xfe295083, + 0x1c100f60, 0x1428281d, 0x85288215, 0x85802026, 0x18238935, 0x240bc75b, 0x004d0040, 0x08f1545a, 0x2909df54, 0x17160706, 0x31301716, 0x8f6a3114, + 0x11645309, 0x23059945, 0x31303530, 0x200cee42, 0x223b8225, 0x82070607, 0x3637284d, 0x2ca00137, 0x4a01191a, 0x19260cd8, 0x0d012c1a, 0x6f45140e, + 0x14302609, 0xfe010d0e, 0xfb4818c0, 0x0001210b, 0x0bc94818, 0x2d1f3124, 0x4918362d, 0x35230b09, 0x421f2d2e, 0x302505b5, 0x0f01010f, 0x83058530, + 0x01402255, 0x18398b8f, 0x200c5049, 0x0ccf6a00, 0x18000f34, 0x4a002f00, 0x70006300, 0x17130000, 0x31171727, 0xb6843117, 0x37362722, 0x27210e82, + 0x24fc8233, 0x23331723, 0x050f5333, 0x27312323, 0x05995031, 0x27070623, 0x05094207, 0x34353623, 0x07ff5227, 0x14150624, 0x01821617, 0x3c411320, + 0x051c4505, 0x2105767b, 0x24833123, 0x17270723, 0x6e6c1827, 0x4f643708, 0x5c604f4f, 0x36523f30, 0x23010236, 0x202020e9, 0x23203353, 0xce832323, + 0x867c8321, 0x30222217, 0x130d696d, 0x24821020, 0x140e0d23, 0x06704920, 0x2a240a87, 0x16606060, 0x76221383, 0x5d832f01, 0x01225d29, 0x52363602, + 0x828f303f, 0x2020285d, 0x0f400f01, 0x86237c01, 0x182f2013, 0x2718e9a8, 0x0f01a001, 0x010d0e14, 0x87057248, 0x82e02009, 0x3241845c, 0x02000000, + 0xc0ff0700, 0xc0013902, 0x50002300, 0x82010000, 0x232624d7, 0x74223121, 0x332207db, 0x49183736, 0x1637075e, 0x36373217, 0x07273637, 0x31313130, + 0x23063130, 0x31152722, 0x84353121, 0x31312209, 0x420d8226, 0x03470561, 0x3a198207, 0x3a240207, 0x10083a3a, 0x08109cfe, 0x100f153a, 0x2906062a, + 0x28291819, 0x82281919, 0x06293703, 0x0f102a06, 0x09083015, 0xc0fe1112, 0x08081311, 0x12010606, 0x435f1b12, 0x2e0b8205, 0x5b5b5b58, 0x255b0d0d, + 0x01082525, 0x891c1c01, 0x82082003, 0x01972912, 0x05858505, 0x83010101, 0x2208ca4c, 0x18018340, 0x82098770, 0x00192ad3, 0x00450036, 0x21211300, + 0x05194d21, 0xa6822720, 0x06312122, 0x1527dd83, 0x33161714, 0x54351517, 0x332106d9, 0x05024331, 0x2005ac47, 0x24d68223, 0x11112123, 0x07216611, + 0x31112708, 0x36022523, 0x3602cafd, 0x060b0a10, 0xfe1a0e4c, 0x4c0e1a74, 0x100a0b06, 0x0e0d011b, 0x0e14e014, 0xc040010d, 0x07650140, 0x01402206, + 0x291a8200, 0x1472090b, 0x72140101, 0x34820b09, 0xa0a02024, 0x268350a0, 0x50202f83, 0xff250c82, 0xff000100, 0x056d4d00, 0x0023b582, 0x82000300, + 0x00022900, 0x16008001, 0x44002d00, 0x2512a75a, 0x27223121, 0xab633526, 0x09be5a06, 0x05201685, 0x5a050d61, 0x17230c83, 0x5a001516, 0xfe210a7f, + 0x206e8280, 0x21108f40, 0x11828001, 0x19871a84, 0x07b94e18, 0xea649c85, 0x220c8c0c, 0x4f060000, 0x1a2a08eb, 0x94008b00, 0xa6009d00, 0xa76caf00, + 0x2625221c, 0x06467b07, 0xae181720, 0x098e089d, 0x16170625, 0x83313737, 0x6b09911d, 0xe64a05ce, 0x27362115, 0x840a7c7b, 0x31372265, 0x45551836, + 0x17272408, 0x84370737, 0x88372072, 0x37072408, 0x82312707, 0x19f96c4c, 0x0b0c3931, 0x0b0b2222, 0x2d210a0a, 0x090b0c38, 0x842e3909, 0x22222f0d, + 0x0b0b0a0a, 0x09392e22, 0x380c0b09, 0x0d84212d, 0x0c0b2228, 0x2d220909, 0x27820b39, 0x8b2d3821, 0x382d2127, 0x0b272782, 0x09222d39, 0x842daa09, + 0x8c442000, 0x85162006, 0x14306d0d, 0x0a0ac022, 0x45826d8e, 0x6da29584, 0xc020bd93, 0x888d7a8c, 0x00820020, 0x00000335, 0x0002e0ff, 0x0d00a001, + 0x74004e00, 0x15130000, 0x18331535, 0x23084071, 0x35153507, 0x5d0bb24f, 0x1624051c, 0x23311515, 0xb86c2382, 0x260d9407, 0x36313737, 0x82033333, + 0x31332140, 0x8b075943, 0x31152309, 0x0b550706, 0x27262905, 0x0701a0b0, 0x30010790, 0x080e8218, 0x0e141c23, 0x07f86634, 0x20067159, 0x22118280, + 0x87801c14, 0x0909250d, 0x09090e0e, 0x27053d47, 0x12121b80, 0x28680101, 0x07230082, 0x82070101, 0x18282406, 0x83010f10, 0x8328204d, 0x505c2035, + 0x202006aa, 0x5c200787, 0xfe215e83, 0x086d59e0, 0x4405fb42, 0x0030085a, 0xff010000, 0x02c0ffff, 0x00c00181, 0x1300003d, 0x087b4118, 0x5e363721, + 0xc777061f, 0x22c18205, 0x85312727, 0x052c46c9, 0x6d313521, 0x3121069d, 0x3f2b8226, 0x33363137, 0x050cd433, 0x21181909, 0x0a191821, 0x220d0c04, + 0x010a7f1b, 0x09380901, 0x340a0d0c, 0x23088a6c, 0x0d0c0b33, 0x012b1382, 0x1b7e0b01, 0xc0010d22, 0x831e0c01, 0x12122bd2, 0x16010c1e, 0x0d0e0969, + 0x3582400a, 0xfa2b0822, 0x1227e984, 0x2bfa1b12, 0x82010108, 0x0e0d2414, 0x41166909, 0xbe2806c7, 0xc6014201, 0x56000c00, 0x18067178, 0x2609c8e0, + 0x31230607, 0x82152231, 0x8307209a, 0x27062503, 0x37262726, 0x03839c82, 0x17323325, 0x6e171716, 0x07200574, 0x2620d085, 0x0720d482, 0x17221184, + 0x13841631, 0x27201183, 0x3721d282, 0x83018207, 0x284a862e, 0x26272223, 0x37373435, 0x05aa66a0, 0x2c080585, 0x01010121, 0x03091a08, 0x0d0b0c04, + 0x0405060d, 0x08331302, 0x1b22231f, 0x150f0e1b, 0x0504040c, 0x0c0c0c07, 0x0907101b, 0x03083214, 0x94e41817, 0x16472e08, 0x19391008, 0x04031919, + 0x07040e28, 0x0567753d, 0x58183c20, 0x972a0d6a, 0x0c030101, 0x050d081a, 0x5c830406, 0x18350829, 0x13120e03, 0x830a251f, 0x285a8352, 0x1710080e, + 0x0c093641, 0x99e4185c, 0x1a4e3008, 0x3ec74021, 0x04043e3e, 0x0709242d, 0x8309093e, 0x003b2258, 0x08f74202, 0x3c002922, 0x4e146953, 0xb374057b, + 0x2fa91805, 0x05212109, 0x42118f6d, 0x93740837, 0x0f90260a, 0x010f0101, 0x05584270, 0x4580fe21, 0x58530d64, 0x1be0230f, 0x2e821212, 0xbe5f0f20, + 0x71671806, 0x08074b0c, 0xc001002a, 0x33001a00, 0x6b005000, 0x211c7345, 0xda483605, 0x16172109, 0x20096f7f, 0x07186937, 0xdb183520, 0x072f082a, + 0x31171706, 0x17160706, 0x34373316, 0x45313727, 0x87450553, 0x15142105, 0x7206b443, 0x53391a29, 0x150c090a, 0x151e1e15, 0x0a090c15, 0x0f090b0c, + 0x0f15150f, 0x0c0b090f, 0x2cf782a3, 0x04060e0b, 0x060e600e, 0x091f0d03, 0x34d98201, 0x1e09c00d, 0x0e06040e, 0x06030d60, 0x09090c0e, 0x09090d0e, + 0x14044501, 0x0c0b8c2a, 0x010b0b0e, 0x0e0b0b01, 0x0a255482, 0x0808090a, 0x20058209, 0x3a33827c, 0x04030202, 0x20060e0e, 0x060e0d03, 0x0e0e090a, + 0x0e200909, 0x0e060a09, 0x8320030d, 0x02042204, 0x05714103, 0x250adf41, 0x003d0015, 0x355f1300, 0x89112014, 0x33332115, 0x60059b54, 0x64180521, + 0x1124095b, 0x11312131, 0x10adc818, 0x40216485, 0x07f65440, 0x13694020, 0x40fe2206, 0x0c3c5601, 0x18076356, 0x4408bf73, 0x012b06bd, 0x00e0fe20, + 0x00000900, 0x8201c0ff, 0x23002f01, 0x43003400, 0x51004a00, 0x74006c00, 0x3b6d7c00, 0x32332b0b, 0x11151617, 0x06071431, 0xc3621523, 0x26213a09, + 0x11272627, 0x31171413, 0x21331631, 0x21313531, 0x06072231, 0x27063715, 0x2a188206, 0x31332726, 0x07060706, 0x83373637, 0x16352608, 0x26312317, + 0x05276d27, 0x23262722, 0x2b822982, 0x4d171421, 0x352e083b, 0x33233307, 0x27261716, 0x23332337, 0x38833736, 0x83361721, 0x2037821e, 0x20448236, + 0x20e78300, 0x073d4501, 0xc182fc85, 0x1b1b2927, 0x09094001, 0x06da480e, 0x0205b739, 0x06060502, 0x033f020a, 0x2a05060a, 0x091f030b, 0x1f092424, + 0x184e0b03, 0x2213724d, 0x821f1fdf, 0x821f821a, 0x24092407, 0x8939030b, 0x0609243d, 0x83600106, 0x215b825c, 0xc548c0fe, 0x84068206, 0x88402085, + 0x05843711, 0x06050101, 0x2323160d, 0x0a060d16, 0x172b261c, 0x262b17a4, 0x4e18521c, 0x102a132b, 0x2b171c26, 0x1c172b20, 0x358b4c26, 0x04000032, + 0xbffffbff, 0xc5018601, 0x6c005f00, 0xac008c00, 0x2806e355, 0x31373316, 0x31171732, 0x23038316, 0x14310715, 0x07250783, 0x15063107, 0x06ff6317, + 0x23210b82, 0x053c4b27, 0x31272725, 0x53072326, 0x0b8305a1, 0x31373523, 0x26078334, 0x36313737, 0x69312735, 0x332608fa, 0x37323117, 0xf2541737, + 0x3705240b, 0x82323707, 0x206f8353, 0x74078330, 0x5f820817, 0x37262727, 0x27172717, 0x21478236, 0x3b843134, 0x33343122, 0x07209382, 0x08066556, + 0x27262322, 0x121212ae, 0x16150b09, 0x09050a0a, 0x06021214, 0x0c0b0b0c, 0x13130206, 0x0a0a0509, 0x090b1615, 0x1f881e82, 0x02131324, 0x00820b06, + 0x16211f87, 0x201f8215, 0x14421862, 0xfe30080b, 0x2b2b2bf1, 0x29150901, 0x08081216, 0x090a0425, 0x09382105, 0xf8030506, 0x08252525, 0x29161208, + 0x2b010915, 0x09060503, 0x09052138, 0xba01040a, 0x8daf4d8f, 0x182dba26, 0x2d181616, 0x26080585, 0x676767fa, 0x02241301, 0x03050b01, 0x01010959, + 0x01083108, 0x3c080807, 0x03595959, 0x02010b05, 0x67011324, 0x82070808, 0x01072717, 0x00000009, 0x00820002, 0x01400229, 0x001b0080, 0x1800003c, + 0x2b08dda6, 0x31070722, 0x17141506, 0x33163117, 0x21059f4c, 0x88180511, 0x8d190918, 0x614109ae, 0x31372505, 0x37263127, 0x12344682, 0xcdfe1b12, + 0x0997131a, 0x1a139709, 0x121b3301, 0xcffe0112, 0x18dba218, 0x1f834020, 0x0a961328, 0x960a0d0d, 0x3b820113, 0x2f000122, 0x183dcb18, 0x04000023, + 0x53961800, 0x00083207, 0x008b0082, 0x01000094, 0x33351535, 0x23311531, 0x05445f27, 0x6405ec56, 0xba4307a6, 0x07062105, 0x0d516218, 0x830b5455, + 0x1716220b, 0x06dc4e33, 0x26272799, 0x33272627, 0x18171631, 0x21095648, 0xdc463123, 0x03232105, 0x21066357, 0x8b870535, 0x3028012b, 0x0e140830, + 0x1276010d, 0x83e18328, 0x122827d9, 0x1b1c2d43, 0x16830504, 0x180d0121, 0x2e0aab6a, 0x1c1d0503, 0x401a0e2d, 0x1c2d0e1a, 0x9003051d, 0x0504251f, + 0x422c1c1b, 0x7620488b, 0xc8213f84, 0x25008230, 0x3030a001, 0x08823801, 0x83683021, 0x22042114, 0x2508877e, 0x2f1e2202, 0x698c392e, 0x5b834020, + 0x2727332b, 0x01011414, 0x27271414, 0x231d9133, 0x1e2f2e39, 0x0420438b, 0xfe213283, 0x826083a8, 0x18002003, 0x2f08ff47, 0x00c001c7, 0x0051000f, + 0x07063700, 0x31330706, 0x2a05f662, 0x37153123, 0x14153515, 0x42171617, 0x36200510, 0x43051349, 0x1621066a, 0x05cc5c17, 0xe8602220, 0x35362306, + 0xfa483135, 0x18362005, 0x370acc74, 0x1a2302a0, 0x1a10de10, 0x80400223, 0x270e1108, 0x110e0e07, 0x0e181811, 0x07310582, 0x01011a2b, 0xe81c101f, + 0x011f101c, 0x28181701, 0x05464508, 0x85b01021, 0x2def2a07, 0x1b1b1116, 0x902e1611, 0x22008391, 0x820a0608, 0x1111253e, 0x18180e0e, 0x07300583, + 0x3c372c2b, 0x2f15152f, 0x2a2a333c, 0x9108061a, 0x8505fe4a, 0xbb731805, 0x80012108, 0x332adb82, 0x5b005200, 0x26130000, 0x9d442323, 0x22232405, + 0x83312727, 0x20c2820d, 0x05916c07, 0x6b213321, 0x296f0525, 0x07222405, 0x83063107, 0x15032225, 0x061e6b35, 0x4205dc4f, 0x2d4f056d, 0x17212307, + 0x43791716, 0x02a23a05, 0x02071306, 0x06060315, 0x06021503, 0x0d0e140a, 0x76010a01, 0x140e0d01, 0x25168769, 0x121201a2, 0x1f55401b, 0x1b402907, + 0xfe011212, 0x010fc080, 0x24059d50, 0x0606ba01, 0x83028334, 0x16b02533, 0xb0160a0a, 0x13844483, 0x20e6fe24, 0x2f832020, 0x84085649, 0x90202146, + 0x0f233a85, 0x47040001, 0x38200837, 0x53083f77, 0x152105c4, 0x07294731, 0x098f6f18, 0x8b05e44f, 0x2722270f, 0x31113526, 0xde833135, 0x077f2f19, + 0x7f05e149, 0x4b47056a, 0x05385405, 0x200c9c79, 0x11935e21, 0x3f60e027, 0x0909023f, 0x622f190e, 0x3f022411, 0x82a0603f, 0x00012116, 0x2005e141, + 0x200783ff, 0x50431810, 0x0c255e0c, 0x01c00128, 0x10221716, 0xd448c0fe, 0x82092005, 0x08af4c3a, 0x01270b82, 0x17221040, 0x82800116, 0x67438500, + 0x2d4a07cd, 0x0c16420c, 0x0f000130, 0xf101c0ff, 0x5c00c001, 0x32010000, 0x01831617, 0xf5830720, 0x17230382, 0x84060716, 0x21158201, 0x09831415, + 0x59462720, 0x31152107, 0x4505c958, 0x0626071f, 0x26272627, 0x63553435, 0x26272107, 0x2007e56f, 0x82098217, 0x36600815, 0x08000133, 0x0e0d0d05, + 0x11010b0a, 0x1d1e1f13, 0x06060816, 0x0b0b0401, 0x2b120e11, 0x19080818, 0x08221f2d, 0x0a080702, 0x1616023a, 0x080a3a02, 0x22080207, 0x08192d1f, + 0x122b1808, 0x0b0b110e, 0x06060104, 0x1e1d1608, 0x0111131f, 0x0d0e0a0b, 0x0108050d, 0x1c1207c0, 0x2c28221d, 0x0a120a0d, 0x37082082, 0x15080705, + 0x18201d1e, 0x050e0b16, 0x0f040a09, 0x2103080b, 0x0506070a, 0x0216471d, 0x1d471602, 0x0a060604, 0x0b080321, 0x0909050f, 0x160b0e05, 0x1e1d2018, + 0x05070815, 0x40828682, 0x282c0d2b, 0x121c1d22, 0x02000007, 0x07ab7600, 0x3b001d23, 0x3b421800, 0xb6751811, 0x32332408, 0x19173737, 0x56117135, + 0x012209f6, 0x4c4c5701, 0x39892105, 0x2005ab4c, 0x21068350, 0x148560a0, 0x8569e921, 0x83802014, 0x00012206, 0x210e8601, 0x1e853a8a, 0x09095023, + 0x231a84a0, 0x6aea0909, 0x80231285, 0x82010909, 0xfcff2b9f, 0x4002c0ff, 0x2200c001, 0xe1554300, 0x2299820c, 0x45312307, 0x162105f4, 0x05b56b17, + 0x16313724, 0x56642533, 0x07162205, 0x06d86c07, 0x23070623, 0x07525b23, 0x26312725, 0x5fb00137, 0x1b2807d0, 0x350d1516, 0x30242410, 0x075eb318, + 0x23212a36, 0x52fe1612, 0x70011006, 0x0b060610, 0x021640b1, 0x58581602, 0x40240583, 0xd0060bb1, 0x2607df4a, 0x2b160d0d, 0x18011a1a, 0x2e07c3b3, + 0x09241401, 0x01010e61, 0xb10c0e0e, 0x83160276, 0x0216252e, 0x0e0cb176, 0x0020bf82, 0x022a0082, 0x00800100, 0x0027001b, 0xf65d1300, 0xb5461805, + 0x8233200d, 0x272623c5, 0x1b830323, 0x0b842120, 0x83d82121, 0x56102b43, 0x01023838, 0x383802c0, 0x0f831056, 0x83e82821, 0xd0012105, 0xfe230583, + 0x83800130, 0x0b212969, 0x59593d3e, 0x210b3e3d, 0xfe200d83, 0x2008827b, 0x28008200, 0xff0c0004, 0x01f401cc, 0x247982b4, 0x004d003a, 0x217f8260, + 0xa94e0726, 0x07cb4906, 0x0b16a118, 0xf36d2720, 0x27272206, 0x11d54d07, 0x2f25657b, 0x4a1e22f7, 0x0f24101e, 0x19060e06, 0x5322193c, 0x27200e8e, + 0x760bef43, 0x54740ce5, 0xaf01300c, 0x10281005, 0x221f4c1f, 0x3b182252, 0x860c0517, 0x5321280e, 0x183a1822, 0x437f0c05, 0xc0200bd7, 0x03415398, + 0x7c2c200c, 0x8976065d, 0x1b054105, 0x85053f58, 0x38084105, 0x02020123, 0x87fc8e09, 0x08022c0e, 0x0a1c1c27, 0x1d2a0c03, 0x9831071d, 0x0d1041bc, + 0x0209a422, 0x2c161241, 0x1b060209, 0x030c261a, 0x291d1d07, 0x28174174, 0x2309c773, 0x004b0025, 0x0d576e18, 0x09764518, 0x5c313321, 0x23230967, + 0x4d011131, 0x3227055f, 0x35353637, 0x63313331, 0x11210970, 0x05394731, 0x15821520, 0x85801121, 0x06cc4584, 0x12012026, 0xe0e01b12, 0x074baf18, + 0x5155158e, 0x06437a06, 0x1b00ff29, 0x40011212, 0x4efe6001, 0x1786063f, 0x17850120, 0x00a0fe25, 0x82000900, 0x80023500, 0x19008001, 0x40003300, + 0x56004d00, 0x68005f00, 0x7a007100, 0x8514b550, 0x17212199, 0x198b8918, 0x220b8568, 0x67373621, 0x252009c6, 0x107d7a18, 0x11993720, 0x20089c47, + 0x83ab8402, 0x00fe24f4, 0x41e0e020, 0x068606c5, 0x0f012029, 0x010f0001, 0x83ff0f01, 0x01402305, 0x0c83a00f, 0xfe200482, 0x20087562, 0x07d64730, + 0x1c485020, 0x67119107, 0x4020159b, 0x2409bd77, 0x09090e40, 0x873f87f0, 0x87502007, 0x18102059, 0x2019b599, 0x08544810, 0x250e6751, 0x00480027, + 0x65180069, 0x35201b63, 0x200b2e5b, 0x1f5f4c27, 0x209f3320, 0x5a000121, 0x135b1332, 0x0b9b2c0b, 0x0b25250b, 0x240a0a0b, 0x8b0a0a24, 0x97c0200b, + 0x18402018, 0x180cd743, 0x200aef43, 0x0bb35be0, 0x51919b20, 0x17855097, 0x00820020, 0x00000338, 0x0002beff, 0x4e00c001, 0x73006000, 0x14010000, + 0x06311707, 0xd7752707, 0x31072208, 0x06995d16, 0xd1183620, 0x22210872, 0x06874427, 0x3526272d, 0x37343135, 0x27263137, 0x48363726, 0x0d82064f, + 0x08b46b18, 0x3736132b, 0x15163117, 0x07143115, 0x05a64506, 0x7c490320, 0x01320811, 0x24350960, 0x20443434, 0x2d2d3624, 0x0d0c091f, 0x01020a0b, + 0x3a3a2808, 0x38303545, 0x08380c08, 0x3c070807, 0x01081014, 0x0d0b0a02, 0x0909090c, 0xd1460946, 0x31152407, 0x82062c28, 0x0c38241f, 0x49752808, + 0x602b0c94, 0x275b1216, 0x0a76590f, 0x83271617, 0x3256834e, 0x011c1d32, 0x070c6212, 0x0504041b, 0x0b0d3709, 0x83141168, 0x23588450, 0x16127809, + 0x31076047, 0x2114d6fe, 0x370d0b4c, 0x04040509, 0x460c071b, 0x90490a01, 0x0000210c, 0x2a057f48, 0xa6010602, 0x57003300, 0x53010000, 0x93510572, + 0x31152305, 0xf96a1716, 0x21098b05, 0x13873736, 0x2405cf5c, 0x37070737, 0x05a35307, 0x1805d049, 0x3c0b3083, 0x37363726, 0x17323336, 0x0a11f501, + 0x3469130e, 0x48486d3e, 0x02450303, 0x32021616, 0x2105833e, 0x0583323e, 0x03034528, 0x40c2444c, 0x25834040, 0x166f3108, 0x09081c12, 0x08080101, + 0x65653d1f, 0x08081f3d, 0x08090101, 0x1b683c1c, 0x0e740118, 0x450a1113, 0x3b1b1a09, 0x671f30a0, 0x16020216, 0x68030e77, 0x68230783, 0x83770e03, + 0x1f672a07, 0x1a3da030, 0x2a2a462d, 0x332b832a, 0x0b070549, 0x01080b0b, 0x1b0f0a0a, 0x0f1b0101, 0x08010a0a, 0x17241082, 0x00000002, 0x0917fa18, + 0x2d001628, 0x50003c00, 0x697a6100, 0x31152108, 0x07c3dd18, 0x2905974b, 0x31273617, 0x26272631, 0xca4f0727, 0x24d78206, 0x07273637, 0x76801826, + 0x33162408, 0x82273732, 0x06706c34, 0x3717162d, 0x34353631, 0x06372727, 0x4e171615, 0x9f5805ed, 0x20012905, 0x0351527a, 0x7a525103, 0x20080787, + 0x0b0b01f0, 0x1c261c22, 0x2d0a120b, 0x0b0b2220, 0x1106b301, 0x10161610, 0x201d0611, 0x26b41d20, 0x8313831c, 0x2d202723, 0x1c0b120a, 0xc74c0138, + 0x01350807, 0x1e21211e, 0x2101a001, 0x3dc03c22, 0x21222221, 0x223cc03d, 0x08800121, 0x0c0f0e0d, 0x15122b07, 0x080b141b, 0x0d0e0f0d, 0x0c144d08, + 0x140c0d0d, 0x07920303, 0x200f830c, 0x2a218208, 0x140b080d, 0x2b12151b, 0x4f070608, 0x072f075a, 0x00030306, 0xff090001, 0x010102b9, 0x7c4700c1, + 0xc5820b3b, 0x10673720, 0x0a2f7c05, 0x27363724, 0x0f8c2326, 0x07211183, 0x27018706, 0x37371617, 0x16173631, 0x380c417c, 0x220d0b4b, 0x09343030, + 0x100b0403, 0x62060108, 0x06070305, 0x09040404, 0x260c8227, 0x16030751, 0x82030b0b, 0x2b102ded, 0x3f3e3e3d, 0x0b0a3a2f, 0xa50c060d, 0x280b4e7c, + 0x0a04074b, 0x07210405, 0x05467c08, 0x021d2308, 0x080a0a04, 0x08010807, 0x03180207, 0x35343807, 0x0b0b1026, 0x0e0e0301, 0x3d2e1b1c, 0x0d2a3c3d, + 0x577ca409, 0x00053207, 0x01c0ff00, 0x00c00180, 0x0024001d, 0x00400032, 0x16b74674, 0x18056d77, 0x6f0a2b93, 0xeb180c3c, 0x172b0d79, 0x31230706, + 0x37362726, 0x83363133, 0x163726ef, 0x36311717, 0x46058333, 0x421907cf, 0x23240a6b, 0x31272726, 0x200a036b, 0xe1881900, 0x18b0200b, 0x8b0bd6bb, + 0x0b36360b, 0x010f0823, 0x0c080f01, 0x13070e04, 0x0c0b0713, 0x040d190f, 0x2d128336, 0x09040a40, 0x03060603, 0x0b0a0509, 0x5c191103, 0xeb181aea, + 0xfe241180, 0x0f010220, 0x0a2a4382, 0x01011232, 0x010a2712, 0x0f830916, 0x06110929, 0x01091106, 0x4521380a, 0x3341065b, 0x41402009, 0x1522272f, + 0xfa411535, 0x05856a05, 0x36372625, 0x6f311717, 0xfb8c0f49, 0x111f2839, 0x480e0e11, 0x0e481111, 0x1f11110e, 0x02161602, 0x1201c001, 0x5bfe1b12, + 0x94180551, 0xe8240c4b, 0x1f666666, 0x2c822783, 0x0e263282, 0x16661f0e, 0x7b5a0202, 0x02c02a07, 0x00c00147, 0x00400027, 0x0a257d47, 0x75311521, + 0x576605fe, 0x09f55b0b, 0x01531120, 0x31272105, 0x1620aa85, 0x2808ee7b, 0x33233523, 0x17313523, 0x258b8300, 0x0e0909a0, 0x6a83a880, 0x0e83a820, + 0xc184ff20, 0x6e800123, 0x238b8327, 0x500e0e50, 0x2722c383, 0x0082806e, 0xb6840120, 0x090e8024, 0xcb838009, 0x65437020, 0x80012707, 0x3030f0fe, + 0x29832730, 0x080ace19, 0x8080d022, 0x25076b41, 0xc0010002, 0xbb963500, 0x240bdf6a, 0x31333135, 0xbc001907, 0x82272007, 0x06072bb8, 0x23311717, + 0x15153531, 0x91421535, 0x85252006, 0x888020bb, 0x20b589bb, 0x20b38dae, 0x054845ae, 0xb9820120, 0x89808021, 0x5afe20bb, 0x1223050e, 0x8d701b12, + 0xe0e021b1, 0xd883c482, 0xba84a020, 0x43070021, 0x5a24105b, 0x71006300, 0x43272f42, 0x3e4a1b5f, 0x25e88318, 0x31353133, 0x3e8c1723, 0x4a080e4a, + 0x802705ba, 0xa009090e, 0x438080c0, 0x1022185c, 0xde18c0c0, 0x09250ae0, 0xc0c00e09, 0x0b7c4390, 0x43198642, 0x60201152, 0x200d074a, 0x20478220, + 0x08f97240, 0x00820020, 0x240d8344, 0x003e0031, 0x272341ab, 0x200b1f4b, 0x270c8b15, 0x15171617, 0x16171631, 0x08077d18, 0x11820620, 0x180bf67e, + 0x7211057d, 0x262105fc, 0x053e5127, 0x0d654f18, 0x16153223, 0x065e4c17, 0x42492720, 0x07527505, 0x74313521, 0xbe430b1a, 0x01c0250c, 0x010f400f, + 0x3808048e, 0x0d010f80, 0x05030e0b, 0x0e0f110e, 0x0801080a, 0x1212130b, 0x16010215, 0x0f010d0c, 0x0e11010f, 0x040e0303, 0x03040e06, 0x0f101301, + 0x0a080809, 0x11120113, 0x16020314, 0x411f820b, 0x9c4b1975, 0x83708408, 0x01482774, 0x0302110f, 0x6a820f05, 0x0804062f, 0x05060505, 0x1b0b0a05, + 0x02070d1d, 0x311e8311, 0x01060312, 0x0d0e0601, 0x01010103, 0x05050107, 0x21820709, 0x09040122, 0x0b202282, 0x6f4b2284, 0x081b4607, 0x68005e22, + 0x23279541, 0x16332333, 0x21064d72, 0xf3443117, 0x0a175907, 0x37262729, 0x31273137, 0x6b302726, 0x35240a8d, 0x17373631, 0x2205c978, 0x42333115, + 0x983916b0, 0x19484848, 0x0b011111, 0x222b110a, 0x0c0b0e0e, 0x0b0c2020, 0x22220f0e, 0x2b0b820f, 0x01014121, 0x12120214, 0x48120202, 0x34210483, + 0x19304134, 0x1101c436, 0x0f131911, 0x1f28070f, 0x0e0f0c0b, 0x0f0e1d1d, 0x20200b0c, 0x1e240b83, 0x2c01023c, 0x40243f83, 0x50021250, 0x28214f83, + 0x05d35400, 0x01400227, 0x005f00c0, 0x05676f66, 0x16581320, 0x0b577605, 0x06313524, 0x03820707, 0x23232222, 0x20056d5a, 0x05bb5523, 0x27272623, + 0x47178331, 0x26221914, 0xff823737, 0x35313722, 0x10af9918, 0x66180520, 0x2d4122bf, 0x0404260e, 0x0204053c, 0x0e064701, 0x26142f47, 0x0f030509, + 0x185f0c05, 0x2008eb99, 0xe0661826, 0x0f4a4117, 0x01011325, 0x4701010f, 0x37470917, 0x0f0d2a11, 0x5e0d113c, 0x0e09092c, 0x20008380, 0xfc66188c, + 0x45032018, 0xc9180c27, 0x215a0f19, 0x10174106, 0x04550320, 0xbdae180d, 0x41152009, 0xdb870e0d, 0x16022824, 0x51470216, 0x18d48f0d, 0x2509999b, + 0x021668fe, 0x50471602, 0x0000310f, 0xff020002, 0x01ef01c2, 0x002700c0, 0x13000044, 0x54059c41, 0xd55a0575, 0x37322109, 0x0dd07d18, 0x17172726, + 0x33161727, 0x21054144, 0xa0723127, 0x07162305, 0xdc833107, 0x54573721, 0x5236058a, 0x751d1d5c, 0x1e26261e, 0x971515be, 0x161d1d16, 0x31515135, + 0x1c853131, 0x0635322e, 0x05059706, 0x02c1fe2a, 0xb7015c06, 0x21059254, 0x2e835c51, 0x1d1d7523, 0x282e83be, 0x35151597, 0x3232ac52, 0x2e1c8532, + 0x05053531, 0x2a060697, 0x005c0708, 0x82030000, 0x05b754b7, 0x46002824, 0xb9825d00, 0x31333626, 0x17173231, 0x084b9c18, 0x14151622, 0x06209082, + 0x21058d58, 0xa1433435, 0x82078205, 0x822720b9, 0x210721d9, 0x27232983, 0x82263127, 0x19172025, 0x27084028, 0x31272601, 0x36272631, 0x2509c760, + 0x06070617, 0xb5832907, 0x86355121, 0x86be2096, 0x525c2da6, 0x31b00909, 0x065c3131, 0x2a3f0102, 0x35209e84, 0x0121ad86, 0x050c4827, 0x050f112d, + 0x0f050808, 0x01011211, 0x831b1212, 0x355221e8, 0x20060e41, 0x061e41be, 0x83515c21, 0x82de205c, 0x075c29e8, 0x06062a08, 0x35050597, 0x21062541, + 0x3583e7fe, 0x20201529, 0x18070718, 0x83152020, 0x05176753, 0x0002c42f, 0x1f00c001, 0x51003000, 0x9b006c00, 0x09176700, 0x1617322b, 0x36371617, + 0x26272627, 0x05a64b23, 0x1631152d, 0x35373617, 0x06072625, 0x86151617, 0x3431240d, 0x82222727, 0x221282d9, 0x60333637, 0x14200586, 0x33202083, + 0x3520fb82, 0x2405af5b, 0x31272607, 0x21248331, 0x1a8b3115, 0x5d182082, 0x18900747, 0x49953720, 0x27261724, 0x2c830706, 0x3208cd48, 0x02303535, + 0x30583b3b, 0x101d2928, 0x230d0f12, 0x763b3232, 0x022a05d0, 0x01021616, 0x151607cb, 0x0a830403, 0xfb055008, 0x020c191d, 0x120c0803, 0x25361110, + 0x01040124, 0x130c0607, 0x31020504, 0x08694b32, 0x24070a09, 0x07020801, 0x05110c07, 0x0b16010a, 0x1b29690b, 0x020e011b, 0x0f0c0606, 0x0e011005, + 0x0f16160f, 0x020a010e, 0x110a0706, 0x1b010c04, 0x8318291b, 0x06203654, 0x09161306, 0x58c02406, 0x14023b3b, 0x0d0f2213, 0x18291210, 0x057e6c18, + 0x0216282c, 0x35281602, 0x16060315, 0x0c851615, 0x1a1b3308, 0x0b04097b, 0x050c0a0b, 0x25240104, 0x25261936, 0x0108080c, 0x192a2913, 0x0232314b, + 0x08010845, 0x24193e2e, 0x0a090c24, 0x2b2b1001, 0x12202919, 0x6c830b10, 0x3436192a, 0x0109090b, 0x193d3b0e, 0x8f838783, 0x36361923, 0x233b820b, + 0x193c3a10, 0x6020aa83, 0x19236c83, 0x820f545b, 0x1013348e, 0x0019635d, 0xff020000, 0x021000fa, 0x00700144, 0x18430030, 0x200c93a7, 0x08d95016, + 0x4e058f57, 0x7f4606b0, 0x36372607, 0x36311717, 0x12dd7837, 0x271db533, 0x27303027, 0x141d1e27, 0x07070b15, 0x1d14150b, 0x3111851e, 0x5a12191d, + 0x0a0f1215, 0x100a2e2e, 0x125a1511, 0xb1820119, 0xa1500e20, 0x32013308, 0x0111121a, 0x1a121101, 0x151a1b19, 0x1a150f0f, 0x1186191b, 0x17151929, + 0x120f0a35, 0x83505015, 0x1735233f, 0x35887214, 0x0e090922, 0x2a0c436d, 0x0027001a, 0x00410034, 0x6453004a, 0xde821c4b, 0x2306ac57, 0x27070631, + 0x600c9d75, 0x21220bc4, 0x29543736, 0x87332005, 0x18636908, 0x4818b020, 0x1026099d, 0x14141529, 0x05852915, 0x01080127, 0x23242423, 0x22058501, + 0x5802e0fe, 0xc0200655, 0x1e530888, 0x53802013, 0x582007d9, 0x48203d8b, 0x9c58588b, 0x20458705, 0x09577002, 0x24054f65, 0x0040002d, 0x1ce75357, + 0x1a580320, 0x3627260c, 0x17333637, 0x80531836, 0x0727250f, 0x31312706, 0x4a077d51, 0xd5530917, 0x19502015, 0x341c48c2, 0x07070a7a, 0x19190d03, + 0x19192020, 0x0707030d, 0x2828220a, 0x18ca5322, 0x18500121, 0x2618d4df, 0x050503af, 0x82111c0a, 0x1c200800, 0x0305050a, 0x00000f0f, 0xfbff0200, + 0x0502c0ff, 0x2700c001, 0x00003000, 0x06070613, 0x15311717, 0x0c6d4d18, 0x1809e756, 0x2f074357, 0x17271721, 0x07312127, 0x15202331, 0xd70e0709, + 0x2006ae56, 0x06cc7a60, 0x0ed74035, 0xfe150907, 0x40408d40, 0x40260140, 0x01c001a6, 0x1a101313, 0x20131263, 0x20218280, 0x27868240, 0x00000200, + 0x0002c0ff, 0x61228782, 0x87827c00, 0x16246082, 0x14311515, 0x2506bf50, 0x33163117, 0xc7463732, 0x06172906, 0x06310707, 0x26312727, 0x083b5219, + 0x16171627, 0x16313317, 0x85318417, 0x06505429, 0x34373622, 0x37212983, 0x20d68236, 0x25058416, 0x27262726, 0xf96f0722, 0x32332107, 0x3f5b3a82, + 0x23062205, 0x081a8222, 0xb2272624, 0x040a0a0a, 0x0e0a0c04, 0x050f0c08, 0x04070a06, 0x0c1d0605, 0x24100101, 0x05200b0b, 0x27090b05, 0xab6f0110, + 0x09093d05, 0x190a100e, 0x1306060d, 0x06210801, 0x0f0c0906, 0x0d060b14, 0x3636131b, 0xb2242a49, 0x30176c55, 0x12128101, 0x29090712, 0x0b0a0406, + 0x07050911, 0x08608203, 0x060f0336, 0x0905110e, 0x020a0403, 0x140c1e06, 0x0d0e141c, 0x300f0101, 0x0d09090e, 0x0c151122, 0x06010207, 0x21080b14, + 0x03080707, 0x0b120505, 0x2a430502, 0xc10f012a, 0x72130343, 0x4b290b17, 0x77005c00, 0x17370000, 0x21e48227, 0xa34c3117, 0x05254106, 0x29513720, + 0x31372a05, 0x31353736, 0x31272734, 0x07444a26, 0x41262721, 0x37210769, 0x73178336, 0x312b05e4, 0x07062322, 0x26050706, 0x42310727, 0x16290525, + 0x36311717, 0x37362135, 0x20438231, 0x12484136, 0x82093a21, 0x192c08bf, 0x01021b3a, 0x09010f0f, 0x08190c09, 0x08180702, 0x040e0117, 0x112b140e, + 0x0207220f, 0x0a060f05, 0x080e170b, 0x0f0e0807, 0x0a0e100f, 0x4733dd82, 0x01153535, 0x1a190196, 0x0405050c, 0x1d110610, 0x4130fe02, 0xff3c174a, + 0x17101010, 0x1d091107, 0x08081228, 0x070c2712, 0x19090206, 0x050d1b0b, 0x14081c0e, 0x26086582, 0x07041408, 0x05030910, 0x0b040704, 0x15100b0c, + 0x14111314, 0x28280104, 0x2d383f40, 0x0b0b050a, 0x0411320d, 0x410e0e08, 0xdf6e1546, 0x00352a0a, 0x0079005e, 0x00920086, 0x064d419f, 0x31373723, + 0x06534136, 0x25413620, 0x33362106, 0x23067d52, 0x26312727, 0x47085d41, 0x142505e4, 0x07260517, 0x0a1d6631, 0x097dc518, 0x18170621, 0x2409af68, + 0x37363117, 0x194f4125, 0x2b841720, 0x07216e85, 0x2cf41837, 0x37072309, 0xb8470726, 0x27500808, 0x1f1f1f34, 0x0910090d, 0x09060c0b, 0x070b1208, 0x03060306, 0x030c0707, 0x080b0c15, 0x04081009, 0x0c110d04, 0x24211005, 0x023b3b58, 0x02970104, 0x0f030202, 0x0a02070b, 0x060a1211, 0x0e240402, - 0x06060504, 0x0f0e0f06, 0x010e1003, 0x41351139, 0xfe271764, 0x200e0391, 0x8202050f, 0x5c043304, 0x050f0e03, 0x0f0e0208, 0x0d6a0804, 0x0d061008, - 0x0482070e, 0x03069922, 0x40086f82, 0x120b0202, 0x0801010f, 0x0c140b09, 0x1101090a, 0x150e0e10, 0x040b0c0b, 0x290b0404, 0x3b3b020b, 0x05131458, - 0x04010101, 0x0f030902, 0x02030a0f, 0x0f0e0814, 0x060e0d0e, 0x06010506, 0x492e010a, 0x1788412c, 0x72875c20, 0x140e0322, 0x91828786, 0x0d06d625, - 0x82070e20, 0x080d2304, 0xa7410b00, 0x001a3408, 0x002a0022, 0x0034002f, 0x003e0039, 0x004e0046, 0x45720060, 0x37271c99, 0x06333523, 0x83230607, - 0x17322907, 0x012b1716, 0x011d3335, 0x15221482, 0x05821527, 0x27260a84, 0x36373623, 0x0b82013b, 0x26272225, 0x45153327, 0x172011bb, 0x5910df45, - 0x602f1939, 0x0d033708, 0x372f120d, 0x0d0d1208, 0x82404703, 0x84502000, 0x20168404, 0x21158408, 0xcd452837, 0x4580200d, 0xc7450deb, 0x28702f18, - 0x380b0c11, 0x110c0b28, 0x28382828, 0x05846028, 0x13821020, 0x83382821, 0x068c5113, 0x129c5518, 0x200e776a, 0x1ecf4642, 0x17363723, 0x0bf65731, - 0x16173625, 0x18373617, 0x4608fcd9, 0x174108d3, 0x0a84352b, 0x13040706, 0x33342828, 0x03142828, 0x3d090706, 0xb43c4847, 0x35350741, 0x060603c7, - 0x1b1b2d0a, 0x1b1b0101, 0x06060a2d, 0x01011203, 0xe4486912, 0x9f53180b, 0x08f34f0c, 0x5f05cf47, 0x0520065f, 0x92192574, 0x323321ff, 0x0720ff85, - 0x2d073d62, 0x15161716, 0x31272617, 0x37343526, 0x71623736, 0x19174207, 0xa7838020, 0x27271327, 0x27273232, 0x23bf8313, 0x3b45453b, 0x0c577818, - 0x0cdd5618, 0x20180342, 0x273b83c2, 0x011a1a2b, 0x2b1a1a01, 0x1221fb84, 0x0fad5b7e, 0x20114c75, 0x0a434304, 0x5e003024, 0x35438c00, 0x11ff411d, - 0x3926ff83, 0x31342301, 0x40473130, 0x05e64a05, 0x30313028, 0x02392315, 0x485b2706, 0x07142709, 0x01392706, 0x2ba83133, 0x34410220, 0x01a6262e, - 0x06040201, 0x3300820e, 0x01020406, 0x06050301, 0x180f1001, 0x01100f18, 0xa0030605, 0x06211c8e, 0x221c8705, 0x41030506, 0x59222b54, 0x65820201, - 0x01010d23, 0x2e65820d, 0x01040102, 0x151c0602, 0x15020215, 0x84061c15, 0x211d9b0e, 0x6f410500, 0x003b290a, 0x007e0050, 0x010000ac, 0x2605875a, - 0x35343734, 0x5c363330, 0x14240884, 0x27070607, 0x27058a4e, 0x17161716, 0x15163732, 0x48055c41, 0x13200ba9, 0x07213b84, 0x68208206, 0x3628057a, - 0x27072627, 0x37160139, 0x0c6fec18, 0x02393727, 0x30313433, 0x0bde4831, 0x30313029, 0x01393315, 0xa7023933, 0x3125082c, 0x0706dd01, 0x010d0e14, - 0x0a070105, 0x0606080b, 0x010f0e0c, 0xdd0f0a0a, 0x02023d4e, 0x17010106, 0x0d0e2117, 0x11524615, 0x453b8024, 0xe7423b45, 0x41a6200f, 0x06220aa0, - 0x9f410305, 0x9ba0200d, 0x42012c1c, 0x140d0e02, 0x01010a08, 0x82101010, 0x170f3556, 0x0c111018, 0x017e040c, 0x0c050528, 0x16162212, 0x362f0501, - 0x23115846, 0x1212c2fe, 0x200f2543, 0x2dc04159, 0x4c0dfc41, 0x30240d0f, 0x5f004800, 0x23333f43, 0x16311716, 0x27052c48, 0x36372627, 0x011f3637, - 0x02210584, 0x06aa5e37, 0x17421b85, 0x2e144306, 0x070eb932, 0x06110306, 0x060e410e, 0x0c040307, 0x04100e0b, 0x9b280583, 0x0b0e1004, 0x0703040c, - 0x11281984, 0x0e070603, 0x040c0c0d, 0x202b0843, 0x234783bd, 0x11030e41, 0x5d830783, 0x83100521, 0x8218206b, 0x83558260, 0x0311215d, 0x65867682, - 0x22106b45, 0x415a0045, 0x1720332b, 0x25050b53, 0x34352627, 0x0583013f, 0x17363724, 0x01531405, 0x012f2107, 0x36201784, 0x27412582, 0x59fa2f2e, - 0x07590808, 0x24030605, 0x05060324, 0x08860107, 0x085a0627, 0x05065a08, 0x2b184106, 0x0430ab31, 0x30040909, 0x07030303, 0x2b2b0305, 0x82070503, - 0x040a220a, 0x220a8704, 0x86080530, 0x4f00201e, 0x19310a73, 0x57004200, 0x82006d00, 0x00009700, 0x31333601, 0x05d45332, 0x0706072e, 0x35342722, - 0x37343736, 0x37363134, 0x06240e82, 0x16170607, 0x8505a64c, 0x05b44c0d, 0x84262721, 0x8426200d, 0x17362619, 0x32373601, 0x06314431, 0x8205c273, - 0x26252218, 0x065e5223, 0x14070622, 0x36254486, 0x1f160527, 0x200d8402, 0x050b603f, 0x68826083, 0x82161721, 0x3637270f, 0x2f232627, 0x5d843401, - 0xab012708, 0x0f14140f, 0x1a0c0e0f, 0x0109141e, 0x06010603, 0x02022d0b, 0x0e020307, 0x1e14150d, 0x0a290807, 0x53413e0b, 0x13824b54, 0x83030221, - 0x071f2213, 0x29138707, 0x141eb6fe, 0x07030901, 0x43870a07, 0x6d013008, 0x05090904, 0x3632301d, 0x2c090108, 0x23242e2e, 0xfe110909, 0x390403b6, - 0x06050305, 0x021e0306, 0x62090606, 0x05020107, 0x06031db2, 0x83610a06, 0x0403230a, 0x1d840638, 0x0eb20123, 0x3649830f, 0x0307070a, 0x12010207, - 0x0101011d, 0x07130c1a, 0x15141e08, 0x82020e0d, 0x4b022b13, 0x3e415354, 0x07290a0b, 0x13901f07, 0x0787fe29, 0x14090103, 0x870c191f, 0xc9230846, - 0x36080109, 0x051c3132, 0x11040909, 0x24230909, 0x4c2c2e2e, 0x38050103, 0x02050304, 0x09610701, 0x83020606, 0xc1052387, 0x9d820a61, 0x03210a84, - 0x201d8606, 0x10df4200, 0x6e004f22, 0x251c3b51, 0x31273607, 0xbd450726, 0x22273d0f, 0x0706020f, 0x07011f06, 0x3f161706, 0x37161701, 0x37273536, - 0x2f262736, 0x33232602, 0x14201c88, 0x4a511c91, 0x486d2019, 0x81450755, 0x05f3300b, 0x05261102, 0x1c040201, 0x04040107, 0x82222204, 0x1b072a04, - 0x05020104, 0x05021126, 0x241d84c0, 0x1b040102, 0x451c9207, 0xf2451159, 0x48512005, 0x62450576, 0x05d9370b, 0x05010522, 0x251b0305, 0x02030305, - 0x03021212, 0x1b250503, 0x14820503, 0x9b052221, 0x4300201b, 0x802e071b, 0x2d00c001, 0x67004700, 0xab007d00, 0x5341d900, 0x5e581807, 0x2627250c, - 0x36070607, 0x20056e49, 0x18198217, 0x22098d7c, 0x55062517, 0x30210550, 0x09e06b31, 0x32282983, 0x27220515, 0x30273031, 0x2406b848, 0x17323334, - 0x21018516, 0x4d821415, 0x012f0622, 0x2005a041, 0x834f8907, 0x47272037, 0x33202a2d, 0x082b8647, 0x21250221, 0x4c4c3c3c, 0x07213c3c, 0x05050c06, - 0x02030703, 0x0b140d0e, 0x46451010, 0x45466262, 0x420a1010, 0x290805d6, 0x0c040603, 0x46fe0706, 0x0a060702, 0x120f0102, 0x0e0e0e12, 0x100e0e06, - 0x01090e14, 0x010101c7, 0x0207060b, 0x0d010209, 0x17841012, 0x12120e25, 0x82045a0f, 0x483c312b, 0x07093d47, 0x28140306, 0x28343328, 0x03bd1328, - 0x470c0249, 0x1c9a0f7e, 0x26404d30, 0x26010126, 0x06044026, 0x0e0e0d0d, 0x9883131d, 0x5f03022b, 0x02023d3c, 0x035f3c3d, 0x38b88202, 0x0e1d1315, - 0x060d0e0d, 0x1b127504, 0x01010d1b, 0x0d01010c, 0x0e13130f, 0x23d98207, 0x57090204, 0x1b2f0e82, 0x0109121b, 0x05030401, 0x130e0705, 0x820d0f13, - 0x0a092124, 0x4b06b34b, 0x67200bc7, 0x473da147, 0x2b300ba3, 0x4f003d00, 0x00006800, 0x31171637, 0x3d261716, 0x2d05f465, 0x36171617, 0x16173637, - 0x15070607, 0x42180714, 0xf0630843, 0x37072105, 0x4e10e44d, 0x07241108, 0x23272635, 0x82074f64, 0x16152108, 0x373a5385, 0x30300100, 0x12250f4e, - 0x0a070603, 0x3c48473c, 0x0407060a, 0x4e0f2512, 0x41183030, 0xb0200c5c, 0x530de84d, 0x302b0ed4, 0x12021902, 0x09090305, 0x82120503, 0x0727670a, - 0x4156c029, 0x1c171b41, 0x412a1b2f, 0x2a280b36, 0x171c2f1b, 0x5641411b, 0x530ba543, 0xf02c19e7, 0x0102192d, 0x12090912, 0x2d190201, 0x41072f4c, - 0x41240d33, 0x70005700, 0x252e3341, 0x36313734, 0xab47011f, 0x3625230e, 0x12843117, 0x4705d946, 0x032006ac, 0x233e3b41, 0x07050674, 0x220abc47, - 0x47060701, 0x062507c5, 0x5a08085a, 0x403c413b, 0x03077329, 0x04300303, 0x47050809, 0x042208d3, 0x13820a04, 0xd3470720, 0xc3fe210f, 0x20154d41, - 0x0af74b00, 0x3c002b2c, 0x67004e00, 0x00007000, 0x1e562617, 0x06b94406, 0x2905eb4b, 0x36013d36, 0x26273637, 0x7a440607, 0x14152408, 0x83161317, - 0x5a232013, 0x362305cd, 0x181f3233, 0x2011b98c, 0x347e1807, 0x37362709, 0x16171633, 0x58823233, 0x37240882, 0x37362726, 0xaf205c83, 0x260f7742, - 0x4d303001, 0x4412250e, 0x12340b1f, 0x0a150e25, 0x19080b0d, 0x08192424, 0x0e0a0d0b, 0x8d0e1515, 0x87071842, 0x42102007, 0x5c410783, 0x5710200d, - 0x33200730, 0x420f8042, 0x012319aa, 0x18070a09, 0x20093d8a, 0x0f046a26, 0x94428320, 0x0a5a4108, 0x9257ab20, 0x45bf5007, 0x1805105e, 0x200a668b, - 0x10f24307, 0x50194d4a, 0x112814bf, 0x0e15150e, 0x070a0d0a, 0x20074541, 0x0de043c3, 0x50184e4a, 0x4f2414c1, 0x080b1212, 0x22052341, 0x69060b08, - 0x06340ccc, 0x20000000, 0x6001c001, 0x2b001500, 0x56004000, 0x81006b00, 0x2106276e, 0x9a18012b, 0x012a0843, 0x3d363732, 0x27341501, 0x15902631, - 0x7f653720, 0x21218405, 0x1f852734, 0xbf171521, 0x0c80272a, 0x1130110b, 0x06940c0b, 0x158d2020, 0x1d9d2b8e, 0x8d380121, 0x8ec02055, 0xac748d0e, - 0x4800201d, 0xe0240573, 0xa0014001, 0x180d4f41, 0x2207d97c, 0x413b1617, 0x342c054a, 0x012b2627, 0x31072233, 0x14011d06, 0x2720158d, 0x8405816f, - 0x07804121, 0x40953320, 0x28202aaa, 0x0e8ee68e, 0x6020f5ba, 0x8d0d8c41, 0x1d8b410d, 0x7f581d9d, 0x02e02a07, 0x00a00100, 0x00370021, 0x716d184d, - 0x07062108, 0x2106776b, 0x75493736, 0x66551805, 0x36032409, 0x19363137, 0x210b0039, 0x2b822726, 0x18162521, 0x3309864f, 0x3d262722, 0x36373401, - 0x0001013b, 0x023b3b58, 0x02161602, 0x830b7450, 0x3b02290f, 0x01b0583b, 0x101b1212, 0x2605fe53, 0x12121b10, 0x84200101, 0x21158a05, 0x28837001, - 0x82166821, 0x47682043, 0x11850b30, 0xfe215c83, 0x233383f0, 0x800e0909, 0x50834882, 0x84404021, 0x59158a05, 0x35240c67, 0x60004a00, 0x0622e79c, - 0x02822307, 0x2107c04a, 0x431a1633, 0xfa180a4d, 0xf6840b20, 0xc1453620, 0x16312505, 0x07061517, 0xfa9f3582, 0x19190126, 0x1c0e6e25, 0x08425018, - 0x0e1c2026, 0x0c0b116e, 0x7020e483, 0x220c0941, 0x681b1212, 0x1887086c, 0x83900121, 0x16282527, 0x28160202, 0x260b0c41, 0x19192590, 0x18011701, - 0x2d08fe41, 0x110b0c17, 0x3b3b5890, 0x0909a002, 0x1641700e, 0x41302006, 0x0884075a, 0x003d1886, 0xff100003, 0x013002c0, 0x000400c0, 0x002e0022, - 0x27372500, 0x31071707, 0x25373635, 0x06da6236, 0x82030721, 0x620720d8, 0x4b0809de, 0x07173707, 0x26012b06, 0x37343527, 0x1d9e4b01, 0x01bb56d7, - 0x0b110113, 0x370d120e, 0x0eca080c, 0x0a194818, 0x320a0d0d, 0x79190a0a, 0x071f473f, 0x0216450a, 0x1dd78507, 0x4805569e, 0x08ca0e18, 0x120d360d, - 0xeffe0c0e, 0x0a190112, 0x2a822582, 0x83921921, 0x16022827, 0x00070a05, 0x53080000, 0x16360883, 0x3d003200, 0x53004800, 0x75005e00, 0x00008700, - 0x06272601, 0x215b1507, 0x37362407, 0x822f2635, 0x01352312, 0xc864011d, 0x26352608, 0x23272627, 0x22178222, 0x82070623, 0x4217202c, 0x1e1905b9, - 0x3721198f, 0x82228816, 0x215c91e8, 0x71562726, 0x83578305, 0x2a698351, 0x16021001, 0x27010216, 0x88011710, 0xf0fe2708, 0x1b121201, 0x67418001, - 0x15ab2707, 0x201a5511, 0x12821b29, 0x670f0121, 0x056805f5, 0x4d531808, 0x20118808, 0x234e8f28, 0xd8fe1602, 0x2c0fd647, 0x0216a801, 0x35051602, - 0x20160f24, 0x200a830d, 0x230a840d, 0x10d8fe05, 0x8408396b, 0x400d297f, 0x1b1b0113, 0x60104029, 0x08456418, 0x0f011022, 0x15950c87, 0x93400121, - 0x0216225a, 0x0ff24780, 0xa3410020, 0x00292e0c, 0x00430036, 0x005d0050, 0x0077006a, 0xf341188a, 0x2211230b, 0xbc460607, 0x33352205, 0xd5af1815, - 0x32112108, 0x2205a069, 0x18172123, 0x200bd24f, 0xec4f1817, 0x8b37200b, 0x06501819, 0x8c198c0c, 0x16072733, 0x2b063107, 0xa3532201, 0x16372405, - 0x5f171617, 0xb0220c31, 0x6a44b060, 0x23058505, 0x205040fe, 0x08b54f18, 0x4f187020, 0x902009f3, 0xfe211589, 0x8a1694f0, 0x0203312c, 0x900a0706, - 0x0206070a, 0x22191909, 0x09191922, 0x07b34a18, 0xce75fe20, 0x18402006, 0x86076c41, 0x8960200f, 0x88102052, 0x1020217e, 0x54181589, 0x158a0aa5, - 0x98222b8a, 0x0082070a, 0x13200a28, 0x14010114, 0xbb4a2013, 0x01803007, 0x001f00c0, 0x0064003f, 0x00870077, 0x71340100, 0x1d24061b, 0x011f1601, - 0x2505915f, 0x36373233, 0x3243013d, 0x76172005, 0x1083098b, 0x2205697c, 0x85060722, 0x1517242e, 0x56072605, 0x222305cc, 0x82070623, 0x17162402, - 0x4f173033, 0x3b270882, 0x012f3601, 0x86172726, 0x012b2b07, 0x31222322, 0x16011f06, 0x584d2717, 0x234f8405, 0x1706012b, 0x23070f41, 0x0e153c01, - 0x24051949, 0x29152001, 0x060d4101, 0xfe32158e, 0x3a0807a6, 0x0c192931, 0x02010107, 0x010f0201, 0x06820f01, 0x0c070231, 0x2f282919, 0x07432d30, - 0x0f0c6603, 0x823313d7, 0x25193807, 0x01013013, 0x67030701, 0x67042518, 0x0b102317, 0x110b0c0b, 0x1803079b, 0x26072664, 0x153d560b, 0x410b140e, - 0x0b2605ec, 0x2b15212e, 0x5d760b3b, 0x2e1a9306, 0x09010368, 0x04080b0e, 0x06010103, 0x82061111, 0x08052b7f, 0x09090b0b, 0x0e7b0602, 0x05829807, - 0x84011c21, 0x7b982d04, 0x0b01021b, 0x1150100c, 0x06020c0b, 0x240cdf4a, 0x00980086, 0x1d3355aa, 0x2206ef53, 0x82171607, 0x41152001, 0x27290660, - 0x04393726, 0x35303330, 0x06fe5732, 0x34353624, 0x01842627, 0x3423302d, 0x04392231, 0x37343526, 0x93330539, 0x31272920, 0x26033923, 0x32333637, - 0xe95b5282, 0x07312b3d, 0x0a070601, 0x04050504, 0x0a84070a, 0x061b1534, 0x01050102, 0x04020101, 0x04030606, 0x06060304, 0x0e820204, 0x91040421, - 0x01052813, 0x151b0602, 0x5c61070a, 0xc6273519, 0x070b0a08, 0x82020608, 0x08063000, 0x080a0a08, 0x010b0608, 0x01030606, 0x82030101, 0x03062391, - 0x97820603, 0x82010321, 0x0505218b, 0x15828383, 0x84050621, 0x240e8515, 0x060c0606, 0x1c4a5c07, 0x220eab41, 0x41e200b4, 0x955b7dab, 0x44e04171, - 0x89525720, 0x0a075a0d, 0x4138c55b, 0x542045fc, 0x520dfb59, 0x00202d95, 0x05200082, 0x2b087748, 0x00910023, 0x00b500a3, 0x250000cd, 0x1805a65b, - 0x210d1899, 0x33193732, 0x17220921, 0x88521736, 0x29d44306, 0x39233523, 0x05d34303, 0x34333023, 0x12f64331, 0x31302725, 0x43043922, 0x162207d6, - 0xf04e2717, 0x4f372010, 0x172c1014, 0x26312726, 0x06070607, 0x3f16011f, 0x2705a250, 0x010f2627, 0x0ef20127, 0x2f11f15b, 0x03082f35, 0x0e0f0717, - 0x18181d1e, 0xca11130b, 0x211ef943, 0xf9430504, 0x43138711, 0x062207f9, 0x444f7801, 0x4fc3200d, 0x3f2c0f64, 0x110f0e05, 0x04090811, 0x550f0517, - 0x05280782, 0x120e0f04, 0x286c0514, 0x2e126462, 0x590b0914, 0x091a1a1f, 0x1a0d0d08, 0x44080702, 0x0822411c, 0x6e180b07, 0x0925077a, 0x09090e0e, - 0x09b44f06, 0x760a0732, 0x05090911, 0x120f0f05, 0x18020e59, 0x12100f05, 0x15200f84, 0x260b6753, 0x002d001a, 0x4451003f, 0x272b1c33, 0x36313726, - 0x17322133, 0x52060716, 0x2720051e, 0x61118b54, 0x9f332b7c, 0x0b060703, 0x060b1401, 0x2b0f0307, 0x2b3a3a2b, 0x456f0f2b, 0x0b2e3660, 0x07080807, - 0x2021340b, 0x21200101, 0x74617a34, 0x4304201a, 0xf3830807, 0x89005b22, 0xda44f3b0, 0x039a3371, 0x010b0607, 0x07060b0a, 0x2a2a0e03, 0x2a2a3838, - 0xa844740e, 0x0d444152, 0x71446520, 0x0d67413d, 0x9e184220, 0x5b421f93, 0x426c5d12, 0x20126142, 0x366a5d25, 0x1d41c620, 0x5dc7200d, 0x05262266, - 0x0303032f, 0x67430007, 0x42502011, 0xb86b3073, 0x06172110, 0x230a3154, 0x07222326, 0x41192354, 0x66431204, 0x929f180e, 0x0e054129, 0x200c6843, - 0x889f181a, 0x056f460c, 0xc001803d, 0x46003d00, 0x62005500, 0x00006f00, 0x31373413, 0x16013b36, 0x11171617, 0x18211716, 0x4a08d775, 0x26260539, - 0x34272627, 0x0c8c2337, 0x11281383, 0x22232726, 0x05352627, 0x2205ab57, 0x18233315, 0x24090154, 0x3523011d, 0xd5cf1817, 0x3e61180b, 0x09002c0c, - 0x22100e09, 0x01011617, 0x44d0010f, 0x43210514, 0x07495003, 0x0be6c618, 0x24851320, 0x23821020, 0x01b00138, 0x01075007, 0x0f019060, 0x18501810, - 0xc0010f10, 0x0e1410e0, 0x3783010d, 0xf0fe1023, 0x210c8810, 0x2e83a001, 0x22171626, 0x010fe0fe, 0x2105fe4b, 0x29870808, 0x0df1c618, 0x2222f282, - 0x25842001, 0x07284027, 0x28070101, 0x83598328, 0xe0282162, 0x5b830082, 0x3a838020, 0x88e0e021, 0x0537420a, 0x4002c831, 0x1a00c001, 0x3a002b00, - 0x00004600, 0x18373625, 0x4f094c5c, 0x6d5707b0, 0x37173105, 0x26113736, 0x010f2627, 0x15140714, 0x01110706, 0x1a820382, 0x35013f22, 0x27221582, - 0x2e820507, 0x22232f08, 0x15272627, 0x2f013517, 0x13191811, 0x22010113, 0x22333322, 0x13010122, 0x11181913, 0x06090906, 0x010e9171, 0x0d090a01, - 0x05050174, 0x0b856ffe, 0x05057f2b, 0x017b0408, 0x11172171, 0x28028217, 0x1588c021, 0x25252322, 0x8239841c, 0x251c3341, 0x15222325, 0x3abf0707, - 0x0f011006, 0x0507070d, 0x0082012e, 0x0a0a2408, 0x3c01d1fe, 0xf2fe1007, 0x0407060e, 0x0a0afc33, 0x44311614, 0x13131c31, 0x37c2311c, 0x050000f9, - 0x8dff0000, 0x005824df, 0x6d060100, 0x06200612, 0xba83ac84, 0xd9823620, 0x1f27c882, 0x34373601, 0x19353635, 0x21088e32, 0x15822511, 0x07151723, - 0x29d48206, 0x013f3611, 0x15373617, 0x0d413527, 0x76791805, 0x98012111, 0xfd8de589, 0x0505082e, 0x090d7401, 0x0e01010a, 0x04eafe91, 0x7f200e82, - 0x7b240d85, 0xc02117be, 0x0255f585, 0x05f95406, 0x87480121, 0x0d0841f2, 0x820a5021, 0x01280843, 0x07052e01, 0xf1fe0d07, 0x013a0610, 0x14163e2f, - 0x33fc0a0a, 0x0e060704, 0x07100e01, 0x311cc231, 0x31c237f9, 0xb413131c, 0x0ca92e19, 0x00000236, 0xfc01c0ff, 0x1b00bc01, 0x00002900, 0x31232601, - 0x27010f22, 0x2005007e, 0x05b96b17, 0x3717072d, 0x27343536, 0x06072703, 0x8406010f, 0x013f2314, 0x8b82e101, 0x0f1c2a08, 0x1d1d160d, 0x0e0e5616, - 0x11561111, 0x82740d11, 0xbb1b1ba5, 0x154a4082, 0x09090205, 0x4a66190d, 0x1ba10140, 0x150d0f1b, 0x211e8215, 0x28820e0e, 0x39832383, 0x82c3fe2f, - 0x19664941, 0x0209090d, 0x41491505, 0x20008200, 0x268b8404, 0x00c001ff, 0x8217000b, 0x004a3b8d, 0x32331300, 0x0706011f, 0x36372627, 0x26070533, - 0x3b363727, 0x16173201, 0x60180307, 0x4718119e, 0x1521092b, 0x08296f07, 0x27372008, 0x36013f26, 0x2f26012f, 0x08801001, 0x344b5105, 0x0504056c, - 0x6ced0109, 0x05514b34, 0x82098008, 0x024d280d, 0x4b4b3132, 0x87023231, 0xa8330807, 0x02170808, 0x070c3205, 0x04090324, 0x042d0604, 0x010d2d04, - 0x24040109, 0x05320c07, 0xc0011702, 0x33077a07, 0x090808a2, 0x0832a219, 0x0809077a, 0x8bc9fe08, 0x0847833f, 0x0a0a5f20, 0x0701042e, 0x04230b05, - 0x04063105, 0x02170303, 0x0e041702, 0x23040531, 0x0107050b, 0x3f552e04, 0x001a250c, 0x003e002c, 0x1c958418, 0x20077a50, 0x05674207, 0x18353621, - 0x840cc265, 0x190d6115, 0x48d0fe21, 0x94440ee0, 0x090d2105, 0x18055571, 0x2018ba54, 0x1ad14830, 0x240d5f46, 0x003f0025, 0x1d5f4659, 0x17163327, - 0x26230706, 0x07086e27, 0x20056243, 0x05ae7006, 0x35363725, 0x18162734, 0x8c08945f, 0x20368215, 0x1a684606, 0x18804021, 0x20086e97, 0x07565320, - 0x06240222, 0x27051945, 0x80022406, 0x0112121b, 0x2483108b, 0x20188c5a, 0x07575490, 0x36839020, 0x29232a83, 0x410a0811, 0x0a240507, 0x40291108, - 0x28831291, 0x3507f757, 0x018001c0, 0x000b00c0, 0x00290016, 0x1f361300, 0x13171601, 0xf2821321, 0x0706032a, 0x36331716, 0x23272637, 0x1231e018, - 0x0b0bb52d, 0x28010450, 0x0128f0fe, 0x181d5004, 0x2208246e, 0x72017850, 0xfe200645, 0x3106cf6c, 0x0a0abb01, 0xfe050450, 0x054201be, 0xf5fe5004, - 0x7e5c1602, 0x0c3c6b05, 0x310c3f72, 0x0034000c, 0x27260100, 0x010f2631, 0x37363733, 0x7e192734, 0x1426092c, 0x06171617, 0xcb590607, 0x26272606, - 0x36373627, 0x084a5435, 0x08f8012d, 0xd10b0c0c, 0x01086a91, 0x4128fe08, 0x20310502, 0x07113d1f, 0x0e080903, 0x09080ec0, 0x3d110703, 0x060f541f, - 0x0140fe2e, 0x010209b5, 0x0a699a07, 0xb50a0c0c, 0x25057d41, 0x162e2e3e, 0x39851b15, 0x16151b25, 0x853e2e2e, 0x0bdf7217, 0x43001522, 0x0c777d18, - 0x0a604c18, 0x37341325, 0x47333631, 0x95820575, 0x16023d22, 0x1f84af82, 0x07062323, 0x0ec57f15, 0x12010024, 0xec581b12, 0xe0fe2609, 0x0112121b, - 0x246f82a0, 0x22171601, 0x2a838290, 0x0111121c, 0x291b1b01, 0x85010f90, 0x82402091, 0x095a5606, 0x22088b7b, 0x82e0fe40, 0x22102418, 0x82011617, - 0x5a202d3d, 0x2018180a, 0x1b1b2920, 0x100f0101, 0x0a329b18, 0x0bfb5618, 0x1b001530, 0x2d002700, 0x3f003300, 0x57004500, 0xd18c6200, 0x09414118, - 0x2617112b, 0x1f163327, 0x26013901, 0xe7561827, 0x2637270c, 0x23171627, 0xab823927, 0x36290782, 0x07373637, 0x36230706, 0x182f8237, 0x1b0ff956, - 0x200e1602, 0x21b78801, 0xf183c0fe, 0x0a2cb738, 0x290b0427, 0x040b0504, 0x050b0430, 0x040b2904, 0x0f2c0a27, 0x17820b04, 0x15833820, 0x88032f21, - 0x18a92015, 0x210fec56, 0xe4820ff0, 0x0484e020, 0x20091841, 0x087d57fe, 0x80012108, 0x2d3116d7, 0x0b05091a, 0x152b2b15, 0x1a09050b, 0x6716312d, - 0x31161a2d, 0x140c0550, 0x0c142b2b, 0x57241285, 0x01242536, 0xc0205b8b, 0x30075443, 0x02000200, 0x0002c2ff, 0x0d00c001, 0x00002b00, 0x050a5b01, - 0x010f0629, 0x0737022f, 0x8207021f, 0x16372109, 0x5608d656, 0x073405eb, 0x013f3637, 0x24177601, 0x01161622, 0x0bcf1a01, 0xccb50a40, 0x13260482, - 0x60b21b07, 0xa3440404, 0x5f013508, 0x531b0832, 0x011aa501, 0x22161601, 0x0ab41824, 0xe6cf0b40, 0x53240482, 0x5f32081b, 0x29062a49, 0x040e0909, - 0x1bb26004, 0x8b841307, 0xfe01c328, 0x0c00be01, 0x8b822e00, 0x2d05e746, 0x2326012f, 0x06030f22, 0x17060307, 0x49182637, 0x23080812, 0x07060706, - 0x16072722, 0x3f362537, 0x70012702, 0x10387d37, 0x16122e10, 0x09501216, 0x580c1f90, 0x059a0d06, 0x33082c5a, 0x0b140e0d, 0x120e990a, 0x0a1f0801, - 0x0181022c, 0x377d38ae, 0x2e2f2a83, 0x024d1010, 0xfe1f0a2c, 0x990e12f8, 0x19140b0a, 0x330ab835, 0x060d9a05, 0x901f0c58, 0x04008109, 0xc1ff0000, - 0xbf01ff01, 0x1a279782, 0x52003600, 0x4c010000, 0x272e0595, 0x32333637, 0x17370117, 0x010f0607, 0x6c7f2706, 0x6a072005, 0x19820517, 0x30011f25, - 0x67153023, 0x32270545, 0x1f353031, 0x89312202, 0x3134210f, 0x36084485, 0x2f222306, 0xd5013701, 0x39121218, 0x1a133972, 0x58fe1419, 0x0bff72ff, - 0x0a0e680d, 0x041e0309, 0x5792cc0a, 0x0f4e0e0e, 0x140f1313, 0x0a0a4001, 0x01400b0b, 0x872da02d, 0x8614200a, 0x9257241b, 0x8318ad01, 0x2344823d, - 0xb2fe1212, 0x0a264282, 0x09031e04, 0x47820e0a, 0x5792fa22, 0x4e223f83, 0x42820e0e, 0x0a0b0b23, 0x2642860a, 0x09090b0b, 0x86140140, 0x9257211b, - 0xc03aeb84, 0xc0018002, 0x32001f00, 0x56004400, 0x35130000, 0x16011f36, 0x2627021f, 0x06823337, 0x086fb218, 0x2f262525, 0x19352601, 0x50129041, - 0x3525080e, 0x33363734, 0x18e58232, 0x0811c483, 0x12020020, 0x12061123, 0x1203297f, 0x6d091328, 0x2314186b, 0x16030311, 0xd6fe4140, 0x0a520d11, - 0x67450220, 0x45fd2006, 0x5b180667, 0x1b860c02, 0x08056842, 0x63190121, 0x04080111, 0x92263010, 0x0f010311, 0x100720c2, 0x1615101b, 0x4d111809, - 0x09540c05, 0x44e7fe0d, 0x058505e3, 0x9d425020, 0x200f8208, 0x0cc66030, 0x00020024, 0xfb83ff00, 0x21009a31, 0x00003500, 0x0f262701, 0x14070601, - 0x8407011f, 0x011f3509, 0x32013b16, 0x37362537, 0x27262736, 0x010f2223, 0x31171401, 0x0f9de718, 0x7d012408, 0x2e191ac3, 0x93080108, 0x0d0e3a63, - 0x49090e21, 0x08890f0a, 0x47110107, 0x0b0b071d, 0x1b1f3915, 0x8283fe68, 0x3fe08c77, 0x0a494d01, 0x0905160d, 0x325f0509, 0x1007061a, 0x0b550f0a, - 0x4b258903, 0x01100f14, 0x93fe350e, 0x850c227b, 0xc00123a7, 0x0b4cc001, 0x22132705, 0x1d063107, 0x6b631402, 0x013d2305, 0x915a1733, 0x32332305, - 0x1385013f, 0x2f343527, 0x35363701, 0x05464a34, 0x5c662720, 0x17232407, 0x7f333523, 0x465a079e, 0x80332a09, 0x0a09096a, 0x690a0d0d, 0x22058369, - 0x876a0909, 0x26562c0f, 0x01011718, 0x90301f20, 0x18707090, 0x2008f569, 0x21cd82c0, 0xa28560a0, 0x8f804021, 0x2a0f8733, 0x1e1d0a56, 0x201f3028, - 0x4360a001, 0x00200796, 0x330c134f, 0x00350024, 0x005a0047, 0x23060500, 0x26352722, 0x15070627, 0x83059248, 0x25a683af, 0x07061716, 0x19850706, - 0x8a640320, 0x3317210e, 0x6405ad6c, 0x07200aa0, 0x18080067, 0x2c08b97f, 0x332d6001, 0x0f012d33, 0x233a010f, 0x0cfc6622, 0x23220123, 0x2017833a, - 0x0f76649d, 0xe0537a20, 0x098b6405, 0x55446d20, 0x0e14300b, 0x132d010d, 0x010fcd13, 0x22be0f01, 0x6a483a3a, 0x3a230c96, 0x83be223a, 0x01cd2219, - 0x0b144f03, 0x200b9453, 0x09255f66, 0x084da518, 0x2909a355, 0x0027001a, 0x004d003b, 0x2d68005f, 0x16312306, 0x6a183617, 0x27220960, 0x01830706, - 0x16261282, 0x06071617, 0x01822627, 0x22083664, 0x41173637, 0x232706db, 0x31373437, 0x48323336, 0x2324055c, 0x35262722, 0x0ca55218, 0x44821720, - 0x55002321, 0xcb85113f, 0x0f01f02d, 0x0a092f45, 0x35270b0c, 0x8450010f, 0x0e0f26a4, 0x0c06060c, 0x23da820e, 0x90140e0d, 0x3d35ca4a, 0x02010f50, - 0x090b0c33, 0x01012a0a, 0x0d0e500f, 0x17181014, 0x0f06060f, 0x14101817, 0xa54f0e0d, 0x132d7606, 0x06000023, 0x0bae1800, 0x00063a07, 0x0010000b, - 0x004c003a, 0x1300005e, 0x23353315, 0x27050706, 0x23331523, 0x20048235, 0x250d8205, 0x27260706, 0x08892726, 0x2708d060, 0x1f16023b, 0x011d1601, - 0x0721fb82, 0xcf5e1823, 0x110d5f10, 0x58604033, 0xe2010107, 0xe2a25151, 0x10016060, 0x1b1b0110, 0x05f75e29, 0x0f500886, 0x14142e05, 0x71a0781f, - 0x0f6f131e, 0x140e0d01, 0x0f2b4240, 0x4690fe21, 0x1d830b63, 0x58580127, 0x58070160, 0x20008260, 0x3d9018c0, 0x2a1f830f, 0x14141fe8, 0x84160101, - 0x836c1811, 0x203e8f3a, 0x18618f30, 0x270c6b5c, 0x00520046, 0x0065005c, 0x22057151, 0x82173233, 0x0f1421f0, 0x1c43f384, 0x013f2405, 0x4a013f36, - 0x352e0870, 0x2b262734, 0x27363701, 0x36010f26, 0x0c60013d, 0x07114c07, 0x07013d24, 0x3d820637, 0x27262339, 0x07373635, 0x17160706, 0x013d3433, - 0x37360523, 0x06212726, 0x45c02107, 0x0735054f, 0x12131f54, 0x15140101, 0x0d16291f, 0x0c5e1229, 0x100a0905, 0x05cb4180, 0x06125427, 0x7b120e0d, - 0x2eb41804, 0x3109330d, 0x030e1a10, 0x01010705, 0x02169f16, 0x28281602, 0x07835002, 0x0acafe25, 0x4b4c010c, 0x08360773, 0x091a2929, 0x48211919, - 0x0114151e, 0x47192301, 0x0f261d4f, 0x74850d0e, 0x0e123628, 0x1f25040d, 0x4441081f, 0x06d04407, 0x0fb12034, 0x04182f33, 0x17480701, 0x16023f08, - 0x04040216, 0x07833028, 0x44181821, 0x1a260d7f, 0x62003400, 0x334d9000, 0x33b3181d, 0x710e5619, 0xb3185c20, 0x36201769, 0x21511456, 0xb31810ba, - 0x61201683, 0x083d1e56, 0x00070022, 0x02c0ff00, 0x00c0017f, 0x002b0026, 0x00350030, 0x003f003a, 0x13000044, 0x06030706, 0x21331617, 0x2109dc7f, - 0xc4463201, 0x012b2305, 0x0a822135, 0x2603272a, 0x37172127, 0x07230733, 0x37240382, 0x2317013b, 0x27340484, 0x33272337, 0x37012b17, 0x19601733, - 0x09034006, 0x00010f0a, 0x48063248, 0x3208064d, 0x0f000140, 0x4003090a, 0x40fe1906, 0x0b5b1505, 0x0b6a0965, 0x949a1574, 0xc50baa0b, 0x0a741569, - 0x5b0b6560, 0x0b8b9615, 0xc0010b76, 0xc0fe1802, 0x180c0c0e, 0x2c0ceb8f, 0x0e0c0c40, 0x02184001, 0x306868a8, 0x84008468, 0x00002306, 0xcf820200, - 0x4002e02b, 0x2000a001, 0x00003200, 0x07836d37, 0x33373622, 0x2305be46, 0x012b0706, 0x8405f75e, 0x05046e12, 0x26070625, 0x82373627, 0x333e0801, - 0x33b71732, 0x09090a23, 0x4433230a, 0x02120a55, 0x3d232401, 0x14144b3c, 0x233d3c4b, 0x12020124, 0x7744550a, 0x131a1a0d, 0x3a28283a, 0x0e1a1a13, - 0x06080805, 0x0f3120d5, 0x310f1010, 0x20822a20, 0x36852885, 0x2a303e82, 0x2a290cc5, 0x35352145, 0x292a4521, 0x0006060c, 0x01200082, 0xc02fa382, - 0xc0010002, 0x00003500, 0x010f0601, 0x5b012f06, 0x15210754, 0x200e8214, 0x29b58217, 0x3b36013f, 0x011f1601, 0x96823316, 0x0f821f82, 0x82263721, - 0x08028207, 0x2326276c, 0x141f2001, 0x482e1d1f, 0x03111115, 0x0b2c0c04, 0x0f0f1c09, 0x1310100a, 0x08090843, 0x122d1920, 0x13131d18, 0x15010301, - 0x02011652, 0x0b263b22, 0x10110613, 0x01c00116, 0x01232818, 0x0d0d0105, 0x46121515, 0x0f131410, 0x101c1c31, 0x0d030708, 0x27140102, 0x1314010f, - 0x101b331d, 0x251c113c, 0x270f160e, 0x0d0d1546, 0xab880900, 0x22000c32, 0x46003400, 0x6a005800, 0x8e007c00, 0x0000a000, 0x0c438e19, 0x37360325, - 0x18373631, 0x4d0f2779, 0x132011b0, 0x4a074457, 0xc14a1a9d, 0x0c304711, 0x07141525, 0x90172306, 0x18272047, 0x3210b067, 0x090e4080, 0x09098009, - 0x1b01800e, 0x2980291b, 0x18011b1b, 0x2408fb6d, 0x171601f0, 0xf0621822, 0x4a50200b, 0xe24a0b8d, 0xdb82180c, 0x0cef630c, 0x7b0c4a7c, 0x01210ca3, - 0x214e82c0, 0x7f826060, 0x8400ff21, 0x20808277, 0x073d46d0, 0x8b50d021, 0x20888378, 0x067f6701, 0x8c127147, 0x8c8a8c70, 0x0c2043a4, 0x4b4b0020, - 0x01002805, 0x003100c0, 0x18000036, 0x480c39a8, 0x07210696, 0x05b85623, 0xd6661520, 0x37362609, 0x27262726, 0x2b048323, 0x35211517, 0x02380121, - 0x01011312, 0x34066147, 0x02121301, 0x170f0f01, 0x201f3022, 0x011e0201, 0x01140e0d, 0x34d28360, 0x2001021e, 0x1722301f, 0x68010f0f, 0x4001c0fe, - 0x19151af6, 0x23f48722, 0x1a151922, 0x22831983, 0x330c2122, 0x22070241, 0x83210c33, 0x224f8346, 0x822020d6, 0xff1824af, 0x822802c0, 0x000d22af, - 0x30af822c, 0x2f011f31, 0x2f013f01, 0x17113103, 0x2f060716, 0x2b471801, 0x023f2609, 0x1f163736, 0x08b58202, 0x17010f59, 0x551b2001, 0x46150511, - 0x2b0d1d60, 0x101003af, 0x12808012, 0x19020f10, 0x06060e68, 0x0a409013, 0x40091413, 0x05071390, 0x4818680d, 0x1c622e0e, 0x050e4515, 0xdffe581a, - 0x0b0c1363, 0x09444409, 0x92130c0b, 0x12130e67, 0x11841603, 0x84110101, 0x13120316, 0x4d92670e, 0x01210587, 0x348f8280, 0x00390008, 0x004f0044, - 0x37361300, 0x15171633, 0x23173523, 0x08d44835, 0x06231524, 0xe94a0607, 0x06004c05, 0x87333521, 0x18362008, 0x18079e78, 0x20157354, 0x05e05890, - 0x5820b021, 0x996a08e1, 0x05894208, 0x5306eb41, 0xd0200777, 0x09458118, 0x01260989, 0x01010788, 0x00824807, 0x0f101823, 0x21498301, 0xd6690148, - 0x4c581807, 0x2014870c, 0x077a5060, 0x83508020, 0x43042008, 0x775508e3, 0x1d175b05, 0x24cf4618, 0x4208d470, 0x175b076b, 0x5f502019, 0xf6720dd0, - 0x0872680e, 0x54070541, 0x461818a8, 0xd0201ac7, 0x18115d68, 0x2209df43, 0x46230014, 0x432006f7, 0x2408195b, 0x15161732, 0xe3d21811, 0x34132408, - 0x18371135, 0x2008834d, 0x09966c02, 0x03212327, 0x35331523, 0x2a038207, 0x37361723, 0x07062726, 0x53001716, 0x09190613, 0x4b2a0835, 0x0a0d0d0a, - 0xd30a0a5a, 0x3b64c029, 0xd7fe2306, 0x00834037, 0xab542020, 0x16022305, 0xab41a001, 0x44fe2005, 0x1b2c05a2, 0x8001291b, 0x050576fe, 0x0a4b0601, - 0x0d253a82, 0x56d4090d, 0x265787c0, 0x804040c0, 0x70f84040, 0x003308fe, 0x00000003, 0x013f0220, 0x00210060, 0x00680033, 0x82170100, 0x062321bb, - 0x09897e19, 0x37362723, 0x27b68436, 0x06071415, 0x0722012b, 0x4105bf5a, 0x2629079c, 0x05272627, 0x37361716, 0x05b34c31, 0x82071621, 0x4b13823f, - 0x074105bc, 0x20118505, 0x82478226, 0x4d17204b, 0x17370507, 0x028a3601, 0x1d010101, 0x111c1f1e, 0x1b111414, 0x05101020, 0x445e3f3e, 0x40240697, - 0xeafe2129, 0x340f7a41, 0x2a231301, 0x1315232a, 0x070d1c16, 0x0b030307, 0x14260d0b, 0x997e192d, 0x770e211f, 0x142a6582, 0x130c0c14, 0x3d5d0601, - 0x1f43023e, 0x12122105, 0x87071442, 0x19a62807, 0x0d180201, 0x8307120f, 0x265f8357, 0x01190f0a, 0x82041003, 0x03103700, 0x0a0f1901, 0x0d070703, - 0x030b0b0d, 0x0c0e1207, 0x19010218, 0x33480c0c, 0x0044230c, 0x4b190079, 0x1f21094f, 0x06084101, 0x26012f28, 0x06072227, 0x7b55011d, 0x17162105, - 0x20088351, 0x2f1a8826, 0x07061522, 0x35312306, 0x27261523, 0x13352726, 0x38334e41, 0x1b1b0180, 0x1a1a2529, 0x08010106, 0x0a0e0d08, 0x0501020a, - 0x09090e1a, 0x2a1796c0, 0x1d020201, 0x1d1ec01e, 0x41b30302, 0x40293254, 0x011b1b29, 0x25171701, 0x82698408, 0x1a082771, 0x0e090902, 0x18966060, - 0x0101e92d, 0x61601401, 0x02011401, 0x41fafee9, 0x0024346a, 0xff000003, 0x2405df52, 0x0026001b, 0xa1891838, 0x4935200d, 0x26240598, 0x06072223, - 0x27210182, 0x06ee4b13, 0x07062523, 0x210a8433, 0x92421716, 0x37362405, 0x18271716, 0x0809fad0, 0x01048b24, 0x23231b1b, 0x0f0f0a1a, 0x1515100a, - 0x0269b016, 0x4a4b3132, 0x19eefe32, 0x16016001, 0x010f2217, 0x6d460f01, 0x01012806, 0x13100cbb, 0x8330fe0f, 0x136d3d05, 0x39382715, 0x0d253838, - 0x2120170d, 0xc5fe8a24, 0x0232314b, 0x35d73102, 0x16172225, 0x38823482, 0x301f2022, 0x0f200582, 0x260c2b51, 0x003b001a, 0x4c650050, 0x94191dab, - 0x172a09cc, 0x07141516, 0x26012f06, 0x8a82012b, 0x55270621, 0x27200545, 0x3d425961, 0x1718105b, 0x18171c1c, 0x0a0a1110, 0x14080707, 0x2b042b29, - 0x07081429, 0x0a090107, 0x63611f11, 0x11b72236, 0x3000820c, 0x12121111, 0x05050812, 0x0f0f0803, 0x05050308, 0x210e8208, 0x6f61b611, 0x05f57e22, - 0x00000031, 0xff000001, 0x018001e0, 0x003000a0, 0x47261300, 0x14230529, 0x8216011f, 0x36172502, 0x3736013f, 0x0c820988, 0x2905ef4e, 0x17010f22, - 0x2f060716, 0xd66e9a02, 0x0b560805, 0x24030717, 0x05131205, 0x1c1c081d, 0x13051d08, 0x03240512, 0x010b1707, 0x252b1c1c, 0x0b13031c, 0x180d0a08, - 0x148c0125, 0x291b1b01, 0x2f151806, 0x12ce0e0e, 0x7a110102, 0x1a02021a, 0x0201117a, 0x0e0ece12, 0x0318152f, 0x011c1c2a, 0x0b0f0318, 0x13080b0c, - 0xdf47001d, 0x40023205, 0x1600bb01, 0x3d002600, 0x00004e00, 0x23072725, 0x06ba5322, 0xf4592120, 0x33372208, 0x05237f07, 0x27262727, 0x16011d16, - 0x2b078207, 0x26272631, 0x26312223, 0x010f0607, 0x17280282, 0x35273637, 0x31170605, 0x3720ce82, 0x0628d784, 0x01070607, 0xb6483c5a, 0x2105d645, - 0x07850002, 0xfafe3808, 0x44037940, 0x010c0c0e, 0x2b151505, 0x051e0303, 0x180e0f01, 0x19010101, 0x04121919, 0xd2031b36, 0xfe031c03, 0x0505089d, - 0x1d03470e, 0x0b09043a, 0x2434353c, 0x4ac616b0, 0xb0230b99, 0x82051809, 0x3c2b0878, 0x0c293636, 0x5256060d, 0x14151aad, 0x0609010a, 0x3c051307, - 0x094d094b, 0x0e06504c, 0x050d0d0c, 0x4051091a, 0x02080a05, 0x74321c1c, 0xc02208d3, 0xf982a001, 0x58004236, 0x62005d00, 0x00006700, 0x23153301, - 0x07222735, 0x23150631, 0x200dac74, 0x0c377615, 0x74333521, 0x23210ce0, 0x09297635, 0x37320524, 0x1f843631, 0x33833320, 0x23224784, 0x6c180735, - 0x352009ef, 0x01280a82, 0x10202070, 0xc009090e, 0xb54ac982, 0x2114940d, 0x168600ff, 0x30280686, 0x40012020, 0xc0fe2020, 0x49820782, 0x83093756, - 0x49539c4b, 0x19510643, 0xf0c02206, 0x83008320, 0x0c135c4b, 0x33001125, 0x4c010000, 0x17201050, 0x0b3e4518, 0x07222322, 0x4e07124f, 0x262306fc, - 0x4c01012b, 0x3b210c00, 0x07f44705, 0x112e062f, 0x48050c0d, 0x170f0e05, 0x0f17a001, 0x230a820e, 0x2d110d0c, 0x0d1d7418, 0x110f2026, 0x011b1b29, - 0x11313383, 0x100a0a0f, 0x1317e0fe, 0x17131212, 0x0a102001, 0x97bf180a, 0x0036260e, 0x07221300, 0x05706031, 0x934f1720, 0x4f022009, 0x274e0993, - 0x82272005, 0x37172495, 0x82161733, 0x272623ad, 0xbf183726, 0x122c239e, 0x020b860b, 0x23231716, 0x01021617, 0x1ea5bf18, 0x8b8bcb2a, 0x01181923, - 0x23191801, 0x0020a282, 0x23053f50, 0x00c00100, 0x26051f4e, 0x0066004d, 0x8298007f, 0x331521ad, 0x2505ce52, 0x1d060722, 0xba820601, 0x1805254b, - 0x2109e092, 0x254a1323, 0x34132310, 0xbf18022f, 0x1727102f, 0x3f323316, 0x8b353602, 0x9003201b, 0x2f342225, 0x213c9303, 0x71428060, 0x0cfb4d06, - 0x1b1b0129, 0x22408029, 0x4e011617, 0xe0240b04, 0x020c1e02, 0x0c220082, 0x0989021e, 0x11904c20, 0x08201b82, 0x14201493, 0x01233e93, 0x436060a0, - 0x802005fc, 0x014e7483, 0x208f8309, 0x570919ff, 0x70012310, 0x7e8c0202, 0x2e205384, 0x64888f8a, 0x14936420, 0x3e933220, 0x00820020, 0x00000225, - 0x8201c0ff, 0x10002b01, 0x00003600, 0x35272613, 0xd04c3736, 0x07062d05, 0x07230706, 0x36313734, 0x16173237, 0x09e4ac18, 0xe25b1520, 0x27262205, - 0x21208226, 0x07822306, 0x0fe02728, 0x17160101, 0x06861022, 0x1be02b08, 0x1615391c, 0x1d1d1216, 0x15161612, 0x021b1c39, 0x0d3f2f30, 0x0d0a0e0e, - 0x0e0e0b0c, 0x30303e0d, 0x01500102, 0x1722100f, 0x06860116, 0x3cb02108, 0x06033031, 0x0b0b0706, 0x03060607, 0x623c3130, 0x04023e3e, 0x05050304, - 0x02040403, 0x00623e3e, 0x310b475e, 0x0026000d, 0x005e0050, 0x007a006c, 0x00950087, 0x136200a7, 0x06272905, 0x36272627, 0x27171637, 0x22050f48, - 0x82343526, 0x053b5dcc, 0x14151622, 0x1721af82, 0x06567d36, 0xb982bd82, 0x82222321, 0x57c78213, 0xe3820582, 0x26063562, 0x27371637, 0x83311716, - 0x23062931, 0x3f363736, 0x31151601, 0x32205385, 0x27232b82, 0x48311736, 0x1b820573, 0x42821720, 0x6a841a83, 0x26073324, 0x70853135, 0x8b822220, - 0x37323722, 0x0e276f18, 0x0d030138, 0x03030a09, 0x110d090a, 0x06111212, 0x0f0e0e0f, 0x01011012, 0x09891210, 0x070fb934, 0x07191907, 0x52220f07, - 0x20191910, 0x10191920, 0x13932252, 0x010d442f, 0x08080102, 0x0c020518, 0x01020c0a, 0x2504820d, 0x08081805, 0x5e879e01, 0x75206a83, 0x28861d83, - 0x248b2920, 0x340b064e, 0x06061924, 0x06060101, 0x08070619, 0x07096405, 0x0b0b0907, 0x21008211, 0x0b8b0b0b, 0x211c4832, 0x21222221, 0x0a351c21, - 0x17171628, 0x350a2816, 0x4f2f1191, 0x030b0c16, 0x14050403, 0x92090916, 0x820c0b03, 0x14162506, 0x5f030405, 0x6a835e87, 0x83135421, 0x20288516, - 0x20248ace, 0x0df95b41, 0x01000037, 0x20000000, 0x60014002, 0x00004300, 0x31171613, 0x32013b16, 0x05935337, 0xb5411620, 0x61152005, 0x0723069d, - 0x83262722, 0x012b2101, 0x4205264a, 0x2a82059a, 0x82343521, 0x21078216, 0x30823237, 0x0a059a3e, 0x0dc00d0a, 0x0a050a0a, 0x22191413, 0x02011617, - 0x28060628, 0x17160102, 0x13141922, 0x1e9c1682, 0x0c2f012a, 0x0a09090a, 0x0e0d160c, 0x30273183, 0x06060416, 0x83301604, 0x0d0e2247, 0x201b9b16, - 0x06e34a00, 0xc0010028, 0x21001100, 0xdc823100, 0x22109d65, 0x18271107, 0x200829e5, 0x2160823b, 0x9f4d1113, 0x011d2305, 0x02830f06, 0x18600121, - 0x390f1792, 0x23203070, 0x09021b60, 0x621e0e09, 0x62502050, 0x09090e1e, 0x23601b02, 0xa7193020, 0x1b2c0e37, 0xfe98291b, 0x031018f8, 0xcb1b050a, - 0x01272482, 0x01f8fe37, 0x82013708, 0x1bcb2639, 0x10040905, 0x080f4418, 0xa3830220, 0x5d002e22, 0x21067141, 0xf1431117, 0x05524107, 0x26373423, - 0x05594327, 0x3620058b, 0x22057366, 0x82171631, 0x14152201, 0x21058b07, 0x356a0706, 0x27222105, 0x07b8ab18, 0x3622d782, 0x9b50b837, 0x10163d07, - 0x0808030f, 0x0112121b, 0x0e0f1704, 0x0e150c0d, 0x02160e0e, 0x03150d0e, 0x9016100f, 0x15241d83, 0x16020e0d, 0x152c1582, 0x0f0e0d0c, 0x12010417, - 0x08081b12, 0x42871d83, 0x01c00127, 0xfe18100f, 0x830f8370, 0x3521833c, 0x14090a0b, 0x13181a14, 0x17110a13, 0x06111117, 0x11170908, 0x46830610, - 0x06160e29, 0x09171110, 0x83110608, 0x130a2919, 0x141a1813, 0x0b0a0914, 0x67838283, 0x01214b83, 0x084b8390, 0x00000022, 0xff000005, 0x010002e0, - 0x000800a0, 0x00460039, 0x005c0051, 0x16331300, 0x3721011f, 0x07233736, 0x1d24d382, 0x15171601, 0x20090a49, 0x230b8a21, 0x34353736, 0x2005d441, - 0x05994226, 0x210c7978, 0x6c183607, 0x332009c8, 0x3a07f865, 0x16b6a537, 0xdafe1a08, 0x5a16081a, 0x0b0b1223, 0x09091e02, 0x090e200e, 0x86000109, - 0x021e2408, 0x19120b0b, 0x200975ba, 0x096a7985, 0x1602a025, 0x84021620, 0x68012104, 0x02320987, 0x01600116, 0x144b4b14, 0x10076501, 0x25501410, - 0xfd433912, 0x66302005, 0x392f06b9, 0x14502512, 0x65071010, 0x1212111d, 0x78b01d11, 0x08200912, 0x20078b50, 0x08585018, 0x28420320, 0x80012705, - 0x42002900, 0x1d514d00, 0x3433210c, 0x21050642, 0xf1551516, 0x5b212009, 0x332608dc, 0x06272605, 0xd2771507, 0x16152505, 0x35373617, 0x2105ea65, - 0x5a180535, 0x5020092d, 0x18069947, 0x7d07e863, 0x6618059d, 0x10260c4d, 0x0f013001, 0x2d79010f, 0x21098905, 0x677ad0fe, 0x0d524909, 0x8808fb52, - 0x0f602208, 0x8ee48201, 0x7b302045, 0x0135052a, 0x0005000f, 0x02c8ff03, 0x00b8015e, 0x002d0024, 0x00610058, 0x24e7826a, 0x27010f22, 0x81491826, - 0x011f2f07, 0x16170607, 0x3f36033f, 0x26373601, 0x1b832635, 0x011f232e, 0x27011f16, 0x27173637, 0x030f0607, 0x10821f82, 0x21823720, 0x2b831720, - 0x03260b85, 0x26012f36, 0x04822627, 0x01212282, 0x262b8226, 0x27060716, 0x85270605, 0xb045080a, 0x4c1d040b, 0x0506070b, 0x02094228, 0x054e0b03, - 0x08090a01, 0x0e0b0924, 0x1a11292c, 0x4d0a0701, 0xc00b041d, 0x05010b87, 0x0b0720ca, 0x0b233046, 0x0309100b, 0x0f0d0607, 0x040b0b0e, 0x0308f708, - 0x0f0d0706, 0x330b820d, 0x080a1009, 0x1002071b, 0x19881910, 0x1e0f1717, 0x16080314, 0x3d080383, 0x15081501, 0x16070415, 0xb8010415, 0x03174a0a, - 0x45090908, 0x0a0a072d, 0x0b500c02, 0x21070405, 0x0e2e2723, 0x010d183c, 0x17030801, 0x249a0a4a, 0x36390b03, 0x1e03092f, 0x26230645, 0x59831f3e, - 0x82040421, 0x421f216f, 0x3e2e0b8a, 0x54162427, 0x0713131a, 0x08090724, 0x6885b116, 0x31031424, 0x6b850415, 0x08064343, 0xa0018028, 0x0d000600, - 0x4d003c00, 0x00005e00, 0x23153313, 0x17373637, 0x1f323335, 0x27052301, 0x22232726, 0x010f0607, 0x41180706, 0xa6590739, 0x88332007, 0x37322208, - 0x05114e36, 0x6405c74a, 0x14230877, 0x18260507, 0x080d5052, 0x35ab0727, 0x15081f71, 0x0a0f5165, 0x0001ad43, 0xb62e1d64, 0x0c17181e, 0x0b0b1329, - 0x210e0909, 0x241a1a07, 0x071a1a24, 0x2c088782, 0x09090e21, 0x311f1f01, 0x21210c03, 0x09866e0c, 0x8b93fe21, 0x210c260d, 0x4c606001, 0x2e048213, - 0x7d01540c, 0x10110123, 0x1008681b, 0x8270150f, 0x1623273c, 0x16010116, 0x07872316, 0x30296582, 0x07232332, 0x02021ecf, 0x0b7a6e1e, 0x0e8d2020, - 0x00021e22, 0x2f053b62, 0xc0014002, 0x6c005500, 0x06130000, 0x07063107, 0x2007c37c, 0x08764e33, 0x2b5e3520, 0x070d4105, 0x3d25fd83, 0x23272601, - 0x05574335, 0x06230686, 0x68141507, 0x26210501, 0x85128227, 0x2305821f, 0x010f1617, 0x13654083, 0x26232b06, 0x013f2627, 0x1b601736, 0xea671212, - 0x58012006, 0x102f0654, 0x010c0b11, 0x1f1f1414, 0x19011414, 0x8301100f, 0x010f2702, 0x0f0f0120, 0x02831001, 0x1602193a, 0x19010216, 0x01102519, - 0xa01b1212, 0x19030979, 0x03040b3a, 0x0a097008, 0x63180a8a, 0xd447078c, 0x0c90240b, 0x8320110b, 0x245e8356, 0x1514087c, 0x4bfe181b, 0x0f303708, - 0x300f0101, 0x1b200f01, 0x7c081415, 0x16020216, 0x19192520, 0x9e83c001, 0x0b075329, 0x080a0a4b, 0x82060760, 0x09012308, 0x0982070b, 0x280daf46, - 0x00320015, 0x33361300, 0x13631831, 0x26172111, 0x91573682, 0x37362608, 0x33373635, 0x05fb6c15, 0xe4012f28, 0x0c10100c, 0x02820cd8, 0x57250786, - 0x01090a07, 0x84748340, 0x400f2ae4, 0x50070a0a, 0x01500a0a, 0x84248ab4, 0x07892a34, 0x380a0503, 0x1b121201, 0x82ad8330, 0x0a3828bf, 0x50070305, - 0x87500b0b, 0x01e0289b, 0x00a001c0, 0x8251001e, 0x16152c9b, 0x31303317, 0x012f3130, 0x63232231, 0x32290742, 0x013f3133, 0x07062331, 0x5b621805, - 0x27262108, 0x1f850e82, 0x27263522, 0x0c5b7c18, 0x06070632, 0x1516030f, 0x021f0714, 0xd2080f60, 0x02022005, 0x2607e354, 0x05200202, 0x690f08d2, - 0x252409d9, 0x2512d212, 0x7619c684, 0x10860850, 0x0429b183, 0x06060220, 0x01042002, 0x20348229, 0x83c48408, 0x0838242b, 0x6cc9080f, 0x388f081d, - 0x10860220, 0x082a2983, 0x0f0d0438, 0x38040d0f, 0xdb600008, 0x0011260c, 0x002f0020, 0x18ef823e, 0x290a45ad, 0x11211123, 0x36031123, 0x6d5d2137, - 0x83212005, 0x07252bde, 0x06071617, 0x3f26012f, 0x09823601, 0x0f28b719, 0x01218583, 0x086a8380, 0x80fe4025, 0x11024040, 0x02115a02, 0x21161501, - 0x15211afe, 0x19010116, 0x0e0e1f1f, 0x0e301111, 0x1111300e, 0x87700e0e, 0x21168508, 0x18416001, 0x00ff2307, 0x03830001, 0x11cdfe29, 0x21110202, - 0x83011516, 0x1fc22244, 0x8235831f, 0x2237823a, 0x87221111, 0x35168508, 0x20000300, 0x2002c0ff, 0x1000c001, 0x36002300, 0x36010000, 0xbb82011f, - 0x2305945d, 0x013f3627, 0x17240e8e, 0x07013f16, 0x5e18c282, 0x2283076b, 0x3716172c, 0x18170901, 0x01010dda, 0x0787db0d, 0x8b35d421, 0x9835260e, - 0x98982525, 0x29139098, 0x0a0abb01, 0x0f0f0765, 0x07876507, 0x8b18cd21, 0x4618260e, 0xc6461010, 0x6d139046, 0x0229085f, 0x00c00100, 0x004b0039, - 0x1995185d, 0x17162408, 0x18331716, 0x270c06d7, 0x06071415, 0x26272223, 0x83055145, 0x34352909, 0x013b3637, 0x37363736, 0x33220983, 0xd2571603, - 0xd1641806, 0x974a1808, 0x067e4b09, 0x0001072a, 0x3d09090e, 0x230b2a2b, 0x24055348, 0x2b2a0b23, 0x05f2433d, 0x80201592, 0x240bef6a, 0x01242536, - 0x0f6e4f80, 0x82c00121, 0x8a449d3c, 0x00ff2170, 0x210f446b, 0xc05d0150, 0x8200200e, 0x00012100, 0x20075f56, 0x090f4163, 0x35011f22, 0x8307164c, - 0x171637cc, 0x06011d14, 0x22070607, 0x2726012f, 0x17352726, 0x2f363716, 0x0a823101, 0x030f062a, 0x17063130, 0x15013f16, 0x6b632082, 0x20208205, - 0x4c3f8434, 0x1520098d, 0x21073741, 0xa2824001, 0x15012e08, 0x1413010a, 0x0c15231d, 0x15141413, 0x01061110, 0x0b261919, 0x1421480b, 0x0d5b0113, - 0x6c0b0609, 0x09090b2c, 0x0d5f2c0b, 0x0d09070c, 0x322b825b, 0x0b0b4821, 0x01191926, 0x15101106, 0x0c131414, 0x821d2315, 0x150a272b, 0x0e090901, - 0x0482c001, 0x0f1a8424, 0x13832e06, 0x1e111d2b, 0x2c26271f, 0x02022c2c, 0x08318307, 0x09120320, 0x49221919, 0x0d0b063a, 0x071c4509, 0x1c070909, - 0x0d09093c, 0x493a060b, 0x09191922, 0x7b830312, 0x02020722, 0x26253182, 0x111e1f27, 0x256d821d, 0x0f062e1d, 0xa882841a, 0x9b4c0020, 0x0029240b, - 0x4958004d, 0x416e0dd3, 0x05265a09, 0x35262722, 0x27053542, 0x3b363734, 0x36210301, 0x2624f682, 0x35272627, 0x42051242, 0x21210963, 0x05284c22, - 0xe44a3320, 0x37362208, 0x20c682a8, 0x20748210, 0x052d4208, 0x0e8e0820, 0xe7188820, 0x522609ca, 0x02023636, 0x2785112f, 0xe0fea022, 0x50250885, - 0x01010fc0, 0x5b04840f, 0x4282071e, 0x1f851c83, 0xfe210c86, 0x07684260, 0x36024026, 0x354b5236, 0x5c0cc55f, 0x022f08e3, 0x20000000, 0x80017e02, - 0x38003300, 0x19010000, 0x55095b3a, 0x3b2406f2, 0x022b1501, 0x2205cb5d, 0x8315011f, 0x322134e0, 0x2736013f, 0x27010f26, 0x35012b26, 0x27150733, - 0x54013335, 0xea5f06bc, 0x20210806, 0x14303050, 0x01010d0e, 0x0d01431c, 0x0301140e, 0x08b7131d, 0xa70e0706, 0x510f0e32, 0x3030e020, 0x0c955f01, - 0x24832020, 0x0e1e4124, 0x3483151e, 0x0cce162d, 0x24020b0b, 0x50200719, 0x42411556, 0x002908bb, 0x3d00bf01, 0x36130000, 0x22848317, 0x41330714, - 0x0685066c, 0x06220585, 0x37462107, 0x37362105, 0x20053846, 0x3b068633, 0x37363736, 0x37262734, 0x240906fe, 0x05011717, 0x12121b05, 0x0e150101, - 0x0114141f, 0x09983819, 0x8490fe21, 0x1021080f, 0x011b1a11, 0x1f141401, 0x0101150e, 0x101b1212, 0x01161722, 0x01060304, 0x050107b9, 0x11251a1b, - 0x1915830f, 0x27236f38, 0x22171601, 0x07080c0e, 0x2d0b5f42, 0x0024000f, 0x01000036, 0x0f062726, 0xcc820601, 0x2005c862, 0x0a324d03, 0x08694c18, - 0x66180720, 0x01381038, 0x1212093b, 0x08096009, 0x12c0120a, 0x6009080a, 0x110b0c1b, 0x0c0b1190, 0xa0200686, 0x270f0d44, 0x010fb001, 0x10a00f01, - 0x2305055f, 0xd8fea010, 0x34822d8a, 0x8f44c820, 0x289a820f, 0xc0ff1600, 0xc001ea01, 0x0cf95d00, 0x37011d23, 0x06e15b36, 0x82010f21, 0x821620b7, - 0x060723be, 0x8118012f, 0x07220a47, 0x9c7f2706, 0x013f2205, 0x055c4927, 0x1f363725, 0x4dd03501, 0x7a3506b5, 0x070d0c0c, 0x03030610, 0x0c7a7a0c, - 0x10060303, 0x0c0c0d07, 0x421c9c7a, 0x8d2607e2, 0x04030647, 0x40831c0b, 0x83464621, 0x0b1c2636, 0x47060304, 0x05f3428d, 0x0c211d88, 0x211d8c08, - 0xcf5e0000, 0x6e1a2009, 0x68230637, 0x75007a00, 0x07241b41, 0x26312734, 0x2306e76b, 0x15060706, 0x77076b4a, 0x298411b1, 0x23081a59, 0x35363732, - 0x11f4af18, 0x82342721, 0x75238c4d, 0xc02a197d, 0x02120b0b, 0x12021616, 0x81480b0b, 0x35471807, 0xa852180c, 0x07a94a0c, 0x8c050041, 0x18a6751a, - 0x1014602d, 0x16cd0710, 0xcd160202, 0x19101007, 0x7408489a, 0x886e0c13, 0x0cc5570c, 0xed6d9020, 0x0d5b410d, 0x01652c20, 0x1b5b4108, 0x65110d41, - 0x262b051d, 0x27363727, 0x22010f26, 0x63312231, 0x1622057c, 0x39410317, 0x9ab41810, 0x90252011, 0x195d4123, 0x0045e020, 0x1b202e0b, 0x01011212, - 0x13074011, 0x01400b15, 0x220d8401, 0x641b1212, 0x09410cea, 0xffb2180c, 0x1861410d, 0x4106af60, 0xfe210529, 0x05c641c0, 0x0b159125, 0x5f921307, - 0xd16408f0, 0x8c90200c, 0x0d614195, 0x18000221, 0x2009736a, 0x34b34232, 0x42190d41, 0xd498126b, 0x4d163642, 0x002606b3, 0x1a00c001, 0x9f9d3100, - 0x2008e041, 0x07de4123, 0x36373622, 0x1a638d18, 0x0e01c02a, 0x1413094c, 0x03034d0c, 0x990bcb60, 0x121827a2, 0x090c1493, 0x65419313, 0x12122308, - 0x3357001b, 0x02e03606, 0x00a00140, 0x00250015, 0x00460036, 0x00680057, 0x00890079, 0x0da14b9a, 0x212d9783, 0x27262726, 0x16151711, 0x37363317, - 0x07666c35, 0x59063721, 0x148706a4, 0x208e0520, 0x37361723, 0x182f8431, 0x6907dc56, 0xe183053c, 0x9106127e, 0x25429f21, 0x1b1b0100, 0xf6620129, - 0x05006308, 0x1602b025, 0x6d021630, 0xb0240759, 0x010d0e14, 0xfe211188, 0x201c8cd0, 0x201c8c30, 0x84338750, 0x20388d23, 0x20379a50, 0x050b6101, - 0xff208a82, 0x2808ac67, 0x38300001, 0x16020216, 0x83618338, 0x83302057, 0x21128904, 0x1d831850, 0x1d871820, 0x1d83b020, 0x97841289, 0x3b841289, - 0xb0201d89, 0x00203b9c, 0x0a200082, 0x3408c76a, 0x00260015, 0x00480037, 0x006e0059, 0x008f007f, 0x00b000a0, 0x05375000, 0x4e181520, 0x21290d90, - 0x31171617, 0x06151716, 0x05216e07, 0x41373621, 0x2578058f, 0x20148306, 0x6f218f27, 0x218a0568, 0x0a559f18, 0x0e492120, 0x26558205, 0x31272635, - 0x5a352726, 0x3720092f, 0x26210b8a, 0x918e1827, 0x62209a07, 0x12220553, 0xe64f1b12, 0x1b012605, 0x80fe291b, 0x1abc4180, 0x1b8cd020, 0xd9410120, - 0xb0fe210d, 0x82063242, 0x40fe2550, 0x0112121b, 0x318c5083, 0x420dee41, 0x01211b0a, 0x783c83a0, 0x40250836, 0x011b1b29, 0x0deb4140, 0x4108cd41, - 0x102005fe, 0x211ceb41, 0x4f83d0fe, 0x82057945, 0x8820209f, 0x09f4414f, 0xff413020, 0x0e1d420d, 0x003b1d8e, 0xff000006, 0x017f02c2, 0x001b00c0, - 0x004e0035, 0x00910063, 0x050000aa, 0x48312726, 0x6c72077c, 0x05aa4806, 0x2706072a, 0x31373013, 0x27363530, 0x2405bc5b, 0x31143130, 0x25228516, - 0x37161737, 0x1a893530, 0x1a881420, 0x4805bf72, 0x2d820608, 0x3d823720, 0x06050722, 0x2f226384, 0x8b592601, 0x4a172005, 0x0621077f, 0x077d590f, - 0x36225082, 0x18820637, 0x0307062e, 0x07060726, 0x15262706, 0x31301530, 0x08517e18, 0x34313a08, 0x2c8f0131, 0x1d162423, 0x0b021809, 0x532c2c0e, - 0x09272753, 0x08180308, 0x2d2c202a, 0x0201112d, 0x1110090a, 0x01030c0d, 0x0f0f0e09, 0x7103090b, 0x09020408, 0x0c11100a, 0x0812850d, 0x2c0b0c37, - 0x06243333, 0x19050505, 0x1f272619, 0x04020f20, 0xebfe0604, 0x202c2d2d, 0x0318082a, 0x27270908, 0x2c2c5353, 0x2701010e, 0x180d1a19, 0x04041401, - 0x0513121a, 0x08318201, 0x061f183b, 0x090e0a20, 0x09034309, 0x0d100f0b, 0x0d0c030a, 0x0a091110, 0x093e0102, 0x32252525, 0x0a0fa43a, 0x0b0b0b0e, - 0x1118180e, 0x3aa4100c, 0x18191d27, 0x01160104, 0x0d0d1001, 0x2e838203, 0x02090111, 0x08020305, 0x05160805, 0x83010108, 0x21158291, 0x16830110, - 0x0803023d, 0x08071455, 0x02020420, 0x1b1a2507, 0x11120506, 0x04030623, 0x18046b03, 0x82271d19, 0x0d240859, 0x0e171811, 0x0d0b0c0c, 0x0a040101, - 0x17160c0a, 0x12040184, 0x02061a12, 0x07130403, 0x1211363c, 0x22010104, 0x032c5a82, 0x09020502, 0x090a1101, 0x0d0d0302, 0x9b625b82, 0x40012b05, - 0x1400c001, 0x38002600, 0x27544a00, 0x07a34908, 0x27261127, 0x13232726, 0x059d5c16, 0x2605af5c, 0x37363736, 0x5c373627, 0x48180694, 0x2390081a, - 0x121b4032, 0x2d020112, 0x2d44442d, 0x1201022d, 0x60c01b12, 0x4220d472, 0x298708ff, 0x2006f153, 0x834383e0, 0x058d524b, 0x73c0fe21, 0xaf740f0d, - 0x0e0d2205, 0x0c264514, 0x5f186f8b, 0x04330ce3, 0x74003b00, 0xbf008600, 0x0000d100, 0x27331501, 0x55173723, 0xce500509, 0x5d232006, 0x088807cb, - 0x5007794e, 0x352005d0, 0x2a06d45e, 0x17163305, 0x1f361716, 0x44071601, 0x062a06db, 0x010f1607, 0x07062706, 0x3b830706, 0x2f062725, 0x58372601, - 0x262408b0, 0x1736013f, 0x31453b83, 0x86531805, 0x3625210b, 0xb005d46e, 0x0541514c, 0x2a0b0748, 0x30802001, 0x504d8350, 0x4909090e, 0x16280501, - 0x28282121, 0x40162121, 0xda4e0887, 0x01a03b08, 0x60140e0d, 0xf5fe1320, 0x0b041410, 0x0b0f100b, 0x03060b0d, 0x13020213, 0x0a820603, 0x0b100f25, - 0x8314040b, 0x110a211a, 0x11211a8f, 0x181a820a, 0x41080045, 0x202008b1, 0x4aa22f85, 0x8a011421, 0x08784565, 0x2408da41, 0x26404080, 0x4ec18266, - 0x1e2106da, 0x20008211, 0x4905851e, 0x402005e4, 0xf841c582, 0xe6192105, 0x648caf98, 0xb0209a8f, 0x200f4742, 0x9af99a9b, 0x426b2049, 0x00210fd9, - 0x08bb7604, 0x45000435, 0x69005700, 0x17010000, 0x27333523, 0x07222315, 0x50011d06, 0x104d080d, 0x27342109, 0x15e20d19, 0x2105de62, 0xdd762627, - 0x61a41805, 0x077a4309, 0x8c432120, 0x71012610, 0x91519d4c, 0x08fe41a0, 0x0101212b, 0x30301f20, 0x0101201f, 0x200a8942, 0x08044221, 0x146c3124, - 0xc283611e, 0x4108b279, 0x20200817, 0x250f2141, 0x60606001, 0x96417010, 0x08082109, 0x5f825784, 0x00820820, 0xa2410b89, 0x17882209, 0x21448301, - 0x2441e0fe, 0x200f8f0f, 0x43851800, 0x0015280c, 0x002b0027, 0x444c0034, 0xec820c95, 0x37363208, 0x26272611, 0x011f2127, 0x2f060716, 0x06072301, - 0x013f2627, 0x17323336, 0x2733010f, 0x16070617, 0x26373617, 0x36353727, 0x1d171637, 0x22070601, 0x08ba5f27, 0x18323721, 0x361533af, 0x120748a6, - 0x5a060b15, 0x13150b06, 0x0e074809, 0x1516070f, 0x5cb8152a, 0x0a310eab, 0x1f110e07, 0x01011414, 0x0d1f1414, 0x01a0010b, 0x85141912, 0x908d3411, - 0x12070c15, 0x08120b0b, 0x0d90150b, 0x2a2a410d, 0x85160212, 0x1c2c2147, 0x60250783, 0x07021630, 0x070c5907, 0xf3820420, 0x0000022c, 0x4001c0ff, - 0x1500c001, 0x176c4500, 0x1417210a, 0x08794d18, 0x4b352621, 0x16230535, 0x4e171617, 0x3b2107fd, 0x09b07701, 0x2107b97f, 0x3b53012b, 0xe1881807, - 0x0d0e3308, 0x08080914, 0x0e0d1409, 0x24253640, 0x0d0d0101, 0xf9412f14, 0x41602005, 0x376405a3, 0x142f2806, 0x01010d0d, 0x58362524, 0xdb8305ab, - 0x1a1a1f23, 0x243b8315, 0x1f1a1a15, 0x231a8380, 0x18212027, 0x0cf96c19, 0x2306ae7d, 0x27202118, 0x97515c83, 0xc0012106, 0x2024cb82, 0x49002c00, - 0x870dbb41, 0x35232fa5, 0x35363732, 0x26273411, 0x1121012b, 0xd6531521, 0x19132008, 0x491bcc0f, 0x1b2205da, 0x9818291b, 0x01231165, 0x8500ff00, - 0x017022d3, 0x08ff590f, 0xc0210a8b, 0x25388201, 0x1b29c0fe, 0xc085011b, 0x06824020, 0x82400121, 0x80fe2134, 0x20066044, 0x082f5a01, 0x70010f26, - 0x0f01010f, 0x00204b86, 0x09db4a18, 0x29000828, 0x4e003c00, 0xd7825d00, 0x0e631919, 0x023b1522, 0x5b05d775, 0x06290b20, 0x13070607, 0x26272223, - 0xff531a3d, 0x27262407, 0x49233734, 0xb1450551, 0x1627230b, 0xae5f1517, 0x36353d07, 0x0790b837, 0x0701a001, 0x121b4038, 0xa0c00112, 0x23231908, - 0x01080829, 0x401b1212, 0x08781919, 0x8260c021, 0x83c020bc, 0x28012313, 0x00820127, 0xe3184020, 0x202012a2, 0xd784c783, 0x01900129, 0x07282807, - 0x83280801, 0x1e602532, 0x21011111, 0x4a185d83, 0xfe260898, 0x0e0909d8, 0x13838020, 0x08412f24, 0xe3181008, 0x302212b2, 0x4f830f01, 0x010f4024, - 0xff560c00, 0x00333c08, 0x004d0040, 0x0067005a, 0x00810074, 0x009b008e, 0x00b500a8, 0x010000c2, 0x44312726, 0x152006b4, 0x2a10505c, 0x011d0706, - 0x17161716, 0x72023b21, 0x232208be, 0x534c1335, 0x16332308, 0x5d4c0517, 0x82098205, 0x06272115, 0x83066c4c, 0x4c25200e, 0x33210a7c, 0x20338b25, - 0x20198b27, 0x8a338b17, 0x0706213e, 0x4d8b339a, 0x01e0012f, 0x60140e0d, 0x010d0e14, 0x16160240, 0x7b048402, 0x178205ff, 0x20000124, 0xc344a060, - 0x18702007, 0x210a0b59, 0x5918b0fe, 0x59180976, 0x39540a5f, 0x211a8505, 0x1161d0fe, 0x0f902209, 0x200c8701, 0xa3591890, 0x30012114, 0x10201689, - 0x10202c89, 0x01211589, 0x26878790, 0x02164830, 0x85481602, 0x45bd8405, 0x08840876, 0xc0fe9022, 0x57959c89, 0x5020848a, 0x6d8a2b89, 0x158ab08a, - 0x2b893020, 0x7020dc8a, 0x00221589, 0xf7620002, 0x002f2307, 0x4c18007a, 0x54180ddb, 0xeb7e0993, 0x23142105, 0x0d930119, 0x85181320, 0x272b073e, - 0x17060722, 0x17161706, 0x18313231, 0x220f47fb, 0x60260139, 0x332e05f4, 0x17163316, 0x35363732, 0x2f262736, 0x85183001, 0x16210b3c, 0x14227417, - 0x19052f21, 0x080fa801, 0x0a0b1426, 0x12060311, 0x090d0e11, 0x06010107, 0x12011409, 0x02031612, 0x020c0b17, 0x10021212, 0x1103030c, 0x02120704, - 0x132b0082, 0x06080d10, 0x13090701, 0x82111202, 0x0a182121, 0x00212184, 0xc1011901, 0x013b0822, 0x03020e38, 0x03111206, 0x04050104, 0x05040305, - 0x0b0a0506, 0x070d201e, 0x02120e02, 0x030f1202, 0x07010105, 0x01041112, 0x05010801, 0x05040703, 0x04010505, 0x201d0b0a, 0x8403060c, 0x59002021, - 0x8030086b, 0x2600c001, 0x92004d00, 0x06010000, 0x07063107, 0x25055241, 0x37262726, 0x59180239, 0xc057098f, 0x17162305, 0x0c571716, 0x27342105, - 0x8209f057, 0x33312509, 0x07160139, 0x4b052f47, 0x032005ef, 0x15204783, 0x2106ac44, 0x2382011f, 0x86140721, 0x05e86820, 0x17213082, 0x9f001915, - 0x05896208, 0x26227482, 0xa0183637, 0x35390833, 0x3b02a001, 0x2f3a583b, 0x221c0e0b, 0x0903040b, 0x06030101, 0x27060808, 0x35168301, 0x023b3b58, - 0x3d3e5ab8, 0x36530103, 0x27010236, 0x06070906, 0xf2820103, 0x04032d08, 0x0e1c220b, 0x493a2f0b, 0x04133636, 0x02121202, 0x02180a0c, 0x11121603, - 0x07091302, 0x0d080601, 0x04041310, 0x11040712, 0x100c0303, 0x0b211f84, 0x081f8317, 0x1201132a, 0x0101060a, 0x0e0d0907, 0x03061211, 0x010b0a11, - 0x32314b10, 0x06170102, 0x01010b06, 0x01070b0a, 0x09050301, 0x3b2c0e0b, 0x02351683, 0xcf4b3132, 0x56383809, 0x31060708, 0x2c3b4731, 0x05090a0f, - 0x083f8203, 0x010b0b29, 0x1706060b, 0x23240101, 0x12370139, 0x0e120202, 0x1f0c0702, 0x040a0b1e, 0x05050501, 0x05030803, 0x01010801, 0x82121004, - 0x03052205, 0x2421860f, 0x0b1e200d, 0x3821830b, 0x04050304, 0x11030505, 0x02020712, 0x0001000e, 0x01c0ff00, 0x00c00180, 0x0859512d, 0xfb502320, - 0x15332208, 0x06bc5816, 0x6c353721, 0x4e460abc, 0x14b02405, 0x4c010d0e, 0x502508e4, 0x140e0d01, 0x21129220, 0x1983c001, 0xd0201e89, 0x8d08087a, - 0x00002231, 0x218b830a, 0x8b820002, 0x00062808, 0x006e0067, 0x007c0075, 0x008a0083, 0x00980091, 0x250000aa, 0x07171637, 0x26172726, 0x35363527, - 0x23262736, 0x82230722, 0x8434200b, 0x1d062309, 0x0e820601, 0x07262327, 0x17141506, 0x4a0b8215, 0x162008cd, 0x15260e82, 0x33161706, 0xc1663f32, - 0x32333006, 0x013d3637, 0x16333736, 0x36371633, 0x832f3427, 0x084c6e0b, 0x37362527, 0x27070617, 0x22068507, 0x83272617, 0x20068677, 0x82188237, - 0x20068617, 0x838e8227, 0x107b7b1c, 0x52012d08, 0x41071530, 0x098c0803, 0x0a010b22, 0x090d0d0a, 0x083b2d01, 0x090e0e09, 0x012d3b08, 0x0a0d0d09, - 0x09220b09, 0x0a090e01, 0x010e090a, 0x0a232498, 0x89010a01, 0xc5fe2f26, 0x0f05241e, 0x07412b0d, 0x03083015, 0x61841c41, 0x2568302d, 0x0f0d2b1e, - 0x251d7704, 0x820c1005, 0x3114251b, 0x41400408, 0x05231282, 0x565d1d25, 0xf2210b6b, 0x223e822b, 0xab130c10, 0x8b092080, 0x20a6917f, 0x22828563, - 0x831d2567, 0x9378206f, 0x201b869e, 0x22b1839d, 0x6aa21507, 0x04200cfa, 0x2e08ef41, 0x003d0029, 0x00530048, 0x022b1300, 0x1927031d, 0x780838b6, - 0x33250579, 0x17161716, 0x26038215, 0x2b033d07, 0x41350303, 0x152105ca, 0x08ce5531, 0x18133121, 0x0814d88e, 0x2447d727, 0x1703600c, 0x0e0d0116, - 0x0e324d14, 0x310f1313, 0x0d0e144d, 0x03171601, 0x47240c60, 0x11dad752, 0xda111515, 0x08766701, 0x5b7ab020, 0x2a098909, 0x27096001, 0x1d465928, - 0x832c1111, 0x0b25233c, 0x5083250b, 0x11112c34, 0x2859461d, 0xa0fe0927, 0x0d0da1ce, 0x121bcea1, 0x4a830112, 0x24054164, 0x010f0f01, 0x08815d40, - 0x67460020, 0x001a250a, 0x05000025, 0x29058656, 0x37363736, 0x011f3233, 0x94823b16, 0x836a1620, 0x06252105, 0x081c4e18, 0x18c00121, 0x26096f4b, - 0x1a131a76, 0x87951b13, 0xf8fe2665, 0x16020216, 0x20048490, 0x20768420, 0x821a8340, 0x210c8323, 0x0c8300ff, 0xcd68d020, 0x237f8b08, 0x0034001b, - 0x9506bf59, 0x16252184, 0x680ab368, 0x02210bcb, 0x092a4100, 0x928a0983, 0x83e8fe21, 0x8340206b, 0x8940208e, 0x08075409, 0x8805be4b, 0x8e28209c, - 0x4b318427, 0x023106a7, 0x00c00140, 0x00290017, 0x13000075, 0x16213736, 0x06d85317, 0x2617142a, 0x3d26012f, 0x37262701, 0x46074b46, 0x7b180937, - 0x37220779, 0xd75b2736, 0x7807200a, 0x172305ad, 0x6f140716, 0x262708c6, 0x32170607, 0x46331631, 0x27221021, 0x5a822631, 0x3734313a, 0x01190b04, - 0x0a0b19b0, 0x273d6b0f, 0x03120127, 0xb70d4002, 0x3c020a0f, 0x080fca4a, 0x0301a731, 0x0e0c0a09, 0x0e02050f, 0x0e020909, 0x0909010f, 0x12040115, - 0x0f020e0e, 0x01010608, 0x0a080301, 0x0303100e, 0x0d03050f, 0x0b020201, 0x850f010d, 0x11032422, 0x84100f10, 0x16a93821, 0x17160101, 0x2f0d8313, - 0x2429412f, 0x0a300102, 0x13e04f10, 0x4aa7fe17, 0x213f0fe7, 0x04040201, 0x050e0e02, 0x0f090202, 0x0a0f0101, 0x1c090501, 0x03070817, 0x04040401, - 0x82010401, 0x0601211e, 0x0e267182, 0x0401060e, 0x22840b03, 0x0a040227, 0x0809181b, 0x21218303, 0x33630103, 0x00692e0d, 0x00820076, 0x17161300, - 0x36353315, 0x26068f37, 0x1732021d, 0x89011d16, 0x07142604, 0x35012b06, 0x21018323, 0x01823315, 0x2705047e, 0x07060706, 0x33352315, 0x23210182, - 0x29018415, 0x3d262722, 0x36373401, 0x04883533, 0x36023d2a, 0x07221337, 0x011d0631, 0x27231582, 0x82272326, 0x06b34572, 0x16781529, 0x16022802, - 0x83300216, 0x50098404, 0xb744051f, 0x20402105, 0x84510083, 0x84502008, 0x0684600e, 0x82090921, 0x020e2323, 0x06828816, 0x0c824020, 0x304d2020, - 0x1bc02007, 0x84149902, 0x2022831e, 0x202b8260, 0x25338260, 0x606080a0, 0xdb53a080, 0x85302008, 0x831c860f, 0x26678320, 0x16082040, 0x82f0fe02, - 0x30302115, 0x80823382, 0xdf489885, 0x01002d08, 0x004200c0, 0x006e005c, 0x36333700, 0x21054e64, 0x89181732, 0x6d4808a5, 0x011d2305, 0x1b8d1716, - 0x2b053c62, 0x0706010f, 0x27222306, 0x26012f26, 0x2205c153, 0x82310706, 0x14152312, 0x01821617, 0x82373621, 0x34352301, 0x01822627, 0x61461520, - 0x2d232710, 0x0b0c010f, 0xf9491111, 0x3f098f05, 0x0f2d0f01, 0x56090a0a, 0x2e2a2920, 0x20292a2e, 0x0a0a0956, 0x191edd0f, 0x05050c18, 0x1e19180c, - 0x21460989, 0x01a0230b, 0x6560c80f, 0x12842505, 0xa4120202, 0xa4200b85, 0x84200b83, 0xc8220b85, 0x4882010f, 0x5f0a0d2b, 0x13131222, 0x0a5f2212, - 0x2966820d, 0x0c121202, 0x06080806, 0x2983120c, 0xca4f0b89, 0x05f24506, 0x00820020, 0x1b000236, 0x2402bfff, 0x3600c001, 0x00006d00, 0x011f1601, - 0x16173637, 0x67076860, 0x40180528, 0x45510bf1, 0x26272505, 0x013f3637, 0x2f830583, 0x07153727, 0x2f060706, 0x87278301, 0x22458539, 0x82373637, - 0x87278551, 0x26272333, 0xb060013f, 0x01340805, 0x18071820, 0x1113144c, 0x175c2709, 0x54150306, 0x0d0a0f42, 0x01085a17, 0x350f1616, 0x16160f35, - 0x175a0801, 0x41100a0d, 0x05031554, 0x09275c18, 0x4c141311, 0x05263282, 0x0e0f1004, 0xe082080f, 0x12114008, 0x02040e11, 0x10110d0b, 0x02010d0d, - 0x1011090b, 0x01020b0a, 0x12100d0c, 0x03020b0d, 0x1013110f, 0x08070809, 0x0f100e0f, 0xc0010405, 0x35591701, 0x16100e0c, 0x17030854, 0x41270b18, - 0x82141512, 0x18660856, 0x4c130709, 0x0907134c, 0x05185c18, 0x41121514, 0x17180b27, 0x16540803, 0x350c0e10, 0x9c011759, 0x05061012, 0x0f110b09, - 0x01020e0f, 0x10110708, 0x04050d0c, 0x12110a0b, 0x01010d0f, 0x11120f0d, 0x05040b0a, 0x11100c0d, 0x02010807, 0x110f0f0e, 0x0605090b, 0x00001210, - 0xff100001, 0x013002c0, 0x009a00c0, 0x04413700, 0x37163005, 0x16373613, 0x3f161317, 0x16173601, 0x1806010f, 0x52079072, 0x262306a5, 0x64361707, - 0x058205d5, 0x34353622, 0x17213583, 0x06f56116, 0x3233172a, 0x14313017, 0x14071415, 0x17223982, 0xf7511633, 0x33372d09, 0x26012f36, 0x34352635, - 0x013b3635, 0x3f830b83, 0x4205e36d, 0x2b8205bc, 0x37214783, 0x213a8226, 0x7e822627, 0x34202f83, 0x272d0782, 0x040315f6, 0x041d0604, 0x07010a01, - 0x2e048207, 0x04061d04, 0x02150304, 0x06062604, 0x84020426, 0x1a45081d, 0x2e020104, 0x02011d1d, 0x1a0b0a27, 0x03080f0f, 0x29090708, 0x010c1b1c, - 0x09051c03, 0x0501061a, 0x09052e02, 0x2302080f, 0x51514040, 0x02234040, 0x05090f08, 0x0105022e, 0x05091a06, 0x0c01031c, 0x09291c1b, 0x2e368207, - 0x0b1a0f0f, 0x0102270a, 0x022e1d1d, 0x8c1a0401, 0x20842169, 0x132d0e83, 0x1a010402, 0x07010107, 0x0104e6fe, 0x269a8314, 0x07020320, 0x82060602, - 0x84032004, 0x115d0821, 0x093e0402, 0x39302322, 0x140c0c25, 0x19231d1e, 0x08080b17, 0x29291d05, 0x1c030332, 0x05060308, 0x02191a05, 0x03082f01, - 0x29440801, 0x29010129, 0x01084429, 0x022e0902, 0x051a1902, 0x09020605, 0x3203031c, 0x051d2929, 0x170b0808, 0x1e1d2319, 0x250c0c14, 0x22233039, - 0x02053d09, 0x52718e11, 0x2d220dab, 0xbf5eab00, 0x32332108, 0x2537ab18, 0x15062723, 0x27018230, 0x06071617, 0x012f2223, 0x83074844, 0x2627270d, - 0x013f3435, 0x01823134, 0x06072728, 0x013f2627, 0x26822726, 0x03830720, 0x1617272c, 0x36373233, 0x3637012f, 0x05833435, 0x23262729, 0x07232231, - 0x70233427, 0x15270a0f, 0x07011f14, 0x53063130, 0x3f2605e3, 0x27260701, 0x03833726, 0x83070621, 0x00272170, 0x246fab18, 0x155a3908, 0x01042505, - 0x02030503, 0x1d1d0a18, 0x1d1d2929, 0x0302180a, 0x03020303, 0x06150525, 0x1b040406, 0x040d1f10, 0x08161304, 0x0d021f0b, 0x02020101, 0x12090101, - 0x09120303, 0x0e2b0b85, 0x01030405, 0x03020c05, 0x83080202, 0x82082016, 0x01013116, 0x1f020b01, 0x1316080b, 0x1f0d0404, 0x04041b10, 0x2593ab18, - 0x1016ea34, 0x20010110, 0x02050504, 0x18182615, 0x18180101, 0x59821526, 0x22088e82, 0x11010120, 0x0505150f, 0x201a0605, 0x17171511, 0x1f1f180f, - 0x01092308, 0x0f020202, 0x03030103, 0x820e0401, 0x700a250a, 0x086f0404, 0x03210882, 0x83d3820e, 0x2d8d8514, 0x1e082107, 0x170f191f, 0x20111517, - 0xd482051b, 0x0808eb59, 0xbf01402c, 0x16000400, 0x3e003300, 0x5a004900, 0x17130000, 0x37072737, 0x16051736, 0x15311517, 0x25270605, 0x3736013d, - 0x15251325, 0x8d690607, 0x20148306, 0x07ab6926, 0x16053523, 0x05a17137, 0x36371627, 0x3605012f, 0x1a871827, 0x26072107, 0x079c6418, 0x2f231284, - 0x82e43c01, 0xdb200800, 0x00010a09, 0xe5fe0115, 0xe5fe0505, 0x00011601, 0x35120117, 0x0f05030d, 0xff15012b, 0xff0a0a00, 0x2b2f1c82, 0x0d03050f, - 0x0e120135, 0x060eb90e, 0x83400d03, 0x0140220e, 0x26258360, 0x06030d40, 0x83e0400e, 0x0e272416, 0x820e260f, 0x0527260d, 0x48012704, 0x08008247, - 0x03037624, 0x10170750, 0x01015915, 0x17101559, 0xf6fe5007, 0x05112e55, 0x0d030d0f, 0x50081789, 0x08500202, 0x0c828917, 0x11050f2c, 0x0505552e, - 0x0f0d0302, 0x04841405, 0x24831e20, 0x04841420, 0x10830a20, 0x05050c23, 0x250d830c, 0x0c01010c, 0x9b6c0000, 0x01213606, 0x00f400c0, 0x000601fd, - 0x1f360100, 0x39071601, 0x14070605, 0x21038307, 0x7c751530, 0x2f0b8205, 0x30171617, 0x39171431, 0x010f1603, 0x36013f15, 0x2405c342, 0x17363726, - 0x2a0b8207, 0x3b023907, 0x16331401, 0x82313033, 0x6d2b8231, 0xd251059d, 0x07313006, 0x32023923, 0x17272627, 0x07012f06, 0x83333617, 0x2f26231d, - 0x28191501, 0x362209d0, 0x71823537, 0x3627262b, 0x37173237, 0x27060727, 0x273b8237, 0x23023937, 0x22353027, 0x26203982, 0x69820384, 0x03833720, - 0x32373228, 0x39013b35, 0x42793402, 0x2f928205, 0x17141506, 0x35021f16, 0x39372627, 0x34373604, 0x34232682, 0x76353037, 0xe147075f, 0x04392405, - 0x82013f26, 0x05275866, 0x08504518, 0x0a160127, 0x0509300a, 0x3d008201, 0x0f1a0102, 0x1a0f1010, 0x01020301, 0x242a0905, 0x12122029, 0x0706031a, - 0x05070b08, 0x20820201, 0x052f0282, 0x15140f07, 0x0101100f, 0x1413100f, 0x8404070f, 0x02023e16, 0x0a080a07, 0x032d204c, 0x02021603, 0x28041416, - 0x0909010f, 0x09090e0e, 0x05280f01, 0x24138313, 0x202d0403, 0x2124824c, 0x31850207, 0x0f07042b, 0x0f101314, 0x0f100101, 0x84478215, 0x2b5e847f, - 0x0607080b, 0x12121b02, 0x2a222a20, 0x2083968f, 0x1a30092b, 0x1b01011b, 0x0b01010b, 0x26088748, 0x0808bc01, 0x820c0828, 0x020223a3, 0x9b820103, - 0x20191a3f, 0x0f1a1920, 0x03050201, 0x080c0102, 0x1c181324, 0x27222217, 0x0a042830, 0x0e05080a, 0x3115820a, 0x05030101, 0x1e131409, 0x2228281e, - 0x0e191a22, 0xe0840407, 0x0c09022a, 0x162b0507, 0x16020120, 0x1326b682, 0x13091d1c, 0x0082090e, 0x09130e25, 0x84131c1c, 0x20012715, 0x07052b16, - 0xc984090c, 0x07040231, 0x2319190e, 0x1e282822, 0x0914131e, 0x82010305, 0x0a023158, 0x0a08050e, 0x3028040a, 0x17222227, 0x2413181c, 0x282a9c9a, - 0x23231277, 0x18181d12, 0x08876a1d, 0x0c0bbe18, 0x0000362a, 0x021f3613, 0x07161715, 0x2905986a, 0x3f35013f, 0x15330701, 0x03893533, 0x30331623, - 0x3c208a31, 0x3d323132, 0x1010f001, 0x143004ac, 0xfe180705, 0x05071840, 0xac043014, 0x402840b0, 0x2d038230, 0x12300101, 0xfe170805, 0x05081740, - 0xb2823012, 0x0808bc34, 0x1b010262, 0x0117170d, 0x0d171701, 0x6202011b, 0x0084c0dc, 0x2001c423, 0x0591730e, 0x01200e25, 0x580000c4, 0x402c0617, - 0x1300c001, 0x38002b00, 0x5d004b00, 0x7f4ba182, 0x37362307, 0x854b3736, 0x17212105, 0x16241386, 0x15171617, 0x22051051, 0x18262734, 0x200e3370, - 0x82248505, 0x82362022, 0x201f84d7, 0x21e78205, 0xe6592f26, 0x32213505, 0x013d3637, 0x09090e60, 0x12120160, 0x0909e01b, 0x80c0fe0e, 0x1b240e83, - 0xc0011212, 0x22059a41, 0x55f0c0fe, 0xfe21096f, 0x25148250, 0x0303029b, 0x2c829b02, 0x0100ff29, 0x0d0b8820, 0x82880b0d, 0x0001210c, 0x01211a82, - 0x210982c0, 0x3e8320c0, 0xa0205683, 0x20200d82, 0x80205a83, 0x4f830882, 0x5f564020, 0x82202009, 0x730d2212, 0x21008201, 0x39820d73, 0x07655527, - 0x65070101, 0x2174858b, 0x0082008b, 0x6f000c21, 0x143e070f, 0x3e002900, 0x68005300, 0x92007d00, 0xeb00dc00, 0x0901fa00, 0x00001801, 0x32333613, - 0x9c19011f, 0x3f220c9e, 0x14933301, 0x93371721, 0xbd139315, 0x05372429, 0x83311732, 0x16172590, 0x3435013b, 0x17207583, 0xa1410e82, 0x250e8706, - 0x07060706, 0x846e1523, 0x22022208, 0x06424c27, 0x26233525, 0x83272627, 0x013b2137, 0x02234884, 0x82013d23, 0x270da945, 0x08031533, 0x03120308, - 0x22052244, 0x8d601203, 0x124e210e, 0x72200f8c, 0x12200d8c, 0xfd211dac, 0xc29118dd, 0x18098209, 0x2509a58b, 0x291b1b01, 0x1c8580c0, 0x85a0a021, - 0x5b802007, 0x60200727, 0x8706f14d, 0x20368307, 0x87ac8240, 0xb901270f, 0x062b0707, 0x36850107, 0x06070123, 0x200f8f2b, 0xc211902b, 0x824e2021, - 0x86b28382, 0x86a020ae, 0x2206830e, 0x6f1b1b29, 0x40200d0b, 0xdf86e083, 0x20206022, 0x2782b983, 0x0022099a, 0xcb420400, 0x00252c08, 0x00610051, - 0x01000072, 0x82161732, 0x39302201, 0x05d74602, 0xe9180620, 0x362707c3, 0x30013937, 0x82373631, 0x03332101, 0x4f062e77, 0x21200899, 0x1d213582, - 0x05d04f01, 0x2c05dc51, 0x012f2635, 0x15070607, 0x1f360323, 0x2b4a8201, 0x3523011d, 0x3f363734, 0x15330701, 0x14331682, 0x012b0617, 0x27262726, - 0x90013511, 0x211a0508, 0x82042921, 0x012d3900, 0x9cfe1d01, 0x2d01011d, 0x05040403, 0x1a212129, 0x02700805, 0x30021616, 0x41067841, 0x30200608, - 0x33081383, 0x19160140, 0x40011619, 0x100a0ada, 0xa00e0f19, 0x10190f0e, 0x021ea046, 0x400c0a06, 0x010d0e14, 0x2206c001, 0x021b191a, 0x1f030303, - 0x1e1d2c37, 0x031f372b, 0x1b2c0c82, 0x06221a19, 0x164800fe, 0x48160202, 0x820a5041, 0x08138561, 0x131e3a26, 0x1e131515, 0x06fb013a, 0x1c140c06, - 0x0202201d, 0x141c1d20, 0x12899b0c, 0x0d0e8025, 0x0e0d0105, 0x10200114, 0x280caf4f, 0x01b5000c, 0x01000006, 0x05104d26, 0x36013f27, 0x3605012f, - 0x18501833, 0x1f14240a, 0x53171601, 0x06230591, 0x47070607, 0x263805df, 0x22353427, 0x26013935, 0x37170607, 0x39220706, 0x15301503, 0x15141532, - 0x29057c41, 0x37361716, 0x27343736, 0x50823633, 0x41013b21, 0x23200764, 0x34263c85, 0x23313431, 0x01823031, 0x0623262a, 0x23261707, 0x15023926, - 0x14220d82, 0x41823031, 0x06150623, 0x20458217, 0x09745c33, 0x9b820620, 0x18012b21, 0x84098145, 0x873f201f, 0x3306217b, 0x16227c82, 0x34833015, - 0x2f092a50, 0x30333637, 0x39333531, 0x26273002, 0x35361727, 0x24056351, 0x07221522, 0x85738214, 0x833020c6, 0x22312b8f, 0x7b010439, 0x0a100b0b, - 0x0585100a, 0x0cf8fe2c, 0x0d0e1411, 0x0e0d0101, 0x06822214, 0x16080823, 0x08917c09, 0x1919262e, 0x03060f0e, 0x0d050102, 0x0b10010e, 0x01330882, - 0x11100503, 0x36352020, 0x11012425, 0x1b1c2717, 0x41050e09, 0x262a05f4, 0x0103080d, 0x0d030101, 0x2985030c, 0x1606072e, 0x1b292817, 0x1b01011b, - 0x2805291b, 0x0d312a82, 0x20010b31, 0x1d26301f, 0x0701020b, 0x0b0d0c09, 0x0af447a6, 0x0604012a, 0x15150d0e, 0x0d1b2f1c, 0x2905bc48, 0x17100403, - 0x0d0a0909, 0x5682090d, 0x0804012b, 0x1a211a10, 0x0301080d, 0x20008201, 0x82bf88bb, 0x0aa521c5, 0x24091462, 0x15180202, 0x08246c01, 0x110d0c26, - 0x04060c11, 0x0d243082, 0x020e0402, 0x01290782, 0x06010201, 0x1c1b150a, 0x24268216, 0x23362524, 0x209d821d, 0x06424409, 0x0a170324, 0x25820408, - 0x0c010c23, 0x822c8603, 0x17162376, 0x24821212, 0xef5f2920, 0x16092807, 0x201f301a, 0x83150101, 0x20c983c1, 0x06884967, 0x032b5e84, 0x0e0e0a05, - 0x03010b0b, 0x83060811, 0x82c58344, 0x090a21c3, 0x0427c583, 0x02010b04, 0x8205050d, 0x0897425c, 0xc001803b, 0xf8000800, 0x00000101, 0x06272613, - 0x36171607, 0x07143337, 0x32333617, 0x06e57217, 0x23079f42, 0x31302322, 0x0e821f82, 0x82011f21, 0x32373204, 0x35373637, 0x37363736, 0x07061716, - 0x07060722, 0x05b34215, 0x15204482, 0x03821f82, 0x22054e52, 0x82323316, 0x05df4a24, 0x23212182, 0x212a8230, 0xbf4a2306, 0x232b8205, 0x16171617, - 0xb0424284, 0x4b198305, 0x26210521, 0x835a8227, 0x21878239, 0x13843114, 0x27262324, 0x56183930, 0x32200848, 0x5c853a83, 0xdd4a2682, 0x83c38305, - 0x82352048, 0x822d8204, 0x20248241, 0x26628215, 0x36371633, 0x8436013f, 0x7a27204f, 0x19820920, 0x87331721, 0x18d020f8, 0x270878ac, 0x251b1010, - 0x0f101b25, 0x3809cc41, 0x031b1212, 0x141f0f02, 0x01010809, 0x0f080902, 0x05040304, 0x0e0d0708, 0x05c54a1a, 0x1b250b85, 0x01060511, 0x05894102, - 0x0506042a, 0x170b0a03, 0x140f100b, 0x13212283, 0x31168215, 0x100e0d0a, 0x0611111c, 0x23180406, 0x0f0b0906, 0x1a830a0e, 0x16152626, 0x08060c0d, - 0x06250082, 0x16150d0c, 0x33138326, 0x0b0e0f0a, 0x18230609, 0x10060505, 0x14211c12, 0x13150102, 0x14221783, 0x53820f10, 0x05030a25, 0x82040406, - 0x2b6c8250, 0x1b110506, 0x070d0e1a, 0x03040508, 0x0b872183, 0x080f0423, 0x258a8209, 0x1f140908, 0xe76e020f, 0x21e6880c, 0x917f8001, 0x11192707, - 0x200a0a20, 0xe4571911, 0x29078307, 0x0b19151e, 0x0201020a, 0x3f82090c, 0x010d052b, 0x01100d0c, 0x02161602, 0x290b8703, 0x01070611, 0x01050502, - 0x25820302, 0x0e0a0d28, 0x070d0405, 0x22830606, 0x010c0132, 0x06050601, 0x0e131111, 0x100d130f, 0x0f101814, 0x1a2c3a85, 0x151a1d18, 0x1a150101, - 0x031a181d, 0x0f2f2984, 0x10141810, 0x0e01130d, 0x1111130e, 0x82010e03, 0x2917833a, 0x0d070606, 0x0b0e0504, 0x0082020f, 0x0205052e, 0x11060701, - 0x0d100102, 0x050d010c, 0x0b873885, 0x0c090f22, 0x0a247e82, 0x1e15190b, 0x22087943, 0x871b1212, 0x06974ad9, 0xc0010036, 0x0d000400, 0x1b001200, - 0x00003600, 0x16073537, 0x35372717, 0x2405c85d, 0x36152705, 0x06f4443f, 0x37171523, 0x96981806, 0x5ee03818, 0x87873628, 0x012d2c46, 0x25011801, - 0x2928365e, 0x2c2d0119, 0x18598746, 0x3d17465e, 0x234d7903, 0xae6e5e09, 0x4934330d, 0x4d322a35, 0x32230979, 0x3449352a, 0x6eae0d33, 0xed18485f, - 0x0022165c, 0x73470300, 0x00b92f06, 0x0029001e, 0x13000035, 0x07060715, 0x8f7f3315, 0x2a0a8208, 0x35012f26, 0x26012f34, 0x8406010f, 0x1716261c, - 0x35331716, 0x055a6e07, 0x1d823520, 0xe0331525, 0x64011629, 0x602d08f9, 0x09291601, 0x4c0b0b4c, 0x0118c709, 0x75f01801, 0x6d53250f, 0xe51b0e18, - 0x2908d57b, 0x0e1be560, 0x090d6d18, 0x0282094c, 0x18dd0d21, 0x20136cf0, 0x26a38204, 0x01c001e0, 0x821500a0, 0x003d22a3, 0x24a58251, 0x06310706, - 0x09a61807, 0x2726260a, 0x17212726, 0x05564a32, 0x0b2bdb18, 0x37343725, 0x46333631, 0x222408ab, 0x013d2627, 0xd2182793, 0x4c18149c, 0x2d4a0dca, - 0x18058505, 0x660d0b58, 0xc0201491, 0x86066d45, 0x4a4b8606, 0xc0200601, 0x0ec4051a, 0x00820020, 0xcb63e792, 0x06212205, 0x21ec8c07, 0xfd821407, - 0xb9182b20, 0x01240852, 0x15161732, 0xc276d384, 0x051c4b08, 0x01212793, 0x133d67c0, 0x927dabac, 0xc0fe2109, 0x2008115c, 0x262b4140, 0x022de782, - 0xc0ff2000, 0xc001a001, 0x3e001100, 0x06af6400, 0x2b0b9565, 0x17161707, 0x36013f16, 0x26273637, 0x2905a079, 0x06072227, 0x1706010f, 0xb3181f16, - 0x1f820a13, 0x37012f22, 0x43097742, 0x773d0794, 0x11110a17, 0x020d580d, 0x100b0a01, 0x1a380d10, 0x13182a19, 0x0f300c13, 0x361a0707, 0x05e55757, - 0x0a1cd026, 0x2d741507, 0x4305977e, 0xc8260bcd, 0x02030d20, 0x3883480b, 0x2d2c4083, 0x0c012124, 0x1e5d140c, 0x27151e1f, 0x25058258, 0x121b1a01, - 0xc7845a56, 0x22077b4d, 0x82630031, 0x838f82c7, 0x1d1622a0, 0x25a68201, 0x14151716, 0x807c0607, 0x08e24c06, 0x84052559, 0x36372315, 0xe6822337, - 0x3e59d784, 0x059b7c0f, 0x3d26272a, 0x013f3601, 0x34353736, 0x36390583, 0x01171617, 0x0705055f, 0x78080c07, 0x4f0a010d, 0x0d0c0115, 0x192ba90f, - 0x08ea501a, 0x05010f2d, 0x02010257, 0x3e0b0302, 0x8202030b, 0x05572109, 0x3c05915b, 0x09090e0e, 0x2b1a1901, 0x0d0c0fa9, 0x0a4f1501, 0x08780d01, - 0x0507070c, 0x03bb0105, 0x342f8201, 0x1914b40a, 0x1b040b49, 0x10601608, 0x2d040a09, 0x2d21220c, 0x2c338276, 0x500e0909, 0x0f01010f, 0x97090b55, - 0x22798204, 0x8207070d, 0x04052502, 0x550a0a97, 0x5b761783, 0x2d763306, 0x2d0c2221, 0x100a0904, 0x1b081660, 0x19490b04, 0x8084b314, 0xd7420320, - 0x01c02107, 0x002d0182, 0x002c0020, 0x00630041, 0x17160100, 0x060b5e31, 0xae7e2120, 0x35332a07, 0x35262722, 0x36373411, 0x059d683b, 0x49373221, - 0x273305e1, 0x1f06010f, 0x3f140701, 0x35161701, 0x2f363727, 0x850f2602, 0x21218240, 0x14632627, 0x37362906, 0x17323736, 0x27363716, 0x18058063, - 0x22093649, 0x8520e0fe, 0x250585ca, 0xff200120, 0xb7680100, 0x094e2906, 0x12050917, 0x14140905, 0x24080684, 0x06060917, 0x252401b2, 0x051f2736, - 0x0a060302, 0x1b1a2909, 0x1a1b0101, 0x060a0929, 0x1f050203, 0x24253627, 0x68ca8201, 0xea3520d4, 0x08040116, 0x030a160f, 0x0a030c0c, 0x03080f16, - 0x08081602, 0x2c3d832a, 0x06060414, 0x1b010201, 0x1b28281b, 0x2408821b, 0x14030606, 0x20728301, 0x0b277700, 0x00005f27, 0x17070625, 0x05d97f16, - 0x70012f21, 0x16230903, 0x84171617, 0x411b64e2, 0x7f270133, 0x0d0a0909, 0x357e0a0d, 0x3b3b5846, 0x3b3b0202, 0x20078358, 0x3cf263bc, 0x3546f023, - 0x05094a7e, 0x67647f20, 0x205a8309, 0x3fc86368, 0x77084b4a, 0x2e2205ab, 0x25414000, 0x4231201f, 0x1621050b, 0x21018217, 0x01823637, 0x52182320, - 0x01211004, 0x170641a0, 0x16018033, 0x17222217, 0x18020116, 0x0b0b1318, 0x02181813, 0x0b034630, 0x2020e898, 0x3c833483, 0x28272629, 0x160b0b16, - 0x42262728, 0x13430b80, 0x83022008, 0x001636c7, 0x00350023, 0x17000042, 0x3f363526, 0x013d3601, 0x0f061523, 0x05af4a01, 0x013f3226, 0x34353303, - 0x07eb0319, 0x8c171521, 0x3736231a, 0xdf772335, 0x23240805, 0x07060706, 0x0faf3315, 0x0d403201, 0x401901a0, 0x1b010125, 0x1a20291b, 0x0ba02f15, - 0x14600f0c, 0xc0010d0e, 0x7325168a, 0xc0c00132, 0x07646901, 0x1c1dc03b, 0x30273f21, 0x9090100a, 0x1e301320, 0x1b1b292f, 0x01101301, 0x1216109d, - 0x21248308, 0x178a2010, 0x3f275724, 0x8c6920d0, 0x45102008, 0x402b0807, 0x2000c001, 0x00004a00, 0x51373601, 0x012108b4, 0x21988203, 0xe243012f, - 0x013b2807, 0x13011f16, 0x18333617, 0x2007f6a8, 0x2a8e1817, 0x2223230a, 0xc359012f, 0x26272109, 0x0124f682, 0xe0180721, 0x27053a41, 0x16066ac7, - 0x2c670b15, 0x402b0d85, 0x5b490a13, 0x0d0d0a68, 0x4229290a, 0x2a21056b, 0x05ca422a, 0x01220f8b, 0x1a4517a8, 0x58fe2606, 0x13010315, 0x05bd41ce, - 0x92110127, 0x09d16c01, 0x89329309, 0x00002852, 0xff200002, 0x821d02c0, 0x002628d7, 0x37000050, 0x84313736, 0x17322202, 0x21a78216, 0xb2462326, - 0x83322007, 0x068544ee, 0x25272622, 0xe882dd85, 0x16171626, 0x1506010f, 0x3d492d83, 0x26272405, 0x8234013f, 0x3637230a, 0x0282013f, 0xcb492020, - 0x2c322705, 0x0d03020b, 0x81430708, 0x08072707, 0x0b02030d, 0xb449322c, 0x77260806, 0x03060603, 0x4705021f, 0x04020106, 0x010c0333, 0x3f060405, - 0x063f0404, 0x0c010405, 0x02043303, 0x05470601, 0x527a1f02, 0x05122306, 0xdc670d0d, 0x0d0c2308, 0x63851205, 0x05772008, 0x01054005, 0x0605010a, - 0x05033204, 0x03040646, 0x02022103, 0x04030321, 0x03054606, 0x84060432, 0x0040291c, 0x10000800, 0xf001c0ff, 0x033bf382, 0x37000a00, 0x3f003b00, - 0x47004300, 0x00004b00, 0x2f330725, 0x17072302, 0x44333733, 0x2b250597, 0x07060701, 0x07dd4126, 0x27013f2c, 0x37343526, 0x37013b36, 0xfd823736, - 0x3e050342, 0x1727010f, 0x012f2337, 0x23073307, 0x010f3717, 0x011f2733, 0x94012337, 0x21152a15, 0x82367a36, 0x35423202, 0x0f0b0b06, 0x180d386e, - 0x6e380d18, 0x060b0b0f, 0x21118535, 0x11840c39, 0x0b0a102f, 0x15363605, 0x1b642a15, 0x2a9a361b, 0x22008215, 0x8279152a, 0x228a240b, 0x82583622, - 0x09572200, 0x2523820b, 0x0101135c, 0x49825c13, 0x57090b22, 0x47821182, 0x01145b25, 0x855b1401, 0x23582e11, 0x2c2c3823, 0x8e232338, 0x2c5a2222, - 0x0b6b522c, 0x2a001a32, 0x53003a00, 0x36010000, 0x1716011f, 0x012b011d, 0x20065750, 0x250b8306, 0x3f36013d, 0x5e181301, 0x1d22071f, 0xf3820601, - 0x1101232e, 0x26272623, 0x3f343527, 0x32333601, 0x2008d182, 0x23010f26, 0x07011f06, 0x17331706, 0x33013f16, 0x37012f36, 0x27232736, 0x0a0a3601, - 0x10011c79, 0x05794270, 0x0110703a, 0x1cca791c, 0x05070705, 0x12010c40, 0xfe401b12, 0x121b4080, 0x400c0112, 0x1c2d1383, 0x100707c7, 0x10040b20, - 0x200b0410, 0x280b8b10, 0x0808bc01, 0x72251865, 0x074753e8, 0x2572e82f, 0x04fe6518, 0x05200b01, 0x120e4705, 0x23448384, 0xf5fe0b01, 0x84315483, - 0x05470e12, 0x08792005, 0x0a021c08, 0x020a1c1c, 0x2009891c, 0x20008200, 0x0867530b, 0x17001238, 0x50002b00, 0x5b005400, 0x63005f00, 0x6b006700, - 0x00006f00, 0x86751117, 0x16112207, 0x05544f17, 0x11210126, 0x22371121, 0x2207754b, 0x72373233, 0x232a050e, 0x013f3401, 0x36352627, 0x3c563337, - 0x16332b05, 0x010f1417, 0x06151617, 0x9f5d2307, 0x26233105, 0x23371727, 0x33172717, 0x07232737, 0x27330717, 0x37210d82, 0x20078227, 0x21178407, - 0xfe723307, 0xfea02411, 0x69800180, 0xb7510877, 0x74fe3307, 0x021d1c03, 0x1f391101, 0x060c0c06, 0x0210391f, 0x0f8d1d02, 0x2a157c33, 0x461e4115, - 0x1f461e1e, 0x11211091, 0x11102111, 0x23128260, 0x21101160, 0x21210a82, 0x08b05720, 0x2a06ad4a, 0x40fec001, 0x0920c001, 0x88fe0e09, 0x090e3711, - 0x05c6fe09, 0x05303104, 0x36021005, 0x02360a0a, 0x30050510, 0x0d880431, 0x24243624, 0x00823470, 0x1c1c182e, 0x3c1c1c4c, 0x1c3c2424, 0x1c1c681c, - 0x240abf47, 0x0048001f, 0x05be7700, 0x2d0c2559, 0x37363736, 0x23060735, 0x012f2221, 0x625e1715, 0x36372405, 0x7221013d, 0x23821151, 0x83060721, - 0x013b2916, 0x0e0d0100, 0x60401014, 0x102c0182, 0x010d0e14, 0xfe1a1947, 0x47191af4, 0x20070e64, 0x055c4200, 0x8706e448, 0x012022c8, 0x202c8370, - 0x83008440, 0x18502641, 0x50180808, 0x07804cd0, 0xd1460787, 0x4e00200b, 0xc029080f, 0x91008900, 0x00009d00, 0x26b28201, 0x17323336, 0x82011f16, - 0x20078202, 0x05256117, 0x012b0623, 0x21128415, 0x01821716, 0x15161524, 0x01830706, 0x16822220, 0x2005c651, 0x94481823, 0x220a9609, 0x82362726, - 0x2335215c, 0x23052351, 0x35342726, 0x362b0f83, 0x3f36013f, 0x23013d02, 0x83262722, 0x827f8401, 0x82172004, 0x023b3259, 0x3b150535, 0x012b3503, - 0x01012b31, 0x02021919, 0x3c008205, 0x33190202, 0x0203173d, 0x01060305, 0x04020201, 0x06070907, 0x1d262006, 0x03040302, 0x2d118204, 0x06040403, - 0x20270302, 0x0201122d, 0xef852816, 0x068ca020, 0x0216282c, 0x202d1201, 0x06020327, 0xcd520404, 0x04230805, 0x261d0302, 0x08070520, 0x03040708, - 0x06010101, 0x03020503, 0x87333d17, 0x30486060, 0x8800ff48, 0x83881818, 0xaa012303, 0x74820211, 0x11020125, 0x82071024, 0x0a07238f, 0x01820305, - 0x04053828, 0x01090d1a, 0x7b820301, 0x00840420, 0x42010328, 0x12050c23, 0xa7410216, 0x0bc51806, 0x260f8708, 0x05121602, 0x8342230c, 0x20308332, - 0x28898206, 0x0d090101, 0x0805041a, 0x2f518230, 0x080a0404, 0x07020204, 0x406a2410, 0x4040a040, 0x29076f69, 0x00a00140, 0x002f0016, 0x504b0100, - 0x012f2105, 0x28059b44, 0x37363736, 0x1f363733, 0x05396402, 0x23058546, 0x26270607, 0x2b056764, 0x122d0117, 0x13120101, 0x1b44870f, 0x3006d569, - 0x130f8744, 0x1137377c, 0x370e0e11, 0x110e0e37, 0x2f0b8b11, 0x14099d01, 0x091480fe, 0x01780d08, 0x401b1212, 0x78233483, 0x9184080d, 0x4e358529, - 0xc02d06cf, 0xc0010002, 0x34001900, 0x58004600, 0x06f74b00, 0x48052a42, 0x262105e1, 0x05064227, 0x47361121, 0x1083065d, 0x0d298518, 0x43181320, - 0x1520101d, 0x7f11c549, 0x895508d7, 0x36522707, 0x36020236, 0xfb505236, 0x13441817, 0x0b04430c, 0x01800122, 0x0e78a71b, 0x4e834683, 0x5140fe21, - 0x5218177d, 0xe5590da5, 0x46578209, 0x362d076b, 0x2100c001, 0x48003600, 0x00006300, 0x20ee8237, 0x06f86936, 0x07062326, 0x07331716, 0x2127068d, - 0x17162117, 0x6b151716, 0x352408ff, 0x37363736, 0x0c037b18, 0x17141531, 0x16033316, 0x2f06010f, 0x37170601, 0x83011f36, 0x0732430b, 0xc0011f28, - 0x140e0d01, 0x08192601, 0xfe24191b, 0x200110e0, 0x20085b45, 0x180987e0, 0x3c0c1f45, 0x160610cc, 0x15211108, 0x07122115, 0x2c100616, 0x11310d11, - 0x31111010, 0x602c110d, 0x055a6801, 0x12980719, 0x7a832020, 0x08845a88, 0x340c2967, 0x150cc101, 0x0301113a, 0x01034141, 0x0c153a11, 0x360d081c, - 0x29008245, 0x1b090d36, 0x00060000, 0x2f4eff00, 0x002d2807, 0x004b0042, 0x646d0054, 0x39512f25, 0x05a24905, 0x17161528, 0x35373633, 0x52193736, - 0x372108f0, 0x620a8606, 0x8462054e, 0x16172205, 0x05b74737, 0x010f2622, 0x2126e763, 0x234c0001, 0x1f012507, 0x0f400f01, 0x70220582, 0xdc55010f, - 0x85502005, 0x010f2e06, 0x04070e9a, 0x0d4d4d0d, 0x6a0e0704, 0x4e0b8b6a, 0x092305a2, 0x18fe0e09, 0x211951cf, 0x9e433001, 0x13202207, 0x235a830d, - 0x1021120d, 0x105cc218, 0x0d04612c, 0x2121070e, 0x040d0e07, 0x0b8b2e2e, 0x9f4b0020, 0x00272d0c, 0x0100002c, 0x26312736, 0x06072627, 0x0784e582, - 0x1f060725, 0x76060301, 0x4e180517, 0x33080733, 0x03370327, 0x23173723, 0x01087901, 0x0d0b0a02, 0x2727090c, 0x0b0d0c09, 0x0801020a, 0x010ceb30, - 0xf0140e0d, 0x0d0e14f0, 0x30eb0c01, 0x78777759, 0x0b8c0178, 0x2c832482, 0x83313121, 0x252c8324, 0x10dbfe3c, 0x57421813, 0x13182907, 0x3c250110, - 0x9c9c74fe, 0x260c1b44, 0x00610038, 0x8273006a, 0x48332097, 0x1d2b056c, 0x06071402, 0x26272223, 0x4c07013d, 0xa9820948, 0x26352722, 0x22073951, - 0x82011f36, 0x15172a2c, 0x37363736, 0x23063117, 0x34d28426, 0x023d3135, 0x32313736, 0x021f3117, 0x31023f33, 0x16313336, 0x214e8417, 0x79572707, - 0x09766207, 0x11112027, 0x11241d1d, 0x05fb430f, 0x4c388821, 0x90290559, 0x011b1b29, 0x0d081a02, 0x08cb8308, 0x080e0a24, 0x01171725, 0x33292a1a, - 0x2c110fa0, 0x0f04051c, 0x03050a01, 0x40051b0d, 0x030d1b05, 0x0d010a05, 0x9e772211, 0x780f2006, 0x0f2b05c8, 0x010f0101, 0x12111d00, 0x44200404, - 0x8d210608, 0x2b63856d, 0x291b1b01, 0x01051bdf, 0x0e0a0a02, 0x01265f83, 0x261a1a06, 0x60822755, 0x1f311482, 0x1c170706, 0x0a011460, 0x25110401, - 0x11250606, 0x260a8204, 0x161a6014, 0x425b0d1e, 0xf8410752, 0x056b4808, 0x01c0012f, 0x001a00c0, 0x1300003f, 0x16353315, 0x20048217, 0x20e88226, - 0x050c4e23, 0x37363522, 0x33211082, 0x05385307, 0x08156d48, 0x36373222, 0x2726012f, 0x2630f821, 0x24013002, 0x36403625, 0x30012425, 0x30302602, - 0x100a13c8, 0x12090907, 0x6448ba86, 0x2d0e8206, 0x130a1007, 0x9001a0fe, 0x2e17c5d0, 0x2f838080, 0x802c3883, 0xc5172e80, 0x1101f0d0, 0x0e0f1020, - 0x18070e45, 0x26071b5f, 0x100f0f60, 0x42011120, 0x7a20088b, 0x2423b782, 0x5d004800, 0x072006df, 0x2308494d, 0x16173637, 0x72640d82, 0x25c38208, - 0x06033736, 0x4d183107, 0x4f180a11, 0xd05c08eb, 0x14720805, 0x16171607, 0x08f00117, 0x02030b08, 0x14142209, 0x29290201, 0x0b0d0d3e, 0x35080406, - 0x110e0e50, 0x1e1f0323, 0x3602032d, 0x01305236, 0xfe221617, 0x1b1b29f0, 0x16160101, 0x1b1b0123, 0x15161a29, 0x221a140d, 0x02011617, 0x0112121d, - 0x0101c001, 0x13070b0b, 0x3f292221, 0x02022929, 0x080b0a02, 0x23010234, 0x1e1e2d11, 0x51110f02, 0xfe023637, 0x6e822250, 0x25243b83, 0x01071a19, - 0x0d2d4c83, 0x010e150c, 0x09221716, 0x16150608, 0x0a43491e, 0x4e003c2a, 0x00007200, 0x011f3613, 0x1f2ed983, 0x16171602, 0x3122010f, 0x07222322, - 0x7c432736, 0x21bd8206, 0xf1533716, 0x022f2107, 0xa1471582, 0x023f2805, 0x26173736, 0x83363137, 0x1617223a, 0x82228207, 0x41052032, 0x2708220c, - 0x4607097a, 0x08080747, 0x09550e02, 0x26050303, 0x23030301, 0x1108011d, 0x26262323, 0x0e0f0f0e, 0x1c231f1f, 0x18051212, 0x56372284, 0x05030408, - 0x03053232, 0x0e560804, 0x0a1b0702, 0x19190a0a, 0x820b1718, 0x1a182607, 0x010b1817, 0x213541eb, 0x418abf20, 0x07080837, 0x13131136, 0x0e0e0f25, - 0x26242311, 0x080f1021, 0x1f19190e, 0x2c608311, 0x08020e55, 0x46470708, 0x01080907, 0x2078820e, 0x896083e8, 0x19092270, 0x225b41c7, 0x02000030, - 0x0080017d, 0x0068005f, 0x37000078, 0x5b18011d, 0x162009af, 0x20061077, 0xa6f41816, 0x4b372009, 0x322b0543, 0x013d3637, 0x1f141517, 0x82171601, - 0x013f240b, 0x60012f36, 0x272a0536, 0x2b262726, 0x06070604, 0x02821507, 0x2705e35e, 0x3736023d, 0x05011d06, 0x2a072546, 0x36352625, 0x17163337, - 0x82010f14, 0x012f3012, 0x0e090960, 0x09090e20, 0x0f01110f, 0x8208010f, 0x21078300, 0x16860f11, 0x08202a08, 0x12190e2a, 0x14040d0c, 0x02040c04, - 0x35021616, 0x231f1e15, 0x30401086, 0x01222233, 0x0d010117, 0x01101019, 0x01071e01, 0x07c945f0, 0x0757fe30, 0x15b21502, 0x22170702, 0x17223030, - 0x5a6020e0, 0x0a582606, 0x010f1806, 0x21688201, 0x07831101, 0x0a061823, 0x05a84458, 0x3220a036, 0x143f0c0e, 0x110a0b01, 0x05111466, 0x02021652, - 0x1c4a0e16, 0x22345882, 0x13363322, 0x010d121f, 0x19101001, 0x26282006, 0x40131015, 0x35089646, 0x150907a9, 0x09150202, 0x01211707, 0x00172101, - 0x000a0000, 0xa749ff20, 0x0d240805, 0x29001b00, 0x46003800, 0x64005400, 0x80007200, 0x00009100, 0x3f161713, 0x22273601, 0x1506010f, 0x15071714, - 0x26059b57, 0x0726012f, 0x84250706, 0x34352c1b, 0x2326012f, 0x26011f06, 0x82263127, 0x011f2626, 0x37363716, 0x83098235, 0x3332272d, 0x26353637, - 0x11820723, 0x012f262b, 0x1f140722, 0x27333201, 0x057a4417, 0x56832320, 0x17161725, 0x85262725, 0x2a38820a, 0x37072736, 0x2b262736, 0x82070601, - 0x37162253, 0x05b66b27, 0x2c851082, 0x41334008, 0x4e080e35, 0x02030a03, 0x2108078e, 0x04050501, 0x2e0c073c, 0x01070808, 0x094e2601, 0x0708350d, - 0x0b02028e, 0x0701ba03, 0x0d2d0808, 0x05043c07, 0xa1310105, 0x0601010d, 0x0aad0101, 0x82d60f02, 0x0d410807, 0x0a020fa1, 0xbf0101ad, 0x030306ab, - 0x08055603, 0x044f0608, 0x01090403, 0x08064eb7, 0x04560508, 0x0309aa0e, 0x4fd90504, 0x09050404, 0x04050992, 0x08084f04, 0x0409a45a, 0x05500405, - 0x05090409, 0x38098250, 0x20420109, 0x0a8c0c06, 0x05620102, 0x2e050908, 0x0202067b, 0x090e5c05, 0x2f92821b, 0x0c8ca00a, 0x09052006, 0x01620508, - 0x0aa00a02, 0x20088482, 0x5c0e091b, 0x06020205, 0x0213f67b, 0x0106340e, 0x0f0b0440, 0x3406015e, 0x0f13020e, 0x8140040b, 0x08238214, 0x0708962a, - 0x07080878, 0x07781902, 0x020c9608, 0x08070214, 0x09890b08, 0x07010807, 0x0a890907, 0x0708c10a, 0x08089009, 0x08070990, 0x2a056744, 0xc001c001, - 0x21001000, 0x19003200, 0x2c09591e, 0x26012f06, 0x013f3627, 0x1d161707, 0x05865801, 0x34013d27, 0x21173637, 0x24118436, 0x2706010f, 0x28118226, - 0x08d8013f, 0x0108be08, 0x86048201, 0xb0c02207, 0x84008208, 0x82012004, 0x08082168, 0xb02a0a84, 0x0404be01, 0x09090568, 0x07876805, 0x0560a828, - 0x0509d809, 0x07870404, 0x84040421, 0x87602010, 0x219f8507, 0x9f824002, 0x4400172e, 0x00004d00, 0x37363701, 0x33011f32, 0x162b0383, 0x07061517, - 0x022b0706, 0x5a172707, 0x3d2508b6, 0x22230601, 0x180e8a27, 0x27092291, 0x1716011f, 0x3717023b, 0x2e07c747, 0x04173601, 0x11070c13, 0x120e1434, - 0x82021638, 0x2022261d, 0x70051510, 0x0683436a, 0x2c2c2423, 0x310a8624, 0x03040e2d, 0x0e0d0607, 0x04040a0b, 0x101e1807, 0xb14770a0, 0x21013208, - 0x0a01138b, 0x02120e16, 0x17221816, 0x401f0116, 0x066f5461, 0x13137323, 0x05684373, 0x3112e626, 0x0b0b0d0f, 0x10244384, 0xb0400117, 0x20078d47, - 0x08c74800, 0xe3828020, 0x4c004126, 0x6a005400, 0x2720e582, 0x2208c245, 0x8216033b, 0x25e884b7, 0x012f2223, 0x15541523, 0x23108405, 0x2221012b, - 0x35362983, 0x37363734, 0x36253336, 0x012f3437, 0x013d2726, 0x01393037, 0x01823130, 0x07013934, 0x16151427, 0x05373617, 0x36313736, 0x1415011f, - 0x5b842317, 0x0805c64d, 0x3460014c, 0x0a01020a, 0x03082c29, 0x20700b04, 0x391e2f10, 0x0e0d010a, 0x131b1514, 0x2101200d, 0x0e0d196a, 0x2f1f1f01, - 0x70fe4022, 0x060f0405, 0x0e050102, 0x94010504, 0x2c05010e, 0x01a0012e, 0x1116022f, 0x0d84fe06, 0x830e100f, 0xdf82e818, 0x45082a08, 0x05050b99, - 0x43017e08, 0x0b0a040d, 0x07201505, 0x25010b0b, 0x14100d4d, 0x13010d0e, 0x1627160d, 0x18181042, 0x1f1f2f1d, 0x234a8201, 0x05050605, 0x27085482, - 0x070e0224, 0x422f2d04, 0x0835392d, 0x1602020c, 0x250f0102, 0x0901020b, 0x2b321c57, 0x070b0901, 0x0a01183c, 0x006f080b, 0x01340082, 0xc0ff0000, - 0xc001fd01, 0x00004000, 0x010f1437, 0x27062306, 0x20094655, 0x08e76316, 0x26273431, 0x013f3437, 0x32013b36, 0x36373637, 0x59352627, 0x1c4e0bdc, - 0xa0153205, 0x0d0a1b09, 0x08060d0e, 0x01111119, 0x19111101, 0x8305840b, 0x0302220d, 0x081c8301, 0x0a095921, 0x04030209, 0x1f20010d, 0x090b0c30, - 0x0c010707, 0x4b42302f, 0xb7023231, 0x091b0a0d, 0x83020301, 0x203e8436, 0x8205840b, 0x07072344, 0x1c840d0e, 0x08080237, 0x301d1808, 0x0201201f, - 0x09050502, 0x0129283f, 0x4b313202, 0x08736959, 0x01002008, 0x001500c0, 0x0043002d, 0x00660054, 0x00800073, 0x009a008d, 0x00b000a5, 0x010000bb, - 0x45311730, 0xbe830527, 0x22056c4b, 0x4b271706, 0x23220579, 0xd9440722, 0x33362806, 0x3f161732, 0x82060501, 0x011f262d, 0x33343716, 0x05904936, - 0x21822620, 0x40820520, 0x10821720, 0x045d2620, 0x17062505, 0x31072625, 0x82052949, 0x23288415, 0x07062317, 0x2206dc4c, 0x8a212726, 0x0523210b, - 0x198c0c8b, 0x062a4d82, 0x17161107, 0x07113736, 0x26842726, 0x35373623, 0x080a8933, 0x01510134, 0x120f0201, 0x01020844, 0x0a201906, 0x1f040909, - 0x04090f05, 0x1c0a0405, 0x0a1c1d1d, 0x1e040405, 0x06071409, 0x09140706, 0x07fafe1e, 0x43090201, 0x32831012, 0x041f063e, 0x200a0909, 0x013a0118, - 0x50150501, 0x10040116, 0x090a0a04, 0xfe040e45, 0x0a0a09bb, 0x012b0d82, 0x05155016, 0x0e040201, 0x18503245, 0x2108f487, 0x0a883001, 0x80fe5022, - 0x01200b89, 0x88200b8a, 0x20072747, 0x20088740, 0x3c088780, 0x01012301, 0x2d0a0d01, 0x080a0906, 0x0406131c, 0x134c0a03, 0x090a780d, 0x06060309, - 0x218f8203, 0x1f82114c, 0x4c11012a, 0x090a0830, 0x0d092e06, 0x0d2b0d82, 0x030a4c13, 0x1c130604, 0x83050589, 0x24292f6f, 0x0603020a, 0x4c130b2e, - 0x0a030206, 0x13832924, 0x13050527, 0x028e2e0b, 0x8c9c8416, 0x93802004, 0x0fe02614, 0xfe0f0101, 0x220583f0, 0x83201001, 0x8a0b8406, 0x62002004, - 0x012d051f, 0x00c00180, 0x001b0017, 0x006a0046, 0x12c96085, 0x19222321, 0x60096355, 0x062605b7, 0x35272607, 0xeb412726, 0x37362209, 0x0b334516, - 0x3637342e, 0x37361733, 0x33373631, 0x07061716, 0x14222782, 0x0983011f, 0x012b0624, 0x15822726, 0x26065a44, 0x17141537, 0x85013d36, 0x010f273d, - 0x2f222306, 0x0f852601, 0xc75f4020, 0x83002008, 0x0e802e09, 0xc0a00909, 0x10b08080, 0x010c0b11, 0x24ce820f, 0x01071007, 0x82048401, 0x0b0c220d, - 0x82188311, 0x01482506, 0x12130d0d, 0x0f271f82, 0x07010d12, 0x8301161a, 0x831a200f, 0x851a200f, 0x1080220f, 0x273f8310, 0x0805051e, 0x1e050508, - 0xca184b84, 0xe0201652, 0x08204f82, 0x08203a83, 0x50206a83, 0x0e850483, 0x2005b15f, 0x23068250, 0x0d0d132e, 0x30055d4f, 0x0e04090d, 0x0e131b0e, - 0x0e0f010d, 0x080d0102, 0x270d8205, 0x1f23201e, 0x0f20231f, 0x20282182, 0x07082c35, 0x352c0807, 0x00200d84, 0x2b0b7b41, 0x0019000c, 0x0041002d, - 0x1300007a, 0x26052f62, 0x37343523, 0x62073336, 0x23220928, 0x0c893335, 0x20088c4e, 0x25139217, 0x33163507, 0xb74e3732, 0x82152005, 0x46072029, - 0x27210ebb, 0x99751835, 0x0706240d, 0x83331716, 0x6ba02012, 0x802006e1, 0x21055e4d, 0x8152c040, 0x0c2b510b, 0x120e602d, 0x11061014, 0x0e121510, - 0x821e1111, 0x293a8326, 0x250b151a, 0x12120101, 0x1c41581b, 0x83382005, 0x1f3825f4, 0x01011414, 0x70214983, 0x825e8370, 0x202e8203, 0x06a35f50, - 0x0e856020, 0xfd186020, 0x402d0d51, 0x0b090158, 0x090c0c13, 0x21212809, 0x29238616, 0x0b150c4e, 0x1b1b3526, 0x7f791212, 0x0f012106, 0x14225f82, - 0x1f561f14, 0x80013206, 0x2c00c001, 0x50003e00, 0x07170000, 0x27262306, 0x29d38311, 0x17161716, 0x22070611, 0xcb49012f, 0x8f232005, 0x53072009, - 0xd15211c9, 0x20333c11, 0x010b0403, 0x52363602, 0x02363652, 0x03040b01, 0x09070520, 0x08052506, 0x88260508, 0x06252404, 0x4f050709, 0x3a410656, - 0xc6f61805, 0x1904260c, 0x010b0103, 0x83418314, 0xecfe2b49, 0x1903010b, 0x06320804, 0x02843406, 0x04083224, 0x14600401, 0x0d06570c, 0x21055f4f, - 0xe7824002, 0x33002326, 0x06250000, 0x3d22d482, 0xa25d2701, 0x013b2605, 0x16011f16, 0x08735307, 0x3f241b82, 0x37052701, 0x17201583, 0x3c064d6b, - 0x9e013736, 0x1727232d, 0x09010850, 0x121e1c2f, 0x242d2a39, 0x1108100a, 0x0e0e1811, 0x08058458, 0xfe11082d, 0x0705ea7d, 0xc30a0926, 0x16202417, - 0x1a010115, 0x262107d2, 0x2c0c2018, 0x05090a05, 0x26010c15, 0x1031252a, 0x180e0e08, 0x84581111, 0x11082405, 0x8207c28b, 0xeb062a31, 0x1501011a, - 0x17242016, 0x20008200, 0x08cf5910, 0x00112c08, 0x00340023, 0x00570046, 0x007a0069, 0x009d008c, 0x00b100a7, 0x00c500bb, 0x01d900cf, 0x01000023, - 0x06310706, 0x36171607, 0x59272637, 0x4f4e05e3, 0x20118b05, 0x230c8b17, 0x07060706, 0xe205a666, 0x06052a22, 0x33011d07, 0x2726013d, 0x2109af33, - 0xa018012f, 0x414509ab, 0x33431805, 0x82162008, 0x183320d0, 0x24145171, 0x36373633, 0x09ec5b37, 0x3305306e, 0x07043a01, 0x16020106, 0x06010216, - 0x04020407, 0xe0fe0204, 0x3e20118f, 0x1c831e8b, 0x218f5220, 0x218f2e20, 0x21a0b220, 0x65904390, 0x0f28fe27, 0x0f012001, 0x20058a40, 0x201190a0, - 0x05c942b0, 0x43266970, 0xc02a0503, 0x0f08bd01, 0x02160f0f, 0x06821602, 0x03030823, 0x200e8d30, 0x83198935, 0xd8352018, 0x0138281d, 0x1010600f, - 0xa7010f60, 0x85102007, 0x44f483c0, 0x60200600, 0x87158a70, 0x212f821d, 0xc74400b0, 0x00022e06, 0x2700c001, 0x53004000, 0x013f0000, 0x2c028236, - 0x15171633, 0x06010f14, 0x011f1415, 0x320f8223, 0x022f2637, 0x0f062726, 0x16070602, 0x1323021f, 0x82222326, 0x2c1d820b, 0x32331602, 0x3536023f, - 0x03022f34, 0xbc521821, 0x72212007, 0x333c06a2, 0x31176940, 0x10060493, 0x033c0102, 0x0ccf5d03, 0x01010a28, 0x040e280a, 0x0e040b0b, 0x0c2b0b85, - 0x0602d88f, 0x15060206, 0x82150505, 0x20098706, 0x0fa05cf8, 0x35eb2031, 0x02035e1f, 0x04040111, 0x08080795, 0x8b23d008, 0x250b8545, 0x06120123, - 0x458a1406, 0x14215984, 0x06ee60fe, 0x31089c7e, 0xff060004, 0x018001c0, 0x001100c0, 0x00520044, 0x48180065, 0x835908b1, 0x17162605, 0x010f1716, - 0x05334e17, 0x21054543, 0x7a662627, 0x011f2a06, 0x37363533, 0x30151716, 0x2e018531, 0x26070615, 0x26233527, 0x3707012f, 0x52011f16, 0x2622069e, - 0xf5661337, 0x26378406, 0x1732013b, 0x18010716, 0x2310cd50, 0x0e32132d, 0x4a2f9785, 0x07150718, 0x1e1a1615, 0x021f1c11, 0x83021616, 0x27240803, - 0xa20e0e1a, 0x2a050524, 0x0b0b041a, 0x06070d0d, 0x06243803, 0x060a3015, 0x08190205, 0x041c1415, 0x0207070c, 0x097b4b18, 0x25076056, 0x0e324cb7, - 0x10425914, 0x4a532c05, 0x1a542319, 0x07060d0d, 0x83182b19, 0xf8382155, 0xd8290583, 0xf1141401, 0x2a06068a, 0x83558364, 0x5a01305d, 0x0802138d, - 0x0b090802, 0x10101b5b, 0x480c0909, 0xe035052b, 0x98018002, 0x77006e00, 0x89008000, 0x00009200, 0x011f3601, 0x5bce8332, 0x1620054e, 0x22051371, - 0x82070615, 0x26232402, 0x86233527, 0x5c262007, 0x272605b5, 0x17140706, 0x7c521716, 0x19df4e05, 0x2706072f, 0x36013f26, 0x36373635, 0x023b3137, - 0x24328232, 0x26273736, 0x7e3e1937, 0x08ae5608, 0x3c12c056, 0x11111197, 0x11200303, 0x11110f0f, 0x0c0d0e0e, 0x0d151001, 0x011f010d, 0x010f200f, - 0x30058440, 0x02020e12, 0x0f01011b, 0x1112010f, 0x0e09091d, 0x27038220, 0x09090e40, 0x1e22221e, 0x12370a86, 0x0713150b, 0x36020816, 0x19075236, - 0x1e1e2020, 0x04030319, 0x41490e0e, 0x5820078b, 0x22059241, 0x83581602, 0x20038346, 0x07ff4e30, 0x0e910126, 0x1007110e, 0x112b0482, 0x1017130d, - 0x13130a07, 0x82172919, 0x0f01237c, 0x24831010, 0x0b031226, 0x25180102, 0x22240a83, 0x0b0e1a1b, 0x7d487982, 0x0c4c2306, 0xa8414c0c, 0x29773505, - 0x150b0713, 0x52141231, 0x08053838, 0x02030b07, 0xb9111104, 0x0e005218, 0x70021622, 0x47110257, 0x51380aa3, 0x00005a00, 0x17333525, 0x37161716, - 0x26353736, 0x37363327, 0x012b2726, 0x83056250, 0x07e84c05, 0x16373627, 0x0716011f, 0x20048206, 0x7a851817, 0x34352209, 0x08ad4135, 0x36373228, - 0x3736013d, 0x41823531, 0x23057270, 0x0a10c001, 0x1425dc82, 0x15010220, 0x2d888306, 0x25362050, 0x15600124, 0x21193036, 0x2c461515, 0x02103705, - 0x0d0b1d0b, 0x08120f19, 0x09112216, 0x03150509, 0x54150c08, 0x84500606, 0x021e2106, 0x2d083741, 0x13144ed2, 0x0f070707, 0x121e4c23, 0x4f820f01, - 0x36252429, 0x18052702, 0x83382218, 0x153832f7, 0x2a11130b, 0x322c1515, 0x01011534, 0x3f100d0c, 0x2649820a, 0x1803041d, 0x41850102, 0xa4240534, - 0x8e022e1e, 0x3e823a84, 0x00010035, 0x02c0ff00, 0x00c00140, 0x2500003b, 0x06310706, 0x83172307, 0x272326f3, 0x012f3637, 0x83ec8326, 0x05175e03, - 0x35280583, 0x36253734, 0x011f3217, 0x362a0882, 0x1732013b, 0x17011d16, 0x43820716, 0x09092808, 0x0101200d, 0x7b1b1212, 0x0c0b5126, 0x09090c75, - 0x0a553c07, 0x1b661f06, 0x20011212, 0x0a09090e, 0x0b0b0001, 0x866b090c, 0x0c3528d6, 0x090dc001, 0x83a00109, 0x43402d1f, 0x075d0c0d, 0x530c0908, - 0x340c0947, 0xa0214583, 0x27508201, 0x09e00a0e, 0x255e0701, 0x35823d82, 0x0b2e7924, 0xb384000d, 0x8001e029, 0x6600a001, 0x82130000, 0x17162483, - 0x18141716, 0x2208a07b, 0x1807013b, 0x210bde4a, 0x1e831506, 0x3f323322, 0x2009136c, 0x05b07506, 0x18373421, 0x21098253, 0x0c8a3637, 0x26055874, - 0x010f2223, 0x6c060706, 0x7a29054f, 0x152b2119, 0x0b010d0e, 0x248985e5, 0x0203337c, 0x2c0a8544, 0x20010414, 0x372b3020, 0x020a062b, 0x22c08201, - 0x8e060b0d, 0x327b212c, 0x01282c9b, 0x0d01144c, 0x0d12150e, 0x2205d444, 0x8502011d, 0x100f2708, 0x01202030, 0x3a5b0522, 0xa6052007, 0x03002226, - 0x2a008200, 0x80014002, 0x34002200, 0x45004600, 0x312006a9, 0x3b21ca84, 0x5d7d1801, 0x50fe8309, 0x27240563, 0x31070607, 0x180c276a, 0x72085e98, - 0x0620059c, 0x23082082, 0x3f6f2001, 0x011a1a3f, 0x4a323202, 0x17132708, 0x07101007, 0x08271317, 0x0232324a, 0x3f1a1a01, 0x01406f3f, 0x0eecf718, - 0x4e08e36d, 0x803c0823, 0x2f1c1c01, 0x2d55392f, 0x2f22012e, 0x0d01010d, 0x2e01222f, 0x2f39552d, 0x011c1c2f, 0x50902e90, 0x0031da84, 0x02e0ff00, - 0x00a00100, 0x00190013, 0x17160100, 0x05426213, 0x27262137, 0x37342726, 0x17373613, 0x37170727, 0x14000133, 0x0109d80b, 0x1374180f, 0xd8093507, - 0x4141140b, 0x41301f4f, 0x1001a001, 0x100ea7fe, 0x010f1018, 0x102d1f83, 0x1059010e, 0x7f68c001, 0x00004029, 0x08134b04, 0x60000433, 0x6a006500, - 0x33010000, 0x27352315, 0x06310706, 0x054e4207, 0x22211522, 0x18076263, 0x4d08546e, 0x3520069e, 0x23228583, 0x17962135, 0x08505518, 0x76352121, - 0x03210ad1, 0x20618235, 0x24038225, 0x80000135, 0x08226980, 0x6cff3021, 0x6020066b, 0x088a4718, 0x08be5218, 0x00013022, 0xab481492, 0x8aff2006, - 0x8090241b, 0x82400180, 0x40802403, 0x69014040, 0xc26007b7, 0x88202006, 0x20088810, 0x42139320, 0x19890592, 0x4b82fe20, 0x00340282, 0xff000004, - 0x018002e0, 0x002800a0, 0x00b300aa, 0x370000bc, 0x2205f665, 0x5c26013d, 0x1420084f, 0x3f271283, 0x3d262702, 0x49373601, 0x17270627, 0x06072707, - 0x41272223, 0x3221054f, 0x05ae6c17, 0x21833320, 0x35333622, 0x2305134e, 0x1716021d, 0x2305654b, 0x3726012f, 0x2007b85d, 0x05934531, 0x47022b21, - 0x6882052f, 0x0a823d20, 0x34825882, 0x82013b21, 0x82172049, 0x07062562, 0x1514011d, 0x4705a044, 0x06250543, 0x06331507, 0x21718207, 0xbe502726, - 0x45272005, 0xcf5f05a1, 0x0cb62508, 0x0c120b09, 0x3f055b67, 0x0112121b, 0x0a120d0c, 0x0c080d09, 0x10160207, 0x0c070216, 0x0d0d0808, 0x05061513, - 0x1b121201, 0x28068b46, 0x0e1e02a0, 0x0e0d0112, 0x05624614, 0x15153208, 0x030d0823, 0x44140e04, 0x01012a2a, 0x32331d1e, 0x019f013f, 0x1e33323e, - 0x0f10011d, 0x03160201, 0x221b1a0e, 0x1a1b2240, 0x0216030e, 0x16120f01, 0x05434408, 0x0216082f, 0x20011738, 0x0a181920, 0x13150808, 0x224e854d, - 0x45900f01, 0xfb2207a8, 0x8e820407, 0x46431520, 0x12152e07, 0x07040c0d, 0x08050804, 0x02021604, 0x25088416, 0x0a060732, 0x21830101, 0x2f05ac41, - 0x12251030, 0x0e141009, 0x0f01010d, 0x0f301020, 0x64260682, 0x0c1d1c25, 0x12820503, 0x0f042a08, 0x01463333, 0x1d33323f, 0x1d01011e, 0x3e32331e, - 0x1d172701, 0x11060115, 0x111d0216, 0x1d111212, 0x06111602, 0x03021501, 0x2a4d850a, 0x1a081602, 0x1d121226, 0x87560a01, 0x85d18293, 0x0000220a, - 0x0f761800, 0x00143209, 0x0039001d, 0x17063700, 0x17163736, 0x27342736, 0x21018226, 0x01820706, 0x06171522, 0x23063f4e, 0x31373625, 0x6205e241, - 0x7d4408a9, 0x262c0805, 0x01403527, 0x68684712, 0x0a011247, 0x59371b0b, 0x0b1b3759, 0x3447c00a, 0x33484833, 0x00ff4734, 0x22181801, 0x48656548, - 0x01181822, 0xf0390b8b, 0x0125120c, 0x0c122501, 0x0f0d0e09, 0x1b02021b, 0x090e0d0f, 0x13130128, 0x2d038301, 0x1b1b2528, 0x01012311, 0x1b1b1123, - 0x0c8c6025, 0x102dbb83, 0xb001c1ff, 0x1100c001, 0x61004f00, 0x13557200, 0x32333629, 0x17060733, 0x46011f16, 0x372a0511, 0x36013f36, 0x012f2627, - 0xc1821737, 0x32013b22, 0x21056f70, 0x1282012b, 0x23250283, 0x06010f06, 0x05f74215, 0x9a460120, 0x2336820a, 0x07272627, 0x09b36218, 0x0d012808, - 0x0e14140e, 0x0fc2010d, 0x1f030316, 0x13070707, 0x06031a57, 0x0c0d0d06, 0x041d040b, 0x390e0506, 0x170c051f, 0x42151e18, 0x15340528, 0x18060915, - 0x12113039, 0x09182230, 0x0d0d0a09, 0x3b23170a, 0x46271a85, 0x090b0e1e, 0x4a130b1b, 0x802811dc, 0x14165e10, 0x59350d14, 0x5c835483, 0x0f0f652a, - 0x5224080f, 0x10101b0c, 0x2905dd41, 0x360f1301, 0x01050f13, 0x116d1721, 0x4e172005, 0x013a0609, 0x11061a1b, 0x0000291c, 0xff000003, 0x014002e0, - 0x001000a0, 0x003a0028, 0xdc831300, 0x35023b22, 0x2507dc41, 0x11151637, 0x025d1716, 0x36352505, 0x33373637, 0x21261a84, 0x31373601, 0x81543736, - 0x07062605, 0x013b0706, 0x21728200, 0xf7873010, 0xba187020, 0x0135082a, 0xa5191110, 0x291b1b01, 0x6001f0fe, 0x01201f30, 0x19f50f01, 0x24108302, - 0x700160b0, 0x385e1830, 0x0e0d2808, 0x1b153014, 0x661bd0fe, 0x0534067a, 0x01101119, 0x1b1b29c0, 0x0140fe01, 0x0f301f20, 0x05190201, 0x00200e83, - 0x04370082, 0xc1ff2000, 0xc001df01, 0x2e001c00, 0x6a004000, 0x14010000, 0x53063107, 0x76180c6c, 0x69180a33, 0x3720115f, 0x59104166, 0x5a5f0651, - 0x010f2107, 0x1620f682, 0x0629da82, 0x0607012f, 0x26272627, 0x05e54137, 0x0137262a, 0x1d111290, 0x600e0909, 0x1d2bbc82, 0x28021211, 0x293d3d29, - 0x41c80228, 0x058505b0, 0x0cfd6818, 0x07cbfe27, 0xb20c0c0c, 0x2a0482b2, 0x04040507, 0x0c86860c, 0x93050404, 0x40012613, 0x111c1b22, 0x2c438516, - 0x1b1c1116, 0x24253622, 0x25240101, 0x0c677036, 0x85062068, 0x83822026, 0x5959214c, 0x60835883, 0x83434321, 0x21139358, 0x71180000, 0x0a26092b, - 0x36130000, 0xe0820117, 0x26012738, 0x130f0537, 0x0c105002, 0xb0fd130f, 0xb7010c10, 0x30fe0c10, 0x0982130f, 0x130fd022, 0x20283382, 0x2002c1ff, - 0x8000bf01, 0x27203383, 0x2105ce5d, 0x464a2627, 0x1f162206, 0x064f6201, 0x36013f23, 0x240b823f, 0x3716011f, 0x211c8236, 0x3842013f, 0x16172607, - 0x1706010f, 0x221f8216, 0x8217012f, 0x211f852f, 0x6d43012f, 0x201c8206, 0x870b820f, 0x010f234f, 0x08613435, 0x011d2505, 0x27260706, 0x37080d83, - 0x06070607, 0x2627011d, 0x06be013f, 0x21091613, 0x5039180b, 0x09130104, 0x13051416, 0x3c3c1b09, 0x05130a1a, 0x13091614, 0x39500401, 0x09210b18, - 0x20061316, 0x02200402, 0x24055273, 0x02042002, 0x2837aa20, 0x140c0d30, 0x01060508, 0x2599820f, 0x0c150705, 0x3f82300d, 0x9f013908, 0x13060916, - 0x391a2255, 0x3904011b, 0x16090514, 0x140a1a38, 0x381a0a14, 0x14050916, 0x1b010439, 0x55221a39, 0x16090613, 0x20040554, 0x011b1a28, 0x281b1a01, - 0x54050420, 0x303937aa, 0x1313180e, 0x0404030a, 0x010f0b08, 0x080b0f01, 0x0a030404, 0x0e181313, 0x37478230, 0x07000000, 0xc0ff1000, 0xc0016002, - 0x2f001d00, 0x4a004100, 0x5c005300, 0x2208b54f, 0x84070617, 0x012b2601, 0x37262726, 0x20018336, 0x20058335, 0x76831821, 0x23178211, 0x34353631, - 0x2505c245, 0x16171415, 0x817d2517, 0x10176508, 0x2309615d, 0x0d0e22bc, 0x0e369782, 0x0f0f080d, 0x0a12ee11, 0x070d0908, 0x01070709, 0x01291b1b, - 0x9718441c, 0x0f430f4c, 0x46fe200b, 0x402008f3, 0x2010354e, 0x08b85950, 0x3426c03c, 0x46763234, 0x09121b45, 0x100f0109, 0x201e1c10, 0x524c3535, - 0xfe023636, 0xff550280, 0x20078706, 0x0f954a80, 0x4e084d4d, 0xd2461018, 0x0573590b, 0x0180022d, 0x007000c0, 0x00880076, 0x18a50091, 0x260893e2, - 0x1f161732, 0x77353301, 0x1625085c, 0x1d06010f, 0x06735901, 0x26010f2d, 0x23070623, 0x2b060714, 0x72070601, 0x062305a7, 0x822f2223, 0x0ace4f0c, - 0x6e272621, 0x262005e3, 0x26224583, 0xb9182327, 0x362209ba, 0x14842737, 0x3d173628, 0x15233302, 0x9e4b013b, 0x07264306, 0x26272625, 0x41360527, - 0x152a066c, 0x26312726, 0x36373627, 0x41183233, 0x602008a4, 0x6a28f183, 0x08101014, 0x02116a30, 0x3e07e543, 0x11380a03, 0x16010c0b, 0x3d19152b, - 0x09095023, 0x0303080e, 0x17090906, 0x0a0d0c0a, 0x82070706, 0x0e203010, 0x07070909, 0x0c0d0a06, 0x0909170a, 0x48030306, 0x2885079e, 0xaa120f27, - 0x2771206a, 0x07a2745a, 0x01210787, 0x07734f60, 0x19192529, 0x16230201, 0x8404041d, 0x1919311b, 0x1b800125, 0x0b011212, 0x2278120b, 0x0c052225, - 0x2d06cd44, 0x22171405, 0x2d110b0c, 0x091b0e1b, 0x759d2e02, 0x9e918d83, 0x01060d27, 0x60606020, 0xe87518c0, 0x50c0200f, 0x4021077c, 0x267d8201, - 0x04101a2e, 0x83231918, 0x00002796, 0xff000007, 0x018201c0, 0x00040035, 0x001c000d, 0x00380023, 0x00500044, 0x26331300, 0x5e370727, 0x332a054d, - 0x37360737, 0x34373631, 0x394e2327, 0x06072905, 0x2f331507, 0x33173701, 0x2205664e, 0x4e373233, 0x1433091f, 0x3b163117, 0x07063501, 0x26251506, - 0x27263127, 0x82361723, 0xf052081e, 0x43180c67, 0x291d1926, 0x520f201f, 0x2536365b, 0xfe010124, 0x25240101, 0x0d0f6436, 0x213a3e94, 0x1722442f, - 0x52100116, 0x0209080d, 0x5c4b3332, 0x099d0b0a, 0x1e220d08, 0x40011111, 0x140e0d01, 0x0b113930, 0x1e70010b, 0x0c443214, 0x24161501, 0x3c83f444, - 0x00820820, 0x38274b83, 0x68bc0705, 0x834f0760, 0x151b21fb, 0x4b253882, 0x01023233, 0x304c82b1, 0x242319a7, 0x0e141229, 0x035f010d, 0x00120d0d, - 0x05974900, 0x8001802c, 0x31001f00, 0x00004300, 0x107c2101, 0x4e332008, 0xb5820a09, 0x26113722, 0x83082366, 0x079f4909, 0x87180520, 0x0223108a, - 0x4700fe40, 0x782b077d, 0x0f201327, 0x200f1f1f, 0x87792613, 0xa0fe2113, 0x200f7143, 0x4e2f8801, 0x12230a08, 0x85ff1b12, 0x40222817, 0x1c01011c, - 0x83012240, 0x202b8537, 0x0be47fb0, 0x0a4e1683, 0x00043411, 0x02c0ff00, 0x00c00100, 0x003b0022, 0x006d0054, 0x6c360100, 0x1d2605c9, 0x23070601, - 0xa75c0722, 0x34353b06, 0x3d36013f, 0x33373601, 0x03253732, 0x16021f32, 0x020f1415, 0x2f222306, 0x1b822602, 0x33360223, 0x8f368225, 0x17322213, - 0x082a9337, 0x11d00127, 0x0d0e0810, 0x0f010456, 0xfe050710, 0x0e0f0af1, 0x0b0a2a0a, 0x0f010570, 0x01040623, 0x02062013, 0x0606330f, 0x2b608233, - 0x340e0206, 0x0e340606, 0xa8fe0602, 0x062c1391, 0x02068802, 0x06061b07, 0x0602071b, 0x01300989, 0x080e0dba, 0x04601110, 0x010f1507, 0x0bd0fe05, - 0x0e2c5d82, 0x05630a0f, 0x010f1c07, 0xe6fef604, 0x648e5084, 0x6483da20, 0x0621138e, 0x84598e46, 0x0cbf5663, 0x4b002527, 0x00007000, 0x05c64201, - 0x4e098a56, 0x332b05da, 0x36373621, 0x26272637, 0x82222327, 0x85132011, 0x4f138725, 0x33210700, 0x4e7a1821, 0x21258308, 0x348c3307, 0x16171424, - 0x208c013b, 0x33221182, 0x6c442001, 0x21068206, 0xfd45c0fe, 0x40012105, 0x20071546, 0x20108220, 0x20198240, 0x21108720, 0x228680fe, 0x20830786, - 0x1d88e020, 0x1b8a1486, 0x01203b82, 0x0c857218, 0x976f3e82, 0x201b8207, 0x8a1b83fe, 0x0b7d460f, 0x5b08bf6f, 0x0b850bd3, 0x29063354, 0x00c00100, - 0x003a002d, 0x7e180100, 0x072b0867, 0x27062306, 0x1706010f, 0x82060716, 0x22232106, 0x07ce5318, 0x1736372a, 0x26023f16, 0x01373435, 0x2006d548, - 0x261f8226, 0x0a890117, 0x820a0d0d, 0x0a2608e2, 0x090a0c0c, 0x07050d31, 0xa2180809, 0x14191a13, 0xa1131358, 0x1f1f1f19, 0x0a310f14, 0xdafe0908, - 0x620b0b42, 0x05850909, 0x09b70124, 0x38834009, 0x08010926, 0x150f3109, 0x18242682, 0x581313a1, 0xa2283783, 0x07080818, 0x09310d04, 0xfe275183, - 0x090942ae, 0x850b0b62, 0x7baa1805, 0x00392c0b, 0x00bf00ad, 0x370000d1, 0x50311716, 0x332305ae, 0x82363332, 0x3332230d, 0x10851732, 0x27263728, - 0x23302726, 0xe5442330, 0x07062105, 0x23260f82, 0x07060706, 0x05831714, 0x0e4b0520, 0x5c152009, 0x06220505, 0x3a821415, 0x22313024, 0x37422223, - 0x31322706, 0x07303332, 0x19841522, 0x37323326, 0x31303736, 0x08550019, 0x35343527, 0x33161530, 0x21178316, 0x6b833435, 0x23822d82, 0x23210b83, - 0x24458222, 0x35363330, 0x820d8536, 0x31302375, 0x91453534, 0x786b1805, 0x3621210b, 0x7b05554c, 0x003609a2, 0x291b1b01, 0x1010072d, 0x13030314, - 0x03131f1f, 0x10101403, 0x42422d07, 0x01012f07, 0x17160102, 0x0e172622, 0x30211a1a, 0xb26b201f, 0x41202006, 0x012705da, 0x0c0d0a01, 0x830a0a0a, - 0x050d4225, 0x00830120, 0x0c211182, 0xa414820d, 0x14f02324, 0xc1180d0e, 0x0d230902, 0x5101140e, 0x198708a9, 0x8d83e020, 0x0b0b1229, 0x17010117, - 0x42120b0b, 0x08250782, 0x16172208, 0x2a0d8201, 0x20011110, 0x0a0b301f, 0x1819180a, 0x2007f44a, 0x91878202, 0x090d2186, 0x2482ab8c, 0x090a0a23, - 0x22aa930d, 0x4d800201, 0x07970769, 0x00060035, 0x02c0ff20, 0x00c0015f, 0x00470023, 0x005d0052, 0x5d730068, 0x162109ef, 0x28018217, 0x36373633, - 0x06072627, 0x05625323, 0x27230d84, 0x41032322, 0x2d420887, 0x42222005, 0x1524082d, 0x07060706, 0x17243882, 0x0f260521, 0x2106d44b, 0x0a9f3327, - 0x01024b08, 0x08232331, 0x0211101b, 0x06061223, 0x05082436, 0x08070c05, 0x01191826, 0x09150c0c, 0x050b0302, 0x16227106, 0x12010117, 0x01021d12, - 0x1a221716, 0x16150d14, 0x1b1b291a, 0x16162301, 0x1b1b0101, 0xfe100129, 0x200e13e5, 0x0482110a, 0x60120b22, 0x33080a9f, 0x1e01c001, 0x190d2f1e, - 0x23112019, 0x08230101, 0x01020a0b, 0x26181901, 0x0c141418, 0x020b0b06, 0x170180fe, 0x161e2216, 0x09080615, 0x01161722, 0x0d0c150e, 0x07236684, - 0x83241a1a, 0x0a242777, 0x0e133011, 0x0482120b, 0x0020099d, 0x2909af46, 0x003d0028, 0x00670052, 0x5b473700, 0x08a76608, 0x70551720, 0x07142205, - 0x2d651832, 0x0721220a, 0x884f1836, 0x26072109, 0x18063f7a, 0x880b884f, 0x5e4f1814, 0x2115860c, 0xa9836037, 0x28053441, 0x21301f20, 0x170e1a1a, - 0x82cd8326, 0x086445eb, 0x0207c028, 0x23020505, 0x90500e06, 0x23062205, 0x210f8ea0, 0x108d237d, 0x1b018039, 0x1920291b, 0x0b0a0a18, 0x01201f30, - 0x1b1b1011, 0x17160101, 0x42080822, 0x342607d9, 0x0b410404, 0xff42030d, 0x0d032307, 0x1191410b, 0x13914120, 0x05000023, 0x054b4e00, 0x2800c02a, - 0x3e003300, 0x54004900, 0x222b2d41, 0x5b010f16, 0x1721051d, 0x220a8833, 0x8607011f, 0x07162213, 0x21158827, 0x1a418017, 0x130e2b23, 0x150a3007, - 0x0b300714, 0x0a897815, 0x1387f420, 0x84071322, 0x16411589, 0x0a222521, 0x07147015, 0x1f20048e, 0x1f201289, 0x00201a89, 0x08200082, 0x35088f56, - 0x0032002a, 0x004c0041, 0x00620057, 0x0091006d, 0x07261300, 0xd2180f06, 0x1f260910, 0x16171602, 0xfb78013f, 0x36172208, 0x05006837, 0x06132729, - 0x32333227, 0x8203013b, 0x06072130, 0x2206a751, 0x43133736, 0xb1431f90, 0x06ab420a, 0x5d833520, 0x2413e743, 0x37363736, 0x079d6f8a, 0x370dd46f, - 0x1b021f37, 0x0f0e0e0e, 0x14282f25, 0x08020a24, 0x46470708, 0x01040399, 0x04300082, 0x19211c2f, 0x060a0a0a, 0x14140909, 0x2002011d, 0x431fb043, - 0x4b200ad1, 0x261c0644, 0x01171622, 0x7005bd01, 0x7282059b, 0x350bd670, 0x0f312227, 0x2423261f, 0x21181210, 0x04083f11, 0x32320503, 0x8e8363fe, - 0x0b0c1331, 0x0d1a1718, 0x16171e09, 0xfe06060c, 0x43120bf8, 0x099d07dd, 0x22447420, 0x1701241a, 0x76002216, 0x0233069b, 0x00c00180, 0x00710054, - 0x00980079, 0x00d600b7, 0x7c361300, 0x058305fd, 0x1716172b, 0x07060706, 0x013b1617, 0x840b8216, 0x14152803, 0x17313031, 0x82320239, 0x16372118, - 0x26062b5f, 0x30313431, 0x83272635, 0x21152501, 0x010f2627, 0x4107d35a, 0x012505fd, 0x14011d33, 0x25138207, 0x3d262722, 0x754e2301, 0x3b023a09, - 0x37223701, 0x07373631, 0x23262531, 0x22020f22, 0x011f0607, 0x16171407, 0x29a5823f, 0x27353637, 0x26273637, 0x25822f23, 0x26221b99, 0x3b9c1723, - 0x0501402a, 0x02030502, 0x03022e2e, 0x43080882, 0x0b0b0101, 0x0d094c06, 0x1f1f2edb, 0x04071212, 0x01010102, 0x1f160505, 0x0d060603, 0x050b0b0d, - 0x0a040201, 0xa0fe0907, 0x2a0f0928, 0x1602110e, 0x0c010f0f, 0x0708084c, 0x60800101, 0x200e0909, 0xa009090e, 0x60220786, 0x3a8481a0, 0x02c4fe2d, - 0x0a020303, 0x01010318, 0x82041102, 0x1515210b, 0x04210f82, 0x235a8211, 0x6b0a1803, 0x02221a99, 0x399b7503, 0x10a0013a, 0x2c02050b, 0x0c05022c, - 0x0b0c140f, 0x01094804, 0x14140f0e, 0x0205070f, 0x01275a82, 0x0d090701, 0x82040c0b, 0x820c20b8, 0x08043778, 0x4f06070c, 0x1c080f5e, 0x0f0f0109, - 0x5e0f1316, 0x100b0a06, 0x4818c0fe, 0x078907cd, 0x39834720, 0x0303462a, 0x03030414, 0x03161003, 0x0b274c82, 0x0202010b, 0x82101603, 0x14042110, - 0x1b99199b, 0x37069f50, 0x00c00100, 0x00f300ea, 0x010501fc, 0x1300000e, 0x07222726, 0x14111506, 0x21078559, 0x01833736, 0x011f1627, 0x17163130, - 0x2e0c8432, 0x37323736, 0x16033933, 0x17272627, 0x82353736, 0x0607212f, 0x23230183, 0x49012f26, 0x06230551, 0x8435010f, 0x82332038, 0x28368938, - 0x31303130, 0x39333532, 0x22349f04, 0x8b173117, 0x20339335, 0x207d8222, 0x865d8e35, 0x27262827, 0x30310726, 0x84233007, 0x26072595, 0x31302327, - 0xa482d684, 0x57731720, 0x230b8207, 0x37362726, 0x06844182, 0x27201782, 0x3f221a87, 0xd34b1807, 0x05033308, 0x2c2b140d, 0x23012125, 0x1a191c36, - 0x050c1413, 0x00820104, 0x0a020324, 0x0783110e, 0x0e032b08, 0x1a1a1616, 0x0128331a, 0x282f2b29, 0x03060c13, 0x15130c01, 0x331a1919, 0x2a290129, - 0x16171817, 0x04060d14, 0x01060102, 0x2bb50301, 0x07030228, 0x010e0e08, 0x4c8b2b28, 0x10100f36, 0x04020101, 0x29200f08, 0x29022926, 0x1b1a1c36, - 0x91090b14, 0x5210aa6c, 0x302008aa, 0x2208fa52, 0x180216a8, 0x200a7340, 0x37458264, 0x01020d06, 0x030e010d, 0x06070506, 0x01020206, 0x15040501, - 0x1f14091d, 0x052ddf82, 0x05050706, 0x0d010e02, 0x060d0202, 0x201a8205, 0x22118922, 0x82060405, 0x01022312, 0x28b33e02, 0x02020125, 0x82040321, - 0x24468858, 0x080a121f, 0x24d58308, 0x01020c06, 0x238e830e, 0x18030406, 0x20076353, 0x20088708, 0x88c98748, 0x06934e11, 0x8001c337, 0x1b00bd01, - 0x3f002d00, 0x36370000, 0x37363137, 0x16151736, 0x25018317, 0x07060706, 0xf1442722, 0x8b711806, 0x231b8211, 0x34352631, 0x2a054245, 0x06071415, - 0x30020023, 0x820f4c31, 0x314d2387, 0x0b8b0231, 0x48200121, 0x0787079d, 0x360cfd69, 0x38394ff0, 0x3f10010d, 0x390c030e, 0x38505038, 0x400f0e38, - 0x820d030d, 0x5430200b, 0x057e0fb5, 0x089f780c, 0x25058f50, 0x13000043, 0xbd851633, 0xe3653320, 0x06287b0f, 0x03373622, 0x0ce14118, 0x33161524, - 0xe7821617, 0x27262133, 0x32013f26, 0x013d3231, 0x021610f8, 0x0b2a2b3d, 0x05cf4203, 0x2707084f, 0x2b2a0b03, 0xb816023d, 0x17105b18, 0x1602c023, - 0x2222830b, 0x430e0909, 0x46830808, 0x02160b25, 0x8480e0fe, 0x18842000, 0x200b195b, 0x0a9b4a84, 0x32002022, 0x28067173, 0x27343707, 0x06010f26, - 0x05085307, 0x2b05fa76, 0x07232627, 0x26353637, 0x01072227, 0x20101852, 0x102b5935, 0x08088364, 0xc3ee0122, 0x09070803, 0x1b1b2fb1, 0x563a3902, - 0x1c2f2e37, 0x05040466, 0x014b1e0a, 0x02030c01, 0x2536d2fe, 0x0d07b518, 0x1020bb8b, 0x08073b42, 0x4bbf0123, 0x05040a1e, 0x2f1c6604, 0x3a56372e, - 0x1b1b0239, 0x0709b12f, 0x02c30308, 0x01010c03, 0x240141fe, 0x056e5325, 0x06500786, 0x6260200c, 0x003608f6, 0xff000006, 0x014002c0, 0x000c00c0, - 0x002d0020, 0x00650053, 0xca180095, 0x33220bb5, 0xcd882135, 0x2f074d45, 0x32011135, 0x3d363137, 0x14152301, 0x13331617, 0x20053c47, 0x053a6406, - 0x16013f22, 0x20057345, 0x067b4535, 0x34113528, 0x012b2627, 0x0d192607, 0x11230f91, 0x5c161735, 0x27200a32, 0x20057345, 0x26b2181d, 0x18172009, - 0x2309d343, 0x01012f34, 0x20063f7b, 0x25591840, 0x83fe200d, 0x094037db, 0x0e600e09, 0x2001090a, 0x0707031f, 0x0a0b0d0e, 0x09010103, 0xd3500d09, - 0x4dd0200c, 0x05230ffa, 0x8549140e, 0x29432621, 0x111b1f17, 0x20328211, 0x4210820e, 0x0a2106d1, 0x073e5126, 0x075d5a18, 0x09e14418, 0x2383fe20, - 0x02261684, 0x0f0b0b00, 0x72839bda, 0x03237a83, 0x4108090c, 0x012108b3, 0x0bae5b80, 0x08274018, 0x0548fb22, 0x69831782, 0x01162929, 0x1b111101, - 0x85ca0137, 0x2b602287, 0x23088535, 0x340c103b, 0x37064b43, 0x01c001c1, 0x004400c0, 0x1300005b, 0x17060726, 0x07061516, 0x07222306, 0x2b0a8d50, - 0x17161716, 0x3f262726, 0x32333601, 0x16230a82, 0x8233010f, 0x09835212, 0x5005954e, 0xec4a06ca, 0x33172106, 0x0805b27f, 0x26273654, 0x36372327, - 0x0609ed27, 0x01040305, 0x02221617, 0x121b0c02, 0x210a0112, 0x01011414, 0x03251918, 0x8e160802, 0x0c0f0f0c, 0x0703040b, 0x0b1e101a, 0x271b0b06, - 0x01011a1a, 0x0a211414, 0x1b121201, 0x17010606, 0x0a222417, 0x0308850a, 0x2b370b04, 0x0a8a0904, 0x0728bd82, 0x0d0d0807, 0x01171722, 0x23082c83, - 0x18070f13, 0x19262219, 0x0405031a, 0x0a74141d, 0x0f0e0a0a, 0x1c02350e, 0x1a011214, 0x1922271a, 0x130f0718, 0x0f317e83, 0x1a1a2512, 0x06fdfe06, - 0x0b077007, 0x0c590109, 0x2a098308, 0x59010a0a, 0x0300090b, 0x61ff0000, 0x2e24056f, 0x7d005400, 0x2009db63, 0x32451807, 0x37362109, 0x37450183, - 0xdd8d1805, 0x2726230d, 0xfc5c0615, 0x22232507, 0x013d2627, 0x278d2987, 0x062a4ca4, 0x01070607, 0x3a394840, 0x3e422222, 0x2b012a06, 0x5948492a, - 0x2a494859, 0x2411872b, 0x393a2222, 0x09936048, 0x42079e43, 0x01240528, 0xa01b1212, 0x1e240a86, 0x3f32331d, 0x85058f60, 0x867e1811, 0x01602108, - 0xa5454484, 0x85602006, 0x876a855e, 0x20848513, 0x874f83c0, 0x074e4412, 0x83830f87, 0x0c874020, 0x0b6d1c19, 0x44231387, 0x83022d2d, 0x09c36973, - 0x0d00a02a, 0x4b002c00, 0xa4006a00, 0x2808f759, 0x17161716, 0x25352115, 0x07754d22, 0x2c08394b, 0x3637012f, 0x022f2627, 0x26072326, 0x201e9823, - 0x82199803, 0x3b152238, 0xcd511804, 0x26072612, 0x35272627, 0x17d04b23, 0x83003321, 0x83e020b5, 0xfd2308be, 0x04a001e0, 0x031d0c02, 0x14030102, - 0x04030305, 0x03041919, 0x15050103, 0x04020103, 0x04020c1c, 0x9a04028a, 0x9a96201f, 0x0402261b, 0x402060c0, 0x11521820, 0x1716260a, 0x16172222, - 0x07166a01, 0x0909c02a, 0x090e400e, 0x00018009, 0x37074941, 0x03404040, 0x03010419, 0x1b130304, 0x02020204, 0x02020c0c, 0x131b0303, 0x01231082, - 0x82031904, 0x9a1d9b00, 0x20a0271b, 0x01010f50, 0x3144300f, 0x83302005, 0x82012086, 0x2030218e, 0x4b069563, 0x60200879, 0x290ac35b, 0x002c0021, - 0x00420037, 0x4918004d, 0x1623075d, 0x56373617, 0xd14e08ad, 0x058b4507, 0x0621052c, 0x21171607, 0x27263736, 0x70182307, 0x15880970, 0x26012f23, - 0x08178727, 0x2802202a, 0x237b3d29, 0x1b233232, 0x01201f30, 0x301f2001, 0x1e100f10, 0x2332251e, 0x293d3526, 0x48020228, 0x0216b0fe, 0x50011602, - 0x40210583, 0x84058370, 0x8bc02004, 0x02882317, 0x19836816, 0x01210482, 0x23368330, 0x1f01011f, 0x54834c83, 0x121f0427, 0x1f1f0113, 0x206a8301, - 0x07e15ae0, 0x08876020, 0x48200787, 0x4207865b, 0xc03105c3, 0xc0010002, 0x23001100, 0x63003f00, 0x00007700, 0x266d1801, 0x55152010, 0x99631047, - 0x17162105, 0x2405bb48, 0x06070615, 0x07f25307, 0x44373521, 0x3023053c, 0x18313031, 0x830b7255, 0x2013831f, 0x20088335, 0x82518611, 0x0706210c, - 0x49833e82, 0x490d8c57, 0x82180f46, 0x02220919, 0xce5b110d, 0x0e112307, 0xf8833001, 0x1d010122, 0x09800b19, 0x01011d36, 0x301f2001, 0x010d0e14, - 0x0f011e02, 0x021e010f, 0x140e0d01, 0x200d1647, 0x0fde4940, 0x080a4c18, 0x101aa524, 0x2c421c15, 0x151c2507, 0x70a51a10, 0xa5214e83, 0x37dc1901, - 0x2178830f, 0x5a8360fe, 0xd30c2129, 0x0f01010f, 0x83210cd3, 0x3f641874, 0x0f574108, 0x2010f648, 0x0f4e6933, 0x84251721, 0x49152011, 0x3626074c, - 0x34373637, 0xd14a2627, 0x05df5605, 0x16171622, 0x4a05216f, 0x845b07ef, 0x31302507, 0x13353130, 0x4c6f518a, 0x18162005, 0x4508dbd2, 0xf8900530, - 0x8390fe21, 0x0e0121b4, 0x21095441, 0xd483020d, 0x5c41f584, 0x48a02013, 0x5d410727, 0x0c1a4b08, 0x200fb841, 0x412e8320, 0x74831154, 0x2205bb41, - 0x41301f20, 0xff21115c, 0x3b958400, 0x21140e0d, 0x010f330c, 0x0c330f01, 0x02000021, 0xc1ff0000, 0xc0010002, 0x4b003400, 0x4b089f58, 0x172305cf, - 0x4b010f16, 0x9a580532, 0x05cc521e, 0x300fdf47, 0x1b1b0100, 0x0e932f29, 0x0d0d1110, 0x1d070304, 0x08685a12, 0x2b161458, 0xa00a0a4a, 0x0b040308, - 0x09053446, 0xe0200a8a, 0x7527ff83, 0x100b0b0b, 0x573a1010, 0x042e1cbb, 0x07800707, 0x69010a0a, 0x0607080b, 0x09850880, 0x21068759, 0xe382c001, - 0x00102c08, 0x00240018, 0x13000032, 0x21171415, 0x36013f36, 0x21272635, 0x15060722, 0x17162105, 0x27262721, 0x17161707, 0x34353633, 0x5c162127, - 0x172305d1, 0x82323316, 0x37600827, 0x01050023, 0x26080561, 0xfe150207, 0x09090e97, 0xaefe6001, 0x54012812, 0xe2020b2f, 0xb40a0c75, 0xbdfe0f03, - 0x10a20808, 0x06010606, 0x06080a05, 0x930b144e, 0x190ea001, 0x26090a19, 0x02150907, 0x600e0909, 0x0f3f2a36, 0x07458a12, 0x230f0f0a, 0x7605051f, - 0x09242421, 0x4e060707, 0x03001913, 0x2608535d, 0x00370023, 0x6200004c, 0x32250911, 0x16373617, 0x09621817, 0x27222109, 0x2205bf60, 0x52072306, - 0xa18405c0, 0x2b262726, 0x010f2201, 0x3320aa83, 0x1521ba83, 0x6b258214, 0x3f200598, 0x2a05e96d, 0x1b121201, 0x24131118, 0x1a111324, 0x0808f646, - 0x20111632, 0x09101009, 0x10161120, 0x1f111030, 0x0e0a2016, 0x3b0a0a12, 0x152a150f, 0x13053c0f, 0x2b2a2b1d, 0x0f0d961d, 0x68fe160f, 0x010e0f16, - 0x3001960d, 0x2507625e, 0x02021d0f, 0x0d870f1d, 0x0d300d22, 0xd0220282, 0x42820818, 0x420f0f39, 0x03431010, 0x01011f60, 0x140fa91f, 0x010f0f16, - 0x14160f0e, 0x6600a90f, 0x0d240bcf, 0x36001c00, 0x3637e782, 0x37363137, 0x16171621, 0x11211117, 0x010f2605, 0x06072627, 0x8216011f, 0x052721c9, - 0x33231c84, 0x18352115, 0x3e0fd19e, 0x0e0d0160, 0x14200114, 0xfe010d0e, 0x11390180, 0x112f6f11, 0x400e0e11, 0x0e801111, 0x8367fe0e, 0x0110221d, - 0x08cf6bc0, 0x2984fe20, 0x4b700121, 0xd0260811, 0x0e2f3001, 0x03826f0e, 0x40111128, 0x11800e0e, 0x1b83d111, 0x6b808021, 0x00210d97, 0x2eb38203, - 0x013f0200, 0x00340080, 0x009e0069, 0x82360100, 0x95af18a9, 0x1613222f, 0x2232af17, 0xb3351736, 0x0e012334, 0xae181312, 0x25202f77, 0x62b130af, - 0x01131229, 0x190c0c7a, 0x18180201, 0x272509b0, 0x02180d0f, 0xe0fe1901, 0x0e2131a9, 0x2231830c, 0xa9900c0c, 0x22648532, 0x82000c0c, 0x00043000, - 0x01c0ff20, 0x00b0019f, 0x00320011, 0x75560044, 0x052c1367, 0x36313736, 0x3316011f, 0x36013f32, 0x2f057c68, 0x0706010f, 0x26352315, 0x2726012f, - 0x011f3726, 0x0afe5918, 0x3f231082, 0x5e371701, 0x5b64089c, 0x01272a05, 0x14140128, 0x14141f1f, 0x08078701, 0x0a00ff36, 0x240e1010, 0x29333329, - 0x10100e24, 0x02030a0a, 0x1714250d, 0x241417c0, 0x0a03020e, 0x181a3c5a, 0x100c0c0c, 0x0b300c10, 0x32080101, 0x08323d81, 0x300b0101, 0x0c251183, - 0x011a180c, 0x834c8b68, 0x83392054, 0x1e1a2836, 0x020a1a1e, 0x820e0d03, 0x0f1b2f51, 0x0a24240a, 0x100a1b0f, 0x35b90e10, 0x3a851826, 0x0e0a302d, - 0x35480c0f, 0x0f0c4835, 0x85300a0e, 0x25192262, 0x08935000, 0x0a00b62e, 0x40002e00, 0x00005200, 0x37362101, 0x17230182, 0x52011f16, 0x5b510520, - 0x012b2307, 0xc4541415, 0x27222106, 0xe482f182, 0x35013b22, 0x4711a150, 0xde620586, 0x0001320b, 0x1a0300ff, 0x0c0a2c1a, 0x8075070b, 0x1b121201, - 0x05574a20, 0x1111202b, 0x29291f20, 0x292a2c2d, 0x230b821f, 0xd0fea0e0, 0x2010e25d, 0x0f594f50, 0x3800012b, 0x061e2e2e, 0xa90a0302, 0x09f64c20, - 0x24264030, 0x0e1b1b23, 0x1b0e0f0f, 0x2624231b, 0x6947fe40, 0x6f3f8708, 0x628708c9, 0x0cab6c18, 0x5e004c2c, 0x7e006d00, 0x00008d00, 0x8a5f2213, - 0x17062808, 0x17363716, 0x82161732, 0x830b8211, 0x1837200d, 0x2508598d, 0x36372627, 0x13833633, 0xed842720, 0x05823520, 0x25822320, 0x0aa67418, - 0x48273621, 0x765c0b54, 0x36072105, 0x23222e83, 0x48820726, 0x37361722, 0x08846d82, 0x82323321, 0x3736250c, 0x06172326, 0x08083d5a, 0x2207263a, - 0x0203ad07, 0x2211022e, 0x0114341f, 0x2a070402, 0x21263938, 0x06371c1c, 0x38030202, 0x14141e36, 0x0338351f, 0x37060202, 0x26211c1c, 0x062b3839, - 0x14010204, 0x11221e35, 0x03313482, 0x080d0209, 0x311c1c08, 0x081c1c31, 0x09020d08, 0x0f4a41a3, 0x0a9a6708, 0x130b1e02, 0x060e0d15, 0x0a221516, - 0x252c6a07, 0x140a0603, 0x14161614, 0x03060a14, 0x0b8b2b26, 0x070a021e, 0x1615220a, 0x150d0e06, 0x02c00113, 0x2128472f, 0x341e1104, 0x04060203, - 0x3d3a0126, 0x03103030, 0x09010207, 0x1a1a121c, 0x01091c12, 0x10030702, 0x3a3d3030, 0x06042601, 0x1e340302, 0x28210411, 0x20822f47, 0x2626242e, - 0x01011a1b, 0x26261b1a, 0xfe010924, 0x3610ca5f, 0x1c161292, 0x03010c28, 0x1924242b, 0x62010c0a, 0x130b0c11, 0x8206060b, 0x110c3004, 0x161c28f6, - 0x190a0c12, 0x032b2424, 0x82000c01, 0x47032000, 0x1d2c0843, 0x5e003700, 0x14130000, 0x33163117, 0x5205904f, 0x2621071b, 0x24018327, 0x1d060722, - 0x8b1d8801, 0x2019821b, 0x09395215, 0xfa671520, 0x1523210b, 0x9a4b4b84, 0xc0352407, 0x4e0e0909, 0x084a05d1, 0x26012405, 0x7f414127, 0x362206b9, - 0x8a4f2425, 0x36022706, 0x090e5236, 0xe3496009, 0x068c6c08, 0x07820220, 0xa0461020, 0x0e142508, 0xa001010d, 0xbd702782, 0x05094305, 0x41415024, - 0x46832627, 0x0f826020, 0x25240123, 0x23168536, 0x02363652, 0x3b887182, 0x193de021, 0x880a6b6a, 0x276f8367, 0x000300e0, 0x01c0ff00, 0x00250182, - 0x00300023, 0x3f41183d, 0x35332108, 0x08df6018, 0x1526d484, 0x37363521, 0x16853736, 0x11210722, 0x08c35218, 0x06171123, 0xae441807, 0x80232108, - 0x80208182, 0x3020ed85, 0xfe20b283, 0x82053567, 0x82802011, 0x0e0d2464, 0x83a0fe14, 0x0f502416, 0x7c0f0101, 0x01210511, 0x201c82c0, 0x07da4320, - 0x30209483, 0x11833984, 0xf141c020, 0x10012209, 0x21318740, 0x9219010f, 0xb7c10837, 0x37362126, 0x21272635, 0x0121b7ab, 0x21bd8320, 0xb9abe0fe, - 0x32834020, 0x00220482, 0x4f4b0007, 0x00263707, 0x0035002e, 0x0041003c, 0x004b0046, 0x33360100, 0x14151716, 0xc8430507, 0x37162b05, 0x36373625, - 0x2726013d, 0xef762726, 0x3627320b, 0x0f061737, 0x37172701, 0x26071716, 0x06011f27, 0x24128207, 0x27071707, 0x3c048937, 0x07055d01, 0xfe0d0215, - 0x060517ab, 0x18190f0e, 0x23540118, 0x2a021413, 0x252b402b, 0x0813871b, 0x0e331b21, 0x07091410, 0x2e59150d, 0x082e0a0d, 0x033d1d0f, 0x02093e07, - 0x3d1e3c56, 0x1e3d6c1f, 0x83671e3d, 0x3c012804, 0x06150204, 0x83d5090f, 0x2b3a8346, 0x232217d4, 0x2b400629, 0x1117022a, 0x113c1387, 0x3d040951, - 0x3e080402, 0x0d0a2f35, 0x3b070f2e, 0x150f1014, 0x2652100e, 0x43132613, 0x41250483, 0x13251325, 0x0b611800, 0x002b2209, 0x2af1824a, 0x06310706, - 0x16171407, 0x62313017, 0x372306c9, 0x82343536, 0x272626f0, 0x31060706, 0x830d8216, 0x772620fe, 0x173405f0, 0x2f060716, 0x06033101, 0x013f1617, - 0x36372627, 0x3637011f, 0x34082286, 0x09085b01, 0x0a0b0109, 0x11111113, 0x1111171d, 0x09060609, 0x171b1313, 0x03010809, 0x09090104, 0x08080508, - 0x273f6605, 0x0b0a0a3c, 0x067c370b, 0x870f0c0b, 0x2f0b8334, 0x1423643d, 0x26250115, 0x09ba0137, 0x1d171111, 0x13223f82, 0x31870b0a, 0x40845483, - 0x1b180824, 0x54821313, 0x2e028230, 0x0a0b0b3d, 0xf6fe370a, 0x060b0c0f, 0x0c83343f, 0x112e3c2d, 0x37272020, 0x00012526, 0x440a0000, 0x1d610863, - 0x00523005, 0x0064005b, 0x0076006d, 0x0088007f, 0x18221300, 0x290979e8, 0x07222315, 0x06010f06, 0xfd82011d, 0x82211721, 0x353724cb, 0x82012f34, - 0x012b22f2, 0xd9721835, 0x012b2108, 0x30053575, 0x36272623, 0x37360337, 0x06171621, 0x27262107, 0x83078337, 0x75172013, 0x2622052d, 0x11860727, - 0xa1013f21, 0x51372011, 0x50250691, 0x11121839, 0x05075504, 0x2605116c, 0x11041701, 0x44d91812, 0xe02206a6, 0x3e19a020, 0x20240806, 0x60010f01, - 0xfe200d83, 0x30221382, 0xdd500216, 0x85482005, 0x02162206, 0x20118718, 0x2011a278, 0x07965201, 0x0f0f2028, 0x07079618, 0x34721b46, 0x07462606, - 0x0f189607, 0x07bd520f, 0x21085d5b, 0x6a5880fe, 0x90d82007, 0x8738205e, 0x87382011, 0x20119a82, 0x09bf4800, 0x1900c030, 0x4d003300, 0x00006700, - 0x27262325, 0x53423635, 0x32332105, 0x2a05746a, 0x07161701, 0x16150706, 0x820f1617, 0x1415210a, 0x22064168, 0x84270607, 0x2133292b, 0x06151716, - 0x012f0607, 0x250a2e6e, 0x36372627, 0x20823337, 0x013f2622, 0x2005cf49, 0x224e8336, 0x84173637, 0x01233c2c, 0x021690c8, 0x0c0e0e01, 0x08064928, - 0x06240608, 0x0b284906, 0x10100606, 0x820b0606, 0x82108212, 0x28492a15, 0x010e0e0c, 0xff901602, 0x212c9400, 0x2e959090, 0x3282e020, 0x40201992, - 0x25216f89, 0x826f8605, 0x882ca085, 0x222c829c, 0x74000500, 0x2a080767, 0x000f000a, 0x001f0014, 0x1300004a, 0x06010f06, 0x33171615, 0x35172337, - 0x023b0723, 0x3b152327, 0x34373601, 0x2726012f, 0x18051723, 0x200a5e8f, 0x07434717, 0x08872120, 0x080ad77b, 0x32213721, 0x011a0611, 0x1a5e1302, - 0x1963de5b, 0x1a7d207c, 0x135e9d63, 0x061a0102, 0xfe195a11, 0x46040453, 0x0c2105d8, 0x055a4614, 0x21075852, 0x17850c14, 0xfe04042d, 0x01a00100, - 0x03035410, 0x84800213, 0x13022800, 0x10540303, 0x59208001, 0x6f5a063a, 0x06db560c, 0x6e002021, 0xb757057b, 0x28d78305, 0x002f001a, 0x006b004e, - 0x21db9285, 0x01823736, 0xe1823120, 0x3336372a, 0x26173231, 0x27313035, 0x0148e583, 0x36072305, 0xee932137, 0x27263329, 0x3f363734, 0x5f232601, - 0x2d8505cd, 0x2b056352, 0x07262726, 0x27260706, 0x22230613, 0x27824a82, 0x8b483720, 0x82068505, 0x0e16411b, 0x1c173a3d, 0x0e010201, 0x110ed263, - 0x1a010e11, 0x0c5a1106, 0x11110c0f, 0x06bd0302, 0x41cefe07, 0x3a080f25, 0x0b0230d2, 0x0581100a, 0x33040605, 0x02011f1f, 0x44452d2c, 0x07022d2d, - 0x26170b06, 0x0c0e0a0a, 0x164d1e1a, 0x1716231b, 0x160c0b01, 0x0e0f0f03, 0x0224010e, 0x0d010202, 0x41170505, 0x1b380c4c, 0x01010219, 0x0c188048, - 0x5401010b, 0x02400110, 0x0211100a, 0x090a4b03, 0x2c0d5a41, 0x1b1b4c36, 0x044f191c, 0x33312e04, 0x076a562a, 0x15150f3d, 0x08242d16, 0x1f100e08, - 0x0ff3fe1b, 0x11251415, 0x041b1313, 0x12121313, 0x82032a01, 0x1b1a2400, 0x8200111a, 0x82012000, 0x02002f03, 0x00800100, 0x37000048, 0x16171415, - 0x4e53013b, 0x94332005, 0x37322a06, 0x34013d36, 0x012b2627, 0x25058a35, 0x1d060722, 0x05882301, 0x09001524, 0x39190e09, 0x01200a51, 0x07dc8618, - 0x8306fd44, 0x240383c0, 0x09090ec0, 0x20038620, 0x250c83e0, 0x01010f70, 0x0591700f, 0x2b8b4e82, 0x42870e82, 0x00820020, 0x0f660620, 0x002f2f08, - 0x005c0038, 0x006f0066, 0x13000078, 0xb5502736, 0x05bb5008, 0xea6f2320, 0x82262009, 0x363721c5, 0x26230182, 0x84372327, 0x1f372c28, 0x27262301, - 0x17323736, 0x84171407, 0x33152329, 0x03823335, 0x82272621, 0x05385b23, 0x010f0622, 0x45830c82, 0x306c0320, 0x23352405, 0x83331715, 0x22088246, - 0x82070613, 0x1633374a, 0x1405c917, 0x0a0a0a15, 0x05141609, 0x0e131c09, 0x161c110c, 0x0b6b0e14, 0x09993c05, 0x04150d0e, 0x161a0e24, 0x0e0c111c, - 0xa3081913, 0x0216311d, 0x080c1602, 0x8304045c, 0x20c03724, 0x0e0d01c0, 0x01040414, 0x231e1514, 0x171e1f16, 0x14151e23, 0x14833001, 0xe0c09023, - 0x30238490, 0x31160260, 0x160c071e, 0x15a00102, 0x1e14050a, 0x2768821e, 0x0c141916, 0x150e1311, 0xfe212883, 0x3b2683c0, 0x17e0120e, 0x30061011, - 0x1501151c, 0x0c11130e, 0x269a1712, 0x02161602, 0x0b0d0e0a, 0x50232583, 0x83506060, 0x0d0b3127, 0x0114141f, 0x28281b01, 0x1401011b, 0xf8fe1f14, - 0x80211583, 0x3f738450, 0x38018050, 0x0a260216, 0x00001602, 0xff000003, 0x017f02c2, 0x003700c1, 0x0041003c, 0x27350100, 0x20066254, 0x05604107, - 0x36371625, 0x8237012f, 0x013f2705, 0x16171617, 0x595c1737, 0x010f2308, 0x1c833627, 0x15232f82, 0x82270731, 0x83332019, 0x40012b04, 0x550a1485, - 0x2b0e0e17, 0xca833c1c, 0x0916a437, 0x1c3c1305, 0x0d2a2b34, 0x2a0d0505, 0x3c1c352a, 0x16090614, 0x080482a4, 0x1c3c1544, 0x160d0e2b, 0x85140a55, - 0x6f248224, 0x6f114811, 0x40018224, 0x1105314f, 0x2f2f2fa9, 0x06164d1b, 0x3c091614, 0x0a151406, 0x1d084d16, 0x1818361d, 0x081d1d36, 0x150a164d, - 0x093c0614, 0x16061416, 0x28821a4e, 0x0511a92d, 0x2f2c4f31, 0x4f4f2848, 0x7f2f4828, 0x14260d3f, 0x00001900, 0xb5822213, 0xbe821320, 0x0805d941, - 0x2736133e, 0x17212326, 0x21072127, 0x0a0a0e20, 0x16053202, 0x1efd1f16, 0x32051616, 0x0e0a0a02, 0x133840fe, 0xfe137601, 0x0ba001b0, 0xa9fe0f0b, - 0x0113121e, 0x1e131201, 0x0b0f5701, 0x8080c00b, 0x340cf746, 0x007a0058, 0x00a00095, 0x06070100, 0x1716011d, 0x36013f32, 0x2307823b, 0x06010f14, - 0x15200282, 0x1d260783, 0x16171401, 0x19823633, 0x1f323323, 0x22098201, 0x8226012f, 0x3637290c, 0x17163337, 0x22230706, 0x4706fb45, 0x0622072d, - 0x26821415, 0x42013b21, 0x132305a1, 0x82222326, 0x21048430, 0x2b83012b, 0x1f860720, 0x14171625, 0x82373617, 0x07062257, 0x083b5731, 0x82272621, - 0x445a8212, 0x252005ff, 0x0809fd68, 0x210a016b, 0x040b0109, 0x04032a03, 0x03010a01, 0x1a0c0914, 0x0a12040a, 0x120d0809, 0x09040408, 0x03110407, - 0x01040e06, 0x0c150c05, 0x1d110201, 0x0f01010f, 0x05080b15, 0x0c0a0103, 0x03060709, 0x06060703, 0x07171012, 0x3738020a, 0x0805ac55, 0x0c0d0709, - 0x1b0b0f11, 0x13151812, 0x011c1b10, 0x130d1013, 0x01021615, 0x192b2b36, 0x05cf5c4a, 0x8b05b35c, 0xbbfe260b, 0x0a200b0b, 0x2d04840a, 0x061a9001, - 0x010b090b, 0x01021c02, 0x8f82050a, 0x03090424, 0x9182060a, 0x0d040e3f, 0x0f010908, 0x15060808, 0x030d0305, 0x0407060c, 0x0102110d, 0x08010f0f, - 0x0a050305, 0x248c8201, 0x07030404, 0x2a208206, 0x221e1012, 0x063a3a56, 0x8204ccfe, 0x170a288e, 0x14120b0f, 0x821a0421, 0x1602288b, 0x1c050304, - 0x91642d1d, 0x25908584, 0x200a0a9b, 0x04840b0b, 0x02000039, 0x60000000, 0x2001c001, 0x27001300, 0x22370000, 0x15063107, 0x18161714, 0x210992b0, - 0x13923521, 0x20066b4d, 0x06987101, 0x210fc471, 0x1e4780fe, 0x09092206, 0x09cd4d0e, 0x73840c85, 0x00e0ff25, 0x85a001c0, 0x34132573, 0x23263127, - 0x220bd866, 0x92331135, 0x18402013, 0x8b0c6771, 0x4786990c, 0x012105db, 0x20e78380, 0x058358ff, 0x41002f2b, 0x26010000, 0x0f06010f, 0x20768402, - 0x05896607, 0x16170622, 0x31790183, 0x25058305, 0x3f273435, 0x02823601, 0x52012f21, 0x3008116b, 0x1111d101, 0x10010430, 0x2424234d, 0x03051118, - 0x270d0a0a, 0x0506221c, 0x33332b2a, 0x01021b23, 0x160d0909, 0x4d161811, 0x30040529, 0xfe280e0e, 0x105e52ff, 0x0eb92f08, 0x0504300e, 0x18164d29, - 0x090d1611, 0x1b020109, 0x2c333323, 0x22060529, 0x0a0d271c, 0x1105030a, 0x23242418, 0x0401104d, 0x28111130, 0x4251a7fe, 0x30c4820f, 0xe0ff0000, - 0x96010002, 0x00002800, 0x011f3613, 0x053f4307, 0x2f363723, 0x20038301, 0x20d18436, 0x08b67215, 0x35272408, 0x37363736, 0x32212477, 0x7003024c, - 0x03050505, 0x01045a3c, 0x34342c17, 0x01012121, 0x100cb42f, 0x82b40c10, 0x212129ec, 0x06940134, 0x034b4e0b, 0x26080082, 0x04040468, 0x044c6206, - 0x081a3f05, 0x3626270a, 0xa92c4106, 0x2ca90b0b, 0x26360641, 0x05000a27, 0xcaff0900, 0x5c01f601, 0x5627058b, 0x9c008a00, 0x5c010000, 0xe5711079, - 0x011f2210, 0x05135032, 0x16171622, 0x0d700c19, 0x84262721, 0x82352001, 0x010f2706, 0x26012f06, 0x07821623, 0x16011f2a, 0x07262707, 0x15070631, - 0x5906ae41, 0x3d87073a, 0xdd843720, 0x82059845, 0x26272113, 0xb9773d84, 0x8c9d1805, 0x08a35a0c, 0x20079241, 0x0f9b4150, 0x0201653d, 0x0114141f, - 0x0d090901, 0x131c1c0c, 0x03090a0e, 0x04090805, 0x0c070704, 0x8711121b, 0x1e230817, 0x03060404, 0x05030206, 0x0d950804, 0x01010909, 0x0c1b1211, - 0x04040707, 0x03050809, 0x130f0909, 0x8a0c1c1c, 0x05032117, 0x0e211785, 0x21178214, 0xce410001, 0x5101200f, 0x91830c54, 0xc0251090, 0x1f141401, - 0x8c628217, 0x2062874a, 0x2a188620, 0x120f0108, 0x180d0c23, 0x83951113, 0x8a2020b0, 0x0f1322b1, 0x94c98909, 0x415b2018, 0x00200f0a, 0x02330082, - 0xc0ff0000, 0xb201f101, 0x44003b00, 0x35170000, 0x56363736, 0x142a059c, 0x1732010f, 0x16011f16, 0x01820607, 0x2f262333, 0x39230601, 0x22272201, - 0x27263127, 0x17060726, 0x201d8416, 0x211d8215, 0x1182012b, 0x7a252721, 0x310807d9, 0x2e2e0100, 0x0d11a94e, 0x210f010d, 0x0d1d1d25, 0x05050831, - 0x04231912, 0x11211a29, 0x05090a14, 0x09172d05, 0x13060c0d, 0x30261f1f, 0x0a0a0106, 0x9984eb10, 0x0808055f, 0x53931032, 0x3c1c4141, 0x11090a06, - 0x15160a12, 0x18812214, 0x18121819, 0x261f0101, 0x0d020206, 0x09060c27, 0x1313200d, 0x0b094702, 0x010b0a10, 0xf0140e0d, 0x2107e14d, 0xcf830100, - 0x01000230, 0x002700c0, 0x26033700, 0x34353435, 0xeb763637, 0x03152606, 0x27260706, 0x82ce8203, 0x320589cd, 0x014b4c27, 0x010c0808, 0x09080dc6, - 0x0f0f044d, 0x821d3d04, 0x1c052105, 0x042a0583, 0x0f051c1d, 0x018f050f, 0x0082020d, 0x08080c30, 0x020d0809, 0x0f33fe03, 0x010f0101, 0x06829050, - 0xb0710e22, 0x0f220582, 0x058270b0, 0x074d0e20, 0x082a080a, 0x15000f00, 0x3b003500, 0x15010000, 0x36373621, 0x011f3237, 0x16171635, 0x33052317, - 0x37362315, 0x21352317, 0x33152315, 0x8a820615, 0x41182320, 0x152b0890, 0x26272623, 0x35333527, 0x82333521, 0x40013b2b, 0x3e27f1fe, 0x10104c3e, - 0x2d2d3720, 0xbefeb01f, 0x1d016042, 0x400140a2, 0xfa83c040, 0x01b02b08, 0x1b1b1212, 0xb0011212, 0x010d0e14, 0x422001c0, 0x0160011d, 0x223b7e9e, - 0x7e020122, 0x1f1f0d79, 0x4680202e, 0x8080803a, 0x21835020, 0x494f8020, 0x83802007, 0x2050243d, 0x42463a80, 0xc02d0907, 0x1900c001, 0x00002f00, - 0x26272125, 0x82b38335, 0x1f162682, 0x3b363701, 0x26b98301, 0x05010f14, 0x41313734, 0x2b08054f, 0x0714011d, 0x22212306, 0x013d2627, 0xe0fe6001, - 0x2702053b, 0x32043b28, 0x200d2626, 0x031e1411, 0x0111121b, 0xc0fe4f11, 0x010e0909, 0x3b065346, 0x090ee0fe, 0x13cd4009, 0x27283b14, 0x1e1d0102, - 0x17147e31, 0x1b111201, 0x40561219, 0x8605ce45, 0x83202028, 0x41042093, 0x1a2b08cb, 0x41003500, 0x00005c00, 0x42070613, 0x172b0576, 0x17161516, - 0x27263736, 0x82012f26, 0x26352304, 0x3a510727, 0x080f4905, 0xcf783320, 0x05212108, 0x24087755, 0x26273523, 0x2c439727, 0x01021658, 0x010d0c0d, - 0x0206060c, 0x200b8b16, 0x06877838, 0x1b29c027, 0x3010011b, 0x052c621f, 0xc0fe3024, 0x44556001, 0xa0102108, 0x3f89338d, 0x02c0012e, 0x11111d16, - 0x080a010a, 0x02160c08, 0xc0230c8c, 0x840e0909, 0x1b012355, 0x3462291b, 0x44402007, 0x6021073f, 0x8a2e8ee8, 0x00003c3b, 0x01000400, 0xfe01c0ff, - 0x10009101, 0x34002300, 0x00004600, 0x23070613, 0x46262722, 0x172705e8, 0x32021f16, 0x18161737, 0x2709117d, 0x3316013f, 0x27262337, 0x5a058b59, - 0x23210581, 0x100e6a07, 0x26d83508, 0x080e9002, 0x1a070109, 0x0d0b281a, 0x2848070c, 0x07481216, 0x2e0d0304, 0x0d2e3535, 0x48070403, 0x90e01612, - 0x07482602, 0x280b0d0c, 0x01071a1a, 0xe00e0908, 0x230f5e44, 0x2f160501, 0x3532de82, 0x081f2c2c, 0x7d0c0303, 0x0c7d0b95, 0x14060c0c, 0x06820614, - 0x500b7d31, 0x0c7d162f, 0x1f080303, 0x0e352c2c, 0x45300909, 0xad180f34, 0x112c0ba3, 0x3b002c00, 0x5d004e00, 0x00006f00, 0x6705f645, 0x06200700, - 0x0d63dd82, 0x36312205, 0x055e4637, 0x20054446, 0x21de8316, 0x49730317, 0x05695905, 0x17013b22, 0x2205b744, 0x82373233, 0x012f263f, 0x27222306, - 0x200c8337, 0x25398227, 0x010f0607, 0x44181716, 0x01291148, 0x36365200, 0x36360202, 0x49078752, 0x3108177d, 0x241b0138, 0x0b0c0c07, 0x09020c27, - 0x1c480e08, 0x03040724, 0x1b1b180d, 0x04030d18, 0x100c2407, 0x48540d0f, 0x0209080e, 0x0c0b270c, 0x1a24070c, 0xf4423802, 0x20058505, 0xff401800, - 0x4a40200f, 0x012a1770, 0x3f102000, 0x0803020c, 0x3a823523, 0x0c3e3128, 0x08050c0c, 0x06820508, 0x07073e2f, 0x0e090931, 0x02082335, 0x103e0c03, - 0x0fea6c21, 0x290a5765, 0x003e0011, 0x005b0049, 0x91190093, 0x03201203, 0x23095768, 0x27262706, 0x2005d84b, 0x0a10463b, 0x20892720, 0x1613232c, - 0x07061117, 0x36112726, 0x3f631737, 0x35032310, 0x3f832223, 0x46860482, 0x56463320, 0x17232609, 0x2b060716, 0x356e1801, 0xb0352112, 0x200f0f42, - 0x05154a38, 0x0d130e35, 0x1e040606, 0x2019190a, 0x19192008, 0x06031f0a, 0x6a140c06, 0x1021069d, 0x07e153c8, 0x3e8ff020, 0x08127828, 0x09020405, - 0x3e830405, 0x1a0b1d29, 0x1a22221a, 0x831e0b1a, 0x0505273d, 0x05040209, 0x60851208, 0x07594718, 0xcf429020, 0xd0fe210f, 0x3506114b, 0x05050f9b, - 0x640d0b0b, 0x1313121e, 0x0d641e12, 0x05050b0b, 0xc4419b0f, 0x01802605, 0xfe160260, 0x24868330, 0x0216d001, 0x33449030, 0x06076050, 0x05011b08, - 0x5f0d0c0b, 0x14141320, 0x0e5f2013, 0x01244082, 0x0706081b, 0x2006b563, 0x20078660, 0x20008200, 0x080f5803, 0x40003b30, 0x00004500, 0x010f2613, - 0x07011f06, 0xc46c2326, 0x20078405, 0x07345315, 0x37273427, 0x36371617, 0x24078435, 0x2f36013f, 0x210c8301, 0x2582012f, 0x27010f23, 0x201d8213, - 0x31128207, 0x11e90717, 0x0e0e6011, 0x2c25105a, 0x0b0e2830, 0x1b52116c, 0x28c48207, 0x0e6c1001, 0x1012150a, 0x30228459, 0x09093759, 0x0d0d0a30, - 0x9f59370a, 0x3e483e48, 0x2e0483a6, 0x0e0eb901, 0x59111160, 0x0a151210, 0x5a106c0e, 0x092e06a8, 0x04040e09, 0x0d0a6c11, 0x252c3028, 0x2285590f, - 0x820a3721, 0x0930263b, 0xfe593709, 0x863f88a1, 0x05e766d7, 0x42001d24, 0xd7825c00, 0x31373422, 0x2905a362, 0x07141716, 0x27222306, 0xce433526, - 0x22098305, 0x70371707, 0x22220d26, 0xd8440727, 0x29248306, 0x37363734, 0x16371736, 0x3c8d3117, 0x079b5518, 0x9b82c020, 0x5b080c5b, 0x83220b24, - 0xbd8b1c68, 0x0b681d32, 0x230e0202, 0x3b3b5829, 0x0e070e02, 0x52a30c0e, 0x5b052b5b, 0x675b0c3f, 0x0aac5b05, 0x2208c45b, 0x411d68bd, 0x1c230b49, - 0x820e0c68, 0x3b022a46, 0x2329583b, 0x0b02020e, 0x06cc5b7d, 0xe05b8e82, 0x052f5f09, 0x0180012e, 0x001500c0, 0x002b0020, 0x01000036, 0x23053e4f, - 0x16171611, 0x2005f957, 0x27e68311, 0x07061507, 0x36352726, 0x3320e882, 0x01260a94, 0x131ab340, 0x4118134d, 0x0983098d, 0x1602a022, 0x20051543, - 0x21089050, 0x2d82c001, 0xcdfe1a22, 0x09dc4118, 0x58210983, 0x982f8330, 0x08002504, 0xc0ff0000, 0x1f37af86, 0x32002800, 0x41003700, 0x50004600, - 0x33130000, 0x16011f32, 0x71061115, 0x2725060e, 0x36373611, 0x938b1837, 0x23353307, 0x35023b07, 0x2515022b, 0x26312734, 0x3315012b, 0x03822735, - 0x6f132321, 0x3320079c, 0x07290e84, 0x16311714, 0x2335013b, 0x21ce8915, 0xa38700ff, 0x090e2029, 0x20204009, 0x82506050, 0x00012a02, 0x200e0909, - 0x4040a040, 0x23168480, 0x60404080, 0xd9951184, 0x2d8dc020, 0x40402023, 0x224085ff, 0x85404040, 0x82002057, 0x5c052000, 0x112808f3, 0x43003500, - 0x69005600, 0x2214cd61, 0x49313734, 0x57180517, 0x372d103f, 0x23013f36, 0x35262722, 0x1f163707, 0x06cd4201, 0x05373425, 0x4b010f16, 0x3631062e, - 0x37363337, 0x05173635, 0x26270607, 0x3726012f, 0x05b26436, 0x07161722, 0x4405085d, 0xfe200b38, 0x9f26b783, 0x170b0b22, 0xe9443c4a, 0x144e2606, - 0x14160102, 0x080d824b, 0x07572f32, 0x0a52150d, 0x090a0d0d, 0x0e430109, 0x0f050102, 0x0f59130f, 0x590f0101, 0x0f050512, 0x1106f3fe, 0x3b0e1111, - 0x0b0b0a0a, 0x06100c3c, 0x0d06080d, 0x11694c18, 0x48825020, 0x1c1c0226, 0x0e3c4619, 0x30086170, 0x1b1b164d, 0x09091113, 0x0f56e10e, 0x0953160c, - 0x28638309, 0x020f0460, 0x010c0b13, 0x0860820f, 0x0e021126, 0x08031e02, 0x3c0d0302, 0x0a0a0b0b, 0x03060b3b, 0x070e0d06, 0x20000300, 0x1f02c1ff, - 0x1100c001, 0x5b002e00, 0x200a3b41, 0x07c35635, 0xee820520, 0x26273723, 0x59f48237, 0x3f22053e, 0x08833601, 0x25270627, 0x17013f26, 0x200c8437, - 0x05894c17, 0x19021f21, 0x220bd042, 0x7c2f010f, 0x3e82060f, 0x17365308, 0x0d01fd01, 0x0d15140e, 0x150d0e0e, 0x010d0e14, 0x140c26fe, 0x164b2ec6, - 0x0c286d03, 0x32090201, 0x0f161581, 0x12070c15, 0xfe2c2c0f, 0x74091381, 0x0d080912, 0x3708060d, 0x1a540202, 0x110a1818, 0x04040c34, 0x0c0c0705, - 0x06123a0c, 0x07071b06, 0x1f830a99, 0x0d120925, 0x410e0706, 0xdd3f1126, 0x45660913, 0x341d174b, 0x11100d27, 0x0a434a0f, 0x1207080a, 0x15080b15, - 0x140cc716, 0x831108cb, 0x1a112a35, 0x0a210101, 0x331b0b0b, 0x8257831a, 0x1d06285f, 0x0c121209, 0x84490303, 0x09122655, 0x050c0e07, 0x086f5300, - 0xc001402a, 0x28001100, 0x73006300, 0x18145d4f, 0x3308bf4e, 0x26273723, 0x13230727, 0x36013f36, 0x39300733, 0x03173201, 0x2405cb6c, 0x3b303132, - 0x2c048401, 0x37363736, 0x06272635, 0x07061507, 0x220b8223, 0x18262734, 0x2010da4e, 0x18198305, 0x200a024f, 0x10234f01, 0x4e186d20, 0x210807d1, - 0x20295818, 0x203b090c, 0x17060736, 0x016a160f, 0x162b3801, 0x87160202, 0x019e0101, 0x141fb701, 0x52440114, 0x1b452605, 0x09090111, 0xe44e180e, - 0x0a17330a, 0x1b33010a, 0x0605152c, 0x1f390d06, 0x18170c05, 0x064f021e, 0x5e403611, 0x0d141416, 0x14585235, 0x017e0a08, 0x18050202, 0xfe01270f, - 0x245483f8, 0x1f141401, 0x826c8308, 0x09b32604, 0x09090e14, 0xeb4e1801, 0xb059230c, 0x4f180f4c, 0x0024080c, 0x00000200, 0x25065f71, 0x0056003a, - 0xad1b1300, 0x21570e47, 0x37363805, 0x32353736, 0x34353637, 0x022b2627, 0x1d060722, 0x06070601, 0x4c272207, 0x14830544, 0x0a525e18, 0x21070622, - 0x07184318, 0x39842120, 0x2a069b4c, 0x291b1b01, 0x2940c040, 0x47011b1b, 0x202005f3, 0x01351883, 0x39180f0f, 0x051e3131, 0x29222316, 0x17090304, - 0x09096002, 0x2220820e, 0x78fe1602, 0x012706d5, 0x191925e8, 0x85a00101, 0x83a02017, 0x82202040, 0x184f8300, 0x2309fd61, 0x0f0f1829, 0x31271182, - 0x15152307, 0x5afe0104, 0x08220697, 0x35850216, 0x19190124, 0xc1180825, 0x002a08b3, 0x2f00a001, 0x9b004c00, 0xa518ec00, 0x032e2ee3, 0x37011f36, - 0x1d161736, 0x26070601, 0xa25c3527, 0x07534605, 0x3930172c, 0x30313001, 0x16171431, 0xd56c3117, 0x26272a06, 0x02392227, 0x27222326, 0x2d378326, - 0x02393033, 0x37321716, 0x35323536, 0x1c823631, 0x23302323, 0x20068226, 0x241c8336, 0x06071617, 0x252a8227, 0x30070607, 0x4c950515, 0x4a853f82, - 0x16313226, 0x30023933, 0x8805e47a, 0x9731204d, 0x51a6184e, 0x0b353126, 0x07232307, 0x0f010b0b, 0x0513010f, 0x13050808, 0x01300983, 0x0602ad0a, - 0x100d0c0d, 0x0f110102, 0x010d1210, 0x27080083, 0x0e06040e, 0x090d0302, 0x01020409, 0x0d050401, 0x0c0b0101, 0x11020210, 0x0c100e0f, 0x0e05030e, - 0x0508090b, 0xf0fe0102, 0x132c398a, 0x0e01020e, 0x010f0504, 0x0a0d0102, 0x0f263792, 0x0f05020e, 0x37830b0c, 0x259aa618, 0x08030f33, 0x03082f2f, - 0x0f600b04, 0x300f0101, 0x1a06061a, 0x3b098330, 0x26040b60, 0x04030101, 0x16080703, 0x01090917, 0x01010502, 0x030d0e06, 0x03010501, 0x01211782, - 0x231a8402, 0x08091715, 0x05240d82, 0x03030e0f, 0x01201682, 0x328a0082, 0x31910620, 0x4c820720, 0x023c318b, 0x20000300, 0x2002c0ff, 0x4600c001, - 0x64005200, 0x36130000, 0x1f163117, 0x011f1602, 0x20087d45, 0x05a97507, 0x2507e67e, 0x22230706, 0xbc462527, 0x011f2908, 0x37262726, 0x35013f36, - 0x27200382, 0x372c1685, 0x3f261703, 0x012f3601, 0x010f0615, 0x0811b74d, 0x0c0cf252, 0x2a19070c, 0x0a7e181e, 0x08080102, 0x480b0d0d, 0x07112147, - 0x04110507, 0x0807560c, 0x0202161c, 0x10101c16, 0x0e11a0fe, 0x110e0e16, 0x08061611, 0x04010117, 0x4a0d0605, 0x082e2201, 0x05190f1e, 0x470c0404, - 0x1102039f, 0x02350702, 0x2501541f, 0x250b3647, 0x140e0d01, 0x2283bd01, 0x06083228, 0x0d086213, 0x67830b0d, 0x20382b08, 0x15160e1c, 0x060f4b16, - 0x16020321, 0x87060216, 0x11160e06, 0x170e0e11, 0x02080306, 0x0c0b0d03, 0x27351904, 0x06021712, 0xa083321c, 0x3da5fe2d, 0x0a4b0909, 0x22122c06, - 0x4cfe1c0c, 0x2d080f57, 0x07000000, 0xc0ff2000, 0xc0011f02, 0x4e004500, 0x60005700, 0x72006900, 0x00008300, 0x16170601, 0x36353717, 0x15171637, - 0x16173637, 0xbc63020f, 0x22058205, 0x4322012b, 0x2727052d, 0x26022f26, 0x5c1f3637, 0x172106cd, 0xfb6a1836, 0x82162008, 0x0714223c, 0x06555327, - 0x50011f21, 0x362205b8, 0x11900737, 0x11861320, 0x43591720, 0x32332505, 0x3d36013f, 0x01262f84, 0x0b040375, 0xe6833007, 0x15172208, 0x3814070a, - 0x02040149, 0x02023005, 0x9615102e, 0x022e0f16, 0x02053002, 0x38490104, 0x150a0714, 0x33268317, 0x040b0631, 0x1b010b03, 0x1b29291b, 0x750b011b, - 0x0f01010f, 0x69610383, 0xca381908, 0x25118811, 0x02090230, 0x04820303, 0x332b3284, 0x100c0606, 0x02162815, 0x82141602, 0x0a15397a, 0x0d0e2018, - 0x472d0506, 0x0e0e2d45, 0x2d47452d, 0x0e0d0605, 0x150a1820, 0x14207b82, 0x28272583, 0x060c1015, 0x70181506, 0x182207af, 0x48842d15, 0x80207f82, - 0x50188687, 0x607d0849, 0x00012108, 0x182a2487, 0x11040503, 0x04110303, 0x2e830305, 0x5d070021, 0x0522086f, 0x67634700, 0x0100270a, 0x35272317, - 0x58181733, 0x115e08e6, 0x07e27105, 0x3736212e, 0x27343736, 0x1f141533, 0x32331601, 0x2305404d, 0x3637013d, 0x2e072450, 0x23011d06, 0x34273435, - 0x17160727, 0x4a171631, 0x378308eb, 0x18072121, 0x18105c51, 0x4108c55f, 0x2c0807b8, 0x452b0117, 0x926b4070, 0x7b291257, 0x010d0e14, 0x09090e20, - 0x0112111d, 0x01301f20, 0x201f3000, 0x132b0b01, 0x0d0d0a36, 0x3709090a, 0x8a771839, 0x0e392507, 0x4d020140, 0x7107de42, 0x0121098c, 0x08577400, - 0xde62d820, 0x87682010, 0x80012711, 0xb36040a0, 0x477225cc, 0x09092705, 0x1a0e6b0e, 0x6b83221b, 0x1a257583, 0x131a3316, 0x05e04937, 0x55533627, - 0x0c0d0b47, 0x28778309, 0x35161247, 0x0403041f, 0x9feb1803, 0x08de6310, 0x6d631820, 0x47118810, 0x01270593, 0x00a00180, 0x19330013, 0x2b154d51, - 0x31373415, 0x32023b36, 0x14151617, 0x240e0950, 0x35262722, 0x20a98200, 0x06195401, 0x076f4c18, 0x08389518, 0x09948b18, 0x984f0120, 0x058e4706, - 0xe0200c89, 0xe0201085, 0x6f492982, 0xc0012b08, 0x2800c001, 0x4b004700, 0x93825600, 0x09ef3f19, 0x16171625, 0x5b060717, 0x2f21061d, 0x073d5401, - 0x36333526, 0x21272637, 0x20050657, 0x26948223, 0x39372627, 0x82372601, 0x8233201f, 0x173808b6, 0x39300716, 0x35150702, 0x16330331, 0x23070617, - 0x37362726, 0x02021618, 0x03030816, 0x24010218, 0x05141b16, 0x01100a09, 0x090a1000, 0x161a1305, 0x19010124, 0x16080303, 0xfe2f2182, 0x01680170, - 0x2f160705, 0x162f5050, 0x8b010507, 0xd838220b, 0x7dae1820, 0xc0013408, 0x02161602, 0x14020295, 0x1a2b4623, 0x0e0f3c0f, 0x820e0d0d, 0x2b1a2506, - 0x03132346, 0x1d821882, 0x0200ff2d, 0x0d070604, 0x0406070d, 0x85050102, 0x01052409, 0x18010180, 0x550aada7, 0x2222094f, 0xfd823000, 0xff825f20, - 0x23054d50, 0x17013b16, 0x1f27fa82, 0x32331601, 0x6636013f, 0x07210666, 0x26088327, 0x16150603, 0x82171617, 0x37262617, 0x34250727, 0x05bc5927, - 0x26012b22, 0x2c821e82, 0x86600f83, 0x36172a05, 0x011f1617, 0x37363736, 0xd1411801, 0x4f500807, 0x0d280f11, 0x0c07500b, 0x040b6d36, 0x0a701203, - 0x400a0d0d, 0x13700909, 0x6d161918, 0x143b6809, 0x1d131301, 0x0c76141c, 0x01943e08, 0x070303ec, 0x05400608, 0x010f3907, 0x02064005, 0x100f0802, - 0x0228293d, 0x1c1b1c55, 0x17251015, 0x68fe0116, 0x31076e42, 0x0d0bbb01, 0x68110f28, 0x19166d09, 0x09701318, 0x5a834009, 0x12702408, 0x6d0b0403, - 0x50070c36, 0x1c1479fe, 0x0113131d, 0x21207614, 0x10fc953e, 0x0102090e, 0x01053f06, 0x8207390f, 0x0708345a, 0x28020303, 0x55013d29, 0x15080707, - 0x22231210, 0x43e0fe2c, 0x637e072b, 0xff012205, 0x05f75a01, 0x55004826, 0x6f006200, 0x19138577, 0x18083607, 0x5b08c140, 0x332c050b, 0x27060735, - 0x36023f26, 0x010f1617, 0x2005f46b, 0x08254415, 0x6b333521, 0x172d0b10, 0x33171615, 0x26353736, 0x07062327, 0x20198b37, 0x066e4a01, 0x5d05c342, - 0xc0320c20, 0x1b121201, 0x0716cb88, 0xe8e81502, 0x15030616, 0x511888d5, 0xc02008c2, 0x40200983, 0x23064e6a, 0x70400f01, 0x0d860382, 0x15899020, - 0x846b0120, 0x05434306, 0x63850820, 0xe8200585, 0x422d4083, 0x1615022a, 0x03303006, 0x2c071615, 0x206e834c, 0x206187a0, 0x205089a0, 0x20678910, - 0x59158910, 0x22080583, 0xc0018001, 0x00002f00, 0x33363713, 0x14151716, 0x1716011f, 0x07061516, 0x26230706, 0x35272627, 0x84013f36, 0x20158218, - 0x09da6817, 0x9a37343b, 0x130b0610, 0x24550f02, 0x31021414, 0x52124a31, 0x01023636, 0x09070335, 0xed481915, 0x14220808, 0x1a012526, 0x0915a201, - 0x14171302, 0x2f23510e, 0x314a332e, 0x36020231, 0x4c045236, 0x02070336, 0xac875915, 0x141c042f, 0x2b352626, 0x00020022, 0x02c0ff00, 0x28938240, - 0x00410020, 0x1f360100, 0x248a8201, 0x22010f06, 0x21938231, 0x3357010f, 0x30372307, 0x8e833731, 0x05840120, 0x31210c86, 0x06455733, 0x30820720, - 0x38082e82, 0x012f0607, 0x0e12b701, 0x2d551a2f, 0x01021e2d, 0x592e2f1d, 0x020b1d23, 0x2d560f03, 0x1e031d2d, 0xfe58302f, 0x315f1987, 0x1f021f31, - 0x014e2727, 0x040c172b, 0x234c1105, 0x080f8225, 0x62333243, 0x012b1114, 0x300c04bf, 0x2a2a1908, 0x312f0331, 0x1c112f31, 0x0810100c, 0x2f2f302c, - 0x2d2d3103, 0x0d36fe1a, 0x31343431, 0x25253003, 0x0d170d18, 0x17061112, 0x03302222, 0x33363631, 0x002c0f09, 0x089f5003, 0x2d00202f, 0x00004a00, - 0x31373613, 0x33213736, 0x4ba31832, 0x15132224, 0x05674223, 0x42067a42, 0x8242067e, 0xeaa21805, 0x30902825, 0x0f01010f, 0x180f0130, 0x2d0dffb5, - 0x1b296001, 0x0909011b, 0x0ec0fe0e, 0xb2420909, 0x1b012506, 0x4001291b, 0x01211188, 0x84369030, 0x0000234c, 0xd7820100, 0x0002e02a, 0x2100a001, - 0x26010000, 0x2406fe61, 0x17161716, 0x08075315, 0x97453520, 0x07262d07, 0x3c230001, 0x0331313c, 0x1b121201, 0x3109cd75, 0x0112121b, 0x3c313103, - 0xa001233c, 0x230e0e01, 0x1c5b3f23, 0x082e5b08, 0x23233f25, 0x46010e0e, 0x6f84059f, 0x18000b27, 0x15250000, 0x06944221, 0x4e171621, 0x21330518, - 0x27262726, 0x00022135, 0x1a0100fe, 0x58100df8, 0x83023b3b, 0x80fe216d, 0x022c5383, 0x2010d000, 0x0209a512, 0x30583b3b, 0x1b831184, 0x42008021, - 0x2c220a6b, 0x57824900, 0xc9830620, 0x27482320, 0x23352109, 0x65185782, 0x2522168e, 0x9e410706, 0xab651819, 0xbffe210b, 0x199d6518, 0x0fd0fe23, - 0x13a14101, 0x6518c020, 0x651808b5, 0x3f201aa7, 0x8212d841, 0x06734e4c, 0x8001c02e, 0x1e00c001, 0x42003000, 0x00005200, 0x20058872, 0x08af6623, - 0x37362125, 0x82113736, 0x832720de, 0x152721e3, 0x5810b87c, 0x32451120, 0x05664e06, 0xc0233582, 0x19181820, 0x1824b2ce, 0x34105856, 0x171601b0, - 0x17224022, 0x0f010116, 0x01010fc0, 0x121101c0, 0x21e9831c, 0x0f44c0fe, 0x40012107, 0x1c220983, 0x00451112, 0x08bd410d, 0xb0202787, 0x4e824584, - 0x0f204682, 0x220d7b65, 0x4f4c002f, 0x3724306b, 0x15171633, 0x06230383, 0x82152307, 0x27262203, 0x24e98235, 0x33373635, 0x26cf4e35, 0x6b432020, - 0x05df410f, 0x20255d4e, 0x14ad4320, 0xd7833020, 0x00000334, 0x0002c0ff, 0x1300c001, 0x3f003500, 0x06010000, 0xf84a3115, 0x2326250b, 0x06020f22, - 0x2007f765, 0x05204817, 0x36013f2c, 0x3130013f, 0x27373130, 0x03822707, 0x07011f22, 0x37202282, 0x01241482, 0xa0090929, 0x8405bb4a, 0x22602706, - 0x02180614, 0x5c4a6307, 0x06633905, 0x141b6c09, 0x342d4a23, 0x4b2d3443, 0x070c4317, 0x02114d09, 0xb7010c07, 0xa0203283, 0x06822485, 0x14239027, - 0x07096c1b, 0x27488562, 0x18020763, 0x4b231306, 0x4a213584, 0x25358244, 0x094d1102, 0xd3490c07, 0xff012105, 0x2a053344, 0x00450033, 0x0060004e, - 0x5a361300, 0x1f230661, 0x82171601, 0x60062096, 0x222205c3, 0xe27a012f, 0x27062205, 0x07e34826, 0x55363721, 0xf55b0677, 0x4d372011, 0x3222086e, - 0x54183137, 0x370808d6, 0x16171415, 0x1d13ef33, 0x07111116, 0x3e240c10, 0x17010222, 0x02011155, 0x1e131302, 0x17301115, 0x0807101c, 0x11142347, - 0x09071c11, 0x03040d2c, 0x51120f13, 0x4f201c29, 0x200b6047, 0x07af4ca0, 0x080ce047, 0x158b012f, 0x33150c0d, 0x0d140c24, 0x36101b24, 0x1d22140c, - 0x0c011415, 0x0c010f22, 0x1d1e1c04, 0x0f0d0c2a, 0x16133b0d, 0x010a0e15, 0x221d0105, 0x05b947cb, 0x0b4d0585, 0x8b902008, 0x02003015, 0xd0ff0000, - 0xb0018001, 0x44001500, 0x5d170000, 0x327608e7, 0x05b94c05, 0x02390326, 0x07262736, 0x262a1c82, 0x23013933, 0x15221531, 0x01870706, 0x36171626, - 0x36373437, 0x22080185, 0x01393533, 0x363652c0, 0x1c1b0102, 0x31312b2c, 0x1b1c2c2b, 0x36360201, 0x0b082352, 0x090c0a0c, 0x83010202, 0x05022700, - 0x0a0d0d0a, 0xe583010a, 0x0c090925, 0x8205090c, 0x83302017, 0x423a2b27, 0x02302f43, 0x432f3002, 0x47843a42, 0x0a0c6626, 0x070a0b09, 0x04283785, - 0x191a0e07, 0x0f272122, 0x222a3982, 0x17171e1e, 0x0203070d, 0xcb730001, 0x40022b07, 0x1700c001, 0x4f003300, 0x55660000, 0x191d2008, 0x25082349, - 0x23353335, 0x38581735, 0x09fb6b05, 0x2106f341, 0x28820607, 0xa9461b9a, 0x12122307, 0x0082c01b, 0x0909e023, 0x063a4c0e, 0x090d6326, 0x430d090e, - 0x9005be41, 0x53012013, 0x602a069d, 0x121b00ff, 0xe0400112, 0x11864040, 0x31838020, 0xa0210384, 0x8a3686fe, 0x37d38212, 0xff100006, 0x01f001e0, - 0x001a00a0, 0x002c0023, 0x00490035, 0x3700005a, 0x21073045, 0x01823637, 0x2605c25e, 0x07141516, 0x42212306, 0x49180890, 0x584e089a, 0x47052008, - 0x424505ff, 0x07062305, 0x19822621, 0x21212582, 0x4b881816, 0x0c3d370b, 0x01010908, 0x2f301413, 0x302f5858, 0x01011314, 0xfe0c0809, 0x8d42537a, - 0x4ff02007, 0x70200762, 0xff271187, 0x0e0d0100, 0x7c800114, 0x098408f4, 0x0f011024, 0x2b82a001, 0x1b121222, 0x20055745, 0x2f4782e0, 0x250d0303, - 0x02222225, 0x25222202, 0x03030d25, 0x60206b82, 0x30824f87, 0xa6420a85, 0x108f7908, 0x10202b84, 0x2f077c45, 0x00000010, 0xff200001, 0x01b001c0, - 0x003800c0, 0x3205cd55, 0x2326011d, 0x07060706, 0x0706011d, 0x06352726, 0x820f2207, 0x16152409, 0x6b16011f, 0x3d210500, 0x20f78301, 0x2e1c8222, - 0x07222326, 0x26273435, 0x0b11e823, 0x84130d0c, 0x0f0f24bf, 0x82020201, 0x01162bff, 0x2c062d01, 0x2536763a, 0xde830124, 0x020d132c, 0x13130e0d, - 0x110b0c0d, 0x0482c001, 0x830ca421, 0x49072115, 0x3820b283, 0x10263182, 0x3b261e13, 0x2c820527, 0x36242524, 0x4b832040, 0x0c130c25, 0x82b40c0d, - 0x20a7825a, 0x08f77002, 0x35002322, 0x2225b682, 0x1d063107, 0x209c8202, 0x249c822f, 0x21150706, 0x26948335, 0x26230607, 0x82013d27, 0x012b2492, - 0x18070603, 0x390b08b1, 0x01212726, 0x09090e00, 0x03060901, 0x22223830, 0x02000201, 0x30382221, 0x12820603, 0x0e092e08, 0x0110ef40, 0x44440f06, - 0x44448383, 0x1001060f, 0xa001e2fd, 0x020e0909, 0x05010964, 0x35351c54, 0x43424043, 0x541c3434, 0x64090105, 0x34468202, 0x1001a0fe, 0x190e0507, - 0x19030319, 0x07050e19, 0x00000110, 0x4aa38204, 0x262a05fb, 0x55004300, 0x00006900, 0xa7820613, 0x4e150721, 0x068705b2, 0x1617162a, 0x35263317, - 0x37363734, 0x21054b41, 0xb7461723, 0x37362119, 0x12cd4d18, 0x18086343, 0x2a094cf1, 0x0d0e1430, 0x010f9001, 0x85900f01, 0x0d012805, 0x0ada140e, - 0x831d1112, 0x68e02508, 0x18010f10, 0x18221d83, 0x0a8a0f01, 0x18680121, 0x320f1f60, 0x0f0a0ae0, 0x0a0a0fda, 0x271b1a01, 0x1a1b2766, 0x83c00101, - 0x01d02140, 0x2007b36f, 0x27688350, 0x1c241310, 0xe060101d, 0x40220b83, 0x548d0f01, 0xd0205f85, 0x0f056118, 0x5582cd20, 0x53845c82, 0x2f415c82, - 0x05134707, 0x7600692d, 0x00008300, 0x31151601, 0x5e010714, 0x342c0596, 0x33360137, 0x26071732, 0x010f0607, 0x07ec5018, 0x39070625, 0x4c060701, - 0x08870820, 0x82233121, 0x06072913, 0x36371617, 0x3330013f, 0x21064a45, 0x0882013f, 0x37200484, 0x1b850888, 0x74032721, 0x02210a4b, 0x6d921826, - 0x012b0808, 0x17e90127, 0x19a0fe17, 0x18182020, 0x18600118, 0x2e192020, 0x14120b0b, 0x0d0a0102, 0x050c0c0c, 0x03010205, 0x01160e0c, 0x870e0d0c, - 0x140d280d, 0x0e0e0c01, 0xa70a0a0e, 0x01fc2c27, 0x11111020, 0x181811ce, 0x87ae1011, 0xe0fe2408, 0x82a90110, 0xfe192476, 0x831717a0, 0x60013a07, - 0x0a461717, 0x0101100a, 0x0c040501, 0x0c0d0e0c, 0x0c0e1601, 0x05020103, 0x270d8705, 0x0502020b, 0x0b0b0e06, 0xfe2125a5, 0x8277837e, 0x11ce2174, - 0x08867783, 0x9f687782, 0x01802808, 0x002100c0, 0x6e000029, 0x0623063d, 0x70070607, 0x162506fc, 0x3b171617, 0x08eb6502, 0x0e820520, 0x013f3625, - 0x184f0121, 0x22097e46, 0x700e1401, 0x362205d5, 0x0a8735b5, 0xf1fe0138, 0x10100769, 0x00ff6907, 0x08082001, 0x0228293d, 0x3d292802, 0xdf550808, - 0xd280210f, 0xd2203b83, 0x74078746, 0x1124050b, 0x3d002000, 0x8308774d, 0x23112182, 0x1425db18, 0xf9493620, 0x0140241a, 0x771b1212, 0x40200554, - 0x1424db18, 0x1816f349, 0x82098a9d, 0x180020bb, 0x20111ddb, 0x17ed49f3, 0xc4830420, 0x0100022b, 0x00150080, 0x0035002a, 0x50c18d40, 0x112208a1, - 0x256e1517, 0x013d3607, 0x23262734, 0x06072221, 0x07061715, 0x36331716, 0x23272637, 0x200a8933, 0x4dc48900, 0x40200919, 0x250fb653, 0x02021610, - 0x04843816, 0x05838820, 0x04843020, 0x83058c4b, 0x09dd5f36, 0x18000121, 0x47080c4a, 0xbd600574, 0x08e26908, 0x200a277a, 0x26c38326, 0x011f3601, - 0x82141716, 0x0714269d, 0x2f222706, 0x22a18201, 0x84352726, 0x37262605, 0x17323336, 0x26138236, 0x33370137, 0x82171615, 0x08c882c2, 0x23070620, - 0x35262722, 0x3f363734, 0x01373601, 0x050d14ac, 0x2a0c010e, 0x0c050901, 0x070b070d, 0x9f83490f, 0x11117c08, 0x1f0e0404, 0x08232b25, 0x1209050e, - 0x285dfffe, 0x140e0d01, 0x5a3d184c, 0x123b6b5b, 0x090a0d0d, 0x1c3a3210, 0x1209bd01, 0x1d1d1a09, 0x1c412c1a, 0x0c010d19, 0x02010c18, 0x02165016, - 0x080c0c01, 0x1c1c140f, 0xfe0c1508, 0x1450baa9, 0x30010d0e, 0x012f2e52, 0x10120d0d, 0x0b040c0c, 0x0500350e, 0xc1ff0000, 0xbf01ff01, 0x32001f00, - 0x56004400, 0x00006800, 0x31072613, 0x18010f06, 0x2a07445c, 0x15301716, 0x36371530, 0x63273637, 0x1321050d, 0x83d98234, 0x23222a0a, 0x06033130, - 0x25371617, 0x11654d27, 0x102b9118, 0x11900720, 0x0d12aa39, 0x010c050c, 0x49485901, 0x2c012b2a, 0x010a0a10, 0x4a2f2e07, 0x7ee65c4b, 0x05280587, - 0x07036505, 0x7c010906, 0x4106bf48, 0x3752058e, 0x0c6e4a0c, 0x01bf012e, 0x2c100a0a, 0x492a2b01, 0x01015948, 0x0d2b5b82, 0x4a4b5c12, 0xfe072e2f, - 0x63050567, 0xfe27057d, 0x06060984, 0x4a8a6502, 0xa0180ba6, 0x30200c43, 0x490c1067, 0x002e08fb, 0x0c00c001, 0x82002f00, 0x23010000, 0x63722627, - 0x0f162705, 0x17163302, 0x25493130, 0x0c855705, 0x30373625, 0x82360239, 0x5f172026, 0x7759060b, 0x52162005, 0x16210584, 0x240e8215, 0x39272627, - 0x08c86c03, 0x16151724, 0x656e3617, 0x24198206, 0x31302726, 0x221c8223, 0x82372235, 0x8217206c, 0x16332361, 0x18823637, 0x01353908, 0x052f8040, - 0xc40a0404, 0x0504040a, 0x0680802f, 0x292a1e07, 0x01022020, 0xfe291b1b, 0x1b1b29c0, 0x20200201, 0x021e2a29, 0x54040403, 0x02121202, 0x07180709, - 0x0b070603, 0x0ce7c119, 0x11030429, 0x02110408, 0x83100e02, 0x08320822, 0x03061908, 0x140b0606, 0x09150114, 0x01010103, 0x04120a09, 0x12030807, - 0x09120307, 0x4760010c, 0x01070809, 0x09080701, 0x04042047, 0x37232212, 0x22595238, 0x38523407, 0x12222337, 0x03020201, 0x02021260, 0x03020612, - 0x190f1c0a, 0x210ad8c1, 0xc1190506, 0x03222ed8, 0xa37c0602, 0xc0013705, 0x2000c001, 0x30002c00, 0x5c005500, 0x64006000, 0x6c006800, 0x9f187000, - 0x17292fc7, 0x07273723, 0x3b161706, 0x053b4e01, 0x70323321, 0x2a0805c2, 0x012b2627, 0x22232627, 0x2223010f, 0x011f0607, 0x17333733, 0x35272307, - 0x3f332707, 0x17231701, 0x1f270733, 0x0f372301, 0x18332701, 0x3225d59f, 0x0e1c0ed5, 0x04041c0e, 0x1c370a04, 0x05090905, 0x820a381b, 0x921c200c, - 0x381b2211, 0x2302821b, 0x2a1b0e0e, 0x45203082, 0x06823582, 0x82370e21, 0x41f38204, 0xa24208c6, 0xb9c81805, 0x18b02911, 0x09301818, 0x08300807, - 0x07220282, 0x0b8c3009, 0x00823020, 0x02841f82, 0x27824820, 0x00181822, 0x04200082, 0x2e087745, 0x001a0004, 0x0035001f, 0x35230100, 0x18251533, - 0x20099774, 0x23ab1821, 0x01212508, 0x21352115, 0xc0241a96, 0x70fe8080, 0x2008c246, 0x08984ba0, 0x90016026, 0x000100ff, 0x20281b96, 0x01602020, - 0x40140e0d, 0x08842f87, 0x20e0fe24, 0x16914020, 0x23077343, 0xc001c001, 0x2729ad82, 0x00003e00, 0x1f163313, 0x0d571801, 0x36372512, 0x03210737, - 0x2908cd5c, 0x0f221703, 0x16170601, 0x4d43013f, 0x16172c05, 0x012f3637, 0x78a42326, 0x68070914, 0xfe2106d3, 0x05e14380, 0x07602608, 0x01841409, - 0x0d021580, 0x13f6130e, 0x15020d0e, 0x50070ac0, 0x11110e0e, 0x16160227, 0x11112702, 0x07500e0e, 0x2085820a, 0x06f16411, 0x27059041, 0x8001110e, - 0x0d13adfe, 0x13250082, 0x07405301, 0x27288350, 0x02168627, 0x27861602, 0x50213e83, 0x0a1f5507, 0xa1001a21, 0x0aab66bf, 0xbc46bfb1, 0x52beaa09, - 0xc0950a8d, 0x23086b53, 0x00be01c0, 0x3d28c383, 0x00005a00, 0x3f363513, 0x2205eb46, 0x54143115, 0x263805a0, 0x35272627, 0x17313534, 0x16311716, - 0x36373617, 0x15233537, 0x3f161707, 0x6f05ad6f, 0x3520069e, 0xf5551883, 0x0160311c, 0x0b0b6014, 0x01011460, 0x36362524, 0x30012524, 0x3c077e4b, - 0x0c530fa0, 0x2438530c, 0x09090124, 0x0d7efe0d, 0x24010909, 0x104f3824, 0x07010107, 0x21028210, 0x0a8a0107, 0x3a400131, 0x04240915, 0x15092404, - 0x2804043a, 0x84242536, 0x04282350, 0x744b3004, 0x10102a07, 0x0a0a5993, 0x2b2b0d59, 0x824b823b, 0x2b3b2553, 0x13010d2b, 0x55844a90, 0x56000021, - 0x80240613, 0x3700a001, 0x2a06415c, 0x1732013b, 0x33111516, 0x18373435, 0x5c0b2576, 0x2225053f, 0x11352627, 0x840b8923, 0x80352923, 0xa00e0909, - 0x6009090e, 0x7f420782, 0x5c129207, 0xfe200746, 0x8207625c, 0x06cf4f32, 0x7e600121, 0xa0200920, 0x235a9682, 0x80022f05, 0x1100c001, 0x4a003800, - 0x6e005c00, 0xbf658000, 0x441f2012, 0x062406e4, 0x011f1617, 0x0c1d5818, 0x58183720, 0x79180c4b, 0x172110c7, 0x7e581833, 0x6d212010, 0x2391105c, - 0x2b11b366, 0x100d3e1b, 0x17530e10, 0x3c190102, 0x24064343, 0x09293c2b, 0x0677470b, 0x01e33522, 0x0e4e4a18, 0x59183820, 0x01210f8b, 0x7422a148, - 0x402a10d0, 0x400a0a31, 0x111c1c13, 0xf1436f26, 0x11802605, 0x21311c0a, 0x22828507, 0x18141fe0, 0x8309bf4a, 0x455a185d, 0x691f9f0f, 0xe03707a7, - 0xa001c001, 0x09000400, 0x13000e00, 0x00002900, 0x35231501, 0x82011d33, 0x82272004, 0x07152203, 0x200f8233, 0x39aa1811, 0x80012114, 0xc0200083, - 0x1f560584, 0x1201290d, 0xc0fe1b12, 0x80806001, 0x40221d82, 0x02828080, 0x56000121, 0x00251348, 0x00001500, 0x088385ff, 0x23001128, 0x47003500, - 0x6b005900, 0x8f007d00, 0xb300a100, 0xd700c500, 0xfb00e900, 0x1f010d01, 0x43013101, 0x67015501, 0x89797901, 0x3732210b, 0x18055a54, 0x20111287, - 0x10765411, 0xd3661520, 0x20358708, 0x20239013, 0x91239011, 0xa2072047, 0x906ba423, 0x9025207d, 0xa2012059, 0x20fb9123, 0x20479037, 0x20479005, - 0x9123a201, 0x0c725547, 0x4a069246, 0x0b910b72, 0x1291c020, 0x49bd1191, 0x18071347, 0x180d2c6d, 0x850d395e, 0x8c8c8c0d, 0x7243b60c, 0x40200c1f, - 0x8b0d777b, 0x0cf64b0d, 0x8c00ff21, 0x8bc02028, 0x8c1b8d0d, 0x8c012036, 0x8d1a8c5f, 0x0d9b5935, 0x288d358c, 0x957c1a8c, 0x8c198c0c, 0x8c01200c, - 0x8c1a8cbc, 0x0000230c, 0xdb430800, 0x001b3408, 0x003f002d, 0x00630051, 0x00870075, 0x37000099, 0x64311714, 0x1123051b, 0x43213736, 0x2124078f, - 0x07060706, 0x210adf7c, 0x23851714, 0x8709f17c, 0x7d232011, 0x23990803, 0xf3422720, 0x11954310, 0x23903520, 0x0123de86, 0x4250010f, 0xfe250533, - 0x161722b0, 0x0c1d4101, 0x6a0cb141, 0x2f82097a, 0x2c43198c, 0x11f4420c, 0x00201185, 0x01210685, 0x7cbd1850, 0x17162308, 0xe318fe22, 0x3a970cfb, - 0x420c1459, 0x95420b44, 0x0c28420c, 0x2905db49, 0xb0013f02, 0x35001100, 0x976f5000, 0x1f362214, 0x053c5701, 0x37021f25, 0x59163336, 0x212a05fe, - 0x3f262722, 0x33373601, 0x766e2537, 0x09747405, 0x4e072721, 0x2624050f, 0x0117023f, 0x08108776, 0x0adafe2a, 0x1b171415, 0x1e1f2732, 0x224f230d, - 0x0910110b, 0x0a080960, 0x1200ff12, 0x10070909, 0x1720130a, 0x0714b0fe, 0x01127053, 0x3d2cc385, 0x0b0c0425, 0x05060d0d, 0x200b3004, 0x19093d57, - 0x08080071, 0x08071422, 0x01012b26, 0x67251616, 0x010d2e22, 0x1010a00f, 0x0f0f010f, 0x01112010, 0x150a8c1e, 0x1508305c, 0x22064f44, 0x836f1a4b, - 0x224e8346, 0x500e2190, 0x38220af7, 0xf9824a00, 0x4e072221, 0x272105d6, 0x06a76c23, 0x82161721, 0x820720f7, 0x331623ad, 0x32503332, 0x33172a05, - 0x35363732, 0x27263534, 0x262d8226, 0x27343537, 0x50032326, 0x2008102f, 0x02030301, 0x0b222242, 0x03720b04, 0x0109080c, 0x4336350e, 0x090d161a, - 0x03030c08, 0x0a222241, 0x20178505, 0x4116890f, 0x01210bbb, 0x8b30a2c0, 0xe0fe215f, 0x320ca75a, 0xff1f0005, 0x012002c0, 0x002400c0, 0x00530041, - 0x8281006a, 0x4a1620dd, 0xca8209e2, 0x7e353721, 0xc782051c, 0x0e842720, 0x013f362f, 0x37011736, 0x32013b36, 0x1633011f, 0x06eb5817, 0xdb182320, - 0x332108fe, 0x10404917, 0x18072521, 0x420b41f1, 0x17250510, 0x06250716, 0x05d0652f, 0x1f161722, 0x37215182, 0x05e76a36, 0x0c140222, 0x83075b7b, - 0x8b602007, 0x18022e0c, 0xfe0c0ea0, 0x11090c57, 0x0c09113e, 0x07db411b, 0x0887c020, 0x54751b21, 0x012c0f47, 0x0b38271f, 0x80070304, 0x040a0a0a, - 0xfe3b0a8a, 0x610b0cad, 0x18010115, 0x131b1a15, 0x1b130a0a, 0x0117161a, 0x01601501, 0x760f0ab9, 0x39220c82, 0x5d877613, 0x602b0783, 0x03200619, - 0x12d7fe09, 0x83120e0e, 0x08164e6b, 0x68200884, 0x1e832a8b, 0x0a5a8229, 0x0870070b, 0x880b0807, 0x0a3b3808, 0x1e17640a, 0x0211161d, 0x0a0a1402, - 0x11020214, 0x171e1d16, 0x7d000064, 0x21200943, 0x36250c82, 0x1f363137, 0x052c5c01, 0x6b070621, 0x3f2105d7, 0x08128201, 0x3637364d, 0x3f262737, - 0x065b0101, 0x580f0e0d, 0x3c01021b, 0x7d65653c, 0x03180a1d, 0x600f0606, 0x3528131b, 0x3119292a, 0x01280915, 0x06060fa7, 0x1d0a1803, 0x3c65657d, - 0x1b02013c, 0x0d0e0f58, 0x15092806, 0x2a291931, 0x1b132835, 0x45020060, 0x1522086b, 0x63503000, 0x2726220d, 0x05467426, 0x2607212a, 0x1f06010f, - 0x27070601, 0xf24c0885, 0x37362105, 0x47559482, 0x0fa34905, 0x07105b31, 0x190a0514, 0x0a14361a, 0x030e300e, 0x750f040c, 0x012405aa, 0xa0012c0e, - 0x1b252c8f, 0x61011212, 0x35278203, 0x1a36140a, 0x14050a19, 0x0e2c1007, 0x1d1e0101, 0x0f3f3233, 0x0f460c04, 0x02c02d05, 0x00c00180, 0x002c0014, - 0x005c003e, 0x20051d58, 0x20af8290, 0x08814221, 0x81422120, 0x26172408, 0x4b0f2223, 0x172709ff, 0x3732023b, 0x45022f36, 0x052210fa, 0x9c181133, - 0x0f7e0ab0, 0x24458405, 0x36373611, 0x3f511837, 0x6615200c, 0x0c8c0b21, 0x09d8e518, 0x07062324, 0x5b550001, 0x05a45b09, 0xdc38ec83, 0x070d0d07, - 0x0b081138, 0x0940080b, 0x500f0706, 0x070e9030, 0x8c600706, 0x210b8d43, 0x254df0fe, 0x05204107, 0x25081a61, 0x01010f08, 0x0498100f, 0x8a500121, - 0x83c0201d, 0x1be0246e, 0x88011212, 0x0b6b3008, 0x0916540b, 0x0d0c5009, 0x0c0d010d, 0x440b900c, 0x20220b41, 0x6c4600ff, 0x40202106, 0x01203587, - 0x8905535d, 0x94682055, 0x8910200a, 0x092b5e92, 0x31052f58, 0x0042002b, 0x07261300, 0x16011706, 0x25273637, 0x82183337, 0x2b2d0c03, 0x06233101, - 0x1727010f, 0x30313530, 0x211c8231, 0x48451327, 0x183b2007, 0x29091782, 0x27072737, 0x100c0f13, 0x05835002, 0x2cedfe3e, 0x07030667, 0x0b0e0d06, - 0x0310040a, 0xa8100909, 0x090718b8, 0x750aa871, 0x33245e21, 0x2a4ed385, 0x112a2606, 0xbb011e36, 0x9806190c, 0x9ed72608, 0x0b0b0d18, 0x2e3d8304, - 0x0c0d0f40, 0x59261701, 0x73280184, 0x41e9fe4a, 0x3e220b7f, 0x3352692b, 0xff272805, 0x010f02e0, 0x822200a0, 0x005e28c5, 0x17000062, 0x44222306, - 0x112a0aa8, 0x33363734, 0x15161732, 0x74713711, 0x010f2306, 0x92763413, 0x271b8409, 0x2b060714, 0x26272601, 0x24068e76, 0x021f1617, 0x05ed4616, - 0x23012f22, 0x3309f646, 0x33073736, 0x0ab80727, 0x580a0e0e, 0x09010109, 0x0a0d0c0b, 0x24068447, 0x0c0d0a20, 0x2113830b, 0xa6828858, 0x09158025, - 0x864a0e07, 0x280c89e7, 0x400a1360, 0x04040510, 0x2300820c, 0x07580707, 0x2c06f874, 0x0a401005, 0x14281413, 0x0a0a1614, 0x83538360, 0x01242247, - 0x0526412e, 0x24d2fe22, 0x0a260f83, 0x600b0d0c, 0x13829601, 0x13130124, 0x0b414910, 0x280a8705, 0x801101c0, 0x0c0c0c20, 0x225c8307, 0x750c0e0e, - 0x202b06ac, 0x90011180, 0x00002828, 0x41000400, 0x13251027, 0x0f222326, 0xdc671801, 0x49112008, 0x11240761, 0x16171617, 0x2005f77d, 0x05a85c17, - 0x24830720, 0x22052047, 0x6d2b2627, 0x232005e1, 0x2105eb58, 0x4088020f, 0x37883320, 0x27260226, 0x23173707, 0x25222741, 0x070e4a33, 0x6b501509, - 0x410c8906, 0x14241c27, 0x96012814, 0x210b2841, 0x2841d2fe, 0x2e012105, 0x22072841, 0x8215600a, 0x10492312, 0x6b481313, 0x410a8706, 0x05322027, - 0xe0ff0700, 0xa0014002, 0x35002200, 0x5b004800, 0x51426e00, 0x09464225, 0x21063159, 0x12b71533, 0x5f429820, 0x44a8201d, 0xf5850702, 0x86060349, - 0x06534306, 0x92580686, 0x42068606, 0xb620215d, 0x4a18cb4c, 0x0c8c0c5d, 0x41000021, 0x36280b33, 0x5e004a00, 0x00007200, 0x4e225d42, 0x46440876, - 0x08ba4b0a, 0x374113b2, 0x052f411f, 0x42313d41, 0x0b20216d, 0x43343741, 0x082e0593, 0x2200a001, 0x59004800, 0x00007200, 0x296e3217, 0x06072506, - 0x3411010f, 0x21051c76, 0x51711115, 0x06072605, 0x3316011f, 0x05934337, 0x83451520, 0x18022008, 0x20089b87, 0x26308235, 0x0722012b, 0x5f371506, - 0xfa440781, 0x43062005, 0x36200aa6, 0x08414518, 0x16171424, 0xc944a017, 0x0e0a221b, 0x21d882c0, 0x38411010, 0x5a302005, 0x10200674, 0x0a831382, - 0x07075e22, 0x39089b46, 0x07291101, 0x0b020208, 0x090c0d0b, 0x19011531, 0x19252519, 0x11110119, 0xd044201b, 0x0c0d251a, 0xa00a600b, 0x1809016b, - 0x210cab98, 0x534103ab, 0x09142308, 0x58830937, 0x42226083, 0x5983241d, 0x1e236183, 0x44091716, 0x434106d7, 0x00732409, 0x4c321300, 0x062505c9, - 0x012f2627, 0x07237f11, 0xc5451120, 0x36012208, 0x06ff4533, 0x16173223, 0x08af571d, 0x43022b21, 0x3b2306b8, 0x83233501, 0x3637220a, 0x07804137, - 0x26051a45, 0x31272607, 0x4d363526, 0x17230533, 0x4d010f14, 0x0120070e, 0x20224541, 0x41e78230, 0x0f830f48, 0x7f115e21, 0x07250958, 0x111b2907, - 0x073d4111, 0x0931152c, 0x0b0b0d0c, 0x07080202, 0x4641a001, 0x0fee440a, 0x0b0c0d24, 0x3d650a60, 0x0ca54e07, 0x09094026, 0x1409ab0e, 0x2508a541, - 0x17093703, 0x3f411e16, 0x1d242207, 0x835c8342, 0x00093964, 0xff200006, 0x016002c0, 0x001b00c0, 0x0038001f, 0x00490040, 0x13000063, 0x450b3942, - 0x17290ce0, 0x37173723, 0x1714011d, 0xba641816, 0x05584207, 0x0722232f, 0x23171506, 0x17163335, 0x3b010f06, 0x27068201, 0x17352307, 0x34313536, - 0x4205c65a, 0x3b6906d3, 0x013f3205, 0x43081590, 0x0504050d, 0x0c0c0c0d, 0x065a0506, 0x82078205, 0x0e04290f, 0x13150942, 0x7d131326, 0x5027c382, - 0x01161722, 0x82091801, 0x4022214c, 0x6029cd82, 0x010f2020, 0x20200f01, 0x21068310, 0x0f69f730, 0x49a92805, 0x0a0d0d0a, 0x83600909, 0x01c02606, - 0xa01301c0, 0x214c8220, 0x5c840406, 0x06205383, 0x20290e82, 0xa00113a0, 0x60802d2d, 0x83488260, 0x16242450, 0x82221511, 0x2167825f, 0x25632040, - 0x97202108, 0xaa214c85, 0x235c854a, 0xc0090960, 0x2e063749, 0x80024000, 0x11006001, 0x42003000, 0x18130000, 0x241064ea, 0x26373617, 0xb87d1827, - 0x36212209, 0x20108b37, 0x058b5623, 0x24074542, 0x07060706, 0x0f696390, 0x61177821, 0x02250894, 0x013d2928, 0x07766160, 0x01230783, 0x8fe87017, - 0x20012130, 0x58078758, 0x2321088f, 0x83348b2d, 0x210f8746, 0x2c8f232d, 0x0221d882, 0x27008200, 0xa0017f02, 0x47002500, 0x2105cd4c, 0xa4823130, - 0x355e3320, 0x22232108, 0x82058877, 0x173221cd, 0x20054f5e, 0x084e5907, 0x17212982, 0x83ca8216, 0x057f5fce, 0x08050f5e, 0x1440013d, 0x0909070b, - 0x14131910, 0x20070e0d, 0x35352b2a, 0x07202a2b, 0x13140d0e, 0x09091019, 0xd1140b07, 0x45343424, 0x23353445, 0x100e2026, 0x2b17040e, 0x5c3e3e25, - 0x243e3e5c, 0x8204172c, 0x26203010, 0x0c028001, 0x02060507, 0x34332828, 0x820a0e25, 0x0e2c0800, 0x28333425, 0x05060228, 0xcf020c07, 0x010e0f13, - 0x130f0e01, 0x090c1d13, 0x2b3a120a, 0x021d1d27, 0x271d1d02, 0x0a12392c, 0x131d0c09, 0x8020db88, 0x3f20db84, 0x9873db82, 0x010f2205, 0x5fdc8436, - 0x16220617, 0xd9823217, 0x2c05a941, 0x27012b26, 0x31272613, 0x30012f26, 0x202d8231, 0x76d68327, 0x690808f6, 0x1004cf01, 0x20d81312, 0x08080806, - 0x29302f3e, 0x02010303, 0x4231322c, 0x0f0f1001, 0x1c020110, 0x1222211d, 0x4c711f02, 0x062c3738, 0x34292a2c, 0x131e1f2b, 0x01090814, 0x021b1212, - 0x14790100, 0x30040b0b, 0x01472009, 0x29212002, 0x01020203, 0x01201f2c, 0x0a0a0202, 0x1c1c3018, 0xfea90c0c, 0x23230287, 0x1d2b062c, 0x3283011d, - 0x1b1a1b27, 0x12121b10, 0x086f5c01, 0xc001802e, 0x16000800, 0x00001f00, 0x23353313, 0x07229682, 0x4918021d, 0x352408cd, 0x3525012b, 0x2325b283, - 0xb0003315, 0x3f561810, 0x83402007, 0xc0c02c08, 0x2d028001, 0xb010442d, 0x83c00001, 0x20202208, 0x22208780, 0x84202080, 0x22668222, 0x6c000500, - 0xbf3205eb, 0x2e001c00, 0x44003900, 0x00004f00, 0x26273601, 0x6d890507, 0x210ac16e, 0x316b0325, 0x83878308, 0x36252223, 0x05336737, 0x07272622, - 0x17200a89, 0x012a0a89, 0x080414ef, 0x0e53fe16, 0xe6841a0b, 0x2309974e, 0x7f1401e5, 0x260fdf42, 0x0f01e0fe, 0x84010f60, 0x01102304, 0x0a83800f, - 0x0a820482, 0x012d1587, 0x14160891, 0x09047e04, 0x6c042113, 0x0d1b4d90, 0x9ffe5122, 0x200ff142, 0x05696990, 0x73068c73, 0x088308ef, 0x290bd766, - 0x002c001a, 0x0050003e, 0x53182500, 0x86181964, 0x6c18113e, 0x7e541174, 0x00022111, 0x17b44818, 0xb318ff20, 0xf35910ad, 0x08cf450f, 0x0e090923, - 0x634918c0, 0x01602117, 0x0ea8b318, 0xae5a2020, 0x0c2a460f, 0x4b5d0020, 0x01802208, 0x06f341c0, 0x00005a25, 0x71272613, 0x05820568, 0x011f1425, - 0x42011d16, 0x342a0969, 0x3d36013f, 0x26273401, 0x04822327, 0x07222324, 0x08891506, 0x77153521, 0x0a9509e6, 0x16027031, 0x14100216, 0x0e010d0e, - 0x0d010e04, 0x86e0140e, 0x0e0e230b, 0xfb471014, 0x065a4d05, 0x0fa03025, 0x980f0101, 0xa8012604, 0x16020216, 0x21428348, 0x4b82149c, 0x515c1421, - 0x088207d4, 0x140e0422, 0x63821482, 0x00820920, 0x39410e20, 0x88482105, 0x2007b96b, 0x41089040, 0x02270807, 0x00a00180, 0x6f380024, 0x6918072b, - 0xd64b083d, 0x4421200a, 0x4d5307ee, 0x33052205, 0x22088235, 0x49333736, 0x1d220887, 0x5e182701, 0x6f6d0aa8, 0x05887409, 0x2a0b2546, 0x17160100, - 0x44500122, 0x4a022d2d, 0xfe2107a0, 0x07c241e0, 0x17221027, 0x40010116, 0x05f54680, 0x0e090923, 0x6dc88240, 0x09230b2e, 0x5260800e, 0x01210fc9, - 0x23358350, 0x442d2d02, 0x6306d356, 0x6983070b, 0x60f0e022, 0xdb5cfa83, 0xe0c02106, 0x06865386, 0x4a18fe20, 0x00271054, 0x01160000, 0x8201000e, - 0x22028307, 0x8617001a, 0x0001240b, 0x86310019, 0x0002240b, 0x86920005, 0x0003240b, 0x8673001f, 0x8a04200b, 0x00052423, 0x86c30032, 0x00062417, - 0x865d0016, 0x000a240b, 0x8697002c, 0x820b200b, 0x8600205d, 0x0010240b, 0x864a0013, 0x8411200b, 0x0003245f, 0x82090401, 0x01342384, 0x0b850023, - 0x32000124, 0x0b865701, 0x0a000224, 0x0b861902, 0x3e000324, 0x0b86db01, 0x238a0420, 0x64000524, 0x17867b02, 0x2c000624, 0x0b86af01, 0x58000a23, - 0x24538702, 0x002e000b, 0x241786f5, 0x01260010, 0x200b8689, 0x085f8311, 0x74746825, 0x2f3a7370, 0x6e6f662f, 0x65776174, 0x656d6f73, 0x6d6f632e, - 0x79706f43, 0x68676972, 0x63282074, 0x82462029, 0x4120211c, 0x0b8b1d85, 0x2036202c, 0x65657246, 0x6c6f5320, 0x18926469, 0x36861283, 0x28833620, - 0x28972d20, 0x2d254185, 0x2e322e36, 0x08238430, 0x65685430, 0x62657720, 0x6d207327, 0x2074736f, 0x75706f70, 0x2072616c, 0x6e6f6369, 0x74657320, - 0x646e6120, 0x6f6f7420, 0x74696b6c, 0x7265562e, 0x17826973, 0x3037372d, 0x3330302e, 0x32363039, 0x8c282035, 0x8576208e, 0x203a2122, 0x29246184, - 0x74006800, 0x70260182, 0x3a007300, 0x01822f00, 0x6f006624, 0x11826e00, 0x77006124, 0x15826500, 0x6d006f22, 0x2e220782, 0x17826300, 0x43006d22, - 0x70280582, 0x72007900, 0x67006900, 0x20223b84, 0x1b822800, 0x20002924, 0x39864600, 0x41002022, 0x17973b8c, 0x36002022, 0x72203584, 0x65205f82, - 0x53200982, 0x6c203f82, 0x64205782, 0x318d4998, 0x6d8d5787, 0x3d823620, 0x2d215185, 0x2051af00, 0x20318a20, 0x269d822d, 0x0032002e, 0x8a30002e, - 0x82542015, 0x20ab83f3, 0x24b38277, 0x00270062, 0x20b78273, 0x22b7826d, 0x82740073, 0x82702009, 0x00702809, 0x006c0075, 0x82720061, 0x0069220f, - 0x20118263, 0x2009826e, 0x832f8273, 0x00612421, 0x8264006e, 0x8274200f, 0x826f2017, 0x826b2027, 0x827420ef, 0x82562063, 0x8272201f, 0x8669204d, - 0x0037222f, 0x20778237, 0x2403822e, 0x00330030, 0x20078239, 0x208b8236, 0x20398235, 0x1a1d4128, 0x458c7620, 0x2d823a20, 0x5b823620, 0x2921c385, - 0x21008200, 0x00840002, 0x00dbff23, 0x8e088419, 0xfb0a0704, 0x00006d05, 0x03010201, 0x08000401, 0x0e000d00, 0x06010501, 0x08010701, 0x0a010901, - 0x0c010b01, 0x0e010d01, 0x10010f01, 0x22001101, 0x12012300, 0x14011301, 0x16011501, 0x18011701, 0x1a011901, 0x1c011b01, 0x1e011d01, 0x20011f01, - 0x22012101, 0x24012301, 0x26012501, 0x28012701, 0x2a012901, 0x2c012b01, 0x2e012d01, 0x30012f01, 0x32013101, 0x34013301, 0x36013501, 0x38013701, - 0x3a013901, 0x3c013b01, 0x3e013d01, 0x40013f01, 0x42014101, 0x44014301, 0x46014501, 0x48014701, 0x4a014901, 0x4c014b01, 0x4e014d01, 0x50014f01, - 0x52015101, 0x54015301, 0x56015501, 0x58015701, 0x5a015901, 0x5c015b01, 0x5e015d01, 0x60015f01, 0x62016101, 0x64016301, 0x66016501, 0x68016701, - 0x6a016901, 0x6c016b01, 0x6e016d01, 0x70016f01, 0x72017101, 0x74017301, 0x76017501, 0x78017701, 0x7a017901, 0x7c017b01, 0x7e017d01, 0x80017f01, - 0x82018101, 0x84018301, 0x86018501, 0x88018701, 0x8a018901, 0x8c018b01, 0x8e018d01, 0x90018f01, 0x92019101, 0x94019301, 0x96019501, 0x98019701, - 0x9a019901, 0x9c019b01, 0x9e019d01, 0xa0019f01, 0xa201a101, 0xa401a301, 0xa601a501, 0xa801a701, 0xaa01a901, 0xac01ab01, 0xae01ad01, 0xb001af01, - 0xb201b101, 0xb401b301, 0xb601b501, 0xb801b701, 0xba01b901, 0xbc01bb01, 0xbe01bd01, 0xc001bf01, 0xc201c101, 0xc401c301, 0xc601c501, 0xc801c701, - 0xca01c901, 0xcc01cb01, 0xce01cd01, 0xd001cf01, 0xd201d101, 0xd401d301, 0xd601d501, 0xd801d701, 0xda01d901, 0xdc01db01, 0xde01dd01, 0xe001df01, - 0xe201e101, 0xe401e301, 0xe601e501, 0xe801e701, 0xea01e901, 0xec01eb01, 0xee01ed01, 0xf001ef01, 0xf201f101, 0xf401f301, 0xf601f501, 0xf801f701, - 0xfa01f901, 0xfc01fb01, 0xfe01fd01, 0x0002ff01, 0x02020102, 0x04020302, 0x06020502, 0x08020702, 0x0a020902, 0x0c020b02, 0x0e020d02, 0x10020f02, - 0x12021102, 0x14021302, 0x16021502, 0x18021702, 0x1a021902, 0x1c021b02, 0x1e021d02, 0x20021f02, 0x22022102, 0x24022302, 0x26022502, 0x28022702, - 0x2a022902, 0x2c022b02, 0x2e022d02, 0x30022f02, 0x32023102, 0x34023302, 0x36023502, 0x38023702, 0x3a023902, 0x3c023b02, 0x3e023d02, 0x40023f02, - 0x42024102, 0x44024302, 0x46024502, 0x48024702, 0x4a024902, 0x4c024b02, 0x4e024d02, 0x50024f02, 0x52025102, 0x54025302, 0x56025502, 0x58025702, - 0x5a025902, 0x5c025b02, 0x5e025d02, 0x60025f02, 0x62026102, 0x64026302, 0x66026502, 0x68026702, 0x6a026902, 0x6c026b02, 0x6e026d02, 0x70026f02, - 0x72027102, 0x74027302, 0x76027502, 0x78027702, 0x7a027902, 0x7c027b02, 0x7e027d02, 0x80027f02, 0x82028102, 0x84028302, 0x86028502, 0x88028702, - 0x8a028902, 0x8c028b02, 0x8e028d02, 0x90028f02, 0x92029102, 0x94029302, 0x96029502, 0x98029702, 0x9a029902, 0x9c029b02, 0x9e029d02, 0xa0029f02, - 0xa202a102, 0xa402a302, 0xa602a502, 0xa802a702, 0xaa02a902, 0xac02ab02, 0xae02ad02, 0xb002af02, 0xb202b102, 0xb402b302, 0xb602b502, 0xb802b702, - 0xba02b902, 0xbc02bb02, 0xbe02bd02, 0xc002bf02, 0xc202c102, 0xc402c302, 0xc602c502, 0xc802c702, 0xca02c902, 0xcc02cb02, 0xce02cd02, 0xd002cf02, - 0xd202d102, 0xd402d302, 0xd602d502, 0xd802d702, 0xda02d902, 0xdc02db02, 0xde02dd02, 0xe002df02, 0xe202e102, 0xe402e302, 0xe602e502, 0xe802e702, - 0xea02e902, 0xec02eb02, 0xee02ed02, 0xf002ef02, 0xf202f102, 0xf402f302, 0xf602f502, 0xf802f702, 0xfa02f902, 0xfc02fb02, 0xfe02fd02, 0x0003ff02, - 0x02030103, 0x04030303, 0x06030503, 0x08030703, 0x0a030903, 0x0c030b03, 0x0e030d03, 0x10030f03, 0x12031103, 0x14031303, 0x16031503, 0x18031703, - 0x1a031903, 0x1c031b03, 0x1e031d03, 0x20031f03, 0x22032103, 0x24032303, 0x26032503, 0x28032703, 0x2a032903, 0x2c032b03, 0x2e032d03, 0x30032f03, - 0x32033103, 0x34033303, 0x36033503, 0x38033703, 0x3a033903, 0x3c033b03, 0x3e033d03, 0x40033f03, 0x42034103, 0x44034303, 0x46034503, 0x48034703, - 0x4a034903, 0x4c034b03, 0x4e034d03, 0x50034f03, 0x52035103, 0x54035303, 0x56035503, 0x58035703, 0x5a035903, 0x5c035b03, 0x5e035d03, 0x60035f03, - 0x62036103, 0x64036303, 0x66036503, 0x68036703, 0x6a036903, 0x6c036b03, 0x6e036d03, 0x70036f03, 0x72037103, 0x74037303, 0x76037503, 0x78037703, - 0x7a037903, 0x7c037b03, 0x7e037d03, 0x80037f03, 0x82038103, 0x84038303, 0x86038503, 0x88038703, 0x8a038903, 0x8c038b03, 0x8e038d03, 0x90038f03, - 0x92039103, 0x94039303, 0x96039503, 0x98039703, 0x9a039903, 0x9c039b03, 0x9e039d03, 0xa0039f03, 0xa203a103, 0xa403a303, 0xa603a503, 0xa803a703, - 0xaa03a903, 0xac03ab03, 0xae03ad03, 0xb003af03, 0xb203b103, 0xb403b303, 0xb603b503, 0xb803b703, 0xba03b903, 0xbc03bb03, 0xbe03bd03, 0xc003bf03, - 0xc203c103, 0xc403c303, 0xc603c503, 0xc803c703, 0xca03c903, 0xcc03cb03, 0xce03cd03, 0xd003cf03, 0xd203d103, 0xd403d303, 0xd603d503, 0xd803d703, - 0xda03d903, 0xdc03db03, 0xde03dd03, 0xe003df03, 0xe203e103, 0xe403e303, 0xe603e503, 0xe803e703, 0xea03e903, 0xec03eb03, 0xee03ed03, 0xf003ef03, - 0xf203f103, 0xf403f303, 0xf603f503, 0xf803f703, 0xfa03f903, 0xfc03fb03, 0xfe03fd03, 0x0004ff03, 0x02040104, 0x04040304, 0x06040504, 0x08040704, - 0x0a040904, 0x0c040b04, 0x0e040d04, 0x10040f04, 0x12041104, 0x14041304, 0x16041504, 0x18041704, 0x1a041904, 0x1c041b04, 0x1e041d04, 0x20041f04, - 0x22042104, 0x24042304, 0x26042504, 0x28042704, 0x2a042904, 0x2c042b04, 0x2e042d04, 0x30042f04, 0x32043104, 0x34043304, 0x36043504, 0x38043704, - 0x3a043904, 0x3c043b04, 0x3e043d04, 0x40043f04, 0x42044104, 0x44044304, 0x46044504, 0x48044704, 0x4a044904, 0x4c044b04, 0x4e044d04, 0x50044f04, - 0x52045104, 0x54045304, 0x56045504, 0x58045704, 0x5a045904, 0x5c045b04, 0x5e045d04, 0x60045f04, 0x62046104, 0x64046304, 0x66046504, 0x68046704, - 0x6a046904, 0x6c046b04, 0x6e046d04, 0x70046f04, 0x72047104, 0x74047304, 0x76047504, 0x78047704, 0x7a047904, 0x7c047b04, 0x7e047d04, 0x80047f04, - 0x82048104, 0x84048304, 0x86048504, 0x88048704, 0x8a048904, 0x8c048b04, 0x8e048d04, 0x90048f04, 0x92049104, 0x94049304, 0x96049504, 0x98049704, - 0x9a049904, 0x9c049b04, 0x9e049d04, 0xa0049f04, 0xa204a104, 0xa404a304, 0xa604a504, 0xa804a704, 0xaa04a904, 0xac04ab04, 0xae04ad04, 0xb004af04, - 0xb204b104, 0xb404b304, 0xb604b504, 0xb804b704, 0xba04b904, 0xbc04bb04, 0xbe04bd04, 0xc004bf04, 0xc204c104, 0xc404c304, 0xc604c504, 0xc804c704, - 0xca04c904, 0xcc04cb04, 0xce04cd04, 0xd004cf04, 0xd204d104, 0xd404d304, 0xd604d504, 0xd804d704, 0xda04d904, 0xdc04db04, 0xde04dd04, 0xe004df04, - 0xe204e104, 0xe404e304, 0xe604e504, 0xe804e704, 0xea04e904, 0xec04eb04, 0xee04ed04, 0xf004ef04, 0xf204f104, 0xf404f304, 0xf604f504, 0xf804f704, - 0xfa04f904, 0xfc04fb04, 0xfe04fd04, 0x0005ff04, 0x02050105, 0x04050305, 0x06050505, 0x08050705, 0x0a050905, 0x0c050b05, 0x0e050d05, 0x10050f05, - 0x12051105, 0x14051305, 0x16051505, 0x18051705, 0x1a051905, 0x1c051b05, 0x1e051d05, 0x20051f05, 0x22052105, 0x24052305, 0x26052505, 0x28052705, - 0x2a052905, 0x2c052b05, 0x2e052d05, 0x30052f05, 0x32053105, 0x34053305, 0x36053505, 0x38053705, 0x3a053905, 0x3c053b05, 0x3e053d05, 0x40053f05, - 0x42054105, 0x44054305, 0x46054505, 0x48054705, 0x4a054905, 0x4c054b05, 0x4e054d05, 0x50054f05, 0x52055105, 0x54055305, 0x56055505, 0x58055705, - 0x5a055905, 0x5c055b05, 0x5e055d05, 0x60055f05, 0x62056105, 0x64056305, 0x66056505, 0x68056705, 0x6a056905, 0x6c056b05, 0x6e056d05, 0x70056f05, - 0x72057105, 0x74057305, 0x76057505, 0x78057705, 0x7a057905, 0x7c057b05, 0x7e057d05, 0x80057f05, 0x82058105, 0x84058305, 0x86058505, 0x88058705, - 0x8a058905, 0x8c058b05, 0x8e058d05, 0x90058f05, 0x92059105, 0x94059305, 0x96059505, 0x98059705, 0x9a059905, 0x9c059b05, 0x9e059d05, 0xa0059f05, - 0xa205a105, 0xa405a305, 0xa605a505, 0xa805a705, 0xaa05a905, 0xac05ab05, 0xae05ad05, 0xb005af05, 0xb205b105, 0xb405b305, 0xb605b505, 0xb805b705, - 0xba05b905, 0xbc05bb05, 0xbe05bd05, 0xc005bf05, 0xc205c105, 0xc405c305, 0xc605c505, 0xc805c705, 0xca05c905, 0xcc05cb05, 0xce05cd05, 0xd005cf05, - 0xd205d105, 0xd405d305, 0xd605d505, 0xd805d705, 0xda05d905, 0xdc05db05, 0xde05dd05, 0xe005df05, 0xe205e105, 0xe405e305, 0xe605e505, 0xe805e705, - 0xea05e905, 0xec05eb05, 0xee05ed05, 0xf005ef05, 0xf205f105, 0xf405f305, 0xf605f505, 0xf805f705, 0xfa05f905, 0xfc05fb05, 0xfe05fd05, 0x0006ff05, - 0x02060106, 0x04060306, 0x06060506, 0x08060706, 0x0a060906, 0x0c060b06, 0x0e060d06, 0x10060f06, 0x12061106, 0x14061306, 0x16061506, 0x18061706, - 0x1a061906, 0x1c061b06, 0x1e061d06, 0x20061f06, 0x22062106, 0x24062306, 0x26062506, 0x28062706, 0x2a062906, 0x2c062b06, 0x2e062d06, 0x30062f06, - 0x32063106, 0x34063306, 0x36063506, 0x38063706, 0x3a063906, 0x3c063b06, 0x3e063d06, 0x40063f06, 0x42064106, 0x44064306, 0x46064506, 0x48064706, - 0x4a064906, 0x4c064b06, 0x4e064d06, 0x50064f06, 0x52065106, 0x54065306, 0x56065506, 0x58065706, 0x5a065906, 0x5c065b06, 0x5e065d06, 0x60065f06, - 0x62066106, 0x64066306, 0x66066506, 0x68066706, 0x6378650b, 0x616d616c, 0x6e6f6974, 0x73616807, 0x67617468, 0x6c6f640b, 0x2d72616c, 0x6e676973, - 0x3813914a, 0x73656c09, 0x68742d73, 0x65066e61, 0x6c617571, 0x72670c73, 0x65746165, 0x4a138472, 0x06273361, 0x63756166, 0x850b7465, 0x642d3a06, + 0x06060504, 0x0f0e0f06, 0x010e1003, 0x35fe1139, 0x26177c41, 0x200e0391, 0x8202050f, 0x5c043304, 0x050f0e03, 0x0f0e0208, 0x0d6a0804, 0x0d061008, + 0x0482070e, 0x47829920, 0x71820320, 0x02024008, 0x010f120b, 0x0b090801, 0x090a0c14, 0x0e101101, 0x0c0b150e, 0x0404040b, 0x020b290b, 0x14583b3b, + 0x01010513, 0x09020401, 0x0a0f0f03, 0x08140203, 0x0d0e0f0e, 0x0506060e, 0x010a0601, 0x412c492e, 0x5c20139f, 0x03227087, 0x8586140e, 0xd6258f82, + 0x0e200d06, 0x24048207, 0x0000080d, 0x0853440b, 0x26001a34, 0x3b003200, 0x4d004400, 0x61005600, 0x7f006c00, 0xe5459200, 0x23372b1c, 0x31352333, + 0x07063133, 0x0b872306, 0x16173224, 0x17862317, 0x87151521, 0x15272508, 0x31231535, 0xf3512b82, 0x20088205, 0x251a8227, 0x33363736, 0x25843133, + 0x26272223, 0x200a8227, 0x11244627, 0x0da55918, 0x36212082, 0x15204633, 0x08086033, 0x0d033708, 0x372f120d, 0x12083737, 0x47030d0d, 0x20008640, + 0x20078350, 0x83168250, 0x8426821e, 0x1837251d, 0x0d090901, 0x51095546, 0x0d21065b, 0x05796b09, 0x30183c46, 0x0c112870, 0x0b28380b, 0x2828110c, + 0x60282838, 0x82008228, 0x28282207, 0x21178210, 0x17833828, 0x5b854a86, 0x0cfb5618, 0x0cb35e18, 0x1a003121, 0x241f1933, 0x31173637, 0x0bab5831, + 0x16173625, 0x41373617, 0x84353b26, 0x0407060a, 0x34282813, 0x14282833, 0x09070603, 0x3c48473d, 0x350a41f4, 0x0603c735, 0x1b2d0a06, 0x1b01011b, + 0x060a2d1b, 0x01120306, 0x18691201, 0x2018085b, 0x20008200, 0x0a6f4204, 0x1426ffb9, 0x06313107, 0x61632607, 0x17162806, 0x26171516, 0x63313127, + 0x0e830570, 0x06071423, 0x15264207, 0xb420ff94, 0x194bc618, 0x9417d943, 0x4d7920fb, 0x12210530, 0x2007871b, 0x08055940, 0x14851220, 0x22110341, + 0x43bf0078, 0x03421d65, 0x05657616, 0x30313026, 0x34312331, 0x26210582, 0x089d7727, 0x15820720, 0x82231521, 0x86078213, 0x27062205, 0x08275c26, + 0x06071423, 0x23198727, 0x31313033, 0x4a8342be, 0x262a6b41, 0x020101aa, 0x820e0604, 0x04063300, 0x03010102, 0x10010605, 0x0f18180f, 0x06050110, + 0x1c8ea003, 0x87050621, 0x0506221c, 0x18924303, 0x22148b41, 0x82020154, 0x010d2367, 0x67820d01, 0x0401022e, 0x1c060201, 0x02021515, 0x061c1515, + 0x1d9b0e84, 0x42050021, 0xc32d06a7, 0x3b001a00, 0x97005000, 0x0000d600, 0x05fd4801, 0x34373426, 0x36333035, 0x2408835d, 0x07060714, 0xcec61827, + 0x37322309, 0xb44e1516, 0xfd631805, 0x8413200b, 0x0607223b, 0x07685b17, 0x26273624, 0xc4412707, 0x37162209, 0x4c531836, 0x17142308, 0xba413716, + 0x31302709, 0x31343133, 0x70843130, 0x84163721, 0x211d8240, 0xe0413315, 0x06c44108, 0x4a953287, 0x24084499, 0x0706dd01, 0x010d0e14, 0x0a070105, + 0x0606080b, 0x010f0e0c, 0xdd0f0a0a, 0x02023d4e, 0x17010106, 0x0d0e2117, 0x0cd67a15, 0x3a22223a, 0x3b804839, 0x0a3b4545, 0x13030606, 0x32322727, + 0x03132727, 0xa60a0606, 0x220acf41, 0x41030506, 0xa0200dce, 0x012c1c9b, 0x0d0e0242, 0x010a0814, 0x10101001, 0x0f355682, 0x11101817, 0x7e040c0c, + 0x05052801, 0x1622120c, 0x2f050116, 0x30461836, 0x230b850b, 0x1212c2fe, 0x2b277983, 0x01011a1a, 0x822b1a1a, 0x5903213a, 0x422ded41, 0xa3450d29, + 0x004e220e, 0x349f436a, 0x31171623, 0x059e5931, 0xb15f2720, 0x31172b08, 0x37363137, 0x17171736, 0x1c491727, 0x07162105, 0x4208a84b, 0x4a43064f, + 0x0ebd322a, 0x11030607, 0x0e410e06, 0x04030706, 0x100e0b0c, 0x2a058304, 0x0404049b, 0x0c0b0e10, 0x84070304, 0x0311281b, 0x0d0e0706, 0x43040c0c, + 0xb8202d40, 0x41234b83, 0x8311030e, 0x21618307, 0x6f831005, 0x10101822, 0x59826682, 0x11216183, 0x867c8203, 0x0e374169, 0x64004b22, 0x22343741, + 0x52172717, 0x272106f6, 0x0af25226, 0x05173623, 0x09e55214, 0x43182720, 0x362007d7, 0x31412c82, 0x59fe312a, 0x08085959, 0x06050759, 0x03242403, + 0x01070506, 0x06270886, 0x5a08085a, 0x41060506, 0xa6332d22, 0x04303030, 0x30040909, 0x07030303, 0x2b2b0305, 0x82070503, 0x040a220a, 0x220a8704, + 0x86080530, 0x0000391e, 0xfff8ff06, 0x010802b8, 0x001e00c8, 0x005c0047, 0x008c0073, 0x010000a6, 0x8305f553, 0x07062ff4, 0x23220706, 0x27222306, + 0x37363534, 0x05833734, 0x16821282, 0x20059574, 0x050b4837, 0x36270622, 0x8405e55e, 0x8326201b, 0x3637270b, 0x37360117, 0x7a443132, 0x22418206, + 0x82343526, 0x26252418, 0x44313123, 0x0622058d, 0x45861407, 0x05273622, 0x8505be76, 0x74372010, 0x072307c4, 0x61371706, 0x362c0828, 0x26273637, + 0x27312723, 0x26273431, 0x012c6882, 0x14140fab, 0x0c0e0f0f, 0x01141a1a, 0x093b0082, 0x01060301, 0x022d0b06, 0x02030702, 0x14150d0e, 0x2908071e, + 0x413e0b0a, 0x824b5453, 0x03022113, 0x1f221383, 0x13870707, 0x1eb6fe29, 0x03090114, 0x870a0707, 0x01320847, 0x0909046d, 0x32301d05, 0x09010836, + 0x242e2e2c, 0x11090923, 0x0403b6fe, 0x05030539, 0x1e030606, 0x09060602, 0x02010762, 0x1d1db205, 0x0606031d, 0x0c83610a, 0x38040323, 0x231f8406, + 0x0f0eb201, 0x0a294b83, 0x01020707, 0x13010108, 0x3a96821c, 0x130c1901, 0x141e0807, 0x020e0d15, 0x02020703, 0x4153544b, 0x290a0b3e, 0x901f0707, + 0x87fe2913, 0x09010307, 0x0c191f14, 0x23084887, 0x080109c9, 0x1c313236, 0x04090905, 0x23090911, 0x2c2e2e24, 0x0501034c, 0x05030438, 0x61070102, + 0x02060609, 0x05258983, 0x616161c1, 0x84a3820a, 0x0603210c, 0x00201f86, 0x220e0343, 0x5283005a, 0x05291c2b, 0x31312736, 0x07060726, 0x179c1826, + 0x37362808, 0x22273736, 0x4e310707, 0xb44c0741, 0x31173407, 0x35363716, 0x31373127, 0x27262736, 0x31273127, 0x8d332326, 0x05095028, 0x5b522893, + 0x01260818, 0x06070497, 0x47483c0a, 0x0607093d, 0x28281403, 0x28283433, 0x0205f713, 0x01052611, 0x071c0402, 0x04040401, 0x04822222, 0x041b072a, + 0x26050201, 0xc0050211, 0x02241d84, 0x071b0401, 0x884c1c92, 0x4a4c2013, 0x0320071c, 0x370a304a, 0x052205d4, 0x03050501, 0x0305251b, 0x12120203, + 0x05030302, 0x05031b25, 0x22211482, 0x201b9b05, 0x08975300, 0xc0018031, 0x49002e00, 0x81006a00, 0xf500be00, 0x18250000, 0x430d5b51, 0x09830926, + 0x16171623, 0x09684117, 0x2e860d83, 0x30070623, 0x09b06d31, 0x32292a83, 0x27220515, 0x27303131, 0x06594930, 0xba4f3420, 0x09f96d06, 0xbb412720, + 0x05854716, 0x85158347, 0x1989471b, 0x20833320, 0x34993a95, 0x31302308, 0x3c212502, 0x3c4c4c3c, 0x0607213c, 0x0305050c, 0x0e020307, 0x100b140d, + 0x62464510, 0x10454662, 0x0d430a10, 0x03290805, 0x060c0406, 0x0246fe07, 0x020a0607, 0x12120f01, 0x060e0e0e, 0x14100e0e, 0xc701090e, 0x0b010101, + 0x09020706, 0x120d0102, 0x24178410, 0x0f12120e, 0x131e425a, 0x4903bd21, 0xe4470c97, 0x301c9a0f, 0x2626404d, 0x26260101, 0x0d060440, 0x1d0e0e0d, + 0x2b988313, 0x3c5f0302, 0x3d02023d, 0x02035f3c, 0x1538b882, 0x0d0e1d13, 0x04060d0e, 0x1b1b1275, 0x0c01010d, 0x0f0d0101, 0x070e1313, 0x0423d982, + 0x82570902, 0x1b1b2f0e, 0x01010912, 0x05050304, 0x13130e07, 0x24820d0f, 0x62420920, 0x48672013, 0x2e264607, 0x54004100, 0x48187200, 0x262208c5, + 0xd3473535, 0x16172805, 0x36373617, 0x58071617, 0x45180519, 0x64650853, 0x4e072005, 0x075512bc, 0x35172712, 0x27263515, 0xcd653123, 0x72098307, + 0x0039094c, 0x4e303001, 0x0312250f, 0x3c0a0706, 0x0a3c4847, 0x12040706, 0x304e0f25, 0x6a441830, 0x0613730c, 0x1907be4e, 0x2b0e68d7, 0x02190210, + 0x09030512, 0x12050309, 0x954c0a82, 0x56c02907, 0x171b4141, 0x2a1b2f1c, 0x280b3d41, 0x1c2f1b2a, 0x41411b17, 0x0b6c4956, 0x2e193255, 0x2d2d2df0, + 0x12010219, 0x01120909, 0x4c2d1902, 0x0b4507fa, 0x002e260b, 0x00630049, 0x313f4181, 0x31373423, 0x40311a31, 0x0811480c, 0x17362524, 0x28483131, + 0x06f95a05, 0x20071348, 0x434e4103, 0x05067423, 0x0a294807, 0x06070122, 0x25073248, 0x08085a06, 0x4f413b5a, 0x07732940, 0x30030303, 0x05080904, + 0x22083c48, 0x820a0404, 0x48072013, 0xfe210f3c, 0x166041c3, 0x2c07a34c, 0x002e00c0, 0x004c003f, 0x0073006a, 0x05084f00, 0x4c052048, 0x062b062c, + 0x36070607, 0x36313535, 0x46273637, 0x15250b6c, 0x13171431, 0x24148316, 0x06072223, 0x22098217, 0x18173233, 0x180c4f4e, 0x2307eb8a, 0x27262726, + 0x33223f83, 0x325d1631, 0x83372005, 0x745e8209, 0xaf2005db, 0x260f8c42, 0x4d303001, 0x4412250e, 0x12340b3b, 0x0a150e25, 0x19080b0d, 0x08192424, + 0x0e0a0d0b, 0x8d0e1515, 0x200baa6b, 0x07944210, 0x220d5a41, 0x58021610, 0x33200588, 0x420f9142, 0x012319bb, 0x18070a09, 0x2009fe90, 0x0bb86b26, + 0x2d2d8322, 0x4208a142, 0xdb200ab5, 0x16216385, 0x119f4f02, 0x5e37a351, 0x27210685, 0x26921826, 0x59272008, 0xba4a1115, 0x0e11282a, 0x0a0e1515, + 0x41070a0d, 0xc3200741, 0x4a0d1159, 0x4f242db9, 0x080b1212, 0x22052341, 0x6b3a0b08, 0x06340d71, 0x20000000, 0x6001c001, 0x33001900, 0x67004d00, + 0x9b008100, 0x6f08ff6f, 0x152005f9, 0x2806a566, 0x35363732, 0x27341535, 0x051a5731, 0x15060722, 0x1f78198c, 0x33332206, 0x24288431, 0x26273431, + 0x7d408523, 0x0c860559, 0x802733c0, 0x30110b0c, 0x940c0b11, 0x8d202006, 0x9d2b8e15, 0x3801211d, 0xc020558d, 0x30210e8e, 0xae768d30, 0x0600291f, + 0xe0ff0000, 0xa0014001, 0x200d6b41, 0x184c6637, 0x19983320, 0x2722272e, 0x35263131, 0x37343135, 0x31333336, 0x09779518, 0x4d992320, 0x282033b3, + 0x1090f390, 0x203e2441, 0x0db04160, 0xaf410d8d, 0x591d9d1d, 0xe02a05f7, 0xa0010002, 0x40002600, 0x4d185a00, 0xbf77081d, 0x37362107, 0x2107294a, + 0x59181716, 0x26280983, 0x37360327, 0x37363131, 0x260c5641, 0x26272631, 0x18253527, 0x210d6153, 0x82412722, 0x00012908, 0x023b3b58, 0x02161602, + 0x830b3c51, 0x3b02290f, 0x01b0583b, 0x101b1212, 0x2605c343, 0x12121b10, 0x84200101, 0x21158a05, 0x28837001, 0x82166821, 0x47682043, 0x11850b8b, + 0xfe215c83, 0x233383f0, 0x800e0909, 0x50834882, 0x84404021, 0x5a158a05, 0x3e240beb, 0x72005800, 0x0623f3a0, 0x83312307, 0x18de8303, 0x4307c846, + 0x138307c0, 0x82420720, 0x2113830e, 0x29843135, 0x262e0b41, 0x25191901, 0x181c0e6e, 0x26082c54, 0x6e0e1c20, 0x830c0b11, 0x107022f5, 0x0c1c4110, + 0x1b121222, 0x8708e369, 0x90012118, 0xde602983, 0x0b1f4105, 0x1925903d, 0x01170119, 0x140e0d01, 0x010d0e14, 0x0b0c1701, 0x3b589011, 0x09a0023b, + 0x41700e09, 0x30200629, 0x84076d41, 0x08188608, 0x00030021, 0x02c0ff00, 0x00c00120, 0x00320008, 0x25000044, 0x27370737, 0x17310731, 0x31313007, + 0x83313031, 0x312521e8, 0x09265418, 0x06310324, 0xbf182307, 0x262208e8, 0x81183435, 0x5108070c, 0x23063107, 0x27263123, 0x37343135, 0x9e9e3b01, + 0x56d71d9e, 0x011301bb, 0x120e0b11, 0x080c370d, 0x48180eca, 0x0d0d0a19, 0x0a0a320a, 0x3f3f7919, 0x071f473f, 0x0216450a, 0xd7d78507, 0x569e1dd7, + 0x0e184805, 0x360d08ca, 0x0c0e120d, 0x0112effe, 0x29820a19, 0x19212e82, 0x282b8592, 0x0a051602, 0xff080007, 0x06135ef7, 0x3e001b31, 0x59004c00, + 0x74006700, 0x9e009100, 0x62010000, 0x162105af, 0x07d45c17, 0x35373622, 0x27208f82, 0x35220382, 0x4b181501, 0x531807d7, 0x22210d90, 0x261e8227, + 0x06070623, 0x82171507, 0x05ce6522, 0x16373623, 0x43028217, 0x1a9a0922, 0x39820320, 0x72943120, 0x05247682, 0x27363736, 0x062e9583, 0x01171617, + 0x16160210, 0x10270102, 0x08880117, 0x01f0fe27, 0x011b1212, 0x079a4180, 0x1115ab27, 0x29201a55, 0x2112821b, 0xb7600f01, 0x08556905, 0x08a9ce18, + 0x28201188, 0x02234e8f, 0x48d8fe16, 0x012c0b62, 0x020216a8, 0x24350516, 0x0d20160f, 0x0d200a83, 0x05250a84, 0x1010d8fe, 0x08f96c10, 0x0d277d84, + 0x1b011340, 0x1840291b, 0x230ccc69, 0x600f0110, 0x04828583, 0x01211797, 0x22609340, 0x48800216, 0x00240b84, 0x00080000, 0x2e07cb5f, 0x004a0038, + 0x006c005a, 0x008e007c, 0x18b2009e, 0x1812d54c, 0x18094fb1, 0x24078440, 0x07060706, 0xd35c1815, 0x3111250a, 0x35262722, 0x110e6b18, 0x92183720, + 0x35240916, 0x23272631, 0x48842191, 0x33171623, 0x051c4231, 0x438f2192, 0x37320724, 0x47183131, 0x33230c2f, 0x18090033, 0x200f72b1, 0x077c43b0, + 0x2306974c, 0x6009090e, 0x09d75318, 0x53189020, 0x202108af, 0x20158970, 0x8a1594f0, 0x0a28312b, 0x09020607, 0x22221919, 0x02091919, 0x900a0706, + 0x0af06718, 0x07374618, 0x0e143024, 0x7d83010d, 0xd5483020, 0x80012105, 0x50210782, 0x61541820, 0x8910200a, 0x19102072, 0x8c16839d, 0x2f2f8a17, + 0x0a0707c0, 0x01141320, 0x20131401, 0x0007070a, 0x2d062758, 0x00c00180, 0x004b0025, 0x008a0074, 0xd218009e, 0x16230d27, 0x61311717, 0x332006a6, + 0x27050449, 0x31272726, 0x17352726, 0x840b2979, 0x35352213, 0x057e7331, 0x15150622, 0x22074443, 0x53072605, 0x222105be, 0x05974523, 0x33171625, + 0x61173031, 0x16260591, 0x33331617, 0x4f843631, 0x23331723, 0x26098533, 0x23222323, 0x83063122, 0x27172177, 0x16210182, 0xbd961817, 0x23232108, + 0x4f181782, 0x01230784, 0x410e153c, 0x20230623, 0x79012915, 0x158e0693, 0x07a6fe32, 0x29313a08, 0x01070c19, 0x02010201, 0x0f01010f, 0x02320682, + 0x29190c07, 0x2d302f28, 0x66030743, 0x13d70f0c, 0x08824613, 0x1325193a, 0x01010130, 0x18670307, 0x67670425, 0x10231767, 0x0b0c0b0b, 0x03079b11, + 0x2607a841, 0x153d560b, 0x460b140e, 0x0b2605f6, 0x2b15212e, 0xf8780b3b, 0x2e1a9306, 0x09010368, 0x04080b0e, 0x06010103, 0x82061111, 0x08052b82, + 0x09090b0b, 0x0e7b0602, 0x05829807, 0x84011c21, 0x7b982f04, 0x021b7b7b, 0x100c0b01, 0x0c0b1150, 0x87530602, 0x00bb240c, 0x56e100ce, 0x36551d8b, + 0x16072206, 0x59018217, 0x222206bd, 0x85592627, 0x31302b0c, 0x31313130, 0x35303330, 0x26483132, 0x35362405, 0x84262734, 0x23302401, 0x18223134, + 0x240cc26d, 0x35263130, 0x853f9034, 0x31332343, 0x43923135, 0x31312723, 0x4c438f23, 0x1720053c, 0x2b3bf15d, 0x06010731, 0x05040a07, 0x070a0405, + 0x15340a84, 0x0102061b, 0x01010105, 0x06060402, 0x03040403, 0x02040606, 0x04210e82, 0x28139104, 0x06020105, 0x070a151b, 0x35215ea1, 0x0a08c627, + 0x0608070b, 0x30008202, 0x0a080806, 0x0608080a, 0x0606010b, 0x01010103, 0x23918203, 0x06030306, 0x03219782, 0x218b8201, 0x83830505, 0x06211582, + 0x85158405, 0x0606240e, 0x5e07060c, 0x04201a52, 0x26084745, 0x01bb001a, 0x41490102, 0x105cbee7, 0x98d55d09, 0x20444f42, 0x0d345457, 0x5e0a185c, + 0x6b423805, 0x3d365e45, 0x2f060f46, 0x00c00103, 0x00af0024, 0x00d500c2, 0x250000f1, 0x1805da5d, 0x220d67a1, 0x65263732, 0x36250604, 0x36171617, + 0x06325417, 0x20398144, 0x0a3d4435, 0x240d7b44, 0x33303131, 0x14714434, 0xb5443020, 0x06a8500a, 0xa8508c82, 0x50172012, 0x695211ce, 0x66072005, + 0x372106e7, 0x055f5237, 0x07262728, 0x01273107, 0x305e0ef2, 0x2f352f11, 0x07170308, 0x1d1e0e0f, 0x130b1818, 0x9644ca11, 0x0504211e, 0x87119644, + 0x07964413, 0x78010622, 0x200d0551, 0x0f2551c3, 0x0e053f2c, 0x0811110f, 0x05170409, 0x0782550f, 0x0f040529, 0x0514120e, 0x5e2c286c, 0x142e114a, + 0x1f590b09, 0x08091a1a, 0x021a0d0d, 0xb9440807, 0x07082341, 0x5b519c0b, 0x513a200b, 0x07320975, 0x0911760a, 0x0f050509, 0x0e59120f, 0x0f051802, + 0x0f841210, 0x46001521, 0x2f240cbb, 0x55004200, 0x2a1cd344, 0x31372627, 0x21333631, 0x5c173231, 0x2624051d, 0x37272627, 0x333a4865, 0x0607039f, + 0x0b14010b, 0x0f030706, 0x3a3a2b2b, 0x2f0f2b2b, 0x2e36fd45, 0x0808070b, 0x21340b07, 0x20010120, 0x647a3421, 0xc7451a19, 0x002f240b, 0xb2ad0076, + 0x483b45f3, 0x631d7a45, 0xc953154a, 0x124b4115, 0xf9447920, 0x0d674152, 0xcf606520, 0x2d03590d, 0x7f420020, 0x0049220f, 0x328b4162, 0x4147c55f, + 0x25201240, 0x2038c35f, 0x0d2741c6, 0xbd5fc720, 0x2f052624, 0x07030303, 0x10174100, 0x53004222, 0x43321741, 0x17211197, 0x49a81806, 0x12084124, + 0x180e9543, 0x412943a8, 0x97430e07, 0x181a200c, 0x2a0d39a8, 0xff000005, 0x018002c0, 0x824600c0, 0x006824ef, 0x4e8b0079, 0x332608a1, 0x16171631, + 0x05821117, 0x096a5b18, 0x81602320, 0x27262506, 0x37342726, 0x35200d8a, 0x15830d83, 0x26311123, 0x05b77e27, 0xa8590520, 0x31152308, 0x59182333, + 0x15250e35, 0x35312331, 0x85148217, 0x31152965, 0x07060706, 0x23332523, 0x0ee06618, 0x0909002c, 0x1722100e, 0x0f010116, 0x6044d001, 0x18432005, + 0x201304d3, 0x20238513, 0x33228210, 0x0701b001, 0x60010750, 0x100f0190, 0x10185018, 0xe0c0010f, 0x08e66818, 0xf0fe1022, 0x0bc86618, 0x83a00121, + 0x17162430, 0x18e0fe22, 0x20076a56, 0x11d31808, 0x82012016, 0x20012125, 0x40202584, 0x13555918, 0x0084e020, 0x0e0d012a, 0x0e148014, 0xe0e0010d, + 0x5b420a88, 0x02c52e06, 0x00c00140, 0x0031001c, 0x00510043, 0x06e46c00, 0x36313123, 0x07d96737, 0x84171621, 0x32332501, 0x07371737, 0x0a7fa618, + 0x14071427, 0x11070615, 0x20038201, 0x24218231, 0x35313737, 0x08338331, 0x06050738, 0x22230607, 0x15272627, 0x35311731, 0x18112f01, 0x01131319, + 0x33222201, 0x01222233, 0x19131301, 0x09061118, 0x91710609, 0x010e9191, 0x0d090a01, 0x05050174, 0x0b856ffe, 0x05057f2b, 0x017b0408, 0x11172171, + 0x28028217, 0x1588c021, 0x25252322, 0x823b841c, 0x251c3543, 0x15222325, 0x3abf0707, 0x10063a3a, 0x070d0f01, 0x012e0507, 0x0a3e0082, 0x01d1fe0a, + 0xfe10073c, 0x07060ef2, 0x0afc3304, 0x3116140a, 0x131c3144, 0xc2311c13, 0xef82f937, 0x00000523, 0x22ef87ff, 0x82420030, 0x545e20ef, 0x31200897, + 0x8308095d, 0x823620c3, 0x27d382e7, 0x37361717, 0x35363534, 0x20053665, 0x23228211, 0x25113107, 0x15241883, 0x06310731, 0x1124e282, 0x37373631, + 0x15222582, 0xfe822731, 0x7305a85a, 0x01210c7f, 0x41f08998, 0x082e0d08, 0x74010505, 0x010a090d, 0xfe910e01, 0x0e8204ea, 0x0d857f20, 0x17be7b24, + 0xfe85c021, 0x18172821, 0x210a3f95, 0xfb874801, 0x210d1141, 0x43820a50, 0x01012808, 0x0707052e, 0x10f1fe0d, 0x2f013a06, 0x0a14163e, 0x0433fc0a, + 0x010e0607, 0x3107100e, 0xf9311cc2, 0x1c31c237, 0x18b41313, 0x320bd368, 0x02000000, 0xbefffeff, 0xbc01fc01, 0x37002400, 0x49010000, 0x07200572, + 0xc471ce82, 0x08e87106, 0x0938a118, 0x17270323, 0x6efe8227, 0x372309da, 0x82e10137, 0x1c2c089b, 0x1d160d0f, 0x0e56161d, 0x5611110e, 0x740d1111, + 0x1b1ba582, 0x828282bb, 0x05154a40, 0x0d090902, 0x404a6619, 0x1b1ba101, 0x15150d0f, 0x0e212082, 0x832a820e, 0x213b8325, 0x2882c3fe, 0x6649412b, + 0x09090d19, 0x49150502, 0x0b134641, 0x1d000d2b, 0x62003800, 0x26130000, 0x05dd7d35, 0x0631172c, 0x07212707, 0x27260737, 0x12853137, 0x01071423, + 0x0bf27034, 0x07141522, 0x22078942, 0x18373526, 0x210c604c, 0xc1720715, 0x2737230b, 0x4b712631, 0x26200806, 0x04042727, 0x126d1702, 0x324a4509, + 0x66f80166, 0x4a326666, 0x6d120945, 0xfe040217, 0x29171854, 0x104a6619, 0x08b82a08, 0x05021708, 0x24070c32, 0x04040903, 0x04042d06, 0x09010d2d, + 0x07240401, 0x0205320c, 0x069a0117, 0x01021707, 0x340a720f, 0x2e00829a, 0x0f720a34, 0x07170201, 0x30d6fe06, 0x82182828, 0x28282200, 0x08098930, + 0x0a0a5f20, 0x0701042e, 0x04230b05, 0x04063105, 0x02170303, 0x0e041702, 0x23040531, 0x0107050b, 0x2b562e04, 0x01002806, 0x001a00c0, 0x6340002d, + 0x37201ce9, 0x08ad6f18, 0x99420720, 0x35362105, 0x0d876f18, 0xa6631684, 0x09d02518, 0x090d0e09, 0x2305996e, 0x8009090e, 0x180df44a, 0x2014115a, + 0x1a6d4930, 0x240de347, 0x00430028, 0x1dcb465e, 0x33233323, 0x40441816, 0x63372008, 0x06220b64, 0x125e1415, 0x34352405, 0x5e171627, 0x168d087d, + 0x8e6d0620, 0x80402118, 0x0ac12f19, 0x025e2020, 0x06242108, 0x2805364b, 0x80022406, 0x0112121b, 0x83108a02, 0x18ec5c24, 0x08f15218, 0x36839020, + 0x29232a83, 0x410a0811, 0x0a24050a, 0x40291108, 0x28831291, 0x2905cb41, 0xc5018001, 0x1b000f00, 0x58183100, 0x172b07d1, 0x31213113, 0x37363113, + 0x18060337, 0x2009866e, 0x13241907, 0x0bb52d14, 0x0104500b, 0x28f0fe28, 0x1d500401, 0x08667418, 0x01785026, 0x01c0fe40, 0x2006fe75, 0x061b70fe, + 0x0abb012f, 0x0504500a, 0x4201befe, 0xfe500405, 0x1f8b18f5, 0x0d8a5d08, 0xf3750020, 0x00c13207, 0x003a0010, 0x27260100, 0x07263131, 0x31333107, + 0x22958237, 0x18052734, 0x28098e5b, 0x17161714, 0x17060706, 0x056d5d16, 0x27262727, 0x35363736, 0x32038232, 0x23262734, 0x08f80121, 0xd10b0c0c, + 0x01086a91, 0x4128fe08, 0x20320511, 0x07113d1f, 0x0e080903, 0x09080ec0, 0x3d110703, 0x1885201f, 0x0140fe2e, 0x010209b5, 0x0a699a07, 0xb50a0c0c, + 0x3e259485, 0x15162e2e, 0x2520851b, 0x2e16151b, 0x17853e2e, 0x69180020, 0x00250807, 0x1900c001, 0xc5701800, 0x31212109, 0x8205a045, 0x21072396, + 0x92822631, 0x34133528, 0x36313137, 0xbd823533, 0x33373623, 0x05115531, 0x278a3520, 0x2105fd62, 0x9f1a1732, 0x00240e18, 0x1b121201, 0x2609225b, + 0x121be0fe, 0x82a00112, 0x16012480, 0x82902217, 0x121c2a94, 0x1b010111, 0x0f90291b, 0x20a28501, 0x58068240, 0x807e094a, 0xfe402208, 0x241882e0, + 0x16172210, 0x2d3d8201, 0x180a5a20, 0x29202018, 0x01011b1b, 0x1082100f, 0x20065a43, 0x18d38280, 0x30096b5c, 0x00200019, 0x00370030, 0x004d003d, + 0x006f0054, 0x08d17a7b, 0x4418e185, 0x11240bef, 0x33272617, 0x1721cf82, 0x83008331, 0x585c18f3, 0x2637260c, 0x23171627, 0x211c8427, 0x0a821716, + 0x37363128, 0x06073736, 0x08822307, 0x2005145f, 0x6e5c1827, 0x0a7f4214, 0x149b8718, 0x0a2cb738, 0x290b0427, 0x040b0504, 0x050b0430, 0x040b2904, + 0x0f2c0a27, 0x17820b04, 0x15833820, 0x88032f21, 0x11a92915, 0x221e1e11, 0x111e1e22, 0x09870082, 0x1a0ff021, 0x41087b08, 0xfe200936, 0x08088b59, + 0xd7800121, 0x1a2d3116, 0x150b0509, 0x0b152b2b, 0x2d1a0905, 0x2d671631, 0x5031161a, 0x2b140c05, 0x850c142b, 0x18572012, 0x20134b5c, 0x334e18c0, + 0x00022f0b, 0x02c2ff02, 0x00c00100, 0x00380011, 0x68180100, 0x07220769, 0x01842731, 0x17073728, 0x31171727, 0xd8463117, 0x31372205, 0xb6c21816, + 0x07223e08, 0x17141506, 0x31373107, 0x01373736, 0x22241776, 0x01011616, 0x400bcf1a, 0x0bccb50a, 0x2606820b, 0xb21b0713, 0x44040460, 0x013708fc, + 0x1b08325f, 0x1aa50153, 0x16160101, 0xb4182422, 0xcf0b400a, 0x820a0ae6, 0x1b532506, 0x015f3208, 0x27087043, 0xb2600404, 0x0013071b, 0x22068747, + 0x82be01fe, 0x823c209f, 0x8207209f, 0x20718390, 0x05017835, 0x07072222, 0x9b831182, 0x06310325, 0x71313717, 0x062a0958, 0x22070607, 0x16310727, + 0x9f832537, 0x273a3382, 0x37377001, 0x10387d37, 0x16122e10, 0x09501216, 0x1f900909, 0x0d06580c, 0x9d5c059a, 0x0e0d3508, 0x990a0b14, 0x0801120e, + 0x022c0a1f, 0x38ae0181, 0x377d3838, 0x2e312e83, 0x024d1010, 0x0a2c0202, 0x12f8fe1f, 0x0b0a990e, 0x06da5814, 0x052a0783, 0x58060d9a, 0x09901f0c, + 0x00820081, 0xfeff0428, 0xff01beff, 0xb382bf01, 0x48002524, 0xb7826b00, 0x2008834d, 0x27898227, 0x17323336, 0x37073701, 0x24075541, 0x37262706, + 0x82a58337, 0x084c6dcb, 0x17252382, 0x30233031, 0x07746a15, 0x30313225, 0x82171735, 0x31222148, 0x3421148b, 0x05736531, 0x23222682, 0x5e822722, + 0xd5013808, 0x12181818, 0x39723912, 0x14191a13, 0xffff58fe, 0x0bff72ff, 0x0a0e680d, 0x041e0309, 0x9292cc0a, 0x0e0e5792, 0x13130f4e, 0x4001140f, + 0x0b0b0a0a, 0xa02d0140, 0x872d2d2d, 0x8614200c, 0x9257231d, 0x4a82ad01, 0x4c824583, 0xfe121223, 0x264a84b2, 0x031e040a, 0x820e0a09, 0x83fa204f, + 0x2247834a, 0x820e0e4e, 0x0b0b234a, 0x4a880a0a, 0x090b0b26, 0x14014009, 0x57211d86, 0x08b34d92, 0xc0018032, 0x41002b00, 0x67005400, 0x35130000, + 0x17363515, 0x0382c082, 0x82311721, 0x433720fb, 0x118505ae, 0x06071626, 0x25270607, 0x2105285d, 0xe9451335, 0x18372014, 0x08244c90, 0x12020024, + 0x12061123, 0x1203297f, 0x6d091328, 0x2314186b, 0x16030311, 0xd6fe4140, 0x0a520d11, 0xfd400220, 0x164602c0, 0x46fd2006, 0x76180616, 0x8b180cdc, + 0x23080cee, 0x63631901, 0x08011163, 0x26301004, 0x01031192, 0x0720c20f, 0x15101b10, 0x11180916, 0x540c054d, 0xe7fe0d09, 0x2208ca42, 0x7d09090e, + 0x0743062f, 0x46102005, 0x022f0c55, 0xc0ff0000, 0xa0018302, 0x43002c00, 0x18010000, 0x2008eb99, 0x67681814, 0x31072208, 0x460b8206, 0x25200549, + 0x2506d853, 0x07223123, 0xb45a0107, 0x31212105, 0x82085746, 0x06280815, 0xc37d0115, 0x191ac3c3, 0x0801082e, 0x0e3a6393, 0x090e210d, 0x890f0a49, + 0x11010708, 0x0b071d47, 0x1f39150b, 0x83fe681b, 0xf18c8682, 0x4d012108, 0x0a494949, 0x0905160d, 0x325f0509, 0x1007061a, 0x0b550f0a, 0x4b258903, + 0x01100f14, 0x93fe350e, 0x200e8e7f, 0x28bb8400, 0xc001c001, 0x57004700, 0xa3621800, 0x31152107, 0x08c3a218, 0x31353523, 0x053a4433, 0x20069848, + 0xbbd11837, 0x3137230c, 0x635b3536, 0x31072205, 0x28d88327, 0x26272637, 0x23172327, 0x1bd81933, 0x0606470c, 0x332a7d82, 0x09096a80, 0x0a0d0d0a, + 0x05836969, 0x6a090922, 0x562b0f87, 0x01171826, 0x301f2001, 0x82709090, 0x43142000, 0x0121069b, 0x20e582c0, 0x07e57da0, 0x358f8020, 0x562a0f87, + 0x281e1d0a, 0x01201f30, 0x094460a0, 0x0d635007, 0x3800272f, 0x61004b00, 0x06050000, 0x35272223, 0x05cd5f31, 0xa362ad83, 0x0706230b, 0x1b860706, + 0xca670320, 0x3633260f, 0x32313133, 0x20168b17, 0x0be91807, 0x07564e0c, 0x2d60012c, 0x012d3333, 0x3a010f0f, 0x556a2223, 0x2201230c, 0x17833a23, + 0xba679d20, 0x0e7a240f, 0x8b0e1515, 0x446d2014, 0x142f0bcf, 0x2d010d0e, 0x0fcd1313, 0xbe0f0101, 0x183a3a22, 0x240ce779, 0x223a3a48, 0x221983be, + 0x500301cd, 0x1b550b6c, 0x2066220b, 0x09146220, 0x20075941, 0x06374e00, 0x4b02c021, 0x27260573, 0x4f003c00, 0x556a6200, 0x18162008, 0x220cd570, + 0x82060722, 0x36172801, 0x16171637, 0x83270607, 0x220721eb, 0x09184518, 0x16821720, 0x21821720, 0xcd4a2320, 0x18232005, 0x2007995e, 0x08ff5632, + 0x16871d84, 0x2d18994b, 0x450f01f0, 0x0c0a092f, 0x0f35270b, 0xaa845001, 0x0c0e0f26, 0x0e0c0606, 0x0d23e282, 0x55d0140e, 0xc54b0e3a, 0x0909220a, + 0x14b94b0e, 0x010f503d, 0x0b0c3302, 0x012a0a09, 0x0e500f01, 0x1810140d, 0x06060f17, 0x1018170f, 0x500e0d14, 0x5c7a06e4, 0x00002113, 0x08054f66, + 0x01800224, 0x000b00a0, 0x001d0014, 0x005a004d, 0x13000067, 0x33153515, 0x23313531, 0x05070631, 0x23271727, 0x72511531, 0x23088405, 0x23332305, + 0x078c4318, 0x06242183, 0x26272607, 0xd8632382, 0x5e21200a, 0x278307c6, 0x42182320, 0xd4610bc8, 0x6040270c, 0x01010758, 0x008251e2, 0x60e2a225, + 0x82100160, 0x1b012300, 0xc261291b, 0x51088605, 0x142d056b, 0x01781f14, 0x6f131e11, 0x0e0d010f, 0x41b91814, 0x90fe210c, 0x0cf5d918, 0x00825820, + 0x07016024, 0x00866058, 0xd918c020, 0x40830fd9, 0x141fe82e, 0x16010114, 0x6c181184, 0x010d0e14, 0x3020408b, 0x0b686918, 0x0863d518, 0xa001802c, + 0x63005300, 0x79006f00, 0x954a0000, 0x07754a06, 0x83310721, 0x311521e6, 0x2505ab77, 0x37363137, 0x13823137, 0x0ef9a418, 0x27271782, 0x31070726, + 0x18353536, 0x4d0a1984, 0x3525070e, 0x37073707, 0x241e8206, 0x27262306, 0x20428235, 0x05c14907, 0x2d823420, 0x36052326, 0x21272637, 0x21216582, + 0x059a45c0, 0x1f540734, 0x01011213, 0x291f1514, 0x12290d16, 0x09050c5e, 0x0046100a, 0x12542706, 0x120e0d06, 0x4841047b, 0x29318507, 0x31313109, + 0x030e1a10, 0xf6820705, 0x02169f28, 0x28281602, 0x07835002, 0x0acafe25, 0x4c4c010c, 0x08360771, 0x091a2929, 0x48211919, 0x0114151e, 0x47192301, + 0x0f261d4f, 0x44850d0e, 0x0e123628, 0x1f25040d, 0x5241081f, 0x42202007, 0xb1350657, 0x330f0f0f, 0x0104182f, 0x08174807, 0x1616023f, 0x28040402, + 0x21078330, 0xa7441818, 0x001a260d, 0x007c0035, 0x1d3f4eb3, 0x0af9a518, 0x240aa558, 0x17363726, 0x92b55737, 0x18b5bd18, 0xbb573620, 0x10ba2551, + 0x01010c0d, 0x12cfbd18, 0xc5576120, 0x0007363c, 0x02c0ff03, 0x00c0017d, 0x003e0035, 0x00500047, 0x00620059, 0x0731476f, 0x31030727, 0x17161706, + 0xc5441833, 0x08d4470d, 0x3531233e, 0x36313331, 0x03273637, 0x26272631, 0x33172123, 0x31173323, 0x07373123, 0x37233323, 0x07211b82, 0x20118207, + 0x20118307, 0x871a8733, 0x37272108, 0x27202382, 0x372f2382, 0x17310731, 0x1211177a, 0x13053404, 0x48d91f12, 0xea4806eb, 0x40290806, 0x12131fd9, + 0x12053305, 0x74fe1711, 0x7676768b, 0x3b0b8b0a, 0x14646464, 0x696e0b5b, 0x740a6969, 0x94949a15, 0x0baa0b94, 0x350d82c5, 0x600a7415, 0x0b656565, + 0x151f1f5b, 0x0f0ec001, 0x1f00ff16, 0x1e191617, 0x402b0d46, 0x1f171601, 0x0f160001, 0x8368400e, 0x84302000, 0x30683605, 0x68060668, 0x00000200, + 0x4002e0ff, 0x2200a001, 0x00003500, 0x05d94337, 0x3724e182, 0x17163133, 0x21056163, 0xcc612323, 0x05c25205, 0x31202282, 0x26201a84, 0x08494b18, + 0x33b73b08, 0x09090a23, 0x4433230a, 0x02120a55, 0x3d232401, 0x14144b3c, 0x233d3c4b, 0x12020124, 0x7744550a, 0x131a1a0d, 0x3a28283a, 0x0e1a1a13, + 0x06080805, 0x0f3120d5, 0x310f1010, 0x20822a20, 0x36852885, 0x2a313e82, 0x2a290cc5, 0x35352145, 0x292a4521, 0x0006060c, 0x08cb6001, 0x0000412b, + 0x37073713, 0x17323736, 0x845f1816, 0x07062108, 0x27069549, 0x22070607, 0x26312727, 0x08f4ab18, 0x18373421, 0x2008da4c, 0x83d28235, 0x37700831, + 0x1cd13736, 0x20131c1c, 0x07101116, 0x28341112, 0x15010221, 0x03032543, 0x1e131202, 0x07371217, 0x531b1808, 0x0113141a, 0x10170b0d, 0x12010926, + 0x1c331a12, 0x01111919, 0x25252582, 0x0c0d0118, 0x15363b15, 0x1b240e0f, 0x301e3310, 0x15151e16, 0x052d0e01, 0x0f050c04, 0x1b101004, 0x1b0d1015, + 0x3a181d23, 0x0f1a100e, 0x05080410, 0x00160a0a, 0x20072f4f, 0x05d74d02, 0x38002b2e, 0x5e004b00, 0x84007100, 0xaa009700, 0x13c7a419, 0x37360324, + 0x80183131, 0x691814d9, 0x9a450ced, 0x5614200a, 0x9b1805cc, 0x172013b9, 0x1811924b, 0x2012bd99, 0x5e259107, 0x35390deb, 0x33363734, 0x40404080, + 0x8009090e, 0x800e0909, 0x291b1b01, 0x1b1b2980, 0xc5741801, 0x18f02008, 0x4b0bfc69, 0xaf4b0c58, 0xb860180c, 0xb464180c, 0x4b20200c, 0x98180b8c, + 0x01210cb5, 0x211a82c0, 0x7b826060, 0x8400ff21, 0x217c8273, 0x574a14d0, 0x50d02206, 0xf769182d, 0x1801200a, 0x8c0c1565, 0x8c6c8c52, 0x65a08c86, + 0x8c8506ee, 0x27086752, 0x003600c0, 0x2500003f, 0x2307c974, 0x07060706, 0x20062949, 0x051a4807, 0x47171621, 0x21210517, 0x20238331, 0x48058235, + 0x172f092c, 0x21153515, 0x21313531, 0x12023801, 0x47010113, 0x013406f0, 0x01021213, 0x22170f0f, 0x01201f30, 0x0d011e02, 0x6001140e, 0x1e34d783, + 0x1f200102, 0x0f172230, 0xfe68010f, 0xf64001c0, 0x2219151a, 0x2223f987, 0x831a1519, 0x22228319, 0x41330c21, 0x33220707, 0x4683210c, 0xd6214f83, + 0x20008220, 0x2abb8200, 0x02bbff14, 0x00c0012c, 0x8242001a, 0x313123bb, 0x01821731, 0x27312724, 0x01823731, 0x03830783, 0x1131312c, 0x06071617, + 0x07312727, 0x4c180631, 0x3720096e, 0x36212383, 0x05107b37, 0x5908ea82, 0x17310707, 0x551b2001, 0x46150511, 0x2b0d1d60, 0x101003af, 0x12808012, + 0x19020f10, 0x06060e68, 0x0a409013, 0x40091413, 0x05071390, 0x4818680d, 0x1c622e0e, 0x050e4515, 0xdffe581a, 0x0b0c1363, 0x09444409, 0x92130c0b, + 0x12130e67, 0x11841603, 0x84110101, 0x13120316, 0x8f4e670e, 0x80012108, 0x0b29ab82, 0x53004500, 0x00006100, 0x05034313, 0x23311528, 0x23173531, + 0x7f182333, 0x14830bc0, 0x48098a48, 0x7418075a, 0x82410912, 0x27262405, 0x55072726, 0x15200ca2, 0x90200d8c, 0x2405ef5a, 0x202020b0, 0x07f25a01, + 0x42086c6e, 0x0d420500, 0x07345506, 0x18a0d021, 0x190a4389, 0x250cd623, 0x01010788, 0x00824807, 0x0f101823, 0x224d8301, 0x6d120148, 0x5e18069a, + 0x14870c12, 0x6b016021, 0x802006b8, 0x20080252, 0x08e74404, 0x20053757, 0x1c3b484d, 0x264b4c18, 0x0b596018, 0x18158b5f, 0x201d414c, 0x0b286c30, + 0x18185e56, 0x201a394c, 0x0ce16b50, 0xe3880620, 0x29001729, 0x43003a00, 0x18004c00, 0x71081dde, 0x3554069d, 0x27262805, 0x13112726, 0x51113534, + 0x595106a4, 0x37072206, 0x0c6d7007, 0x2303212a, 0x31152333, 0x07353133, 0x2907cb4b, 0x26373617, 0x16070627, 0xb7540017, 0xcd181906, 0x0a4b2c08, + 0x5a0a0d0d, 0x29d30a0a, 0x67c0c0c0, 0xfe23063d, 0x854037d7, 0x16202400, 0x83160202, 0xa0012103, 0x2005b241, 0x05e144fe, 0x291b1b2c, 0x76fe8001, + 0x06010505, 0x3e820a4b, 0x090d0d24, 0x408256d4, 0xc0235d87, 0x83804040, 0x75f82041, 0x032c0a2c, 0x1e00feff, 0x69014202, 0x32002500, 0x24077552, + 0x23060706, 0xd8931906, 0x0566470a, 0x07c09718, 0x22312323, 0x20b68207, 0x05a05606, 0x17161722, 0x36240282, 0x36313037, 0x096b8f19, 0x834c1a82, + 0x05954c05, 0x11820582, 0x83372621, 0x17362747, 0x31303130, 0x0b821716, 0x36011739, 0x028a8a8a, 0x1d010101, 0x111c1f1e, 0x1b111414, 0x05101020, + 0x455e3f3e, 0x40230655, 0x41962129, 0x37080b95, 0x2a2a2393, 0x16131523, 0x07070d1c, 0x0b0b0303, 0x2d14260d, 0x091f3132, 0x1f090707, 0x152c3231, + 0x0b0b0d26, 0x07070303, 0x13161c0d, 0x2b2a2315, 0x01131223, 0x7777770e, 0x142a6182, 0x130c0c14, 0x3d5d0601, 0x3043023e, 0x12122105, 0x280b3042, + 0x020119a6, 0x120f0d18, 0x20558307, 0x265d820d, 0x01190f0a, 0x82041003, 0x03102500, 0x0a0f1901, 0x5d835583, 0x0e120738, 0x0102180c, 0x000c0c19, + 0xfeff0200, 0x4202deff, 0x5300a001, 0x51568c00, 0x18162008, 0x200877c6, 0x28f48206, 0x27263127, 0x15060722, 0x51a91815, 0x1817200c, 0x870a6276, + 0x1522301f, 0x23060706, 0x31303130, 0x31233135, 0x82223115, 0x1335233d, 0x5a411716, 0x01803835, 0x25291b1b, 0x01061a1a, 0x0d080801, 0x020a0a0e, + 0x0e1a0501, 0x96c00909, 0x02012a17, 0xc01e1d02, 0x03021d1e, 0x326441b3, 0x1b294029, 0x1701011b, 0x84082517, 0x27718269, 0x09021a08, 0x60600e09, + 0xe92c1896, 0x14010101, 0x02146060, 0xfafee901, 0x35337b41, 0xfff9ff03, 0x018702b9, 0x000a00c7, 0x003d002a, 0x37360500, 0xeb463125, 0x67372005, + 0xab7607ae, 0x06073006, 0x26312707, 0x01170607, 0x36371631, 0x4c252727, 0x162105cd, 0x05a34217, 0x37362708, 0x40011716, 0xd6fe3652, 0x3602021c, + 0x07b95236, 0x27212102, 0x0f091527, 0x0e090f02, 0xa71b1818, 0x100c0f13, 0x05835002, 0xe7fe7e2a, 0x22171601, 0x0f01010f, 0x0806c446, 0x02400120, + 0x2b39eb37, 0x02363652, 0x2f1a198d, 0x37373f3f, 0x100c0c19, 0x832a2121, 0x0f13100c, 0x058330fe, 0x22236224, 0x33821617, 0x20223782, 0x0582301f, + 0x834d0f20, 0x003f240f, 0x45720059, 0x426c1c47, 0x16172809, 0x14151617, 0x82270607, 0x232328d5, 0x07072231, 0x56270631, 0x272005c5, 0x3d47b763, + 0x1718105b, 0x18171c1c, 0x0a0a1110, 0x14080707, 0x2b042b29, 0x07081429, 0x0a090107, 0xc1631f11, 0x11b72238, 0x3000820c, 0x12121111, 0x05050812, + 0x0f0f0803, 0x05050308, 0x210e8208, 0xcd63b611, 0x30042124, 0x2f05cd63, 0xff200001, 0x01a001e0, 0x003b00a0, 0x23261300, 0x20056447, 0x086c4b14, + 0x09226118, 0x85171621, 0x4f37200b, 0x222108e7, 0x0f731807, 0xba272109, 0x08059f72, 0x07170b55, 0x12052403, 0x081d0513, 0x1d081c1c, 0x05121305, + 0x17070324, 0x1c1c010b, 0x041c252b, 0x0a080b14, 0x0125180d, 0x1b01148c, 0x1806291b, 0x0e0e2f15, 0x010212ce, 0x021a7a11, 0x117a1a02, 0xce120201, + 0x152f0e0e, 0x1c2a0318, 0x0318011c, 0x0b0c0b0f, 0x181d1308, 0x2f09e35a, 0x001c00bb, 0x004c0030, 0x25000061, 0x07271727, 0x0a7c5218, 0x250b8b55, + 0x37073337, 0x96181707, 0x163308fb, 0x16311515, 0x27262707, 0x27263131, 0x31222326, 0x82060726, 0x210383bc, 0xd0823117, 0x05352727, 0x31311706, + 0x50f68216, 0x362205e4, 0x21820637, 0x3c5a0126, 0xb6483c3c, 0x21051c46, 0x07850002, 0xfafe3c08, 0x03037940, 0x0c0e4403, 0x1505010c, 0x03032b15, + 0x0f01051e, 0x0101180e, 0x19191901, 0x1b360412, 0x1c03d203, 0x089dfe03, 0x470e0505, 0x043a1d03, 0x353c0b09, 0x16b02434, 0x4ac61616, 0x35080bf2, + 0x090909b0, 0x06070518, 0x36363c0f, 0x060d0c29, 0x1aad5256, 0x010a1415, 0x13070609, 0x094b3c05, 0x504c094d, 0x0d0c0e06, 0x091a050d, 0x0a054051, + 0x1c1c0208, 0x00820032, 0x00000638, 0xc001e0ff, 0x0800a001, 0x6c005200, 0x7e007500, 0x00008700, 0x13643301, 0x27352105, 0x21050b5d, 0x657a3123, + 0x05165609, 0x45311521, 0xb6180542, 0x414909ba, 0x0b957a05, 0x7a313521, 0x05260aa1, 0x31313732, 0x25853536, 0x55853d85, 0x87073521, 0xfd73186c, + 0x06741809, 0x20702108, 0x10240082, 0xc009090e, 0xd84bee82, 0x910c830c, 0x00ff2114, 0x06862b86, 0x3e823020, 0x40012029, 0xc0fe2020, 0x82012020, + 0x06c1724d, 0x40914d86, 0xbf496a8a, 0x064d5206, 0x83f0c021, 0x8303824a, 0x2020314d, 0x02000000, 0xc0fffcff, 0xc0010402, 0x38001200, 0x4d0cef52, + 0x17200754, 0x0b7f4a18, 0x22312324, 0x24500607, 0x21332305, 0x08503231, 0xe0232108, 0x210bc941, 0x7148057b, 0x2e062f07, 0x050c0d11, 0x0f0e0548, + 0x17a00117, 0x0a820e0f, 0x110d0c23, 0xc27b182d, 0x0f20260d, 0x1b1b2911, 0x31338301, 0x0a0a0f11, 0x17e0fe10, 0x13121213, 0x10200117, 0xa3830a0a, + 0xff0f0025, 0x823101c0, 0x003122a3, 0x08a95041, 0x06310725, 0x18171617, 0x20196d55, 0x2c9c8236, 0x27263127, 0x17232326, 0x33370737, 0x051c4731, + 0x37211082, 0xbdca1840, 0x09012d1d, 0x12c00d09, 0x860b0b0b, 0x1716020b, 0x16243e82, 0x08c00102, 0x19c6ca18, 0x08090c24, 0x00828bcb, 0x18192327, + 0x19180101, 0x21b28223, 0xe7490700, 0x00112c08, 0x0038002b, 0x00790059, 0x55ba0099, 0x8b420971, 0x0536610a, 0x16311522, 0x3320cf82, 0x82063d4d, + 0x232721a6, 0x16230f82, 0x82070607, 0x3637260b, 0x27343737, 0x08f26327, 0x1523fc82, 0x19171714, 0x2708fe6f, 0x35363137, 0x32331617, 0x2005b44c, + 0x202a9435, 0x83ca1817, 0x2731221c, 0x20359427, 0x21558931, 0x71428060, 0x0cf74e06, 0x1b1b0124, 0x28198029, 0xe0240c9b, 0x020c1e02, 0x0c220082, + 0x0989021e, 0x11904c20, 0x08201b82, 0x14201493, 0x01223e93, 0x008260a0, 0x20057144, 0x4e728380, 0x8d8309ff, 0x0cb68619, 0x0202d022, 0x4f847a8c, + 0x8b8a2e20, 0x64206088, 0x32201493, 0x00203e93, 0x02210082, 0x637c1800, 0x00132507, 0x1300003a, 0x4d05be55, 0x062407a5, 0x23070607, 0x23054850, + 0x16173237, 0x0971b718, 0x19831520, 0x57272221, 0x0621051b, 0x28078223, 0x010fe027, 0x22171601, 0x08068610, 0x1c1be027, 0x16161539, 0x121d1d12, + 0x39151616, 0x30021b1c, 0x0e0d3f2f, 0x0c0d0a0e, 0x0d0e0e0b, 0x0230303e, 0x0f015001, 0x05ec4710, 0x43080684, 0x30313cb0, 0x07060603, 0x06070b0b, + 0x31300306, 0x3e3e623c, 0x03040402, 0x04030505, 0x3e3e0204, 0x00000062, 0xff1b0009, 0x01e501c0, 0x000c00c0, 0x00440037, 0x00600051, 0x007c006d, + 0x009c0089, 0x07062500, 0x162ea383, 0x26373637, 0x17163727, 0x07163131, 0xaa822706, 0xaa832320, 0x26270622, 0x05821884, 0x37361724, 0xd0833336, + 0x82173621, 0x82072021, 0x823220e5, 0x3536221a, 0x202c8226, 0x052e5327, 0xdc843420, 0x21054e46, 0x21822607, 0x34821620, 0x37360723, 0x210a8222, + 0x0c841506, 0x31070629, 0x16171431, 0x83331617, 0x583720ff, 0x69510b28, 0x01220812, 0x0d111200, 0x03030a09, 0x110d090a, 0x0719be12, 0x52220f07, + 0x20191910, 0x10191920, 0x070f2252, 0x13931907, 0x04024231, 0x01080817, 0x0a0d0102, 0x0204060c, 0x820d0a0c, 0x0808230b, 0x4b895317, 0x9f111225, + 0x85180502, 0x0b0b2224, 0x21208516, 0x2b820518, 0xbf51e220, 0x06134e0b, 0x3f056f42, 0x19050831, 0x01010606, 0x06190606, 0x21228f07, 0x0a351c21, + 0x17171628, 0x350a2816, 0x2221211c, 0x432d1191, 0x04051416, 0x0c0b0303, 0xaf090916, 0x28048213, 0x030b0c16, 0x01050403, 0x22488930, 0x8a590508, + 0x86742025, 0x82142021, 0x5131202c, 0xc2510bd0, 0x0000330c, 0x00000001, 0x01400220, 0x00460060, 0x17161300, 0x8c5d3131, 0x37362105, 0x33210182, + 0x05ea6316, 0xf2631520, 0x22072306, 0x01832627, 0xb6452320, 0x07062105, 0x82057d42, 0x34352129, 0x07821782, 0x82323721, 0x059a3e31, 0xc00d0a0a, + 0x050a0a0d, 0x1914130a, 0x01161722, 0x06062802, 0x16010228, 0x14192217, 0x9c168213, 0x2f012a1e, 0x09090a0c, 0x0d160c0a, 0x2731830e, 0x06041630, + 0x30160406, 0x0e224783, 0x1b9b160d, 0x0c336818, 0x30001a22, 0x1ecbcd18, 0x11111724, 0x805f2711, 0x35272e05, 0x36373431, 0x16313333, 0x11111317, + 0x09807f11, 0x2906c648, 0x160d0da0, 0x17191917, 0x00820d16, 0x503b0987, 0x60232030, 0x0909021b, 0x50621e0e, 0x1e625020, 0x0209090e, 0x2023601b, + 0x18600130, 0x2d134fb3, 0x01f8fe98, 0x18f8fe08, 0x050a0310, 0x2c82cb1b, 0x85370121, 0x08012311, 0x45820137, 0x051bcb28, 0x18100409, 0xeb450200, + 0x00302208, 0x07954161, 0xc54f1720, 0x27222305, 0x75412726, 0x37342505, 0x35262726, 0x3720b582, 0x3620058b, 0x3222c583, 0xc8823117, 0x8b057d4b, + 0x07062205, 0x063c4416, 0x2107ba41, 0x30823111, 0x18b83722, 0x3d066351, 0x030f1016, 0x121b0808, 0x17040112, 0x0c0d0e0f, 0x0e0e0e15, 0x0d0e0216, + 0x100f0315, 0x1d839016, 0x0e0d1524, 0x15821602, 0x0d0c152c, 0x04170f0e, 0x1b121201, 0x1d830808, 0x01274287, 0x100f01c0, 0x8370fe18, 0x833c830f, + 0x0a0b3521, 0x1a141409, 0x0a131318, 0x11171711, 0x09080611, 0x06101117, 0x0e294683, 0x11100616, 0x06080917, 0x29198311, 0x1813130a, 0x0914141a, + 0x82830b0a, 0x4b836783, 0x83900121, 0xa36e184b, 0x01002c08, 0x000d00a0, 0x005d004b, 0x5578006a, 0x162605ef, 0x21311717, 0xcb823731, 0x37072323, + 0x21db8207, 0xff821515, 0x0cec4318, 0x0f8d1f82, 0x35373624, 0xf84e3431, 0x077f4d06, 0x23331725, 0x18171633, 0x200ba590, 0x84731807, 0x0cec520c, + 0xb6b6a53d, 0x1a0816b6, 0x081adafe, 0x23235a16, 0x0b0b1223, 0x09091e02, 0x090e200e, 0x86000109, 0x021e2608, 0x23120b0b, 0x1bd3190a, 0x18852007, + 0x250bb2a7, 0x201602a0, 0x04840216, 0x20680123, 0x340b8720, 0x60011602, 0x4b4b1401, 0x65650114, 0x10100765, 0x12255014, 0x05384439, 0x07139818, + 0x2512392f, 0x10101450, 0x111d6507, 0x1d111212, 0x09677cb0, 0x72510820, 0x51182007, 0x6c460b3b, 0x80012305, 0xff6c3100, 0x06ea5605, 0x32313326, + 0x33151617, 0x0ac74318, 0x210b036f, 0x965d3121, 0x6005200a, 0x92180515, 0x16230995, 0x59373617, 0x262505bb, 0x35312327, 0x05da7d05, 0x06220b83, + 0xd6475007, 0xfc691806, 0x18102007, 0x6508339d, 0x102908e4, 0x0f013001, 0x0f20010f, 0x89bb8201, 0xd0fe2109, 0x4909f97e, 0xfc530dd3, 0x20088808, + 0x843b8e60, 0x7f302045, 0x012205bc, 0x0082000f, 0x02000536, 0x6502c5ff, 0x3000b801, 0x78003e00, 0x8c008100, 0x22130000, 0x0cf68a18, 0x16170623, + 0xe08a1817, 0x05a25509, 0x36313726, 0x26352637, 0x23232785, 0x84271717, 0x31272123, 0x17251782, 0x07370727, 0x20198206, 0x05a75d07, 0x18060259, + 0x8808248b, 0x5949840f, 0x0583053c, 0x16293383, 0x26270607, 0x17173637, 0x85048236, 0xb049080c, 0x4c1d040b, 0x0506070b, 0x02094228, 0x054e0b03, + 0x08090a01, 0x0e0b0924, 0x1a11292c, 0x4d0a0701, 0xc00b041d, 0x0b878787, 0x20ca0501, 0x30460b07, 0x0b233030, 0x0309100b, 0x0f0d0607, 0x040b0b0e, + 0x0308f708, 0x0f0d0706, 0x330b820d, 0x080a1009, 0x1002071b, 0x19881910, 0x110f1717, 0x16080314, 0x42080383, 0x0d0e03da, 0x08040a0a, 0x01041515, + 0x174a0ab8, 0x09090803, 0x0a072d45, 0x500c020a, 0x0704050b, 0x2e272321, 0x0d183c0e, 0x03080101, 0x9a0a4a17, 0x03242424, 0x2f36390b, 0x451e0309, + 0x23064545, 0x831f3e26, 0x0404215e, 0x1f217482, 0x310b8a42, 0x1624273e, 0x13131a54, 0x09072407, 0x07831608, 0x64841516, 0x040e5326, 0x0d0b0a04, + 0x00230c83, 0x18000500, 0x28075b81, 0x0016000b, 0x005b004e, 0x05b34368, 0x23311527, 0x36313731, 0x057a7137, 0x1717322a, 0x27052331, 0x27262717, + 0x21055b46, 0xc6433107, 0x054a4d05, 0x1745fa18, 0x2005c256, 0x06504107, 0x27060725, 0x55253726, 0x2a080ba0, 0x353535ab, 0x15081f71, 0x0a0f5165, + 0x0001ad43, 0x1d646464, 0x181eb62e, 0x13290c17, 0x09090b0b, 0x1a07210e, 0x1a24241a, 0x8382071a, 0x19253208, 0x0e21071a, 0x1f010909, 0x095d311f, + 0x11131b1b, 0x21058509, 0x2860edfe, 0x6060250c, 0x6001134c, 0x0c300082, 0x7d7d0154, 0x1101237d, 0x08681b10, 0x70150f10, 0x23273c82, 0x01011616, + 0x87231616, 0x2b658207, 0x23233230, 0x061aaf07, 0x1a161404, 0x20200585, 0x450e2a60, 0x402606f3, 0x6900c001, 0x6b188600, 0xbe180a6b, 0x35211174, + 0x05b74331, 0xbb181520, 0x352308c6, 0x60373631, 0x2321051b, 0x06a36331, 0x098b3120, 0x15070625, 0x18171431, 0x850d6746, 0x2726261f, 0x07161723, + 0x51518507, 0x3721059e, 0x223b8237, 0x82262726, 0x17362507, 0x12121b60, 0x2006e56a, 0x06ee5901, 0x0b11102f, 0x1414010c, 0x14141f1f, 0x100f1901, + 0x27028301, 0x0120010f, 0x10010f0f, 0x193a0283, 0x02161602, 0x25191901, 0x12120110, 0x0979a01b, 0x0b3a1903, 0x70080304, 0x0a8a0a09, 0x077c6918, + 0x0c234219, 0x110b0c23, 0x83568320, 0x087c275e, 0x201b1514, 0x9218010f, 0x0f300c8b, 0x14151b20, 0x02167c08, 0x25201602, 0xc0011919, 0x53299e83, + 0x0a4b0b07, 0x0760080a, 0x23088206, 0x070b0901, 0x00200982, 0x29064f41, 0x00c00100, 0x003d0019, 0xa2641300, 0x0d4d6805, 0x34352626, 0x26173737, + 0xfe583882, 0x37362c0b, 0x37363135, 0x31153133, 0x70161714, 0xe4220522, 0xaa19100c, 0x57250d90, 0x01090a07, 0x05a44640, 0x0f2ded82, 0x070a0a40, + 0x500a0a50, 0x0c0cb401, 0x2a2c8cd8, 0x05030789, 0x1201380a, 0x83301b12, 0x28ce82b6, 0x03050a38, 0x0b0b5007, 0x052b5e50, 0x01c00127, 0x002d00a0, + 0x05c94d69, 0x33171624, 0x01823031, 0x27312722, 0x22210784, 0x06886523, 0x33323322, 0x37241783, 0x31313731, 0x25055d63, 0x31311716, 0xb8561716, + 0x31232305, 0x28850706, 0x5e313521, 0x84180546, 0x2183097c, 0x83310721, 0x15162501, 0x31170714, 0x60270182, 0x05d2080f, 0x83020220, 0x269a83c0, + 0x05200202, 0x6c0f08d2, 0x252409f5, 0x2513d112, 0x1e22de84, 0x2183021e, 0xd2122523, 0x83108412, 0x20042b0c, 0x03070703, 0x29010420, 0x3682d2d2, + 0xde840820, 0x13121b27, 0x090e0838, 0x085a6fc9, 0x4a8e3988, 0x082a5683, 0x0f0d0438, 0x38040d0f, 0x00820008, 0x23440420, 0x00192608, 0x003e002a, + 0x08a35652, 0x2407f56c, 0x31113123, 0x25038221, 0x03113123, 0x15833736, 0x2209e96d, 0x82370725, 0x05705bd5, 0x2005b542, 0x6dcf1916, 0x6c998315, + 0x40370570, 0x404080fe, 0x5a021102, 0x15010211, 0x1afe2116, 0x01161521, 0x821f1901, 0x0e0e2e00, 0x0e301111, 0x1111300e, 0x30700e0e, 0x210a8730, + 0x18831f1f, 0x097bb418, 0x0100ff23, 0x29038300, 0x0211cdfe, 0x16211102, 0x48830115, 0x4082c220, 0x39831f20, 0x39823e82, 0x22111122, 0x4f844182, + 0x1f111122, 0x00321884, 0xff200003, 0x012002bb, 0x001300c5, 0x0046002c, 0x226a0100, 0x9d591805, 0x36272308, 0x72463737, 0x23128c05, 0x16311731, + 0x07f14718, 0x65181620, 0x2d830974, 0x01291a84, 0xda181709, 0x0d01010d, 0x230787db, 0x353535d4, 0x3524108b, 0x98252598, 0x15900083, 0x0abb0129, + 0x0f07650a, 0x8765070f, 0x18cd2307, 0x108b1818, 0x10461828, 0x46c64610, 0x15904646, 0x734b0020, 0x0042240c, 0x826a005d, 0x173224d3, 0x18163131, + 0x2008d093, 0x05065632, 0x64232321, 0x142606ed, 0x22230607, 0xcd642627, 0x31232106, 0x5007fb66, 0x342507ab, 0x03333637, 0x20428314, 0x066a6717, + 0x27343523, 0x08ad6e26, 0x50056867, 0x012906c5, 0x09090e00, 0x0b2a2b3d, 0x05224923, 0x2a0b2324, 0x55443d2b, 0x20159205, 0x138f6e80, 0x1e4d8020, + 0xc001210b, 0x449d3c82, 0xff21708a, 0x13846e00, 0xf94d5020, 0x0000210b, 0x24066f61, 0x00c00180, 0x0c1b4178, 0x35311723, 0x07334d31, 0x83171621, + 0x15142401, 0x61063115, 0x27230976, 0x58173135, 0x3126050a, 0x31273131, 0x79482726, 0x31302707, 0x37161706, 0x2d853137, 0x4c310721, 0x35230511, + 0x83353431, 0x09bb4d4f, 0x37311522, 0x17826182, 0x33363724, 0xb8824001, 0x15012e08, 0x1413010a, 0x0c15231d, 0x15141413, 0x01061110, 0x0b261919, + 0x1421480b, 0x0d5b0113, 0x6c0b0609, 0x09090b2c, 0x0d5f2c0b, 0x0d09070c, 0x322b825b, 0x0b0b4821, 0x01191926, 0x15101106, 0x0c131414, 0x821d2315, + 0x150a272b, 0x0e090901, 0x0482c001, 0x0f1a8424, 0x13832e06, 0x1e111d2b, 0x2c26271f, 0x02022c2c, 0x08318307, 0x09120320, 0x49221919, 0x0d0b063a, + 0x071c4509, 0x1c070909, 0x0d09093c, 0x493a060b, 0x09191922, 0x7b830312, 0x02020722, 0x26253182, 0x111e1f27, 0x256d821d, 0x0f062e1d, 0xa882841a, + 0x240d5742, 0x0052002a, 0x084d5460, 0x6705ff46, 0x06210743, 0x3f861823, 0x144d1809, 0x21032309, 0x5b602121, 0x31352107, 0x8505c74e, 0x202d8437, + 0x07734221, 0xd34b3720, 0x4ba0200c, 0x4b4206b6, 0x240c8c05, 0xfe200180, 0xe6f518e0, 0x36522609, 0x2f020236, 0x22288511, 0x85e0fea0, 0xc0502108, + 0x0a672c1a, 0x8207f55c, 0x881e8346, 0x300c8353, 0x240160fe, 0x25363625, 0x02400124, 0x4b523636, 0x0cab6135, 0x3108c15e, 0x00020000, 0x02200000, + 0x00800182, 0x0048003f, 0x7d180100, 0x23210968, 0x071b4831, 0x15313324, 0x59582331, 0x17162206, 0x830d8217, 0x312123ef, 0x39683732, 0x05805907, + 0x33313527, 0x15351507, 0x9da11827, 0x06705d08, 0x203f0682, 0x0e146050, 0x1c01010d, 0x0e0d0143, 0x1d030114, 0x0608b713, 0x32a70e07, 0x20510f0e, + 0x653030e0, 0x20200d01, 0x41242483, 0x151e0e1e, 0x162f3483, 0x0b0b0cce, 0x07192402, 0x56565020, 0x42411556, 0x002806ef, 0x4200c001, 0x36130000, + 0x2005d942, 0x055b4c07, 0x07880620, 0x20059341, 0x06af7306, 0x5d05ab41, 0xc14605c0, 0x050d4405, 0x26273432, 0x0906fe37, 0x01171724, 0x121b0505, + 0x15010112, 0x0eb94b19, 0x90fe2808, 0x0114141f, 0x1a111001, 0x1401011b, 0x150e1f14, 0x12120101, 0x1722101b, 0x03040116, 0x07b90106, 0x1a1b0501, + 0x830f1125, 0x8f4b1915, 0x16012923, 0x0c0e2217, 0x03000708, 0x2708874f, 0x002b0011, 0x01000046, 0x20058143, 0x84d18206, 0x2727229d, 0x5d691903, + 0x0985550e, 0x18320721, 0x3818e9d7, 0x12093b01, 0x09600912, 0xc0120a08, 0x09080a12, 0x0b0c1b60, 0x0b119011, 0x2006860c, 0x135444a0, 0x0fb00127, + 0xa00f0101, 0x05a94f10, 0xfea01025, 0x8a9090d8, 0x203a8233, 0x13dc44c8, 0x00820020, 0x14000128, 0xec01c0ff, 0x1960c001, 0x31152410, 0x5e363137, + 0x07230807, 0x62311731, 0x06240598, 0x27270607, 0x0efb4119, 0x0d3b9518, 0x4a312721, 0x37260623, 0x31171736, 0x2b43d035, 0x0c7a3506, 0x10070d0c, + 0x0c030306, 0x030c7a7a, 0x07100603, 0x7a0c0c0d, 0x26431c9c, 0x478d2607, 0x0b040306, 0x2140831c, 0x36834646, 0x040b1c26, 0x8d470603, 0x88053743, + 0x080c211d, 0xaf591d8c, 0x07ab6d07, 0x48003528, 0x6e005b00, 0x25798100, 0x3405231c, 0xc0823127, 0x82072c4b, 0x977e18ee, 0x43272008, 0x5f430961, + 0x18072007, 0x591101a9, 0xe16f06b8, 0x05837805, 0x25912720, 0x2818cc6d, 0x0b0b4001, 0x16160212, 0x8db01902, 0xc04c180a, 0x09092209, 0x0cef650e, + 0x71077a4b, 0xd76d1263, 0x14603714, 0xcd071010, 0x16020216, 0x101007cd, 0x12121b14, 0x12120101, 0xb671b01b, 0x0c135418, 0x0a719020, 0x6306200c, + 0x4a240c43, 0x70005d00, 0x1e6b5e18, 0x07412520, 0x36032211, 0x055d7e37, 0x23078f44, 0x31223122, 0x2007f165, 0x432f9103, 0x8b18053b, 0x55920cde, + 0x8c195d41, 0x842020cf, 0x401128ff, 0x0b151307, 0x84010140, 0x1212220d, 0x675a181b, 0x0c9e550c, 0x0d7cbe18, 0x62146141, 0x294106cf, 0xc0fe2105, + 0x2505f34a, 0x070b1591, 0x67189213, 0x38670888, 0x4190200c, 0x38670b7b, 0x4c00200c, 0x1a220bab, 0xb7423500, 0x190d4137, 0x94126b42, 0x163642d4, + 0x33209f8d, 0x26219f9d, 0x08e24127, 0xe0412320, 0x37362307, 0x9d9a3736, 0x4c0e0129, 0x0c141309, 0x4103034d, 0x0783079a, 0x1827a195, 0x0c149312, + 0x41931309, 0x123f0864, 0x00001b12, 0xff000009, 0x014002e0, 0x001900a0, 0x0042002d, 0x006b0056, 0x0094007f, 0x4cbd00a8, 0x374c1049, 0x17112409, + 0x4d153515, 0x566f0526, 0x5b372009, 0x3323093b, 0x85373631, 0x92052018, 0x42172028, 0x208305d2, 0x2305487a, 0x17161716, 0x8205f658, 0x8439851a, + 0xa7289518, 0x01002551, 0x01291b1b, 0x65083665, 0xb0250540, 0x16301602, 0x07077302, 0x0e14b024, 0x1188010d, 0x8cd0fe21, 0x8c30201c, 0x8750201c, + 0x8d238433, 0x9a502038, 0x63012037, 0x8a820537, 0x2f6aff20, 0x00012a08, 0x38383830, 0x16020216, 0x08511838, 0x895e8308, 0x18502312, 0x1f831818, + 0x1f871820, 0x1f83b020, 0x51181289, 0x12850840, 0x1d8d3020, 0x3d9eb020, 0x00000023, 0x0af7410a, 0x42002e30, 0x6b005700, 0x9a008500, 0xc300ae00, + 0x4351d700, 0x0d456a08, 0x26272625, 0x4f172127, 0xe855053b, 0x3736210b, 0x7c06a841, 0x23250748, 0x35272631, 0x20289327, 0x79411905, 0x0706210b, + 0x01202884, 0x42066e4a, 0x21250530, 0x06070631, 0x20788507, 0x05146135, 0x51055350, 0x06250583, 0x15353707, 0x05595635, 0x8305c14b, 0x06d27e95, + 0xab6428a1, 0x12122205, 0x05ff501b, 0x1b1b0126, 0x8080fe29, 0x201ae841, 0x201b8cd0, 0x0d054201, 0x01b0fe25, 0x4280fe80, 0x54820662, 0x1b40fe25, + 0x83011212, 0x42358c54, 0x3a420d1e, 0xa001211b, 0x067d3c83, 0x1b292409, 0x4240011b, 0xf9410d19, 0x052c4208, 0xf9411020, 0x0e17420d, 0x83d0fe21, + 0x05c5454f, 0x20209f82, 0x49424f88, 0x0f2b420a, 0x200e4b42, 0x381f8f30, 0xff060000, 0x02befffe, 0x00c60182, 0x004b0032, 0x0083006a, 0x00b3009c, + 0x05c14300, 0x2306aa5c, 0x27060706, 0x23060c68, 0x36313733, 0x36251582, 0x26313037, 0x20018227, 0x2e1b8207, 0x17170607, 0x37171631, 0x15301736, + 0x83161530, 0x821a8212, 0x36312320, 0x2c821617, 0x83066542, 0x4b36200a, 0x39880589, 0x06310723, 0x05b35c17, 0x35302723, 0x825a8330, 0x0716282c, + 0x31063114, 0x82172706, 0x26272175, 0x1a827b82, 0x75823520, 0x30211a86, 0x20618215, 0x821f8231, 0x3427217e, 0x16207582, 0x46086583, 0x4b071617, + 0x2d2c2d20, 0x0a0e0909, 0x17200620, 0x01060505, 0x1a131205, 0x01140404, 0x191a0d18, 0x0e010127, 0x53532c2c, 0x08092727, 0x2a081803, 0x02030957, + 0x10110909, 0x01020d0d, 0x0f0d0a01, 0x16640c0f, 0x822c2324, 0x20270841, 0x0318082a, 0x27260a08, 0x2c2c5353, 0x18020b0e, 0x0c8f1d09, 0x090e0f0f, + 0x0d0c0301, 0x0a091011, 0x08030102, 0x86080488, 0x0c0d2f13, 0x090a1011, 0x200f0b02, 0x19262620, 0x00820519, 0x32256b08, 0x05062c33, 0x1d4b0204, + 0x02041819, 0x36111203, 0x0413073c, 0x1a060203, 0x01041212, 0x0c161784, 0x01040a0a, 0x0c0b0d01, 0x18170e0c, 0xa4100c11, 0x05db273a, 0x10010108, + 0x02030d0d, 0x0111090a, 0x03050209, 0x25ec0802, 0x04092525, 0x271d1918, 0x0c0fa53a, 0x0e181811, 0x0e0b0b0b, 0x3aa40f0a, 0x02089b32, 0x09020503, + 0x7a821101, 0x0d0d032d, 0x08010110, 0x05081005, 0x83020308, 0x10012115, 0x0c381684, 0x63010111, 0x05121222, 0x261a1b06, 0x04020206, 0x14070820, + 0x06040302, 0x2b066b52, 0x014001c0, 0x001700c0, 0x00310024, 0x0f717e18, 0x36373622, 0x07921819, 0x27261323, 0x560d8226, 0x3723054f, 0x5c060706, + 0x172205e2, 0x246a1716, 0x32198506, 0x12121b40, 0x2d2d0201, 0x2d2d4444, 0x12120102, 0x5660c01b, 0x14760b2c, 0x5630200c, 0xc0200c46, 0xfe212d83, + 0x833783e0, 0x2001213f, 0xfe214983, 0x0b1a5660, 0x308bb020, 0x198b5020, 0x0c9b6618, 0x48000839, 0x97008a00, 0xe500d800, 0x15010000, 0x31331535, + 0x37233127, 0x19172717, 0x510fe22e, 0x23210746, 0x4f098731, 0x25500709, 0x31332305, 0x854d3135, 0x17162505, 0x33233305, 0x1726e382, 0x31171736, + 0x18450716, 0x07062907, 0x31070716, 0x07062706, 0x2705fb44, 0x27062726, 0x37263127, 0x25092d5a, 0x31373726, 0x45831736, 0x0ce46118, 0xf1442520, + 0xb8162005, 0x0cae714f, 0x8020012c, 0x4d835030, 0x0e504d4d, 0x88490909, 0x21162805, 0x21282821, 0x87401621, 0x08724f08, 0x0d01a03d, 0x2060140e, + 0x10f5fe13, 0x04141010, 0x0f100b0b, 0x060b0d0b, 0x02021303, 0x82060313, 0x100f250a, 0x14040b0b, 0x0a211a83, 0x211a8f11, 0x1a820a11, 0xb9410820, + 0x8520200c, 0x2146a22b, 0x618a0114, 0x220cc041, 0x82408001, 0x66262300, 0xbf826666, 0x1f4a4020, 0x111e2105, 0x1e200082, 0x11850585, 0xc3824020, + 0x0e145027, 0x1901010d, 0x8cab98e6, 0x209a8f64, 0x0b3542b0, 0xf19a9b20, 0x6b20459a, 0x9b18fd8b, 0x54310c2f, 0x6e006100, 0x17010000, 0x31231727, + 0x27333135, 0x2ad71815, 0x05ce6607, 0x1805bf59, 0x210bf68b, 0x0d8d3133, 0x7d373221, 0x35200529, 0x21064e67, 0x455c3127, 0x07062205, 0x0b734311, + 0x0c8b2120, 0x4c710128, 0x519d4c4c, 0xfb41a091, 0x01212108, 0x074be818, 0x89420121, 0x4221200a, 0x30280801, 0x611e146d, 0x010d0e14, 0x200b0d41, + 0x0c865901, 0x83600121, 0x70102300, 0x90417070, 0x08082409, 0x84201f30, 0x8208204f, 0x410b8900, 0x8828099c, 0x0d010117, 0xe0fe140e, 0x410b2241, + 0x035b0c2e, 0x059f4a06, 0x38003126, 0x5d004100, 0x18089d48, 0x200b4184, 0x25f98211, 0x17212726, 0x3f722717, 0x72232006, 0x36330841, 0x07173233, + 0x33073707, 0x06172731, 0x36171607, 0x48272637, 0x16290544, 0x15311517, 0x22070631, 0x05045427, 0x47055054, 0x2348087e, 0x12123006, 0xa640fe1b, + 0x07484848, 0x060b1512, 0x190c055a, 0x26077787, 0x15151516, 0x5eb8152a, 0x0a300e36, 0x1f110e07, 0x01011414, 0x0d1f1414, 0x01a0010b, 0xc0213f83, + 0x06484e1b, 0x3205f958, 0x9090908d, 0x12070c15, 0x08120b0b, 0x0d90150b, 0x822a410d, 0x02122200, 0x234b8516, 0x1c1c1c2c, 0x60250983, 0x07021630, + 0x07315a07, 0x4c000421, 0x012707ef, 0x00c00140, 0x4b4d0016, 0x162508a1, 0x14171617, 0xab7f1807, 0x37352408, 0x6d310706, 0xea520628, 0x079d720d, + 0x18313521, 0x520bf693, 0x26220540, 0x1b4c6027, 0x0d0e3307, 0x08080914, 0x0e0d1409, 0x24253640, 0x0d0d0101, 0x0e422f14, 0x41602005, 0x3a7f05bd, + 0x142f2806, 0x01010d0d, 0x85362524, 0x233e83d6, 0x151a1a1f, 0x15243b83, 0x801f1a1a, 0x27231a83, 0x85182120, 0x85a02034, 0x85a02042, 0x2118230d, + 0x5c832720, 0x2b520020, 0xc0012105, 0x2324d382, 0x5b003300, 0x180fdf41, 0x69085844, 0x112005fe, 0x2605eb42, 0x21212101, 0x57213115, 0xa1730800, + 0x31332108, 0x2005294a, 0xb7291923, 0x9bfa1815, 0xf7a11808, 0x05965811, 0x4b6bff20, 0x19702006, 0x2a160c1f, 0x1b1b01c0, 0x29c0fe29, 0x85011b1b, + 0x824020c8, 0x40012606, 0xfe09090e, 0x068a4480, 0x8406795b, 0x0f702440, 0x860f0101, 0x081b7f4b, 0xeb828020, 0x35000d28, 0x69004e00, 0xd35d7c00, + 0x29b48305, 0x31353123, 0x15073736, 0xee571535, 0x33332707, 0x33363736, 0x1b4b1732, 0x08785c05, 0x07063127, 0x23130706, 0x060a5833, 0xb654ea83, + 0x27262405, 0x51233734, 0x461806a1, 0x272013a1, 0x33206683, 0x08e1bc18, 0x25086e83, 0x909090b8, 0x01a00107, 0x1b403807, 0xc0011212, 0x232319a8, + 0x01080829, 0x401b1212, 0x18100f01, 0x0f101890, 0xf067c001, 0x83c02005, 0x28012315, 0x00820127, 0xf0184020, 0x20201693, 0x3020f083, 0x012b0483, + 0x28070190, 0x08010728, 0x83282828, 0x1e602538, 0x21011111, 0x28206483, 0x5c835383, 0x09d8fe26, 0x80200e09, 0x2f241383, 0x10080841, 0x169ff018, + 0xd5553020, 0x0f402305, 0x00820001, 0x18000c21, 0x3907ef50, 0x0051003f, 0x00730063, 0x00950083, 0x00b500a5, 0x00d900c7, 0x00fb00e9, 0x394c0100, + 0x07464105, 0x2217db5d, 0x55150706, 0xb51807f1, 0x35240cd7, 0x15351513, 0x4c05a247, 0x05240753, 0x26233323, 0x08606918, 0x06311524, 0x208d2707, + 0x62251521, 0x33210dfe, 0x20439025, 0x20218e27, 0x20418e17, 0xa2639007, 0x2f659043, 0x0d01e001, 0x1460140e, 0x40010d0e, 0x02161602, 0x51180484, + 0x0122083b, 0x41180100, 0x702008b5, 0x0aee5f18, 0x20b0fe28, 0x010f2020, 0x04840f01, 0x8505b042, 0x88b0200c, 0xfe202215, 0x831285d0, 0xf35f1824, + 0x8a90200a, 0x21458b15, 0x18893001, 0x45891020, 0x15891020, 0x4f900121, 0x48250800, 0x16020216, 0x84058548, 0x87e020c0, 0x2208841a, 0x8bc0fe90, + 0x8a59955a, 0x4d601888, 0x8ab68a17, 0x8b302087, 0x18e48a5b, 0x200cdbb4, 0x2c008200, 0xfffeff02, 0x010002e0, 0x003e00a0, 0xff511896, 0x3d5a1810, + 0x07062109, 0x14220183, 0x11193023, 0x13271c2f, 0x16153515, 0x18071617, 0x282561c0, 0x37262726, 0x33161736, 0x065e7516, 0x36373229, 0x26273635, + 0x4d312727, 0x362a0559, 0x35373637, 0x16373631, 0x11190117, 0x1420254e, 0x3e5bc018, 0x19010021, 0x21226711, 0xc0183801, 0x03314359, 0xc0fffeff, + 0xc0018202, 0x5d002e00, 0x0000ad00, 0x05e24601, 0x20057141, 0x06601826, 0x3131210a, 0x09fc5f18, 0x2c050d59, 0x17161716, 0x31373607, 0x34373631, + 0x053a5927, 0x2105325c, 0x31603116, 0x31302405, 0x69163130, 0x0c600690, 0x65032005, 0x062305b3, 0x75070607, 0x172306eb, 0x86140716, 0x07262222, + 0xb06e1a06, 0x3115210c, 0x4705d165, 0x23210746, 0x088f8331, 0x36372625, 0x16173233, 0x26273637, 0xa0013527, 0x583b3b02, 0x0e0b2f3a, 0x040b221c, + 0x01010903, 0x08080603, 0x83012706, 0x58460816, 0xb8023b3b, 0x033d3e5a, 0x36365301, 0x06270102, 0x03060709, 0x08010101, 0x220b0403, 0x2f0b0e1c, + 0x3636493a, 0x12020413, 0x0a0c0212, 0x16030218, 0x13021112, 0x06010709, 0x13100d08, 0x07120404, 0x03031104, 0x1f84100c, 0x83170b21, 0x132a081f, + 0x060a1201, 0x09070101, 0x12110e0d, 0x0a110306, 0x4b10010b, 0x01023231, 0x0b060617, 0x0b0a0101, 0x03010107, 0x0e0b0905, 0x16833b2c, 0x31320235, + 0x3809cf4b, 0x07085638, 0x47313106, 0x0a0f2c3b, 0x82030509, 0x0b29083f, 0x060b010b, 0x01011706, 0x01392324, 0x02021237, 0x07020e12, 0x0b1e1f0c, + 0x0501040a, 0x08030505, 0x08010503, 0x10040101, 0x22058212, 0x860f0305, 0x200d2421, 0x820a0c1e, 0x0205231f, 0x25820405, 0x07121126, 0x000e0202, + 0x2505db5a, 0xc0018001, 0xe3473900, 0x0d3c7b08, 0x8d453320, 0x31332106, 0x0da2a318, 0x26272622, 0x08f5fc18, 0x14b02325, 0x4b010d0e, 0x0d2405d7, + 0x0150140e, 0x20200482, 0x01211292, 0x891983c0, 0x44d0201e, 0xd020074e, 0x0b53318d, 0x02c02205, 0x08978200, 0x7900092a, 0x89008100, 0x99009100, + 0xa900a100, 0xc600b300, 0x37250000, 0x17163707, 0x27263107, 0x35272617, 0x36353631, 0x22232627, 0x1805bb52, 0x200a0b64, 0x25118306, 0x06072623, + 0x06691415, 0x09635c06, 0x11831620, 0x17061527, 0x37323316, 0x085e6937, 0x36373223, 0x065e4635, 0x37163327, 0x27342736, 0x49f78227, 0x25280a98, + 0x31173736, 0x07270706, 0x17220786, 0x3d832726, 0x07870720, 0x1b823720, 0x17203182, 0x27230787, 0x86073707, 0xc66e1822, 0x3534080c, 0x33363734, + 0x30305201, 0x41071530, 0x098c0803, 0x0a010b22, 0x090d0d0a, 0x083b2d01, 0x090e0e09, 0x012d3b08, 0x0a0d0d09, 0x09220b09, 0x0a090e01, 0x010e090a, + 0x0a232498, 0x89010a01, 0xc5fe2f26, 0x0f05241e, 0x07412b0d, 0x03083015, 0x61841c41, 0x2568302d, 0x0f0d2b1e, 0x251d7704, 0x820c1005, 0x31142e1b, + 0x41400408, 0x0c2b2b2b, 0x1d250510, 0x0b26595d, 0x1582f220, 0x10224282, 0x84ab130c, 0x838b0920, 0x6320aa91, 0x67228685, 0x86821d25, 0x93780521, + 0x221b86a2, 0x8330309d, 0x150722b7, 0x05cd4962, 0x00220585, 0x67180004, 0x582c09fb, 0x74006600, 0x23130000, 0x31152333, 0x27240185, 0x37373631, + 0x2708ee4f, 0x33363137, 0x31171732, 0x2605a65d, 0x31173115, 0x82071716, 0x8435201d, 0x01232403, 0x18351535, 0x2207f887, 0x82303115, 0x09495701, + 0x53190d83, 0x167e0da2, 0xd725080d, 0x60774747, 0x01161703, 0x4d140e0d, 0x13130e32, 0x144d310f, 0x16010d0e, 0x0c600317, 0x11da6cfe, 0xda111515, + 0xda961801, 0x7eb02008, 0x0b8b0b07, 0x0960012a, 0x46592827, 0x2c11111d, 0x25233e83, 0x83250b0b, 0x112c3252, 0x59461d11, 0xfe092728, 0xcececea0, + 0xa10d0da1, 0x08a94cce, 0x74492020, 0x010f2205, 0x0d535f40, 0x2e06ff46, 0x002d0021, 0x21210500, 0x26272621, 0x50311127, 0xe88307f8, 0x6d050741, + 0x25210574, 0x93531806, 0xc0012509, 0x800180fe, 0x09ae5018, 0x13208026, 0xa0100a13, 0xfe267187, 0x020216f8, 0x04849016, 0xb7182020, 0x01230943, + 0x830d1919, 0x00ff210d, 0xd0202883, 0x22099c6b, 0x88000002, 0x0041238b, 0x11462500, 0x057b6b05, 0x25209094, 0x200e796b, 0x0e996b31, 0x41000221, + 0x09830949, 0xfe219f8a, 0x207783e8, 0x209b8340, 0x20098940, 0x0dd64d20, 0x2820a989, 0x3284288e, 0x00820020, 0xfaff0331, 0x4002c0ff, 0x1c00c001, + 0x90003700, 0x18130000, 0x2d09e6a4, 0x07060706, 0x27261714, 0x35263127, 0x05823135, 0x57183720, 0x184c1ba0, 0x065f4605, 0xaf46c986, 0x31332207, + 0x05af4616, 0x250ab146, 0x33163132, 0x01853130, 0x46171621, 0x31200fb3, 0x263d4182, 0x34313033, 0x190b0437, 0x0b19b001, 0x3d6b0f0a, 0x12012727, + 0x0d400203, 0x010a0fb7, 0x13ee4b1c, 0x01793108, 0x0c0a0903, 0x02050f0e, 0x0209090e, 0x09010f0e, 0x04011509, 0x020e0e12, 0x0106080f, 0x08030101, + 0x03100e0a, 0x03050f03, 0x0202010d, 0x0f010d0b, 0x03242285, 0x100f1011, 0xa9382184, 0x16010116, 0x0d831317, 0x29412f2f, 0x30010224, 0xe04f100a, + 0xa7fe1713, 0x3f13094c, 0x04020121, 0x0e0e0204, 0x09020205, 0x0f01010f, 0x09050209, 0x0608171c, 0x03050404, 0x01010402, 0x06200382, 0x0e267482, + 0x0401060e, 0x21830b03, 0x83010b21, 0x08092821, 0x04040503, 0x18000103, 0x270b676f, 0x00ab009a, 0x130000bb, 0x19b4cf18, 0x43054b49, 0x322505f0, + 0x15151617, 0x27058b31, 0x23060714, 0x31353123, 0x15230389, 0x85313331, 0x056f4c03, 0x20059b48, 0x20218415, 0x83298233, 0x82232003, 0x63038921, + 0x41540973, 0x20058705, 0x222d8235, 0x79133736, 0x567e052b, 0x27342805, 0x15272326, 0x82331535, 0x073a5f1a, 0x02167828, 0x16160228, 0x04833002, + 0xd3510984, 0x055e4505, 0x83204021, 0x08b15800, 0x0e845020, 0x2106f278, 0x23820909, 0x16020e23, 0x20068288, 0x200c8240, 0x07b94e20, 0x1602c026, + 0x02160808, 0x1e84058e, 0x60202283, 0x60202b82, 0xa0253382, 0x80606080, 0x086d58a0, 0x0f853020, 0x20831c86, 0x40216783, 0x21498220, 0x1582f0fe, + 0x82303021, 0x85808433, 0x0b87419a, 0x68004d2f, 0x00007b00, 0x33233337, 0x31353736, 0x05364934, 0x093e9218, 0x33210f9a, 0x051e6731, 0x06310722, + 0x24051667, 0x26312727, 0x20418335, 0x050b4433, 0x14150622, 0x09cb8318, 0x20050867, 0x8d361927, 0x2d232b12, 0x010f2d2d, 0x11110b0c, 0x45490c0b, + 0x3f098d05, 0x0f2d0f01, 0x56090a0a, 0x2e2a2920, 0x20292a2e, 0x0a0a0956, 0x191edd0f, 0x05050c18, 0x1e19180c, 0xd8460989, 0x01a0230b, 0x9862c80f, + 0x12842505, 0xa4120202, 0xa4200b85, 0x84200b83, 0xc8220b85, 0x4882010f, 0x5f0a0d2b, 0x13131222, 0x0a5f2212, 0x8266820d, 0x060c2680, 0x0c060808, + 0x20298312, 0x5f0b8812, 0x00360c98, 0xff190002, 0x012702b9, 0x004800c0, 0x01000091, 0x31171716, 0x11193137, 0x896207d8, 0x31172105, 0x8705d969, + 0x31072607, 0x37262706, 0x5a451837, 0x31272410, 0x85363726, 0x15372a3f, 0x06073707, 0x27270607, 0x7d358431, 0x17210545, 0x87078216, 0x2007825d, + 0x876d8337, 0x82078435, 0x07d56255, 0x36086584, 0x20012727, 0x4c180718, 0x09111314, 0x06175c27, 0x42541503, 0x170d0a0f, 0x1601085a, 0x35350f16, + 0x0116160f, 0x0d175a08, 0x5441100a, 0x18050315, 0x1109275c, 0x824c1413, 0x054c0832, 0x10040505, 0x080f0e0f, 0x11080806, 0x040e1112, 0x110d0b02, + 0x010d0d10, 0x11090b02, 0x020b0a10, 0x100d0c01, 0x020b0d12, 0x13110f03, 0x07080910, 0x100e0f08, 0x0104050f, 0x591701c0, 0x100e0c35, 0x03085416, + 0x270b1817, 0x14151241, 0x6b085882, 0x13070918, 0x07134c4c, 0x185c1809, 0x12151405, 0x180b2741, 0x54080317, 0x0c0e1016, 0x01175935, 0x1212129c, + 0x09050610, 0x0f0f110b, 0x0801020e, 0x0c101107, 0x0b04050d, 0x0f12110a, 0x0d01010d, 0x0a11120f, 0x0d05040b, 0x0711100c, 0x0e020108, 0x0b110f0f, + 0x10060509, 0x01000012, 0xc0ff1000, 0xc0013002, 0x0000b300, 0x27172737, 0x29054641, 0x31133716, 0x17163736, 0xed183113, 0x17200a97, 0x83083e6d, + 0x06072709, 0x26312727, 0x27821707, 0x26373622, 0xc8553783, 0x05995a05, 0x07161731, 0x17063107, 0x17323133, 0x15143130, 0x86140714, 0x5316200f, + 0x372309e2, 0x83363133, 0x26352643, 0x36353435, 0x210d8633, 0x01833637, 0xf8423f82, 0x06be4c06, 0x6b823720, 0x67825182, 0x35863720, 0x83373421, + 0x15f62e09, 0x04031515, 0x041d0604, 0x07010a01, 0x2e048207, 0x04061d04, 0x02150304, 0x06062604, 0x84020426, 0x1a45081d, 0x2e020104, 0x02011d1d, + 0x1a0b0a27, 0x03080f0f, 0x29090708, 0x010c1b1c, 0x09051c03, 0x0501061a, 0x09052e02, 0x2302080f, 0x51514040, 0x02234040, 0x05090f08, 0x0105022e, + 0x05091a06, 0x0c01031c, 0x09291c1b, 0x2e368207, 0x0b1a0f0f, 0x0102270a, 0x022e1d1d, 0x8c1a0401, 0x20842369, 0x10832020, 0x0402132d, 0x01071a01, + 0xe6fe0701, 0x83140104, 0x0320269c, 0x06020702, 0x20048206, 0x08218403, 0x0402115d, 0x2322093e, 0x0c253930, 0x1d1e140c, 0x0b171923, 0x1d050808, + 0x03322929, 0x03081c03, 0x1a050506, 0x2f010219, 0x08010308, 0x01292944, 0x44292901, 0x09020108, 0x1902022e, 0x0605051a, 0x031c0902, 0x29293203, + 0x0808051d, 0x2319170b, 0x0c141e1d, 0x3039250c, 0x3d092223, 0x8e110205, 0x0c9b5471, 0xd0003425, 0x4e130000, 0x21230548, 0x18173233, 0x252abfb6, + 0x06271727, 0x01823015, 0x16311728, 0x22230607, 0x81702727, 0x31072108, 0x26260f83, 0x37373435, 0x01833431, 0xaa412720, 0x27262307, 0x2d821526, + 0x03821720, 0x7c270721, 0x3620065e, 0x0872e819, 0x37312731, 0x26273631, 0x22313123, 0x27310723, 0x73233431, 0x15290e9d, 0x31171714, 0x31303107, + 0x4c098206, 0x07210579, 0x20538231, 0x23358237, 0x06073437, 0x6106f96d, 0xaf180526, 0x0e210792, 0x25008209, 0xe0fe200e, 0xb7181b29, 0x3c080c04, + 0x1515155a, 0x01042505, 0x02030503, 0x1d1d0a18, 0x1d1d2929, 0x0302180a, 0x03020303, 0x06150525, 0x1a050505, 0x0c05170d, 0x0f040519, 0x021f0b07, + 0x0201010d, 0x09010102, 0x12030312, 0x2b0b8509, 0x0304050e, 0x020c0501, 0x08020203, 0x08201683, 0x01331682, 0x020b0101, 0x0f070b1f, 0x0c190504, + 0x1b0d1705, 0x18060404, 0x362424b7, 0x161616ea, 0x01011010, 0x05050420, 0x18261502, 0x18010118, 0x82152618, 0x2592825c, 0x11010120, 0x9282150f, + 0x1a1a063b, 0x24060111, 0x1607061d, 0x23081f1a, 0x02020109, 0x01030f02, 0x04010303, 0x250a820e, 0x0404700a, 0x0882086f, 0x820e0321, 0x851483d9, + 0x21073392, 0x171a1e08, 0x241d0607, 0x1a110106, 0x0406051b, 0x335c0004, 0xbf220806, 0xc1014002, 0x24000800, 0x5a004e00, 0x7a006600, 0x17130000, + 0x31371727, 0x37073127, 0x31051736, 0xe24b1716, 0x31152705, 0x27063105, 0xca473125, 0x13252705, 0x15250525, 0x7b6c0731, 0x201e850a, 0x0aa76c26, + 0x32823520, 0x27371623, 0x051c5f26, 0x27363725, 0x82360527, 0x2034860d, 0x21178707, 0x15863137, 0x3c272723, 0x080084e4, 0x0a09db24, 0x01150001, + 0x0505e5fe, 0x1601e5fe, 0x01170001, 0x01eefe12, 0x030d3512, 0x012b0f05, 0x0a00ff15, 0x2082ff0a, 0x050f2b2f, 0x01350d03, 0xb90e0e12, 0x0d03060e, + 0x220e8340, 0x83600140, 0x0d402625, 0x400e0603, 0x241683e0, 0x260f0e27, 0x260d820e, 0x27040527, 0x84474801, 0x76260800, 0x07500303, 0x59151017, + 0x15590101, 0x50071710, 0x5555f6fe, 0x05112e55, 0x0d030d0f, 0x50081789, 0x08500202, 0x0c828917, 0x11050f2c, 0x0505552e, 0x0f0d0302, 0x04841405, + 0x24831e20, 0x04841420, 0x10830a20, 0x05050c23, 0x230d830c, 0x0c01010c, 0x2c055f43, 0xc4010102, 0x60015701, 0x00006901, 0x05315d13, 0x8905a74a, + 0x82312005, 0x07062300, 0x03830714, 0x16153025, 0x84151617, 0x1617260b, 0x14313017, 0x4a1c8217, 0x302806d9, 0x07071631, 0x37311531, 0x362d0182, + 0x34353637, 0x26312727, 0x07173637, 0x200d8231, 0x274f8707, 0x33333131, 0x33163314, 0x41822d82, 0x53051252, 0x5f8205b1, 0x31073123, 0x87508223, + 0x3127242b, 0x82063117, 0x82072045, 0x33362607, 0x07061716, 0x230d8226, 0x17163115, 0x092f3c19, 0x33823520, 0x36221783, 0x0a423237, 0x21318205, + 0x51823137, 0x085c7218, 0x53823120, 0x30312726, 0x26272235, 0x8f820186, 0x03833720, 0x32373222, 0xe018ab82, 0x17220b5b, 0xc9472731, 0x15062206, + 0x209f8214, 0x67801917, 0x090f4108, 0x83313021, 0x37362200, 0x23438234, 0x35303734, 0x2007cf7a, 0x415d8434, 0x33830b0f, 0x37372623, 0x07fa5a07, + 0x08914a18, 0x0a0af626, 0x01050930, 0x023d0082, 0x100f1a01, 0x011a0f10, 0x05010203, 0x29242a09, 0x1a121220, 0x08070603, 0x0105070b, 0x82208202, + 0x07052f02, 0x0f15140f, 0x0f010110, 0x0f141310, 0x16830407, 0x080a0a31, 0x2d214b0a, 0x02160303, 0x04141602, 0x4f010f28, 0x0124053d, 0x1305280f, + 0x03241383, 0x4c202d04, 0x07212482, 0x30458402, 0x0f070402, 0x0f101314, 0x0f100101, 0x080f1415, 0x2d5a8404, 0x080b0707, 0x1b020607, 0x2a201212, + 0x918f2a22, 0x052c2282, 0x1b1a3009, 0x0b1b0101, 0x480b0101, 0x012d0887, 0x280808bc, 0x02010c08, 0x03020201, 0x39968201, 0x2020191a, 0x010f1a19, + 0x02030502, 0x24080c01, 0x171c1813, 0x30272222, 0xa6820428, 0x0a0e0522, 0x01301582, 0x09050301, 0x1e1e1314, 0x22222828, 0x070e191a, 0x0c298084, + 0x2b05070c, 0x02012016, 0x24b28216, 0x091d1c13, 0x05044513, 0x1c091324, 0xd882121c, 0x01021629, 0x052b1620, 0x84090c07, 0x08c482c5, 0x19190e20, + 0x28282223, 0x14131e1e, 0x01030509, 0x050e0e01, 0x040a0a08, 0x22273028, 0x181c1722, 0x979a2413, 0x1277282a, 0x1d122323, 0x6a1d1818, 0x00200887, + 0x0afb4318, 0x1b00c424, 0x05435000, 0x31172606, 0x31173115, 0x4dc21816, 0x37372d07, 0x37313531, 0x33073731, 0x31153323, 0x9105504c, 0x33162207, + 0x3e348e30, 0x35323132, 0x1010f035, 0x143004ac, 0xfe180705, 0x05071840, 0xac043014, 0x404040b0, 0x82304028, 0x01250803, 0x05123001, 0x40fe1708, + 0x12050817, 0x01010130, 0x620808bc, 0x0d1b0102, 0x01011717, 0x1b0d1717, 0xdc620201, 0x080084c0, 0x2001c422, 0x0116160e, 0x0e161601, 0x00c40120, + 0x20000500, 0x6002c0ff, 0x1900c001, 0x49003700, 0x78006100, 0xb84cbd82, 0x3736230b, 0xac833736, 0x26273425, 0x89172123, 0x05136119, 0x0bde4518, + 0x437c2120, 0x87052011, 0x3117262f, 0x37361716, 0x06fc4c37, 0x07052124, 0x88430737, 0x32de1807, 0x80352f09, 0x6009090e, 0x1b121201, 0x0e0909e0, + 0x0e84c0fe, 0x12121b24, 0xd141c001, 0xc0fe2205, 0x0be757f0, 0x8250fe21, 0x029b2516, 0x9b020303, 0xff302e82, 0x88200100, 0x0d0b8888, 0x09880b0d, + 0x00010e09, 0x01211c82, 0x210982c0, 0x428320c0, 0x0e826020, 0x0d82a020, 0x5e832020, 0x08828020, 0x40205383, 0x2009c958, 0x22128220, 0x8201730d, + 0x0d732100, 0x55292a82, 0x07656565, 0x65070101, 0x207a858b, 0x0cb75a8b, 0x2f001739, 0x61004900, 0x93007b00, 0x0601ad00, 0x30011b01, 0x5a014501, + 0x52130000, 0x63180548, 0x1f4e0757, 0x33372107, 0x17231796, 0x96370737, 0xcb16961a, 0x54052031, 0x15270565, 0x16171431, 0x4d313333, 0xd7410bbc, + 0x08be4d08, 0x06070625, 0x19312307, 0x2119d910, 0x05633123, 0x82342005, 0x87332031, 0x053c4f58, 0x14be5885, 0x08031526, 0x03120308, 0x2205a144, + 0x8d601203, 0x124e230e, 0x118c1212, 0x0d8c7220, 0x1fb01220, 0x41ddfd21, 0xc02005f8, 0x81427085, 0x25138206, 0x291b1b01, 0x1c8580c0, 0x125fa020, + 0x5e802006, 0x6020074e, 0x87068f4f, 0x20368307, 0x06564f40, 0x01270783, 0x2b0707b9, 0x85010706, 0x0701233e, 0x0f8f2b06, 0x00822b20, 0x0f8f138f, + 0x4e2023b6, 0xb8838882, 0xa020b486, 0x06830e86, 0x4e072d4a, 0x402008ff, 0xe586e683, 0x20206022, 0x9a062f60, 0x19002009, 0x2e09cb0b, 0x002e00c1, + 0x007d0069, 0x01000094, 0x82161732, 0x05f74601, 0x2305b459, 0x31210706, 0x2005d759, 0x085d4736, 0x36313023, 0x24018237, 0x15350333, 0x07d35335, + 0x19095b51, 0x510b353a, 0x06210599, 0x05584207, 0x27272625, 0x84310731, 0x3603240d, 0x82311717, 0x85152061, 0x82342019, 0x0669454f, 0x14231e83, + 0x42230617, 0x112b05a0, 0x90013531, 0x211a0508, 0x82042921, 0x012d3900, 0x9cfe1d01, 0x2d01011d, 0x05040403, 0x1a212129, 0x02700805, 0x30021616, + 0x71050a41, 0x302007a1, 0x35081383, 0x19160140, 0x40011619, 0x100a0ada, 0xa00e0f19, 0x10190f0e, 0xa0a0a046, 0x0a06021e, 0x0e14400c, 0xc001010d, + 0x191a2206, 0x0303021b, 0x2c371f03, 0x372b1e1d, 0x0c82031f, 0x1a191b27, 0x00fe0622, 0x061e5d48, 0x820a7841, 0x482d0865, 0x16020216, 0x131e3a48, + 0x1e131515, 0x06fb013a, 0x1c140c06, 0x0202201d, 0x141c1d20, 0x12899b0c, 0x0d0e8025, 0x0e0d0105, 0x10200114, 0x21008200, 0xdb560003, 0x00c52605, + 0x0167000f, 0x11d11822, 0x3eff8307, 0x36313737, 0x26072727, 0x22313023, 0x06072223, 0x06313007, 0x14151415, 0x16313117, 0x41153215, 0x16230581, + 0x84373617, 0x30332601, 0x31313531, 0x09445b31, 0x52353621, 0x3026059a, 0x14073007, 0x3f820623, 0x26272625, 0x82233027, 0x22312605, 0x36073131, + 0x076b4933, 0x06312324, 0x71831407, 0x88331721, 0x07194913, 0x22353422, 0xc9485682, 0x82858505, 0x3015292b, 0x14313031, 0x30311515, 0x14208782, + 0x3424898c, 0x36313327, 0x8518b983, 0x4d850c51, 0x34313425, 0x84312331, 0x3123214b, 0x45837382, 0x4b833020, 0x0623d582, 0x82170615, 0x1833208f, + 0x8309a055, 0x31072595, 0x31232306, 0x09684b18, 0x37282384, 0x0b0b7b01, 0x100a0a10, 0x62370585, 0x01010503, 0x01010406, 0x01010203, 0x0e060401, + 0x1c15150d, 0x490d1b2f, 0x21080516, 0x0e090909, 0x0201090d, 0x10080401, 0x0d1a211a, 0x01030108, 0x0ca60101, 0x0d0e1411, 0x0e0d0101, 0x06822214, + 0x16080823, 0xdc411809, 0x19262608, 0x060f0e19, 0x264c8203, 0x04020302, 0x82030302, 0x335d820a, 0x10050301, 0x35202011, 0x01242536, 0x1c271711, + 0x050e091b, 0x24055642, 0x03080d26, 0x36008201, 0x05050202, 0x0101030d, 0x17160607, 0x1b1b2928, 0x1b1b0101, 0x82280529, 0x310d3229, 0x1f20010b, + 0x0b1d2630, 0x09070102, 0x010b0d0c, 0x82be88bb, 0x033e24c4, 0x83020104, 0x820420c5, 0x2867823d, 0x0b0e0e0a, 0x1103010b, 0x21858408, 0x66830e09, + 0xdf820120, 0x010b0526, 0x05050d02, 0x67219982, 0x3d62180a, 0x02022209, 0x05297618, 0x12121b2a, 0x0d0c0101, 0x060c1111, 0x5282af83, 0x01020222, + 0x04210182, 0x843c8205, 0x237c82a0, 0x161c1b15, 0x24242e82, 0x1d233625, 0x09209f82, 0x2406cf44, 0x080a1703, 0x26588204, 0x02030202, 0x820d0103, + 0x0402252d, 0x17161008, 0xc4825282, 0x2807a763, 0x301a1609, 0x0101201f, 0x20c38315, 0x20cb820b, 0x06334c00, 0xc001802d, 0x03010800, 0x00000c01, + 0x4a272613, 0x332905dd, 0x31170714, 0x17323336, 0x08ca7d37, 0x0617162b, 0x22070607, 0x07313023, 0x05be4231, 0x07831720, 0x37323727, 0x31353736, + 0x83058236, 0x82222021, 0x31152123, 0x8205b042, 0x8215204a, 0x54038229, 0x477b053c, 0x85332006, 0x23062249, 0x212b8230, 0xc84b2306, 0x051e5e05, + 0x4c371621, 0x26210516, 0x82888227, 0x4c478319, 0xc06c050e, 0x27262205, 0x225b8414, 0x18262306, 0x2508ac90, 0x37362726, 0xc6181732, 0x878208aa, + 0x8205ca4b, 0x47072041, 0x05820508, 0x36202f82, 0x16235b82, 0x83311517, 0x204d8329, 0x23b38437, 0x31273736, 0x8408df7e, 0x41332021, 0xd0200703, + 0x2b07ad59, 0x1b101030, 0x101b2525, 0x1201010f, 0x09ed9a18, 0x0f020335, 0x0809141f, 0x09020101, 0x03040f08, 0x07080504, 0x4b1a0e0d, 0x0b8505ac, + 0x05111b23, 0x06f54b06, 0x0604032b, 0x0b0a0305, 0x0f100b17, 0x36228314, 0x01011513, 0x0e0d0a01, 0x11111c10, 0x18040606, 0x0b090623, 0x830a0e0f, + 0x1526261a, 0x060c0d16, 0x25008208, 0x150d0c06, 0x13832616, 0x0e0f0a33, 0x2306090b, 0x06050518, 0x211c1210, 0x15010214, 0x22178313, 0x820f1014, + 0x030a2553, 0x04040605, 0x2b052442, 0x1b110506, 0x070d0e1a, 0x03040508, 0x0b872183, 0x080f042c, 0x01010209, 0x1f140908, 0xe472020f, 0x20e6880c, + 0x2ca51801, 0x11192808, 0x200a0a20, 0x671b1911, 0x0783066b, 0x19151e29, 0x01020a0b, 0x82090c02, 0x0d052b3f, 0x100d0c01, 0x16160201, 0x0b870302, + 0x07061129, 0x05050201, 0x82030201, 0x0a0d2825, 0x0d04050e, 0x83060607, 0x0c013222, 0x05060101, 0x13111106, 0x0d130f0e, 0x10181410, 0x2c3a850f, + 0x1a1d181a, 0x15010115, 0x1a181d1a, 0x2f298403, 0x1418100f, 0x01130d10, 0x11130e0e, 0x010e0311, 0x17833a82, 0x07060629, 0x0e05040d, 0x82020f0b, + 0x05052e00, 0x06070102, 0x10010211, 0x0d010c0d, 0x87388505, 0x090f220b, 0x247e820c, 0x15190b0a, 0x0bac411e, 0x09914518, 0xb3450520, 0x00c03a06, + 0x00130007, 0x0025001b, 0x37000040, 0x07351535, 0x27171631, 0x35370737, 0x05fc5931, 0x17270528, 0x36311527, 0xc1443737, 0x31152505, 0x37362517, + 0x17d8a218, 0x285ee024, 0x00828736, 0x2d2c4636, 0x01180101, 0x5e5e5e25, 0x19292836, 0x462c2d01, 0x0159fe87, 0x1649fd18, 0x79032208, 0x234d7979, + 0x6e6e5e09, 0x330dae6e, 0x2a354934, 0x4d4d4d32, 0x32230979, 0x3449352a, 0x6eae0d33, 0x6094185f, 0x08b74313, 0x2b00be2c, 0x49003900, 0x15130000, + 0x7e471535, 0x31332205, 0x42b38235, 0x0d8307eb, 0x27272622, 0x34201382, 0x26210582, 0x22238207, 0x72060715, 0x00190614, 0xe023148b, 0x68011629, + 0x602d08bd, 0x09291601, 0x4c0b0b4c, 0x0118c709, 0x7f001901, 0x6d53280f, 0x0e186d6d, 0x4260e51b, 0x60290726, 0x180e1be5, 0x4c090d6d, 0x21028209, + 0x0019dd0d, 0x042e1578, 0xe0ff0000, 0xa001c001, 0x30001900, 0x856a4600, 0x08174b1e, 0x2408ad7f, 0x33363734, 0xd95e1837, 0x31152109, 0x2008c87f, + 0x202c9517, 0x0e5a5c40, 0x1b121224, 0xbd59c0fe, 0x090e2106, 0x0e200082, 0x4a06b259, 0x5e18055f, 0x01200c36, 0x2014746a, 0x067745c0, 0x4b860686, + 0x2106984a, 0x687a80c0, 0x20068606, 0x068f4900, 0x0120f38e, 0x20055767, 0x696f1921, 0x14072611, 0x06313107, 0x91401823, 0x1732230b, 0xdd861516, + 0x2409667e, 0x33363734, 0x212c9633, 0x2c6bc001, 0x18b7ac13, 0x20096642, 0x0a736bfe, 0x82263741, 0x00022cf3, 0x01c0ff20, 0x00c901a1, 0x1843000c, + 0x210eedf6, 0x37191707, 0x363007c0, 0x26273637, 0x07072627, 0x26312731, 0x06072227, 0x06230982, 0x1a171617, 0x830dd943, 0x31272425, 0x18600137, + 0x3f0bdf5a, 0x17171777, 0x0d11110a, 0x01020d58, 0x10100b0a, 0x191a380d, 0x1313182a, 0x070f300c, 0x57361a07, 0x2705195a, 0x070a1cd0, 0x012d7415, + 0x0c507019, 0x2020c828, 0x02030d20, 0x3683480b, 0x2d2c3e83, 0x0c012124, 0x1e5d140c, 0x27151e1f, 0x3405be5a, 0x121b1a01, 0x00005a56, 0xff000002, + 0x018002bd, 0x003a00c1, 0x82c78275, 0x239f848b, 0x31151516, 0x1624a783, 0x14311517, 0x82058658, 0x12765bc9, 0xd9832720, 0x36372627, 0x17162337, + 0x5be08516, 0x06201293, 0x27231985, 0x49353526, 0x37200582, 0x37204a83, 0x36200b82, 0x01356e82, 0x0705055f, 0x78080c07, 0x4f0a010d, 0x0d0c0115, + 0x192ba90f, 0x0824521a, 0x05010f2d, 0x02010257, 0x3e0b0302, 0x8202030b, 0x05572309, 0x43520f01, 0x1a193708, 0x0c0fa92b, 0x4f15010d, 0x780d010a, + 0x07070c08, 0xbb010505, 0x2f820103, 0x14b40a34, 0x040b4919, 0x6016081b, 0x040a0910, 0x21220c2d, 0x1443762d, 0x0f502905, 0x550f0101, 0x0497090b, + 0x0d227982, 0x02820707, 0x97040525, 0x83550a0a, 0x06aa7a17, 0x212d7633, 0x042d0c22, 0x6010090a, 0x041b0816, 0x1419490b, 0x288084b3, 0x04000003, + 0xc0ff0000, 0x30018201, 0x33002300, 0x76005300, 0x16010000, 0x16313117, 0x05ce6017, 0x22232122, 0x3425ec82, 0x35333637, 0x21098331, 0x0b833111, + 0x8d6c3320, 0x37322107, 0x3305024b, 0x07370727, 0x17063107, 0x31073117, 0x31373714, 0x35163117, 0x2605b057, 0x31273127, 0x85070726, 0x212e8253, + 0xa35f2627, 0x37362306, 0x2f663736, 0x07062407, 0x6c010706, 0xfe2208a9, 0xdc8520e0, 0x20220585, 0x45182001, 0x10850742, 0x09094e2b, 0x05091709, + 0x14090512, 0x08068414, 0x06091724, 0x2401b206, 0x1f273625, 0x06030205, 0x1a29090a, 0x1b01011b, 0x0a09291a, 0x05020306, 0x2536271f, 0xe4820124, + 0x3720c86c, 0x161616ea, 0x0f080401, 0x0c030a16, 0x160a030c, 0x0203080f, 0x2a080816, 0x142c3f83, 0x01060604, 0x1b1b0102, 0x1b1b2828, 0x06240882, + 0x01140306, 0x00217483, 0x08ab4602, 0x6c001c27, 0x06250000, 0x20fe8207, 0x05f04415, 0x47182720, 0xec45086d, 0x67272005, 0x01335068, 0x09097f27, + 0x0a0d0d0a, 0x5846357e, 0x02023b3b, 0x83583b3b, 0x67bc2007, 0xf0233c3f, 0x837e3546, 0x09092254, 0x09b4677f, 0x68205a83, 0x6706f366, 0x0b5f3815, + 0x001c240b, 0x41440031, 0x31232131, 0x47272631, 0x162105ed, 0x05614a17, 0x5a462320, 0x05674109, 0x01352623, 0x170941a0, 0x16018033, 0x17222217, + 0x18020116, 0x0b0b1318, 0x02181813, 0x0bfc6470, 0x2020eb98, 0x3c833483, 0x28272629, 0x160b0b16, 0x42262728, 0x00200b98, 0x04200082, 0x3a08fb41, + 0x002c001b, 0x00540043, 0x35261700, 0x31373736, 0x31353536, 0x31153123, 0x70070706, 0x322b069a, 0x33033737, 0x31353323, 0x18263734, 0x2307e046, + 0x15351517, 0x3122218c, 0x37823736, 0x15353727, 0x26272635, 0x07d06d27, 0xaf332008, 0x4032010f, 0x1901a00d, 0x01012540, 0x20291b1b, 0xa02f151a, + 0x0c0ba0a0, 0x0e14600f, 0x8ac0010d, 0x32732518, 0x01c0c001, 0x3b07126d, 0x211c1dc0, 0x0a30273f, 0x20909010, 0x2f1e3013, 0x011b1b29, 0x9d011013, + 0x08121610, 0x10222483, 0x198b9020, 0x3f275725, 0x181020d0, 0x200961e7, 0x20e38210, 0x30e38202, 0x014002df, 0x002b00a0, 0x0100005e, 0x31313736, + 0x067b4e36, 0x2005e846, 0x22e18203, 0x18272706, 0x260cd1ea, 0x31171716, 0x18361713, 0x180c3db4, 0x210c1b99, 0x8d502223, 0x06614405, 0x60313721, + 0x012605cc, 0x1011061b, 0x6841c816, 0x69c82705, 0x0b151407, 0x0d852e66, 0x13242e2b, 0x0a6e5541, 0x290a0d0d, 0x059c4229, 0x422a2a21, 0x0f8b05fb, + 0x15720124, 0xdf410d0c, 0x97fe2605, 0x11010413, 0x270c85b0, 0x01701f01, 0x09099b22, 0x53893393, 0xc028ef86, 0xc001ff01, 0x5c002800, 0x8208c37e, + 0x323727f3, 0x06071617, 0xae7e2623, 0x33322108, 0x27211186, 0x20018226, 0x384c1825, 0x20fa8208, 0x05d55e16, 0x31171522, 0x22059460, 0x60070726, + 0x3420068e, 0x3405a259, 0x36313737, 0x01003737, 0x393a2222, 0x0b2c3248, 0x080d0302, 0x07c04307, 0x08073608, 0x0b02030d, 0x3948322c, 0x0122223a, + 0x06037701, 0x021f0306, 0x01064705, 0x03330402, 0x0405010c, 0x04043f06, 0x0405063f, 0x33030c01, 0x06010204, 0x1f020547, 0x232e85c0, 0x0d0d0512, + 0x2308686b, 0x12050d0c, 0x20086385, 0x40050577, 0x010a0105, 0x32040605, 0x06460503, 0x21030304, 0x03210202, 0x46060403, 0x04320305, 0x291c8406, + 0x08000040, 0xc0ff1000, 0xff82f001, 0x13000631, 0x53004c00, 0x61005a00, 0x6f006800, 0x74250000, 0x272f0557, 0x23271727, 0x17310731, 0x37313331, + 0x5a271733, 0x2320059e, 0xa5561283, 0x07164905, 0x2107d441, 0x28823336, 0x1621ef82, 0x62328317, 0x448206c5, 0x31371723, 0x294c8323, 0x07333107, + 0x17233323, 0xb9743731, 0x82548207, 0x94012b1b, 0x2a151515, 0x36362115, 0x02837a36, 0x35354233, 0x0b0b0635, 0x0d386e0f, 0x380d1818, 0x0b0b0f6e, + 0x20119206, 0x23358236, 0x1b642a15, 0x36240082, 0x2a2a2a9a, 0x47830e83, 0x11847920, 0x82228a21, 0x58362100, 0x572d0084, 0x0b095757, 0x5c0b0a10, + 0x13010113, 0x2159825c, 0x1183090b, 0x5b255782, 0x14010114, 0x2111855b, 0x00822358, 0x822c3821, 0x23382300, 0x3d828e23, 0x825a2221, 0x432c200b, + 0x802b08ff, 0x2100c401, 0x4b003600, 0x18006f00, 0x2507a54b, 0x31153115, 0x8f182323, 0x0d830b3d, 0x36313528, 0x11133737, 0x43691111, 0x15162107, + 0x2105874f, 0x14820123, 0x86091356, 0x2637251e, 0x23310707, 0x2f065847, 0x31331706, 0x37163117, 0x31333137, 0x31272736, 0x272b2382, 0x01273123, + 0x790a0a36, 0x4410011c, 0x703a06d3, 0x791c0110, 0x07051cca, 0x0c400507, 0x1b121201, 0x4080fe40, 0x0112121b, 0x1383400c, 0x07c71c2d, 0x0b201007, + 0x04101004, 0x8b10200b, 0xbc01280b, 0x18650808, 0x54e87225, 0xe83307bc, 0x65182572, 0x0b0104fe, 0x0b01f5fe, 0x47050520, 0x8384120e, 0x82108548, + 0x315c8214, 0x470e1284, 0x79200505, 0x021c0808, 0x0a1c1c0a, 0x09891c02, 0x00820020, 0x72000b21, 0x153707bb, 0x35001e00, 0x6d006600, 0x81007a00, + 0x8f008800, 0x9d009600, 0x82170000, 0x075e7af6, 0x16311139, 0x32331617, 0x01373637, 0x11212121, 0x11312131, 0x31072237, 0x89070631, 0x31112119, + 0x01222d83, 0x5a423734, 0x37362205, 0xa3661833, 0x82332008, 0x6314203e, 0x152205c1, 0x95180706, 0x23200900, 0x17273282, 0x23370737, 0x82271731, + 0x21308301, 0x1e823127, 0xcc421720, 0x42372005, 0x27200578, 0x07200d85, 0x82057842, 0x07272405, 0x52603331, 0x0e270903, 0x0d0e1414, 0x69a00101, + 0x012105d2, 0x08916d80, 0x0d361684, 0x74fe140e, 0x021d1c03, 0x1f391101, 0x070b0c06, 0x0210391f, 0x0f871d02, 0x83060c21, 0x157c2a0f, 0x152a1515, + 0x1e1e1e41, 0x27028246, 0x1010911f, 0x11112110, 0x1022ea82, 0x1a846011, 0x11116026, 0x21211011, 0x11261782, 0xc0012021, 0xc95940fe, 0x06d14b08, + 0x20241385, 0xfe0e0909, 0x0e371188, 0xc6fe0909, 0x30310405, 0x02100505, 0x360a0a36, 0x05051002, 0x88043130, 0x2436210d, 0x70210082, 0x21008434, + 0x00821c18, 0x1c1c4c23, 0x2112823c, 0x0b823c24, 0x83681c21, 0x0ac34804, 0x6a003924, 0x09190000, 0x705b08c0, 0x05885b11, 0x3637363b, 0x26313537, + 0x07072227, 0x21230631, 0x27272231, 0x06232631, 0x15171507, 0x7d7f1835, 0x18352008, 0x18084957, 0x820f7acb, 0x06072130, 0x33282784, 0x0e0d0100, + 0x60401014, 0x10330182, 0x010d0e14, 0x02030c01, 0xfe1f1d31, 0x311d1ffe, 0x180c0302, 0x21074d4a, 0xc5450001, 0x0c7e1805, 0x05124608, 0x70012022, + 0x40203483, 0x49830084, 0x010c4327, 0x0b0b1401, 0x21478214, 0xc018d043, 0xf64d099d, 0x0bf74707, 0x1b560020, 0x01802d08, 0x00a700c0, 0x00bf00b0, + 0x07370100, 0x08a3ba18, 0x16311727, 0x32311717, 0x05114c17, 0x06070628, 0x15312323, 0x01821731, 0x15821783, 0x88781984, 0x84222005, 0x05ee551b, + 0xef4e2583, 0x9d312008, 0x2726210d, 0x20054a41, 0x06df5223, 0x18272621, 0x2807984d, 0x37363137, 0x31373137, 0x82018235, 0x2627211d, 0x9b840183, + 0x172c1983, 0x15233323, 0x35333331, 0x15351505, 0x31290682, 0x31302323, 0x01233130, 0x22008219, 0x82050202, 0x02023d00, 0x173d3319, 0x03050203, + 0x02010106, 0x09070402, 0x1f060607, 0x03021d27, 0x01030304, 0x032d1282, 0x02060404, 0x2d202703, 0x16020112, 0x051a4128, 0x068ca020, 0x02162830, + 0x202d1201, 0x06020327, 0x02030404, 0x32820101, 0x03022908, 0x0520261d, 0x07080807, 0x01010304, 0x05030601, 0x3d170302, 0x60608733, 0xff7848c0, + 0x88b88800, 0xaa011818, 0x02111111, 0x01257482, 0x10241102, 0x238f8207, 0x03050a07, 0x38250182, 0x0d1a0405, 0x82478409, 0x82042051, 0x01032800, + 0x050c2342, 0x41021612, 0x996306d9, 0x26078807, 0x05121602, 0x8342230c, 0x212e827a, 0x88820604, 0x09010128, 0x05041a0d, 0x51823008, 0x0a04042e, + 0x02020507, 0x6a241007, 0x40a04040, 0x00200082, 0x022f0082, 0xdbff0000, 0xa5014702, 0x3e001c00, 0x4c010000, 0x272206cf, 0x63453127, 0x05a75d07, + 0x36313722, 0x09f9aa18, 0x20053b44, 0x8e6d1807, 0x01172b10, 0x0101122d, 0x870f1312, 0x6b531b44, 0x87442506, 0x377c130f, 0x112b0082, 0x370e0e11, + 0x110e0e37, 0x89373711, 0x9d012a0b, 0x80fe1409, 0x0d080914, 0xfb9a1878, 0x0d782308, 0x30828408, 0x37852b90, 0x2a084b46, 0x00c00100, 0x0035001a, + 0x4d5b0048, 0x6055088b, 0x07062705, 0x17161716, 0x32422726, 0x18112005, 0x181a02e7, 0x4b122649, 0x00201230, 0x0fb37618, 0x36365227, 0x36360202, + 0x13cd5252, 0x510c8e69, 0x01250c8a, 0x1b1b0180, 0x834b8b29, 0x204b8343, 0xb36c18fe, 0x06634619, 0x1805c443, 0x3a0c9bb2, 0xff040000, 0x02c0fff8, + 0x00c50139, 0x0048002e, 0x007b005b, 0x13033700, 0x6e372603, 0x1919093a, 0x07211e78, 0x65191921, 0x1603302a, 0x06310707, 0x06312727, 0x36313717, + 0x85311717, 0x2726210f, 0x0f827083, 0x1b1be029, 0x0e0e021b, 0x19210116, 0x241b8719, 0xfe200110, 0x096a78e0, 0xcd77fe20, 0x234b1808, 0xcc26080c, + 0x08160610, 0x15152111, 0x16071221, 0x112c1006, 0x1011310d, 0x0d311110, 0x01602c11, 0x01d4fe2c, 0x0f0f152c, 0x19190101, 0x2021129b, 0x07f77301, + 0x9b7c0888, 0x05b04306, 0x0cc10134, 0x01113a15, 0x03414103, 0x153a1101, 0x0d081c0c, 0x00824536, 0x090d3623, 0x06cb651b, 0x2807e74f, 0x004d0034, + 0x005f0056, 0x36dd677f, 0x14530120, 0x05914d05, 0x16311528, 0x36313317, 0x03823537, 0x16582720, 0x37362305, 0x21583617, 0x06c46506, 0x07660720, + 0x31172306, 0xb9483716, 0x07262407, 0x67273107, 0x0121258c, 0x07c14d00, 0x011f0125, 0x820f400f, 0x0f702205, 0x05f75701, 0x06853020, 0x7a010f2e, + 0x0d04070e, 0x040d4d4d, 0x6a6a0e07, 0x58500b8b, 0x09092705, 0x0ec0fe0e, 0xba420909, 0x1b012506, 0x4001291b, 0x01211188, 0x07d84330, 0x0d132022, + 0x0d235a83, 0x18102112, 0x2c1077d0, 0x0e0d0461, 0x07212107, 0x2e040d0e, 0x200b8b2e, 0x063f4700, 0xc1014032, 0x38002f00, 0x36010000, 0x26313127, + 0x06072627, 0x83063353, 0x06490809, 0x03311717, 0x15150631, 0x16171631, 0x36333317, 0x35373637, 0x03273431, 0x23033731, 0x31372333, 0x01233117, + 0x02010879, 0x0c0d0b0a, 0x09272709, 0x0a0b0d0c, 0x30080102, 0x0d010ceb, 0xf0f0140e, 0x010d0e14, 0x5930eb0c, 0x24008277, 0x8c017878, 0x8326820b, + 0x3131212e, 0x2e832683, 0xdbfe3c25, 0x83181310, 0x82012027, 0x13183b31, 0x3c250110, 0x9c9c74fe, 0x1f000400, 0x2002c0ff, 0x4500c001, 0x95008c00, + 0xa3829e00, 0x33233322, 0x6f056f49, 0xb14605f2, 0x31072309, 0x55183133, 0x9d590988, 0x07205307, 0xdd4c3620, 0x15172205, 0x26c08331, 0x31313017, + 0x59313031, 0x35210aea, 0x210f8230, 0x08683135, 0x82312005, 0x200f8348, 0x20dc8217, 0x21568217, 0x01833137, 0x36313026, 0x16313133, 0x7a834282, + 0x07217882, 0x07ce5927, 0x2208ae65, 0x82114001, 0x1d1d2400, 0x420f1124, 0x882105e1, 0x052d4438, 0x1b299029, 0x1a02011b, 0x83080d08, 0x0a2408fb, + 0x1725080e, 0x2a1a0117, 0x0fa03329, 0x051c2c11, 0x0a010f04, 0x1b0d0305, 0x1b054005, 0x0a05030d, 0x22110d01, 0x20082442, 0x07364230, 0x1d000127, + 0x04041211, 0x067a4420, 0x856d8d21, 0x1b012b63, 0x1bdf291b, 0x0a020105, 0x5f830e0a, 0x1a060126, 0x2755261a, 0x14826082, 0x07061f31, 0x14601c17, + 0x04010a01, 0x06062511, 0x82041125, 0x6014260a, 0x0d1e161a, 0x4257875b, 0xe3640834, 0xc4012807, 0x2800c001, 0x18005400, 0x8308ef7c, 0x05f157f6, + 0xdf4f2620, 0x35312409, 0x49373631, 0x5e55066c, 0x31152108, 0x09bf4018, 0x8b312121, 0x3223080d, 0x27273637, 0x21272631, 0x022630f8, 0x25240130, + 0x25364036, 0x02300124, 0xc8303026, 0x07100a13, 0x86120909, 0x063749d1, 0x072f0e82, 0xfe130a10, 0xd09001a0, 0x17c5d0d0, 0x8380802e, 0x2d3a8331, + 0x172e8080, 0x01f0d0c5, 0x0f102011, 0x9945010e, 0x87602006, 0x0f0f2507, 0x01112010, 0xe342ce82, 0x827d2006, 0x002423cf, 0xab60004b, 0x46ac8206, + 0x92820597, 0x82161721, 0x08f1670d, 0x37363525, 0x74033736, 0xf0420ba4, 0x06f85305, 0x1c5f1720, 0x14720805, 0x16171607, 0x08f00117, 0x02030b08, + 0x14142209, 0x29290201, 0x0b0d0d3e, 0x35080406, 0x110e0e50, 0x1e1f0323, 0x3602032d, 0x01305236, 0xfe221617, 0x1b1b29f0, 0x16160101, 0x1b1b0123, + 0x15161a29, 0x221a140d, 0x02011617, 0x0112121d, 0x0101c001, 0x13070b0b, 0x3f292221, 0x02022929, 0x080b0a02, 0x23010234, 0x1e1e2d11, 0x51110f02, + 0xfe023637, 0x6e822250, 0x25243b83, 0x01071a19, 0x0d3e4c83, 0x010e150c, 0x09221716, 0x16150608, 0x0300001e, 0xc0fffeff, 0xc2018002, 0x55004800, + 0xe9827c00, 0x0b887518, 0x22232227, 0x26313507, 0x09925227, 0x56373221, 0x27220816, 0x26433127, 0x83372005, 0x69ff8207, 0x6d700697, 0x07172105, + 0x82059656, 0x203e822e, 0x261a4105, 0x0208262d, 0x0408550e, 0x04260503, 0x471d2303, 0x0c280b6b, 0x12131b0b, 0x08071905, 0x32302187, 0x04030532, + 0x020e5508, 0x47070808, 0x96080747, 0x210b8957, 0x3f41f001, 0x87bf2021, 0x1137223d, 0x0bd14701, 0x190e0325, 0x82112018, 0x5409215c, 0x748b5c88, + 0x1324cf26, 0x24131212, 0xe0200585, 0x23206141, 0x00030000, 0x022f0082, 0x00800180, 0x007f0076, 0x37000091, 0x42153515, 0x332105e1, 0x052d4c31, + 0xb4751620, 0x19162008, 0x8d0ce205, 0x31172125, 0x172f0f83, 0x32171631, 0x37373637, 0x27273631, 0x55313531, 0x27200565, 0x26210782, 0xee561823, + 0x07062107, 0x21050476, 0x9c443736, 0x15062307, 0xa9460515, 0x26252507, 0x33373635, 0x2506414e, 0x27260706, 0x1a5a6027, 0x110f2606, 0x010f0f01, + 0x83008208, 0x0f112107, 0x28081686, 0x0e2a0820, 0x0d0c1219, 0x0c041404, 0x16160204, 0x1e153502, 0x8086231f, 0x01222233, 0x0d010117, 0x01101019, + 0x01071e01, 0x074646d0, 0x0777fe32, 0x15b21502, 0x22170702, 0x17223030, 0x202020e0, 0x26065964, 0x18060a58, 0x8201010f, 0x11012168, 0x18230783, + 0x44580a06, 0xa03605eb, 0x0c0e3220, 0x0b01143f, 0x1466110a, 0x16520511, 0x0e160202, 0x5a821c4a, 0x33222234, 0x121f1336, 0x1001010d, 0x20061910, + 0x10152628, 0x15474013, 0x07a93108, 0x02021509, 0x17070915, 0x21010121, 0x0a000017, 0x3d08d351, 0x00230011, 0x00470035, 0x006a0059, 0x0090007e, + 0x00b800a2, 0x27171300, 0x37371617, 0xd04d3631, 0x14152705, 0x35150717, 0x13861615, 0x26312726, 0x25070607, 0x646c2387, 0x06232605, 0x27261717, + 0x056a7131, 0x3117172a, 0x37363716, 0x37070735, 0x2106b85c, 0x4d823332, 0x23263523, 0x05274e07, 0x22312724, 0x25821407, 0x27333222, 0xbe444682, + 0x22232906, 0x06310707, 0x25171617, 0x26201482, 0x36820d86, 0x27363722, 0x05824782, 0x84062655, 0x3327235d, 0x37873323, 0x4d822320, 0x46083984, + 0x35353133, 0x4e080e35, 0x02030a03, 0x2108078e, 0x04050501, 0x2e0c073c, 0x01070808, 0x4e4e2601, 0x350d094e, 0x028e0708, 0xba030b02, 0x08080701, + 0x3c070d2d, 0x01050504, 0xa1a1a131, 0x0601010d, 0x0aad0101, 0x82d60f02, 0xa10d3b07, 0xad0a020f, 0xabbf0101, 0x0306abab, 0x05560303, 0x4f060808, + 0x09040304, 0x4782b701, 0x08062a08, 0x04560508, 0x0309aa0e, 0x4fd90504, 0x04044f4f, 0x09920905, 0x4f040405, 0xa45a0808, 0x0409a4a4, 0x05500405, + 0x05090409, 0x3c098250, 0x20420109, 0x0c062020, 0x01020a8c, 0x09080562, 0x7b7b2e05, 0x0102067b, 0x090e5c04, 0x31a2821b, 0x8c8ca00a, 0x20060c8c, + 0x05080905, 0x0a020162, 0x94820aa0, 0x091b2408, 0x02055c0e, 0xf67b0602, 0x02131313, 0x0106340e, 0x0f0b0440, 0x3406015e, 0x0f13020e, 0x8140040b, + 0x82141414, 0x96410827, 0x08780708, 0x19020708, 0x07787878, 0x020c9608, 0x08070214, 0x89890b08, 0x08070989, 0x09070701, 0xc10a0a89, 0x90090708, + 0x09900808, 0x00000807, 0xff000003, 0x01c001be, 0x001300c1, 0x003d0029, 0x05736e00, 0x0d195e18, 0x27170723, 0x06866917, 0x091d5c19, 0x36211722, + 0x06361484, 0x06310707, 0x35352627, 0x37373431, 0xaf1717c9, 0x08010108, 0x028208be, 0xaf250782, 0xb0b0b0b1, 0x22008208, 0x8201189f, 0x82012005, + 0x01082377, 0x0a829f18, 0x01b0082e, 0x600b0bb6, 0x05090905, 0x68040468, 0x60230783, 0x826060a0, 0x09d82810, 0x57040405, 0x83c51c0e, 0x04042707, + 0x1cc50905, 0x0783570e, 0x60211882, 0x45008200, 0x40290583, 0x1e00c001, 0x5c005300, 0x06974f00, 0x8505757c, 0x17162105, 0x2a063953, 0x27310723, + 0x15351517, 0x5d060714, 0x3527068f, 0x22230631, 0x8b311527, 0x83262011, 0x453720d6, 0x17270580, 0x33171631, 0x48371733, 0x01390774, 0x17171736, + 0x070c1304, 0x0e143411, 0x02163812, 0x22171601, 0x70052520, 0x06ec436a, 0x2c2c2423, 0x300a8624, 0x03040e2d, 0x0e0d0607, 0x04040a0b, 0xb01e1807, + 0x085c4870, 0x8b210134, 0x01138b8b, 0x120e160a, 0x22181602, 0x1f011617, 0xdb186140, 0x7323084a, 0x43731313, 0xe62605d4, 0x0d0f3112, 0x46840b0b, + 0x01171024, 0x3c48b040, 0x26f78207, 0xfffdff04, 0x828002c0, 0x004c26f7, 0x00620058, 0x23f9827e, 0x26271727, 0x091b7c18, 0x33333324, 0xc0821716, + 0x07061527, 0x31230706, 0x23d68222, 0x31153123, 0x17211384, 0x21158516, 0x31832221, 0x83343521, 0x253325ee, 0x34373631, 0x2106d341, 0xae493735, + 0x31302105, 0x07200782, 0x142b5882, 0x36171615, 0x37360537, 0x82363131, 0x31152555, 0x31231714, 0x07206d85, 0x0805af56, 0x3460014e, 0x020a3434, + 0x2c290a01, 0x0b040308, 0x1e2f3070, 0x0d010a39, 0x1a16140e, 0x01200d13, 0x0d196a21, 0x1f1f010e, 0x30fe222f, 0x060f0405, 0x0e050102, 0x94010504, + 0x2c05010e, 0x01a0012e, 0x022f2f2f, 0xfe061116, 0x100f0d84, 0xe818830e, 0x2c08f682, 0x0b994508, 0x7e080505, 0x0d0d4301, 0x0b0a040d, 0x07201505, + 0x25010b0b, 0x14100d4d, 0x13010d0e, 0x1627160d, 0x18181042, 0x1f1f2f1d, 0x234e8201, 0x05050605, 0x29085882, 0x070e0224, 0x422f2d04, 0x0835392d, + 0x020c0c0c, 0x01021602, 0x020b250f, 0x1c570901, 0x09012b32, 0x183c070b, 0x080b0a01, 0x0082006f, 0x0000012f, 0xfe01c0ff, 0x4300c001, 0x14370000, + 0x22cc8207, 0x57270623, 0xbc5109b9, 0x37362805, 0x27343736, 0x67343726, 0x0f82074d, 0x26273623, 0x0b9b5c35, 0x3205e747, 0x1b09a015, 0x0d0e0d0a, + 0x11190806, 0x11010111, 0x840b1911, 0x220d8305, 0x83010302, 0x5921081c, 0x02090a09, 0x010d0403, 0x0c301f20, 0x0707090b, 0x302f0c01, 0x32314b42, + 0x0a0db702, 0x0301091b, 0x84368302, 0x840b203e, 0x23448205, 0x0d0e0707, 0x02371c84, 0x18080808, 0x201f301d, 0x05020201, 0x283f0905, 0x32020129, + 0x18594b31, 0x2009ff47, 0x3dcb8200, 0x00320018, 0x005e004b, 0x00840072, 0x00a40094, 0x00c000b4, 0x00d800cc, 0x17300100, 0xae453131, 0x06ab5f06, + 0xf3830620, 0x4c271721, 0x23210688, 0x149f1822, 0x33362708, 0x37161732, 0x75180537, 0x16230765, 0x18333437, 0x8208b072, 0x82052025, 0x33172547, + 0x26373631, 0x2606f35f, 0x26251706, 0x4d313107, 0x188305ef, 0x17232d84, 0x47233323, 0x12830552, 0x26313524, 0x0e8d2127, 0x8e052321, 0x821f8f0f, + 0x05d9555e, 0x11373623, 0x05b14707, 0x36171625, 0x8a333537, 0x0134080b, 0x02010151, 0x0844120f, 0x19060102, 0x09090a20, 0x0f051f04, 0x04050409, + 0x1d1d1c0a, 0x04050a1c, 0x14091e04, 0x07060607, 0xfe1e0914, 0x020107fa, 0x10124309, 0x063e3283, 0x0909041f, 0x0118200a, 0x0501013a, 0x01165015, + 0x0a041004, 0x0e45090a, 0x09bbfe04, 0x0d820a0a, 0x5016012f, 0x02010515, 0x32450e04, 0x16505050, 0x82071902, 0x88302007, 0xfe50220a, 0x200b8980, + 0x200b8a01, 0x2a401888, 0x497e1810, 0x23013c08, 0x0d010101, 0x09062d0a, 0x131c080a, 0x0a030406, 0x780d134c, 0x0309090a, 0x82030606, 0x114c2191, + 0x012a1f82, 0x08304c11, 0x2e06090a, 0x0d820d09, 0x4c130d2b, 0x0604030a, 0x05891c13, 0x2f6f8305, 0x020a2429, 0x0b2e0603, 0x02064c13, 0x29240a03, + 0x05271383, 0x2e0b1305, 0x8416028e, 0x20048c9c, 0x26149380, 0x01010fe0, 0x83f0fe0f, 0x10012205, 0x84068320, 0x24048a0b, 0x05000000, 0x05176b00, + 0x2100c02a, 0x5e002800, 0xa9008800, 0x21081150, 0x66493133, 0x31152107, 0x1907845c, 0x230d59a5, 0x33233307, 0x23051f7e, 0x27260706, 0x0bdc5818, + 0x21050f42, 0x73613736, 0x08934506, 0x36373424, 0x35823333, 0x06171623, 0x090f6b07, 0x2305a345, 0x37362726, 0xa8443783, 0x84298405, 0x3617223e, + 0x07967e35, 0x2305c443, 0x31272722, 0x2d057d61, 0x12120100, 0x0909a01b, 0x1bd0800e, 0xc14f1212, 0x83802006, 0x10b82800, 0x0b111010, 0x820f010c, + 0x100724f8, 0x84010107, 0x220d8204, 0x83110b0c, 0x23068218, 0x23232385, 0x0f2b1d82, 0x08010c23, 0x0d011a25, 0x832b130d, 0x882b200e, 0x0f63240e, + 0x83101001, 0x051e2941, 0x05080805, 0x0f011e05, 0x09dad718, 0x7a839020, 0x01250484, 0x80804080, 0x205082e0, 0x203e8308, 0x206b8308, 0x85048350, + 0x05dc620e, 0x8b875020, 0x04080c28, 0x131d0c11, 0x99840d0d, 0x20250d8a, 0x231f1f23, 0x28418320, 0x082c3520, 0x2c080707, 0x200d8235, 0x33008200, + 0xff200005, 0x01a001c0, 0x001000c0, 0x00360020, 0x0090004c, 0x09e98619, 0x83702320, 0x53072006, 0x152109dd, 0x20148231, 0x15796533, 0x07271594, + 0x16351535, 0x50373233, 0x1423070a, 0x47070607, 0x27221239, 0x7f183135, 0x42180f32, 0x362307e9, 0x510ec037, 0x80200558, 0x2105734e, 0x6657c040, + 0x0ca6520b, 0x120e602d, 0x11061014, 0x0e121510, 0x821e1111, 0x82a02026, 0x151a293a, 0x0101250b, 0x581b1212, 0x2a053041, 0x01010f38, 0x141f380f, + 0x83010114, 0x70702149, 0x40202382, 0x2e820382, 0xd3625020, 0x079d4e06, 0x06871686, 0x0101582e, 0x130b0901, 0x09090c0c, 0x16212128, 0x4e292586, + 0x260b150c, 0x121b1b35, 0x06f47e12, 0x820f0121, 0x14142261, 0x068b601f, 0x01800123, 0x077155c0, 0x37071725, 0x18230607, 0x2907e143, 0x17161716, + 0x07063111, 0x034b2722, 0x05bc7a05, 0xac4a0b82, 0x84232005, 0x26272317, 0x71551307, 0x4a991811, 0x14153a0d, 0x28331617, 0x050b0b0b, 0x02021006, + 0x52523636, 0x02023636, 0x0b050610, 0x2aac820b, 0x0808051f, 0x0e0a1b05, 0x831b0a0e, 0x091f2509, 0x780b0c0c, 0x850c4341, 0x280585fd, 0x09090913, + 0x01100204, 0x8243840e, 0xf2fe384b, 0x09040210, 0x0a010108, 0x1e060623, 0x061e0b0b, 0x010a2306, 0x75010801, 0x368506d9, 0x4f0cc155, 0x472009cf, + 0x2f26fb82, 0x00004300, 0x43180625, 0xc1600989, 0x33332105, 0x22055648, 0x55311707, 0xfe820b19, 0x31373727, 0x07370527, 0x05754837, 0xe4620720, + 0x9e013a08, 0x1727232d, 0x09010850, 0x121e1c2f, 0x242d2a39, 0x1108100a, 0x0e0e1811, 0x08058458, 0xfe11082f, 0xeaeaea7d, 0x09260705, 0x2417c30a, + 0x01151620, 0x07d21a01, 0x20182621, 0x0a052c0c, 0x0c150509, 0x252a2601, 0x0e081031, 0x1111180e, 0x26058458, 0xc28b1108, 0x8207c2c2, 0xeb062933, + 0x1501011a, 0x17242016, 0x1021bf83, 0x075b5c00, 0x00122108, 0x00360025, 0x005a0049, 0x007e006d, 0x00a20091, 0x00c000b1, 0x00de00cf, 0x01fc00ed, + 0x01000054, 0x21056b4f, 0xd5461716, 0x22232206, 0x067e4f07, 0x1720128b, 0x06230c8b, 0x18070607, 0x89085752, 0x2423d836, 0x15070605, 0x05015231, + 0x26313524, 0x0ec93327, 0x9c422720, 0x18152009, 0x70081ed7, 0x8c5405b8, 0x18798208, 0x180a3953, 0x23088252, 0x31353123, 0x086a6918, 0x23262724, + 0x31830722, 0x3405b245, 0x043a0135, 0x02010607, 0x01021616, 0x02040706, 0xfe020404, 0x20118fe0, 0x831e8b3e, 0x8f52201c, 0x8f2e2021, 0xa0b22021, + 0x90439021, 0x28fe2765, 0x0120010f, 0x058a400f, 0x1190a020, 0x58061762, 0xaa74097d, 0x0544431c, 0xbd01c02a, 0x0f0f0f08, 0x16020216, 0x08230682, + 0x8d300303, 0x8935200e, 0x20188319, 0x281dd835, 0x600f0138, 0x0f601010, 0x2007a701, 0x83c08510, 0x061645f4, 0xc5746020, 0x821d8715, 0x00b0232f, + 0x23480003, 0x36210807, 0x6c005600, 0x37370000, 0x37363707, 0x33363137, 0x31151716, 0x31070714, 0x17141506, 0x31233117, 0x22018237, 0x53263736, + 0x06200602, 0xf8641982, 0x31172105, 0x13201d82, 0x1805de4f, 0x20133b7c, 0x23318334, 0x21212103, 0x114d1d19, 0x6969403d, 0x93311769, 0x02100604, + 0x03033c01, 0x280ccf5d, 0x0a01010a, 0x0b040e28, 0x850e040b, 0x8f0c2b0b, 0x060602d8, 0x05150602, 0x06821505, 0xf8200987, 0x33133e5f, 0xebebeb20, + 0x035e1f35, 0x04011102, 0x08079504, 0x23d00808, 0x0b854b8b, 0x12012325, 0x8a140606, 0x225f844b, 0x5ecefe14, 0x04330e3c, 0xbeff0500, 0xc6018001, + 0x4d000c00, 0x77005f00, 0x53130000, 0x17270be0, 0x17073707, 0x6c151631, 0x31200afc, 0x85053b45, 0x31172325, 0xdc483133, 0x7d302007, 0xb41806cf, + 0x232407d0, 0x27272631, 0x37233f82, 0x19171716, 0x200a7c54, 0x3b461913, 0x26272407, 0x82313737, 0x33332746, 0x16173231, 0x5818c007, 0x33250baa, + 0x32131313, 0x2fac850e, 0x1507184a, 0x1a161507, 0x1f1c111e, 0x02161602, 0x27340383, 0xa20e0e1a, 0x05242424, 0x041a2a05, 0x0d0d0b0b, 0x38030607, + 0x06310f82, 0x060a3015, 0x08190205, 0x041c1415, 0x0207070c, 0xf3921801, 0x4cb7270c, 0x0e324c4c, 0x47425914, 0x4a532c05, 0x1a542319, 0x07060d0d, + 0x83182b19, 0xf8382157, 0xd82b0583, 0xf1141401, 0x068a8a8a, 0x83642a06, 0x085f8357, 0x8d5a0127, 0x02138d8d, 0x09080208, 0x101b5b0b, 0x0c090910, + 0xfbff0500, 0x8002e0ff, 0x84009f01, 0x96008d00, 0xa8009f00, 0x05396300, 0xd2843220, 0xd682dc82, 0x16310722, 0x2c05f974, 0x15070615, 0x23070631, + 0x35272631, 0x05556731, 0x26200b85, 0x2605165f, 0x14070627, 0x4a171617, 0xf94f09b3, 0x110b500b, 0x2b06da4e, 0x36353631, 0x31373637, 0x32333331, + 0x36263d82, 0x26312737, 0x89581737, 0x129b5810, 0x1111973c, 0x20030311, 0x110f0f11, 0x0d0e0e11, 0x1510010c, 0x1f010d0d, 0x0f200f01, 0x05844001, + 0x020e1230, 0x01011b02, 0x12010f0f, 0x09091d11, 0x0382200e, 0x090e4027, 0x22221e09, 0x360a861e, 0x13150b12, 0x02081607, 0x07523636, 0x1e1e2039, + 0x04030319, 0x41490e0e, 0x582007a6, 0x2205ad41, 0x72581602, 0xbd5808e1, 0x0e912508, 0x1007110e, 0x112b0482, 0x1017130d, 0x13130a07, 0x82172919, + 0x0f01237b, 0x24831010, 0x0b031226, 0x25180102, 0x22240a83, 0x0b0e1a1b, 0x23094049, 0x4c0c0c4c, 0x3505c141, 0x07132977, 0x1231150b, 0x38385214, + 0x0b070805, 0x11040203, 0x5918b911, 0x16220edd, 0xda587002, 0x08ef5a13, 0x6400c02c, 0x00006d00, 0x35153525, 0x69743133, 0x05f05305, 0x5505404e, + 0x0585057b, 0x83050d4e, 0x3736231d, 0x2b821716, 0x83060721, 0x83172005, 0x27362129, 0x22061843, 0x82353435, 0x08c84119, 0x26050956, 0x31303736, + 0x18353130, 0x2308dbbf, 0x0a10c001, 0x1425f282, 0x15010220, 0x2c9e8306, 0x25362050, 0x4b600124, 0x15211930, 0x05914615, 0x0b021037, 0x190d0b1d, + 0x1608120f, 0x09091122, 0x08031505, 0x0654150c, 0x06c55106, 0x5a021e21, 0xd22f080a, 0x144e4e4e, 0x07070713, 0x1e4c230f, 0x820f0112, 0x24200850, + 0x27023625, 0x22181805, 0x02021638, 0x0b153816, 0x152a1113, 0x34322c15, 0x0c010115, 0x0a3f100d, 0x1d264b82, 0x02180304, 0x4b418501, 0x1ea42405, + 0x84ae022e, 0x203e823a, 0x077f5000, 0x01410228, 0x004e00c1, 0x7d482500, 0x31232305, 0xb4513117, 0x31272105, 0x2205a856, 0x43060726, 0x058205de, + 0x21055d4d, 0x07843135, 0x37343527, 0x17363125, 0x18178232, 0x080d3bbd, 0x1631172f, 0x01400207, 0x200d0909, 0x12120101, 0x51267b1b, 0x0c750c0b, + 0x3c070909, 0x1f060a55, 0x12121b66, 0x090e2001, 0x00010a09, 0x090c0b0b, 0x28ee866b, 0xc0010c35, 0x0109090d, 0x2d1f83a0, 0x0c0d4340, 0x0908075d, + 0x0947530c, 0x4583340c, 0x8201a021, 0x0a0e2750, 0x070109e0, 0x3d82255e, 0x79233582, 0x860d0b2e, 0x01e024c7, 0x44a00180, 0x332805dd, 0x17163133, + 0x07141716, 0x210a2c48, 0xd5820731, 0x06210f8b, 0x22238315, 0x44323133, 0x455005a2, 0x84232007, 0x342722d9, 0x6e198337, 0x23240536, 0x36313731, + 0xc5730f8c, 0x834d8305, 0x058b7855, 0x197a372a, 0x0e152b21, 0xe50b010d, 0x7c249b85, 0x44020333, 0x142c0a85, 0x20200104, 0x2b372b30, 0x01020a06, + 0x0d22d282, 0x2c8e060b, 0x9b327b21, 0x4c01282c, 0x0e0d0114, 0x450d1215, 0x1d22052e, 0x08850201, 0x30100f27, 0x22012020, 0x07835d05, 0x26a60520, + 0x00820020, 0xffff032e, 0x41020000, 0x28008001, 0x42003500, 0x21087d4a, 0xcf843131, 0x82333321, 0x554a18f3, 0x17162407, 0x52323133, 0x27220575, + 0x1f5a2726, 0x9d78180c, 0x0122080c, 0x3f3f6f20, 0x02011a1a, 0x084a3232, 0x07171327, 0x17071010, 0x4a082713, 0x01023232, 0x3f3f1a1a, 0xeb59c06f, + 0x5940200c, 0x013e0b90, 0x1c1c0180, 0x55392f2f, 0x22012e2d, 0x01010d2f, 0x01222f0d, 0x39552d2e, 0x1c1c2f2f, 0x8e18c001, 0x1f240d65, 0x011f2020, + 0x00204b85, 0x0032c682, 0x02e0ff00, 0x00a00100, 0x00250016, 0x17160100, 0x64543113, 0x31212205, 0x22b18226, 0x82133734, 0x271724cd, 0x68072717, + 0x3628069b, 0x00013333, 0x09d80b14, 0x09db7d18, 0x0bd80924, 0x00824114, 0x0d124f33, 0x100a190d, 0x01a00131, 0x0ea7fe10, 0x0f101810, 0x30258301, + 0x59010e10, 0x68c00110, 0x187f6868, 0x0d220d0d, 0x091b7d00, 0x0800c029, 0x87007e00, 0x18009000, 0x430a5387, 0x1521054e, 0x05664231, 0x66311521, + 0x31200a4d, 0x8509ae50, 0x0bec7a1d, 0x29823520, 0x9a421f9d, 0x4a212009, 0xe8830af9, 0x35032325, 0x83333515, 0x3325235e, 0x45833323, 0x00013523, + 0x20008280, 0x076d5f10, 0x00ff3022, 0x21059342, 0x12873060, 0x1b88a020, 0x92000121, 0x06694914, 0x1b8aff20, 0x80809024, 0x55824001, 0x8001802a, + 0x01404040, 0x60140e0d, 0xbb4d4383, 0x19202006, 0x840de214, 0x42139319, 0x198905c3, 0x4b82fe20, 0x00220284, 0x7b180004, 0x34320763, 0xdf00d600, + 0x0000e800, 0x17271737, 0x37323316, 0x91183536, 0x10500de5, 0x31372305, 0x71513137, 0x31332207, 0x06f34916, 0x27071724, 0x0c4f2717, 0x07864105, + 0x2007bd49, 0x06f95f33, 0x35333625, 0x52373631, 0x15210505, 0x27258331, 0x31353736, 0x27262734, 0x37204e82, 0x25094460, 0x31303130, 0x01830706, + 0x47232321, 0x352105cd, 0x20888231, 0x52058435, 0x36230615, 0x82313333, 0x8317205f, 0x05174d80, 0x6e151421, 0x15830d81, 0x87443320, 0x06947a05, + 0x27118c62, 0x0c0c0cb6, 0x0c120b09, 0x3705156b, 0x0112121b, 0x120c0c01, 0x080d090a, 0x1602070c, 0x07021610, 0x0d08080c, 0x13280082, 0x01050615, + 0x401b1212, 0x2805cf41, 0x0e1e02a0, 0x0e0d0112, 0x05094714, 0x15153108, 0x030d0823, 0x44140e04, 0x01012a2a, 0x32331d1e, 0x3ea0013f, 0x1d1e3332, + 0x010f1001, 0x0e031602, 0x40221b1a, 0x0e1a1b22, 0x01021603, 0x0816120f, 0x082f4685, 0x17380216, 0x19202001, 0x08080a18, 0x854d1315, 0x0f01244d, + 0x850f0170, 0x07fb280a, 0x0c040707, 0x8415120d, 0x2e7f829a, 0x0c0d1215, 0x08040704, 0x16040805, 0x84160202, 0x82322008, 0x0a062324, 0x23830101, + 0x2f05e641, 0x12251030, 0x0e141009, 0x0f01010d, 0x0f301020, 0x64260682, 0x0c1d1c25, 0x12820503, 0x0f042a08, 0x01463333, 0x1d33323f, 0x1d01011e, + 0x3e32331e, 0x1d172701, 0x11060115, 0x111d0216, 0x1d111212, 0x06111602, 0x03021501, 0x2a4d850a, 0x1a081602, 0x1d121226, 0x62760a01, 0x002310ff, + 0x82030000, 0x02003703, 0x00800100, 0x001d0014, 0x3700003b, 0x37361706, 0x27361716, 0x135f2734, 0x15062407, 0x4f070617, 0x2521054a, 0x058b7936, + 0x16222182, 0xb0591617, 0x07062106, 0x0806e741, 0x12014029, 0x47686847, 0x0b0a0112, 0x5959371b, 0x0a0b1b37, 0x333447c0, 0x34334848, 0x0100ff47, + 0x48221818, 0x22486565, 0x8b011818, 0x0cf0390b, 0x01012512, 0x090c1225, 0x1b0f0d0e, 0x0f1b0202, 0x28090e0d, 0x01131301, 0x282d0383, 0x111b1b25, + 0x23010123, 0x251b1b11, 0x200c8c60, 0x82008200, 0xbeff2bbf, 0xc601a001, 0x56000c00, 0xf1766d00, 0x3336260f, 0x31073332, 0x21aa8206, 0x07853117, + 0x36371626, 0x36313737, 0x2722dc82, 0xe1483731, 0x44332005, 0x23240925, 0x27272631, 0x23210385, 0x060b4d06, 0x32331628, 0x23073737, 0x59182333, + 0x4283090f, 0x07222683, 0xa84b4001, 0xc220080b, 0x0303160f, 0x0707071f, 0x031a5713, 0x0d0d0606, 0x1d040b0c, 0x0e050604, 0x0c051f39, 0x151e1817, + 0x2b053842, 0x06091515, 0x11303918, 0x18223012, 0x2405ee70, 0x3b3b2317, 0x271c853b, 0x0b0e1e46, 0x130b1b09, 0x280dab4b, 0x165e1080, 0x350d1414, + 0x83528359, 0x0f652a5a, 0x24080f0f, 0x101b0c52, 0x05e74110, 0x0f130129, 0x050f1336, 0x71172101, 0x17200549, 0x26060d4f, 0x061a1b01, 0x41291c11, + 0xe02a072b, 0xa0014002, 0x2f001300, 0xc1624300, 0x17142505, 0x33333316, 0x23090061, 0x11151637, 0x08db4d18, 0x6205f143, 0x212107dc, 0x05fd4101, + 0x5b05e662, 0x332105ac, 0x237e8200, 0x0d013010, 0x20054e6d, 0x61c91870, 0x10013508, 0x01a51911, 0xfe291b1b, 0x306001f0, 0x0101201f, 0x0219f50f, + 0xb0251083, 0x30307001, 0x6ded8230, 0x30250871, 0xd0fe1b15, 0x0689691b, 0x11190534, 0x29c00110, 0xfe011b1b, 0x1f200140, 0x02010f30, 0x0e830519, + 0xff040038, 0x01befffe, 0x00c001c2, 0x00330020, 0x00790046, 0x07140100, 0xdf543131, 0x05f15911, 0x16171623, 0x4e721817, 0x53372012, 0x2f5b11db, + 0x31372208, 0x22348236, 0x6a060716, 0x1720053a, 0x06200983, 0x2405d672, 0x26272627, 0x07f84137, 0x0137262a, 0x1d111270, 0x600e0909, 0x1d2bc882, + 0x28021211, 0x293d3d29, 0x53c80228, 0x71180bd8, 0xfe270cf9, 0x0c0c07cb, 0x82b2b20c, 0x05072a04, 0x860c0404, 0x04040c86, 0x26139305, 0x1b224001, + 0x8516111c, 0x11162d49, 0x36221b1c, 0x01012425, 0x30362524, 0x184a7218, 0x4c838220, 0x83595921, 0x21608358, 0x58834343, 0x00241393, 0xff010000, + 0x07979218, 0x00000c27, 0x01173613, 0x39e68231, 0x26310127, 0x130f0537, 0x0c105002, 0xb0fd130f, 0xb7010c10, 0x30fe0c10, 0x0982130f, 0x130fd022, + 0x08a76a1b, 0xc4010424, 0x3783a300, 0x07262728, 0x17063107, 0x30433117, 0x83072006, 0x830a190b, 0x1617220a, 0x05f26c37, 0x29682585, 0x82262005, + 0x17162713, 0x37361716, 0x99693736, 0x08946006, 0x4d820f82, 0x0f712786, 0xc5781805, 0x82062008, 0x0b634b6b, 0x0f821620, 0x23057d46, 0x15060726, + 0x2007654f, 0x20938234, 0x820f8406, 0x372f0893, 0x13069e37, 0x0b210916, 0x04503918, 0x16091301, 0x09130514, 0x1a3c3c1b, 0x1405130a, 0x01130916, + 0x18395004, 0x1609210b, 0x02200613, 0x78022004, 0x02240509, 0x20020420, 0x1a213791, 0x2137843d, 0x378f1515, 0x0c0d3031, 0x06050814, 0x010f0f01, + 0x15070506, 0x82300d0c, 0x0139083f, 0x0609169f, 0x1a225513, 0x04011b39, 0x09051439, 0x0a1a3816, 0x1a0a1414, 0x05091638, 0x01043914, 0x221a391b, + 0x09061355, 0x04055416, 0x1b1a2820, 0x1b1a0101, 0x05042028, 0x3937aa54, 0x13180e30, 0x04030a13, 0x0f0b0804, 0x0b0f0101, 0x03040408, 0x1813130a, + 0x4782300e, 0x00820020, 0x0c000736, 0x6002c0ff, 0x1f00c001, 0x45003200, 0x57004e00, 0x69006000, 0x2007bf4a, 0x05a54717, 0xc74b0620, 0x36372105, + 0x35200183, 0x21240583, 0x31272613, 0x0e804218, 0x31271882, 0x34353631, 0x82272627, 0x14152536, 0x25171617, 0x08b54218, 0x5f10614f, 0xbc230988, + 0x820d0e22, 0x0d0e369c, 0x110f0f08, 0x080a12ee, 0x09070d09, 0x1b010707, 0x1c01291b, 0x0fb06c44, 0x210b3c43, 0x945b90fe, 0x08e24d10, 0x1a875020, + 0x26c0013b, 0x76323434, 0x121b4546, 0x0f010909, 0x1e1c1010, 0x4c353520, 0x02363652, 0xd5331afe, 0x18802010, 0x230b9a40, 0x0112121b, 0x124f4f88, + 0x18102010, 0x560d4b86, 0x8d280797, 0xa3009600, 0xc100ac00, 0x230a575b, 0x17161732, 0x2305f951, 0x31373734, 0x26050952, 0x31070716, 0x18151506, + 0x2008ad83, 0x240f8206, 0x07062326, 0x06c16023, 0x17070625, 0x5b151631, 0xc1440900, 0x08985811, 0x55833520, 0x23272623, 0x0f481831, 0x82332009, + 0x31272265, 0x23198426, 0x31351736, 0x33210182, 0x053d7023, 0x06072724, 0x5e430607, 0x26272305, 0x99180527, 0x152007bc, 0x2308d041, 0x16333233, + 0x25821f82, 0x0160072e, 0x6a1b1212, 0x08101014, 0x02116a30, 0x3b072f44, 0x11380a03, 0x16010c0b, 0x3d19152b, 0x09095023, 0x0303080e, 0x17090906, + 0x0a0d0c0a, 0x1082c682, 0x090e2030, 0x06070709, 0x0a0c0d0a, 0x06090917, 0x0f490303, 0x2f288507, 0x6aaa120f, 0x71206a6a, 0x182d5a27, 0x2d181616, + 0x01210585, 0x07885060, 0x19192531, 0x16230201, 0x2204041d, 0x01011617, 0x5b251919, 0x0b280587, 0x2278120b, 0x0c052225, 0x2d061545, 0x22171405, + 0x2d110b0c, 0x091b0f1a, 0x73862e02, 0x73938482, 0x9c918b83, 0x01060d27, 0x60606020, 0x927f18c0, 0x51c0200b, 0x4020078d, 0x2e267983, 0x1804101a, + 0x92832319, 0x00000024, 0x3b7d0007, 0x00063607, 0x00210010, 0x0045002b, 0x00630054, 0x23331300, 0x07272633, 0x056e6037, 0x37313322, 0x088d6318, + 0x4f312321, 0x072d051c, 0x31150706, 0x31273133, 0x27173727, 0x07544f17, 0x37055748, 0x27262726, 0x07223123, 0x31171407, 0x33331631, 0x06313531, + 0x25150607, 0x08059341, 0x1731235e, 0x36373631, 0x6767f035, 0x43180c67, 0x291d1926, 0x520f201f, 0x2536365b, 0xfe010124, 0x25240101, 0x0d0f6436, + 0x213a3e94, 0x442f2f2f, 0x01161722, 0x080d5210, 0x33320209, 0x0b0a5c4b, 0x0d08099d, 0x11111e22, 0x0d014001, 0x3930140e, 0x010b0b11, 0x32141e70, + 0x15010c44, 0xf4442416, 0x08203e83, 0x4d830082, 0x0705382f, 0x076068bc, 0x014f4f4f, 0x1b221716, 0x253a8215, 0x0232334b, 0x4e82b101, 0x2319a72e, + 0x14122924, 0x5f010d0e, 0x120d0d03, 0x2e06174a, 0x00800180, 0x00340027, 0x01000041, 0x82212121, 0x05b975b6, 0xf24e1720, 0x3a71180f, 0x43052009, + 0x12690501, 0x0cf24e05, 0xfe400227, 0xfe000200, 0x07e84700, 0x1327782b, 0x1f1f0f20, 0x2613200f, 0x21138779, 0xf54e20fe, 0x4e80200c, 0x01260bca, + 0x12120180, 0x3f85ff1b, 0x1c402228, 0x401c0101, 0x13830122, 0x13840120, 0xf74eb020, 0x0004301b, 0x02c0ff00, 0x00c70107, 0x004c002b, 0x548f006e, + 0xa943069d, 0x07062807, 0x07223123, 0x5c063101, 0x5b430502, 0x35352105, 0x2506cd50, 0x17320325, 0xb3433117, 0x079b4307, 0x26078343, 0x33363137, + 0x82271725, 0x05d34321, 0x32221f93, 0x429f3717, 0xd0013808, 0x0e081011, 0x0104560d, 0x0507100f, 0x0f0af1fe, 0x0a2a0a0e, 0x0105700b, 0x0406230f, + 0x06201301, 0x06330f02, 0x020f3306, 0x0e020606, 0x34060634, 0xfe06020e, 0x910f0fa8, 0x02062a15, 0x07020678, 0x1b06061b, 0x872c8307, 0xba013009, + 0x10080e0d, 0x07046011, 0x05010f15, 0x820bd0fe, 0x0f0e2c5f, 0x0705630a, 0x04020e1c, 0x84e6fef6, 0x22668e52, 0x833434da, 0x21158e68, 0x5b8e4606, + 0x7f5d6f84, 0x00022c06, 0x2a00c001, 0x7f005500, 0x42010000, 0x0d5807f5, 0x062a760a, 0x36312123, 0x05885b37, 0x20056d52, 0x872a8713, 0x09075016, + 0xbf6e2120, 0x8222200a, 0x3307233e, 0x3c8d3323, 0x16171422, 0x4b0cc27c, 0x012107ac, 0x06b24420, 0x82073070, 0xd3781807, 0x0e202109, 0x2005e85e, + 0x29fe1820, 0x46802008, 0x01200583, 0x20830786, 0x2020e022, 0x16861f88, 0x4f831d8a, 0xb846a020, 0x6b0b820b, 0x1b8207d4, 0x1b83fe20, 0x298b0f8a, + 0x49086873, 0x0b850bd6, 0x5905964d, 0x482009ab, 0x08c3dd18, 0x24058542, 0x27062306, 0x05d24c07, 0x07060722, 0x2e0d2d46, 0x17363736, 0x31373716, + 0x35263137, 0x6a013734, 0x2720080a, 0x0806db69, 0x0a890131, 0x400a0d0d, 0x0c0a0909, 0x31090a0c, 0x0907050d, 0x13a21808, 0x5814191a, 0x19a11313, + 0x141f1f1f, 0x080a310f, 0x42dafe09, 0x0b0b4242, 0x85090962, 0xb7012405, 0x83400909, 0x0109263a, 0x0f310908, 0x24288215, 0x1313a118, 0x27398358, + 0x080818a2, 0x310d0407, 0xfe215384, 0x253882ae, 0x0b620909, 0x0584420b, 0x0436cc82, 0xc0fffaff, 0xc0010602, 0xb1003c00, 0xcb00be00, 0x16370000, + 0x6c723117, 0x33362406, 0x82363332, 0x3332210f, 0x41051550, 0x302307da, 0x54233023, 0x06230541, 0x45272607, 0x1422057e, 0xf1820617, 0xc44b0520, + 0x7a15200a, 0x1527066f, 0x17161714, 0x4d223130, 0x322808a8, 0x30333231, 0x06152207, 0x33261983, 0x37363732, 0x13193130, 0x3527083f, 0x15303534, + 0x83163316, 0x34352517, 0x30272627, 0x23822d82, 0x23210b83, 0x23458222, 0x35363330, 0x0884df19, 0x31300725, 0x82073534, 0x47288297, 0x53190562, + 0x00360cad, 0x291b1b01, 0x1010072d, 0x13030314, 0x03131f1f, 0x10101403, 0x55422d07, 0x01012f07, 0x17160102, 0x0e172622, 0x30211a1a, 0xdd6e201f, + 0x41202006, 0x012705eb, 0x0c0d0a01, 0x830a0a0a, 0x051e4225, 0x00830120, 0x0c211182, 0xa414820d, 0x18f02024, 0x200ca374, 0x200d8ba0, 0x298583e0, + 0x170b0b12, 0x0b170101, 0x8b42120b, 0x08082507, 0x01161722, 0x102a0d82, 0x1f200111, 0x0a0a0b30, 0x50181918, 0x022007e7, 0x7e917f82, 0x8c090d21, + 0x232482a3, 0x0d090a0a, 0x0122a293, 0x174f8002, 0xbb76180b, 0x02b93012, 0x00c00143, 0x004a0024, 0x00640057, 0x557e0071, 0x16210855, 0x28018417, + 0x36373633, 0x06072627, 0x05955423, 0x27230d84, 0x4e032322, 0x26210782, 0x05184227, 0x18422220, 0x05904e08, 0x21213c83, 0x059a4c05, 0x37371626, + 0x33273631, 0x4b080ca5, 0x2331e101, 0x101b0823, 0x12230211, 0x24360606, 0x0c050508, 0x18260807, 0x0c0c0119, 0x03020915, 0x7106050b, 0x01171622, + 0x1d121201, 0x17160102, 0x0d141a22, 0x291a1615, 0x23011b1b, 0x01011616, 0x01291b1b, 0x13e5fe10, 0x110a200e, 0x0b220482, 0x0a9f6012, 0xc0013308, + 0x2f1e1e01, 0x2019190d, 0x01012311, 0x0a0b0823, 0x19010102, 0x14182618, 0x0b060c14, 0x80fe020b, 0x22161701, 0x0615161e, 0x17220908, 0x150e0116, + 0x66840d0c, 0x1a1a0723, 0x27778324, 0x30110a24, 0x120b0e13, 0x099d0482, 0x0b8bbb18, 0x41002929, 0x73005900, 0x4a370000, 0x37200814, 0x5b052f4f, + 0x0f580533, 0x19322005, 0x220a272e, 0x19360721, 0x2308cb76, 0x07060714, 0x21054074, 0x55183734, 0x17890ed5, 0x10a35518, 0x60201a88, 0x4141b683, + 0x1f202805, 0x1a1a2130, 0x8326170e, 0x45f882da, 0xc0280881, 0x05050207, 0x0e062302, 0x22055250, 0x8ea02306, 0x237d230f, 0x128d2323, 0x1b018039, + 0x1920291b, 0x0b0a0a18, 0x01201f30, 0x1b1b1011, 0x17160101, 0x42080822, 0x342507ed, 0x0b410404, 0x0a11190d, 0x0d032308, 0x1191410b, 0x00824120, + 0x00341590, 0xfbff0500, 0x0002bbff, 0x2900c001, 0x43003600, 0x5e005100, 0x202c3d41, 0x056d6d16, 0x31373725, 0x8b331736, 0x0717260c, 0x27060737, + 0x22188426, 0x8b270716, 0x2428411a, 0x07130e26, 0x14150a30, 0x79200483, 0x0b240a87, 0x3030f415, 0x0b241585, 0x84071315, 0x24411789, 0x0a222521, + 0x07147015, 0x1f22048e, 0x14897070, 0x1c891f20, 0x00002108, 0xfffeff07, 0x018002ba, 0x003600c2, 0x00520045, 0x006c005f, 0x00a00079, 0x17160100, + 0x07063117, 0x2507af45, 0x17161716, 0xe8823107, 0x211f4d73, 0x924e1732, 0x27262605, 0x37363736, 0x18374113, 0x8c0c4441, 0x06e0630c, 0x8305cb58, + 0x31352144, 0x7406fb6b, 0x26310d9e, 0x230a0208, 0x291c1615, 0x0d011b1b, 0x1f02160d, 0x19747338, 0x10155634, 0x141d0102, 0x01130914, 0x1b121201, + 0x200a1145, 0x0484130e, 0x0a9f6020, 0xa1734b20, 0x113f2e24, 0x1b010e21, 0x161b291b, 0x22310d15, 0x0df27327, 0x2c740820, 0x32323806, 0x0c8f0305, + 0x160b0706, 0x1c131e17, 0x0112121b, 0x130eecfe, 0xa20a1130, 0x73742004, 0x053721c0, 0xc0ff0000, 0xc0018102, 0x6b004400, 0xbc009300, 0x0000e400, + 0x43373613, 0x372105f9, 0x2a078331, 0x07061716, 0x31170706, 0x6e333316, 0x0d8205b2, 0x2505d541, 0x31152726, 0x5f483121, 0x08175c06, 0x26313729, + 0x01272627, 0x78332333, 0x396a0615, 0x07427f08, 0x2307d54e, 0x27333135, 0x2d075062, 0x17060722, 0x31073117, 0x37161714, 0x6d823137, 0x35363722, + 0x28055f5d, 0x31272326, 0x07223727, 0x9e1d8207, 0x26312225, 0xa29e1823, 0x2a2a9e08, 0x02050140, 0x2e020305, 0x8203022e, 0x012e0808, 0x060b0b01, + 0xdb0d094c, 0x14273f20, 0x0b020107, 0x090c0d0b, 0xfe0b0813, 0x0f0928a0, 0x02110e2a, 0x010f0f16, 0x08084c0c, 0x80010107, 0x53746060, 0x4aa02007, + 0x602d0664, 0x0303021b, 0x03180a02, 0x11020101, 0x210b8204, 0x0f821515, 0x02110428, 0x18030101, 0x1a996b0a, 0x75030222, 0x0134399b, 0x050b10a0, + 0x022c2c02, 0x140f0c05, 0x48040b0c, 0x1a320109, 0x07209a83, 0x1936a282, 0x5e57060b, 0x091c080f, 0x160f0f01, 0x065e0f13, 0xfe100b0a, 0xed5840c0, + 0x2c078906, 0x1403038d, 0x03030304, 0x02031610, 0x25e78202, 0x03020201, 0x10821016, 0x9b140421, 0x241b9919, 0x05000000, 0x07334f00, 0x8f008628, + 0xa1009800, 0xcf6aaa00, 0x3137270a, 0x33161736, 0x07843732, 0x3115172b, 0x27063107, 0x27263127, 0x05876815, 0x13881782, 0x31070724, 0x95683115, + 0x20179c06, 0x054d4506, 0xe27a2f84, 0x31352109, 0x3424018d, 0x17333637, 0x5108a052, 0x07200707, 0x203b1190, 0x4509090e, 0x2623373b, 0x11092426, + 0x2d010e0d, 0x1f104142, 0x10191a21, 0x83224f4c, 0x433e250b, 0x3538463f, 0x01260d91, 0x45492214, 0x7d7c403b, 0x09092206, 0x0892520e, 0x3a522020, + 0x7f6e1807, 0x21118808, 0x2882c001, 0x11102808, 0x12121a0e, 0x08090804, 0x18102412, 0x030e071c, 0x070b0320, 0x3e0c1c21, 0x071c1711, 0x210e0d1b, + 0x07170c0f, 0x8f0d1b21, 0x1522280f, 0x221a0d09, 0x6b100f1c, 0x40270632, 0x20402146, 0x83392040, 0x876020c2, 0x115a6274, 0x31068c5a, 0x03000000, + 0xc3ff0000, 0xbe018001, 0x39001e00, 0x49184c00, 0x36210809, 0x05f35b17, 0x2105df43, 0x0c582722, 0x27262105, 0x1b877918, 0x119f7118, 0x3002002c, + 0x020f4c31, 0x314d0e01, 0x0b8b0231, 0x0d200122, 0x12409d18, 0x0c304018, 0x394ff036, 0x10010d38, 0x0c030e3f, 0x50503839, 0x0f0e3838, 0x0d030d40, + 0x30240b82, 0x0d16161a, 0x16220082, 0x09891a16, 0x200ef96a, 0x77a41802, 0x00292908, 0x1300005e, 0x16332333, 0x3320d286, 0x2108374e, 0x4e183121, + 0x332107f8, 0x07184631, 0x60180320, 0xf82a3389, 0x16101010, 0x2a2b3d02, 0xac4b030b, 0x4efe2005, 0x0328060c, 0x3d2b2a0b, 0x40b81602, 0x18966018, + 0x1602c023, 0xa392180b, 0x05d74b09, 0x0b254883, 0xe0fe0216, 0x20008480, 0x9f601884, 0x4984200b, 0x27240bb7, 0x55004200, 0x012ddf83, 0x37073707, + 0x26273431, 0x06310707, 0x057f5207, 0x5a373221, 0x233506d5, 0x31373107, 0x27263536, 0x32050722, 0x16313117, 0x14151617, 0x20268207, 0x0b427423, + 0x02591520, 0x09a77d11, 0xc3ee2b08, 0x0803c3c3, 0x2fb10907, 0x39021b1b, 0x2e37563a, 0x04661c2f, 0x1e0a0504, 0x0c01014b, 0xd2fe0203, 0x121d1d23, + 0x1d121111, 0x0989231d, 0x0585cd85, 0x8d421020, 0xbf200808, 0x1e4b4b4b, 0x0405040a, 0x2e2f1c66, 0x393a5637, 0x2f1b1b02, 0x080709b1, 0x0302c303, + 0xbf01010c, 0x13b78e18, 0x200c1a42, 0x09856360, 0x00000634, 0x4002c0ff, 0x0f00c001, 0x36002500, 0x6d006000, 0xd918aa00, 0x33230e09, 0x89213531, + 0x7d1120dc, 0x11240870, 0x31373201, 0x08c34d18, 0x16171424, 0x17461333, 0x17062907, 0x37161716, 0x31373736, 0x2105215f, 0xa57d3536, 0x31112707, + 0x23262734, 0xa2180723, 0x11260b61, 0x17351535, 0x335c1631, 0x3127210c, 0x7f05ea48, 0x7d5f0677, 0x71172008, 0x8b5f0674, 0x27342405, 0x41000127, + 0x40210520, 0x09384401, 0x09090e24, 0x0482a0fe, 0x60331183, 0x01090a0e, 0x07031f20, 0x0b0d0e07, 0x0101030a, 0x500d0909, 0xd0200c30, 0x230b4a4d, + 0x49140e05, 0x43261d85, 0x1b1f1729, 0x2e821111, 0x10820e20, 0x22061e43, 0x5001260a, 0x5f180697, 0xfe2007a6, 0x08634818, 0x2383fe20, 0x02261684, + 0x0f0b0b00, 0x6e839bda, 0x03237683, 0x4108090c, 0x012108ca, 0x204d8280, 0x0b4b4e50, 0x48fbfe25, 0x82054848, 0x28678315, 0x1101162a, 0x01371b11, + 0x228485ca, 0x85352b60, 0x103b2308, 0xbf50340c, 0x01bd3507, 0x00c101c0, 0x00630046, 0x07261300, 0x15161706, 0x23060706, 0x4f058172, 0x162505c9, + 0x26171617, 0x07614837, 0x07071625, 0x82313331, 0x43072013, 0x262105a6, 0x07e84d27, 0x4d312321, 0x172105f0, 0x82228226, 0x33172148, 0x8305fe50, + 0x2124823a, 0x42823123, 0xed273308, 0x03050609, 0x15150104, 0x121b1025, 0x20090112, 0x01011414, 0x071d1212, 0x100ea017, 0x040d0d11, 0x121d0703, + 0x06060c21, 0x1919250b, 0x14140101, 0x1e820920, 0x01011b32, 0x24171701, 0xa00a0a2d, 0x0b040308, 0x09053446, 0xc1820a8a, 0x08070727, 0x0f210d0d, + 0x082b8311, 0x060f1221, 0x1f211818, 0x1e081717, 0x0b0b8014, 0x1010100b, 0x101e023a, 0x19190110, 0x18182125, 0x83120f06, 0x09083479, 0x061a1a25, + 0x810607e4, 0x010a0a07, 0x07080b69, 0x85088006, 0x03002109, 0x220ab361, 0x4e8d005f, 0xc95c08f9, 0x05eb5709, 0xe2183620, 0xeb460c27, 0x056d5f09, + 0x35631520, 0x19188907, 0x8d090c59, 0x7907202c, 0x56a1064c, 0x0607062a, 0x48400107, 0x22223a39, 0x2a064c42, 0x492a2b01, 0x48595948, 0x872b2a49, + 0x22222411, 0x8348393a, 0x052842e4, 0x25240126, 0x24253636, 0xc4731d87, 0x090e2206, 0x054b6109, 0x0b657719, 0x082a8718, 0x84016021, 0x06e94344, + 0x5e856020, 0x13876a85, 0xc0218485, 0x874f8201, 0x83658312, 0x830f876d, 0x60402183, 0x08d94018, 0x75856985, 0x44232287, 0x83022d2d, 0x82002075, + 0x41052000, 0x112b0877, 0x62003a00, 0xd2008b00, 0x50130000, 0x332b0550, 0x16171631, 0x21311517, 0x4a253531, 0x06200561, 0x5c11874a, 0x27210593, + 0x24078226, 0x23263127, 0x07b24a07, 0x27202a9e, 0x152350a7, 0x63212333, 0x64180a5a, 0x744f0c7a, 0x31232105, 0x20224a4b, 0x20f08300, 0x08f983e0, + 0x01e0fd23, 0x0c0204a0, 0x0102031d, 0x03051403, 0x19190403, 0x01030304, 0x01031505, 0x0c1c0402, 0x028a0402, 0x201f9a04, 0x281b9a96, 0xc0c00402, + 0x0f01a001, 0x07f7410f, 0x22171626, 0x01161722, 0x2a07176b, 0x0e0909c0, 0x09090e40, 0x41000180, 0x40370783, 0x19034040, 0x04030104, 0x041b1303, + 0x0c020202, 0x0302020c, 0x82131b03, 0x04012310, 0x00820319, 0x1b9a1d9b, 0x5020a027, 0x0f01010f, 0x057e4430, 0x86833020, 0x8e820120, 0x4b203021, + 0x60200f02, 0x2d05af4a, 0xc0018002, 0x32002400, 0x4e004000, 0x4d185b00, 0x16230a1d, 0x44373617, 0x5a520977, 0x27263707, 0x07060706, 0x21212105, + 0x17160706, 0x37363121, 0x23072726, 0x2f752333, 0x27262207, 0x201b8c23, 0x20108227, 0x081c8731, 0x2802202e, 0x237b3d29, 0x1b233232, 0x01201f30, + 0x301f2001, 0x1e100f10, 0x2332251e, 0x293d3526, 0x48020228, 0x5001b0fe, 0x0216b0fe, 0x50011602, 0x40230583, 0x83707070, 0x20048407, 0x231d8fc0, + 0x68160288, 0x04821d83, 0x83300121, 0x011f2340, 0x87181f01, 0x04270700, 0x0113121f, 0x83011f1f, 0x5ae02074, 0x602007ea, 0x07870887, 0x3f834820, + 0x33780383, 0x00122b0b, 0x004b002d, 0x00890072, 0xdd490100, 0x32152111, 0x1805f863, 0x260c8d9b, 0x17161714, 0x18253316, 0x180b138f, 0x2807dade, + 0x27262726, 0x37363734, 0x06914f35, 0x30311523, 0x05176615, 0x8307fd5f, 0x31302321, 0x6d4a3130, 0x85112005, 0x05787844, 0x83051c6e, 0x07c14628, + 0x4a05d941, 0xfe21130b, 0x077b62c0, 0x110d0223, 0x06844201, 0x010e112b, 0x201f3030, 0x1d010101, 0x07996101, 0x01300a82, 0x301f2001, 0x010d0e14, + 0x0f011e02, 0x021e010f, 0x01203a83, 0x4406e476, 0x802005cc, 0x6213ab4a, 0xa52408a8, 0x1c15101a, 0x25075e42, 0x1a10151c, 0x528370a5, 0x0101a429, + 0x3d332502, 0x83022829, 0x2533246c, 0x83a50102, 0x60fe217d, 0x21295f83, 0x010fd30c, 0x0cd30f01, 0x20798321, 0x21008200, 0xd7570005, 0x00122407, + 0x414c002d, 0x92490673, 0x34232111, 0x0bf85e18, 0x200cc649, 0x07fc4527, 0x7c07004a, 0xbb4b06f9, 0x41072006, 0x30230b92, 0x5d313015, 0x262307f3, + 0x83272627, 0x3130252a, 0x13353130, 0x13854485, 0x2207b870, 0x77011716, 0x10410ced, 0x83b02014, 0x0e0121ca, 0x21096f41, 0xea83020d, 0x86427020, + 0x0f774107, 0xa341a020, 0x07784108, 0x410ce349, 0x202013d7, 0x6f413283, 0x41788311, 0x202205da, 0x7741301f, 0x00ff2112, 0x0d2c9a84, 0x0c21140e, + 0x01010f33, 0x210c330f, 0x27088b48, 0xc0010002, 0x55003800, 0x480a7b58, 0x525a0c77, 0x1a775808, 0x261b7d48, 0x1b1b0100, 0x48932f29, 0x93180969, + 0x0058083b, 0x484a2016, 0xe0251571, 0x011b1b29, 0x065b4875, 0x231caf57, 0x80070704, 0x82116048, 0x075c18f0, 0x00152f09, 0x00310021, 0x13000041, + 0x14153515, 0xac6c2117, 0x26352205, 0x055d5b27, 0x21210524, 0x15821621, 0x2631272e, 0x27170727, 0x33171617, 0x34353631, 0x16231d82, 0x49161717, + 0xc14f056a, 0x37680805, 0x01050023, 0x26080561, 0xfe150207, 0x09090e97, 0xaefe6001, 0xaefe5201, 0x54012812, 0xe2020b2f, 0x0c757575, 0x0f03b40a, + 0x0808bdfe, 0x060610a2, 0x0a050601, 0x144e0608, 0xa001930b, 0x190e0e0e, 0x26090a19, 0x02150907, 0x600e0909, 0x0f3f2a36, 0x45458a12, 0x0f0a0745, + 0x051f230f, 0x24217605, 0x07070924, 0x19134e06, 0x0021be82, 0x08234303, 0xbb822620, 0xbd825920, 0x2509ad56, 0x37361732, 0x67181716, 0x2220098b, + 0x2406b96a, 0x23063127, 0x506c1807, 0x82b58409, 0x232323d6, 0xc7822231, 0x36373725, 0x82313337, 0x163126d4, 0x06071415, 0x05235423, 0x37373423, + 0x077c5ea0, 0x13111827, 0x11132424, 0x080f8718, 0x20111634, 0x09101009, 0x10161120, 0x10303030, 0x20161f11, 0x0a120e0a, 0x150f3b0a, 0x3c0f152a, + 0x2b1d1305, 0x961d2b2a, 0x160f0f0d, 0x0f1668fe, 0x960d010e, 0x63623001, 0x1d0f2507, 0x0f1d0202, 0x0d220d87, 0x02820d30, 0x1818d024, 0x44820818, + 0x420f0f39, 0x03431010, 0x01011f60, 0x140fa91f, 0x010f0f16, 0x14160f0e, 0x8400a90f, 0x05a367f7, 0x24001124, 0x9f484600, 0x82212008, 0x171628b9, + 0x31213111, 0x82260511, 0x24d782cd, 0x17170607, 0x05e25831, 0xef430520, 0x31332205, 0x20208215, 0x05404b35, 0x31151726, 0x07060706, 0x353fe685, + 0x0e0d0160, 0x14200114, 0xfe010d0e, 0x11390180, 0x112f6f11, 0x400e0e11, 0x0e801111, 0x8367fe0e, 0x0110221d, 0x08fb6cc0, 0x2984fe20, 0x18700121, + 0x26080b55, 0x2f3001d0, 0x826f0e0e, 0x11112803, 0x800e0e40, 0x83d11111, 0x8080211b, 0x330dc16c, 0xfeff0300, 0x4202feff, 0x38008701, 0xac007100, + 0x36010000, 0x367abb18, 0x3856ba18, 0x17163526, 0x31303736, 0x34ecbb18, 0x13120e24, 0xbb182a23, 0x25202dbf, 0x62b130af, 0x01131225, 0x180c0c7a, + 0x272982ba, 0x02180d0f, 0xe0fe1901, 0x0e2131a9, 0x2231830c, 0xa9900c0c, 0x34648532, 0x00000c0c, 0xff1e0004, 0x01a201c0, 0x000c00ba, 0x004c0035, + 0x0e377763, 0x20058d46, 0x42821817, 0x09616907, 0x0bc66c18, 0x26272628, 0x27171737, 0x66610717, 0x06886106, 0x37241582, 0x37073717, 0xe75e3c82, + 0x05f96408, 0x01982723, 0x990c1923, 0x70390809, 0x0e10100a, 0x33332924, 0x100e2429, 0x030a0a10, 0x14250d02, 0x1417c017, 0x03020e24, 0x3c3c5a0a, + 0x0c181a3c, 0x10100c0c, 0x010b300c, 0x81320801, 0x323d3d3d, 0x0b010108, 0x2b138330, 0x1a180c0c, 0x15296801, 0x29151414, 0x39200585, 0x1a283683, + 0x0a1a1e1e, 0x0e0d0302, 0x1b315182, 0x24240a0f, 0x0a1b0f0a, 0xb90e1010, 0x26353535, 0x25388518, 0x0f0e0a30, 0x1082480c, 0x0c483526, 0x300a0e0f, + 0x193d6485, 0x00000025, 0xff000004, 0x010002ba, 0x000c00b8, 0x00410034, 0x0100004e, 0x36212121, 0x23018237, 0x17171617, 0x31200782, 0x18056062, + 0x22086f5b, 0x82143115, 0x08ae51e6, 0x35262729, 0x01353333, 0x82161716, 0x27262215, 0x20318226, 0x0b5f6317, 0x07f18d18, 0x1a1a032e, 0x0b0c0a2c, + 0x01807507, 0x201b1212, 0x2b052d49, 0x20111120, 0x2d29291f, 0x1f292a2c, 0xe0220b82, 0xf81afea0, 0xf0200c82, 0x2a0ca15d, 0x2e2e3800, 0x0302061e, + 0x4d20a90a, 0x403109d9, 0x1b232426, 0x0f0f0e1b, 0x231b1b0e, 0xff402624, 0x18338b00, 0x820cd094, 0x050037ee, 0xb9ffffff, 0xc0014102, 0x59004c00, + 0x79006800, 0x00008800, 0xba822213, 0x2605e94f, 0x37161706, 0x84321736, 0x830b82cc, 0x5137200d, 0x3620057a, 0x21055c6b, 0x13833633, 0xdc5d0b83, + 0x82232005, 0x5c3d8225, 0xfc820571, 0x8e792720, 0x8407200c, 0x26232235, 0x05514a07, 0x08846882, 0x17323329, 0x37363736, 0x67172326, 0x3b08080a, + 0x22072637, 0x0203ad07, 0x2211022e, 0x0114341f, 0x2a070402, 0x21263938, 0x06371c1c, 0x38030202, 0x14141e36, 0x0338351f, 0x37060202, 0x26211c1c, + 0x062b3839, 0x14010204, 0x11221e35, 0x03313482, 0x080d0209, 0x311c1c08, 0x081c1c31, 0x09020d08, 0x0b064143, 0x0a3a6708, 0x130b1e02, 0x060e0d15, + 0x0a221516, 0x252c6a07, 0x140a0603, 0x14161614, 0x03060a14, 0x0b8b2b26, 0x070a021e, 0x1615220a, 0x150d0e06, 0x02c00113, 0x2128472f, 0x341e1104, + 0x04060203, 0x3d3a0126, 0x03103030, 0x09010207, 0x1a1a121c, 0x01091c12, 0x10030702, 0x3a3d3030, 0x06042601, 0x1e340302, 0x28210411, 0x20822f47, + 0x2626242e, 0x01011a1b, 0x26261b1a, 0xfe010924, 0x360cf35f, 0x1c161292, 0x03010c28, 0x1924242b, 0x62010c0a, 0x130b0c11, 0x8206060b, 0x110c2d04, + 0x161c28f6, 0x190a0c12, 0x032b2424, 0x08b37818, 0xc001002a, 0x39001e00, 0x00006500, 0x21067863, 0x01831716, 0x5007fc52, 0x22240565, 0x15150607, + 0x8f059763, 0x201a831c, 0x05954707, 0x06070623, 0x05435607, 0x21099463, 0x534f3115, 0x831b8305, 0xc035244b, 0x500e0909, 0x01240b0c, 0x41412726, + 0x5006cb56, 0x0227093f, 0x0e523636, 0x4a600909, 0x586d0831, 0x82022006, 0xc6601807, 0x0e142509, 0xa001010d, 0x42086350, 0x502505f0, 0x26274141, + 0x06936d01, 0x25240123, 0x23168536, 0x02363652, 0xdb461482, 0x4be02008, 0x078307a8, 0x6f836788, 0x9118e020, 0x2e240bcb, 0x4f003f00, 0x180acb58, + 0x500f1f74, 0x3120082f, 0x1d87f383, 0x21210724, 0x78471121, 0x1711210a, 0x20051941, 0x25258233, 0x27263135, 0x94828023, 0x2006714c, 0x21c58330, + 0x798340fe, 0xa0823020, 0xc0018022, 0xc0200c82, 0xfe210e83, 0x251a83a0, 0x01010f50, 0x0484600f, 0x82c00121, 0x41591820, 0x84318408, 0x8220203d, + 0xfec0224d, 0x832d83f0, 0x10012214, 0x28318740, 0x0300010f, 0xc0ff0000, 0x20018201, 0x20cbcd00, 0x20cb8621, 0x21cbaf21, 0xcc832001, 0xabe0fe21, + 0x834020cd, 0x3c048232, 0x07000000, 0xbcfffcff, 0xc0010002, 0x35002b00, 0x49003f00, 0x5b005200, 0x00006400, 0x07bc7e01, 0x43310521, 0x162205f3, + 0xaf182537, 0x26220817, 0x28572227, 0x16172905, 0x37371617, 0x17373627, 0x07332582, 0x37172731, 0x17163707, 0x27263107, 0x17271717, 0x82270706, + 0x82072032, 0x211a8209, 0x08913731, 0x055d013c, 0x0d021507, 0x0517abfe, 0x190f0e06, 0x54011818, 0x02141323, 0x2b402b2a, 0x13871b25, 0x331b2208, + 0x0914100e, 0x59150d07, 0x0d2e2e2e, 0x0f082e0a, 0x3d3d3d1d, 0x093e0703, 0x3c3c5602, 0x1f3d1e3c, 0x230f826c, 0x671e3d1e, 0x01280685, 0x1502043c, + 0xd5090f06, 0x44835083, 0x2217d42b, 0x40062923, 0x17022a2b, 0x08138711, 0x09511122, 0x04023d04, 0x2f353e08, 0x0d0a2f2f, 0x3b070f2e, 0x10141414, + 0x100e150f, 0x26262652, 0x43132613, 0x41270685, 0x13252525, 0x82001325, 0x41022000, 0x2c22082b, 0x61545300, 0x05206508, 0x16171625, 0x82373633, + 0x05cc4f01, 0x07062726, 0x37163106, 0x23055d55, 0x07222326, 0x2c05e45d, 0x27270607, 0x03313131, 0x16170631, 0x7b311937, 0x31372109, 0x38083883, + 0x27262726, 0x09085b01, 0x0a0b0109, 0x11111113, 0x1111171d, 0x09060609, 0x171b1313, 0x03010809, 0x09090104, 0x08080508, 0x273f6605, 0x0b0a0a3c, + 0x067c370b, 0x870f0c0b, 0x2f0b8334, 0x1423643d, 0x26250115, 0x09ba0137, 0x1d171111, 0x13223f82, 0x31870b0a, 0x40845483, 0x1b180824, 0x54821313, + 0x2e028230, 0x0a0b0b3d, 0xf6fe370a, 0x060b0c0f, 0x0c83343f, 0x112e3c2c, 0x37272020, 0x00012526, 0x2b4c0a00, 0x00413a08, 0x005c004f, 0x006e0065, + 0x00800077, 0x00920089, 0x1300009b, 0x31310722, 0x8c521806, 0x31152608, 0x07223123, 0x06a16d06, 0x51171621, 0x362405d1, 0x34313537, 0xd882f082, + 0x31232326, 0x31333135, 0x2307b457, 0x17232326, 0x08e44818, 0x3627262a, 0x37360337, 0x17163121, 0x20055a4b, 0x83118337, 0x0637220c, 0x860a8507, + 0x07062106, 0xa05211a3, 0x39502b06, 0x04111218, 0x12010117, 0x0d6d1b12, 0x17012605, 0x18121104, 0x061e45d9, 0xa020e024, 0xec19a0a0, 0x202408f6, + 0x60010f01, 0xfe200d83, 0x30221382, 0xd6510216, 0x51782005, 0xa82010dd, 0x012011a2, 0x2807a753, 0x180f0f20, 0x46070796, 0x0686731b, 0x07074626, + 0x0f0f1896, 0x2007ce53, 0x07865930, 0x7018fe20, 0x5e8808ae, 0x82871820, 0x70876820, 0x11a26820, 0x360bdb5a, 0x00410021, 0x00810061, 0x33232500, + 0x35272623, 0x36373631, 0x18311717, 0x20095363, 0x058f7314, 0x07060726, 0x16171615, 0x3f6f0c85, 0x055d620a, 0x36823520, 0x16213322, 0x2205f84c, + 0x82312727, 0x22232115, 0x07190782, 0x372408e2, 0x27333736, 0x087a4f18, 0x2105e36b, 0x68853233, 0x37851720, 0xc801233e, 0x16909090, 0x0e0e0102, + 0x0649280c, 0x24060808, 0x28490606, 0x1006060b, 0x0b060610, 0x10821282, 0x492a1582, 0x0e0e0c28, 0x90160201, 0x2c9400ff, 0x95909021, 0x82e0202e, + 0x20199232, 0x216f8940, 0x6f860525, 0x2ca08582, 0x2c829c88, 0x00050024, 0x3b4eff00, 0x000d2b05, 0x001f0016, 0x0063002e, 0xe9421300, 0x17163905, + 0x31373133, 0x15351723, 0x07312335, 0x33333331, 0x31273323, 0x33153123, 0x36210882, 0x05fa4237, 0x17312327, 0x17271705, 0x5dac1823, 0x5b17200a, + 0x21200841, 0x37200988, 0x0c7c9918, 0x31372508, 0x06113221, 0x1302011a, 0xde5b1a5e, 0x207c1963, 0x1a7d7d7d, 0x5e5e9d63, 0x0102135e, 0x5a11061a, + 0x0453fe19, 0x8d470082, 0x140c2105, 0x5b056853, 0x14210701, 0x2d17850c, 0x00fe0404, 0x1001a001, 0x13030354, 0x00868002, 0x03130228, 0x01105403, + 0x00822080, 0x696b3685, 0x85a0200c, 0x00202413, 0x57070000, 0x0f2c08db, 0x25001800, 0x61003a00, 0x97008200, 0xdf82ff82, 0xe8820720, 0x34272623, + 0x67611837, 0x2ec08307, 0x15353315, 0x17313335, 0x06070631, 0x4a372307, 0x27200563, 0x1621d982, 0x45f38317, 0x31250607, 0x16150631, 0x05b67117, + 0x26272223, 0x12691835, 0x3127220d, 0x203e8221, 0x06725037, 0x250f6353, 0x17163336, 0x4e823130, 0x24491720, 0x82262005, 0x07062168, 0x2506635c, + 0x5b5b3237, 0x21411a5b, 0xde250806, 0x197c7c7c, 0x0e632063, 0x171c0202, 0x0203d23a, 0x0f0c1210, 0x06115a0c, 0x110e011a, 0x10bd0e11, 0x30020b0a, + 0x41ec85d2, 0x2d08092f, 0x06073201, 0x0c0c0cb5, 0x090b0c09, 0x0218181f, 0x442d2d02, 0x022c2d45, 0x26212203, 0x0d140b09, 0x26130303, 0x0f131302, + 0x130f0909, 0xfb720213, 0x80a02108, 0x20075541, 0x39008380, 0x19020248, 0x0203181b, 0x020a1011, 0x54100140, 0x0c0b0101, 0x1b1c194b, 0x3e494c1b, + 0x07644106, 0x230a092b, 0x090d0d0d, 0x2a2a1d07, 0x07d1572e, 0x302f393e, 0x13030820, 0xc0140303, 0x0c18181c, 0x180c0707, 0x121b1c18, 0x1b121313, + 0x01000000, 0x002c0382, 0x80010002, 0x00006100, 0x15351537, 0x1905a36d, 0x93135f5c, 0x0a804513, 0x31353127, 0x23262734, 0x23078823, 0x15060722, + 0x8806c845, 0x09002807, 0x01400e09, 0x8f010f0f, 0x2e4b1804, 0x82202009, 0x82c02022, 0x8620200e, 0xc0e02203, 0x250e83c0, 0x01010f70, 0x0591700f, + 0x0e822d8e, 0x03834083, 0x00060035, 0x02c0ff00, 0x00c40180, 0x0047003b, 0x00840076, 0x779c0091, 0x9d510815, 0x5c078707, 0x112105ef, 0x05c27e31, + 0x82352621, 0x4b3720ce, 0xb65c0529, 0x07263205, 0x17373107, 0x23172717, 0x36272631, 0x07173237, 0x4b0a8214, 0x33200555, 0x3323f482, 0x83311531, + 0x054a7207, 0x2005a947, 0x05055206, 0x25832720, 0x17160323, 0x835c8231, 0x31232622, 0x23331715, 0x215d8333, 0x0c823135, 0x07061322, 0x33356384, + 0x05c91716, 0x0a0a1514, 0x1416090a, 0x131c0905, 0x1c110c0e, 0x07384a16, 0x0e09993e, 0x2404150d, 0x1c161a0e, 0x130e0c11, 0x1da30819, 0x16311d1d, + 0x0c160202, 0x04045c08, 0xc0372683, 0x0d01c020, 0x0404140e, 0x1e151401, 0x1e1f1623, 0x151e2317, 0x83300114, 0xc0902514, 0x909090e0, 0x60302584, + 0x1e311602, 0x02160c07, 0x0a15a001, 0x1e1e1405, 0x16276c82, 0x110c1419, 0x83150e13, 0xc0fe212a, 0x0e3d2683, 0x1117e012, 0x1c300610, 0x0e150115, + 0x120c1113, 0x26269a17, 0x16160226, 0x0d0e0a02, 0x2327830b, 0x50606050, 0x0b312983, 0x14141f0d, 0x281b0101, 0x01011b28, 0xfe1f1414, 0x211583f8, + 0x77845080, 0x0180502a, 0x26021638, 0x0016020a, 0x03290082, 0xbefffeff, 0xc5018202, 0x06e77600, 0x44461320, 0x50172006, 0x1721053d, 0x05876431, + 0x06071625, 0x46310707, 0x26260533, 0x37373637, 0x9d682731, 0x23138206, 0x07270607, 0x8205167c, 0x27062125, 0x07ff5b18, 0x28079046, 0x37262726, + 0x37071737, 0x214c8307, 0x08873327, 0x190e9c37, 0x0e197d7d, 0x0b0b154f, 0x0d291f25, 0x04050b0c, 0x470d0505, 0x2f098347, 0x0d050605, 0x242e1f29, + 0x0f0f0b25, 0x2e25240b, 0x12821f82, 0x0c0b0522, 0x05201f83, 0x0c212882, 0x081f820b, 0x0b0b2521, 0x1c2c4f15, 0x0d5a1c1c, 0x4c4cf14b, 0x1b590e4c, + 0x0716af01, 0x16072e2e, 0x2b2c2b99, 0x830f561b, 0x214f8351, 0x09871a1a, 0x03560f2d, 0x412e1a1a, 0x1a1a2e41, 0x830f5603, 0x820d2051, 0x1a1a214f, + 0x0c260983, 0x0f040506, 0x3a821b56, 0x35379927, 0x3a203535, 0x3a00821b, 0x0035203a, 0xff020000, 0x02e0fffe, 0x00a00102, 0x00200017, 0x07221300, + 0x42131706, 0xe782069b, 0x13374508, 0x26273631, 0x27172123, 0x31212717, 0x20213107, 0x020a0a0e, 0x16160532, 0x161efd1f, 0x02320516, 0xfe0e0a0a, + 0x13133840, 0x13760113, 0xa001b0fe, 0xfe0f0b0b, 0x13121ea9, 0x13120101, 0x0f57011e, 0x80c00b0b, 0x6a820082, 0x49040021, 0x6d2f089b, 0xb1009600, + 0x0000be00, 0x07370701, 0x82151506, 0x37322670, 0x33363137, 0x23098233, 0x31070714, 0x8405a846, 0x06ac4909, 0x1f843620, 0x17173227, 0x36331631, + 0x6a491827, 0x83372008, 0x07062131, 0x2505d655, 0x17161506, 0x23843133, 0x21051048, 0x2f841415, 0x43313321, 0x13210526, 0x05034826, 0x34860586, + 0x31150722, 0x16252687, 0x36171417, 0xef191937, 0x6e37201c, 0x6f080b41, 0x21210a01, 0x0b010921, 0x032a0304, 0x010a0104, 0x0c091403, 0x12040a1a, + 0x0d08090a, 0x04040812, 0x11040709, 0x040e0603, 0x150c0501, 0x1102010c, 0x01010f1d, 0x080b150f, 0x0a010305, 0x0607090c, 0x06070303, 0x17101206, + 0x38020a07, 0x05ac5537, 0x0d070908, 0x0b0f110c, 0x1518121b, 0x1c1b1013, 0x0d101301, 0x02161513, 0x2b2b3601, 0x014afe19, 0x16c47818, 0x0b0bbb25, + 0x840a0a20, 0x90012f04, 0x061a1a1a, 0x010b090b, 0x01021c02, 0x9182050a, 0x03090424, 0x9382060a, 0x0d040e3f, 0x0f010908, 0x15060808, 0x030d0305, + 0x0407060c, 0x0102110d, 0x08010f0f, 0x0a050305, 0x248e8201, 0x07030404, 0x2a208206, 0x221e1012, 0x063a3a56, 0x8204ccfe, 0x170a2890, 0x14120b0f, + 0x821a0421, 0x1602288d, 0x1c050304, 0x18642d1d, 0x25134766, 0x200a0a9b, 0x04840b0b, 0x00820020, 0x0000022f, 0xc0016000, 0x15002001, 0x00002b00, + 0x057b4b37, 0x09e28418, 0x26273425, 0x94352123, 0x73202015, 0x56650d79, 0x65012007, 0xfe21065e, 0x06894680, 0x0e090922, 0x8509434f, 0x0000210c, + 0xff257782, 0x01c000e0, 0x207785a0, 0x14036413, 0x15943320, 0x5c0c8a63, 0x7a890c0c, 0x002d9a97, 0xfffbff02, 0x010702bb, 0x003500c7, 0x89801842, + 0x07072807, 0x26310731, 0x6c072223, 0x934e05ce, 0x16172106, 0x8305637b, 0x34352405, 0x7d313727, 0x3623051d, 0x53052727, 0x30080be0, 0x1111d101, + 0x10010430, 0x2424234d, 0x03051118, 0x270d0a0a, 0x0506221c, 0x33332b2a, 0x01021b23, 0x160d0909, 0x4d161811, 0x30040529, 0xfe280e0e, 0x0cf971ff, + 0x0eb92e08, 0x0504300e, 0x18164d29, 0x090d1611, 0x1b020109, 0x2c333323, 0x22060529, 0x0a0d271c, 0x1105030a, 0x23242418, 0x0401104d, 0x28111130, + 0x0c9971f9, 0x00000130, 0x0002e0ff, 0x32009c01, 0x36130000, 0xc5821717, 0x4e430620, 0xe5651805, 0x7f272008, 0x17210520, 0x05ae4315, 0x4b055543, + 0x2c0805b0, 0x21247737, 0x03024c32, 0x05050570, 0x045a3c03, 0x342c1701, 0x01212134, 0x0cb42f01, 0xb40c1010, 0x2101012f, 0x94013421, 0x4b4e0b06, + 0x08008203, 0x04046837, 0x4c620604, 0x1a3f0504, 0x26270a08, 0x2c410636, 0xa90b0ba9, 0x3606412c, 0x000a2726, 0x00050000, 0x01c7ff07, 0x00c001f9, + 0x0019000c, 0x00940056, 0x010000a1, 0x218b8236, 0x53412726, 0x0c907305, 0x33321722, 0x82059351, 0x6a372005, 0x36440749, 0x26272108, 0x35210184, + 0x20078231, 0x06876a07, 0x83162321, 0x24e78209, 0x26270716, 0x057e6307, 0x8406b241, 0x21268214, 0x4a891617, 0x31353722, 0x37207c82, 0x8b440382, + 0x05836707, 0x25272722, 0x210b2166, 0x91410001, 0x0c3e650b, 0x0201653d, 0x0114141f, 0x0d090901, 0x131c1c0c, 0x03090a0e, 0x04090805, 0x0c070704, + 0x8711121b, 0x1e230817, 0x03060404, 0x05030206, 0x0d950804, 0x01010909, 0x0c1b1211, 0x04040707, 0x03050809, 0x130f0909, 0x8a0c1c1c, 0x05032117, + 0x0e211785, 0x20178214, 0x0ca25501, 0xaa180120, 0x0c8c0c50, 0x1401c025, 0x82171f14, 0x873e8c56, 0x86202056, 0x01082a18, 0x0c23120f, 0x1113180d, + 0x20a48395, 0x22a58a20, 0x89090f13, 0x201894bd, 0x0b07415b, 0x00000039, 0xff400002, 0x013502c0, 0x004900b6, 0x17000052, 0x36351535, 0x47373637, + 0x14230594, 0x7d310707, 0x1622054a, 0x01820607, 0x2631232f, 0x06312727, 0x30313023, 0x22272231, 0x26078327, 0x07262726, 0x82161706, 0x31172101, + 0x82074866, 0x27400813, 0x26373625, 0x16070627, 0x2e014017, 0x11a94e2e, 0x0f010d0d, 0x1d1d2521, 0x0508310d, 0x23191205, 0x211a2904, 0x090a1411, + 0x172d0505, 0x060c0d09, 0x261f1f13, 0x0a010630, 0x14eb100a, 0x01010d0e, 0x08080f61, 0x93931034, 0x41415393, 0x0a063c1c, 0x0a121109, 0x22141516, + 0x18191881, 0x01011812, 0x0206261f, 0x0c270d02, 0x200d0906, 0x47021313, 0x0a100b09, 0x0e0d010b, 0xf44ef014, 0x01002107, 0x2f08eb46, 0x37000031, + 0x26031303, 0x34353435, 0x21333637, 0x2905856a, 0x06310315, 0x03272607, 0x07840731, 0x078e2720, 0x4b4b4c33, 0x0808014b, 0x0dc6010c, 0x044d0908, + 0x3d040f0f, 0x2105821d, 0x05831c05, 0x1c1d042e, 0x050f0f05, 0xfe0d018f, 0x020d01f3, 0x0c300082, 0x08090808, 0xfe03020d, 0x01010f33, 0x9050010f, + 0x0e220682, 0x0582b071, 0x70b00f22, 0x0e200582, 0x2e0a0f4e, 0x0014000b, 0x004d001e, 0x01000056, 0x79153515, 0x323c0578, 0x15351717, 0x16171635, + 0x33052317, 0x31153323, 0x37363123, 0x23332317, 0x31213135, 0x15220d83, 0x07823331, 0x21058c41, 0x46183135, 0x1983070d, 0x35200b83, 0x35211d82, + 0x21418221, 0x41823133, 0x40012408, 0x3e27f1fe, 0x10104c3e, 0x2d2d3720, 0xbefeb01f, 0x60424242, 0x40a21d01, 0x40014040, 0x0d01c040, 0x4cb0140e, + 0x26080783, 0x0d0e14b0, 0x2001c001, 0x60011d42, 0x7e7e9e01, 0x22223b7e, 0x797e0201, 0x1f0d7979, 0x80202e1f, 0x80803a46, 0x19502080, 0x200c3bc4, + 0x21418380, 0x18822050, 0x18463a21, 0x2e08d375, 0x00c001c0, 0x003a0020, 0x21212500, 0x74312721, 0x765605c6, 0x31172105, 0x29075b48, 0x07141716, + 0x37340507, 0x89413131, 0x31152107, 0x0805005e, 0x26272228, 0x60013535, 0x2001e0fe, 0x053be0fe, 0x3b282702, 0x26263204, 0x1411200d, 0x121b031e, + 0x4f110111, 0x0909c0fe, 0x9a46010e, 0xe0fe3a06, 0x4009090e, 0x3b1413cd, 0x01022728, 0x7e311e1d, 0x12011714, 0x12191b11, 0x06c85156, 0x20202886, + 0x200af748, 0x259f821c, 0x00660049, 0xa1181300, 0x15220a8b, 0xf97a1716, 0x82b48205, 0x27262284, 0x05124707, 0x21054457, 0x52563133, 0x084c5705, + 0x6d058052, 0x2323059f, 0x42273531, 0x162605ed, 0x16311717, 0x4b8e1617, 0x0216582c, 0x0d0c0d01, 0x06060c01, 0x0b8b1602, 0xbc823820, 0x1b1b012a, + 0x1b29c029, 0x3010011b, 0x20068c64, 0x1d781830, 0x8da0200c, 0x2e3e8932, 0x1602c001, 0x0a11111d, 0x08080a01, 0x8c02160c, 0x09c0230c, 0x54840e09, + 0x02625d83, 0x57402007, 0x602107c0, 0x8a2e8ee8, 0x00003c3b, 0xff010004, 0x01ff01c0, 0x00110094, 0x003a0026, 0x13000047, 0x31230706, 0x47262722, + 0x1720052d, 0x1722e582, 0xc14b3732, 0x23062105, 0x19821782, 0x1631372e, 0x33233733, 0x37272623, 0x36373631, 0x16262382, 0x06071617, 0x48472723, + 0xd837080b, 0x0e900226, 0x07010908, 0x0b281a1a, 0x48070c0d, 0x48121628, 0x0d030407, 0x2e35352e, 0x0704030d, 0xe0161248, 0x02909090, 0x0c074826, + 0x1a280b0d, 0x0801071a, 0x47e00e09, 0x05220c4f, 0xdd822f16, 0x2c2c3532, 0x0303081f, 0x0b957d0c, 0x0c0c0c7d, 0x06141406, 0x7d310682, 0x162f500b, + 0x03030c7d, 0x2c2c1f08, 0x09090e35, 0x0c4e4730, 0x2f06234e, 0x00c00100, 0x0035001a, 0x005b0045, 0x0080006d, 0x6d065d65, 0x70181497, 0x03321a03, + 0x31273736, 0x07262726, 0x17060706, 0x17333316, 0x0b453707, 0x32332105, 0x26069146, 0x27222306, 0x83233337, 0x8527200f, 0x31072128, 0x14004718, + 0x34000125, 0x821a2c2c, 0x2c2c2200, 0x49098934, 0x350813dc, 0x241b0138, 0x0b0c0c07, 0x09020c27, 0x1c480e08, 0x07242424, 0x180d0304, 0x0d181b1b, + 0x24070403, 0x0d0f100c, 0x48484854, 0x0209080e, 0x0c0b270c, 0x1a24070c, 0x2c493802, 0x2b058505, 0x191a8001, 0x33332d2d, 0x1a192d2d, 0x70180989, + 0x00291a48, 0x0c3f1020, 0x23080302, 0x2a408235, 0x3e3e3e31, 0x050c0c0c, 0x82050808, 0x073e2f06, 0x09093107, 0x0823350e, 0x3e0c0302, 0x06702110, + 0x0500330e, 0xc0fffeff, 0xc6018202, 0x41000c00, 0x5b004e00, 0x895e9f00, 0x6b13200e, 0x06200c08, 0x18060b54, 0x20087655, 0x06654217, 0x55182720, + 0x232e0be1, 0x11171613, 0x26070631, 0x36311127, 0x6e421737, 0x07062105, 0x03233c83, 0x42351535, 0x372105aa, 0x07984231, 0x33201f82, 0x200ac746, + 0x20528423, 0x07f07423, 0x35222582, 0x0d8b3135, 0x33425020, 0x4a28200b, 0x0e3505ce, 0x06060d13, 0x190a1e04, 0x20082019, 0x1f0a1919, 0x0c060603, + 0x06756d14, 0x55c81021, 0x9020075c, 0x18283a8b, 0x04050812, 0x04050902, 0x1d293a83, 0x221a1a0b, 0x0b1a1a22, 0x2739831e, 0x02090505, 0x12080504, + 0x4a185c85, 0x5618072f, 0xfe230c0b, 0x4b8080d0, 0x9b350667, 0x0b05050f, 0x1e640d0b, 0x12131312, 0x0b0d641e, 0x0f05050b, 0x05cd419b, 0x60018026, + 0x30fe1602, 0x01238083, 0x5e0216d0, 0xfe360c01, 0x60606050, 0x1b080607, 0x0c0b0501, 0x13205f0d, 0x20131414, 0x3e820e5f, 0x081b0124, 0xf0650706, + 0x07ac6b06, 0x00820020, 0xfaff0322, 0x59063b4b, 0x002105c9, 0x05674d13, 0x3d4b1720, 0x88172007, 0x82761809, 0x27342108, 0x87071376, 0x31372109, + 0x0b539818, 0x22232629, 0x27310707, 0x84172713, 0x27072128, 0xe9310887, 0x0e601111, 0x25105a0e, 0x0e28302c, 0x04116c0b, 0x08a64204, 0x6c100128, + 0x12150a0e, 0x22845910, 0x09375932, 0x0d0a3009, 0x59370a0d, 0x4848489f, 0xa63e483e, 0x012f0685, 0x600e0eb9, 0x10591111, 0x0e0a1512, 0x6f01106c, + 0x042b0826, 0x0a6c1104, 0x2c30280d, 0x85590f25, 0x0a372122, 0x30263f82, 0x59370909, 0x438ca1fe, 0x2905935b, 0xc0010002, 0x48001e00, 0xc2186300, + 0x7b5d08d7, 0x06072606, 0x26272223, 0x05ab4a35, 0x07230983, 0x7f172717, 0x362205c7, 0x33443233, 0x26218205, 0x31173107, 0x7d060716, 0x17210b1d, + 0x05035237, 0x428a1420, 0x2007f172, 0x5daa82c0, 0x345d081c, 0x6883240b, 0x8b1c6868, 0x681d31c8, 0x0e02020b, 0x3b582923, 0x070e023b, 0xa30c0e0e, + 0x83063d5d, 0x5d242035, 0x795d0751, 0x0abe5d05, 0x2008d65d, 0x205082bd, 0x0b5a411d, 0x0c681c23, 0x2b48820e, 0x583b3b02, 0x020e2329, 0x027d0b02, + 0x8205e05d, 0x09f45d92, 0x2f470020, 0x80013905, 0x1b00c001, 0x37002900, 0x00004500, 0x23332301, 0x31070722, 0x31111506, 0x3009a659, 0x27263111, + 0x15072726, 0x07061535, 0x31352726, 0x20f78236, 0x280d9a33, 0xb3b34001, 0x4d131ab3, 0x28441813, 0x20098309, 0x07b549a0, 0x08905020, 0x82c00121, + 0xfe1a222d, 0x070959cd, 0x25059059, 0x30303058, 0x63180216, 0x0b96079b, 0x08000026, 0xc0ff0000, 0x3230c788, 0x49004000, 0x60005700, 0x00006e00, + 0x33233313, 0x5e05a750, 0xc1820c20, 0x18373621, 0x260a5794, 0x07233135, 0x82212333, 0x15232206, 0x05b04e25, 0xfe532320, 0x3ea11805, 0x13232107, + 0x200bcb72, 0x21168833, 0x46181407, 0x31820860, 0xff21f78b, 0x37cc8700, 0x09090e20, 0x50202040, 0x50000150, 0x090001b0, 0x40200e09, 0x804040a0, + 0x80231684, 0x84604040, 0x15024111, 0x2d8dc020, 0x82402021, 0x85ff2000, 0x21098242, 0x5b854040, 0x05000037, 0xc0fffbff, 0xc601c001, 0x39000c00, + 0x62004b00, 0x00007a00, 0x0b384501, 0x8d490720, 0x31332105, 0x1809cc59, 0x290f545b, 0x31373736, 0x27223123, 0x5b183526, 0x23200a35, 0x2805d142, + 0x07071605, 0x06070631, 0x052e5523, 0x36313328, 0x36313537, 0x4e7d0517, 0x8f521805, 0x23428209, 0x07161736, 0x200d054d, 0x26c582e0, 0x0b0b229f, + 0x453c4a17, 0x4e260651, 0x16010214, 0x0d824b14, 0x572f3608, 0x0d075757, 0x0d0a5215, 0x09090a0d, 0x020e4301, 0x0f0f0501, 0x010f5913, 0x12590f01, + 0xfe0f0505, 0x060606f3, 0x0e111111, 0x0b0a0a3b, 0x100c3c0b, 0x06080d06, 0xab4f180d, 0x8250200d, 0x1c022548, 0x3c46191c, 0x25099f73, 0x1b1b164d, + 0x79821113, 0x5656e129, 0x160c0f56, 0x83090953, 0x04602863, 0x0b13020f, 0x820f010c, 0x11280860, 0x1e020e02, 0x08030303, 0x3c0d0302, 0x0a0a0b0b, + 0x03060b3b, 0x070e0d06, 0xfaff0300, 0x0502b6ff, 0x0c00c601, 0x71003300, 0x240e4b41, 0x17173605, 0x059f5d31, 0xb8541720, 0xba551806, 0x2efc8208, + 0x27063107, 0x37263125, 0x17271737, 0x84363137, 0x6a172011, 0x17210503, 0x21398216, 0x33493117, 0x27062405, 0x82263127, 0x31072403, 0x82273107, + 0x82378301, 0x25098235, 0x17363726, 0x6b467d01, 0xfe43080b, 0xc6140c86, 0x03164b2e, 0x010c286d, 0x81320902, 0x150f1615, 0x0f12070c, 0x81fe2c2c, + 0x12740913, 0x08091212, 0x08060d0d, 0x54020237, 0x0a18181a, 0x040c3411, 0x0c070504, 0x123a0c0c, 0x071b0606, 0x830a9907, 0x1209251f, 0x0e07060d, + 0x080d3d41, 0x0913dd21, 0x174b4566, 0x0d27341d, 0x4a0f1110, 0x080a0a43, 0x0b151207, 0xc7161508, 0x08cb140c, 0x83110808, 0x1a112a33, 0x0a210101, + 0x331b0b0b, 0x8255831a, 0x1d06285d, 0x0c121209, 0x84490303, 0x09122553, 0x050c0e07, 0x08775618, 0xc001402a, 0x2d000c00, 0x8d007600, 0x180f4150, + 0x200b1f52, 0x05474123, 0x31072725, 0x41133123, 0x33280523, 0x31313007, 0x03173231, 0xd26f1282, 0x31322505, 0x31333330, 0x36270585, 0x35373637, + 0x6e272631, 0x3e8305b0, 0x58373621, 0x521805a8, 0x05231146, 0x84073707, 0x83272021, 0x7a52181b, 0x50012008, 0x6d200c20, 0x073f5218, 0x58182108, + 0x090c2029, 0x0736203b, 0x160f1706, 0x3801016a, 0x0202162b, 0x01018716, 0xb701019e, 0x0114141f, 0x2605b744, 0x01111b45, 0x180e0909, 0x290a5252, + 0x010a0a17, 0x1b1b1b33, 0x5218162c, 0x02200a79, 0x360d0343, 0x14165e40, 0x52350d14, 0x0a081458, 0x0202017e, 0x270f1805, 0x83f8fe01, 0x14012452, + 0x83081f14, 0x2504826a, 0x0e1409b3, 0x52180909, 0x59250d59, 0x4cb0b0b0, 0x7c52180f, 0x18002008, 0x29085358, 0x00a00180, 0x00650045, 0xdd531300, + 0x05ce4c09, 0x58311521, 0x33410bc3, 0x68451805, 0x23232107, 0x2505ca59, 0x07060706, 0x35412722, 0x27262505, 0x01232326, 0x8705fa44, 0x5c21201d, + 0xbc4e0893, 0x4d352005, 0x012a0669, 0x40291b1b, 0x1b2940c0, 0xcf47011b, 0x83202005, 0x0f013118, 0x3139180f, 0x16051e31, 0x04292223, 0x49020903, + 0x2305ac47, 0x18fe1602, 0x01262685, 0x191925e8, 0x52540101, 0x83a02006, 0x8220203f, 0x184e8300, 0x2309df66, 0x0f0f1829, 0x31271182, 0x15152307, + 0x5cfe0104, 0x0822067b, 0x4d850216, 0x19190124, 0xff820825, 0xfeff0426, 0x0002e0ff, 0x3e2dff82, 0x93006900, 0x0000b900, 0x31373625, 0xaa441831, + 0x27262109, 0x4d055652, 0x062105c1, 0x57b11807, 0x4527201f, 0x0624091f, 0x22312307, 0x21058453, 0xf2441415, 0x3532210a, 0x2005b35d, 0x089b6025, + 0x17202586, 0x34232593, 0x48333637, 0x7018054a, 0x26220700, 0x205f3527, 0x31152108, 0x21074b47, 0xb1181736, 0xa02d267a, 0x13100a0b, 0x0f01010f, + 0x1e020513, 0x200c8210, 0x200c831b, 0x820c821b, 0x13152207, 0x211b8813, 0x1c8d010f, 0x98210d82, 0x2c008223, 0x010b0b07, 0x13010f0f, 0x05080805, + 0x25098313, 0x070b0a01, 0xb1180100, 0xeb222290, 0x3a840a10, 0x02020525, 0x8c130c13, 0x8325200c, 0x82179248, 0x2f062124, 0x08240082, 0x600b0403, + 0x0f26a082, 0x06061a30, 0x0983301a, 0x040b603c, 0x00000803, 0xfff9ff03, 0x010102c0, 0x005a00c2, 0x0078006b, 0x17361300, 0x20453131, 0x0b244507, + 0x64450720, 0x07062108, 0x2a05087a, 0x07061716, 0x27223123, 0x46263125, 0x172c097b, 0x35263117, 0x37363726, 0x31353137, 0x8605635a, 0x0337231d, + 0xf1782717, 0x252d8205, 0x07063115, 0xb64e0107, 0xd253080b, 0x070c0c0c, 0x181e2a19, 0x01020a7e, 0x0d0d0808, 0x2147480b, 0x04070711, 0x570c0412, + 0x161c0806, 0x1c160202, 0xa0fe1010, 0x0e160e11, 0x1611110e, 0x02170806, 0x0d060504, 0x2e22014a, 0x190f1e08, 0x0c040405, 0x9f9f9f47, 0x02110203, + 0x20013507, 0x4e250154, 0xbd200cd2, 0x32252083, 0x62130608, 0x835c8208, 0x382b0864, 0x160e1c20, 0x0f4b1615, 0x02032106, 0x06021616, 0x160e0687, + 0x0e0e1111, 0x08030617, 0x0b0d0302, 0x3519040c, 0x02171227, 0x83321c06, 0xa5fe309d, 0x093d3d3d, 0x060a4b09, 0x0c22122c, 0x4e5e011c, 0x07290df7, + 0xc0fffbff, 0xc0010502, 0x059f6500, 0x76006d2d, 0x95007f00, 0x06010000, 0x41171617, 0x1622050f, 0x8d5b1517, 0x07072605, 0x06310731, 0x47198307, + 0x222005d1, 0x8205a272, 0x46272005, 0x1721067c, 0x05e64931, 0x17311525, 0x18373631, 0x2007cf6f, 0x224b8216, 0x53270714, 0xec7f07fa, 0x90072008, + 0x87132011, 0x15072211, 0x05494335, 0x37323326, 0x35363137, 0x2605ba45, 0x04035501, 0x8330070b, 0x172208f8, 0x14070a15, 0x04014938, 0x02300502, + 0x15102e02, 0x2e101596, 0x05300202, 0x49010402, 0x0a071438, 0x26831715, 0x0b063130, 0x010b0304, 0x29291b1b, 0x0b011b1b, 0x7c180f75, 0x10200fbb, + 0x7c181187, 0x30251173, 0x03020902, 0x21048203, 0x24820f01, 0x0606332b, 0x2815100c, 0x16020216, 0x397a8214, 0x20180a15, 0x05060d0e, 0x2d45472d, + 0x452d0e0e, 0x06052d47, 0x18200e0d, 0x7b82140b, 0x25831420, 0x10152827, 0x1506060c, 0x2d471818, 0x15182207, 0x8248842d, 0x0898634c, 0x088a4018, + 0x08df5218, 0x87000121, 0x03182c24, 0x04050303, 0x11030311, 0x82030504, 0x000f2180, 0x3f053b61, 0x018102c0, 0x000a00c0, 0x0074005e, 0x0086007d, + 0x0098008f, 0x27170100, 0x27312317, 0x33313531, 0x27200982, 0x09de7a18, 0x45312321, 0x152008b5, 0x23099a4b, 0x31332734, 0x4507575b, 0x3a8305df, + 0x37313524, 0x90503631, 0x05b65f08, 0x34313526, 0x07273427, 0x7005b14c, 0x362509a5, 0x21373637, 0x4d541807, 0xaf631810, 0x08da4108, 0x2b012708, + 0x70454545, 0x57926b40, 0x29125757, 0x0d0e147b, 0x090e2001, 0x12111d09, 0x301f2001, 0x1f300001, 0x2b0b0120, 0xc7493613, 0x39372f05, 0x0a020108, + 0x090c0d0b, 0x01400e39, 0x2e834d02, 0x0e0d0123, 0x092b7414, 0xe0000122, 0x22054e47, 0x4fd80216, 0x3820075d, 0x2b10cc64, 0xa0a08001, 0xb36040a0, + 0x25cccccc, 0x2705ef74, 0x6b0e0909, 0x221b1a0e, 0x25074c53, 0x1a33161a, 0xdb493713, 0x53362405, 0x820b4755, 0x297b8373, 0x35161247, 0x0403041f, + 0x15536d03, 0x65078707, 0x182008be, 0x18206e87, 0x10b16318, 0x27086347, 0xa0018001, 0x3b001600, 0x1808354e, 0x2609164f, 0x27223121, 0x46153526, + 0x2a4e0637, 0x0f775008, 0x00202483, 0x0120b582, 0x2106af54, 0x0e47c0fe, 0x46a02005, 0xfe5a06db, 0x82802006, 0x50012015, 0x2085060f, 0xe0200c89, + 0xe0201085, 0x5f494582, 0xc0012b07, 0x2f00c001, 0x5a005300, 0x9b826800, 0x16070624, 0x39563317, 0x17162906, 0x31071716, 0x33161706, 0x3724ab82, + 0x31272736, 0x0999d118, 0x0b823320, 0x21272625, 0x6e071601, 0x372308f0, 0x82303131, 0x37262101, 0x21074651, 0x0f830716, 0x15073128, 0x31351535, + 0x88670331, 0x1823080c, 0x16020216, 0x18030308, 0x16240102, 0x0905141b, 0x0001100a, 0x05090a10, 0x24161a13, 0x03190101, 0x82160803, 0x70fe2f21, + 0x05016801, 0x502f1607, 0x07162f50, 0x0b8b0105, 0x18d83821, 0x330cefb9, 0x161602c0, 0x02029502, 0x2b462314, 0x0f3c0f1a, 0x0e0d0d0e, 0x1a250682, + 0x1323462b, 0x82188203, 0x00ff2d1d, 0x07060402, 0x06070d0d, 0x05010204, 0x05230985, 0x83018001, 0x18402000, 0x3109ab40, 0xfffaff04, 0x010002c0, + 0x002b00c6, 0x0068003b, 0xdd500071, 0x33162909, 0x31173133, 0x17161706, 0x47081271, 0x263a06cc, 0x35312707, 0x27273431, 0x16150603, 0x32171617, + 0x26313737, 0x07312737, 0x63183425, 0x23820c75, 0x36201982, 0x23251383, 0x07060706, 0x204f8215, 0x084f8436, 0x3637365c, 0x37360137, 0x07061716, + 0x114f2726, 0x0b0d280f, 0x360c0750, 0x03040b6d, 0x0d0a7012, 0x09400a0d, 0x18137009, 0x096d1619, 0x01143b68, 0x1c1d1313, 0x080c7614, 0xec01943e, + 0x08070303, 0x07054006, 0x05010f39, 0x02020640, 0x3d100f08, 0x55022829, 0x151c1b1c, 0x16172510, 0x1243fe01, 0xbb012d08, 0x0f280d0b, 0x6d096811, + 0x13181916, 0x08476e19, 0x03122308, 0x366d0b04, 0xfe50070c, 0x1d1c1479, 0x14011313, 0x3e212076, 0x0e10fc95, 0x06010209, 0x0f01053f, 0x5a820739, + 0x03070834, 0x29280203, 0x0755013d, 0x10150807, 0x2c222312, 0xf542e0fe, 0x00003707, 0xfeff0600, 0x0202c0ff, 0x1200c001, 0x55002500, 0x77006500, + 0x37558700, 0x50152007, 0x342307e0, 0x4e333637, 0x18510647, 0x35262109, 0x23056c72, 0x35313337, 0x2105e161, 0x67463737, 0x07916e08, 0x200c1875, + 0x0e9f6d33, 0x35151725, 0x6d171615, 0x312308ae, 0x8e370706, 0x4a012021, 0x0743067a, 0x0c305e05, 0x12018032, 0xcb881b12, 0x15020716, 0x0616e8e8, + 0x88d51503, 0x08d95418, 0x0983c020, 0x010f4024, 0x04850f01, 0x08877020, 0x90010f22, 0x01211589, 0x055b4ac0, 0x4a550585, 0x83e8200c, 0x2a422d40, + 0x06161502, 0x15033030, 0x4c2c0716, 0xbe766e83, 0x89a02008, 0x40102250, 0x20698940, 0x18178910, 0x260fc3b8, 0x36370737, 0x45171633, 0x172606b4, + 0x07061516, 0x87180706, 0x6c180950, 0x16250715, 0x36171617, 0x09226b37, 0x9a37343d, 0x06101010, 0x0f02130b, 0x14142455, 0x4a313102, 0x36365212, + 0x03350102, 0x66150907, 0x2408086a, 0x01252614, 0x15a2011a, 0x02091515, 0x0e141713, 0x2e2f2351, 0x31314a33, 0x36360202, 0x364c0452, 0x15020703, + 0x071f4159, 0x141c0437, 0x2b352626, 0x00000022, 0xfffeff02, 0x014302ba, 0x002600c3, 0x22b28251, 0x48171736, 0x07240523, 0x31223107, 0x0720a283, + 0x82051948, 0x37362392, 0xa6823130, 0x01200982, 0x0782cc83, 0x30240f87, 0x33313031, 0x29531b82, 0x20d88206, 0x083b8407, 0x27270639, 0x0e12b701, + 0x2d551a2f, 0x01021e2d, 0x592e2f1d, 0x020b1d23, 0x2d560f03, 0x1e031d2d, 0xfe58302f, 0x19191987, 0x1f31315f, 0x27271f02, 0x172b014e, 0x1105040c, + 0x8225234c, 0x3243080f, 0x11146233, 0x04bf012b, 0x1908300c, 0x03312a2a, 0x2f31312f, 0x100c1c11, 0x302c0810, 0x31032f2f, 0xfe1a2d2d, 0x0d0d0d36, + 0x31343431, 0x25253003, 0x0d170d18, 0x17061112, 0x03302222, 0x33363631, 0x542c0f09, 0x01290503, 0x00c001c0, 0x00340023, 0x09e3775e, 0x18323321, + 0x242a93ad, 0x15351513, 0x21d18223, 0x6d453115, 0x07b44205, 0x2109ba42, 0xb1473135, 0x59002005, 0xb6420597, 0x1820200c, 0x281021ad, 0x010f3090, + 0x01300f01, 0x79dd180f, 0x180a8408, 0x21256d85, 0x38903030, 0x00204e84, 0x25075360, 0x002600a1, 0x645f0100, 0x82312005, 0x171623b5, 0x1d4e1716, + 0x06cf4d05, 0x2d081746, 0x00010726, 0x313c3c23, 0x12010331, 0xb6781b12, 0x121b3109, 0x31030112, 0x233c3c31, 0x0e01a001, 0x3f23230e, 0xb0201183, + 0x2007cc47, 0x242d83b0, 0x0e23233f, 0x2072820e, 0x050f6200, 0x0100022a, 0x000f00a0, 0x25000020, 0x4206f55c, 0x7a8205d1, 0x77480f82, 0x31352f09, + 0xfe000221, 0xf81a0100, 0x3b58100d, 0x4a83023b, 0x8380fe21, 0x0002305e, 0x101010d0, 0x09a51220, 0x583b3b02, 0x84808030, 0x201f8315, 0x28638580, + 0x014102c0, 0x003800c1, 0x156a1860, 0x06787910, 0x22ff6918, 0x07062523, 0x44268215, 0x87180766, 0xca410981, 0x4002210e, 0x09276a18, 0x18bffe21, + 0x2119196a, 0xdf18d0fe, 0xcc41073b, 0x316a180d, 0x236a1809, 0x423f201a, 0x30231203, 0x4700010f, 0x802c08eb, 0x2400c001, 0x44003700, 0x00005700, + 0x6806427e, 0xcf410bdf, 0x31112105, 0x8305ab68, 0xb1b41805, 0x18691812, 0x08b2450c, 0x2005416b, 0x253a8223, 0x181820c0, 0x8155260a, 0x08be5408, + 0x180b2523, 0x0cc74218, 0x5a184020, 0x302f0b2f, 0x22171601, 0x16172240, 0xc00f0101, 0x1901010f, 0x212924eb, 0x821824c0, 0xb0200aef, 0x4a824184, + 0x20061f4b, 0x0adf4f02, 0xdb4f6620, 0x7c032040, 0x8c460586, 0x31152405, 0x18230706, 0x4f15e8c5, 0x20202688, 0x410de341, 0x494f07f9, 0x058f7324, + 0x2011b943, 0xc7591800, 0x00162a0b, 0x00540045, 0x15060100, 0x06336731, 0x2607db4b, 0x07222326, 0x45370707, 0x07210659, 0xa7b11831, 0x37362309, + 0x03833137, 0x30313028, 0x27313731, 0x03820731, 0x17230784, 0x67172717, 0x208405e9, 0x09290124, 0xa44ba009, 0x29068405, 0x22222260, 0x02180614, + 0x434b6307, 0x06633b05, 0x141b6c09, 0x342d4a23, 0x4b2d3443, 0x43434317, 0x4d09070c, 0x0c070211, 0x3683b701, 0x2685a020, 0x90290682, 0x14232323, + 0x07096c1b, 0x274e8562, 0x18020763, 0x4b231306, 0x4a213984, 0x29398444, 0x094d1102, 0x00000c07, 0xe7640004, 0x00a02b05, 0x005c0049, 0x00780065, + 0xc6841300, 0x27270624, 0xce822631, 0x17171424, 0x4d681631, 0x064c6406, 0x31333323, 0x20158332, 0x06074733, 0xe2853720, 0xb2523420, 0x25398208, + 0x06232627, 0x43180707, 0x1720113b, 0x43078f49, 0x39081208, 0x090909ec, 0x1d1a1911, 0x14151c3c, 0x111d1201, 0x01110d12, 0x3e1c1415, 0x2a0a0c0c, + 0x15101f21, 0x01101119, 0x25190e0f, 0x0e0d0223, 0x141b1c15, 0x06070614, 0x22181112, 0x4a184c15, 0x784a0c17, 0x2e148b07, 0x0f0f8301, 0x0b0b180f, + 0x11040a04, 0x82191d11, 0x182a085c, 0x110d1119, 0x11101d18, 0x1a030d06, 0x10010d19, 0x1b191911, 0x0f0a1515, 0x1015270f, 0x06050410, 0x1f1c1213, + 0x010e0f17, 0x4b18831c, 0x502014ce, 0x0d307318, 0x0000022f, 0x8001d0ff, 0x1c00b001, 0x00002d00, 0x05e66e17, 0x26313126, 0x36373427, 0x16210182, + 0x0d441817, 0x07062307, 0xba5e3603, 0x16152505, 0x34373617, 0xc03e1c82, 0x1a2b2b36, 0x16150119, 0x40402b2a, 0x15162a2b, 0x2b1a1901, 0x0a25362b, + 0x230c0b09, 0xd0831111, 0x100f2d08, 0x1d01301c, 0x362f2f1e, 0x2b3f3e3a, 0x2c02022c, 0x3a3e3f2b, 0x1e2f2f36, 0x6a01011d, 0x08090c0b, 0x2c313223, + 0x0f01010f, 0x1b2c2d26, 0x2a07b342, 0x00c00140, 0x00430021, 0x68000065, 0x15210a05, 0x05445a31, 0x35313324, 0x03822331, 0x17200786, 0x089d5c18, + 0x35363723, 0x06646e35, 0x18272221, 0x23073540, 0x11151506, 0x3f6821a0, 0x12012406, 0x82c01b12, 0x09e02300, 0x234d0e09, 0x0d632606, 0x0d090e09, + 0x05944143, 0x01201390, 0x2a06734d, 0x1b00ff60, 0x40011212, 0x864040e0, 0x83802011, 0x21038431, 0x3686fea0, 0x003e128a, 0xff100006, 0x01f001e0, + 0x001b00a0, 0x002d0024, 0x004d0036, 0x37000061, 0x31312722, 0x7b413526, 0x37362205, 0x05156116, 0x07141525, 0x65212306, 0x3622061f, 0x0b511737, + 0x08544f07, 0x37360527, 0x37363131, 0x23441821, 0x05b84608, 0x12832882, 0x370c2b4b, 0x09080c3d, 0x14130101, 0x58582f30, 0x1314302f, 0x08090101, + 0x537afe0c, 0x21077d42, 0x08510ff0, 0x87702006, 0x00ff2711, 0x140e0d01, 0x40188001, 0x09840847, 0x0f011024, 0x2b82a001, 0x1b121224, 0xfb83c0fe, + 0x4782e020, 0x0d03032f, 0x22222525, 0x22220202, 0x030d2525, 0x206b8203, 0x10465160, 0x2008d150, 0x875187d0, 0x202b8407, 0x07314610, 0x82001021, + 0x00012a00, 0x01c0ff20, 0x00c001b0, 0x08955644, 0x18311521, 0x2a09aa4d, 0x27260706, 0x07063135, 0x49070722, 0x17210647, 0x05454931, 0x3537362a, + 0x26313531, 0x22272627, 0x26232382, 0x42072223, 0xe825051b, 0x0d0c0b11, 0x33728413, 0x02010f0f, 0x13010102, 0x2d010116, 0x763a2c06, 0x01242536, + 0x132ceb83, 0x0e0d020d, 0x0c0d1313, 0xc001110b, 0xa4210482, 0x2115830c, 0xca834907, 0x31823820, 0x1e131026, 0x05273b26, 0x24242c82, 0x20403625, + 0x0c254b83, 0x0c0d0c13, 0x575a82b4, 0x4029084b, 0x2d00a001, 0x00003f00, 0x054b5701, 0x15311522, 0x2222a182, 0x05822727, 0x15070624, 0x9d862131, + 0x2320b782, 0x9d85c383, 0x06032323, 0x2fbc1807, 0x2726390b, 0x0e000121, 0x09010909, 0x38300306, 0x02012222, 0x22210200, 0x06033038, 0x2e081282, + 0xef400e09, 0x0f060110, 0x83834444, 0x060f4444, 0xe2fd1001, 0x0909a001, 0x0964020e, 0x1c540501, 0x40433535, 0x34344342, 0x0105541c, 0x82026409, + 0xa0fe3146, 0x05071001, 0x0319190e, 0x0e191903, 0x01100705, 0x0430af82, 0xc0ff0000, 0xc0014002, 0x5b003100, 0x7f006800, 0x46081348, 0xde4605e0, + 0x31332305, 0x09851716, 0x21070171, 0x63413734, 0x065f7709, 0x23201147, 0x05373631, 0x820b6869, 0x183120ec, 0x4808894f, 0x0627056e, 0x30070607, + 0x4d0d0e14, 0x902f0552, 0x01010f90, 0x0d01900f, 0x0ada140e, 0x831d1112, 0x68e02708, 0x0f101010, 0x19831801, 0x0f011822, 0x01270a8a, 0x28270168, + 0x85012728, 0x0ae03205, 0x0fda0f0a, 0x1a010a0a, 0x2766271b, 0x01011a1b, 0x203e83c0, 0x086072d0, 0x66835020, 0x24131027, 0x60101d1c, 0x220b83e0, + 0x8d0f0140, 0x225b8550, 0x18182dd0, 0x20090665, 0x825182cd, 0x824f8458, 0x5e002058, 0x023605f7, 0x00c00100, 0x007d0016, 0x009e008e, 0x15160100, + 0x07143131, 0x0b603101, 0x37342905, 0x33363101, 0x26071732, 0x0723db82, 0x58233031, 0xe782054a, 0x84303121, 0x05d64c01, 0x1c4d0585, 0x21058305, + 0x94493130, 0x17062a05, 0x37363716, 0x33303137, 0x69078236, 0x1184066f, 0x73660f8d, 0x27362505, 0x01010103, 0x2708fd46, 0x27272223, 0x34352627, + 0x0808876f, 0x2731012c, 0x1717e901, 0x2019a0fe, 0x18181820, 0x20186001, 0x0b2e1920, 0x0214120b, 0x0c0d0a01, 0x05050c0c, 0x0c030102, 0x0c01160e, + 0x0d870e0d, 0x01140d28, 0x0e0e0e0c, 0x27a70a0a, 0x2001fc30, 0x2001e0fe, 0xce111110, 0x11181811, 0x0887ae10, 0x10e0fe24, 0x7a82a901, 0xa0fe1924, + 0x07831717, 0x17600127, 0x0a0a4617, 0x2fb48210, 0x0c0c0405, 0x010c0d0e, 0x030c0e16, 0x05050201, 0x0b270d87, 0x06050202, 0xa50b0b0e, 0x7efe2125, + 0x78827b87, 0x8311ce21, 0x8208867b, 0x5fa5187b, 0x01a02908, 0x002100c0, 0x0100002c, 0x22056470, 0x73060706, 0x162508b1, 0x33171617, 0x08ba6733, + 0x27170522, 0x36261082, 0x21313737, 0x4a186f01, 0x012a098c, 0x010d0e14, 0x140e0d01, 0xbc7dea36, 0xf1fe3908, 0x07696969, 0x69071010, 0x200100ff, + 0x293d0808, 0x28020228, 0x08083d29, 0x230f3554, 0xd2d2d280, 0xd2213e83, 0x4b501800, 0x00192209, 0x3de9182a, 0x26894a2f, 0x7a014021, 0x40210896, + 0x3de918fe, 0x16834a13, 0xa8180120, 0xe91808a2, 0xf3201532, 0x2314704e, 0x00040030, 0x022b0082, 0x00800100, 0x00330019, 0x184b003f, 0x4d100547, + 0x112209ba, 0x57761517, 0x7b212005, 0x2c5c0ab0, 0x18172005, 0x200a9f4d, 0x200b8a33, 0x4dce8900, 0x402009e8, 0x250f1455, 0x02021610, 0x04843816, + 0x05838820, 0x04843020, 0x46400121, 0x52610761, 0x00012409, 0x55404020, 0x0686064f, 0x6c085d62, 0x0222081b, 0x0f540000, 0x002c2206, 0x06d3504e, + 0x14171623, 0x28038307, 0x27222706, 0x27263127, 0x4f038223, 0x262805b3, 0x36372627, 0x36173233, 0x37261783, 0x37073701, 0x2d4f3133, 0x08b17805, + 0x27223122, 0x3605eb47, 0x37363137, 0x0d14ac01, 0x0c010e05, 0x0509012a, 0x0b070d0c, 0x83490f07, 0x117c08ae, 0x0e040411, 0x232b251f, 0x09050e08, + 0x5dfffe12, 0x01285d5d, 0x4c140e0d, 0x5b5a3d18, 0x0d123b6b, 0x10090a0d, 0x011c3a32, 0x091209bd, 0x1a1d1d1a, 0x191c412c, 0x180c010d, 0x1602010c, + 0x01021650, 0x0f080c0c, 0x081c1c14, 0xa9fe0c15, 0x50bababa, 0x010d0e14, 0x2f2e5230, 0x120d0d01, 0x040c0c10, 0x00350e0b, 0xff050000, 0x02bffffe, + 0x00c00100, 0x00360022, 0x005c0049, 0x1300006f, 0x2205eb4f, 0x82323107, 0x058b4801, 0x30153023, 0x21ad8315, 0xdf822736, 0x13210382, 0x07e86434, + 0x3130232a, 0x17063103, 0x27253716, 0x56123e4b, 0xe45305d4, 0x0812910c, 0x0d12aa28, 0x010c050c, 0x49485901, 0x2c012b2a, 0x010a0a10, 0x4a2f2e07, + 0x01e65c4b, 0x41412726, 0x65050550, 0x09060703, 0x68197c01, 0x40200ccf, 0x200bd14a, 0x2e0c8b90, 0x0a01bf01, 0x012c100a, 0x48492a2b, 0x82010159, + 0x120d395b, 0x2f4a4b5c, 0x67fe072e, 0x41500505, 0x01262741, 0x060984fe, 0xca650206, 0x2857378b, 0x20158209, 0x0b8f4b30, 0x42030021, 0xc0300603, + 0x3c001000, 0x00009000, 0x23332301, 0x37263127, 0x25058743, 0x07070716, 0x347a2333, 0x050a4f06, 0x49070621, 0xaa45058c, 0x05ee4505, 0x0f830583, + 0x76601720, 0x0a566c07, 0x07140726, 0x27262306, 0x07240182, 0x17161706, 0x91183087, 0x96440979, 0x21198307, 0x27823131, 0x68423720, 0x37162205, + 0x30358236, 0x80400135, 0x052f8080, 0xc40a0404, 0x0504040a, 0x3f0d822f, 0x1e070680, 0x2020292a, 0x1b1b0102, 0x29c0fe29, 0x02011b1b, 0x2a292020, + 0x0403021e, 0x12025404, 0x29d3cd18, 0x060a1325, 0x18070101, 0x240ad2cd, 0x08094760, 0x2b128207, 0x20470908, 0x22120404, 0x52383723, 0x2d07d75a, + 0x23373852, 0x02011222, 0x12580302, 0xcd180202, 0x04220db6, 0xcd180307, 0x00262bb6, 0xff00000a, 0x018201c0, 0x00230036, 0x003a0033, 0x0078006b, + 0x0086007f, 0x0094008d, 0x0100009b, 0x6505865a, 0xa9180694, 0x1728261f, 0x31231727, 0x37072737, 0x20058d6b, 0x07c95731, 0x32313322, 0x2e082b73, + 0x31232326, 0x23263127, 0x31070722, 0x82223123, 0x33172529, 0x33370737, 0x10832c82, 0x82352721, 0x3127303d, 0x07373733, 0x23311737, 0x33233317, + 0x7a273107, 0x37210505, 0x531b8507, 0x0125057d, 0xfe291b1b, 0x0cf750e0, 0x20012022, 0x42075445, 0xd5240563, 0x1c0e0e0e, 0x1c310282, 0x0404041c, + 0x051c370a, 0x1b050909, 0x04050938, 0x21118304, 0x11870905, 0x1e820a20, 0x1b1c1c25, 0x83381b1b, 0x22348202, 0x832a1b0e, 0x451c2305, 0x3f821c1c, + 0x0d211084, 0x18118437, 0x212361a9, 0x008318b0, 0x30303027, 0x30080709, 0x21028208, 0x0b8d0907, 0x02821a82, 0x04862584, 0x31844820, 0x00210483, + 0x0aeb4500, 0x22000825, 0x67002b00, 0x352706f7, 0x15313331, 0x73070625, 0x625c0593, 0x05944b09, 0xc4702120, 0x31352205, 0x21229a21, 0x008280c0, + 0x4770fe21, 0x7918085d, 0xfe2708bb, 0xff900160, 0x96000100, 0x2020281b, 0x0d016020, 0x1940140e, 0x210c3675, 0x1782e0fe, 0x91402021, 0x20c38218, + 0x085f4203, 0x32002124, 0xf8184f00, 0x33200997, 0x2205f771, 0x18230607, 0x290b7d5c, 0x37363137, 0x21212107, 0xf05e3103, 0x17032409, 0x18070722, + 0x35085cc1, 0x37361716, 0x31173135, 0x27363716, 0x23263127, 0x787878a4, 0x426b0914, 0x07187707, 0x07602e08, 0x01841409, 0x0180fe80, 0x0d021580, + 0x13f6130e, 0x15020d0e, 0x50070ac0, 0x11110e0e, 0x16160227, 0x11112702, 0x07500e0e, 0x01c0010a, 0x06ec6611, 0x2105ab44, 0x3882110e, 0x0d13ad22, + 0x13250082, 0x07405301, 0x27288350, 0x02168627, 0x27861602, 0x50213e83, 0x064f4f07, 0xc0213a82, 0x43d7ac00, 0x31250648, 0x27262726, 0x21d7bd11, + 0x6d181201, 0xd6aa07f0, 0x3654c020, 0x95402008, 0x410420d8, 0x223e08af, 0x4f003200, 0x00007900, 0x35153513, 0x31373736, 0x31171736, 0x31151716, + 0x15143131, 0x48183115, 0x312408ba, 0x17313534, 0x7d052644, 0x07200858, 0x33842b84, 0x41058a60, 0x218307e5, 0x3f299c57, 0x60140160, 0x14600b0b, + 0x25240101, 0x25243636, 0x16013001, 0x17222217, 0x20a00116, 0x0c470c11, 0x11260282, 0x011f1e32, 0xc4190909, 0x60260999, 0x01010710, 0x02821007, + 0x8a010721, 0x4001330a, 0x153a3a3a, 0x04042409, 0x3a150924, 0x36280404, 0x56842425, 0x04042823, 0x07d35430, 0x98101030, 0x0a4c0d05, 0x050d4c0a, + 0x37292910, 0x0082090d, 0x29370d28, 0x18011029, 0x52901010, 0x00205d84, 0x012a0082, 0xe0ff0000, 0xa0018002, 0x7d5e4500, 0x05de4208, 0x18311121, + 0x4207fb48, 0x765e09ee, 0x05c06907, 0x8d311121, 0x3734230f, 0x33823336, 0x09098028, 0x090ea00e, 0x07826009, 0x83063547, 0x5e128f0a, 0xfe200787, + 0x8207a35e, 0x06275132, 0x18600121, 0x21090e42, 0x6f7100a0, 0x01802c06, 0x000c00c0, 0x004a003d, 0x67720065, 0x172310ef, 0x45271727, 0x06230591, + 0x18171617, 0x5a10a05d, 0x9d82052f, 0x2305e354, 0x05232326, 0x7a0bb76a, 0xf2180540, 0x1420088d, 0x16214282, 0x232a8233, 0x33353637, 0xed6827a6, + 0x3e1b2d0d, 0x100d3e3e, 0x17530e10, 0x3c190102, 0x24069b43, 0x09293c2b, 0x06494a0b, 0x8dfe3528, 0x24242301, 0x05850123, 0x5f18c820, 0xb820132f, + 0xfd6721a0, 0x31312b0e, 0x400a0a31, 0x111c1c13, 0x3d466f26, 0x11802605, 0x21311c0a, 0x22808507, 0x181529e0, 0x1809084f, 0x8909e15f, 0x211f9f09, + 0x7b760000, 0xc0013405, 0x0800a001, 0x1a001100, 0x3d002300, 0x15010000, 0x19231535, 0x2a10a255, 0x31333135, 0x23330715, 0x82311533, 0x4511201c, + 0xf26d05f4, 0x01212211, 0x20008380, 0x830584c0, 0x60b41804, 0x60012113, 0x40222388, 0x02828080, 0x01000122, 0x18086552, 0x260992d1, 0x00150000, + 0x84e0ff00, 0x0012279f, 0x00380025, 0x1419004b, 0xbd390947, 0xe300d000, 0x0901f600, 0x2f011c01, 0x55014201, 0x7b016801, 0x00008e01, 0x08615317, + 0x20086061, 0x11af4a37, 0x12921120, 0xb4183891, 0xc94b0a58, 0x11332106, 0x31562591, 0x91032012, 0x9171b925, 0x910520aa, 0xa405205e, 0x41d09225, + 0x2520122f, 0x25204b91, 0x25927191, 0x10494b92, 0x065f720c, 0x910b704b, 0x1a8c180b, 0x0bb24b09, 0x49bd0b8e, 0x7e079d47, 0x64180d31, 0x0d850d29, + 0x0c8c8c8c, 0x0f7543b6, 0x0cd94c0c, 0xa5600120, 0x00ff210c, 0x4c0cb04c, 0x368c0cf5, 0xa760359a, 0x8c519b0d, 0x8c5e9944, 0x8cc99919, 0x8c5a9926, + 0x82002026, 0x43082000, 0x1f3108ef, 0x45003200, 0x6b005800, 0x91007e00, 0x0000a400, 0x05e15737, 0x36373229, 0x36311135, 0x45312137, 0x212607fb, + 0x06070631, 0x40181107, 0x14230a35, 0x83331617, 0x2012921d, 0x09af6c23, 0x2720259a, 0x2005b971, 0x05424634, 0x29831520, 0x2e6d1520, 0x20788709, + 0x41259135, 0x012306b2, 0x4250010f, 0xfe25053d, 0x161722b0, 0x12411801, 0x0c3a620c, 0x8209c56c, 0x43198c2f, 0x23430c36, 0x20118511, 0x23068500, + 0x010f5001, 0x25051f42, 0x22171601, 0x2e97b0fe, 0x9f8c1797, 0x410cd541, 0x002e0cbb, 0xfeff0300, 0x4402beff, 0x0c00b601, 0x13613b00, 0x17363006, + 0x07061716, 0x27262706, 0x17173607, 0x58313731, 0x172105d4, 0x210b8431, 0x13821633, 0x06071629, 0x22312107, 0x83372627, 0x8233201d, 0x31252623, + 0x17173726, 0x723a8227, 0x07210d51, 0x834a8531, 0x31372329, 0xb26ad017, 0xc62a080b, 0x1714150a, 0x1f27321b, 0x4f230d1e, 0x10110b22, 0x08096009, + 0x00ff120a, 0x07090912, 0x20130a10, 0x14b0fe17, 0x70705307, 0x0d411270, 0x253d2e06, 0x0d0b0c04, 0x0405060d, 0x01200b30, 0x0b5f6b80, 0x14972508, + 0x2b260807, 0x16160101, 0x2e226725, 0xa00f010d, 0x010f1010, 0x20100f0f, 0x8c1e0111, 0x305c150a, 0x15083030, 0x22066444, 0x836f1a4b, 0x264c8344, + 0x000e2190, 0x50020000, 0x40270823, 0x00005300, 0x6b072201, 0x2720051b, 0x8205414e, 0x171627a7, 0x37363716, 0xde823107, 0x3316172d, 0x37363332, + 0x27262736, 0x42333117, 0x352305b7, 0x82262726, 0x31372133, 0x5c051358, 0x2008128e, 0x02030301, 0x0b222242, 0x03720b04, 0x0109080c, 0x4336350e, + 0x090d161a, 0x03030c08, 0x0a222241, 0x20178505, 0x4116890f, 0x01210bdd, 0x8b30a2c0, 0x5ce0205f, 0x05320c34, 0xbcffffff, 0xc2010202, 0x4f002a00, + 0x7a005c00, 0xe5829400, 0x6c4b1620, 0x05604b0a, 0x7e4bdf83, 0x4b118507, 0x0124059e, 0x36370737, 0x19068c5d, 0x200cb533, 0x05937e31, 0x33202b83, + 0x0c2cea18, 0x37072529, 0x32313307, 0x72071617, 0x232007d2, 0x82073042, 0x06252213, 0x05815127, 0x7c053e67, 0x0724084e, 0x0cf40107, 0x8307af7e, + 0x8b602007, 0x1802300c, 0xfe0c0ea0, 0x0c0c0c57, 0x113e1109, 0x4e1b0c09, 0xc020072b, 0x1b210887, 0x5e571875, 0x271f2d0c, 0x0b382727, 0x80070304, + 0x040a0a0a, 0xfe3c0a8a, 0x610b0cad, 0x18010115, 0x131b1a15, 0x1b130a0a, 0x0117161a, 0x01601501, 0x900f0ab9, 0x220be35a, 0x8b761339, 0x1960310e, + 0x09032006, 0x1212d7fe, 0x120e0e12, 0x140e0d01, 0x8408e94e, 0x42682008, 0x822b0b92, 0x0a5a5a5a, 0x0870070b, 0x880b0807, 0x3b2a0808, 0x17640a0a, + 0x11161d1e, 0x0a140202, 0x0202140a, 0x1e1d1611, 0x00006417, 0xfeff0100, 0x0002c0ff, 0x2700c201, 0x36010000, 0x164d3137, 0x05785806, 0x30412620, + 0x052c4d06, 0x37364c08, 0x31273736, 0x01373726, 0x0e0d065b, 0x021b580f, 0x653c3c01, 0x0a1d7d65, 0x06060318, 0x131b600f, 0x292a3528, 0x09153119, + 0x0fa70128, 0x18030606, 0x657d1d0a, 0x013c3c65, 0x0f581b02, 0x28060d0e, 0x19311509, 0x28352a29, 0x5a601b13, 0x012707ff, 0x00a001c0, 0x51390019, + 0x31260f9b, 0x27262726, 0x73833111, 0x7a072121, 0x0621072b, 0x267f8207, 0x06310707, 0x66311717, 0x362105a6, 0x77a38237, 0xfc4905b5, 0x105b310f, + 0x0a051407, 0x14361a19, 0x0e300e0a, 0x0f040c03, 0x2205ba78, 0x182c0e01, 0x211574be, 0x27820361, 0x36140a3f, 0x050a191a, 0x2c100714, 0x1e01010e, + 0x3f32331d, 0x000c040f, 0xff000008, 0x018002c0, 0x2cab82c0, 0x00460033, 0x007e006e, 0x009e008e, 0x18b782b0, 0x4c19b0ac, 0x9818057d, 0x172a0872, + 0x33331716, 0x27363732, 0x41462727, 0x33052411, 0x18113323, 0x8208b99b, 0x35352325, 0x0f823331, 0x250aff56, 0x36373631, 0x3b641737, 0x058e7407, + 0x9e152321, 0x6805200f, 0x012510e4, 0xfe400100, 0x09de56c0, 0x3b05975d, 0x1b121201, 0x0d0d07dc, 0x08113807, 0x40080b0b, 0x0f070609, 0x070ec050, + 0x8c600706, 0x230bd643, 0x6060f0fe, 0x2007c64d, 0x203483a0, 0x082765fe, 0x010f0825, 0x98100f01, 0x50012104, 0xc0201d8a, 0xe0203a83, 0x8407d74b, + 0x0b6b3008, 0x0916540b, 0x0d0c5009, 0x0c0d010d, 0x440b900c, 0x20220b8b, 0xcc4600ff, 0x57202006, 0x01200897, 0x89054c5f, 0x94682055, 0x8210200a, + 0x34948800, 0x03000000, 0xb9fff9ff, 0xc7018702, 0x3b002d00, 0x00005800, 0x8c171913, 0x31252509, 0x31333137, 0x0f3e8818, 0x31312322, 0x08495418, + 0x30172726, 0x30313135, 0x27232786, 0x18332313, 0x1808837a, 0x290d1c8f, 0x27073127, 0x100c0f13, 0x05835002, 0xedfe2208, 0x0306672c, 0x0e0d0607, + 0x0b040a0b, 0x180d0e05, 0x0d11ab94, 0x7106040d, 0x21750aa8, 0x3333245e, 0x4eee8533, 0x2a2b06e6, 0x011e3611, 0x13100cbb, 0x8330fe0f, 0x9ed72605, + 0x0b0b0d18, 0x30418304, 0x1112182c, 0x100a0a01, 0x0184591a, 0xfe4a7328, 0x0b9e41e9, 0x692b3e22, 0x0037e282, 0xff270004, 0x011202de, 0x002700a0, + 0x0071004e, 0x17000078, 0x45222306, 0x11250c00, 0x36373431, 0x05876833, 0x200a0c45, 0x05705713, 0x79313321, 0xe94f05b0, 0x2726240b, 0x79373726, + 0x172006aa, 0x18063073, 0x20081874, 0xeb941823, 0x3137210a, 0x07345083, 0x27332333, 0x0ab80731, 0x580a0e0e, 0x09010109, 0x0a0d0c0b, 0x24061948, + 0x0c0d0a20, 0x2113830b, 0xbe828858, 0x09158025, 0x414a0e07, 0x0c890601, 0x0a136028, 0x04051040, 0x00820c04, 0x58070724, 0x07820707, 0x04040c31, + 0x0a401005, 0x28281413, 0x16141428, 0x83600a0a, 0x22498355, 0x412e0124, 0xfe220542, 0x0f8324d2, 0x0d0c0a26, 0x9601600b, 0x01231382, 0x76101313, + 0x0a870616, 0x1101c028, 0x0c0c2080, 0x5e83070c, 0x830e0e21, 0x265d8355, 0x01118020, 0x41282890, 0x1320133f, 0x25094b50, 0x37363716, 0x6e183137, + 0x27740a71, 0x22158205, 0x62272736, 0x45420867, 0x0d144205, 0x2627362b, 0x22312327, 0x17150607, 0x050e7306, 0xe4471720, 0x31372205, 0x2b448b33, + 0x26312731, 0x07370727, 0x23311737, 0x25223f41, 0x070e4a33, 0x59511509, 0x410c8906, 0x14201c3f, 0x28220082, 0x40419601, 0xd2fe210b, 0x21054041, + 0x40412e01, 0x82162009, 0x10492312, 0x0d491313, 0x410a8706, 0x28371d3f, 0x00000028, 0xff070005, 0x014002e0, 0x002700a0, 0x0053003d, 0x427f0069, + 0x33212a85, 0x08784f23, 0x4f312321, 0x15200736, 0x982015c0, 0x211d8c42, 0x5b1820a8, 0x0a410879, 0x18602005, 0x4907c540, 0x7d1a06c5, 0xa74308ec, + 0x23a61806, 0x066b5a08, 0x20219042, 0x18914db6, 0x8c0c274b, 0x154b410c, 0x18279142, 0x420a994d, 0x8c4c0a8d, 0x4115b60a, 0x41411f4b, 0x07b64505, + 0x46410d85, 0x41068606, 0x06860644, 0x20064241, 0x219442e0, 0x43410a20, 0x00043533, 0x02e0ff27, 0x00a00108, 0x00530028, 0x00820066, 0x37321700, + 0x210bb174, 0xad4d3111, 0x31113307, 0x27263127, 0x07060726, 0x31171706, 0x26253316, 0xba760707, 0x82162006, 0x3e181932, 0x27342219, 0x054d7827, + 0x18451620, 0x37262406, 0x5a073736, 0x1720053b, 0x60053744, 0x16240947, 0xa0171617, 0x261b1b45, 0x23010e0a, 0x4c300f0e, 0x06210737, 0x05444110, + 0x6c5c3020, 0x0d102a06, 0x0c0c0d21, 0x04040506, 0x3907880c, 0x08070707, 0x0b0b0202, 0x31090c0d, 0x19190115, 0x19192525, 0x11100101, 0x2945201b, + 0x0c0d291a, 0xba0a600b, 0x04100509, 0x2106ea4c, 0x61413402, 0x1060230b, 0x6582cb0a, 0x74826489, 0x09097123, 0x83648309, 0x1d42226c, 0x82658424, + 0x161e266d, 0x00000917, 0x126b4100, 0x4d321321, 0x062706c4, 0x27272627, 0x71311131, 0x112007dd, 0x260c3846, 0x16013336, 0x46311515, 0xa65b0a76, + 0x08e87108, 0x37262722, 0x2105224c, 0x4e193627, 0x0720073c, 0x29053b4d, 0x26073716, 0x26313127, 0x94683635, 0x41142006, 0x728205b7, 0x37372622, + 0x20206b41, 0x0f60410d, 0x0b0d062c, 0x0504040c, 0x0f300d06, 0x0984050e, 0x0d0c0c22, 0x29230787, 0x4111111b, 0x152c0761, 0x0d0c0931, 0x02020b0b, + 0xa0010708, 0x450a6941, 0x0d280f52, 0x0a600b0c, 0x100afafe, 0x210cb44f, 0x63830234, 0x10246b83, 0x06910905, 0x05216384, 0x26078506, 0x09370504, + 0x411e1617, 0x24220760, 0x6583421d, 0x09216d83, 0x063f7300, 0xc0014031, 0x29002200, 0x53004700, 0x7c005e00, 0x46130000, 0x1729215c, 0x37233323, + 0x15371731, 0x2e5d1835, 0x37362508, 0x27263736, 0x46059e42, 0x248206a4, 0x33313525, 0x82171631, 0x08907550, 0x8b193520, 0x37311c94, 0x43081570, + 0x0504050d, 0x0c0c0c0d, 0x065a0506, 0x82078205, 0x0420080f, 0x1509420e, 0x26262613, 0x097d1313, 0x22500e09, 0x01011617, 0x16010918, 0x0e402217, + 0x20600909, 0x0f230082, 0x820f0101, 0x83302006, 0xf7302107, 0x2105f16b, 0xe66b49a9, 0x83602005, 0x01c02606, 0xa01301c0, 0x21518220, 0x61840406, + 0x06205883, 0x20280e82, 0xa00113a0, 0x60802d2d, 0x8305b045, 0x16242455, 0x82221511, 0x216c8264, 0xcb652040, 0x97202108, 0xaa214e85, 0x3a5e854a, + 0xc0090960, 0x00030000, 0x02400000, 0x00600180, 0x002c000c, 0x37000039, 0x42262726, 0x07240542, 0x36330706, 0x27210e83, 0x5c0a8206, 0x4d18099f, + 0x16230724, 0x7b372317, 0x90200bd4, 0x210b0466, 0x07641778, 0x28022508, 0x60013d29, 0x8307e863, 0x17012307, 0x2c8be870, 0x8e668020, 0x21058505, + 0x2a8b2d23, 0x07d96e18, 0x2d220783, 0x288ba023, 0xff02002e, 0x020000fd, 0x00a00183, 0x00490026, 0x2505c54d, 0x37363130, 0x96823336, 0x24055751, + 0x26272223, 0x82118227, 0x823220d1, 0x31302311, 0x91791716, 0x22148506, 0x82161736, 0x83df83db, 0x82fa84d5, 0x013d0826, 0x070b1440, 0x19100909, + 0x0e0d1413, 0x2b2a2007, 0x2a2b3535, 0x0d0e0720, 0x10191314, 0x0b070909, 0x3424d114, 0x34454534, 0x20262335, 0x040e100e, 0x3e252b17, 0x3e5c5c3e, + 0x172c243e, 0x30108204, 0x80012620, 0x05070c02, 0x28280206, 0x0e253433, 0x0800820a, 0x34250e2f, 0x02282833, 0x0c070506, 0x0f13cf02, 0x0e01010e, + 0x1d13130f, 0x120a090c, 0x1d272b3a, 0x1d02021d, 0x392c271d, 0x0c090a12, 0x0200131d, 0x21008200, 0xdb828002, 0x3d002528, 0x07130000, 0x12500737, + 0x31052205, 0x62e28317, 0x27210655, 0x20b38231, 0xf0551823, 0x24da8607, 0x31253121, 0x08148426, 0x07070660, 0x15150631, 0x0b0b0b99, 0x3c0b0b0a, + 0x24160132, 0x010c0c12, 0x1f1f1919, 0x11051f16, 0x08031811, 0x0826c108, 0x12120199, 0xfee0011b, 0x0a3329e9, 0x1526262e, 0x38010e06, 0x01393939, + 0x0418c323, 0x26140f0f, 0x14141d1d, 0x0e17a309, 0x0b34020f, 0x121bf827, 0x1dc30112, 0x0d291718, 0xa6841e1b, 0x00000325, 0x5a01c0ff, 0x1d220593, + 0x1b5e2a00, 0x31352105, 0x26059b67, 0x35151515, 0x6a171615, 0x23210973, 0x27c61837, 0x31153008, 0xb0b00033, 0x2d4410b0, 0x2d02022d, 0x8340442d, + 0xc0c02108, 0x10230a83, 0x840001b0, 0x20202408, 0x87808080, 0x20802120, 0x24840082, 0x00820020, 0x77830520, 0x01030236, 0x002300c3, 0x003d0030, + 0x0057004a, 0x27360100, 0x31050726, 0x20053178, 0x06516415, 0x36312123, 0xf7fc1837, 0x25312208, 0x0bb64207, 0x37360522, 0x2305e743, 0x27263123, + 0x0c0f1719, 0x198b1720, 0x14ef012b, 0xfe160804, 0x1a0b0e53, 0x0d5c6501, 0x1401e523, 0x0bcd427f, 0x01e0fe26, 0x010f600f, 0x10230484, 0x83800f01, + 0x8204820a, 0x2d15870a, 0x16089101, 0x047e0414, 0x04211309, 0x0b4e906c, 0x05d54d07, 0x42c15121, 0x10200be3, 0x20071d6c, 0x69089040, 0x1a260b57, + 0x50003500, 0x04196300, 0x6f581cbb, 0x924d1805, 0x32152114, 0x18f87218, 0x2013a655, 0xae571801, 0x00012116, 0x13e47018, 0x4e135c5b, 0xc02a0be0, + 0x243a3a46, 0x3a242222, 0x0989463a, 0x72186020, 0xe02013a2, 0x4613185c, 0x13410c4e, 0x80012906, 0x4500c001, 0x61005300, 0x2105a565, 0x7c740627, + 0x70078306, 0x152105f8, 0x0b934231, 0x2a7f3420, 0x27262208, 0x080b4923, 0x3521098b, 0x0c967b15, 0x70310d9b, 0x02161602, 0x0d0e1410, 0x0e040e01, + 0x140e0d01, 0x200b8ae0, 0x055e4810, 0x21060c4e, 0x6218a030, 0x0b970af2, 0x16a80126, 0x48160202, 0x9c214983, 0x21528214, 0x24535c14, 0x22088207, + 0x82140e04, 0x206a8214, 0x20008209, 0x0557410e, 0x6e884821, 0xac7b079a, 0x20088808, 0x21008200, 0xd3510004, 0x00a02805, 0x00440029, 0x686b005e, + 0x84480e7b, 0x4521200c, 0x3279071c, 0x33052506, 0x31353323, 0x36220c83, 0x80553337, 0x05334706, 0x57271521, 0x152305e5, 0x18171431, 0x55073b7c, + 0x232105a0, 0xd0561813, 0x01002a0b, 0x01221716, 0x2d2d4450, 0x07224b02, 0x01e0fe38, 0x29291b1b, 0x10011b1b, 0x01161722, 0x80804001, 0x010f2080, + 0x63180f01, 0x2170079a, 0x0e09230b, 0xf9536080, 0x5001210b, 0x02233383, 0x57442d2d, 0x5f650689, 0x25678307, 0x0160f0e0, 0x0a7e0f0f, 0xe0c02407, + 0x680e0909, 0xfe200ac6, 0x0c3cfe18, 0x00840020, 0x0e011624, 0x09840100, 0x1a000024, 0x0b869000, 0x19000124, 0x0b86bd00, 0x05000222, 0x23851f82, + 0x1f000324, 0x1786d600, 0x238a0420, 0x32000522, 0x23850182, 0x16000622, 0x0b853182, 0x2c000a24, 0x2f866400, 0x17000b24, 0x0b861b00, 0x13001024, + 0x0b86aa00, 0x5f841120, 0x01000324, 0x67820904, 0x15023423, 0x240b8500, 0x02320001, 0x240b866f, 0x000a0002, 0x240b86f5, 0x023e0003, 0x200b86a1, + 0x24238a04, 0x01640005, 0x20178659, 0x20778206, 0x240b86ff, 0x0158000a, 0x240b86bd, 0x012e000b, 0x240b862b, 0x02260010, 0x210b8649, 0x5f820011, + 0x6c6f5335, 0x6f466469, 0x7741746e, 0x6d6f7365, 0x72463665, 0x842d6565, 0x74682815, 0x3a737074, 0x82662f2f, 0x8561201d, 0x632e391d, 0x65566d6f, + 0x6f697372, 0x3737206e, 0x30302e34, 0x36303933, 0x28203532, 0x20204283, 0x20214386, 0x08228576, 0x36203a20, 0x302e362e, 0x65685429, 0x62657720, + 0x6d207327, 0x2074736f, 0x75706f70, 0x2072616c, 0x45826369, 0x7465733d, 0x646e6120, 0x6f6f7420, 0x74696b6c, 0x706f432e, 0x67697279, 0x28207468, + 0x8b202963, 0x21618c55, 0xa7832036, 0x20201292, 0x8d88d088, 0x18852b85, 0x91842d20, 0x0053002b, 0x006c006f, 0x00640069, 0x2a098246, 0x0074006e, + 0x00770041, 0x82730065, 0x826d200d, 0x82362007, 0x82722017, 0x00652207, 0x202b8a2d, 0x22278268, 0x82700074, 0x003a2225, 0x2001822f, 0x203b8666, + 0x223b8c61, 0x8463002e, 0x82562045, 0x8272203f, 0x8469202b, 0x00202225, 0x24018237, 0x002e0034, 0x22018230, 0x82390033, 0x00362805, 0x00350032, + 0x88280020, 0x8e202085, 0x00202287, 0x20458c76, 0x202d823a, 0x83438236, 0x00302603, 0x00540029, 0x201f8268, 0x227f8420, 0x82270062, 0x0020226d, + 0x206f826d, 0x20a98273, 0x20a98220, 0x2003826f, 0x22e98275, 0x82720061, 0x84692039, 0x826e2099, 0x82732009, 0x82742035, 0x00612407, 0x8264006e, + 0x82742007, 0x826f2033, 0x006b2227, 0x22398269, 0x8243002e, 0x0070220f, 0x22358279, 0x82670069, 0x202b8363, 0x203d8228, 0x412b8229, 0xab8f0731, + 0x20221797, 0x35843600, 0xa5054f41, 0x41202025, 0x6f8f12a1, 0x318b578d, 0x71822d20, 0x03842e20, 0x82003021, 0x00022100, 0xff230084, 0x841900db, + 0x07048e08, 0x7405090b, 0x02010000, 0x04010301, 0x0d000800, 0x05010e00, 0x07010601, 0x09010801, 0x0b010a01, 0x0d010c01, 0x0f010e01, 0x11011001, + 0x23002200, 0x13011201, 0x15011401, 0x17011601, 0x19011801, 0x1b011a01, 0x1d011c01, 0x1f011e01, 0x21012001, 0x23012201, 0x25012401, 0x27012601, + 0x29012801, 0x2b012a01, 0x2d012c01, 0x2f012e01, 0x31013001, 0x33013201, 0x35013401, 0x37013601, 0x39013801, 0x3b013a01, 0x3d013c01, 0x3f013e01, + 0x41014001, 0x43014201, 0x45014401, 0x47014601, 0x49014801, 0x4b014a01, 0x4d014c01, 0x4f014e01, 0x51015001, 0x53015201, 0x55015401, 0x57015601, + 0x59015801, 0x5b015a01, 0x5d015c01, 0x5f015e01, 0x61016001, 0x63016201, 0x65016401, 0x67016601, 0x69016801, 0x6b016a01, 0x6d016c01, 0x6f016e01, + 0x71017001, 0x73017201, 0x75017401, 0x77017601, 0x79017801, 0x7b017a01, 0x7d017c01, 0x7f017e01, 0x81018001, 0x83018201, 0x85018401, 0x87018601, + 0x89018801, 0x8b018a01, 0x8d018c01, 0x8f018e01, 0x91019001, 0x93019201, 0x95019401, 0x97019601, 0x99019801, 0x9b019a01, 0x9d019c01, 0x9f019e01, + 0xa101a001, 0xa301a201, 0xa501a401, 0xa701a601, 0xa901a801, 0xab01aa01, 0xad01ac01, 0xaf01ae01, 0xb101b001, 0xb301b201, 0xb501b401, 0xb701b601, + 0xb901b801, 0xbb01ba01, 0xbd01bc01, 0xbf01be01, 0xc101c001, 0xc301c201, 0xc501c401, 0xc701c601, 0xc901c801, 0xcb01ca01, 0xcd01cc01, 0xcf01ce01, + 0xd101d001, 0xd301d201, 0xd501d401, 0xd701d601, 0xd901d801, 0xdb01da01, 0xdd01dc01, 0xdf01de01, 0xe101e001, 0xe301e201, 0xe501e401, 0xe701e601, + 0xe901e801, 0xeb01ea01, 0xed01ec01, 0xef01ee01, 0xf101f001, 0xf301f201, 0xf501f401, 0xf701f601, 0xf901f801, 0xfb01fa01, 0xfd01fc01, 0xff01fe01, + 0x01020002, 0x03020202, 0x05020402, 0x07020602, 0x09020802, 0x0b020a02, 0x0d020c02, 0x0f020e02, 0x11021002, 0x13021202, 0x15021402, 0x17021602, + 0x19021802, 0x1b021a02, 0x1d021c02, 0x1f021e02, 0x21022002, 0x23022202, 0x25022402, 0x27022602, 0x29022802, 0x2b022a02, 0x2d022c02, 0x2f022e02, + 0x31023002, 0x33023202, 0x35023402, 0x37023602, 0x39023802, 0x3b023a02, 0x3d023c02, 0x3f023e02, 0x41024002, 0x43024202, 0x45024402, 0x47024602, + 0x49024802, 0x4b024a02, 0x4d024c02, 0x4f024e02, 0x51025002, 0x53025202, 0x55025402, 0x57025602, 0x59025802, 0x5b025a02, 0x5d025c02, 0x5f025e02, + 0x61026002, 0x63026202, 0x65026402, 0x67026602, 0x69026802, 0x6b026a02, 0x6d026c02, 0x6f026e02, 0x71027002, 0x73027202, 0x75027402, 0x77027602, + 0x79027802, 0x7b027a02, 0x7d027c02, 0x7f027e02, 0x81028002, 0x83028202, 0x85028402, 0x87028602, 0x89028802, 0x8b028a02, 0x8d028c02, 0x8f028e02, + 0x91029002, 0x93029202, 0x95029402, 0x97029602, 0x99029802, 0x9b029a02, 0x9d029c02, 0x9f029e02, 0xa102a002, 0xa302a202, 0xa502a402, 0xa702a602, + 0xa902a802, 0xab02aa02, 0xad02ac02, 0xaf02ae02, 0xb102b002, 0xb302b202, 0xb502b402, 0xb702b602, 0xb902b802, 0xbb02ba02, 0xbd02bc02, 0xbf02be02, + 0xc102c002, 0xc302c202, 0xc502c402, 0xc702c602, 0xc902c802, 0xcb02ca02, 0xcd02cc02, 0xcf02ce02, 0xd102d002, 0xd302d202, 0xd502d402, 0xd702d602, + 0xd902d802, 0xdb02da02, 0xdd02dc02, 0xdf02de02, 0xe102e002, 0xe302e202, 0xe502e402, 0xe702e602, 0xe902e802, 0xeb02ea02, 0xed02ec02, 0xef02ee02, + 0xf102f002, 0xf302f202, 0xf502f402, 0xf702f602, 0xf902f802, 0xfb02fa02, 0xfd02fc02, 0xff02fe02, 0x01030003, 0x03030203, 0x05030403, 0x07030603, + 0x09030803, 0x0b030a03, 0x0d030c03, 0x0f030e03, 0x11031003, 0x13031203, 0x15031403, 0x17031603, 0x19031803, 0x1b031a03, 0x1d031c03, 0x1f031e03, + 0x21032003, 0x23032203, 0x25032403, 0x27032603, 0x29032803, 0x2b032a03, 0x2d032c03, 0x2f032e03, 0x31033003, 0x33033203, 0x35033403, 0x37033603, + 0x39033803, 0x3b033a03, 0x3d033c03, 0x3f033e03, 0x41034003, 0x43034203, 0x45034403, 0x47034603, 0x49034803, 0x4b034a03, 0x4d034c03, 0x4f034e03, + 0x51035003, 0x53035203, 0x55035403, 0x57035603, 0x59035803, 0x5b035a03, 0x5d035c03, 0x5f035e03, 0x61036003, 0x63036203, 0x65036403, 0x67036603, + 0x69036803, 0x6b036a03, 0x6d036c03, 0x6f036e03, 0x71037003, 0x73037203, 0x75037403, 0x77037603, 0x79037803, 0x7b037a03, 0x7d037c03, 0x7f037e03, + 0x81038003, 0x83038203, 0x85038403, 0x87038603, 0x89038803, 0x8b038a03, 0x8d038c03, 0x8f038e03, 0x91039003, 0x93039203, 0x95039403, 0x97039603, + 0x99039803, 0x9b039a03, 0x9d039c03, 0x9f039e03, 0xa103a003, 0xa303a203, 0xa503a403, 0xa703a603, 0xa903a803, 0xab03aa03, 0xad03ac03, 0xaf03ae03, + 0xb103b003, 0xb303b203, 0xb503b403, 0xb703b603, 0xb903b803, 0xbb03ba03, 0xbd03bc03, 0xbf03be03, 0xc103c003, 0xc303c203, 0xc503c403, 0xc703c603, + 0xc903c803, 0xcb03ca03, 0xcd03cc03, 0xcf03ce03, 0xd103d003, 0xd303d203, 0xd503d403, 0xd703d603, 0xd903d803, 0xdb03da03, 0xdd03dc03, 0xdf03de03, + 0xe103e003, 0xe303e203, 0xe503e403, 0xe703e603, 0xe903e803, 0xeb03ea03, 0xed03ec03, 0xef03ee03, 0xf103f003, 0xf303f203, 0xf503f403, 0xf703f603, + 0xf903f803, 0xfb03fa03, 0xfd03fc03, 0xff03fe03, 0x01040004, 0x03040204, 0x05040404, 0x07040604, 0x09040804, 0x0b040a04, 0x0d040c04, 0x0f040e04, + 0x11041004, 0x13041204, 0x15041404, 0x17041604, 0x19041804, 0x1b041a04, 0x1d041c04, 0x1f041e04, 0x21042004, 0x23042204, 0x25042404, 0x27042604, + 0x29042804, 0x2b042a04, 0x2d042c04, 0x2f042e04, 0x31043004, 0x33043204, 0x35043404, 0x37043604, 0x39043804, 0x3b043a04, 0x3d043c04, 0x3f043e04, + 0x41044004, 0x43044204, 0x45044404, 0x47044604, 0x49044804, 0x4b044a04, 0x4d044c04, 0x4f044e04, 0x51045004, 0x53045204, 0x55045404, 0x57045604, + 0x59045804, 0x5b045a04, 0x5d045c04, 0x5f045e04, 0x61046004, 0x63046204, 0x65046404, 0x67046604, 0x69046804, 0x6b046a04, 0x6d046c04, 0x6f046e04, + 0x71047004, 0x73047204, 0x75047404, 0x77047604, 0x79047804, 0x7b047a04, 0x7d047c04, 0x7f047e04, 0x81048004, 0x83048204, 0x85048404, 0x87048604, + 0x89048804, 0x8b048a04, 0x8d048c04, 0x8f048e04, 0x91049004, 0x93049204, 0x95049404, 0x97049604, 0x99049804, 0x9b049a04, 0x9d049c04, 0x9f049e04, + 0xa104a004, 0xa304a204, 0xa504a404, 0xa704a604, 0xa904a804, 0xab04aa04, 0xad04ac04, 0xaf04ae04, 0xb104b004, 0xb304b204, 0xb504b404, 0xb704b604, + 0xb904b804, 0xbb04ba04, 0xbd04bc04, 0xbf04be04, 0xc104c004, 0xc304c204, 0xc504c404, 0xc704c604, 0xc904c804, 0xcb04ca04, 0xcd04cc04, 0xcf04ce04, + 0xd104d004, 0xd304d204, 0xd504d404, 0xd704d604, 0xd904d804, 0xdb04da04, 0xdd04dc04, 0xdf04de04, 0xe104e004, 0xe304e204, 0xe504e404, 0xe704e604, + 0xe904e804, 0xeb04ea04, 0xed04ec04, 0xef04ee04, 0xf104f004, 0xf304f204, 0xf504f404, 0xf704f604, 0xf904f804, 0xfb04fa04, 0xfd04fc04, 0xff04fe04, + 0x01050005, 0x03050205, 0x05050405, 0x07050605, 0x09050805, 0x0b050a05, 0x0d050c05, 0x0f050e05, 0x11051005, 0x13051205, 0x15051405, 0x17051605, + 0x19051805, 0x1b051a05, 0x1d051c05, 0x1f051e05, 0x21052005, 0x23052205, 0x25052405, 0x27052605, 0x29052805, 0x2b052a05, 0x2d052c05, 0x2f052e05, + 0x31053005, 0x33053205, 0x35053405, 0x37053605, 0x39053805, 0x3b053a05, 0x3d053c05, 0x3f053e05, 0x41054005, 0x43054205, 0x45054405, 0x47054605, + 0x49054805, 0x4b054a05, 0x4d054c05, 0x4f054e05, 0x51055005, 0x53055205, 0x55055405, 0x57055605, 0x59055805, 0x5b055a05, 0x5d055c05, 0x5f055e05, + 0x61056005, 0x63056205, 0x65056405, 0x67056605, 0x69056805, 0x6b056a05, 0x6d056c05, 0x6f056e05, 0x71057005, 0x73057205, 0x75057405, 0x77057605, + 0x79057805, 0x7b057a05, 0x7d057c05, 0x7f057e05, 0x81058005, 0x83058205, 0x85058405, 0x87058605, 0x89058805, 0x8b058a05, 0x8d058c05, 0x8f058e05, + 0x91059005, 0x93059205, 0x95059405, 0x97059605, 0x99059805, 0x9b059a05, 0x9d059c05, 0x9f059e05, 0xa105a005, 0xa305a205, 0xa505a405, 0xa705a605, + 0xa905a805, 0xab05aa05, 0xad05ac05, 0xaf05ae05, 0xb105b005, 0xb305b205, 0xb505b405, 0xb705b605, 0xb905b805, 0xbb05ba05, 0xbd05bc05, 0xbf05be05, + 0xc105c005, 0xc305c205, 0xc505c405, 0xc705c605, 0xc905c805, 0xcb05ca05, 0xcd05cc05, 0xcf05ce05, 0xd105d005, 0xd305d205, 0xd505d405, 0xd705d605, + 0xd905d805, 0xdb05da05, 0xdd05dc05, 0xdf05de05, 0xe105e005, 0xe305e205, 0xe505e405, 0xe705e605, 0xe905e805, 0xeb05ea05, 0xed05ec05, 0xef05ee05, + 0xf105f005, 0xf305f205, 0xf505f405, 0xf705f605, 0xf905f805, 0xfb05fa05, 0xfd05fc05, 0xff05fe05, 0x01060006, 0x03060206, 0x05060406, 0x07060606, + 0x09060806, 0x0b060a06, 0x0d060c06, 0x0f060e06, 0x11061006, 0x13061206, 0x15061406, 0x17061606, 0x19061806, 0x1b061a06, 0x1d061c06, 0x1f061e06, + 0x21062006, 0x23062206, 0x25062406, 0x27062606, 0x29062806, 0x2b062a06, 0x2d062c06, 0x2f062e06, 0x31063006, 0x33063206, 0x35063406, 0x37063606, + 0x39063806, 0x3b063a06, 0x3d063c06, 0x3f063e06, 0x41064006, 0x43064206, 0x45064406, 0x47064606, 0x49064806, 0x4b064a06, 0x4d064c06, 0x4f064e06, + 0x51065006, 0x53065206, 0x55065406, 0x57065606, 0x59065806, 0x5b065a06, 0x5d065c06, 0x5f065e06, 0x61066006, 0x63066206, 0x65066406, 0x67066606, + 0x69066806, 0x6b066a06, 0x6d066c06, 0x6f066e06, 0x6378650b, 0x616d616c, 0x6e6f6974, 0x73616807, 0x67617468, 0x6c6f640b, 0x2d72616c, 0x6e676973, + 0x38139f4a, 0x73656c09, 0x68742d73, 0x65066e61, 0x6c617571, 0x72670c73, 0x65746165, 0x4a138472, 0x0627336f, 0x63756166, 0x850b7465, 0x642d3a06, 0x14706972, 0x73756f68, 0x68632d65, 0x656e6d69, 0x69772d79, 0x776f646e, 0x8314850c, 0x6c613498, 0x6d657416, 0x61726570, 0x65727574, 0x7272612d, 0x822d776f, 0x146e2122, 0x752d1691, 0x72740770, 0x656c6961, 0x61620872, 0x22a88263, 0x86096169, 0x6d752d08, 0x786f620a, 0x7369742d, 0x14657573, 0x6431d282, 0x6c6f682d, 0x676e6964, 0x64656d2d, 0x6c616369, 0x2714840d, 0x72617073, 0x73656c6b, 0x73250d84, 0x6275622d, 0x200d8262, 0x2a1b8316, @@ -4661,234 +4887,236 @@ static const unsigned int FontAwesomeSolid_compressed_data[234560/4] = 0x2d726574, 0x63726963, 0x782d656c, 0x24b5826d, 0x6f6c660b, 0x24de8672, 0x6c6f660d, 0x2a1f8364, 0x65736f6c, 0x72660a64, 0x84636e61, 0x670c2341, 0x0c826175, 0x032acf85, 0x0e6e7567, 0x646e6168, 0xc0842d73, 0x676e6923, 0x0554420a, 0x65737530, 0x6e691172, 0x6e616964, 0x7075722d, 0x3c846565, 0x696b0823, 0x23088470, 0x72616c09, 0x0d244285, 0x6574696c, 0x24085541, 0x6e616d0a, 0x056d4161, 0x616d092c, 0x662d6b73, 0x09656361, 0xec82696d, - 0x6769732b, 0x6f6d0b6e, 0x2d79656e, 0x260f8262, 0x616e0a73, 0x84617269, 0x70082e4d, 0x726f6e61, 0x0b616d61, 0x65736570, 0x20148574, 0x410b8209, - 0x08200506, 0x2205ad42, 0x820b7075, 0x61692289, 0x22338468, 0x82747306, 0x08733f3f, 0x656d6974, 0x656e696c, 0x7572740b, 0x662d6b63, 0x746e6f72, - 0x72757411, 0x6873696b, 0x61876c2d, 0x61760527, 0x13746c75, 0x26ea8277, 0x67616d2d, 0x432d6369, 0x092307be, 0x82656877, 0x776123b1, 0x09820f6e, - 0x636c6523, 0x3f568268, 0x766f6d2d, 0x6f620965, 0x722d6c77, 0x0f656369, 0x73726570, 0x702d6e6f, 0x6e676572, 0x0d746e61, 0x200c7843, 0x230d860b, - 0x6b636172, 0x28441986, 0x63092306, 0x0c416e65, 0x0a2f0805, 0x73756c70, 0x6e696d2d, 0x73087375, 0x626c6961, 0x0774616f, 0x74636573, 0x066e6f69, - 0x69726873, 0x6213706d, 0x697a6172, 0x6e61696c, 0x4265722d, 0x6f4206bb, 0x05494406, 0x69640c2d, 0x61726761, 0x656e2d6d, 0x87137478, 0x2893820c, - 0x65636564, 0x726f7373, 0x22138711, 0x85637573, 0x650d3111, 0x68747261, 0x65636f2d, 0x61696e61, 0x67756209, 0x24057043, 0x6c696610, 0x073b4265, - 0x09299a83, 0x706f6873, 0x636f6c2d, 0x0697436b, 0x766f6328, 0x76116469, 0xb6827269, 0x38850b84, 0x6e611325, 0x426f6863, 0x63250876, 0x6b636568, - 0x46138d19, 0x2d8e0a3e, 0x8605a442, 0x206b832d, 0x09a34519, 0x70752d2f, 0x7263612d, 0x2d73736f, 0x656e696c, 0x83198d12, 0x8513202c, 0x69722d12, - 0x2d746867, 0x632d6f74, 0x1a797469, 0x2c0dfe43, 0x756f7267, 0x772d646e, 0x72657461, 0x841a8d18, 0x702d2413, 0x86706d75, 0x856f8247, 0x6f64234a, - 0x13857374, 0x642d7325, 0x836e776f, 0x4482835b, 0x1389055a, 0x85054045, 0x23a482b2, 0x2d746665, 0x2f838b88, 0x70840b20, 0x732d7325, 0x856e6970, - 0x220b837c, 0x8474696c, 0x209682da, 0x2032826c, 0x84248610, 0x637224bf, 0x890d656c, 0x8a888210, 0x7965230d, 0x1b871165, 0x6e727522, 0xa7876b85, - 0x11837420, 0x32824382, 0x25877320, 0x1182d082, 0x09398983, 0x65726f62, 0x6c6f682d, 0x6f620e65, 0x656c7474, 0x6f72642d, 0x74656c70, 0x240e860c, - 0x65746177, 0x05de4272, 0x6f6f6639, 0x6f620d64, 0x2d736578, 0x6b636170, 0x06676e69, 0x64697262, 0x85136567, 0x07244206, 0x8d05e941, 0x0be94113, - 0xe941198d, 0x24138605, 0x6b636f6c, 0x840b860c, 0x62062f79, 0x656b6375, 0x75620474, 0x621b7367, 0x5c476975, 0x44632005, 0xe54105c9, 0x8f15200a, - 0x9084841b, 0x90868a31, 0x20888431, 0x2347880d, 0x67616c66, 0x98850d89, 0x6e237f87, 0x880f6f67, 0x05fc4628, 0x0f880b20, 0x896e7521, 0x73752436, - 0x880e7265, 0x68773219, 0x05746165, 0x73727562, 0x61630674, 0x6e6f2d72, 0x2806830a, 0x6e6e7574, 0x630b6c65, 0x26dd8268, 0x6669722d, 0x8408656c, - 0x6572230b, 0xe9860c6e, 0x6f6e2508, 0x12736564, 0x70696c63, 0x72616f62, 0x75712d64, 0x69747365, 0x63136e6f, 0x64756f6c, 0x6f68732d, 0x73726577, - 0x3e05cd42, 0x6d6f6308, 0x65747570, 0x75630d72, 0x2d736562, 0x63617473, 0x1564656b, 0x65766e65, 0x43706f6c, 0x632b08cb, 0x6b636568, 0x70786509, - 0x82736f6c, 0x6605264a, 0x79727265, 0x0bed4317, 0x200a2d41, 0x25178b11, 0x756e696d, 0x118b1473, 0x0b208f87, 0x11411484, 0x69662406, 0x822d6572, - 0x656e39ed, 0x69660972, 0x662d6873, 0x0a736e69, 0x73616c66, 0x69762d6b, 0x670b6c61, 0xb4860a82, 0x0b8a1320, 0x25078242, 0x6f726713, 0x9c497075, - 0x47732005, 0x1120065f, 0x830c6449, 0x8309200c, 0x75632504, 0x0b736666, 0x25059d46, 0x6e756f62, 0x0b851364, 0x25078d49, 0x6c696863, 0x138e1464, - 0x6372692a, 0x6811656c, 0x74726165, 0x2407ba42, 0x746c6f62, 0x25118c12, 0x63656863, 0x128c186b, 0x8d0a1641, 0x696d242b, 0x8d73756e, 0x6c702350, - 0x248d7375, 0x616d7824, 0x24826b72, 0x63696c2b, 0x6574706f, 0x79732d72, 0x2a76826d, 0x6c656809, 0x2d74656d, 0x820e6e75, 0x2d6c27ab, 0x6c617661, - 0x7d826e61, 0x72280e85, 0x736b636f, 0x6564696c, 0x8407c849, 0x862d20bc, 0x05ec4a9d, 0x9d8c1285, 0x7884188b, 0x2306b247, 0x65726966, 0x6c230a87, - 0x46116761, 0x66230596, 0x456f6f6c, 0x24200612, 0x22411190, 0x0a744307, 0x6c204186, 0x1a209b82, 0xcc462f85, 0x0c094406, 0x1a942020, 0x3b95a68a, - 0xed86ae84, 0x66205687, 0x3647ab82, 0x73742b06, 0x6d616e75, 0x616a0369, 0x03820972, 0x68772d3b, 0x0e746165, 0x2d74656a, 0x68676966, 0x2d726574, - 0x6a0d7075, 0x642d6775, 0x3d0c8265, 0x746e6567, 0x74696b0b, 0x6e656863, 0x7465732d, 0x6e616c0c, 0x696d2d64, 0x6f2d656e, 0x0c830d6e, 0x72616d24, - 0x5f832d6b, 0x104b0b20, 0x23468205, 0x6c0d656c, 0x73292182, 0x61656c2d, 0x676e696e, 0x29e88211, 0x6f697461, 0x69702d6e, 0x0c822d6e, 0x82066b21, - 0x73752a04, 0x616d1c74, 0x66696e67, 0x20238279, 0x05c7422d, 0x200a2441, 0x251c9016, 0x72616863, 0x70821474, 0x832d7321, 0x65763085, 0x2d73756e, - 0x73727562, 0x616d0f74, 0x822d6b73, 0x69742610, 0x6f74616c, 0x250f8272, 0x65727474, 0x71827373, 0x6f6c6c31, 0x6f6d0c77, 0x656c6962, 0x7465722d, - 0x49136f72, 0x2d280920, 0x6e617274, 0x72656673, 0x6520138d, 0x7522e382, 0x278a1070, 0x6568772d, 0x6d087461, 0x7571736f, 0x826f7469, 0x2a08854e, - 0x74656e2d, 0x756f6d05, 0x830d646e, 0x61742105, 0x6323df82, 0x82797469, 0x6e752120, 0x732c0d84, 0x6f086e75, 0x772d6c69, 0x0c6c6c65, 0x2605de46, - 0x6f72672d, 0x860b7075, 0x696c240c, 0x860e656e, 0x7570220b, 0x200e826c, 0x260e8767, 0x62626f72, 0x87797265, 0x6f722429, 0x4919666f, 0xba470625, - 0x0690460a, 0x7520198d, 0x8206ac4b, 0x1465214e, 0x622d3386, 0x73616572, 0x65656674, 0x676e6964, 0x2314870c, 0x74737275, 0x72296182, 0x2d6e6f73, - 0x656e6163, 0x2a188611, 0x6c616863, 0x616f626b, 0x87136472, 0x0a3a4311, 0x66456d87, 0x0a944206, 0x6d252d8e, 0x73756e69, 0x24418d12, 0x73756c70, - 0x45128d16, 0x168d0897, 0x8605cb42, 0x72642313, 0xef417365, 0x22128807, 0x826e776f, 0x860e20cd, 0x6166230f, 0x0e826c6c, 0x0e86f187, 0x20052342, - 0x82238611, 0x2d6621d7, 0x10204b84, 0x72231188, 0x82737361, 0x86182037, 0x696d2d10, 0x6174696c, 0x702d7972, 0x746e696f, 0x15201882, 0x7224188f, - 0x656c6669, 0x88070441, 0x6f74222e, 0x4128852d, 0x72230750, 0x41737961, 0x32840769, 0x7327a887, 0x746c6568, 0x851e7265, 0x772d242e, 0x826b6c61, - 0x05b24566, 0x6f6c2d2a, 0x6c2d706f, 0x1a746665, 0x72251e94, 0x74686769, 0x211a8e26, 0x52826164, 0x822d6421, 0x07954ffd, 0x16202684, 0x6c27268e, - 0x61676775, 0x4b126567, 0xbd4105ed, 0x050c4506, 0xd041128c, 0x252b8d0a, 0x72616d78, 0x2b850a6b, 0x636f6c24, 0x0a820b6b, 0x44657421, 0x10210545, - 0x465e8270, 0x11200b11, 0x6584108b, 0x118b1720, 0x298c648a, 0x6e696d24, 0x4c8c7375, 0x73203582, 0x8684228c, 0x61720c3a, 0x6e696b6e, 0x74732d67, - 0x720c7261, 0x2d64616f, 0x72726162, 0x0b726569, 0x72250c85, 0x65676469, 0x8b0b8411, 0x8b1720ea, 0x8b848b11, 0x20618417, 0x84118409, 0x2e0984e7, - 0x6b697073, 0x72037365, 0x730a6775, 0x4e6b6361, 0x13260512, 0x6f686373, 0xbb456c6f, 0x8d19200c, 0x8e648a13, 0x2066842d, 0x232d860b, 0x67616c66, - 0x74830b87, 0x68730d2e, 0x2d746565, 0x73616c70, 0x0a636974, 0x23051e48, 0x7461632d, 0x64220a87, 0x4350676f, 0x65682307, 0x17827261, 0x6175712a, - 0x6e2d6572, 0x73166966, 0x00420a85, 0x6f632106, 0x6e231382, 0x860c6465, 0x69763516, 0x0b737572, 0x66617473, 0x6e732d66, 0x0e656b61, 0x2d6e7573, - 0x6e2c6982, 0x69772d74, 0x7404746c, 0x0c707261, 0x55480483, 0x74042507, 0x17746e65, 0xf6510483, 0x08c84b0a, 0x6c20178a, 0x2008b64b, 0x24158a14, - 0x6e727574, 0x201a832d, 0x26148910, 0x6f642d73, 0x83056e77, 0x0f732110, 0x2707d050, 0x6174726f, 0x10656c62, 0x73220f85, 0x1086702d, 0x6f740a2b, - 0x2d726577, 0x6c6c6563, 0x370a8511, 0x6573626f, 0x74617672, 0x096e6f69, 0x65657274, 0x7469632d, 0x72740679, 0x6c212782, 0x2706850d, 0x6972622d, - 0x11736b63, 0x4605b84e, 0x1f820a5d, 0x6b637522, 0x0b20db87, 0x66251f85, 0x646c6569, 0x220b8a0e, 0x866e752d, 0x6c70261a, 0x13656e61, 0x27708275, - 0x65622d73, 0x65657774, 0x6924cd82, 0x0a73656e, 0x6c201385, 0x0a860b82, 0x79617224, 0x15850f73, 0x63657226, 0x676e6174, 0x0f85cd82, 0x6569762d, - 0x6e696677, 0x11726564, 0x42616976, 0x0a200d32, 0x76271184, 0x73757269, 0x4f68771c, 0x5442062f, 0x0a404207, 0x6f77042a, 0x780c6d72, 0x6b72616d, - 0x2005c74d, 0x06014b73, 0x6572642e, 0x630e7373, 0x646c6968, 0x6165722d, 0x6e210882, 0x0c7e4a67, 0x65686324, 0x118c6b63, 0xdc444584, 0x68742607, - 0x67756f72, 0x06f45368, 0x0b420a20, 0x73072e09, 0x6c706174, 0x740a7265, 0x6e696172, 0x2105822d, 0x7e82136d, 0x6e697423, 0x06b64769, 0x706d652b, - 0x6d057974, 0x63697375, 0x0fb64710, 0xcb820520, 0x0474723b, 0x72617473, 0x65737504, 0x69660472, 0x74116d6c, 0x656c6261, 0x6c65632d, 0x24c4826c, - 0x65677261, 0x20118a0b, 0x240b850a, 0x7473696c, 0x20b48405, 0x8fa88505, 0x702d245a, 0x4873756c, 0x6d2f1127, 0x73756e69, 0x776f7009, 0x6f2d7265, - 0x54066666, 0x042705b8, 0x72616567, 0x826f6805, 0x63053083, 0x6b636f6c, 0x616f7204, 0x6f640864, 0x826c6e77, 0x69052608, 0x786f626e, 0x06224212, - 0x61746f24, 0x0f4e6574, 0x072f4e05, 0x2005a752, 0x08d2410e, 0x9e832d20, 0x48840420, 0x616c6624, 0xe6820a67, 0x6870642d, 0x73656e6f, 0x6c6f760a, - 0x83656d75, 0x230a877b, 0x0b776f6c, 0x682d1586, 0x06686769, 0x6f637271, 0x62076564, 0x24078461, 0x67617403, 0x26038204, 0x6f620473, 0x53086b6f, - 0x05260721, 0x6e697270, 0x27530674, 0x66042405, 0x82746e6f, 0x646c301f, 0x61746906, 0x0b63696c, 0x74786574, 0x8265682d, 0x0a74214e, 0x77250b84, - 0x68746469, 0x201b820a, 0x05694367, 0x0a850c20, 0x6e656326, 0x0b726574, 0x72200c85, 0x0d202e83, 0x6a270b85, 0x69747375, 0x83047966, 0x6f0724c8, - 0x82647475, 0x69062228, 0x2c06836e, 0x64697605, 0x69056f65, 0x6567616d, 0x0bbe490c, 0x48451220, 0x61682b06, 0x732d666c, 0x6b6f7274, 0xf94e0765, - 0x700d2706, 0x742d6e65, 0x61442d6f, 0x07c44f05, 0x2d707525, 0x85776f64, 0x06504190, 0x63616227, 0x7261776b, 0x223f8264, 0x880d7065, 0x6166240d, - 0x87087473, 0x7004330d, 0x0579616c, 0x73756170, 0x74730465, 0x6607706f, 0x3383726f, 0x07860c20, 0x2d832d20, 0x73300c88, 0x05706574, 0x63656a65, - 0x68630c74, 0x6f727665, 0x0d206f85, 0xf5840c87, 0xba860b20, 0x756c7023, 0x071f4e73, 0x6e696d22, 0x78240c89, 0x6b72616d, 0x3a821987, 0x0f6b6322, - 0xa64d3286, 0x330f8608, 0x6f666e69, 0x6f72630a, 0x61687373, 0x03737269, 0x0a6e6162, 0x23053942, 0x7466656c, 0x8505a550, 0x850820ec, 0x70752116, - 0x64241f86, 0x056e776f, 0x72323582, 0x78650665, 0x646e6170, 0x6d6f6308, 0x73657270, 0x8b840573, 0x43075f41, 0x67320bf0, 0x04746669, 0x6661656c, - 0x72696604, 0x79650365, 0x03820965, 0x29052c52, 0x69727414, 0x6c676e61, 0x318a2d65, 0x6c70053c, 0x0d656e61, 0x656c6163, 0x7261646e, 0x7961642d, - 0x68730773, 0x6c666675, 0x6f820765, 0x6e656d2b, 0x616d0674, 0x74656e67, 0x0722410a, 0x41707521, 0xa383083a, 0x65720727, 0x65657774, 0x2b448274, - 0x732d7472, 0x70706f68, 0x06676e69, 0x2005f154, 0x2306850b, 0x65706f2d, 0x21062c56, 0xe7412d73, 0x07295106, 0x23090446, 0x61686309, 0x62234282, - 0x420c7261, 0x854b05c9, 0x6b032a05, 0x67057965, 0x73726165, 0x23918608, 0x74730973, 0x6823ac82, 0x51666c61, 0x414105db, 0x0c755605, 0x68740929, - 0x74626d75, 0x526b6361, 0x72240996, 0x74686769, 0x7a422585, 0x52162005, 0x62200ec5, 0x3905b156, 0x6f727406, 0x06796870, 0x6f6c7075, 0x6c056461, - 0x6e6f6d65, 0x6f687005, 0x1447656e, 0x370c8407, 0x6c6e7506, 0x0b6b636f, 0x64657263, 0x632d7469, 0x03647261, 0x0a737372, 0x2008c582, 0x72642d64, - 0x08657669, 0x6c6c7562, 0x6e726f68, 0x7265630b, 0x69666974, 0x65746163, 0x6e616810, 0x05304a64, 0x0f20b785, 0x6c24108a, 0x0d746665, 0x75210f8a, - 0x241d8b70, 0x6e776f64, 0x0c9a5111, 0x09422f83, 0x42cc8a07, 0x1285078e, 0x8d707521, 0x30468334, 0x6f6c6705, 0x77066562, 0x636e6572, 0x696c0a68, - 0x24c08273, 0x6b636568, 0x05ca5606, 0x7262092a, 0x63666569, 0x12657361, 0x3d119743, 0x65737505, 0x6c047372, 0x056b6e69, 0x756f6c63, 0x6c660564, - 0x086b7361, 0x73696373, 0x19826f73, 0x706f633a, 0x61700979, 0x63726570, 0x0b70696c, 0x706f6c66, 0x642d7970, 0x066b7369, 0x25057841, 0x72616204, - 0x75840773, 0x856c7521, 0x6c6f2807, 0x7274730d, 0x46656b69, 0x0925065d, 0x65646e75, 0x27638272, 0x61740565, 0x0a656c62, 0x26092e56, 0x75727405, - 0x4d0a6b63, 0x0a2b0975, 0x65726163, 0x6f642d74, 0x85086e77, 0x7075210a, 0x6c241386, 0x0b746665, 0x72251385, 0x74686769, 0x584c840d, 0x73210634, - 0x21ae8204, 0x04830974, 0x07203c84, 0x75220984, 0xc9510870, 0x05a44207, 0x20061951, 0x084b832d, 0x61670523, 0x046c6576, 0x746c6f62, 0x74697307, - 0x70616d65, 0x626d7508, 0x6c6c6572, 0x61700561, 0x09657473, 0x2367836c, 0x626c7562, 0x430c5e42, 0x102509f5, 0x756f6c63, 0x0a1b4964, 0x108b0e20, - 0x0b707526, 0x72657375, 0x63248f82, 0x0b726f74, 0x74325082, 0x63736f68, 0x0865706f, 0x74697573, 0x65736163, 0x6d826204, 0x756d0a2b, 0x61732d67, - 0x72656375, 0x2a208208, 0x61746970, 0x72740d6c, 0x5a6b6375, 0x1020073e, 0x10872f87, 0xbc4f0b20, 0x620e220a, 0x83648265, 0x6d652543, 0x08797470, - 0x22059741, 0x860b682d, 0x6c702a08, 0x610b7375, 0x656c676e, 0x20f78473, 0x200b860c, 0x20dc8372, 0x820c8609, 0x240986ab, 0x6e776f64, 0x840b840a, - 0x4239852d, 0x082005de, 0x75211685, 0x831f8670, 0x5006202a, 0x8c410502, 0x2d742805, 0x74747562, 0x4f0d6e6f, 0x0d85067b, 0x75710a25, 0x8565746f, - 0x840a854d, 0x7307287a, 0x6e6e6970, 0x43067265, 0x0a2a0506, 0x65636166, 0x696d732d, 0x0a85656c, 0x82726621, 0x84082089, 0x656d3815, 0x61670768, - 0x6170656d, 0x656b0864, 0x616f6279, 0x660e6472, 0x5167616c, 0x653c05d4, 0x08646572, 0x6d726574, 0x6c616e69, 0x646f6304, 0x65720965, 0x2d796c70, - 0x0e6c6c61, 0x2108c946, 0x50827261, 0x72630425, 0x830b706f, 0x622d2322, 0x30436172, 0x6b6e2105, 0x34055745, 0x666e6904, 0x75730b6f, 0x73726570, - 0x70697263, 0x75730974, 0x36098562, 0x61726506, 0x0c726573, 0x7a7a7570, 0x702d656c, 0x65636569, 0x83696d0a, 0x6f68244c, 0x8910656e, 0x204a850a, - 0x05b74b06, 0x8e450820, 0x66112f07, 0x2d657269, 0x69747865, 0x6975676e, 0xf5826873, 0x636f7226, 0x1374656b, 0x4609a44c, 0x142008c2, 0x7224138e, - 0x74686769, 0x4507f743, 0x3a8f09bb, 0x776f6424, 0x0558066e, 0x440e2005, 0x2d2605cf, 0x6879656b, 0xbc446c6f, 0x65732d05, 0x65086579, 0x70696c6c, - 0x11736973, 0x2d250887, 0x74726576, 0x20a68269, 0x062d420a, 0x73737222, 0x22093447, 0x82067961, 0x45a6821c, 0x6d24072d, 0x73756e69, 0x2d051d49, - 0x7275742d, 0x70752d6e, 0x7272610f, 0x0d85776f, 0x2a878283, 0x6321a882, 0x2355876b, 0x156e6570, 0x2e856086, 0x25072658, 0x61687311, 0xc9456572, - 0x6307280b, 0x61706d6f, 0x86117373, 0x0910442f, 0x118c0f20, 0x12707522, 0x72270f8c, 0x74686769, 0x5b756509, 0x0d2606e3, 0x72657473, 0xdf5b696c, - 0x5b0a2006, 0x79210a6b, 0x05135c65, 0x62211382, 0x067f5b6c, 0x856f7721, 0x66042513, 0x0a656c69, 0x2d200483, 0x65213b82, 0x06165d73, 0x2d24d783, - 0x0c7a2d61, 0x0c82bc88, 0x0c851520, 0x77221b84, 0x49826469, 0x726f6823, 0x054a5874, 0xdf822d20, 0x458b1389, 0x392d3122, 0x0c824589, 0x2005dd46, - 0x25308273, 0x7568740b, 0x1f4d626d, 0x06544105, 0x6c235b84, 0x41676e6f, 0x55820672, 0x1d860d83, 0x66656c24, 0x0f832d74, 0x2f461020, 0x2010840a, - 0x082b510c, 0x73736523, 0x380c8506, 0x6e757303, 0x6f6f6d04, 0x6f620b6e, 0x72612d78, 0x76696863, 0x75620365, 0x0d684167, 0x0a205483, 0x23068042, - 0x0a746f64, 0x2009bc5b, 0x08f55b09, 0x68730d26, 0x6c747475, 0x7023f182, 0x41656361, 0x69450796, 0x57102007, 0x230808c3, 0x756c6f63, 0x0e736e6d, - 0x64617267, 0x69746175, 0x632d6e6f, 0x6c087061, 0x75676e61, 0x03656761, 0x08786166, 0x05202c87, 0x6c2b8f82, 0x61700364, 0x75630477, 0x83056562, - 0x73220804, 0x63657207, 0x656c6379, 0x72616303, 0x78617404, 0x72740469, 0x64086565, 0x62617461, 0x08657361, 0x84826966, 0x66647023, 0x23088409, - 0x64726f77, 0x2505bb41, 0x65637865, 0x14840f6c, 0x776f7029, 0x6f707265, 0x85746e69, 0x6d69211a, 0x0b207982, 0x7a251a84, 0x65707069, 0x24168572, - 0x69647561, 0x240a856f, 0x65646976, 0x2351856f, 0x65646f63, 0x6626f682, 0x69722d65, 0x6058676e, 0x63742509, 0x61700b68, 0x2d213c82, 0x26cc8270, - 0x6c631165, 0x466b636f, 0x07240b5b, 0x64616568, 0x092c3282, 0x61726170, 0x70617267, 0x6c730768, 0x72225782, 0xf0420b73, 0x826e2005, 0x42732059, - 0x128a07c0, 0x62042408, 0x06626d6f, 0x62747566, 0x74036c6f, 0x620a7974, 0x636f6e69, 0x72616c75, 0x6c700473, 0x6e096775, 0x84737765, 0x7704287a, - 0x0a696669, 0x836c6163, 0x6f74271d, 0x65620a72, 0x7d446c6c, 0x74052805, 0x68736172, 0x706f6309, 0x0b270638, 0x2d657965, 0x846f7264, 0x617037ee, - 0x62746e69, 0x68737572, 0x6b61630c, 0x61632d65, 0x656c646e, 0xb2490a73, 0x72612305, 0xbd496165, 0x69702206, 0x2f148665, 0x656e696c, 0x676f740a, - 0x2d656c67, 0x0966666f, 0x6e230a87, 0x41696207, 0x6229059f, 0x63117375, 0x65736f6c, 0x244f8264, 0x6f697470, 0x82fc826e, 0x6b6522ea, 0x062d6065, - 0x72616324, 0xc1822d74, 0x840f7321, 0x093b4309, 0x6964072b, 0x6e6f6d61, 0x68730464, 0x06304769, 0x63657328, 0x0a746572, 0xd6826f6d, 0x0b2e5f84, - 0x65727473, 0x762d7465, 0x0b776569, 0x4a846568, 0x736c7537, 0x65760565, 0x0473756e, 0x7372616d, 0x72656d07, 0x79727563, 0x0d2b560e, 0x72740b2c, - 0x67736e61, 0x65646e65, 0x2d840c72, 0x6f642d27, 0x656c6275, 0x8527840b, 0x850a200b, 0x85118318, 0x05e44c16, 0x0b854a85, 0x70752d23, 0x86318411, - 0x69722c0e, 0x06746867, 0x7475656e, 0x850a7265, 0x656c2c5e, 0x73067373, 0x65767265, 0x82750972, 0x20ed8407, 0x2009840a, 0x253a8278, 0x6562036b, - 0x8e820564, 0x0c6e6922, 0x2d340584, 0x77627573, 0x620c7961, 0x65747461, 0x662d7972, 0x166c6c75, 0x74210c87, 0x22f08268, 0x8275712d, 0x726522ea, - 0x24238873, 0x666c6168, 0x8623870f, 0x870d201d, 0x6d65240f, 0x44797470, 0x70230629, 0x826e696f, 0x69082f55, 0x7275632d, 0x0c726f73, 0x656a626f, - 0x87567463, 0x860e2005, 0x6e75210c, 0x08059656, 0x746f6e29, 0x74732d65, 0x796b6369, 0x6f6c6305, 0x730e656e, 0x656c6163, 0x6c61622d, 0x65636e61, - 0x6f680f64, 0x6c677275, 0x82737361, 0x72612325, 0x0f890e74, 0x0d209083, 0x65230e89, 0x8809646e, 0x680e240d, 0x82646e61, 0x6b632744, 0x7369662d, - 0x0e830474, 0x4a05114b, 0x0b20075e, 0x6c262184, 0x72617a69, 0x0b840a64, 0x6f707325, 0x840c6b63, 0x85c2860a, 0x65703217, 0x09656361, 0x64617274, - 0x72616d65, 0x65720a6b, 0x26528267, 0x64657265, 0x4c767402, 0x702409f5, 0x0e73756c, 0x2208034d, 0x8b6e696d, 0x8378200e, 0x081d8939, 0x65686321, - 0x69086b63, 0x7375646e, 0x07797274, 0x2d70616d, 0x0a6e6970, 0x6e676973, 0x6f702d73, 0x82037473, 0x6d072712, 0x61737365, 0xfb436567, 0x61702407, - 0x47657375, 0x73270720, 0x0c706f74, 0x4d676162, 0x0f25082b, 0x6b736162, 0x093b4d65, 0x6e75102d, 0x72657669, 0x2d6c6173, 0x82636361, 0x55182049, - 0x77310e9b, 0x2d687469, 0x656e6163, 0x64756111, 0x642d6f69, 0x056f4865, 0x6e6f6929, 0x6f68700c, 0x502d656e, 0x072d0541, 0x69617262, 0x0a656c6c, - 0x2d726165, 0x38f9836c, 0x6168166e, 0x2d73646e, 0x2d6c7361, 0x65746e69, 0x65727072, 0x676e6974, 0x24218308, 0x66616564, 0x2b1f8405, 0x6579650e, - 0x776f6c2d, 0x7369762d, 0x662c5483, 0x2d746e6f, 0x73657761, 0x09656d6f, 0x68242184, 0x0d656b61, 0x2807bb45, 0x65706f2d, 0x64610c6e, 0x05775764, - 0x6b6f6f22, 0x63230c88, 0x87647261, 0x73752df8, 0x69087265, 0x61622d64, 0x07656764, 0x1c830882, 0x0e661020, 0x7566240b, 0x8b1a6c6c, 0x0dd04210, - 0x68242b8c, 0x13666c61, 0xd8422b8b, 0x8b112006, 0x6d652513, 0x06797470, 0x2d05bc5d, 0x74616204, 0x6f700768, 0x73616364, 0xb0660f74, 0x6d2d2805, - 0x6d697861, 0x88657a69, 0x6e69210f, 0x0e200f84, 0xd1821f86, 0x726f7422, 0x0808f74d, 0x616d7829, 0x6d096b72, 0x6f726369, 0x70696863, 0x6f6e7309, - 0x616c6677, 0x7305656b, 0x6e6f6f70, 0x65747508, 0x6c69736e, 0x52720b73, 0x6c2e0517, 0x09746665, 0x73617274, 0x61632d68, 0x1585066e, 0x7473092a, - 0x6177706f, 0x12686374, 0x4e0a914e, 0x1020067b, 0x8608c660, 0x850c2010, 0x054b4b34, 0x65820320, 0x6d69062e, 0x73656761, 0x6e657006, 0x036c6963, - 0x08200682, 0x2d220382, 0x8f826c63, 0x2008fa47, 0x08e64709, 0x50850a20, 0x6e6f6c24, 0x09480767, 0x06014706, 0x086e6522, 0x0920fe87, 0x2008f85e, - 0x098f4f0a, 0x50832e83, 0x8b07bf41, 0x4225830b, 0x608407dd, 0xfd470920, 0x70752206, 0x07a54914, 0x470b9f49, 0x1b8707ee, 0x65299587, 0x72067466, - 0x61657065, 0x055e4b74, 0x6f632108, 0x74696d6d, 0x646f630a, 0x656d2d65, 0x07656772, 0x6b736564, 0x03706f74, 0x096d6567, 0x6e727574, 0x8405a84d, - 0x70752609, 0x636f6c09, 0x057e426b, 0x2208b14b, 0x4b746f64, 0x6c250b59, 0x73656e69, 0x065a4c14, 0x72637325, 0x4c6e6565, 0x0620066f, 0x764c1485, - 0x201b8507, 0x09554e0c, 0x0b312d22, 0x67054d43, 0x290805fe, 0x67616d69, 0x6f702d65, 0x61727472, 0x72057469, 0x796c7065, 0x6968730d, 0x2d646c65, - 0x766c6168, 0x74146465, 0x656c6261, 0x658d2d74, 0x0d201485, 0x6805124b, 0xe0450687, 0x616c2105, 0x0f20e082, 0x25092754, 0x72616d78, 0x0453206b, - 0x6e612309, 0x4c412d64, 0x6f742908, 0x6e65632d, 0x22726574, 0x1f831288, 0x66232d89, 0x866d6f72, 0x62112c22, 0x62657361, 0x2d6c6c61, 0x82746162, - 0x6c6c2203, 0x20118708, 0x056c440a, 0x0c271c83, 0x6c776f62, 0x84676e69, 0x63052620, 0x73736568, 0x2705840c, 0x7369622d, 0x0b706f68, 0x6f240c86, - 0x0a647261, 0x6b200b85, 0x23862e82, 0x696e6b25, 0x86746867, 0x61702317, 0x2e866e77, 0x65757124, 0x16866e65, 0x6f6f722a, 0x7564086b, 0x6562626d, - 0x66238282, 0x83746f6f, 0x670d2477, 0x84666c6f, 0x742d3174, 0x680b6565, 0x656b636f, 0x75702d79, 0x620a6b63, 0x6d203182, 0x874e1a84, 0x75662907, - 0x74186c6c, 0x656c6261, 0x6e282c82, 0x2d73696e, 0x64646170, 0x27056646, 0x6f760a6c, 0x79656c6c, 0x09215483, 0x050d4168, 0x07737423, 0x26098262, - 0x03656761, 0x63786f62, 0x7320064c, 0x2005a061, 0x08d45011, 0x2907114f, 0x72696611, 0x6c662d65, 0x216a6d61, 0x63082907, 0x75737061, 0x0f73656c, - 0x4e081243, 0x0e20052e, 0x6c230f89, 0x57747369, 0x6423070b, 0x4273746f, 0x6c2905e8, 0x03656e69, 0x05616e64, 0x25948264, 0x61630c79, 0x59837472, - 0x65627426, 0x69660c64, 0x635fb182, 0x840d2006, 0x61772b0c, 0x6f666576, 0x6b0b6d72, 0x8d877469, 0x43430820, 0x0c682106, 0x20061c45, 0x2573832d, - 0x746f6e0d, 0x23877365, 0x61700622, 0x7429f282, 0x6c697005, 0x7013736c, 0x09fa4572, 0x4f642d20, 0x921b2005, 0x203c8713, 0x268b8209, 0x6c75702d, - 0x500a6573, 0x662f0529, 0x07747361, 0x6b6f6d73, 0x07676e69, 0x82727973, 0x07653a06, 0x6c626174, 0x0b737465, 0x72656874, 0x656d6f6d, 0x04726574, - 0x6c616976, 0x08048305, 0x77097321, 0x68657261, 0x6573756f, 0x6965770c, 0x2d746867, 0x6c616373, 0x2d780565, 0x08796172, 0x43786f62, 0x632c058e, - 0x656d6d6f, 0x642d746e, 0x0d73746f, 0x732b0c87, 0x6873616c, 0x756f6305, 0x4c156863, 0x6c30082d, 0x2d72616c, 0x732d6f74, 0x04746f6c, 0x65766f64, - 0x6205c847, 0x12200658, 0x240d8e62, 0x74726165, 0x21128c13, 0x40836f64, 0x560d1a6c, 0x8e620767, 0x0af56b0c, 0x676e6123, 0x0587536c, 0x1c6c7320, - 0x700d2a0a, 0x63617261, 0x65747568, 0x20c6822d, 0x066a5f10, 0x72616324, 0x10837972, 0x69700a24, 0x09826767, 0x6b6e612c, 0x62697206, 0x056e6f62, - 0x2c826f72, 0x6573082e, 0x696c6465, 0x730c676e, 0x2d6e6769, 0x67207382, 0x0f200c82, 0x29099850, 0x6e69772d, 0x6174046b, 0x315a6570, 0x61722306, - 0x5183706d, 0x84410c20, 0x6f6d2205, 0x25308276, 0x6469760b, 0x8a4b6f65, 0x820a2005, 0x2d653031, 0x73616c67, 0x73751073, 0x6c2d7265, 0x6b677261, - 0x0e2006cf, 0x61281084, 0x6f727473, 0x7475616e, 0x24054944, 0x63656863, 0x240a866b, 0x6b636f6c, 0x24248409, 0x72616567, 0x22098408, 0x856e6570, - 0x8267201d, 0x0d7021b2, 0x5f4d1384, 0x85652006, 0x8535832b, 0x696d2322, 0xac5a756e, 0x6e2d2605, 0x616a6e69, 0x442d840b, 0x218505e8, 0x98827320, - 0x58856820, 0x67617422, 0x69210886, 0x211c8465, 0x75832d73, 0x63731028, 0x2d656c61, 0x0c4a6e75, 0x8f152007, 0x662d3010, 0x0770696c, 0x6e656c62, - 0x09726564, 0x456f6f62, 0x0f2005c6, 0x2505b05b, 0x616f7262, 0xe4826364, 0x09820520, 0x0a6d6f22, 0x20096360, 0x200a890f, 0x3f98832d, 0x75686306, - 0x05686372, 0x6e696f63, 0x6f630c73, 0x6361706d, 0x69642d74, 0x63046373, 0x05776f72, 0x6e260483, 0x63696404, 0x04830965, 0x69662d23, 0x23098776, - 0x0872756f, 0x6f221384, 0x0885656e, 0x78697323, 0x2311840a, 0x65726874, 0x742f1386, 0x64066f77, 0x64697669, 0x6f640b65, 0x4c2d726f, 0x092005b0, - 0x22080b84, 0x6e65706f, 0x61656607, 0x72656874, 0x6f726604, 0x61670867, 0x75702d73, 0x6707706d, 0x7373616c, 0x6f127365, 0x2d280b7a, 0x61757165, - 0x65680a6c, 0x33079964, 0x666e6908, 0x74696e69, 0x696b0979, 0x622d6977, 0x0f647269, 0x8508bc6f, 0x6d06272d, 0x726f6d65, 0x2b521679, 0x696c230a, - 0xbd6d656e, 0x460f2006, 0x77240aad, 0x11657661, 0x31210f8a, 0x6b11832d, 0x632506e4, 0x6b636568, 0x841d8512, 0x432d200b, 0x09230537, 0x85746f6e, - 0x70072868, 0x74656c61, 0x510e6574, 0x7027061f, 0x696b7261, 0x6a0f676e, 0x703307c6, 0x656a6f72, 0x72077463, 0x69656365, 0x72057470, 0x826f626f, - 0x6c752505, 0x720e7265, 0x2d240583, 0x626d6f63, 0x64219a82, 0x290e8510, 0x69726f68, 0x746e6f7a, 0x1f866c61, 0x34527620, 0x73062f06, 0x6f6f6863, - 0x63730b6c, 0x64776572, 0x17826972, 0x68730b36, 0x702d656f, 0x746e6972, 0x6b730573, 0x0b6c6c75, 0x2d6e6162, 0x26069944, 0x6f747305, 0x82046572, - 0x0e702423, 0x82726162, 0x617435fb, 0x72656767, 0x730b6465, 0x6f6f7274, 0x66617770, 0x74076c65, 0x62295482, 0x7305786f, 0x74726968, 0x0d334b0e, - 0x61770626, 0x74656c6c, 0x08052354, 0x676e6120, 0x61077972, 0x77686372, 0x620a7961, 0x2d6b6f6f, 0x616c7461, 0x77610573, 0x0b647261, 0x29826564, - 0x3a057954, 0x7a65620c, 0x2d726569, 0x76727563, 0x6f620465, 0x6205676e, 0x68737572, 0x8275620a, 0x6d692e85, 0x08656c70, 0x6e6e6163, 0x73696261, - 0x0757410c, 0x6c627524, 0xf65c1465, 0x6963220d, 0x29368274, 0x6c65620e, 0x6f632d6c, 0x5382636e, 0x06656729, 0x6b6f6f63, 0x850b6569, 0x622d2306, - 0x0b827469, 0x706f7222, 0x32062348, 0x63617412, 0x72676f68, 0x2d687061, 0x69676964, 0x856c6174, 0x696426be, 0x10797a7a, 0x05f05263, 0x72642d2e, - 0x69746661, 0x6404676e, 0x0d6d7572, 0x2d290483, 0x65657473, 0x6e61706c, 0x069a420f, 0x21056c58, 0x79466465, 0x6f632705, 0x6172746e, 0xe9507463, - 0x09524f05, 0x2505de50, 0x6f707865, 0x0b857472, 0x0b82df82, 0x2c05bc46, 0x6f766e69, 0x13656369, 0x656c6966, 0x420c862d, 0x285e0643, 0x0b764605, - 0x25840e20, 0x67697328, 0x7574616e, 0x77856572, 0x75226985, 0x1c820470, 0x83096c21, 0x23bb8204, 0x660b7069, 0x6526bc82, 0x69727072, 0x1a82746e, - 0x0c68732e, 0x65636166, 0x756c662d, 0x64656873, 0x2a054645, 0x776f7266, 0x706f2d6e, 0x410d6e65, 0x0c2d0c57, 0x74726165, 0x66612d68, 0x61636972, - 0x210c860e, 0x0d83656d, 0x860a7321, 0x6973220e, 0x23518561, 0x6d697267, 0x09205982, 0x0c825e84, 0x880e6e21, 0x772d2409, 0x8a656469, 0x6562240e, - 0x89146d61, 0x260e831d, 0x6577732d, 0x89107461, 0x83682014, 0x8a73205f, 0x71732210, 0x20c28275, 0x85218916, 0x742d2110, 0x73202882, 0x7583c785, - 0x74732d24, 0x0f8b7261, 0x478a1f84, 0x6e6f7426, 0x17657567, 0x10854789, 0x4e852d20, 0x17901520, 0x6e697723, 0x22ca8c6b, 0x82046b6e, 0x0d702168, - 0xa9550483, 0x5e112008, 0x5f420975, 0x83072006, 0x65732811, 0x69680b74, 0x676c6867, 0x0e2705d2, 0x2d746f68, 0x64627574, 0x0520069d, 0x65240e82, - 0x6f6a056c, 0x3741d882, 0x696b2305, 0x6c857373, 0x2d200983, 0x84092841, 0x208a830e, 0x2056822d, 0x06684372, 0x75616c24, 0xfa856867, 0x2f840a84, - 0xc1841120, 0xd3850f85, 0x4283218b, 0x3b491520, 0x732d210b, 0x2d06f558, 0x70616d0c, 0x636f6c2d, 0x6f697461, 0x0c8b106e, 0x6f642d30, 0x616d0674, - 0x72656b72, 0x64656d05, 0xa1856c61, 0x68656d28, 0x616c622d, 0x71856b6e, 0x6c6f723b, 0x676e696c, 0x6579652d, 0x6f6d0873, 0x656d756e, 0x6d0d746e, - 0x6174726f, 0x26ef8272, 0x656c7473, 0x8261700c, 0x832d20e9, 0x72652729, 0x73617008, 0x1e827073, 0x6570092a, 0x61662d6e, 0x0779636e, 0x6e220983, - 0x11846269, 0x6c757226, 0x700d7265, 0x65296082, 0x7272612d, 0x6c617669, 0x270d850f, 0x61706564, 0x72757472, 0x9f494f82, 0x0585420a, 0x6461732c, - 0x7972632d, 0x6361660d, 0x0c832d65, 0x61657428, 0x61760b72, 0x1e552d6e, 0x43092006, 0x42480836, 0x6562270b, 0x730b6d61, 0xaa836c6f, 0x6e612008, - 0x73036c65, 0x73076170, 0x746f6c70, 0x73096863, 0x79617270, 0x6e61632d, 0x61747305, 0x5d10706d, 0x775f081d, 0x09085a06, 0x86060341, 0x72752a7d, - 0x73697270, 0x77730a65, 0x24468261, 0x6b6f6f62, 0x0635450f, 0x69777328, 0x6e696d6d, 0x19820c67, 0x2d726526, 0x6464616c, 0x5649eb82, 0x06a34806, - 0x742bc184, 0x64657269, 0x6f6f7405, 0x5b0e6874, 0x2d200706, 0x6328ac82, 0x65760d68, 0x726f7463, 0x2006e45f, 0x062b4a0e, 0x20061d49, 0x09e04810, - 0x6d652d26, 0x12797470, 0x2d20c388, 0x36070b72, 0x7070610b, 0x772d656c, 0x656c6f68, 0x6f746104, 0x6f62046d, 0x4810656e, 0x2d23082a, 0x82616572, - 0x62052995, 0x6e696172, 0x72616308, 0x72211083, 0x5208830b, 0x092006db, 0x75230b84, 0x84747372, 0x6973291e, 0x63106564, 0x67726168, 0x2d28d982, - 0x74617473, 0x126e6f69, 0x21064854, 0xd76f742d, 0x640c2c08, 0x2d776172, 0x796c6f70, 0x6a6e6f67, 0x632307ac, 0x8265646f, 0x6579220b, 0x050d5372, - 0x89421320, 0x5f2d2007, 0x052509dd, 0x676e756c, 0x05e15973, 0x6f637339, 0x6f076570, 0x632d6c69, 0x70046e61, 0x06706f6f, 0x70616873, 0x820c7365, - 0x2d722f78, 0x6c2d666f, 0x05656669, 0x67756167, 0x05840a65, 0x69682d25, 0x850c6867, 0x0563720a, 0x0c8b1120, 0x05261e84, 0x74656574, 0x05840a68, - 0x32070f45, 0x2d736b73, 0x61656874, 0x0d726574, 0x66617274, 0x82636966, 0x6867225b, 0x270d8274, 0x2d6b6375, 0x736e6f6d, 0x0c201b82, 0x26056c4a, - 0x6b636970, 0x4e0c7075, 0x61260974, 0x6e610464, 0x0647686b, 0x69622c05, 0x0d656c62, 0x69737562, 0x8273656e, 0x6d692856, 0x69630465, 0x4b0e7974, - 0x6c2409ce, 0x0f72616c, 0x73200e86, 0x33060146, 0x6f726305, 0x640c7373, 0x6d726168, 0x61686361, 0x1261726b, 0x260c1c52, 0x7865742d, 0x75660c74, - 0x6d250505, 0x73756e69, 0x240c860b, 0x73756c70, 0x05735e14, 0x124c2d20, 0x073a080c, 0x75706f67, 0x056d6172, 0x736d6168, 0x61620561, 0x04696168, - 0x6964656a, 0x6f6f6213, 0x6f6a2d6b, 0x616e7275, 0x68772d6c, 0x736c6c69, 0x61616b05, 0x6b066162, 0x646e6168, 0x6d6c0861, 0x870e2007, 0x73210883, - 0x6c75622d, 0x656d076b, 0x61726f6e, 0x6f6d0668, 0x65757173, 0x186d6f02, 0x67617073, 0x74746568, 0x07254169, 0x6c662d2f, 0x676e6979, 0x61657005, - 0x70106563, 0x2b05826c, 0x2d666f2d, 0x73726f77, 0x14706968, 0x61273782, 0x702d6572, 0x456c6c6f, 0x3f670859, 0x48148308, 0x4a430af4, 0x72702206, - 0x20518361, 0x058b4c0d, 0x6d410d86, 0x82712005, 0x176e22df, 0x0fda6c6d, 0x20059949, 0x42179019, 0x05250771, 0x6b636f73, 0x3f8b8773, 0x746f6f72, - 0x7261762d, 0x6c626169, 0x74731165, 0x612d7261, 0x632d646e, 0x63736572, 0x0d746e65, 0xc2821184, 0x76616432, 0x73096469, 0x67616e79, 0x6575676f, - 0x7263730c, 0x7425b083, 0x6861726f, 0x2e05820a, 0x672d6969, 0x06657461, 0x61686976, 0x540c6172, 0xb7680541, 0x82082005, 0x792d25c0, 0x0d676e61, - 0x2506af4b, 0x6f68702d, 0xc485656e, 0x6b732508, 0x0a6c6c75, 0x706d6163, 0x756f7267, 0x6303646e, 0x63057461, 0x72696168, 0x6f6c630a, 0x6d2d6475, - 0x096e6f6f, 0x73260a85, 0x63036e75, 0x6c4b776f, 0x32643105, 0x69640730, 0x642d6563, 0x6f640336, 0x72640667, 0x6e379982, 0x7572640e, 0x6974736d, - 0x622d6b63, 0x07657469, 0x676e7564, 0x526e6f65, 0x632205b2, 0xe74f7673, 0x69663705, 0x67057473, 0x74736f68, 0x6d616806, 0x0872656d, 0x756e6168, - 0xca82696b, 0x7461682a, 0x7a69772d, 0x0d647261, 0x33068141, 0x696b6968, 0x6805676e, 0x6f707069, 0x726f6805, 0x68136573, 0x370cbc7a, 0x63617263, - 0x72680c6b, 0x696e7679, 0x69732d61, 0x6d046e67, 0x086b7361, 0x2707a96d, 0x74656e0d, 0x6b726f77, 0x722a5782, 0x6f056465, 0x72657474, 0x4d6c7204, - 0x7572230a, 0x0e826e6e, 0x53410620, 0x73102505, 0x6c6c756b, 0x33051744, 0x656e6f62, 0x6c730573, 0x06687361, 0x64697073, 0x740c7265, 0x210a8f79, - 0x7a827407, 0x726f742c, 0x6573750c, 0x6e692d72, 0x6082756a, 0x72760c24, 0xbf82632d, 0x826f6221, 0x770d2404, 0x45646e61, 0x04250813, 0x646e6977, - 0x2004820b, 0x06ed4f65, 0x28063a60, 0x7461656d, 0x6c6c6162, 0x0972410f, 0x61722d24, 0x82416e69, 0x720a8306, 0x68240ec8, 0x79766165, 0x73223d86, - 0x2d846e75, 0x6564083b, 0x72636f6d, 0x66087461, 0x2d67616c, 0x09617375, 0x72727568, 0x6e616369, 0x09c26f65, 0x6d6f6428, 0x656d0665, 0xb6826574, - 0x2f066141, 0x746f6f62, 0x6f700968, 0x74732d6f, 0x076d726f, 0x62296f83, 0x720a776f, 0x62757065, 0x243f836c, 0x6f6d7304, 0x0dbf5567, 0x68676923, - 0x0bab550f, 0x30826c20, 0x622fbe85, 0x07746c6f, 0x6e726f74, 0x076f6461, 0x826c6f76, 0x0d6f217f, 0x50055d4b, 0x052b0627, 0x65746177, 0x61620472, - 0x830d7962, 0x632d2204, 0x32a78261, 0x09656761, 0x686f6962, 0x72617a61, 0x6c620464, 0x570c676f, 0x642208d5, 0xf0577961, 0x65772409, 0x820a6b65, - 0x79642155, 0x6e223882, 0x3d830665, 0x82746f21, 0x6873221f, 0x0723582d, 0x696d0822, 0x25050a56, 0x6d756408, 0x6e827370, 0x08870d20, 0x69662d3c, - 0x65086572, 0x72656874, 0x0574656e, 0x74666967, 0x68631173, 0x61706d61, 0xb74f6e67, 0x73652906, 0x6968770d, 0x79656b73, 0x4a05c74f, 0x652a06aa, - 0x706f7275, 0x72670a65, 0x2b5e7069, 0x89132005, 0x0851440a, 0x75670626, 0x72617469, 0x0806b35a, 0x61726343, 0x680b6b63, 0x796c6c6f, 0x7265622d, - 0x680a7972, 0x6573726f, 0x6165682d, 0x63690764, 0x656c6369, 0x67690573, 0x066f6f6c, 0x7474696d, 0x6d076e65, 0x682d6775, 0x7209746f, 0x61696461, - 0x6e6f6974, 0x06594510, 0x08331088, 0x74736572, 0x6d6f6f72, 0x74617309, 0x696c6c65, 0x880e6574, 0x642d3009, 0x07687369, 0x632d6473, 0x08647261, - 0x846d6973, 0x07504d08, 0x826b7321, 0x676e2152, 0x22075c43, 0x6f696b73, 0x0d850a47, 0x6f6e2d2e, 0x63696472, 0x656c7306, 0x0b686769, 0x2108fd51, - 0xf36f736d, 0x6e732507, 0x6f62776f, 0x3b825e82, 0x0c830720, 0x6e616d23, 0x24078308, 0x776f6c70, 0x20c3820a, 0x05625f67, 0x2c430620, 0x4e122005, - 0x2d200a2a, 0x2505b264, 0x62616309, 0x9983656c, 0xc3531120, 0x75632f0a, 0x64657672, 0x63616205, 0x620c6e6f, 0x0b636f6f, 0x620b3308, 0x64616572, - 0x696c732d, 0x63066563, 0x73656568, 0x04441565, 0x7e6d200d, 0xe653054e, 0x7375220a, 0x08e94665, 0x32074153, 0x75726306, 0x07686374, 0x65736964, - 0x03657361, 0x46676765, 0x742a07c9, 0x06656572, 0x67727562, 0xb4527265, 0x696d2305, 0xa2826464, 0x2005df4c, 0x067d740d, 0x66617326, 0x0d797465, - 0x5007b163, 0x682605c3, 0x6f64746f, 0x9b820967, 0x82632d21, 0x0e6d21a7, 0x87051e63, 0x70052274, 0x27548261, 0x7065700a, 0x2d726570, 0x0b252c82, - 0x7a7a6970, 0x24cd8561, 0x6361730b, 0x0687476b, 0xf2840b20, 0x6e617439, 0x0d686b61, 0x73726162, 0x6f72702d, 0x73657267, 0x72740e73, 0x64687361, - 0x75220673, 0x93581270, 0x20128808, 0x2aee830a, 0x72756e2d, 0x770b6573, 0x49657661, 0xe74106b8, 0x69622a07, 0x676e696b, 0x726f620a, 0x22838264, - 0x826c6c61, 0x240a846b, 0x656e6f6e, 0x2616860f, 0x2d706f74, 0x4f66656c, 0x6423087c, 0x82676769, 0x66032c35, 0x69056e61, 0x736e6f63, 0x8268700a, - 0x662d242e, 0x6070696c, 0x11890740, 0x74261c83, 0x69662d6f, 0xa66a6d6c, 0x6c732105, 0x0661b382, 0x2d7a220b, 0x09066161, 0x4c610c82, 0x6873290b, - 0x2d74726f, 0x65646977, 0x89094c61, 0x22458b13, 0x89312d39, 0x080c8245, 0x70730b21, 0x2d6c6c65, 0x63656863, 0x6f76096b, 0x6d656369, 0x0a6c6961, - 0x2d746168, 0x62776f63, 0x890f796f, 0x732d210a, 0x0e216082, 0x06ff7763, 0x6d2d2108, 0x6573756f, 0x64617205, 0x720c6f69, 0x726f6365, 0x69762d64, - 0x0d6c796e, 0x6b6c6177, 0x742d6569, 0x072a0684, 0x61726163, 0x006e6176, 0xfa050000, 0xc44844db, + 0x6769732b, 0x6f6d0b6e, 0x2d79656e, 0x260f8262, 0x616e0a73, 0x84617269, 0x6e06354d, 0x6564746f, 0x61700866, 0x61726f6e, 0x700b616d, 0x74657365, + 0x09201b85, 0x0d410b82, 0x42082005, 0x752205b4, 0x90820b70, 0x68616922, 0x73213a85, 0x3f468274, 0x69740873, 0x696c656d, 0x740b656e, 0x6b637572, + 0x6f72662d, 0x7411746e, 0x696b7275, 0x6c2d6873, 0x05276887, 0x6c756176, 0x82771374, 0x6d2d26f1, 0x63696761, 0x07c5432d, 0x68770923, 0x23b88265, + 0x0f6e7761, 0x65230982, 0x8268636c, 0x6d2d3456, 0x1565766f, 0x676e6162, 0x6564616c, 0x2d696873, 0x866b6174, 0x6f623996, 0x722d6c77, 0x0f656369, + 0x73726570, 0x702d6e6f, 0x6e676572, 0x0d746e61, 0x200c9543, 0x230d860b, 0x6b636172, 0x45441986, 0x63092306, 0x29416e65, 0x0a2f0805, 0x73756c70, + 0x6e696d2d, 0x73087375, 0x626c6961, 0x0774616f, 0x74636573, 0x066e6f69, 0x69726873, 0x6213706d, 0x697a6172, 0x6e61696c, 0x4265722d, 0x8c4206d8, + 0x05664406, 0x69640c2d, 0x61726761, 0x656e2d6d, 0x87137478, 0x2893820c, 0x65636564, 0x726f7373, 0x22138711, 0x85637573, 0x650d3111, 0x68747261, + 0x65636f2d, 0x61696e61, 0x67756209, 0x24058d43, 0x6c696610, 0x07584265, 0x09299a83, 0x706f6873, 0x636f6c2d, 0x06b4436b, 0x766f6328, 0x76116469, + 0xb6827269, 0x38850b84, 0x6e611325, 0x426f6863, 0x63250893, 0x6b636568, 0x46138d19, 0x2d8e0a5b, 0x8605c142, 0x206b832d, 0x09c04519, 0x70752d2f, + 0x7263612d, 0x2d73736f, 0x656e696c, 0x83198d12, 0x8513202c, 0x69722d12, 0x2d746867, 0x632d6f74, 0x1a797469, 0x2c0d1b44, 0x756f7267, 0x772d646e, + 0x72657461, 0x841a8d18, 0x702d2413, 0x86706d75, 0x856f8247, 0x6f64234a, 0x13857374, 0x642d7325, 0x836e776f, 0x4482835b, 0x13890577, 0x85055d45, + 0x23a482b2, 0x2d746665, 0x2f838b88, 0x70840b20, 0x732d7325, 0x856e6970, 0x220b837c, 0x8474696c, 0x209682da, 0x2032826c, 0x84248610, 0x637224bf, + 0x890d656c, 0x8a888210, 0x7965230d, 0x1b871165, 0x6e727522, 0xa7876b85, 0x11837420, 0x32824382, 0x25877320, 0x1182d082, 0x09398983, 0x65726f62, + 0x6c6f682d, 0x6f620e65, 0x656c7474, 0x6f72642d, 0x74656c70, 0x240e860c, 0x65746177, 0x3c258272, 0x662d6c77, 0x0d646f6f, 0x65786f62, 0x61702d73, + 0x6e696b63, 0x72620667, 0x65676469, 0x42068513, 0xe9410724, 0x41138d05, 0x198d0be9, 0x8605e941, 0x6f6c2413, 0x860c6b63, 0x2f79840b, 0x63756206, + 0x0474656b, 0x73677562, 0x6975621b, 0x20057947, 0x05e64463, 0x200ae541, 0x841b8f15, 0x8a319084, 0x84319086, 0x880d2088, 0x6c662347, 0x0d896761, + 0x7f879885, 0x6f676e23, 0x4728880f, 0x0b200519, 0x75210f88, 0x2436896e, 0x72657375, 0x3219880e, 0x61656877, 0x75620574, 0x06747372, 0x2d726163, + 0x830a6e6f, 0x75742806, 0x6c656e6e, 0x8268630f, 0x632d2add, 0x61626d6f, 0x746e6174, 0x230f8408, 0x0c6e6572, 0x2508ed86, 0x65646f6e, 0x6c631273, + 0x6f627069, 0x2d647261, 0x73657571, 0x6e6f6974, 0x6f6c6313, 0x732d6475, 0x65776f68, 0xd1427372, 0x82082005, 0x75703a46, 0x0d726574, 0x65627563, + 0x74732d73, 0x656b6361, 0x6e651564, 0x6f6c6576, 0x08cf4370, 0x6568632b, 0x65096b63, 0x6f6c7078, 0x264a8273, 0x72656605, 0x43177972, 0x31410bf1, + 0x8b11200a, 0x696d2517, 0x1473756e, 0x8f87118b, 0x14840b20, 0x24061541, 0x65726966, 0x39f1822d, 0x0972656e, 0x68736966, 0x6e69662d, 0x6c660a73, + 0x2d6b7361, 0x6c616976, 0x0a82670b, 0x1320b486, 0x86420b8a, 0x67132507, 0x70756f72, 0x2005bd49, 0x06804773, 0x85491120, 0x200c830c, 0x25048309, + 0x66667563, 0xbe460b73, 0x6f622505, 0x13646e75, 0xae490b85, 0x68632507, 0x14646c69, 0x692a138e, 0x656c6372, 0x61656811, 0xbe427472, 0x6f622407, + 0x8c12746c, 0x68632511, 0x186b6365, 0x1641128c, 0x242b8d0a, 0x756e696d, 0x23508d73, 0x73756c70, 0x7824248d, 0x6b72616d, 0x6c2b2482, 0x706f6369, + 0x2d726574, 0x826d7973, 0x68092a76, 0x656d6c65, 0x6e752d74, 0x27ab820e, 0x76612d6c, 0x6e616c61, 0x0e857d82, 0x636f7228, 0x696c736b, 0xe9496564, + 0x20bc8407, 0x4b9d862d, 0x1285050d, 0x188b9d8c, 0xd3477884, 0x69662306, 0x0a876572, 0x67616c23, 0x059a4611, 0x6f6c6623, 0x0616456f, 0x11902420, + 0x43072241, 0x41860a78, 0x9b826c20, 0x2f851a20, 0x4406d046, 0x20200c0d, 0xa68a1a94, 0xae843b95, 0x5687ed86, 0xab826620, 0x2b063a47, 0x6e757374, + 0x03696d61, 0x0972616a, 0x2d3b0382, 0x61656877, 0x656a0e74, 0x69662d74, 0x65746867, 0x70752d72, 0x67756a0d, 0x8265642d, 0x65673d0c, 0x6b0b746e, + 0x68637469, 0x732d6e65, 0x6c0c7465, 0x2d646e61, 0x656e696d, 0x0d6e6f2d, 0x6d240c83, 0x2d6b7261, 0x0b205f83, 0x8205314b, 0x656c2346, 0x21826c0d, + 0x6c2d7329, 0x696e6165, 0x8211676e, 0x746129e8, 0x2d6e6f69, 0x2d6e6970, 0x6b210c82, 0x2a048206, 0x1c747375, 0x6e67616d, 0x82796669, 0x422d2023, + 0x244105c7, 0x9016200a, 0x6863251c, 0x14747261, 0x73217082, 0x3085832d, 0x756e6576, 0x75622d73, 0x0f747372, 0x6b73616d, 0x2610822d, 0x616c6974, + 0x82726f74, 0x7474250f, 0x73736572, 0x6c317182, 0x0c776f6c, 0x69626f6d, 0x722d656c, 0x6f727465, 0x09414913, 0x72742d28, 0x66736e61, 0x138d7265, + 0xe3826520, 0x10707522, 0x772d278a, 0x74616568, 0x736f6d08, 0x74697571, 0x854e826f, 0x6e2d2a08, 0x6d057465, 0x646e756f, 0x2105830d, 0xdf826174, + 0x74696323, 0x21208279, 0x0d846e75, 0x6e75732c, 0x6c696f08, 0x6c65772d, 0xe2460c6c, 0x672d2605, 0x70756f72, 0x240c860b, 0x656e696c, 0x220b860e, + 0x826c7570, 0x8767200e, 0x6f72260e, 0x72656262, 0x24298779, 0x666f6f72, 0x06294919, 0x460abe47, 0x198d0694, 0xcd4b7520, 0x214e8206, 0x33861465, + 0x6572622d, 0x66747361, 0x69646565, 0x870c676e, 0x72752314, 0x61827473, 0x6f737229, 0x61632d6e, 0x8611656e, 0x68632a18, 0x626b6c61, 0x6472616f, + 0x43118713, 0x6d870a3a, 0x42066645, 0x2d8e0a94, 0x6e696d25, 0x8d127375, 0x6c702441, 0x8d167375, 0x08974512, 0xcb42168d, 0x23138605, 0x73657264, + 0x8807ef41, 0x776f2212, 0x20cd826e, 0x230f860e, 0x6c6c6166, 0xf1870e82, 0x23420e86, 0x86112005, 0x21d78223, 0x4b842d66, 0x11881020, 0x73617223, + 0x20378273, 0x2d108618, 0x696c696d, 0x79726174, 0x696f702d, 0x1882746e, 0x188f1520, 0x66697224, 0x0441656c, 0x222e8807, 0x852d6f74, 0x07504128, + 0x79617223, 0x07694173, 0xa8873284, 0x65687327, 0x7265746c, 0x242e851e, 0x6c61772d, 0x4566826b, 0x2d2a05b2, 0x706f6f6c, 0x66656c2d, 0x1e941a74, + 0x67697225, 0x8e267468, 0x6164211a, 0x64215282, 0x4ffd822d, 0x268407b6, 0x268e1620, 0x67756c27, 0x65676167, 0x05074c12, 0x4506bd41, 0x128c050c, + 0x8d0ad041, 0x6d78252b, 0x0a6b7261, 0x6c242b85, 0x0b6b636f, 0x74210a82, 0x05454465, 0x82701021, 0x0b11465e, 0x108b1120, 0x17206584, 0x648a118b, + 0x6d24298c, 0x73756e69, 0x35824c8c, 0x228c7320, 0x0c3a8684, 0x6b6e6172, 0x2d676e69, 0x72617473, 0x616f720c, 0x61622d64, 0x65697272, 0x0c850b72, + 0x64697225, 0x84116567, 0x20ea8b0b, 0x8b118b17, 0x84178b84, 0x84092061, 0x84e78411, 0x70732e09, 0x73656b69, 0x67757203, 0x6361730a, 0x05334e6b, + 0x63731326, 0x6c6f6f68, 0x200cbb45, 0x8a138d19, 0x842d8e64, 0x860b2066, 0x6c66232d, 0x0b876761, 0x0d2e7483, 0x65656873, 0x6c702d74, 0x69747361, + 0x1e480a63, 0x632d2305, 0x0a877461, 0x676f6422, 0x23076450, 0x72616568, 0x712a1782, 0x65726175, 0x69666e2d, 0x0a857316, 0x21060042, 0x13826f63, + 0x64656e23, 0x3516860c, 0x75726976, 0x74730b73, 0x2d666661, 0x6b616e73, 0x75730e65, 0x69822d6e, 0x2d746e2c, 0x746c6977, 0x72617404, 0x04830c70, + 0x25075548, 0x6e657404, 0x04831774, 0x4b0a1752, 0x178a08cc, 0xba4b6c20, 0x8a142008, 0x75742415, 0x832d6e72, 0x8910201a, 0x2d732614, 0x6e776f64, + 0x21108305, 0xf1500f73, 0x726f2707, 0x6c626174, 0x0f851065, 0x702d7322, 0x0a2b1086, 0x65776f74, 0x65632d72, 0x85116c6c, 0x626f370a, 0x76726573, + 0x6f697461, 0x7274096e, 0x632d6565, 0x06797469, 0x27827274, 0x850d6c21, 0x622d2706, 0x6b636972, 0xd24e1173, 0x0a5d4605, 0x75221f82, 0xdb876b63, + 0x1f850b20, 0x65696625, 0x8a0e646c, 0x752d220b, 0x261a866e, 0x6e616c70, 0x82751365, 0x2d732770, 0x77746562, 0xcd826565, 0x656e6924, 0x13850a73, + 0x0b826c20, 0x72240a86, 0x0f737961, 0x72261585, 0x61746365, 0xcd82676e, 0x762d0f85, 0x66776569, 0x65646e69, 0x69761172, 0x0d324261, 0x11840a20, + 0x72697628, 0x771c7375, 0x494f6568, 0x07544205, 0x2a0a4042, 0x726f7704, 0x6d780c6d, 0x4d6b7261, 0x732605cb, 0x6968630b, 0xd344646c, 0x850e2005, + 0x6572220b, 0x21088261, 0x7e4a676e, 0x6863240c, 0x8c6b6365, 0x44458411, 0x742607dc, 0x756f7268, 0x15546867, 0x420a2006, 0x072e090b, 0x70617473, + 0x0a72656c, 0x69617274, 0x05822d6e, 0x74176d2c, 0x656c6261, 0x6c65632d, 0xcb51736c, 0x6c2d2506, 0x146b636f, 0x7222178b, 0x1484776f, 0x65770b24, + 0xd8622d62, 0x740f2906, 0x626d7568, 0x6b636174, 0x2005f04e, 0x21308f16, 0x47836e75, 0xde821320, 0x6e697423, 0x06164869, 0x706d652b, 0x6d057974, + 0x63697375, 0x0f164810, 0x65680535, 0x04747261, 0x72617473, 0x65737504, 0x69660472, 0x8b116d6c, 0x616c2556, 0x0b656772, 0x0a20118a, 0x6c2a0b85, + 0x05747369, 0x63656863, 0x0841056b, 0x245a8f05, 0x756c702d, 0x11874873, 0x6e696d2f, 0x70097375, 0x7265776f, 0x66666f2d, 0x05395506, 0x82670421, + 0x68052287, 0x2183826f, 0xc3836305, 0x6f720428, 0x64086461, 0xd182776f, 0x05646128, 0x6f626e69, 0x82421278, 0x746f2406, 0x4e657461, 0x934e0573, + 0x05285307, 0x32420e20, 0x832d2008, 0x8404209e, 0x6c662448, 0x820a6761, 0x70642de6, 0x656e6f68, 0x6f760a73, 0x656d756c, 0x0a877b83, 0x776f6c23, + 0x2d15860b, 0x68676968, 0x63727106, 0x0765646f, 0x07846162, 0x61740324, 0x03820467, 0x62047326, 0x086b6f6f, 0x2607a253, 0x69727005, 0x5306746e, + 0x042405a8, 0x746e6f66, 0x6c301f82, 0x74690664, 0x63696c61, 0x7865740b, 0x65682d74, 0x74214e82, 0x250b840a, 0x74646977, 0x1b820a68, 0xc9436720, + 0x850c2005, 0x6563260a, 0x7265746e, 0x200c850b, 0x202e8372, 0x270b850d, 0x7473756a, 0x04796669, 0x0724c883, 0x6474756f, 0x06222882, 0x06836e69, + 0x6976052c, 0x056f6564, 0x67616d69, 0x1e4a0c65, 0x4512200b, 0x682b06a8, 0x2d666c61, 0x6f727473, 0x4f07656b, 0x0d27065d, 0x2d6e6570, 0x442d6f74, + 0x285005c1, 0x70752507, 0x776f642d, 0x50419085, 0x61622706, 0x61776b63, 0x3f826472, 0x0d706522, 0x66240d88, 0x08747361, 0x04330d87, 0x79616c70, + 0x75617005, 0x73046573, 0x07706f74, 0x83726f66, 0x860c2033, 0x832d2007, 0x300c882d, 0x70657473, 0x656a6505, 0x630c7463, 0x72766568, 0x206f856f, + 0x840c870d, 0x860b20f5, 0x6c7023ba, 0x7f4e7375, 0x696d2207, 0x240c896e, 0x72616d78, 0x8219876b, 0x6b63223a, 0x4e32860f, 0x0f860806, 0x666e6933, + 0x72630a6f, 0x6873736f, 0x73726961, 0x6e616203, 0x0539420a, 0x66656c23, 0x05095174, 0x0820ec85, 0x75211685, 0x241f8670, 0x6e776f64, 0x32358205, + 0x65066572, 0x6e617078, 0x6f630864, 0x6572706d, 0x84057373, 0x075f418b, 0x320b5044, 0x74666967, 0x61656c04, 0x69660466, 0x65036572, 0x82096579, + 0x059f4303, 0x72741429, 0x676e6169, 0x8a2d656c, 0x70053c31, 0x656e616c, 0x6c61630d, 0x61646e65, 0x61642d72, 0x73077379, 0x66667568, 0x8207656c, + 0x656d2b6f, 0x6d06746e, 0x656e6761, 0x22410a74, 0x70752107, 0x83083a41, 0x720727a3, 0x65777465, 0x44827465, 0x2d74722b, 0x706f6873, 0x676e6970, + 0x05725506, 0x06850b20, 0x706f2d23, 0x06ad5665, 0x412d7321, 0x8d5106e7, 0x09644607, 0x68630923, 0x23428261, 0x0c726162, 0x4b05c942, 0x032a05e5, + 0x0579656b, 0x72616567, 0x91860873, 0x73097323, 0x23ac8274, 0x666c6168, 0x41053f52, 0xf6560541, 0x4409200c, 0xfa52089e, 0x69722409, 0x85746867, + 0x057a4225, 0x29531620, 0x5762200e, 0x06390532, 0x706f7274, 0x75067968, 0x616f6c70, 0x656c0564, 0x056e6f6d, 0x6e6f6870, 0x07744765, 0x06200c84, + 0x3005e144, 0x6572630b, 0x2d746964, 0x64726163, 0x73737203, 0x08c5820a, 0x642d6420, 0x65766972, 0x6c756208, 0x726f686c, 0x65630b6e, 0x66697472, + 0x74616369, 0x61681065, 0x904a646e, 0x20b78505, 0x24108a0f, 0x7466656c, 0x210f8a0d, 0x1d8b7075, 0x776f6424, 0xfe51116e, 0x422f830c, 0xcc8a0709, + 0x85078e42, 0x70752112, 0x4683348d, 0x6c670530, 0x0665626f, 0x6e657277, 0x6c0a6863, 0xc0827369, 0x63656824, 0x4b57066b, 0x62092a05, 0x66656972, + 0x65736163, 0x11974312, 0x7375053d, 0x04737265, 0x6b6e696c, 0x6f6c6305, 0x66056475, 0x6b73616c, 0x69637308, 0x826f7373, 0x6f633a19, 0x70097970, + 0x72657061, 0x70696c63, 0x6f6c660b, 0x2d797070, 0x6b736964, 0x05784106, 0x61620425, 0x84077372, 0x6c752175, 0x6f280785, 0x74730d6c, 0x656b6972, + 0x2506bd46, 0x646e7509, 0x63827265, 0x74056527, 0x656c6261, 0x09a8560a, 0x72740526, 0x0a6b6375, 0x2b09d54d, 0x7261630a, 0x642d7465, 0x086e776f, + 0x75210a85, 0x24138670, 0x7466656c, 0x2513850b, 0x68676972, 0x4c840d74, 0x2106e946, 0xae820473, 0x83097421, 0x203c8404, 0x22098407, 0x52087075, + 0xa4420729, 0x06795105, 0x4b832d20, 0x67052308, 0x6c657661, 0x6c6f6204, 0x69730774, 0x616d6574, 0x6d750870, 0x6c657262, 0x7005616c, 0x65747361, + 0x67836c09, 0x6c756223, 0x0c5e4262, 0x2509f543, 0x6f6c6310, 0x7b496475, 0x8b0e200a, 0x70752610, 0x6573750b, 0x248f8272, 0x726f7463, 0x3250820b, + 0x736f6874, 0x65706f63, 0x69757308, 0x73616374, 0x82620465, 0x6d0a2b6d, 0x732d6775, 0x65637561, 0x20820872, 0x7469702a, 0x740d6c61, 0x6b637572, + 0x2007bf5a, 0x872f8710, 0x500b2010, 0x0e220a1c, 0x64826562, 0x65254383, 0x7974706d, 0x05974108, 0x0b682d22, 0x702a0886, 0x0b73756c, 0x6c676e61, + 0xf7847365, 0x0b860c20, 0xdc837220, 0x0c860920, 0x0986ab82, 0x776f6424, 0x0b840a6e, 0x39852d84, 0x2005de42, 0x21168508, 0x1f867075, 0x06202a83, + 0x41056250, 0x7428058c, 0x7475622d, 0x0d6e6f74, 0x8506db4f, 0x710a250d, 0x65746f75, 0x0a854d85, 0x07287a84, 0x6e697073, 0x0672656e, 0x2a050643, + 0x6361660a, 0x6d732d65, 0x85656c69, 0x7266210a, 0x08208982, 0x6d381584, 0x67076865, 0x70656d61, 0x6b086461, 0x6f627965, 0x0e647261, 0x67616c66, + 0x3c053452, 0x64657265, 0x72657408, 0x616e696d, 0x6f63046c, 0x72096564, 0x796c7065, 0x6c6c612d, 0x08c9460e, 0x82726121, 0x63042550, 0x0b706f72, + 0x2d232283, 0x43617262, 0x6e200530, 0x3406f748, 0x666e6904, 0x75730b6f, 0x73726570, 0x70697263, 0x75730974, 0x36098562, 0x61726506, 0x0c726573, + 0x7a7a7570, 0x702d656c, 0x65636569, 0x83696d0a, 0x6f68244c, 0x8910656e, 0x05a2450a, 0x174c0620, 0x45082005, 0x112f078e, 0x65726966, 0x7478652d, + 0x75676e69, 0x82687369, 0x6f7226f5, 0x74656b63, 0x09044d13, 0x2008c246, 0x24138e14, 0x68676972, 0x07f74374, 0x8f09bb45, 0x6f64243a, 0x58066e77, + 0x0e200569, 0x2605cf44, 0x79656b2d, 0x446c6f68, 0x732d05bc, 0x08657965, 0x696c6c65, 0x73697370, 0x25088711, 0x7265762d, 0xa6826974, 0x2d420a20, + 0x73722206, 0x09344773, 0x06796122, 0xa6821c82, 0x24072d45, 0x756e696d, 0x051d4973, 0x75742d2d, 0x752d6e72, 0x72610f70, 0x85776f72, 0x8782830d, + 0x21a8822a, 0x55876b63, 0x6e657023, 0x85608615, 0x078a582e, 0x68731125, 0x45657261, 0x07280bc9, 0x706d6f63, 0x11737361, 0x10442f86, 0x8c0f2009, + 0x70752211, 0x270f8c12, 0x68676972, 0x75650974, 0x2606645c, 0x6574730d, 0x5c696c72, 0x0a200660, 0x210aec5b, 0x945c6579, 0x21138205, 0x005c6c62, + 0x6f772106, 0x04251385, 0x656c6966, 0x2004830a, 0x213b822d, 0x975d7365, 0x24d78306, 0x7a2d612d, 0x82bc880c, 0x8515200c, 0x221b840c, 0x82646977, + 0x6f682449, 0x88137472, 0x8b138922, 0x2d312245, 0x82458939, 0x05dd460c, 0x752d7329, 0x68740b70, 0x4d626d75, 0x5441057f, 0x235b8406, 0x676e6f6c, + 0x22067241, 0x832d7075, 0x231d860d, 0x7466656c, 0x10200f84, 0x840a2f46, 0x510c2010, 0x6523088b, 0x85067373, 0x7303380c, 0x6d046e75, 0x0b6e6f6f, + 0x2d786f62, 0x68637261, 0x03657669, 0x41677562, 0x54830d68, 0x80420a20, 0x6f642306, 0x365c0a74, 0x5c092009, 0x0d26086f, 0x74756873, 0xf1826c74, + 0x63617023, 0x07964165, 0x20076945, 0x08275810, 0x3d05505e, 0x72670e73, 0x61756461, 0x6e6f6974, 0x7061632d, 0x6e616c08, 0x67617567, 0x61660365, + 0x2c870878, 0x8f820520, 0x03646c2b, 0x04776170, 0x65627563, 0x08048305, 0x72077322, 0x63796365, 0x6303656c, 0x74047261, 0x04697861, 0x65657274, + 0x74616408, 0x73616261, 0x69660865, 0x70238482, 0x84096664, 0x6f772308, 0xbb416472, 0x78652505, 0x0f6c6563, 0x70291484, 0x7265776f, 0x6e696f70, + 0x211a8574, 0x79826d69, 0x1a840b20, 0x70697a25, 0x85726570, 0x75612416, 0x856f6964, 0x6976240a, 0x856f6564, 0x6f632351, 0xf6826564, 0x2d656626, + 0x676e6972, 0x2509c058, 0x0b686374, 0x3c826170, 0x82702d21, 0x116526cc, 0x636f6c63, 0x0b5b466b, 0x65680724, 0x32826461, 0x6170092c, 0x72676172, + 0x07687061, 0x57826c73, 0x0b737222, 0x2005f042, 0x2059826e, 0x07c04273, 0x2408128a, 0x6d6f6204, 0x75660662, 0x6c6f6274, 0x79747403, 0x6e69620a, + 0x6c75636f, 0x04737261, 0x67756c70, 0x77656e09, 0x287a8473, 0x66697704, 0x61630a69, 0x271d836c, 0x0a726f74, 0x6c6c6562, 0x28057d44, 0x61727405, + 0x63096873, 0x064e706f, 0x79650b27, 0x72642d65, 0x37ee846f, 0x6e696170, 0x75726274, 0x630c6873, 0x2d656b61, 0x646e6163, 0x0a73656c, 0x2305b249, + 0x61657261, 0x2206bd49, 0x86656970, 0x696c2f14, 0x740a656e, 0x6c67676f, 0x666f2d65, 0x0a870966, 0x62076e23, 0x059f4169, 0x73756229, 0x6f6c6311, + 0x82646573, 0x7470244f, 0x826e6f69, 0x22ea82fc, 0x60656b65, 0x632406ae, 0x2d747261, 0x7321c182, 0x4309840f, 0x072b093b, 0x6d616964, 0x04646e6f, + 0x47696873, 0x73280630, 0x65726365, 0x6f6d0a74, 0x5f84d682, 0x74730b2e, 0x74656572, 0x6569762d, 0x65680b77, 0x75374a84, 0x0565736c, 0x756e6576, + 0x616d0473, 0x6d077372, 0x75637265, 0x560e7972, 0x0b2c0d8b, 0x6e617274, 0x6e656773, 0x0c726564, 0x2d272d84, 0x62756f64, 0x840b656c, 0x200b8527, + 0x8318850a, 0x4c168511, 0x4a8505e4, 0x2d230b85, 0x84117075, 0x2c0e8631, 0x68676972, 0x656e0674, 0x72657475, 0x2c5e850a, 0x7373656c, 0x72657306, + 0x09726576, 0x84078275, 0x840a20ed, 0x82782009, 0x036b253a, 0x05646562, 0x69228e82, 0x05840c6e, 0x75732d34, 0x79617762, 0x7461620c, 0x79726574, + 0x6c75662d, 0x0c87166c, 0x82687421, 0x712d22f0, 0x22ea8275, 0x88737265, 0x61682423, 0x870f666c, 0x201d8623, 0x240f870d, 0x74706d65, 0x06294479, + 0x696f7023, 0x2f55826e, 0x632d6908, 0x6f737275, 0x626f0c72, 0x7463656a, 0x2005e756, 0x210c860e, 0xf6566e75, 0x6e290805, 0x2d65746f, 0x63697473, + 0x6305796b, 0x656e6f6c, 0x6163730e, 0x622d656c, 0x6e616c61, 0x0f646563, 0x72756f68, 0x73616c67, 0x23258273, 0x0e747261, 0x90830f89, 0x0e890d20, + 0x646e6523, 0x240d8809, 0x6e61680e, 0x27448264, 0x662d6b63, 0x04747369, 0x114b0e83, 0x075e4a05, 0x21840b20, 0x7a696c26, 0x0a647261, 0x73250b84, + 0x6b636f70, 0x860a840c, 0x321785c2, 0x63616570, 0x72740965, 0x6d656461, 0x0a6b7261, 0x82676572, 0x72652652, 0x74026465, 0x09f54c76, 0x756c7024, + 0x034d0e73, 0x696d2208, 0x200e8b6e, 0x89398378, 0x6321081d, 0x6b636568, 0x646e6908, 0x72747375, 0x616d0779, 0x69702d70, 0x69730a6e, 0x2d736e67, + 0x74736f70, 0x27128203, 0x73656d07, 0x65676173, 0x2407fb43, 0x73756170, 0x07204765, 0x6f747327, 0x61620c70, 0x082b4d67, 0x61620f25, 0x4d656b73, + 0x102d093b, 0x76696e75, 0x61737265, 0x63612d6c, 0x20498263, 0x0efb5518, 0x74697731, 0x61632d68, 0x6111656e, 0x6f696475, 0x4865642d, 0x6929056f, + 0x700c6e6f, 0x656e6f68, 0x0541502d, 0x7262072d, 0x6c6c6961, 0x61650a65, 0x836c2d72, 0x166e38f9, 0x646e6168, 0x73612d73, 0x6e692d6c, 0x70726574, + 0x69746572, 0x8308676e, 0x65642421, 0x84056661, 0x650e2b1f, 0x6c2d6579, 0x762d776f, 0x54837369, 0x6e6f6623, 0x07f75174, 0x21840920, 0x6b616824, + 0xbb450d65, 0x6f2d2807, 0x0c6e6570, 0x57646461, 0x6f2205d7, 0x0c886b6f, 0x72616323, 0x2df88764, 0x72657375, 0x2d646908, 0x67646162, 0x08820765, + 0x10201c83, 0x240b8f66, 0x6c6c7566, 0x42108b1a, 0x2b8c0dd0, 0x6c616824, 0x2b8b1366, 0x2006d842, 0x25138b11, 0x74706d65, 0x1c5e0679, 0x62042d05, + 0x07687461, 0x63646f70, 0x0f747361, 0x28053167, 0x78616d2d, 0x7a696d69, 0x210f8865, 0x0f846e69, 0x1f860e20, 0x7422d182, 0xf74d726f, 0x78290808, + 0x6b72616d, 0x63696d09, 0x68636f72, 0x73097069, 0x66776f6e, 0x656b616c, 0x6f707305, 0x75086e6f, 0x736e6574, 0x0b736c69, 0x05175272, 0x66656c2e, + 0x72740974, 0x2d687361, 0x066e6163, 0x092a1585, 0x706f7473, 0x63746177, 0x914e1268, 0x067b4e0a, 0x2a611020, 0x20108608, 0x4b34850c, 0x0320054b, + 0x062e6582, 0x67616d69, 0x70067365, 0x69636e65, 0x0682036c, 0x03820820, 0x6c632d22, 0xfa478f82, 0x47092008, 0x0a2008e6, 0x6c245085, 0x07676e6f, + 0x47060948, 0x65220601, 0xfe87086e, 0x585f0920, 0x4f0a2008, 0x2e83098f, 0xbf415083, 0x830b8b07, 0x07dd4225, 0x09206084, 0x2206fd47, 0x49147075, + 0x9f4907a5, 0x07ee470b, 0x95871b87, 0x74666529, 0x70657206, 0x4b746165, 0x2108055e, 0x6d6d6f63, 0x630a7469, 0x2d65646f, 0x6772656d, 0x65640765, + 0x6f746b73, 0x65670370, 0x7574096d, 0xa84d6e72, 0x26098405, 0x6c097075, 0x426b636f, 0xb14b057e, 0x6f642208, 0x0b594b74, 0x6e696c25, 0x4c147365, + 0x7325065a, 0x65657263, 0x066f4c6e, 0x14850620, 0x8507764c, 0x4e0c201b, 0x2d220955, 0x4d430b31, 0x057f6805, 0x6d692908, 0x2d656761, 0x74726f70, + 0x74696172, 0x70657205, 0x730d796c, 0x6c656968, 0x61682d64, 0x6465766c, 0x62617414, 0x2d74656c, 0x1485658d, 0x124b0d20, 0x06086905, 0x2105e045, + 0xe082616c, 0x27540f20, 0x6d782509, 0x206b7261, 0x23090453, 0x2d646e61, 0x29084c41, 0x632d6f74, 0x65746e65, 0x12882272, 0x2d891f83, 0x6f726623, + 0x2c22866d, 0x73616211, 0x6c616265, 0x61622d6c, 0x22038274, 0x87086c6c, 0x440a2011, 0x1c83056c, 0x6f620c27, 0x6e696c77, 0x26208467, 0x65686305, + 0x840c7373, 0x622d2705, 0x6f687369, 0x0c860b70, 0x72616f24, 0x0b850a64, 0x2e826b20, 0x6b252386, 0x6867696e, 0x23178674, 0x6e776170, 0x71242e86, + 0x6e656575, 0x722a1686, 0x086b6f6f, 0x626d7564, 0x82826562, 0x6f6f6623, 0x24778374, 0x6c6f670d, 0x31748466, 0x6565742d, 0x636f680b, 0x2d79656b, + 0x6b637570, 0x3182620a, 0x1a846d20, 0x2907874e, 0x6c6c7566, 0x62617418, 0x2c82656c, 0x696e6e28, 0x61702d73, 0x66466464, 0x0a6c2705, 0x6c6c6f76, + 0x54837965, 0x41680921, 0x7423050d, 0x82620773, 0x67612609, 0x6f620365, 0x06b06378, 0x00627320, 0x50112005, 0x114f08d4, 0x66112907, 0x2d657269, + 0x6d616c66, 0x2907a26a, 0x70616308, 0x656c7573, 0x12430f73, 0x052e4e08, 0x0f890e20, 0x73696c23, 0x076b5774, 0x746f6423, 0x05e84273, 0x6e696c29, + 0x6e640365, 0x82640561, 0x0c792594, 0x74726163, 0x74265983, 0x0c646562, 0xb1826966, 0x2006c35f, 0x2b0c840d, 0x65766177, 0x6d726f66, 0x74696b0b, + 0x08208d87, 0x21064343, 0x1c450c68, 0x832d2006, 0x6e0d2573, 0x7365746f, 0x06222387, 0xf2826170, 0x70057429, 0x736c6c69, 0x45727013, 0x2d2009fa, + 0x2005b364, 0x8713921b, 0x8209203c, 0x702d268b, 0x65736c75, 0x0529500a, 0x7361662f, 0x6d730774, 0x6e696b6f, 0x79730767, 0x3a068272, 0x61740765, + 0x74656c62, 0x68740b73, 0x6f6d7265, 0x6574656d, 0x69760472, 0x83056c61, 0x73210804, 0x72617709, 0x756f6865, 0x770c6573, 0x68676965, 0x63732d74, + 0x05656c61, 0x61722d78, 0x6f620879, 0x058e4378, 0x6d6f632c, 0x746e656d, 0x746f642d, 0x0c870d73, 0x616c732b, 0x63056873, 0x6863756f, 0x082d4c15, + 0x616c6c30, 0x6f742d72, 0x6f6c732d, 0x6f640474, 0xc8476576, 0x06b86205, 0xee621220, 0x6165240d, 0x8c137472, 0x6f642112, 0x9b6c4083, 0x0767560d, + 0x6c0cee62, 0x61230a76, 0x536c676e, 0x73200587, 0x2a0a9d6c, 0x7261700d, 0x75686361, 0x822d6574, 0x5f1020c6, 0x632406ca, 0x79727261, 0x0a241083, + 0x67676970, 0x612c0982, 0x72066b6e, 0x6f626269, 0x6f72056e, 0x082e2c82, 0x64656573, 0x676e696c, 0x6769730c, 0x73822d6e, 0x0c826720, 0x98500f20, + 0x772d2909, 0x046b6e69, 0x65706174, 0x2306915a, 0x706d6172, 0x0c205183, 0x22058441, 0x82766f6d, 0x760b2530, 0x6f656469, 0x20058a4b, 0x3031820a, + 0x6c672d65, 0x10737361, 0x72657375, 0x72616c2d, 0x06506c67, 0x10840e20, 0x74736128, 0x616e6f72, 0x49447475, 0x68632405, 0x866b6365, 0x6f6c240a, + 0x84096b63, 0x65672424, 0x84087261, 0x65702209, 0x201d856e, 0x21b28267, 0x13840d70, 0x20065f4d, 0x832b8565, 0x23228535, 0x756e696d, 0x26050c5b, + 0x6e696e2d, 0x840b616a, 0x05e8442d, 0x73202185, 0x68209882, 0x74225885, 0x08866761, 0x84656921, 0x2d73211c, 0x10287583, 0x6c616373, 0x6e752d65, + 0x20070c4a, 0x30108f15, 0x696c662d, 0x6c620770, 0x65646e65, 0x6f620972, 0x05c6456f, 0x105c0f20, 0x72622505, 0x6364616f, 0x0520e482, 0x6f220982, + 0xc3600a6d, 0x890f2009, 0x832d200a, 0x63063f98, 0x63727568, 0x6f630568, 0x0c736e69, 0x706d6f63, 0x2d746361, 0x63736964, 0x6f726304, 0x04830577, + 0x64046e26, 0x09656369, 0x2d230483, 0x87766966, 0x756f2309, 0x13840872, 0x656e6f22, 0x73230885, 0x840a7869, 0x68742311, 0x13866572, 0x6f77742f, + 0x76696406, 0x0b656469, 0x726f6f64, 0x05b04c2d, 0x0b840920, 0x706f2208, 0x66076e65, 0x68746165, 0x66047265, 0x08676f72, 0x2d736167, 0x706d7570, + 0x616c6707, 0x73657373, 0x0bfb6f12, 0x71652d28, 0x0a6c6175, 0xf9646568, 0x69083307, 0x6e69666e, 0x09797469, 0x6977696b, 0x7269622d, 0x3d700f64, + 0x272d8508, 0x6d656d06, 0x1679726f, 0x230a2b52, 0x656e696c, 0x20063e6e, 0x0aad460f, 0x76617724, 0x0f8a1165, 0x832d3121, 0x06656c11, 0x65686325, + 0x85126b63, 0x200b841d, 0x0537432d, 0x6f6e0923, 0x28688574, 0x6c617007, 0x65747465, 0x061f510e, 0x72617027, 0x676e696b, 0x072a6b0f, 0x6f727033, + 0x7463656a, 0x63657207, 0x74706965, 0x626f7205, 0x2505826f, 0x72656c75, 0x0583720e, 0x6f632d24, 0x9a82626d, 0x85106421, 0x6f68290e, 0x6f7a6972, + 0x6c61746e, 0x76201f86, 0x2f063452, 0x68637306, 0x0b6c6f6f, 0x65726373, 0x69726477, 0x0b361782, 0x656f6873, 0x6972702d, 0x0573746e, 0x6c756b73, + 0x61620b6c, 0x99442d6e, 0x73052606, 0x65726f74, 0x24238204, 0x61620e70, 0x35fb8272, 0x67676174, 0x64657265, 0x7274730b, 0x77706f6f, 0x6c656661, + 0x54827407, 0x786f6229, 0x69687305, 0x4b0e7472, 0x06260d33, 0x6c6c6177, 0x23547465, 0x61200805, 0x7972676e, 0x63726107, 0x79617768, 0x6f6f620a, + 0x74612d6b, 0x0573616c, 0x72617761, 0x65640b64, 0x79542982, 0x620c3a05, 0x65697a65, 0x75632d72, 0x04657672, 0x676e6f62, 0x75726205, 0x620a6873, + 0x2e858275, 0x6c706d69, 0x61630865, 0x62616e6e, 0x410c7369, 0x75240757, 0x14656c62, 0x220df65c, 0x82746963, 0x620e2936, 0x2d6c6c65, 0x636e6f63, + 0x67295382, 0x6f630665, 0x65696b6f, 0x2306850b, 0x7469622d, 0x72220b82, 0x2348706f, 0x74123206, 0x6f686361, 0x70617267, 0x69642d68, 0x61746967, + 0x26be856c, 0x7a7a6964, 0x52631079, 0x2d2e05f0, 0x66617264, 0x676e6974, 0x75726404, 0x04830d6d, 0x74732d29, 0x706c6565, 0x420f6e61, 0x6c58069a, + 0x64652105, 0x27057946, 0x746e6f63, 0x74636172, 0x4f05e950, 0xde500952, 0x78652505, 0x74726f70, 0xdf820b85, 0xbc460b82, 0x6e692c05, 0x63696f76, + 0x69661365, 0x862d656c, 0x0643420c, 0x4605885e, 0x0e200b76, 0x73282584, 0x616e6769, 0x65727574, 0x69857785, 0x04707522, 0x6c211c82, 0x82048309, + 0x706923bb, 0xbc82660b, 0x70726526, 0x746e6972, 0x732e1a82, 0x61660c68, 0x662d6563, 0x6873756c, 0x46456465, 0x72662a05, 0x2d6e776f, 0x6e65706f, + 0x0c57410d, 0x61650c2d, 0x2d687472, 0x69726661, 0x860e6163, 0x656d210c, 0x73210d83, 0x220e860a, 0x85616973, 0x72672351, 0x59826d69, 0x5e840920, + 0x6e210c82, 0x2409880e, 0x6469772d, 0x240e8a65, 0x6d616562, 0x831d8914, 0x732d260e, 0x74616577, 0x20148910, 0x205f8368, 0x22108a73, 0x82757173, + 0x891620c2, 0x21108521, 0x2882742d, 0xc7857320, 0x2d247583, 0x72617473, 0x1f840f8b, 0x7426478a, 0x75676e6f, 0x47891765, 0x2d201085, 0x15204e85, + 0x77231790, 0x8c6b6e69, 0x6b6e22ca, 0x21688204, 0x04830d70, 0x2008a955, 0x09755e11, 0x20065f42, 0x28118307, 0x0b746573, 0x68676968, 0x0532686c, + 0x6f680e27, 0x75742d74, 0x06fd6462, 0x0e820520, 0x056c6524, 0xd8826f6a, 0x23053741, 0x7373696b, 0x09836c85, 0x28412d20, 0x830e8409, 0x822d208a, + 0x43722056, 0x6c240668, 0x68677561, 0x0a84fa85, 0x11202f84, 0x0f85c184, 0x218bd385, 0x15204283, 0x210b3b49, 0xf558732d, 0x6d0c2d06, 0x6c2d7061, + 0x7461636f, 0x106e6f69, 0x2d300c8b, 0x06746f64, 0x6b72616d, 0x6d057265, 0x6c616465, 0x6d28a185, 0x622d6865, 0x6b6e616c, 0x723b7185, 0x696c6c6f, + 0x652d676e, 0x08736579, 0x756e6f6d, 0x746e656d, 0x726f6d0d, 0x82726174, 0x747326ef, 0x700c656c, 0x20e98261, 0x2729832d, 0x70087265, 0x70737361, + 0x092a1e82, 0x2d6e6570, 0x636e6166, 0x09830779, 0x62696e22, 0x72261184, 0x72656c75, 0x6082700d, 0x612d6529, 0x76697272, 0x850f6c61, 0x6564270d, + 0x74726170, 0x4f827275, 0x420a9f49, 0x732c0585, 0x632d6461, 0x660d7972, 0x2d656361, 0x74280c83, 0x0b726165, 0x2d6e6176, 0x20061e55, 0x08364309, + 0x270b4248, 0x6d616562, 0x6c6f730b, 0x2008aa83, 0x6c656e61, 0x61707303, 0x6c707307, 0x6863746f, 0x72707309, 0x632d7961, 0x73056e61, 0x706d6174, + 0x081d5d10, 0x5a06775f, 0x03410908, 0x2a7d8606, 0x72707275, 0x0a657369, 0x82617773, 0x6f622446, 0x450f6b6f, 0x73280635, 0x6d6d6977, 0x0c676e69, + 0x65261982, 0x616c2d72, 0xeb826464, 0x48065649, 0xc18406a3, 0x7269742b, 0x74056465, 0x68746f6f, 0x07065b0e, 0xac822d20, 0x0d686328, 0x74636576, + 0xe45f726f, 0x4a0e2006, 0x1d49062b, 0x48102006, 0x2d2609e0, 0x74706d65, 0xc3881279, 0x85722d20, 0x610b3607, 0x656c7070, 0x6f68772d, 0x6104656c, + 0x046d6f74, 0x656e6f62, 0x082a4810, 0x65722d23, 0x29958261, 0x61726205, 0x63086e69, 0x10837261, 0x830b7221, 0x06db5208, 0x0b840920, 0x73727523, + 0x291e8474, 0x65646973, 0x61686310, 0xd9826772, 0x74732d28, 0x6f697461, 0x4854126e, 0x742d2106, 0x2c083b70, 0x6172640c, 0x6f702d77, 0x6f67796c, + 0x070c6b6e, 0x646f6323, 0x220b8265, 0x53726579, 0x1320050d, 0x20078942, 0x09dd5f2d, 0x756c0525, 0x5973676e, 0x733905e1, 0x65706f63, 0x6c696f07, + 0x6e61632d, 0x6f6f7004, 0x68730670, 0x73657061, 0x2f78820c, 0x666f2d72, 0x66696c2d, 0x61670565, 0x0a656775, 0x2d250584, 0x68676968, 0x720a850c, + 0x112005c7, 0x1e840c8b, 0x65740526, 0x0a687465, 0x0f450584, 0x6b733207, 0x68742d73, 0x65746165, 0x72740d72, 0x69666661, 0x225b8263, 0x82746867, + 0x6375270d, 0x6f6d2d6b, 0x1b82736e, 0x6c4a0c20, 0x69702605, 0x70756b63, 0x09744e0c, 0x04646126, 0x686b6e61, 0x2c050647, 0x6c626962, 0x75620d65, + 0x656e6973, 0x28568273, 0x04656d69, 0x79746963, 0x09ce4b0e, 0x616c6c24, 0x0e860f72, 0x01467320, 0x63053306, 0x73736f72, 0x6168640c, 0x63616d72, + 0x726b6168, 0x1c521261, 0x742d260c, 0x0c747865, 0x05867566, 0x6e696d25, 0x860b7375, 0x6c70240c, 0x5e147375, 0x2d200573, 0x080c124c, 0x6f67073a, + 0x61727570, 0x6168056d, 0x0561736d, 0x61686162, 0x656a0469, 0x62136964, 0x2d6b6f6f, 0x72756f6a, 0x2d6c616e, 0x6c696877, 0x6b05736c, 0x61626161, + 0x61686b06, 0x0861646e, 0x2007cd6c, 0x0883870e, 0x622d7321, 0x076b6c75, 0x6f6e656d, 0x06686172, 0x71736f6d, 0x6f026575, 0x7073186d, 0x65686761, + 0x41697474, 0x2d2f0725, 0x69796c66, 0x7005676e, 0x65636165, 0x826c7010, 0x6f2d2b05, 0x6f772d66, 0x69687372, 0x37821470, 0x65726127, 0x6c6f702d, + 0x0859456c, 0x83089f67, 0x0af44814, 0x22064a43, 0x83617270, 0x4c0d2051, 0x0d86058b, 0x20056d41, 0x22df8271, 0x6d6d176e, 0x99490f3a, 0x90192005, + 0x07714217, 0x6f730525, 0x87736b63, 0x6f723f8b, 0x762d746f, 0x61697261, 0x11656c62, 0x72617473, 0x646e612d, 0x6572632d, 0x6e656373, 0x11840d74, + 0x6432c282, 0x64697661, 0x6e797309, 0x676f6761, 0x730c6575, 0xb0837263, 0x726f7425, 0x820a6861, 0x69692e05, 0x7461672d, 0x69760665, 0x61726168, + 0x0541540c, 0x20051769, 0x25c08208, 0x6e61792d, 0xaf4b0d67, 0x702d2506, 0x656e6f68, 0x2508c485, 0x6c756b73, 0x61630a6c, 0x7267706d, 0x646e756f, + 0x74616303, 0x61686305, 0x630a7269, 0x64756f6c, 0x6f6f6d2d, 0x0a85096e, 0x6e757326, 0x776f6303, 0x31056c4b, 0x07303264, 0x65636964, 0x0336642d, + 0x06676f64, 0x99827264, 0x640e6e37, 0x736d7572, 0x6b636974, 0x7469622d, 0x75640765, 0x6f65676e, 0x05b2526e, 0x76736322, 0x3705e74f, 0x74736966, + 0x6f686705, 0x68067473, 0x656d6d61, 0x61680872, 0x696b756e, 0x682aca82, 0x772d7461, 0x72617a69, 0x81410d64, 0x69683306, 0x676e696b, 0x70696805, + 0x68056f70, 0x6573726f, 0x3d7b6813, 0x7263370c, 0x0c6b6361, 0x76797268, 0x2d61696e, 0x6e676973, 0x73616d04, 0x096e086b, 0x6e0d2707, 0x6f777465, + 0x57826b72, 0x6465722a, 0x74746f05, 0x72047265, 0x230aad6c, 0x6e6e7572, 0x06200e82, 0x25055341, 0x756b7310, 0x17446c6c, 0x6f623305, 0x0573656e, + 0x73616c73, 0x70730668, 0x72656469, 0x107a740c, 0x7407210a, 0x742c7a82, 0x750c726f, 0x2d726573, 0x756a6e69, 0x0c246082, 0x632d7276, 0x6221bf82, + 0x2404826f, 0x6e61770d, 0x08134564, 0x69770425, 0x820b646e, 0x4f652004, 0x3a6006ed, 0x656d2806, 0x61627461, 0x410f6c6c, 0x2d240972, 0x6e696172, + 0x83068241, 0x0e28730a, 0x61656824, 0x3d867976, 0x6e757322, 0x083b2d84, 0x6f6d6564, 0x74617263, 0x616c6608, 0x73752d67, 0x75680961, 0x63697272, + 0x70656e61, 0x64280922, 0x06656d6f, 0x6574656d, 0x6141b682, 0x6f622f06, 0x0968746f, 0x2d6f6f70, 0x726f7473, 0x6f83076d, 0x776f6229, 0x7065720a, + 0x836c6275, 0x7304243f, 0x55676f6d, 0x69230dbf, 0x550f6867, 0x6c200bab, 0xbe853082, 0x6c6f622f, 0x6f740774, 0x64616e72, 0x6f76076f, 0x217f826c, + 0x5d4b0d6f, 0x06275005, 0x6177052b, 0x04726574, 0x79626162, 0x2204830d, 0x8261632d, 0x676132a7, 0x69620965, 0x7a61686f, 0x04647261, 0x676f6c62, + 0x08d5570c, 0x79616422, 0x2409f057, 0x6b656577, 0x2155820a, 0x38827964, 0x06656e22, 0x6f213d83, 0x221f8274, 0x582d6873, 0x08220723, 0x0a56696d, + 0x64082505, 0x73706d75, 0x0d206e82, 0x2d3c0887, 0x65726966, 0x68746508, 0x656e7265, 0x69670574, 0x11737466, 0x6d616863, 0x6e676170, 0x2906b74f, + 0x770d7365, 0x6b736968, 0xc74f7965, 0x06aa4a05, 0x7275652a, 0x0a65706f, 0x70697267, 0x20052b5e, 0x440a8913, 0x06260851, 0x74697567, 0xb35a7261, + 0x63430806, 0x6b636172, 0x6c6f680b, 0x622d796c, 0x79727265, 0x726f680a, 0x682d6573, 0x07646165, 0x63696369, 0x0573656c, 0x6f6c6769, 0x696d066f, + 0x6e657474, 0x67756d07, 0x746f682d, 0x64617209, 0x69746169, 0x45106e6f, 0x10880659, 0x65720833, 0x6f727473, 0x73096d6f, 0x6c657461, 0x6574696c, + 0x3009880e, 0x7369642d, 0x64730768, 0x7261632d, 0x69730864, 0x4d08846d, 0x73210750, 0x2152826b, 0x5c43676e, 0x6b732207, 0x0aa76f69, 0x2d2e0d85, + 0x64726f6e, 0x73066369, 0x6769656c, 0xfd510b68, 0x736d2108, 0x25075370, 0x776f6e73, 0x5e826f62, 0x07203b82, 0x6d230c83, 0x83086e61, 0x6c702407, + 0x820a776f, 0x5f6720c3, 0x06200562, 0x20052c43, 0x0a2a4e12, 0xb2642d20, 0x63092505, 0x656c6261, 0x11209983, 0x2f0ac353, 0x76727563, 0x62056465, + 0x6e6f6361, 0x6f6f620c, 0x33080b63, 0x6572620b, 0x732d6461, 0x6563696c, 0x65686306, 0x15657365, 0x200d0444, 0x05cf7e6d, 0x220ae653, 0x46657375, + 0x415308e9, 0x63063207, 0x63747572, 0x69640768, 0x73616573, 0x67650365, 0x07c94667, 0x6572742a, 0x75620665, 0x72656772, 0x2305b452, 0x6464696d, + 0xdf4ca282, 0x740d2005, 0x732606dd, 0x74656661, 0xb1630d79, 0x05c35007, 0x746f6826, 0x09676f64, 0x2d219b82, 0x21a78263, 0x1e630e6d, 0x22748705, + 0x82617005, 0x700a2754, 0x65707065, 0x2c822d72, 0x69700b25, 0x85617a7a, 0x730b24cd, 0x476b6361, 0x0b200687, 0x7439f284, 0x6b616e61, 0x61620d68, + 0x702d7372, 0x72676f72, 0x0e737365, 0x73617274, 0x06736468, 0x12707522, 0x88089358, 0x830a2012, 0x6e2d2aee, 0x65737275, 0x7661770b, 0x06b84965, + 0x2a07e741, 0x696b6962, 0x620a676e, 0x8264726f, 0x6c612283, 0x846b826c, 0x6f6e240a, 0x860f656e, 0x6f742616, 0x656c2d70, 0x087c4f66, 0x67696423, + 0x2c358267, 0x6e616603, 0x6f636905, 0x700a736e, 0x242e8268, 0x696c662d, 0x07406070, 0x1c831189, 0x2d6f7426, 0x6d6c6966, 0x2105a66a, 0xb3826c73, + 0x220b0661, 0x61612d7a, 0x0c820906, 0x290b4c61, 0x726f6873, 0x69772d74, 0x4c616564, 0x8b138909, 0x2d392245, 0x82458931, 0x0b21080c, 0x6c657073, + 0x68632d6c, 0x096b6365, 0x63696f76, 0x69616d65, 0x61680a6c, 0x6f632d74, 0x796f6277, 0x210a890f, 0x6082732d, 0x630e2a08, 0x75706d6f, 0x2d726574, + 0x73756f6d, 0x61720565, 0x0c6f6964, 0x6f636572, 0x762d6472, 0x6c796e69, 0x6c61770d, 0x2d65696b, 0x27068474, 0x72616307, 0x6e617661, 0x2f9afa05, + 0x0000d928, }; diff --git a/thirdparty/imgui_suite/generated/fonts/src/ProggyDotted.inc b/thirdparty/imgui_suite/generated/fonts/src/ProggyDotted.inc index ad9b0260b58..00d51fce846 100644 --- a/thirdparty/imgui_suite/generated/fonts/src/ProggyDotted.inc +++ b/thirdparty/imgui_suite/generated/fonts/src/ProggyDotted.inc @@ -1,4 +1,4 @@ -// File: 'extract/proggyfonts-1.1.5/ProggyDotted/ProggyDotted Regular.ttf' (591376 bytes) +// File: 'extract/proggyfonts-1.1.7/ProggyDotted/ProggyDotted Regular.ttf' (591376 bytes) // Exported using binary_to_compressed_c.cpp static const unsigned int ProggyDotted_compressed_size = 254065; static const unsigned int ProggyDotted_compressed_data[254068/4] = From 95da92db049ef1476261ec3add2c2d18a12a43a1 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sat, 28 Sep 2024 10:58:29 -0700 Subject: [PATCH 05/18] [wpigui] Add "deep dark" style (#7133) --- wpigui/src/main/native/cpp/wpigui.cpp | 91 +++++++++++++++++++++++++ wpigui/src/main/native/include/wpigui.h | 2 +- 2 files changed, 92 insertions(+), 1 deletion(-) diff --git a/wpigui/src/main/native/cpp/wpigui.cpp b/wpigui/src/main/native/cpp/wpigui.cpp index 1a277e37df4..8b6bee0615b 100644 --- a/wpigui/src/main/native/cpp/wpigui.cpp +++ b/wpigui/src/main/native/cpp/wpigui.cpp @@ -508,6 +508,90 @@ void gui::AddDefaultFont( } } +// https://github.com/ocornut/imgui/issues/707#issuecomment-917151020 +static void StyleColorsDeepDark() { + ImVec4* colors = ImGui::GetStyle().Colors; + colors[ImGuiCol_Text] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); + colors[ImGuiCol_TextDisabled] = ImVec4(0.50f, 0.50f, 0.50f, 1.00f); + colors[ImGuiCol_WindowBg] = ImVec4(0.10f, 0.10f, 0.10f, 1.00f); + colors[ImGuiCol_ChildBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_PopupBg] = ImVec4(0.19f, 0.19f, 0.19f, 0.92f); + colors[ImGuiCol_Border] = ImVec4(0.19f, 0.19f, 0.19f, 0.29f); + colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.24f); + colors[ImGuiCol_FrameBg] = ImVec4(0.05f, 0.05f, 0.05f, 0.54f); + colors[ImGuiCol_FrameBgHovered] = ImVec4(0.19f, 0.19f, 0.19f, 0.54f); + colors[ImGuiCol_FrameBgActive] = ImVec4(0.20f, 0.22f, 0.23f, 1.00f); + colors[ImGuiCol_TitleBg] = ImVec4(0.00f, 0.00f, 0.00f, 1.00f); + colors[ImGuiCol_TitleBgActive] = ImVec4(0.06f, 0.06f, 0.06f, 1.00f); + colors[ImGuiCol_TitleBgCollapsed] = ImVec4(0.00f, 0.00f, 0.00f, 1.00f); + colors[ImGuiCol_MenuBarBg] = ImVec4(0.14f, 0.14f, 0.14f, 1.00f); + colors[ImGuiCol_ScrollbarBg] = ImVec4(0.05f, 0.05f, 0.05f, 0.54f); + colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.34f, 0.34f, 0.34f, 0.54f); + colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.40f, 0.40f, 0.40f, 0.54f); + colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.56f, 0.56f, 0.56f, 0.54f); + colors[ImGuiCol_CheckMark] = ImVec4(0.33f, 0.67f, 0.86f, 1.00f); + colors[ImGuiCol_SliderGrab] = ImVec4(0.34f, 0.34f, 0.34f, 0.54f); + colors[ImGuiCol_SliderGrabActive] = ImVec4(0.56f, 0.56f, 0.56f, 0.54f); + colors[ImGuiCol_Button] = ImVec4(0.05f, 0.05f, 0.05f, 0.54f); + colors[ImGuiCol_ButtonHovered] = ImVec4(0.19f, 0.19f, 0.19f, 0.54f); + colors[ImGuiCol_ButtonActive] = ImVec4(0.20f, 0.22f, 0.23f, 1.00f); + colors[ImGuiCol_Header] = ImVec4(0.00f, 0.00f, 0.00f, 0.52f); + colors[ImGuiCol_HeaderHovered] = ImVec4(0.00f, 0.00f, 0.00f, 0.36f); + colors[ImGuiCol_HeaderActive] = ImVec4(0.20f, 0.22f, 0.23f, 0.33f); + colors[ImGuiCol_Separator] = ImVec4(0.28f, 0.28f, 0.28f, 0.29f); + colors[ImGuiCol_SeparatorHovered] = ImVec4(0.44f, 0.44f, 0.44f, 0.29f); + colors[ImGuiCol_SeparatorActive] = ImVec4(0.40f, 0.44f, 0.47f, 1.00f); + colors[ImGuiCol_ResizeGrip] = ImVec4(0.28f, 0.28f, 0.28f, 0.29f); + colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.44f, 0.44f, 0.44f, 0.29f); + colors[ImGuiCol_ResizeGripActive] = ImVec4(0.40f, 0.44f, 0.47f, 1.00f); + colors[ImGuiCol_Tab] = ImVec4(0.00f, 0.00f, 0.00f, 0.52f); + colors[ImGuiCol_TabHovered] = ImVec4(0.14f, 0.14f, 0.14f, 1.00f); + colors[ImGuiCol_TabActive] = ImVec4(0.20f, 0.20f, 0.20f, 0.36f); + colors[ImGuiCol_TabUnfocused] = ImVec4(0.00f, 0.00f, 0.00f, 0.52f); + colors[ImGuiCol_TabUnfocusedActive] = ImVec4(0.14f, 0.14f, 0.14f, 1.00f); + colors[ImGuiCol_DockingPreview] = ImVec4(0.33f, 0.67f, 0.86f, 1.00f); + colors[ImGuiCol_DockingEmptyBg] = ImVec4(0.00f, 0.00f, 0.00f, 1.00f); + colors[ImGuiCol_PlotLines] = ImVec4(1.00f, 0.00f, 0.00f, 1.00f); + colors[ImGuiCol_PlotLinesHovered] = ImVec4(1.00f, 0.00f, 0.00f, 1.00f); + colors[ImGuiCol_PlotHistogram] = ImVec4(1.00f, 0.00f, 0.00f, 1.00f); + colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.00f, 0.00f, 0.00f, 1.00f); + colors[ImGuiCol_TableHeaderBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.52f); + colors[ImGuiCol_TableBorderStrong] = ImVec4(0.00f, 0.00f, 0.00f, 0.52f); + colors[ImGuiCol_TableBorderLight] = ImVec4(0.28f, 0.28f, 0.28f, 0.29f); + colors[ImGuiCol_TableRowBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_TableRowBgAlt] = ImVec4(1.00f, 1.00f, 1.00f, 0.06f); + colors[ImGuiCol_TextSelectedBg] = ImVec4(0.20f, 0.22f, 0.23f, 1.00f); + colors[ImGuiCol_DragDropTarget] = ImVec4(0.33f, 0.67f, 0.86f, 1.00f); + colors[ImGuiCol_NavHighlight] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); + colors[ImGuiCol_NavWindowingHighlight] = ImVec4(1.00f, 1.00f, 1.00f, 0.70f); + colors[ImGuiCol_NavWindowingDimBg] = ImVec4(0.15f, 0.15f, 0.15f, 0.20f); + colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.15f, 0.15f, 0.15f, 0.35f); + + ImGuiStyle& style = ImGui::GetStyle(); + style.WindowPadding = ImVec2(8.00f, 8.00f); + style.FramePadding = ImVec2(5.00f, 2.00f); + style.CellPadding = ImVec2(6.00f, 6.00f); + style.ItemSpacing = ImVec2(6.00f, 6.00f); + style.ItemInnerSpacing = ImVec2(6.00f, 6.00f); + style.TouchExtraPadding = ImVec2(0.00f, 0.00f); + style.IndentSpacing = 25; + style.ScrollbarSize = 15; + style.GrabMinSize = 10; + style.WindowBorderSize = 1; + style.ChildBorderSize = 1; + style.PopupBorderSize = 1; + style.FrameBorderSize = 1; + style.TabBorderSize = 1; + style.WindowRounding = 7; + style.ChildRounding = 4; + style.FrameRounding = 3; + style.PopupRounding = 4; + style.ScrollbarRounding = 9; + style.GrabRounding = 3; + style.LogSliderDeadzone = 4; + style.TabRounding = 4; +} + void gui::SetStyle(Style style) { gContext->style = static_cast(style); switch (style) { @@ -520,6 +604,9 @@ void gui::SetStyle(Style style) { case kStyleLight: ImGui::StyleColorsLight(); break; + case kStyleDeepDark: + StyleColorsDeepDark(); + break; } } @@ -574,6 +661,10 @@ void gui::EmitViewMenu() { if (ImGui::MenuItem("Light", nullptr, &selected, true)) { SetStyle(kStyleLight); } + selected = gContext->style == kStyleDeepDark; + if (ImGui::MenuItem("Deep Dark", nullptr, &selected, true)) { + SetStyle(kStyleDeepDark); + } ImGui::EndMenu(); } diff --git a/wpigui/src/main/native/include/wpigui.h b/wpigui/src/main/native/include/wpigui.h index 8bfa6a6b6cb..6c3315fc55f 100644 --- a/wpigui/src/main/native/include/wpigui.h +++ b/wpigui/src/main/native/include/wpigui.h @@ -168,7 +168,7 @@ void AddDefaultFont( */ ImFont* GetFont(int font); -enum Style { kStyleClassic = 0, kStyleDark, kStyleLight }; +enum Style { kStyleClassic = 0, kStyleDark, kStyleLight, kStyleDeepDark }; /** * Sets the ImGui style. Using this function makes this setting persistent. From fde264b041f2cba64c93e498afa5419c7cb2dbfe Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sat, 28 Sep 2024 10:58:47 -0700 Subject: [PATCH 06/18] [thirdparty] Add Roboto fonts (#7138) --- thirdparty/imgui_suite/generate_fonts.sh | 15 +- .../generated/fonts/LICENSE-roboto.txt | 201 + .../fonts/include/imgui_RobotoBold.h | 5 + .../fonts/include/imgui_RobotoCondensedBold.h | 5 + .../include/imgui_RobotoCondensedLight.h | 5 + .../include/imgui_RobotoCondensedRegular.h | 5 + .../fonts/include/imgui_RobotoLight.h | 5 + .../fonts/include/imgui_RobotoRegular.h | 5 + .../generated/fonts/src/RobotoBold.inc | 5037 +++++++++++++++++ .../fonts/src/RobotoCondensedBold.inc | 5015 ++++++++++++++++ .../fonts/src/RobotoCondensedLight.inc | 4978 ++++++++++++++++ .../fonts/src/RobotoCondensedRegular.inc | 4939 ++++++++++++++++ .../generated/fonts/src/RobotoLight.inc | 5009 ++++++++++++++++ .../generated/fonts/src/RobotoRegular.inc | 4974 ++++++++++++++++ .../generated/fonts/src/imgui_RobotoBold.cpp | 5 + .../fonts/src/imgui_RobotoCondensedBold.cpp | 5 + .../fonts/src/imgui_RobotoCondensedLight.cpp | 5 + .../src/imgui_RobotoCondensedRegular.cpp | 5 + .../generated/fonts/src/imgui_RobotoLight.cpp | 5 + .../fonts/src/imgui_RobotoRegular.cpp | 5 + wpigui/src/main/native/cpp/wpigui.cpp | 30 + 21 files changed, 30257 insertions(+), 1 deletion(-) create mode 100644 thirdparty/imgui_suite/generated/fonts/LICENSE-roboto.txt create mode 100644 thirdparty/imgui_suite/generated/fonts/include/imgui_RobotoBold.h create mode 100644 thirdparty/imgui_suite/generated/fonts/include/imgui_RobotoCondensedBold.h create mode 100644 thirdparty/imgui_suite/generated/fonts/include/imgui_RobotoCondensedLight.h create mode 100644 thirdparty/imgui_suite/generated/fonts/include/imgui_RobotoCondensedRegular.h create mode 100644 thirdparty/imgui_suite/generated/fonts/include/imgui_RobotoLight.h create mode 100644 thirdparty/imgui_suite/generated/fonts/include/imgui_RobotoRegular.h create mode 100644 thirdparty/imgui_suite/generated/fonts/src/RobotoBold.inc create mode 100644 thirdparty/imgui_suite/generated/fonts/src/RobotoCondensedBold.inc create mode 100644 thirdparty/imgui_suite/generated/fonts/src/RobotoCondensedLight.inc create mode 100644 thirdparty/imgui_suite/generated/fonts/src/RobotoCondensedRegular.inc create mode 100644 thirdparty/imgui_suite/generated/fonts/src/RobotoLight.inc create mode 100644 thirdparty/imgui_suite/generated/fonts/src/RobotoRegular.inc create mode 100644 thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoBold.cpp create mode 100644 thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoCondensedBold.cpp create mode 100644 thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoCondensedLight.cpp create mode 100644 thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoCondensedRegular.cpp create mode 100644 thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoLight.cpp create mode 100644 thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoRegular.cpp diff --git a/thirdparty/imgui_suite/generate_fonts.sh b/thirdparty/imgui_suite/generate_fonts.sh index 3350141de40..4d6d576872a 100755 --- a/thirdparty/imgui_suite/generate_fonts.sh +++ b/thirdparty/imgui_suite/generate_fonts.sh @@ -11,6 +11,7 @@ DROID_COMMIT=d3817c246c6e3da7531fa1fbb0b0fca271aae7fb PROGGYFONTS_VERSION=1.1.7 FONTAWESOME_VERSION=6.6.0 FIRACODE_VERSION=6.2 +ROBOTO_VERSION=2.138 mkdir download pushd download @@ -22,6 +23,7 @@ wget -O proggyfonts.zip https://github.com/bluescan/proggyfonts/archive/refs/tag wget https://github.com/FortAwesome/Font-Awesome/releases/download/${FONTAWESOME_VERSION}/fontawesome-free-${FONTAWESOME_VERSION}-web.zip wget -O droid-fonts.zip https://github.com/grays/droid-fonts/archive/${DROID_COMMIT}.zip wget -O fira-code.zip https://github.com/tonsky/FiraCode/releases/download/${FIRACODE_VERSION}/Fira_Code_v${FIRACODE_VERSION}.zip +wget -O roboto.zip https://github.com/googlefonts/roboto/releases/download/v${ROBOTO_VERSION}/roboto-android.zip # Download C++ icon font header wget https://github.com/juliettef/IconFontCppHeaders/raw/${ICONFONTCPPHEADERS_COMMIT}/IconsFontAwesome6.h @@ -39,6 +41,10 @@ mkdir fira-code pushd fira-code unzip ../../download/fira-code.zip popd +mkdir roboto +pushd roboto +unzip ../../download/roboto.zip +popd popd rm -rf fonts @@ -52,6 +58,7 @@ cp -p download/IconsFontAwesome6.h fonts/include/ cp -p extract/proggyfonts-${PROGGYFONTS_VERSION}/LICENSE fonts/LICENSE-proggyfonts.txt cp -p extract/fontawesome-free-${FONTAWESOME_VERSION}-web/LICENSE.txt fonts/LICENSE-fontawesome.txt cp -p extract/droid-fonts-${DROID_COMMIT}/droid/NOTICE fonts/LICENSE-droid.txt +cp -p extract/roboto/LICENSE fonts/LICENSE-roboto.txt # Build C versions g++ -o imgui_font_bin2c download/binary_to_compressed_c.cpp @@ -60,9 +67,15 @@ g++ -o imgui_font_bin2c download/binary_to_compressed_c.cpp ./imgui_font_bin2c "extract/fontawesome-free-${FONTAWESOME_VERSION}-web/webfonts/fa-solid-900.ttf" FontAwesomeSolid > fonts/src/FontAwesomeSolid.inc ./imgui_font_bin2c "extract/droid-fonts-${DROID_COMMIT}/droid/DroidSans.ttf" DroidSans > fonts/src/DroidSans.inc ./imgui_font_bin2c "extract/fira-code/ttf/FiraCode-Retina.ttf" FiraCodeRetina > fonts/src/FiraCodeRetina.inc +./imgui_font_bin2c "extract/roboto/Roboto-Light.ttf" RobotoLight > fonts/src/RobotoLight.inc +./imgui_font_bin2c "extract/roboto/Roboto-Regular.ttf" RobotoRegular > fonts/src/RobotoRegular.inc +./imgui_font_bin2c "extract/roboto/Roboto-Bold.ttf" RobotoBold > fonts/src/RobotoBold.inc +./imgui_font_bin2c "extract/roboto/RobotoCondensed-Light.ttf" RobotoCondensedLight > fonts/src/RobotoCondensedLight.inc +./imgui_font_bin2c "extract/roboto/RobotoCondensed-Regular.ttf" RobotoCondensedRegular > fonts/src/RobotoCondensedRegular.inc +./imgui_font_bin2c "extract/roboto/RobotoCondensed-Bold.ttf" RobotoCondensedBold > fonts/src/RobotoCondensedBold.inc # Generate C wrapper source/headers -for font in ProggyDotted FontAwesomeRegular FontAwesomeSolid DroidSans FiraCodeRetina +for font in ProggyDotted FontAwesomeRegular FontAwesomeSolid DroidSans FiraCodeRetina RobotoLight RobotoRegular RobotoBold RobotoCondensedLight RobotoCondensedRegular RobotoCondensedBold do cat >fonts/src/imgui_${font}.cpp <AddFontFromMemoryCompressedTTF(RobotoBold_compressed_data, RobotoBold_compressed_size, size_pixels, font_cfg, glyph_ranges); +} diff --git a/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoCondensedBold.cpp b/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoCondensedBold.cpp new file mode 100644 index 00000000000..39577986dae --- /dev/null +++ b/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoCondensedBold.cpp @@ -0,0 +1,5 @@ +#include "imgui_RobotoCondensedBold.h" +#include "RobotoCondensedBold.inc" +ImFont* ImGui::AddFontRobotoCondensedBold(ImGuiIO& io, float size_pixels, const ImFontConfig* font_cfg, const ImWchar* glyph_ranges) { + return io.Fonts->AddFontFromMemoryCompressedTTF(RobotoCondensedBold_compressed_data, RobotoCondensedBold_compressed_size, size_pixels, font_cfg, glyph_ranges); +} diff --git a/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoCondensedLight.cpp b/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoCondensedLight.cpp new file mode 100644 index 00000000000..1b43e30aafa --- /dev/null +++ b/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoCondensedLight.cpp @@ -0,0 +1,5 @@ +#include "imgui_RobotoCondensedLight.h" +#include "RobotoCondensedLight.inc" +ImFont* ImGui::AddFontRobotoCondensedLight(ImGuiIO& io, float size_pixels, const ImFontConfig* font_cfg, const ImWchar* glyph_ranges) { + return io.Fonts->AddFontFromMemoryCompressedTTF(RobotoCondensedLight_compressed_data, RobotoCondensedLight_compressed_size, size_pixels, font_cfg, glyph_ranges); +} diff --git a/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoCondensedRegular.cpp b/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoCondensedRegular.cpp new file mode 100644 index 00000000000..e41e6bb98af --- /dev/null +++ b/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoCondensedRegular.cpp @@ -0,0 +1,5 @@ +#include "imgui_RobotoCondensedRegular.h" +#include "RobotoCondensedRegular.inc" +ImFont* ImGui::AddFontRobotoCondensedRegular(ImGuiIO& io, float size_pixels, const ImFontConfig* font_cfg, const ImWchar* glyph_ranges) { + return io.Fonts->AddFontFromMemoryCompressedTTF(RobotoCondensedRegular_compressed_data, RobotoCondensedRegular_compressed_size, size_pixels, font_cfg, glyph_ranges); +} diff --git a/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoLight.cpp b/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoLight.cpp new file mode 100644 index 00000000000..6b453922c4d --- /dev/null +++ b/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoLight.cpp @@ -0,0 +1,5 @@ +#include "imgui_RobotoLight.h" +#include "RobotoLight.inc" +ImFont* ImGui::AddFontRobotoLight(ImGuiIO& io, float size_pixels, const ImFontConfig* font_cfg, const ImWchar* glyph_ranges) { + return io.Fonts->AddFontFromMemoryCompressedTTF(RobotoLight_compressed_data, RobotoLight_compressed_size, size_pixels, font_cfg, glyph_ranges); +} diff --git a/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoRegular.cpp b/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoRegular.cpp new file mode 100644 index 00000000000..624ca39a298 --- /dev/null +++ b/thirdparty/imgui_suite/generated/fonts/src/imgui_RobotoRegular.cpp @@ -0,0 +1,5 @@ +#include "imgui_RobotoRegular.h" +#include "RobotoRegular.inc" +ImFont* ImGui::AddFontRobotoRegular(ImGuiIO& io, float size_pixels, const ImFontConfig* font_cfg, const ImWchar* glyph_ranges) { + return io.Fonts->AddFontFromMemoryCompressedTTF(RobotoRegular_compressed_data, RobotoRegular_compressed_size, size_pixels, font_cfg, glyph_ranges); +} diff --git a/wpigui/src/main/native/cpp/wpigui.cpp b/wpigui/src/main/native/cpp/wpigui.cpp index 8b6bee0615b..0fe3f241049 100644 --- a/wpigui/src/main/native/cpp/wpigui.cpp +++ b/wpigui/src/main/native/cpp/wpigui.cpp @@ -21,6 +21,12 @@ #include #include #include +#include +#include +#include +#include +#include +#include #include #include #include @@ -130,6 +136,30 @@ void gui::CreateContext() { [](ImGuiIO& io, float size, const ImFontConfig* cfg) { return ImGui::AddFontFiraCodeRetina(io, size, cfg); }); + AddDefaultFont("Roboto Light", + [](ImGuiIO& io, float size, const ImFontConfig* cfg) { + return ImGui::AddFontRobotoLight(io, size, cfg); + }); + AddDefaultFont("Roboto Regular", + [](ImGuiIO& io, float size, const ImFontConfig* cfg) { + return ImGui::AddFontRobotoRegular(io, size, cfg); + }); + AddDefaultFont("Roboto Bold", + [](ImGuiIO& io, float size, const ImFontConfig* cfg) { + return ImGui::AddFontRobotoBold(io, size, cfg); + }); + AddDefaultFont("Roboto Condensed Light", + [](ImGuiIO& io, float size, const ImFontConfig* cfg) { + return ImGui::AddFontRobotoCondensedLight(io, size, cfg); + }); + AddDefaultFont("Roboto Condensed Regular", + [](ImGuiIO& io, float size, const ImFontConfig* cfg) { + return ImGui::AddFontRobotoCondensedRegular(io, size, cfg); + }); + AddDefaultFont("Roboto Condensed Bold", + [](ImGuiIO& io, float size, const ImFontConfig* cfg) { + return ImGui::AddFontRobotoCondensedBold(io, size, cfg); + }); PlatformCreateContext(); } From fe80d72fbaafe58735ed995f90dbeea44a6c39fb Mon Sep 17 00:00:00 2001 From: Nicholas Armstrong Date: Mon, 30 Sep 2024 15:23:30 -0400 Subject: [PATCH 07/18] [wpimath] Add cosineScale method to SwerveModuleState and instance optimize (#7114) --- .../examples/SwerveBot/cpp/SwerveModule.cpp | 16 +-- .../examples/SwerveBot/include/SwerveModule.h | 2 +- .../cpp/subsystems/SwerveModule.cpp | 13 +- .../include/subsystems/SwerveModule.h | 2 +- .../cpp/SwerveModule.cpp | 16 +-- .../include/SwerveModule.h | 2 +- .../examples/swervebot/SwerveModule.java | 13 +- .../subsystems/SwerveModule.java | 9 +- .../SwerveModule.java | 13 +- .../math/kinematics/SwerveModuleState.java | 28 ++++ .../frc/kinematics/SwerveModuleState.h | 28 ++++ .../kinematics/SwerveModuleStateTest.java | 123 ++++++++++++++++-- .../cpp/kinematics/SwerveModuleStateTest.cpp | 110 ++++++++++++++-- 13 files changed, 311 insertions(+), 64 deletions(-) diff --git a/wpilibcExamples/src/main/cpp/examples/SwerveBot/cpp/SwerveModule.cpp b/wpilibcExamples/src/main/cpp/examples/SwerveBot/cpp/SwerveModule.cpp index 380f8cb593a..7c902b88e69 100644 --- a/wpilibcExamples/src/main/cpp/examples/SwerveBot/cpp/SwerveModule.cpp +++ b/wpilibcExamples/src/main/cpp/examples/SwerveBot/cpp/SwerveModule.cpp @@ -46,29 +46,29 @@ frc::SwerveModulePosition SwerveModule::GetPosition() const { units::radian_t{m_turningEncoder.GetDistance()}}; } -void SwerveModule::SetDesiredState( - const frc::SwerveModuleState& referenceState) { +void SwerveModule::SetDesiredState(frc::SwerveModuleState& referenceState) { frc::Rotation2d encoderRotation{ units::radian_t{m_turningEncoder.GetDistance()}}; // Optimize the reference state to avoid spinning further than 90 degrees - auto state = - frc::SwerveModuleState::Optimize(referenceState, encoderRotation); + referenceState.Optimize(encoderRotation); // Scale speed by cosine of angle error. This scales down movement // perpendicular to the desired direction of travel that can occur when // modules change directions. This results in smoother driving. - state.speed *= (state.angle - encoderRotation).Cos(); + referenceState.CosineScale(encoderRotation); // Calculate the drive output from the drive PID controller. const auto driveOutput = m_drivePIDController.Calculate( - m_driveEncoder.GetRate(), state.speed.value()); + m_driveEncoder.GetRate(), referenceState.speed.value()); - const auto driveFeedforward = m_driveFeedforward.Calculate(state.speed); + const auto driveFeedforward = + m_driveFeedforward.Calculate(referenceState.speed); // Calculate the turning motor output from the turning PID controller. const auto turnOutput = m_turningPIDController.Calculate( - units::radian_t{m_turningEncoder.GetDistance()}, state.angle.Radians()); + units::radian_t{m_turningEncoder.GetDistance()}, + referenceState.angle.Radians()); const auto turnFeedforward = m_turnFeedforward.Calculate( m_turningPIDController.GetSetpoint().velocity); diff --git a/wpilibcExamples/src/main/cpp/examples/SwerveBot/include/SwerveModule.h b/wpilibcExamples/src/main/cpp/examples/SwerveBot/include/SwerveModule.h index 3c2b2e4bc88..ac8c01c6a29 100644 --- a/wpilibcExamples/src/main/cpp/examples/SwerveBot/include/SwerveModule.h +++ b/wpilibcExamples/src/main/cpp/examples/SwerveBot/include/SwerveModule.h @@ -25,7 +25,7 @@ class SwerveModule { int turningEncoderChannelA, int turningEncoderChannelB); frc::SwerveModuleState GetState() const; frc::SwerveModulePosition GetPosition() const; - void SetDesiredState(const frc::SwerveModuleState& state); + void SetDesiredState(frc::SwerveModuleState& state); private: static constexpr double kWheelRadius = 0.0508; diff --git a/wpilibcExamples/src/main/cpp/examples/SwerveControllerCommand/cpp/subsystems/SwerveModule.cpp b/wpilibcExamples/src/main/cpp/examples/SwerveControllerCommand/cpp/subsystems/SwerveModule.cpp index d565e84fbf0..be9917514be 100644 --- a/wpilibcExamples/src/main/cpp/examples/SwerveControllerCommand/cpp/subsystems/SwerveModule.cpp +++ b/wpilibcExamples/src/main/cpp/examples/SwerveControllerCommand/cpp/subsystems/SwerveModule.cpp @@ -53,27 +53,26 @@ frc::SwerveModulePosition SwerveModule::GetPosition() { units::radian_t{m_turningEncoder.GetDistance()}}; } -void SwerveModule::SetDesiredState( - const frc::SwerveModuleState& referenceState) { +void SwerveModule::SetDesiredState(frc::SwerveModuleState& referenceState) { frc::Rotation2d encoderRotation{ units::radian_t{m_turningEncoder.GetDistance()}}; // Optimize the reference state to avoid spinning further than 90 degrees - auto state = - frc::SwerveModuleState::Optimize(referenceState, encoderRotation); + referenceState.Optimize(encoderRotation); // Scale speed by cosine of angle error. This scales down movement // perpendicular to the desired direction of travel that can occur when // modules change directions. This results in smoother driving. - state.speed *= (state.angle - encoderRotation).Cos(); + referenceState.CosineScale(encoderRotation); // Calculate the drive output from the drive PID controller. const auto driveOutput = m_drivePIDController.Calculate( - m_driveEncoder.GetRate(), state.speed.value()); + m_driveEncoder.GetRate(), referenceState.speed.value()); // Calculate the turning motor output from the turning PID controller. auto turnOutput = m_turningPIDController.Calculate( - units::radian_t{m_turningEncoder.GetDistance()}, state.angle.Radians()); + units::radian_t{m_turningEncoder.GetDistance()}, + referenceState.angle.Radians()); // Set the motor outputs. m_driveMotor.Set(driveOutput); diff --git a/wpilibcExamples/src/main/cpp/examples/SwerveControllerCommand/include/subsystems/SwerveModule.h b/wpilibcExamples/src/main/cpp/examples/SwerveControllerCommand/include/subsystems/SwerveModule.h index 8b9cfa3a476..c7eac48d839 100644 --- a/wpilibcExamples/src/main/cpp/examples/SwerveControllerCommand/include/subsystems/SwerveModule.h +++ b/wpilibcExamples/src/main/cpp/examples/SwerveControllerCommand/include/subsystems/SwerveModule.h @@ -27,7 +27,7 @@ class SwerveModule { frc::SwerveModulePosition GetPosition(); - void SetDesiredState(const frc::SwerveModuleState& state); + void SetDesiredState(frc::SwerveModuleState& state); void ResetEncoders(); diff --git a/wpilibcExamples/src/main/cpp/examples/SwerveDrivePoseEstimator/cpp/SwerveModule.cpp b/wpilibcExamples/src/main/cpp/examples/SwerveDrivePoseEstimator/cpp/SwerveModule.cpp index 2afaf55844a..ae75e3af9d3 100644 --- a/wpilibcExamples/src/main/cpp/examples/SwerveDrivePoseEstimator/cpp/SwerveModule.cpp +++ b/wpilibcExamples/src/main/cpp/examples/SwerveDrivePoseEstimator/cpp/SwerveModule.cpp @@ -46,29 +46,29 @@ frc::SwerveModulePosition SwerveModule::GetPosition() const { units::radian_t{m_turningEncoder.GetDistance()}}; } -void SwerveModule::SetDesiredState( - const frc::SwerveModuleState& referenceState) { +void SwerveModule::SetDesiredState(frc::SwerveModuleState& referenceState) { frc::Rotation2d encoderRotation{ units::radian_t{m_turningEncoder.GetDistance()}}; // Optimize the reference state to avoid spinning further than 90 degrees - auto state = - frc::SwerveModuleState::Optimize(referenceState, encoderRotation); + referenceState.Optimize(encoderRotation); // Scale speed by cosine of angle error. This scales down movement // perpendicular to the desired direction of travel that can occur when // modules change directions. This results in smoother driving. - state.speed *= (state.angle - encoderRotation).Cos(); + referenceState.CosineScale(encoderRotation); // Calculate the drive output from the drive PID controller. const auto driveOutput = m_drivePIDController.Calculate( - m_driveEncoder.GetRate(), state.speed.value()); + m_driveEncoder.GetRate(), referenceState.speed.value()); - const auto driveFeedforward = m_driveFeedforward.Calculate(state.speed); + const auto driveFeedforward = + m_driveFeedforward.Calculate(referenceState.speed); // Calculate the turning motor output from the turning PID controller. const auto turnOutput = m_turningPIDController.Calculate( - units::radian_t{m_turningEncoder.GetDistance()}, state.angle.Radians()); + units::radian_t{m_turningEncoder.GetDistance()}, + referenceState.angle.Radians()); const auto turnFeedforward = m_turnFeedforward.Calculate( m_turningPIDController.GetSetpoint().velocity); diff --git a/wpilibcExamples/src/main/cpp/examples/SwerveDrivePoseEstimator/include/SwerveModule.h b/wpilibcExamples/src/main/cpp/examples/SwerveDrivePoseEstimator/include/SwerveModule.h index a4adb2dfda0..def8020cd5d 100644 --- a/wpilibcExamples/src/main/cpp/examples/SwerveDrivePoseEstimator/include/SwerveModule.h +++ b/wpilibcExamples/src/main/cpp/examples/SwerveDrivePoseEstimator/include/SwerveModule.h @@ -25,7 +25,7 @@ class SwerveModule { int turningEncoderChannelA, int turningEncoderChannelB); frc::SwerveModuleState GetState() const; frc::SwerveModulePosition GetPosition() const; - void SetDesiredState(const frc::SwerveModuleState& state); + void SetDesiredState(frc::SwerveModuleState& state); private: static constexpr auto kWheelRadius = 0.0508_m; diff --git a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervebot/SwerveModule.java b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervebot/SwerveModule.java index 32ca8fdbbc6..eb95c4c52ca 100644 --- a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervebot/SwerveModule.java +++ b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervebot/SwerveModule.java @@ -115,24 +115,27 @@ public void setDesiredState(SwerveModuleState desiredState) { var encoderRotation = new Rotation2d(m_turningEncoder.getDistance()); // Optimize the reference state to avoid spinning further than 90 degrees - SwerveModuleState state = SwerveModuleState.optimize(desiredState, encoderRotation); + desiredState.optimize(encoderRotation); // Scale speed by cosine of angle error. This scales down movement perpendicular to the desired // direction of travel that can occur when modules change directions. This results in smoother // driving. - state.speedMetersPerSecond *= state.angle.minus(encoderRotation).getCos(); + desiredState.cosineScale(encoderRotation); // Calculate the drive output from the drive PID controller. final double driveOutput = - m_drivePIDController.calculate(m_driveEncoder.getRate(), state.speedMetersPerSecond); + m_drivePIDController.calculate(m_driveEncoder.getRate(), desiredState.speedMetersPerSecond); final double driveFeedforward = - m_driveFeedforward.calculate(MetersPerSecond.of(state.speedMetersPerSecond)).in(Volts); + m_driveFeedforward + .calculate(MetersPerSecond.of(desiredState.speedMetersPerSecond)) + .in(Volts); // Calculate the turning motor output from the turning PID controller. final double turnOutput = - m_turningPIDController.calculate(m_turningEncoder.getDistance(), state.angle.getRadians()); + m_turningPIDController.calculate( + m_turningEncoder.getDistance(), desiredState.angle.getRadians()); final double turnFeedforward = m_turnFeedforward diff --git a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervecontrollercommand/subsystems/SwerveModule.java b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervecontrollercommand/subsystems/SwerveModule.java index 27e800c649e..1a032d273fa 100644 --- a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervecontrollercommand/subsystems/SwerveModule.java +++ b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervecontrollercommand/subsystems/SwerveModule.java @@ -108,20 +108,21 @@ public void setDesiredState(SwerveModuleState desiredState) { var encoderRotation = new Rotation2d(m_turningEncoder.getDistance()); // Optimize the reference state to avoid spinning further than 90 degrees - SwerveModuleState state = SwerveModuleState.optimize(desiredState, encoderRotation); + desiredState.optimize(encoderRotation); // Scale speed by cosine of angle error. This scales down movement perpendicular to the desired // direction of travel that can occur when modules change directions. This results in smoother // driving. - state.speedMetersPerSecond *= state.angle.minus(encoderRotation).getCos(); + desiredState.cosineScale(encoderRotation); // Calculate the drive output from the drive PID controller. final double driveOutput = - m_drivePIDController.calculate(m_driveEncoder.getRate(), state.speedMetersPerSecond); + m_drivePIDController.calculate(m_driveEncoder.getRate(), desiredState.speedMetersPerSecond); // Calculate the turning motor output from the turning PID controller. final double turnOutput = - m_turningPIDController.calculate(m_turningEncoder.getDistance(), state.angle.getRadians()); + m_turningPIDController.calculate( + m_turningEncoder.getDistance(), desiredState.angle.getRadians()); // Calculate the turning motor output from the turning PID controller. m_driveMotor.set(driveOutput); diff --git a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervedriveposeestimator/SwerveModule.java b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervedriveposeestimator/SwerveModule.java index f42e1f43996..f6a9b46bdd8 100644 --- a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervedriveposeestimator/SwerveModule.java +++ b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervedriveposeestimator/SwerveModule.java @@ -115,23 +115,26 @@ public void setDesiredState(SwerveModuleState desiredState) { var encoderRotation = new Rotation2d(m_turningEncoder.getDistance()); // Optimize the reference state to avoid spinning further than 90 degrees - SwerveModuleState state = SwerveModuleState.optimize(desiredState, encoderRotation); + desiredState.optimize(encoderRotation); // Scale speed by cosine of angle error. This scales down movement perpendicular to the desired // direction of travel that can occur when modules change directions. This results in smoother // driving. - state.speedMetersPerSecond *= state.angle.minus(encoderRotation).getCos(); + desiredState.cosineScale(encoderRotation); // Calculate the drive output from the drive PID controller. final double driveOutput = - m_drivePIDController.calculate(m_driveEncoder.getRate(), state.speedMetersPerSecond); + m_drivePIDController.calculate(m_driveEncoder.getRate(), desiredState.speedMetersPerSecond); final double driveFeedforward = - m_driveFeedforward.calculate(MetersPerSecond.of(state.speedMetersPerSecond)).in(Volts); + m_driveFeedforward + .calculate(MetersPerSecond.of(desiredState.speedMetersPerSecond)) + .in(Volts); // Calculate the turning motor output from the turning PID controller. final double turnOutput = - m_turningPIDController.calculate(m_turningEncoder.getDistance(), state.angle.getRadians()); + m_turningPIDController.calculate( + m_turningEncoder.getDistance(), desiredState.angle.getRadians()); final double turnFeedforward = m_turnFeedforward diff --git a/wpimath/src/main/java/edu/wpi/first/math/kinematics/SwerveModuleState.java b/wpimath/src/main/java/edu/wpi/first/math/kinematics/SwerveModuleState.java index 8d30494d526..6cadd35b4a8 100644 --- a/wpimath/src/main/java/edu/wpi/first/math/kinematics/SwerveModuleState.java +++ b/wpimath/src/main/java/edu/wpi/first/math/kinematics/SwerveModuleState.java @@ -83,6 +83,21 @@ public String toString() { "SwerveModuleState(Speed: %.2f m/s, Angle: %s)", speedMetersPerSecond, angle); } + /** + * Minimize the change in heading this swerve module state would require by potentially reversing + * the direction the wheel spins. If this is used with the PIDController class's continuous input + * functionality, the furthest a wheel will ever rotate is 90 degrees. + * + * @param currentAngle The current module angle. + */ + public void optimize(Rotation2d currentAngle) { + var delta = angle.minus(currentAngle); + if (Math.abs(delta.getDegrees()) > 90.0) { + speedMetersPerSecond *= -1; + angle = angle.rotateBy(Rotation2d.kPi); + } + } + /** * Minimize the change in heading the desired swerve module state would require by potentially * reversing the direction the wheel spins. If this is used with the PIDController class's @@ -91,7 +106,9 @@ public String toString() { * @param desiredState The desired state. * @param currentAngle The current module angle. * @return Optimized swerve module state. + * @deprecated Use the instance method instead. */ + @Deprecated public static SwerveModuleState optimize( SwerveModuleState desiredState, Rotation2d currentAngle) { var delta = desiredState.angle.minus(currentAngle); @@ -102,4 +119,15 @@ public static SwerveModuleState optimize( return new SwerveModuleState(desiredState.speedMetersPerSecond, desiredState.angle); } } + + /** + * Scales speed by cosine of angle error. This scales down movement perpendicular to the desired + * direction of travel that can occur when modules change directions. This results in smoother + * driving. + * + * @param currentAngle The current module angle. + */ + public void cosineScale(Rotation2d currentAngle) { + speedMetersPerSecond *= angle.minus(currentAngle).getCos(); + } } diff --git a/wpimath/src/main/native/include/frc/kinematics/SwerveModuleState.h b/wpimath/src/main/native/include/frc/kinematics/SwerveModuleState.h index adfeebbbbfc..ccba5db12a8 100644 --- a/wpimath/src/main/native/include/frc/kinematics/SwerveModuleState.h +++ b/wpimath/src/main/native/include/frc/kinematics/SwerveModuleState.h @@ -34,6 +34,22 @@ struct WPILIB_DLLEXPORT SwerveModuleState { */ bool operator==(const SwerveModuleState& other) const; + /** + * Minimize the change in the heading this swerve module state would + * require by potentially reversing the direction the wheel spins. If this is + * used with the PIDController class's continuous input functionality, the + * furthest a wheel will ever rotate is 90 degrees. + * + * @param currentAngle The current module angle. + */ + void Optimize(const Rotation2d& currentAngle) { + auto delta = angle - currentAngle; + if (units::math::abs(delta.Degrees()) > 90_deg) { + speed *= -1; + angle = angle + Rotation2d{180_deg}; + } + } + /** * Minimize the change in heading the desired swerve module state would * require by potentially reversing the direction the wheel spins. If this is @@ -43,8 +59,20 @@ struct WPILIB_DLLEXPORT SwerveModuleState { * @param desiredState The desired state. * @param currentAngle The current module angle. */ + [[deprecated("Use instance method instead.")]] static SwerveModuleState Optimize(const SwerveModuleState& desiredState, const Rotation2d& currentAngle); + + /** + * Scales speed by cosine of angle error. This scales down movement + * perpendicular to the desired direction of travel that can occur when + * modules change directions. This results in smoother driving. + * + * @param currentAngle The current module angle. + */ + void CosineScale(const Rotation2d& currentAngle) { + speed *= (angle - currentAngle).Cos(); + } }; } // namespace frc diff --git a/wpimath/src/test/java/edu/wpi/first/math/kinematics/SwerveModuleStateTest.java b/wpimath/src/test/java/edu/wpi/first/math/kinematics/SwerveModuleStateTest.java index 15ca831f806..e8c1d4be0e0 100644 --- a/wpimath/src/test/java/edu/wpi/first/math/kinematics/SwerveModuleStateTest.java +++ b/wpimath/src/test/java/edu/wpi/first/math/kinematics/SwerveModuleStateTest.java @@ -17,37 +17,136 @@ class SwerveModuleStateTest { void testOptimize() { var angleA = Rotation2d.fromDegrees(45); var refA = new SwerveModuleState(-2.0, Rotation2d.kPi); - var optimizedA = SwerveModuleState.optimize(refA, angleA); + refA.optimize(angleA); assertAll( - () -> assertEquals(2.0, optimizedA.speedMetersPerSecond, kEpsilon), - () -> assertEquals(0.0, optimizedA.angle.getDegrees(), kEpsilon)); + () -> assertEquals(2.0, refA.speedMetersPerSecond, kEpsilon), + () -> assertEquals(0.0, refA.angle.getDegrees(), kEpsilon)); var angleB = Rotation2d.fromDegrees(-50); var refB = new SwerveModuleState(4.7, Rotation2d.fromDegrees(41)); - var optimizedB = SwerveModuleState.optimize(refB, angleB); + refB.optimize(angleB); assertAll( - () -> assertEquals(-4.7, optimizedB.speedMetersPerSecond, kEpsilon), - () -> assertEquals(-139.0, optimizedB.angle.getDegrees(), kEpsilon)); + () -> assertEquals(-4.7, refB.speedMetersPerSecond, kEpsilon), + () -> assertEquals(-139.0, refB.angle.getDegrees(), kEpsilon)); } @Test void testNoOptimize() { var angleA = Rotation2d.kZero; var refA = new SwerveModuleState(2.0, Rotation2d.fromDegrees(89)); - var optimizedA = SwerveModuleState.optimize(refA, angleA); + refA.optimize(angleA); assertAll( - () -> assertEquals(2.0, optimizedA.speedMetersPerSecond, kEpsilon), - () -> assertEquals(89.0, optimizedA.angle.getDegrees(), kEpsilon)); + () -> assertEquals(2.0, refA.speedMetersPerSecond, kEpsilon), + () -> assertEquals(89.0, refA.angle.getDegrees(), kEpsilon)); var angleB = Rotation2d.kZero; var refB = new SwerveModuleState(-2.0, Rotation2d.fromDegrees(-2)); - var optimizedB = SwerveModuleState.optimize(refB, angleB); + refB.optimize(angleB); assertAll( - () -> assertEquals(-2.0, optimizedB.speedMetersPerSecond, kEpsilon), - () -> assertEquals(-2.0, optimizedB.angle.getDegrees(), kEpsilon)); + () -> assertEquals(-2.0, refB.speedMetersPerSecond, kEpsilon), + () -> assertEquals(-2.0, refB.angle.getDegrees(), kEpsilon)); + } + + @Test + void testCosineScale() { + var angleA = Rotation2d.fromDegrees(0.0); + var refA = new SwerveModuleState(2.0, Rotation2d.fromDegrees(45.0)); + refA.cosineScale(angleA); + + assertAll( + () -> assertEquals(Math.sqrt(2.0), refA.speedMetersPerSecond, kEpsilon), + () -> assertEquals(45.0, refA.angle.getDegrees(), kEpsilon)); + + var angleB = Rotation2d.fromDegrees(45.0); + var refB = new SwerveModuleState(2.0, Rotation2d.fromDegrees(45.0)); + refB.cosineScale(angleB); + + assertAll( + () -> assertEquals(2.0, refB.speedMetersPerSecond, kEpsilon), + () -> assertEquals(45.0, refB.angle.getDegrees(), kEpsilon)); + + var angleC = Rotation2d.fromDegrees(-45.0); + var refC = new SwerveModuleState(2.0, Rotation2d.fromDegrees(45.0)); + refC.cosineScale(angleC); + + assertAll( + () -> assertEquals(0.0, refC.speedMetersPerSecond, kEpsilon), + () -> assertEquals(45.0, refC.angle.getDegrees(), kEpsilon)); + + var angleD = Rotation2d.fromDegrees(135.0); + var refD = new SwerveModuleState(2.0, Rotation2d.fromDegrees(45.0)); + refD.cosineScale(angleD); + + assertAll( + () -> assertEquals(0.0, refD.speedMetersPerSecond, kEpsilon), + () -> assertEquals(45.0, refD.angle.getDegrees(), kEpsilon)); + + var angleE = Rotation2d.fromDegrees(-135.0); + var refE = new SwerveModuleState(2.0, Rotation2d.fromDegrees(45.0)); + refE.cosineScale(angleE); + + assertAll( + () -> assertEquals(-2.0, refE.speedMetersPerSecond, kEpsilon), + () -> assertEquals(45.0, refE.angle.getDegrees(), kEpsilon)); + + var angleF = Rotation2d.fromDegrees(180.0); + var refF = new SwerveModuleState(2.0, Rotation2d.fromDegrees(45.0)); + refF.cosineScale(angleF); + + assertAll( + () -> assertEquals(-Math.sqrt(2.0), refF.speedMetersPerSecond, kEpsilon), + () -> assertEquals(45.0, refF.angle.getDegrees(), kEpsilon)); + + var angleG = Rotation2d.fromDegrees(0.0); + var refG = new SwerveModuleState(-2.0, Rotation2d.fromDegrees(45.0)); + refG.cosineScale(angleG); + + assertAll( + () -> assertEquals(-Math.sqrt(2.0), refG.speedMetersPerSecond, kEpsilon), + () -> assertEquals(45.0, refG.angle.getDegrees(), kEpsilon)); + + var angleH = Rotation2d.fromDegrees(45.0); + var refH = new SwerveModuleState(-2.0, Rotation2d.fromDegrees(45.0)); + refH.cosineScale(angleH); + + assertAll( + () -> assertEquals(-2.0, refH.speedMetersPerSecond, kEpsilon), + () -> assertEquals(45.0, refH.angle.getDegrees(), kEpsilon)); + + var angleI = Rotation2d.fromDegrees(-45.0); + var refI = new SwerveModuleState(-2.0, Rotation2d.fromDegrees(45.0)); + refI.cosineScale(angleI); + + assertAll( + () -> assertEquals(0.0, refI.speedMetersPerSecond, kEpsilon), + () -> assertEquals(45.0, refI.angle.getDegrees(), kEpsilon)); + + var angleJ = Rotation2d.fromDegrees(135.0); + var refJ = new SwerveModuleState(-2.0, Rotation2d.fromDegrees(45.0)); + refJ.cosineScale(angleJ); + + assertAll( + () -> assertEquals(0.0, refJ.speedMetersPerSecond, kEpsilon), + () -> assertEquals(45.0, refJ.angle.getDegrees(), kEpsilon)); + + var angleK = Rotation2d.fromDegrees(-135.0); + var refK = new SwerveModuleState(-2.0, Rotation2d.fromDegrees(45.0)); + refK.cosineScale(angleK); + + assertAll( + () -> assertEquals(2.0, refK.speedMetersPerSecond, kEpsilon), + () -> assertEquals(45.0, refK.angle.getDegrees(), kEpsilon)); + + var angleL = Rotation2d.fromDegrees(180.0); + var refL = new SwerveModuleState(-2.0, Rotation2d.fromDegrees(45.0)); + refL.cosineScale(angleL); + + assertAll( + () -> assertEquals(Math.sqrt(2.0), refL.speedMetersPerSecond, kEpsilon), + () -> assertEquals(45.0, refL.angle.getDegrees(), kEpsilon)); } } diff --git a/wpimath/src/test/native/cpp/kinematics/SwerveModuleStateTest.cpp b/wpimath/src/test/native/cpp/kinematics/SwerveModuleStateTest.cpp index efc39757d66..9d13eeca4e3 100644 --- a/wpimath/src/test/native/cpp/kinematics/SwerveModuleStateTest.cpp +++ b/wpimath/src/test/native/cpp/kinematics/SwerveModuleStateTest.cpp @@ -12,33 +12,119 @@ static constexpr double kEpsilon = 1E-9; TEST(SwerveModuleStateTest, Optimize) { frc::Rotation2d angleA{45_deg}; frc::SwerveModuleState refA{-2_mps, 180_deg}; - auto optimizedA = frc::SwerveModuleState::Optimize(refA, angleA); + refA.Optimize(angleA); - EXPECT_NEAR(optimizedA.speed.value(), 2.0, kEpsilon); - EXPECT_NEAR(optimizedA.angle.Degrees().value(), 0.0, kEpsilon); + EXPECT_NEAR(refA.speed.value(), 2.0, kEpsilon); + EXPECT_NEAR(refA.angle.Degrees().value(), 0.0, kEpsilon); frc::Rotation2d angleB{-50_deg}; frc::SwerveModuleState refB{4.7_mps, 41_deg}; - auto optimizedB = frc::SwerveModuleState::Optimize(refB, angleB); + refB.Optimize(angleB); - EXPECT_NEAR(optimizedB.speed.value(), -4.7, kEpsilon); - EXPECT_NEAR(optimizedB.angle.Degrees().value(), -139.0, kEpsilon); + EXPECT_NEAR(refB.speed.value(), -4.7, kEpsilon); + EXPECT_NEAR(refB.angle.Degrees().value(), -139.0, kEpsilon); } TEST(SwerveModuleStateTest, NoOptimize) { frc::Rotation2d angleA{0_deg}; frc::SwerveModuleState refA{2_mps, 89_deg}; - auto optimizedA = frc::SwerveModuleState::Optimize(refA, angleA); + refA.Optimize(angleA); - EXPECT_NEAR(optimizedA.speed.value(), 2.0, kEpsilon); - EXPECT_NEAR(optimizedA.angle.Degrees().value(), 89.0, kEpsilon); + EXPECT_NEAR(refA.speed.value(), 2.0, kEpsilon); + EXPECT_NEAR(refA.angle.Degrees().value(), 89.0, kEpsilon); frc::Rotation2d angleB{0_deg}; frc::SwerveModuleState refB{-2_mps, -2_deg}; - auto optimizedB = frc::SwerveModuleState::Optimize(refB, angleB); + refB.Optimize(angleB); - EXPECT_NEAR(optimizedB.speed.value(), -2.0, kEpsilon); - EXPECT_NEAR(optimizedB.angle.Degrees().value(), -2.0, kEpsilon); + EXPECT_NEAR(refB.speed.value(), -2.0, kEpsilon); + EXPECT_NEAR(refB.angle.Degrees().value(), -2.0, kEpsilon); +} + +TEST(SwerveModuleStateTest, CosineScaling) { + frc::Rotation2d angleA{0_deg}; + frc::SwerveModuleState refA{2_mps, 45_deg}; + refA.CosineScale(angleA); + + EXPECT_NEAR(refA.speed.value(), std::sqrt(2.0), kEpsilon); + EXPECT_NEAR(refA.angle.Degrees().value(), 45.0, kEpsilon); + + frc::Rotation2d angleB{45_deg}; + frc::SwerveModuleState refB{2_mps, 45_deg}; + refB.CosineScale(angleB); + + EXPECT_NEAR(refB.speed.value(), 2.0, kEpsilon); + EXPECT_NEAR(refB.angle.Degrees().value(), 45.0, kEpsilon); + + frc::Rotation2d angleC{-45_deg}; + frc::SwerveModuleState refC{2_mps, 45_deg}; + refC.CosineScale(angleC); + + EXPECT_NEAR(refC.speed.value(), 0.0, kEpsilon); + EXPECT_NEAR(refC.angle.Degrees().value(), 45.0, kEpsilon); + + frc::Rotation2d angleD{135_deg}; + frc::SwerveModuleState refD{2_mps, 45_deg}; + refD.CosineScale(angleD); + + EXPECT_NEAR(refD.speed.value(), 0.0, kEpsilon); + EXPECT_NEAR(refD.angle.Degrees().value(), 45.0, kEpsilon); + + frc::Rotation2d angleE{-135_deg}; + frc::SwerveModuleState refE{2_mps, 45_deg}; + refE.CosineScale(angleE); + + EXPECT_NEAR(refE.speed.value(), -2.0, kEpsilon); + EXPECT_NEAR(refE.angle.Degrees().value(), 45.0, kEpsilon); + + frc::Rotation2d angleF{180_deg}; + frc::SwerveModuleState refF{2_mps, 45_deg}; + refF.CosineScale(angleF); + + EXPECT_NEAR(refF.speed.value(), -std::sqrt(2.0), kEpsilon); + EXPECT_NEAR(refF.angle.Degrees().value(), 45.0, kEpsilon); + + frc::Rotation2d angleG{0_deg}; + frc::SwerveModuleState refG{-2_mps, 45_deg}; + refG.CosineScale(angleG); + + EXPECT_NEAR(refG.speed.value(), -std::sqrt(2.0), kEpsilon); + EXPECT_NEAR(refG.angle.Degrees().value(), 45.0, kEpsilon); + + frc::Rotation2d angleH{45_deg}; + frc::SwerveModuleState refH{-2_mps, 45_deg}; + refH.CosineScale(angleH); + + EXPECT_NEAR(refH.speed.value(), -2.0, kEpsilon); + EXPECT_NEAR(refH.angle.Degrees().value(), 45.0, kEpsilon); + + frc::Rotation2d angleI{-45_deg}; + frc::SwerveModuleState refI{-2_mps, 45_deg}; + refI.CosineScale(angleI); + + EXPECT_NEAR(refI.speed.value(), 0.0, kEpsilon); + EXPECT_NEAR(refI.angle.Degrees().value(), 45.0, kEpsilon); + + frc::Rotation2d angleJ{135_deg}; + frc::SwerveModuleState refJ{-2_mps, 45_deg}; + refJ.CosineScale(angleJ); + + EXPECT_NEAR(refJ.speed.value(), 0.0, kEpsilon); + EXPECT_NEAR(refJ.angle.Degrees().value(), 45.0, kEpsilon); + + frc::Rotation2d angleK{-135_deg}; + frc::SwerveModuleState refK{-2_mps, 45_deg}; + refK.CosineScale(angleK); + + EXPECT_NEAR(refK.speed.value(), 2.0, kEpsilon); + EXPECT_NEAR(refK.angle.Degrees().value(), 45.0, kEpsilon); + + frc::Rotation2d angleL{180_deg}; + frc::SwerveModuleState refL{-2_mps, 45_deg}; + refL.CosineScale(angleL); + + EXPECT_NEAR(refL.speed.value(), std::sqrt(2.0), kEpsilon); + EXPECT_NEAR(refL.angle.Degrees().value(), 45.0, kEpsilon); } TEST(SwerveModuleStateTest, Equality) { From 466a4a52faf62ab08b2e54d638ea618536f5735e Mon Sep 17 00:00:00 2001 From: Jade Date: Tue, 1 Oct 2024 22:46:06 +0800 Subject: [PATCH 08/18] [wpilibc] Fix missing symbols on Windows (#7140) Windows doesn't support direct static variable access across library boundaries in a mixed static/shared environment, so change to accessor functions. --- wpilibc/src/main/native/cpp/DigitalOutput.cpp | 4 +-- wpilibc/src/main/native/cpp/LEDPattern.cpp | 12 +++++---- wpilibc/src/main/native/cpp/SensorUtil.cpp | 26 ++++++++++++++----- .../src/main/native/include/frc/LEDPattern.h | 2 +- .../src/main/native/include/frc/SensorUtil.h | 10 +++---- 5 files changed, 35 insertions(+), 19 deletions(-) diff --git a/wpilibc/src/main/native/cpp/DigitalOutput.cpp b/wpilibc/src/main/native/cpp/DigitalOutput.cpp index 6cac8e8f064..bfcd2dc7dca 100644 --- a/wpilibc/src/main/native/cpp/DigitalOutput.cpp +++ b/wpilibc/src/main/native/cpp/DigitalOutput.cpp @@ -135,8 +135,8 @@ void DigitalOutput::DisablePWM() { int32_t status = 0; // Disable the output by routing to a dead bit. - HAL_SetDigitalPWMOutputChannel(m_pwmGenerator, SensorUtil::kDigitalChannels, - &status); + HAL_SetDigitalPWMOutputChannel(m_pwmGenerator, + SensorUtil::GetNumDigitalChannels(), &status); FRC_CheckErrorStatus(status, "Channel {}", m_channel); HAL_FreeDigitalPWM(m_pwmGenerator); diff --git a/wpilibc/src/main/native/cpp/LEDPattern.cpp b/wpilibc/src/main/native/cpp/LEDPattern.cpp index 537b459603c..f2cc968adf8 100644 --- a/wpilibc/src/main/native/cpp/LEDPattern.cpp +++ b/wpilibc/src/main/native/cpp/LEDPattern.cpp @@ -104,7 +104,7 @@ LEDPattern LEDPattern::Blink(units::second_t onTime, units::second_t offTime) { if (wpi::Now() % totalMicros < onMicros) { self.ApplyTo(data, writer); } else { - LEDPattern::kOff.ApplyTo(data, writer); + LEDPattern::Off().ApplyTo(data, writer); } }}; } @@ -118,7 +118,7 @@ LEDPattern LEDPattern::SynchronizedBlink(std::function signal) { if (signal()) { self.ApplyTo(data, writer); } else { - LEDPattern::kOff.ApplyTo(data, writer); + LEDPattern::Off().ApplyTo(data, writer); } }}; } @@ -198,7 +198,9 @@ LEDPattern LEDPattern::AtBrightness(double relativeBrightness) { // Static constants and functions -LEDPattern LEDPattern::kOff = LEDPattern::Solid(Color::kBlack); +LEDPattern LEDPattern::Off() { + return LEDPattern::Solid(Color::kBlack); +} LEDPattern LEDPattern::Solid(const Color color) { return LEDPattern{[=](auto data, auto writer) { @@ -228,7 +230,7 @@ LEDPattern LEDPattern::ProgressMaskLayer( LEDPattern LEDPattern::Steps(std::span> steps) { if (steps.size() == 0) { // no colors specified - return LEDPattern::kOff; + return LEDPattern::Off(); } if (steps.size() == 1 && steps[0].first == 0) { // only one color specified, just show a static color @@ -264,7 +266,7 @@ LEDPattern LEDPattern::Steps( LEDPattern LEDPattern::Gradient(std::span colors) { if (colors.size() == 0) { // no colors specified - return LEDPattern::kOff; + return LEDPattern::Off(); } if (colors.size() == 1) { // only one color specified, just show a static color diff --git a/wpilibc/src/main/native/cpp/SensorUtil.cpp b/wpilibc/src/main/native/cpp/SensorUtil.cpp index 55aacce0e08..08847fbdaf5 100644 --- a/wpilibc/src/main/native/cpp/SensorUtil.cpp +++ b/wpilibc/src/main/native/cpp/SensorUtil.cpp @@ -13,12 +13,6 @@ using namespace frc; -const int SensorUtil::kDigitalChannels = HAL_GetNumDigitalChannels(); -const int SensorUtil::kAnalogInputs = HAL_GetNumAnalogInputs(); -const int SensorUtil::kAnalogOutputs = HAL_GetNumAnalogOutputs(); -const int SensorUtil::kPwmChannels = HAL_GetNumPWMChannels(); -const int SensorUtil::kRelayChannels = HAL_GetNumRelayHeaders(); - int SensorUtil::GetDefaultCTREPCMModule() { return 0; } @@ -46,3 +40,23 @@ bool SensorUtil::CheckAnalogInputChannel(int channel) { bool SensorUtil::CheckAnalogOutputChannel(int channel) { return HAL_CheckAnalogOutputChannel(channel); } + +int SensorUtil::GetNumDigitalChannels() { + return HAL_GetNumDigitalChannels(); +} + +int SensorUtil::GetNumAnalogInputs() { + return HAL_GetNumAnalogInputs(); +} + +int SensorUtil::GetNumAnalogOuputs() { + return HAL_GetNumAnalogOutputs(); +} + +int SensorUtil::GetNumPwmChannels() { + return HAL_GetNumPWMChannels(); +} + +int SensorUtil::GetNumRelayChannels() { + return HAL_GetNumRelayHeaders(); +} diff --git a/wpilibc/src/main/native/include/frc/LEDPattern.h b/wpilibc/src/main/native/include/frc/LEDPattern.h index 43b1614e2ab..9a35032621d 100644 --- a/wpilibc/src/main/native/include/frc/LEDPattern.h +++ b/wpilibc/src/main/native/include/frc/LEDPattern.h @@ -246,7 +246,7 @@ class LEDPattern { LEDPattern AtBrightness(double relativeBrightness); /** A pattern that turns off all LEDs. */ - static LEDPattern kOff; + static LEDPattern Off(); /** * Creates a pattern that displays a single static color along the entire diff --git a/wpilibc/src/main/native/include/frc/SensorUtil.h b/wpilibc/src/main/native/include/frc/SensorUtil.h index 60536b13ea9..b1d8b61d5fa 100644 --- a/wpilibc/src/main/native/include/frc/SensorUtil.h +++ b/wpilibc/src/main/native/include/frc/SensorUtil.h @@ -78,11 +78,11 @@ class SensorUtil final { */ static bool CheckAnalogOutputChannel(int channel); - static const int kDigitalChannels; - static const int kAnalogInputs; - static const int kAnalogOutputs; - static const int kPwmChannels; - static const int kRelayChannels; + static int GetNumDigitalChannels(); + static int GetNumAnalogInputs(); + static int GetNumAnalogOuputs(); + static int GetNumPwmChannels(); + static int GetNumRelayChannels(); }; } // namespace frc From f82e1c9d4807f4c0fa832fd5bd9f9e90848eb8eb Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Wed, 2 Oct 2024 12:20:43 -0400 Subject: [PATCH 09/18] [build] CMake: fix Windows build when WITH_PROTOBUF is false (#7147) --- wpimath/CMakeLists.txt | 44 +++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/wpimath/CMakeLists.txt b/wpimath/CMakeLists.txt index 2b75f8d14ba..ac021369eef 100644 --- a/wpimath/CMakeLists.txt +++ b/wpimath/CMakeLists.txt @@ -141,32 +141,32 @@ if(WITH_PROTOBUF) PLUGIN ${PROTOC_WPILIB_PLUGIN} PROTOC_OUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/protobuf" ) + if(MSVC) + get_property(IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + set(CONFIG_SUFFIX "$<$:_$>") + file( + GENERATE OUTPUT + ${CMAKE_CURRENT_BINARY_DIR}/protobuf_objects${CONFIG_SUFFIX}.txt + CONTENT $,\n> + ) + add_custom_command( + TARGET wpimath + PRE_LINK + COMMAND + cmake -E __create_def + ${CMAKE_CURRENT_BINARY_DIR}/protobuf_exports${CONFIG_SUFFIX}.def + ${CMAKE_CURRENT_BINARY_DIR}/protobuf_objects${CONFIG_SUFFIX}.txt + ) + target_link_options( + wpimath + PRIVATE + /DEF:$ + ) + endif() else() add_library(wpimath ${wpimath_native_src}) endif() -if(MSVC) - get_property(IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) - set(CONFIG_SUFFIX "$<$:_$>") - file( - GENERATE OUTPUT - ${CMAKE_CURRENT_BINARY_DIR}/protobuf_objects${CONFIG_SUFFIX}.txt - CONTENT $,\n> - ) - add_custom_command( - TARGET wpimath - PRE_LINK - COMMAND - cmake -E __create_def ${CMAKE_CURRENT_BINARY_DIR}/protobuf_exports${CONFIG_SUFFIX}.def - ${CMAKE_CURRENT_BINARY_DIR}/protobuf_objects${CONFIG_SUFFIX}.txt - ) - target_link_options( - wpimath - PRIVATE - /DEF:$ - ) -endif() - set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE) set_target_properties(wpimath PROPERTIES DEBUG_POSTFIX "d") From a8a5d1609b8d2723d7fcd4964423dded4bf1b569 Mon Sep 17 00:00:00 2001 From: Jade Date: Fri, 4 Oct 2024 03:29:27 +0800 Subject: [PATCH 10/18] [build] Name CMake presets more consistently (#7154) --- .github/workflows/cmake.yml | 6 +++--- CMakePresets.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 5fe74baecf9..1192a2f3661 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -19,12 +19,12 @@ jobs: - os: ubuntu-22.04 name: Linux container: wpilib/roborio-cross-ubuntu:2024-22.04 - flags: "--preset with-java-sccache -DCMAKE_BUILD_TYPE=Release -DWITH_EXAMPLES=ON" + flags: "--preset with-java-and-sccache -DCMAKE_BUILD_TYPE=Release -DWITH_EXAMPLES=ON" - os: macOS-14 name: macOS container: "" env: "PATH=\"/opt/homebrew/opt/protobuf@3/bin:$PATH\"" - flags: "--preset sccache -DCMAKE_BUILD_TYPE=Release -DWITH_JAVA=OFF -DWITH_EXAMPLES=ON -DCMAKE_LIBRARY_PATH=/opt/homebrew/opt/protobuf@3/lib -DProtobuf_INCLUDE_DIR=/opt/homebrew/opt/protobuf@3/include -DProtobuf_PROTOC_EXECUTABLE=/opt/homebrew/opt/protobuf@3/bin/protoc" + flags: "--preset with-sccache -DCMAKE_BUILD_TYPE=Release -DWITH_JAVA=OFF -DWITH_EXAMPLES=ON -DCMAKE_LIBRARY_PATH=/opt/homebrew/opt/protobuf@3/lib -DProtobuf_INCLUDE_DIR=/opt/homebrew/opt/protobuf@3/include -DProtobuf_PROTOC_EXECUTABLE=/opt/homebrew/opt/protobuf@3/bin/protoc" name: "Build - ${{ matrix.name }}" runs-on: ${{ matrix.os }} @@ -80,7 +80,7 @@ jobs: vcpkgGitCommitId: 37c3e63a1306562f7f59c4c3c8892ddd50fdf992 # HEAD on 2024-02-24 - name: configure - run: cmake --preset sccache -DCMAKE_BUILD_TYPE=Release -DWITH_JAVA=OFF -DWITH_EXAMPLES=ON -DUSE_SYSTEM_FMTLIB=ON -DUSE_SYSTEM_LIBUV=ON -DUSE_SYSTEM_EIGEN=OFF -DCMAKE_TOOLCHAIN_FILE=${{ runner.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_INSTALL_OPTIONS=--clean-after-build -DVCPKG_TARGET_TRIPLET=x64-windows-release -DVCPKG_HOST_TRIPLET=x64-windows-release + run: cmake --preset with-sccache -DCMAKE_BUILD_TYPE=Release -DWITH_JAVA=OFF -DWITH_EXAMPLES=ON -DUSE_SYSTEM_FMTLIB=ON -DUSE_SYSTEM_LIBUV=ON -DUSE_SYSTEM_EIGEN=OFF -DCMAKE_TOOLCHAIN_FILE=${{ runner.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_INSTALL_OPTIONS=--clean-after-build -DVCPKG_TARGET_TRIPLET=x64-windows-release -DVCPKG_HOST_TRIPLET=x64-windows-release env: SCCACHE_WEBDAV_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} SCCACHE_WEBDAV_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} diff --git a/CMakePresets.json b/CMakePresets.json index ab39d90fecf..66b8cbde94a 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -15,7 +15,7 @@ "cacheVariables": {} }, { - "name": "sccache", + "name": "with-sccache", "displayName": "", "description": "Ninja config with sccache", "generator": "Ninja", @@ -36,11 +36,11 @@ } }, { - "name": "with-java-sccache", + "name": "with-java-and-sccache", "displayName": "", "description": "Ninja config with Java and sccache", "generator": "Ninja", - "inherits": "sccache", + "inherits": "with-sccache", "binaryDir": "build-cmake", "cacheVariables": { "WITH_JAVA": "ON" From 83615c6024c28f55c29947f2ada08323c8a9e1e8 Mon Sep 17 00:00:00 2001 From: Ryan Blue Date: Thu, 3 Oct 2024 15:32:09 -0400 Subject: [PATCH 11/18] [wpiutil] DataLogBackgroundWriter: Normalize empty path name (#7151) An empty path isn't valid on it's own, so fs::space always returns an error. This results in UINT_MAX bytes being used instead of the actual free space, which means a default constructed DataLogBackgroundWriter won't stop for low space. Using "." instead makes the directory path the current working directory, which is the desired behavior --- wpiutil/src/main/native/cpp/DataLogBackgroundWriter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wpiutil/src/main/native/cpp/DataLogBackgroundWriter.cpp b/wpiutil/src/main/native/cpp/DataLogBackgroundWriter.cpp index b20d4b73908..9b7a52c9d06 100644 --- a/wpiutil/src/main/native/cpp/DataLogBackgroundWriter.cpp +++ b/wpiutil/src/main/native/cpp/DataLogBackgroundWriter.cpp @@ -176,7 +176,8 @@ static std::string MakeRandomFilename() { } struct DataLogBackgroundWriter::WriterThreadState { - explicit WriterThreadState(std::string_view dir) : dirPath{dir} {} + explicit WriterThreadState(std::string_view dir) + : dirPath{dir.empty() ? "." : dir} {} WriterThreadState(const WriterThreadState&) = delete; WriterThreadState& operator=(const WriterThreadState&) = delete; ~WriterThreadState() { Close(); } From dced751a729fc34c018ad99be974fc04a7cca06e Mon Sep 17 00:00:00 2001 From: Jade Date: Fri, 4 Oct 2024 04:26:49 +0800 Subject: [PATCH 12/18] [ci] Merge Windows into CMake matrix (#7153) --- .github/workflows/cmake.yml | 58 +++++++++++++++---------------------- 1 file changed, 23 insertions(+), 35 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 1192a2f3661..37cf09a671e 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -24,7 +24,11 @@ jobs: name: macOS container: "" env: "PATH=\"/opt/homebrew/opt/protobuf@3/bin:$PATH\"" - flags: "--preset with-sccache -DCMAKE_BUILD_TYPE=Release -DWITH_JAVA=OFF -DWITH_EXAMPLES=ON -DCMAKE_LIBRARY_PATH=/opt/homebrew/opt/protobuf@3/lib -DProtobuf_INCLUDE_DIR=/opt/homebrew/opt/protobuf@3/include -DProtobuf_PROTOC_EXECUTABLE=/opt/homebrew/opt/protobuf@3/bin/protoc" + flags: "--preset with-sccache -DCMAKE_BUILD_TYPE=Release -DWITH_EXAMPLES=ON -DCMAKE_LIBRARY_PATH=/opt/homebrew/opt/protobuf@3/lib -DProtobuf_INCLUDE_DIR=/opt/homebrew/opt/protobuf@3/include -DProtobuf_PROTOC_EXECUTABLE=/opt/homebrew/opt/protobuf@3/bin/protoc" + - os: windows-2022 + name: Windows + container: "" + flags: "--preset with-sccache -DCMAKE_BUILD_TYPE=Release -DWITH_EXAMPLES=ON -DUSE_SYSTEM_FMTLIB=ON -DUSE_SYSTEM_LIBUV=ON -DUSE_SYSTEM_EIGEN=OFF -DCMAKE_TOOLCHAIN_FILE=${{ runner.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_INSTALL_OPTIONS=--clean-after-build -DVCPKG_TARGET_TRIPLET=x64-windows-release -DVCPKG_HOST_TRIPLET=x64-windows-release" name: "Build - ${{ matrix.name }}" runs-on: ${{ matrix.os }} @@ -35,52 +39,30 @@ jobs: run: sudo apt-get update && sudo apt-get install -y libopencv-dev libopencv4.5-java libprotobuf-dev protobuf-compiler ninja-build - name: Install dependencies (macOS) - run: brew install opencv protobuf@3 ninja if: runner.os == 'macOS' + run: brew install opencv protobuf@3 ninja - - name: Install sccache - uses: mozilla-actions/sccache-action@v0.0.5 - - - uses: actions/checkout@v4 - - - name: configure - run: cmake ${{ matrix.flags }} - env: - SCCACHE_WEBDAV_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} - SCCACHE_WEBDAV_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} - - - name: build - run: cmake --build build-cmake --parallel $(nproc) - env: - SCCACHE_WEBDAV_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} - SCCACHE_WEBDAV_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} - - - name: test - working-directory: build-cmake - run: ctest --output-on-failure - - build-windows: - name: "Build - Windows" - runs-on: windows-2022 - steps: - uses: ilammy/msvc-dev-cmd@v1.13.0 + if: runner.os == 'Windows' - - name: Install CMake + - name: Install CMake (Windows only) + if: runner.os == 'Windows' uses: lukka/get-cmake@v3.29.3 - - name: Run sccache-cache - uses: mozilla-actions/sccache-action@v0.0.5 - - - uses: actions/checkout@v4 - - - name: Run vcpkg + - name: Run vcpkg (Windows only) + if: runner.os == 'Windows' uses: lukka/run-vcpkg@v11.5 with: vcpkgDirectory: ${{ runner.workspace }}/vcpkg vcpkgGitCommitId: 37c3e63a1306562f7f59c4c3c8892ddd50fdf992 # HEAD on 2024-02-24 + - name: Install sccache + uses: mozilla-actions/sccache-action@v0.0.5 + + - uses: actions/checkout@v4 + - name: configure - run: cmake --preset with-sccache -DCMAKE_BUILD_TYPE=Release -DWITH_JAVA=OFF -DWITH_EXAMPLES=ON -DUSE_SYSTEM_FMTLIB=ON -DUSE_SYSTEM_LIBUV=ON -DUSE_SYSTEM_EIGEN=OFF -DCMAKE_TOOLCHAIN_FILE=${{ runner.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_INSTALL_OPTIONS=--clean-after-build -DVCPKG_TARGET_TRIPLET=x64-windows-release -DVCPKG_HOST_TRIPLET=x64-windows-release + run: cmake ${{ matrix.flags }} env: SCCACHE_WEBDAV_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} SCCACHE_WEBDAV_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} @@ -92,6 +74,12 @@ jobs: SCCACHE_WEBDAV_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} - name: test + if: runner.os != 'Windows' + working-directory: build-cmake + run: ctest --output-on-failure + + - name: test (windows) + if: runner.os == 'Windows' working-directory: build-cmake # UnitTest_test segfaults on exit occasionally run: ctest --output-on-failure -E 'UnitTest' From bc6553cd2bd48e68f0a5f4246fafdf777cdbd47a Mon Sep 17 00:00:00 2001 From: Ryan Blue Date: Thu, 3 Oct 2024 20:22:39 -0400 Subject: [PATCH 13/18] [ci] Fix cmake CI (#7159) --- .github/workflows/cmake.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 37cf09a671e..e02060a15dc 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -28,7 +28,7 @@ jobs: - os: windows-2022 name: Windows container: "" - flags: "--preset with-sccache -DCMAKE_BUILD_TYPE=Release -DWITH_EXAMPLES=ON -DUSE_SYSTEM_FMTLIB=ON -DUSE_SYSTEM_LIBUV=ON -DUSE_SYSTEM_EIGEN=OFF -DCMAKE_TOOLCHAIN_FILE=${{ runner.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_INSTALL_OPTIONS=--clean-after-build -DVCPKG_TARGET_TRIPLET=x64-windows-release -DVCPKG_HOST_TRIPLET=x64-windows-release" + flags: '--preset with-sccache -DCMAKE_BUILD_TYPE=Release -DWITH_EXAMPLES=ON -DUSE_SYSTEM_FMTLIB=ON -DUSE_SYSTEM_LIBUV=ON -DUSE_SYSTEM_EIGEN=OFF -DCMAKE_TOOLCHAIN_FILE="$Env:RUNNER_WORKSPACE/vcpkg/scripts/buildsystems/vcpkg.cmake" -DVCPKG_INSTALL_OPTIONS=--clean-after-build -DVCPKG_TARGET_TRIPLET=x64-windows-release -DVCPKG_HOST_TRIPLET=x64-windows-release' name: "Build - ${{ matrix.name }}" runs-on: ${{ matrix.os }} @@ -49,6 +49,11 @@ jobs: if: runner.os == 'Windows' uses: lukka/get-cmake@v3.29.3 + - name: Install sccache + uses: mozilla-actions/sccache-action@v0.0.5 + + - uses: actions/checkout@v4 + - name: Run vcpkg (Windows only) if: runner.os == 'Windows' uses: lukka/run-vcpkg@v11.5 @@ -56,11 +61,6 @@ jobs: vcpkgDirectory: ${{ runner.workspace }}/vcpkg vcpkgGitCommitId: 37c3e63a1306562f7f59c4c3c8892ddd50fdf992 # HEAD on 2024-02-24 - - name: Install sccache - uses: mozilla-actions/sccache-action@v0.0.5 - - - uses: actions/checkout@v4 - - name: configure run: cmake ${{ matrix.flags }} env: From 9a7710ebd33991cf6baca23d2dde05d56b79f1cd Mon Sep 17 00:00:00 2001 From: Sam Carlberg Date: Fri, 4 Oct 2024 01:19:36 -0400 Subject: [PATCH 14/18] [wpiunits] Make Velocity.mult(Time) return Measure (#7162) Update code generator to allow arbitrary implementations of multiplication methods. --- wpiunits/generate_units.py | 23 +++++++++++++++- .../main/java/Measure-interface.java.jinja | 4 +++ .../edu/wpi/first/units/measure/Velocity.java | 5 ++-- .../wpi/first/units/measure/VelocityTest.java | 27 +++++++++++++++++++ 4 files changed, 55 insertions(+), 4 deletions(-) create mode 100644 wpiunits/src/test/java/edu/wpi/first/units/measure/VelocityTest.java diff --git a/wpiunits/generate_units.py b/wpiunits/generate_units.py index 2aebf286c22..2c4bc0856ea 100755 --- a/wpiunits/generate_units.py +++ b/wpiunits/generate_units.py @@ -258,7 +258,18 @@ def output(outPath, outfn, contents): "Velocity": { "base_unit": "unit()", "generics": {"D": {"extends": "Unit"}}, - "multiply": {}, + "multiply": { + "Time": { + "implementation": inspect.cleandoc( + """ + @Override + default Measure times(Time multiplier) { + return (Measure) unit().numerator().ofBaseUnits(baseUnitMagnitude() * multiplier.baseUnitMagnitude()); + } + """ + ) + } + }, "divide": {}, }, "Voltage": {"base_unit": "Volts", "multiply": {"Current": "Power"}, "divide": {}}, @@ -310,6 +321,15 @@ def mtou(measure_name): return re.sub(regex, "\\1Unit\\2", measure_name) +def indent(multiline_string, indentation): + """ + Indents a multiline string by `indentation` number of spaces + """ + return "\n".join( + list(map(lambda line: " " * indentation + line, multiline_string.split("\n"))) + ) + + def main(): dirname, _ = os.path.split(os.path.abspath(__file__)) @@ -331,6 +351,7 @@ def main(): "generics_list": generics_list, "generics_usage": generics_usage, "mtou": mtou, + "indent": indent, } for unit_name in UNIT_CONFIGURATIONS: diff --git a/wpiunits/src/generate/main/java/Measure-interface.java.jinja b/wpiunits/src/generate/main/java/Measure-interface.java.jinja index 83c7025d9f1..0e05d11be1f 100644 --- a/wpiunits/src/generate/main/java/Measure-interface.java.jinja +++ b/wpiunits/src/generate/main/java/Measure-interface.java.jinja @@ -80,10 +80,14 @@ public interface {{ helpers['type_decl'](name) }} extends Measure<{{ helpers['mt } {% else %} {% if unit in config[name]['multiply'] %} +{%- if 'implementation' in config[name]['multiply'][unit] -%} +{{ helpers['indent'](config[name]['multiply'][unit]['implementation'], 2) }} +{%- else %} @Override default {{ config[name]['multiply'][unit] }} times({{ unit }} multiplier) { return {{ config[config[name]['multiply'][unit]]['base_unit'] }}.of(baseUnitMagnitude() * multiplier.baseUnitMagnitude()); } +{%- endif %} {% else %} @Override default Mult<{{ helpers['mtou'](name) }}, {{ helpers['mtou'](unit) }}> times({{ unit }} multiplier) { diff --git a/wpiunits/src/generated/main/java/edu/wpi/first/units/measure/Velocity.java b/wpiunits/src/generated/main/java/edu/wpi/first/units/measure/Velocity.java index bc1c9ce8c25..e69991d1112 100644 --- a/wpiunits/src/generated/main/java/edu/wpi/first/units/measure/Velocity.java +++ b/wpiunits/src/generated/main/java/edu/wpi/first/units/measure/Velocity.java @@ -287,10 +287,9 @@ default Per, TemperatureUnit> divide(Temperature divisor) { return (Per, TemperatureUnit>) Measure.super.divide(divisor); } - @Override - default Mult, TimeUnit> times(Time multiplier) { - return (Mult, TimeUnit>) Measure.super.times(multiplier); + default Measure times(Time multiplier) { + return (Measure) unit().numerator().ofBaseUnits(baseUnitMagnitude() * multiplier.baseUnitMagnitude()); } @Override diff --git a/wpiunits/src/test/java/edu/wpi/first/units/measure/VelocityTest.java b/wpiunits/src/test/java/edu/wpi/first/units/measure/VelocityTest.java new file mode 100644 index 00000000000..177769acd37 --- /dev/null +++ b/wpiunits/src/test/java/edu/wpi/first/units/measure/VelocityTest.java @@ -0,0 +1,27 @@ +// Copyright (c) FIRST and other WPILib contributors. +// Open Source Software; you can modify and/or share it under the terms of +// the WPILib BSD license file in the root directory of this project. + +package edu.wpi.first.units.measure; + +import static edu.wpi.first.units.Units.Milliseconds; +import static edu.wpi.first.units.Units.Seconds; +import static edu.wpi.first.units.Units.Volts; +import static org.junit.jupiter.api.Assertions.assertInstanceOf; + +import edu.wpi.first.units.Measure; +import edu.wpi.first.units.VelocityUnit; +import edu.wpi.first.units.VoltageUnit; +import org.junit.jupiter.api.Test; + +class VelocityTest { + @Test + void velocityTimesTimeReturnsDivisor() { + var velocity = VelocityUnit.combine(Volts, Seconds).of(123); + var time = Milliseconds.of(100); + Measure result = velocity.times(time); + // Compile-time test - would fail to compile if the return type was Mult or Measure + + assertInstanceOf(Voltage.class, result); + } +} From b5411742559d24b380ff8efd118cec43c26d4b66 Mon Sep 17 00:00:00 2001 From: Ryan Blue Date: Fri, 4 Oct 2024 01:20:53 -0400 Subject: [PATCH 15/18] [wpilib] Alert: fix incorrect set docs (NFC) (#7163) Console printing was removed when Alerts were added to wpilib. --- wpilibc/src/main/native/include/frc/Alert.h | 5 ++--- wpilibj/src/main/java/edu/wpi/first/wpilibj/Alert.java | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/wpilibc/src/main/native/include/frc/Alert.h b/wpilibc/src/main/native/include/frc/Alert.h index 45dc4a66a22..dde95306e0c 100644 --- a/wpilibc/src/main/native/include/frc/Alert.h +++ b/wpilibc/src/main/native/include/frc/Alert.h @@ -89,9 +89,8 @@ class Alert { Alert(std::string_view group, std::string_view text, AlertType type); /** - * Sets whether the alert should currently be displayed. When activated, the - * alert text will also be sent to the console. This method can be safely - * called periodically. + * Sets whether the alert should currently be displayed. This method can be + * safely called periodically. * * @param active Whether to display the alert. */ diff --git a/wpilibj/src/main/java/edu/wpi/first/wpilibj/Alert.java b/wpilibj/src/main/java/edu/wpi/first/wpilibj/Alert.java index 23327698ee8..1e57a993c92 100644 --- a/wpilibj/src/main/java/edu/wpi/first/wpilibj/Alert.java +++ b/wpilibj/src/main/java/edu/wpi/first/wpilibj/Alert.java @@ -83,8 +83,8 @@ public Alert(String group, String text, AlertType type) { } /** - * Sets whether the alert should currently be displayed. When activated, the alert text will also - * be sent to the console. This method can be safely called periodically. + * Sets whether the alert should currently be displayed. This method can be safely called + * periodically. * * @param active Whether to display the alert. */ From 8102516300717b3bc93ebae6349500ba10637f5e Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Fri, 4 Oct 2024 12:55:10 -0700 Subject: [PATCH 16/18] [ci] Upgrade to wpiformat 2024.42 (#7165) --- .github/workflows/comment-command.yml | 2 +- .github/workflows/lint-format.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/comment-command.yml b/.github/workflows/comment-command.yml index 97bdaf67113..840761b0d4d 100644 --- a/.github/workflows/comment-command.yml +++ b/.github/workflows/comment-command.yml @@ -43,7 +43,7 @@ jobs: distribution: 'temurin' java-version: 17 - name: Install wpiformat - run: pip3 install wpiformat==2024.41 + run: pip3 install wpiformat==2024.42 - name: Run wpiformat run: wpiformat - name: Run spotlessApply diff --git a/.github/workflows/lint-format.yml b/.github/workflows/lint-format.yml index 624414b165e..386bfb4b2e0 100644 --- a/.github/workflows/lint-format.yml +++ b/.github/workflows/lint-format.yml @@ -27,7 +27,7 @@ jobs: with: python-version: '3.10' - name: Install wpiformat - run: pip3 install wpiformat==2024.41 + run: pip3 install wpiformat==2024.42 - name: Run run: wpiformat - name: Check output @@ -66,7 +66,7 @@ jobs: with: python-version: '3.10' - name: Install wpiformat - run: pip3 install wpiformat==2024.41 + run: pip3 install wpiformat==2024.42 - name: Create compile_commands.json run: | ./gradlew generateCompileCommands -Ptoolchain-optional-roboRio From 09a93b86dcaf8e20af6b98d3c8d141c7cd9d1726 Mon Sep 17 00:00:00 2001 From: Ryan Blue Date: Fri, 4 Oct 2024 21:22:31 -0400 Subject: [PATCH 17/18] [wpilibc] Add RadioLEDState docs to C++ (NFC) (#7158) Add RadioLEDState docs for consistency with Java. --- wpilibc/src/main/native/include/frc/RobotController.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/wpilibc/src/main/native/include/frc/RobotController.h b/wpilibc/src/main/native/include/frc/RobotController.h index 2eca0c1b942..cf17466c13c 100644 --- a/wpilibc/src/main/native/include/frc/RobotController.h +++ b/wpilibc/src/main/native/include/frc/RobotController.h @@ -21,7 +21,13 @@ struct CANStatus { int transmitErrorCount; }; -enum RadioLEDState { kOff = 0, kGreen = 1, kRed = 2, kOrange = 3 }; +/** State for the radio led. */ +enum RadioLEDState { + kOff = 0, ///< Off. + kGreen = 1, ///< Green. + kRed = 2, ///< Red. + kOrange = 3 ///< Orange. +}; class RobotController { public: From f856c05a084562a3360b2872aa78d58b5ed6a62c Mon Sep 17 00:00:00 2001 From: Ryan Blue Date: Fri, 4 Oct 2024 21:24:23 -0400 Subject: [PATCH 18/18] [ci] Add no-cache build workflow to detect potential false-positive cache hits (#7027) Duplicate of gradle.yml without docs, caching, and release configurations. It's set up to run off-peak weekly. --- .github/workflows/sentinel-build.yml | 161 +++++++++++++++++++++++++++ 1 file changed, 161 insertions(+) create mode 100644 .github/workflows/sentinel-build.yml diff --git a/.github/workflows/sentinel-build.yml b/.github/workflows/sentinel-build.yml new file mode 100644 index 00000000000..de26ca99384 --- /dev/null +++ b/.github/workflows/sentinel-build.yml @@ -0,0 +1,161 @@ +name: Sentinel Build (No Cache) + +on: + workflow_dispatch: + schedule: + - cron: "15 3 * * Sat" # 11:15PM EST every Friday + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} + cancel-in-progress: true + +jobs: + build-docker: + if: (github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main') || github.event_name != 'schedule' + strategy: + fail-fast: false + matrix: + include: + - container: wpilib/roborio-cross-ubuntu:2024-22.04 + artifact-name: Athena + build-options: "-Ponlylinuxathena" + - container: wpilib/raspbian-cross-ubuntu:bullseye-22.04 + artifact-name: Arm32 + build-options: "-Ponlylinuxarm32" + - container: wpilib/aarch64-cross-ubuntu:bullseye-22.04 + artifact-name: Arm64 + build-options: "-Ponlylinuxarm64" + - container: wpilib/ubuntu-base:22.04 + artifact-name: Linux + build-options: "-Ponlylinuxx86-64" + name: "Build - ${{ matrix.artifact-name }}" + runs-on: ubuntu-22.04 + steps: + - name: Free Disk Space + uses: jlumbroso/free-disk-space@main + with: + tool-cache: false + android: true + dotnet: true + haskell: true + large-packages: false + docker-images: false + swap-storage: false + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Build with Gradle + uses: addnab/docker-run-action@v3 + with: + image: ${{ matrix.container }} + options: -v ${{ github.workspace }}:/work -w /work -e GITHUB_REF -e CI + run: df . && rm -f semicolon_delimited_script && echo $GITHUB_REF && ./gradlew build -PbuildServer -PskipJavaFormat ${{ matrix.build-options }} + - name: Check free disk space + run: df . + - uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.artifact-name }} + path: build/allOutputs + + build-host: + if: (github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main') || github.event_name != 'schedule' + env: + MACOSX_DEPLOYMENT_TARGET: 13.3 + strategy: + fail-fast: false + matrix: + include: + - os: windows-2022 + artifact-name: Win64Debug + architecture: x64 + task: "build" + build-options: "-PciDebugOnly" + outputs: "build/allOutputs" + - os: windows-2022 + artifact-name: Win64Release + architecture: x64 + build-options: "-PciReleaseOnly" + task: "copyAllOutputs" + outputs: "build/allOutputs" + - os: windows-2022 + artifact-name: WinArm64Debug + architecture: x64 + task: "build" + build-options: "-PciDebugOnly -Pbuildwinarm64 -Ponlywindowsarm64" + outputs: "build/allOutputs" + - os: windows-2022 + artifact-name: WinArm64Release + architecture: x64 + build-options: "-PciReleaseOnly -Pbuildwinarm64 -Ponlywindowsarm64" + task: "copyAllOutputs" + outputs: "build/allOutputs" + - os: macOS-14 + artifact-name: macOS + architecture: aarch64 + task: "build" + outputs: "build/allOutputs" + - os: windows-2022 + artifact-name: Win32 + architecture: x86 + task: ":ntcoreffi:build" + outputs: "ntcoreffi/build/outputs" + name: "Build - ${{ matrix.artifact-name }}" + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: 17 + architecture: ${{ matrix.architecture }} + - name: Import Developer ID Certificate + uses: wpilibsuite/import-signing-certificate@v2 + with: + certificate-data: ${{ secrets.APPLE_CERTIFICATE_DATA }} + certificate-passphrase: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }} + keychain-password: ${{ secrets.APPLE_KEYCHAIN_PASSWORD }} + if: | + matrix.artifact-name == 'macOS' && (github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main') + - name: Set Keychain Lock Timeout + run: security set-keychain-settings -lut 3600 + if: | + matrix.artifact-name == 'macOS' && (github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main') + - name: Set Java Heap Size + run: sed -i 's/-Xmx2g/-Xmx1g/g' gradle.properties + if: matrix.artifact-name == 'Win32' + - name: Check disk free space (Windows) + run: wmic logicaldisk get caption, freespace + if: matrix.os == 'windows-2022' + - name: Check disk free space pre-cleanup (macOS) + run: df -h . + if: matrix.os == 'macOS-14' + - name: Cleanup disk space + # CodeQL: 5G + # go: 748M + # Android: 12G + run: | + rm -rf /Users/runner/hostedtoolcache/CodeQL + rm -rf /Users/runner/hostedtoolcache/go + rm -rf /Users/runner/Library/Android + if: matrix.os == 'macOS-14' + - name: Check disk free space post-cleanup (macOS) + run: df -h . + if: matrix.os == 'macOS-14' + - name: Build with Gradle + run: ./gradlew ${{ matrix.task }} -PbuildServer -PskipJavaFormat ${{ matrix.build-options }} + - name: Sign Libraries with Developer ID + run: ./gradlew copyAllOutputs -PbuildServer -PskipJavaFormat -PdeveloperID=${{ secrets.APPLE_DEVELOPER_ID }} ${{ matrix.build-options }} + if: | + matrix.artifact-name == 'macOS' && (github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main') + - name: Check disk free space (Windows) + run: wmic logicaldisk get caption, freespace + if: matrix.os == 'windows-2022' + - name: Check disk free space (macOS) + run: df -h . + if: matrix.os == 'macOS-14' + - uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.artifact-name }} + path: ${{ matrix.outputs }}